@awc-ui/angular 1.0.0-beta.1 → 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 +15 -14
- package/directives/boolean-value-accessor.d.ts +1 -1
- package/directives/index.d.ts +1 -1
- package/directives/multi-select-value-accessor.d.ts +10 -0
- package/directives/number-value-accessor.d.ts +1 -1
- package/directives/proxies.d.ts +9 -9
- 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 +1 -1
- package/directives/text-value-accessor.d.ts +1 -1
- package/esm2022/awc-ui.module.mjs +8 -5
- package/esm2022/directives/multi-select-value-accessor.mjs +23 -0
- package/esm2022/directives/proxies.mjs +33 -33
- package/esm2022/directives/radio-value-accessor.mjs +94 -24
- package/esm2022/directives/select-value-accessor.mjs +3 -3
- package/esm2022/index.mjs +2 -1
- package/fesm2022/awc-ui-angular.mjs +154 -63
- package/fesm2022/awc-ui-angular.mjs.map +1 -1
- package/index.d.ts +12 -11
- package/package.json +25 -5
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,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.10",
|
|
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.10"
|
|
44
63
|
},
|
|
45
64
|
"license": "MIT",
|
|
46
65
|
"author": "AWC UI",
|
|
@@ -52,5 +71,6 @@
|
|
|
52
71
|
},
|
|
53
72
|
"bugs": {
|
|
54
73
|
"url": "https://github.com/awc-ui/core/issues"
|
|
55
|
-
}
|
|
74
|
+
},
|
|
75
|
+
"type": "module"
|
|
56
76
|
}
|