@ng-formworks/core 17.4.0 → 18.4.0
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 +14 -9
- package/esm2022/lib/framework-library/framework-library.service.mjs +4 -4
- package/esm2022/lib/framework-library/framework.mjs +4 -4
- package/esm2022/lib/framework-library/no-framework.component.mjs +4 -4
- package/esm2022/lib/framework-library/no-framework.module.mjs +5 -5
- package/esm2022/lib/framework-library/no.framework.mjs +4 -4
- package/esm2022/lib/json-schema-form.component.mjs +4 -4
- package/esm2022/lib/json-schema-form.module.mjs +5 -5
- package/esm2022/lib/json-schema-form.service.mjs +29 -29
- package/esm2022/lib/locale/de-validation-messages.mjs +1 -1
- package/esm2022/lib/locale/en-validation-messages.mjs +1 -1
- package/esm2022/lib/locale/es-validation-messages.mjs +1 -1
- package/esm2022/lib/locale/fr-validation-messages.mjs +1 -1
- package/esm2022/lib/locale/it-validation-messages.mjs +1 -1
- package/esm2022/lib/locale/pt-validation-messages.mjs +1 -1
- package/esm2022/lib/locale/zh-validation-messages.mjs +1 -1
- package/esm2022/lib/shared/convert-schema-to-draft6.function.mjs +1 -1
- package/esm2022/lib/shared/form-group.functions.mjs +1 -1
- package/esm2022/lib/shared/format-regex.constants.mjs +1 -1
- package/esm2022/lib/shared/json-schema.functions.mjs +1 -1
- package/esm2022/lib/shared/json.validators.mjs +1 -1
- package/esm2022/lib/shared/jsonpointer.functions.mjs +4 -4
- package/esm2022/lib/shared/layout.functions.mjs +8 -4
- package/esm2022/lib/shared/merge-schemas.function.mjs +1 -1
- package/esm2022/lib/shared/utility.functions.mjs +1 -1
- package/esm2022/lib/shared/validator.functions.mjs +1 -1
- package/esm2022/lib/widget-library/add-reference.component.mjs +4 -4
- package/esm2022/lib/widget-library/button.component.mjs +4 -4
- package/esm2022/lib/widget-library/checkbox.component.mjs +4 -4
- package/esm2022/lib/widget-library/checkboxes.component.mjs +4 -4
- package/esm2022/lib/widget-library/file.component.mjs +4 -4
- package/esm2022/lib/widget-library/hidden.component.mjs +4 -4
- package/esm2022/lib/widget-library/input.component.mjs +4 -4
- package/esm2022/lib/widget-library/message.component.mjs +4 -4
- package/esm2022/lib/widget-library/none.component.mjs +4 -4
- package/esm2022/lib/widget-library/number.component.mjs +4 -4
- package/esm2022/lib/widget-library/one-of.component.mjs +4 -4
- package/esm2022/lib/widget-library/orderable.directive.mjs +4 -4
- package/esm2022/lib/widget-library/radios.component.mjs +4 -4
- package/esm2022/lib/widget-library/root.component.mjs +4 -4
- package/esm2022/lib/widget-library/section.component.mjs +4 -4
- package/esm2022/lib/widget-library/select-framework.component.mjs +4 -4
- package/esm2022/lib/widget-library/select-widget.component.mjs +4 -4
- package/esm2022/lib/widget-library/select.component.mjs +4 -4
- package/esm2022/lib/widget-library/submit.component.mjs +4 -4
- package/esm2022/lib/widget-library/tab.component.mjs +4 -4
- package/esm2022/lib/widget-library/tabs.component.mjs +4 -4
- package/esm2022/lib/widget-library/template.component.mjs +4 -4
- package/esm2022/lib/widget-library/textarea.component.mjs +4 -4
- package/esm2022/lib/widget-library/widget-library.module.mjs +5 -5
- package/esm2022/lib/widget-library/widget-library.service.mjs +42 -42
- package/fesm2022/ng-formworks-core.mjs +175 -171
- package/fesm2022/ng-formworks-core.mjs.map +1 -1
- package/lib/shared/validator.functions.d.ts +1 -1
- package/package.json +8 -6
|
@@ -126,7 +126,7 @@ export declare function isEmpty(value: any): boolean;
|
|
|
126
126
|
* // value - the value to check
|
|
127
127
|
* // { boolean } - true if string, false if not
|
|
128
128
|
*/
|
|
129
|
-
export declare function isString(value: any):
|
|
129
|
+
export declare function isString(value: any): value is string;
|
|
130
130
|
/**
|
|
131
131
|
* 'isNumber' utility function
|
|
132
132
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ng-formworks/core",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "18.4.0",
|
|
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": [
|
|
@@ -12,9 +12,11 @@
|
|
|
12
12
|
"Angular 16",
|
|
13
13
|
"Angular17",
|
|
14
14
|
"Angular 17",
|
|
15
|
+
"Angular 18",
|
|
15
16
|
"ng15",
|
|
16
17
|
"ng16",
|
|
17
18
|
"ng17",
|
|
19
|
+
"ng18",
|
|
18
20
|
"JSON Schema",
|
|
19
21
|
"form",
|
|
20
22
|
"forms",
|
|
@@ -39,13 +41,13 @@
|
|
|
39
41
|
"dependencies": {
|
|
40
42
|
"lodash-es": "~4.17.21",
|
|
41
43
|
"ajv": "^8.12.0",
|
|
42
|
-
"tslib": "^2.
|
|
44
|
+
"tslib": "^2.7.0"
|
|
43
45
|
},
|
|
44
46
|
"peerDependencies": {
|
|
45
|
-
"@angular/common": ">=
|
|
46
|
-
"@angular/core": ">=
|
|
47
|
-
"@angular/forms": ">=
|
|
48
|
-
"@angular/platform-browser": ">=
|
|
47
|
+
"@angular/common": ">=18.0.0",
|
|
48
|
+
"@angular/core": ">=18.0.0",
|
|
49
|
+
"@angular/forms": ">=18.0.0",
|
|
50
|
+
"@angular/platform-browser": ">=18.0.0",
|
|
49
51
|
"rxjs": "^7.0.0"
|
|
50
52
|
},
|
|
51
53
|
"module": "fesm2022/ng-formworks-core.mjs",
|