@awc-ui/angular 1.0.0-beta.8 → 1.0.0-beta.9
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 +8 -6
- package/package.json +23 -4
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# @awc-ui/angular
|
|
1
|
+
# Angular Web Components and Angular SSR — @awc-ui/angular
|
|
2
2
|
|
|
3
|
-
Angular
|
|
3
|
+
Angular 17+ components for [AWC UI](https://www.npmjs.com/package/@awc-ui/core) — accessible Material Design 3 Web Components with directives that bridge Angular templates, `ngModel`, reactive forms, and Angular SSR.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
@@ -14,7 +14,7 @@ Requires Angular 17+.
|
|
|
14
14
|
|
|
15
15
|
```ts
|
|
16
16
|
// NgModule apps
|
|
17
|
-
import { AwcUiModule } from
|
|
17
|
+
import { AwcUiModule } from "@awc-ui/angular";
|
|
18
18
|
|
|
19
19
|
@NgModule({
|
|
20
20
|
imports: [AwcUiModule],
|
|
@@ -24,8 +24,8 @@ export class AppModule {}
|
|
|
24
24
|
|
|
25
25
|
```ts
|
|
26
26
|
// Standalone apps
|
|
27
|
-
import { importProvidersFrom } from
|
|
28
|
-
import { AwcUiModule, provideAwcUi } from
|
|
27
|
+
import { importProvidersFrom } from "@angular/core";
|
|
28
|
+
import { AwcUiModule, provideAwcUi } from "@awc-ui/angular";
|
|
29
29
|
|
|
30
30
|
bootstrapApplication(AppComponent, {
|
|
31
31
|
providers: [provideAwcUi(), importProvidersFrom(AwcUiModule)],
|
|
@@ -38,4 +38,6 @@ bootstrapApplication(AppComponent, {
|
|
|
38
38
|
|
|
39
39
|
## Documentation
|
|
40
40
|
|
|
41
|
-
|
|
41
|
+
[Angular and Angular SSR guide](https://awc-ui.dev/frameworks/angular/) · [All component docs](https://awc-ui.dev/components/)
|
|
42
|
+
|
|
43
|
+
Component manuals and AI-readable documentation also ship with [`@awc-ui/core`](https://www.npmjs.com/package/@awc-ui/core).
|
package/package.json
CHANGED
|
@@ -1,17 +1,36 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awc-ui/angular",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
4
|
-
"description": "Angular
|
|
3
|
+
"version": "1.0.0-beta.9",
|
|
4
|
+
"description": "Angular 17+ components for accessible Material Design 3 Web Components, with typed directives, forms, and Angular SSR support",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
7
|
+
"angular-component",
|
|
7
8
|
"angular-components",
|
|
9
|
+
"components",
|
|
8
10
|
"material-design",
|
|
9
11
|
"material-design-3",
|
|
10
12
|
"md3",
|
|
11
13
|
"ui-components",
|
|
12
14
|
"component-library",
|
|
13
15
|
"web-components",
|
|
14
|
-
"design-system"
|
|
16
|
+
"design-system",
|
|
17
|
+
"material-3",
|
|
18
|
+
"angular-ui",
|
|
19
|
+
"custom-elements",
|
|
20
|
+
"typescript",
|
|
21
|
+
"accessibility",
|
|
22
|
+
"wcag",
|
|
23
|
+
"angular-forms",
|
|
24
|
+
"ui-library",
|
|
25
|
+
"angular-ui-library",
|
|
26
|
+
"angular-ui-components",
|
|
27
|
+
"angular-component-library",
|
|
28
|
+
"web-component",
|
|
29
|
+
"angular-web-components",
|
|
30
|
+
"angular-material-components",
|
|
31
|
+
"angular-ssr",
|
|
32
|
+
"server-side-rendering",
|
|
33
|
+
"ssr"
|
|
15
34
|
],
|
|
16
35
|
"module": "fesm2022/awc-ui-angular.mjs",
|
|
17
36
|
"typings": "index.d.ts",
|
|
@@ -40,7 +59,7 @@
|
|
|
40
59
|
"@angular/core": ">=17",
|
|
41
60
|
"@angular/forms": ">=17",
|
|
42
61
|
"rxjs": "^7.4.0",
|
|
43
|
-
"@awc-ui/core": "1.0.0-beta.
|
|
62
|
+
"@awc-ui/core": "1.0.0-beta.9"
|
|
44
63
|
},
|
|
45
64
|
"license": "MIT",
|
|
46
65
|
"author": "AWC UI",
|