@awc-ui/angular 0.0.0-snapshot.20260820120614.cae27aa
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/LICENSE +21 -0
- package/README.md +41 -0
- package/awc-ui.module.d.ts +67 -0
- package/directives/angular-component-lib/utils.d.ts +9 -0
- package/directives/boolean-value-accessor.d.ts +9 -0
- package/directives/index.d.ts +2 -0
- package/directives/number-value-accessor.d.ts +9 -0
- package/directives/proxies.d.ts +2005 -0
- package/directives/radio-value-accessor.d.ts +8 -0
- package/directives/select-value-accessor.d.ts +8 -0
- package/directives/switch-value-accessor.d.ts +21 -0
- package/directives/text-value-accessor.d.ts +8 -0
- package/directives/value-accessor.d.ts +18 -0
- package/esm2022/awc-ui-angular.mjs +5 -0
- package/esm2022/awc-ui.module.mjs +101 -0
- package/esm2022/directives/angular-component-lib/utils.mjs +59 -0
- package/esm2022/directives/boolean-value-accessor.mjs +38 -0
- package/esm2022/directives/index.mjs +85 -0
- package/esm2022/directives/number-value-accessor.mjs +40 -0
- package/esm2022/directives/proxies.mjs +2132 -0
- package/esm2022/directives/radio-value-accessor.mjs +35 -0
- package/esm2022/directives/select-value-accessor.mjs +35 -0
- package/esm2022/directives/switch-value-accessor.mjs +50 -0
- package/esm2022/directives/text-value-accessor.mjs +35 -0
- package/esm2022/directives/value-accessor.mjs +40 -0
- package/esm2022/index.mjs +15 -0
- package/fesm2022/awc-ui-angular.mjs +2537 -0
- package/fesm2022/awc-ui-angular.mjs.map +1 -0
- package/index.d.ts +11 -0
- package/package.json +45 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
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';
|
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@awc-ui/angular",
|
|
3
|
+
"version": "0.0.0-snapshot.20260820120614.cae27aa",
|
|
4
|
+
"description": "Angular wrapper for AWC UI Material Design 3 components",
|
|
5
|
+
"module": "fesm2022/awc-ui-angular.mjs",
|
|
6
|
+
"typings": "index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./index.d.ts",
|
|
10
|
+
"esm2022": "./esm2022/awc-ui-angular.mjs",
|
|
11
|
+
"esm": "./esm2022/awc-ui-angular.mjs",
|
|
12
|
+
"default": "./fesm2022/awc-ui-angular.mjs"
|
|
13
|
+
},
|
|
14
|
+
"./package.json": {
|
|
15
|
+
"default": "./package.json"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"sideEffects": false,
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public",
|
|
21
|
+
"directory": "dist",
|
|
22
|
+
"linkDirectory": false
|
|
23
|
+
},
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"tslib": "^2.8.1"
|
|
26
|
+
},
|
|
27
|
+
"peerDependencies": {
|
|
28
|
+
"@angular/common": ">=17",
|
|
29
|
+
"@angular/core": ">=17",
|
|
30
|
+
"@angular/forms": ">=17",
|
|
31
|
+
"rxjs": "^7.4.0",
|
|
32
|
+
"@awc-ui/core": "0.0.0-snapshot.20260820120614.cae27aa"
|
|
33
|
+
},
|
|
34
|
+
"license": "MIT",
|
|
35
|
+
"author": "AWC UI",
|
|
36
|
+
"homepage": "https://awcui.io",
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "git+https://github.com/awc-ui/core.git",
|
|
40
|
+
"directory": "packages/angular"
|
|
41
|
+
},
|
|
42
|
+
"bugs": {
|
|
43
|
+
"url": "https://github.com/awc-ui/core/issues"
|
|
44
|
+
}
|
|
45
|
+
}
|