@ng-formworks/core 20.6.9 → 21.6.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ng-formworks/core",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "21.6.9",
|
|
4
4
|
"description": "Angular ng-formworks - JSON Schema Form builder core",
|
|
5
5
|
"author": "https://github.com/zahmo/ng-formworks/graphs/contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -18,6 +18,8 @@
|
|
|
18
18
|
"Angular 19",
|
|
19
19
|
"Angular20",
|
|
20
20
|
"Angular 20",
|
|
21
|
+
"Angular21",
|
|
22
|
+
"Angular 21",
|
|
21
23
|
"ng15",
|
|
22
24
|
"ng16",
|
|
23
25
|
"ng17",
|
|
@@ -51,21 +53,21 @@
|
|
|
51
53
|
"tslib": "^2.7.0"
|
|
52
54
|
},
|
|
53
55
|
"peerDependencies": {
|
|
54
|
-
"@angular/cdk": ">=
|
|
55
|
-
"@angular/common": ">=
|
|
56
|
-
"@angular/core": ">=
|
|
57
|
-
"@angular/forms": ">=
|
|
58
|
-
"@angular/platform-browser": ">=
|
|
56
|
+
"@angular/cdk": ">=21.0.0",
|
|
57
|
+
"@angular/common": ">=21.0.0",
|
|
58
|
+
"@angular/core": ">=21.0.0",
|
|
59
|
+
"@angular/forms": ">=21.0.0",
|
|
60
|
+
"@angular/platform-browser": ">=21.0.0",
|
|
59
61
|
"rxjs": "^7.0.0"
|
|
60
62
|
},
|
|
61
63
|
"module": "fesm2022/ng-formworks-core.mjs",
|
|
62
|
-
"typings": "
|
|
64
|
+
"typings": "types/ng-formworks-core.d.ts",
|
|
63
65
|
"exports": {
|
|
64
66
|
"./package.json": {
|
|
65
67
|
"default": "./package.json"
|
|
66
68
|
},
|
|
67
69
|
".": {
|
|
68
|
-
"types": "./
|
|
70
|
+
"types": "./types/ng-formworks-core.d.ts",
|
|
69
71
|
"default": "./fesm2022/ng-formworks-core.mjs"
|
|
70
72
|
}
|
|
71
73
|
},
|
|
@@ -841,7 +841,7 @@ declare function isSet(item: any): boolean;
|
|
|
841
841
|
* // { any = false } strict - if truthy, also checks JavaScript tyoe
|
|
842
842
|
* // { SchemaType }
|
|
843
843
|
*/
|
|
844
|
-
declare function getType(value: any, strict?: any): "
|
|
844
|
+
declare function getType(value: any, strict?: any): "null" | "number" | "string" | "integer" | "boolean" | "object" | "array";
|
|
845
845
|
/**
|
|
846
846
|
* 'isType' function
|
|
847
847
|
*
|