Skip to content

Commit

Permalink
Release 18.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thodic77 committed Jan 9, 2025
1 parent b16cc10 commit 2a68789
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 26 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## Version 18.3.0

### New

- **allgemein**: Update auf LUX-Components-Theme [18.3.0](https://github.com/IHK-GfI/lux-components-theme/releases/tag/18.3.0).
- **lux-message-box**: Falsche Farbe beim Close-Button. [Issue 557](https://github.com/IHK-GfI/lux-components/issues/557)

### Bug Fixes

- **lux-datepicker-ac**: Green Theme Bug. [Issue 567](https://github.com/IHK-GfI/lux-components/issues/567)
- **lux-http-error**: Falsche Prüfung auf "not null" im LuxHttpErrorInterceptor. [Issue 568](https://github.com/IHK-GfI/lux-components/issues/568)
- **lux-checkbox-ac**: Barrierefreiheit - label in label bei Checkbox. [Issue 566](https://github.com/IHK-GfI/lux-components/issues/566)
- **lux-toggle-ac**: Barrierefreiheit - label in label bei Checkbox. [Issue 566](https://github.com/IHK-GfI/lux-components/issues/566)

## Version 18.2.0

### New
Expand Down
48 changes: 24 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ihk-gfi/lux-components",
"version": "18.2.0",
"version": "18.3.0",
"license": "IHK-GfI Open-Source-Lizenz",
"private": false,
"repository": {
Expand Down Expand Up @@ -28,31 +28,31 @@
"husky-init": "husky install"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.11",
"@angular-eslint/builder": "^18.4.0",
"@angular-eslint/eslint-plugin": "^18.4.0",
"@angular-eslint/eslint-plugin-template": "^18.4.0",
"@angular-eslint/schematics": "^18.4.0",
"@angular-eslint/template-parser": "^18.4.0",
"@angular/animations": "^18.2.10",
"@angular/cdk": "^18.2.11",
"@angular/cli": "^18.2.11",
"@angular/common": "^18.2.10",
"@angular/compiler": "^18.2.10",
"@angular/compiler-cli": "^18.2.10",
"@angular/core": "^18.2.10",
"@angular/elements": "^18.2.10",
"@angular/forms": "^18.2.10",
"@angular/language-service": "^18.2.10",
"@angular/localize": "^18.2.10",
"@angular/material": "^18.2.11",
"@angular/platform-browser": "^18.2.10",
"@angular/platform-browser-dynamic": "^18.2.10",
"@angular/router": "^18.2.10",
"@angular-devkit/build-angular": "^18.2.12",
"@angular-eslint/builder": "^18.4.3",
"@angular-eslint/eslint-plugin": "^18.4.3",
"@angular-eslint/eslint-plugin-template": "^18.4.3",
"@angular-eslint/schematics": "^18.4.3",
"@angular-eslint/template-parser": "^18.4.3",
"@angular/animations": "^18.2.13",
"@angular/cdk": "^18.2.14",
"@angular/cli": "^18.2.12",
"@angular/common": "^18.2.13",
"@angular/compiler": "^18.2.13",
"@angular/compiler-cli": "^18.2.13",
"@angular/core": "^18.2.13",
"@angular/elements": "^18.2.13",
"@angular/forms": "^18.2.13",
"@angular/language-service": "^18.2.13",
"@angular/localize": "^18.2.13",
"@angular/material": "^18.2.14",
"@angular/platform-browser": "^18.2.13",
"@angular/platform-browser-dynamic": "^18.2.13",
"@angular/router": "^18.2.13",
"@chiragrupani/karma-chromium-edge-launcher": "2.4.1",
"@ihk-gfi/lux-components-icons-and-fonts": "1.8.0",
"@ihk-gfi/lux-components-theme": "18.2.0",
"@types/jasmine": "~5.1.4",
"@ihk-gfi/lux-components-theme": "18.3.0",
"@types/jasmine": "~5.1.5",
"@types/marked": "4.0.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
Expand Down
4 changes: 2 additions & 2 deletions src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ <h3 class="lux-side-nav-header-greeting">Navigation</h3>
</lux-app-header-ac-action-nav>
</lux-app-header-ac>
<lux-app-content luxAriaRoleMainLabel="">
<lux-app-footer *ngIf="this.luxAppFooter !== 'none' && ((fixedFooterService.fixedModeAsObservable | async) === false)" luxVersion="18.2.0"></lux-app-footer>
<lux-app-footer *ngIf="this.luxAppFooter !== 'none' && ((fixedFooterService.fixedModeAsObservable | async) === false)" luxVersion="18.3.0"></lux-app-footer>
</lux-app-content>
<lux-app-footer *ngIf="this.luxAppFooter !== 'none' && ((fixedFooterService.fixedModeAsObservable | async) === true)" luxVersion="18.2.0"></lux-app-footer>
<lux-app-footer *ngIf="this.luxAppFooter !== 'none' && ((fixedFooterService.fixedModeAsObservable | async) === true)" luxVersion="18.3.0"></lux-app-footer>
</div>

0 comments on commit 2a68789

Please sign in to comment.