Skip to content

Commit

Permalink
chore(): update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
hirsch88 committed Jan 29, 2024
1 parent 2294a86 commit deff986
Showing 1 changed file with 26 additions and 9 deletions.
35 changes: 26 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 15.2.2

### Patch Changes

- **field-hint**: Ensure proper alignment of field hint by adjusting its position to the end of the label text. ( [#1229](https://github.com/baloise/design-system/pull/1229))

- **styles**: Decouple components from css utility classes ( [#1304](https://github.com/baloise/design-system/pull/1304))

- **deps**: Update stencil to 4.11.0 ( [#1307](https://github.com/baloise/design-system/pull/1307))

- **vue**: change location of stencil components ( [#1310](https://github.com/baloise/design-system/pull/1310))

- **date**: due to an android keyboard bug the input mode is switched to decimal. ( [#1312](https://github.com/baloise/design-system/pull/1312))

## 15.2.1

### Patch Changes
Expand Down Expand Up @@ -90,31 +104,34 @@
**app.config.ts**

```ts
import { ApplicationConfig, importProvidersFrom } from '@angular/core'
import { ApplicationConfig, importProvidersFrom } from "@angular/core";

import { provideBaloiseDesignSystem } from '@baloise/design-system-components-angular/standalone'
import { provideBaloiseDesignSystem } from "@baloise/design-system-components-angular/standalone";

export const appConfig: ApplicationConfig = {
providers: [provideBaloiseDesignSystem()],
}
};
```

In each app component, import the necessary Baloise Design System components or a bundled set.

**app.component.ts**

```ts
import { CUSTOM_ELEMENTS_SCHEMA, Component } from '@angular/core'
import { CommonModule } from '@angular/common'
import { BalApp, BalButton } from '@baloise/design-system-components-angular/standalone'
import { CUSTOM_ELEMENTS_SCHEMA, Component } from "@angular/core";
import { CommonModule } from "@angular/common";
import {
BalApp,
BalButton,
} from "@baloise/design-system-components-angular/standalone";

export interface UpdateControl {
name: string
value: any
name: string;
value: any;
}

@Component({
selector: 'app-root',
selector: "app-root",
standalone: true,
schemas: [CUSTOM_ELEMENTS_SCHEMA],
imports: [CommonModule, BalApp, BalButton],
Expand Down

0 comments on commit deff986

Please sign in to comment.