@atelier-ui/angular 0.1.11 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/fesm2022/atelier-ui-angular.mjs +1272 -999
- package/fesm2022/atelier-ui-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/types/atelier-ui-angular.d.ts +462 -462
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @atelier-ui/angular
|
|
2
2
|
|
|
3
|
-
LLM-optimized component library for Angular
|
|
3
|
+
LLM-optimized component library for Angular 22.
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
@@ -24,13 +24,13 @@ Add the design tokens to your global `styles.css`:
|
|
|
24
24
|
## Usage
|
|
25
25
|
|
|
26
26
|
```typescript
|
|
27
|
-
import {
|
|
27
|
+
import { AtlButton } from '@atelier-ui/angular';
|
|
28
28
|
|
|
29
29
|
@Component({
|
|
30
30
|
standalone: true,
|
|
31
|
-
imports: [
|
|
31
|
+
imports: [AtlButton],
|
|
32
32
|
template: `
|
|
33
|
-
<
|
|
33
|
+
<atl-button variant="primary" (click)="save()">Save</atl-button>
|
|
34
34
|
`
|
|
35
35
|
})
|
|
36
36
|
export class MyComponent {}
|