@ws-ui/shared 0.1.18 → 0.1.20
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/dist/declarations/webform/webform.d.ts +7 -0
- package/dist/index.cjs.js +61 -61
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +3516 -3556
- package/dist/index.es.js.map +1 -1
- package/dist/services/api.d.ts +2 -1
- package/dist/style.css +1 -1
- package/dist/tailwind.preset.js +1 -1
- package/dist/types/api.d.ts +4 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/webform-editor.d.ts +1 -4
- package/dist/types/webform-state.d.ts +48 -0
- package/dist/utils/validation.d.ts +7 -0
- package/package.json +2 -3
|
@@ -48,6 +48,7 @@ declare namespace webforms {
|
|
|
48
48
|
*/
|
|
49
49
|
iterable?: boolean;
|
|
50
50
|
/**
|
|
51
|
+
* @deprecated
|
|
51
52
|
* Defines if the component is loopable.
|
|
52
53
|
*
|
|
53
54
|
* Used on Datatable component (which does not support the iterator property yet).
|
|
@@ -59,6 +60,12 @@ declare namespace webforms {
|
|
|
59
60
|
* Used on components like Matrix & Select Box.
|
|
60
61
|
*/
|
|
61
62
|
iterator?: string;
|
|
63
|
+
/**
|
|
64
|
+
* Defines if the component can be iterable as child.
|
|
65
|
+
*
|
|
66
|
+
* Used on sub-components of iterable components like Matrix & Select Box.
|
|
67
|
+
*/
|
|
68
|
+
iterableChild?: boolean;
|
|
62
69
|
};
|
|
63
70
|
|
|
64
71
|
type Info = {
|