@awc-ui/angular 1.0.0-beta → 1.0.0-beta.10
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 +42 -22
- package/awc-ui.module.d.ts +37 -31
- package/directives/boolean-value-accessor.d.ts +2 -2
- package/directives/index.d.ts +1 -1
- package/directives/multi-select-value-accessor.d.ts +10 -0
- package/directives/number-value-accessor.d.ts +2 -2
- package/directives/proxies.d.ts +125 -125
- package/directives/radio-value-accessor.d.ts +36 -5
- package/directives/select-value-accessor.d.ts +2 -2
- package/directives/switch-value-accessor.d.ts +2 -2
- package/directives/text-value-accessor.d.ts +2 -2
- package/esm2022/awc-ui.module.mjs +32 -25
- package/esm2022/directives/boolean-value-accessor.mjs +3 -3
- package/esm2022/directives/multi-select-value-accessor.mjs +23 -0
- package/esm2022/directives/number-value-accessor.mjs +3 -3
- package/esm2022/directives/proxies.mjs +354 -108
- package/esm2022/directives/radio-value-accessor.mjs +94 -24
- package/esm2022/directives/select-value-accessor.mjs +4 -4
- package/esm2022/directives/switch-value-accessor.mjs +5 -2
- package/esm2022/directives/text-value-accessor.mjs +3 -3
- package/esm2022/index.mjs +2 -1
- package/fesm2022/awc-ui-angular.mjs +511 -167
- package/fesm2022/awc-ui-angular.mjs.map +1 -1
- package/index.d.ts +12 -11
- package/package.json +35 -4
package/index.d.ts
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
export { AwcUiModule, provideAwcUi } from './awc-ui.module';
|
|
2
|
-
export * from './directives/index';
|
|
3
|
-
export * from './directives/proxies';
|
|
4
|
-
export { VALUE_ACCESSORS } from './awc-ui.module';
|
|
5
|
-
export { ValueAccessor } from './directives/value-accessor';
|
|
6
|
-
export { TextValueAccessor } from './directives/text-value-accessor';
|
|
7
|
-
export { SelectValueAccessor } from './directives/select-value-accessor';
|
|
8
|
-
export { BooleanValueAccessor } from './directives/boolean-value-accessor';
|
|
9
|
-
export { RadioValueAccessor } from './directives/radio-value-accessor';
|
|
10
|
-
export { NumericValueAccessor } from './directives/number-value-accessor';
|
|
11
|
-
export { SwitchValueAccessor } from './directives/switch-value-accessor';
|
|
1
|
+
export { AwcUiModule, provideAwcUi } from './awc-ui.module.js';
|
|
2
|
+
export * from './directives/index.js';
|
|
3
|
+
export * from './directives/proxies.js';
|
|
4
|
+
export { VALUE_ACCESSORS } from './awc-ui.module.js';
|
|
5
|
+
export { ValueAccessor } from './directives/value-accessor.js';
|
|
6
|
+
export { TextValueAccessor } from './directives/text-value-accessor.js';
|
|
7
|
+
export { SelectValueAccessor } from './directives/select-value-accessor.js';
|
|
8
|
+
export { BooleanValueAccessor } from './directives/boolean-value-accessor.js';
|
|
9
|
+
export { RadioValueAccessor } from './directives/radio-value-accessor.js';
|
|
10
|
+
export { NumericValueAccessor } from './directives/number-value-accessor.js';
|
|
11
|
+
export { SwitchValueAccessor } from './directives/switch-value-accessor.js';
|
|
12
|
+
export { MultiSelectValueAccessor } from './directives/multi-select-value-accessor.js';
|
package/package.json
CHANGED
|
@@ -1,7 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awc-ui/angular",
|
|
3
|
-
"version": "1.0.0-beta",
|
|
4
|
-
"description": "Angular
|
|
3
|
+
"version": "1.0.0-beta.10",
|
|
4
|
+
"description": "Angular 17+ components for accessible Material Design 3 Web Components, with typed directives, forms, and Angular SSR support",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"angular",
|
|
7
|
+
"angular-component",
|
|
8
|
+
"angular-components",
|
|
9
|
+
"components",
|
|
10
|
+
"material-design",
|
|
11
|
+
"material-design-3",
|
|
12
|
+
"md3",
|
|
13
|
+
"ui-components",
|
|
14
|
+
"component-library",
|
|
15
|
+
"web-components",
|
|
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"
|
|
34
|
+
],
|
|
5
35
|
"module": "fesm2022/awc-ui-angular.mjs",
|
|
6
36
|
"typings": "index.d.ts",
|
|
7
37
|
"exports": {
|
|
@@ -29,7 +59,7 @@
|
|
|
29
59
|
"@angular/core": ">=17",
|
|
30
60
|
"@angular/forms": ">=17",
|
|
31
61
|
"rxjs": "^7.4.0",
|
|
32
|
-
"@awc-ui/core": "1.0.0-beta"
|
|
62
|
+
"@awc-ui/core": "1.0.0-beta.10"
|
|
33
63
|
},
|
|
34
64
|
"license": "MIT",
|
|
35
65
|
"author": "AWC UI",
|
|
@@ -41,5 +71,6 @@
|
|
|
41
71
|
},
|
|
42
72
|
"bugs": {
|
|
43
73
|
"url": "https://github.com/awc-ui/core/issues"
|
|
44
|
-
}
|
|
74
|
+
},
|
|
75
|
+
"type": "module"
|
|
45
76
|
}
|