@six-group/ui-library-angular 5.2.0 → 5.3.0-rc.2
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 +2 -1
- package/fesm2022/six-group-ui-library-angular.mjs +809 -382
- package/fesm2022/six-group-ui-library-angular.mjs.map +1 -1
- package/package.json +7 -6
- package/types/six-group-ui-library-angular.d.ts +1385 -0
- package/index.d.ts +0 -5
- package/lib/control-value-accessors/checkbox-multi-select-value-accessor.d.ts +0 -16
- package/lib/control-value-accessors/checkbox-value-accessor.d.ts +0 -10
- package/lib/control-value-accessors/date-value-accessor.d.ts +0 -10
- package/lib/control-value-accessors/datepicker-value-accessor.d.ts +0 -9
- package/lib/control-value-accessors/numeric-value-accessor.d.ts +0 -10
- package/lib/control-value-accessors/radio-value-accessor.d.ts +0 -15
- package/lib/control-value-accessors/range-value-accessor.d.ts +0 -10
- package/lib/control-value-accessors/select-value-accessor.d.ts +0 -9
- package/lib/control-value-accessors/switch-value-accessor.d.ts +0 -10
- package/lib/control-value-accessors/text-value-accessor.d.ts +0 -9
- package/lib/control-value-accessors/timepicker-value-accessor.d.ts +0 -9
- package/lib/control-value-accessors/value-accessor.d.ts +0 -41
- package/lib/form/six-form.directive.d.ts +0 -71
- package/lib/link/six-router-link.directive.d.ts +0 -26
- package/lib/services/alert.service.d.ts +0 -11
- package/lib/services/validation-messages.service.d.ts +0 -7
- package/lib/sidebar/active-sidebar.directive.d.ts +0 -59
- package/lib/stencil-generated/angular-component-lib/utils.d.ts +0 -9
- package/lib/stencil-generated/components.d.ts +0 -943
- package/lib/stencil-generated/index.d.ts +0 -2
- package/lib/ui-library-angular-config.d.ts +0 -7
- package/lib/ui-library-angular.module.d.ts +0 -26
- package/lib/validators/six-ui-library-validators.d.ts +0 -74
- package/public-api.d.ts +0 -21
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@six-group/ui-library-angular",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.3.0-rc.2",
|
|
4
4
|
"description": "Angular wrapper components for @six-group/ui-library",
|
|
5
5
|
"private": false,
|
|
6
|
+
"packageManager": "npm@11.7.0",
|
|
6
7
|
"peerDependencies": {
|
|
7
8
|
"@angular/common": ">=19.0.0",
|
|
8
9
|
"@angular/core": ">=19.0.0",
|
|
9
|
-
"@angular/router": ">=19.0.0",
|
|
10
10
|
"@angular/forms": ">=19.0.0",
|
|
11
|
+
"@angular/router": ">=19.0.0",
|
|
11
12
|
"@six-group/ui-library": "*"
|
|
12
13
|
},
|
|
13
14
|
"publishConfig": {
|
|
@@ -15,7 +16,7 @@
|
|
|
15
16
|
"provenance": true
|
|
16
17
|
},
|
|
17
18
|
"dependencies": {
|
|
18
|
-
"tslib": "^2.
|
|
19
|
+
"tslib": "^2.8.1"
|
|
19
20
|
},
|
|
20
21
|
"repository": {
|
|
21
22
|
"type": "git",
|
|
@@ -23,16 +24,16 @@
|
|
|
23
24
|
},
|
|
24
25
|
"sideEffects": false,
|
|
25
26
|
"engines": {
|
|
26
|
-
"node": ">=
|
|
27
|
+
"node": ">=24"
|
|
27
28
|
},
|
|
28
29
|
"module": "fesm2022/six-group-ui-library-angular.mjs",
|
|
29
|
-
"typings": "
|
|
30
|
+
"typings": "types/six-group-ui-library-angular.d.ts",
|
|
30
31
|
"exports": {
|
|
31
32
|
"./package.json": {
|
|
32
33
|
"default": "./package.json"
|
|
33
34
|
},
|
|
34
35
|
".": {
|
|
35
|
-
"types": "./
|
|
36
|
+
"types": "./types/six-group-ui-library-angular.d.ts",
|
|
36
37
|
"default": "./fesm2022/six-group-ui-library-angular.mjs"
|
|
37
38
|
}
|
|
38
39
|
}
|