Skip to content

Commit f89967f

Browse files
authored
Update CHANGELOG.md
1 parent 033fa89 commit f89967f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

packages/components-angular/projects/components/CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Major Changes
66

77
- Updated Angular components to output as standalone components to align with Angular 20's default approach where components are standalone by default, eliminating the need to declare them within NgModules. Developers using our components should replace `PostComponentsModule` imports with `providePostComponents()` in their app providers and import individual components (e.g., `import { PostIcon, PostButton } from '@swisspost/design-system-components-angular'`) for standalone use.
8+
89
BEFORE:
910

1011
```typescript
@@ -18,15 +19,15 @@
1819

1920
AFTER:
2021

21-
````typescript
22+
```typescript
2223
//app.module.ts
2324
@NgModule({
2425
providers: [
2526
providePostComponents(),
2627
],
2728
})
28-
``` (by [@alionazherdetska](https://github.com/alionazherdetska) with [#5968](https://github.com/swisspost/design-system/pull/5968))
29-
````
29+
```
30+
(by [@alionazherdetska](https://github.com/alionazherdetska) with [#5968](https://github.com/swisspost/design-system/pull/5968))
3031

3132
### Patch Changes
3233

0 commit comments

Comments
 (0)