@formio/js 5.0.0-rc.27 → 5.0.0-rc.29
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/fonts/bootstrap-icons.woff +0 -0
- package/dist/fonts/bootstrap-icons.woff2 +0 -0
- package/dist/formio.embed.js +1 -1
- package/dist/formio.embed.min.js +1 -1
- package/dist/formio.embed.min.js.LICENSE.txt +1 -1
- package/dist/formio.form.js +957 -2270
- package/dist/formio.form.min.js +1 -1
- package/dist/formio.form.min.js.LICENSE.txt +4 -2
- package/dist/formio.full.css +100 -3
- package/dist/formio.full.js +961 -2231
- package/dist/formio.full.min.css +2 -2
- package/dist/formio.full.min.js +1 -1
- package/dist/formio.full.min.js.LICENSE.txt +4 -2
- package/dist/formio.js +101 -1966
- package/dist/formio.min.js +1 -1
- package/dist/formio.min.js.LICENSE.txt +1 -3
- package/dist/formio.utils.js +145 -104
- package/dist/formio.utils.min.js +1 -1
- package/dist/formio.utils.min.js.LICENSE.txt +4 -2
- package/lib/cjs/CDN.d.ts +1 -1
- package/lib/cjs/CDN.js +2 -2
- package/lib/cjs/Embed.d.ts +16 -7
- package/lib/cjs/Embed.js +76 -24
- package/lib/cjs/Formio.d.ts +0 -1
- package/lib/cjs/Formio.js +27 -19
- package/lib/cjs/PDF.js +2 -2
- package/lib/cjs/Webform.d.ts +6 -9
- package/lib/cjs/Webform.js +59 -81
- package/lib/cjs/WebformBuilder.d.ts +1 -1
- package/lib/cjs/WebformBuilder.js +33 -16
- package/lib/cjs/Wizard.d.ts +5 -4
- package/lib/cjs/Wizard.js +37 -26
- package/lib/cjs/WizardBuilder.d.ts +1 -0
- package/lib/cjs/addons/PasswordStrength/PasswordStrengthAddon.d.ts +1 -2
- package/lib/cjs/addons/PasswordStrength/PasswordStrengthAddon.js +11 -12
- package/lib/cjs/addons/index.d.ts +1 -0
- package/lib/cjs/addons/index.js +5 -1
- package/lib/cjs/components/Components.d.ts +7 -0
- package/lib/cjs/components/Components.js +30 -0
- package/lib/cjs/components/_classes/component/Component.d.ts +57 -27
- package/lib/cjs/components/_classes/component/Component.js +193 -119
- package/lib/cjs/components/_classes/component/editForm/Component.edit.addons.d.ts +8 -0
- package/lib/cjs/components/_classes/component/editForm/Component.edit.addons.js +31 -1
- package/lib/cjs/components/_classes/nested/NestedComponent.d.ts +28 -11
- package/lib/cjs/components/_classes/nested/NestedComponent.js +88 -57
- package/lib/cjs/components/_classes/nestedarray/NestedArrayComponent.d.ts +4 -3
- package/lib/cjs/components/_classes/nestedarray/NestedArrayComponent.js +17 -4
- package/lib/cjs/components/builder.js +0 -2
- package/lib/cjs/components/button/Button.js +2 -1
- package/lib/cjs/components/columns/Columns.d.ts +1 -0
- package/lib/cjs/components/columns/Columns.js +2 -3
- package/lib/cjs/components/columns/editForm/Columns.edit.display.d.ts +30 -1
- package/lib/cjs/components/columns/editForm/Columns.edit.display.js +23 -1
- package/lib/cjs/components/container/Container.d.ts +1 -0
- package/lib/cjs/components/container/Container.js +2 -6
- package/lib/cjs/components/content/Content.d.ts +1 -0
- package/lib/cjs/components/content/Content.js +1 -0
- package/lib/cjs/components/datagrid/DataGrid.d.ts +0 -8
- package/lib/cjs/components/datagrid/DataGrid.js +9 -26
- package/lib/cjs/components/datamap/DataMap.js +2 -1
- package/lib/cjs/components/datetime/DateTime.js +0 -2
- package/lib/cjs/components/day/Day.js +2 -3
- package/lib/cjs/components/editgrid/EditGrid.d.ts +8 -4
- package/lib/cjs/components/editgrid/EditGrid.js +96 -73
- package/lib/cjs/components/email/Email.js +0 -1
- package/lib/cjs/components/file/File.js +1 -1
- package/lib/cjs/components/file/fixtures/comp3.d.ts +29 -0
- package/lib/cjs/components/file/fixtures/comp3.js +31 -0
- package/lib/cjs/components/form/Form.d.ts +2 -6
- package/lib/cjs/components/form/Form.js +43 -14
- package/lib/cjs/components/index.d.ts +0 -2
- package/lib/cjs/components/index.js +0 -2
- package/lib/cjs/components/number/Number.d.ts +1 -2
- package/lib/cjs/components/number/Number.js +5 -6
- package/lib/cjs/components/panel/Panel.d.ts +0 -1
- package/lib/cjs/components/panel/Panel.js +2 -9
- package/lib/cjs/components/panel/editForm/Panel.edit.display.d.ts +6 -38
- package/lib/cjs/components/panel/editForm/Panel.edit.display.js +3 -16
- package/lib/cjs/components/phonenumber/PhoneNumber.js +17 -0
- package/lib/cjs/components/radio/Radio.js +0 -2
- package/lib/cjs/components/recaptcha/ReCaptcha.d.ts +1 -1
- package/lib/cjs/components/recaptcha/ReCaptcha.js +2 -2
- package/lib/cjs/components/select/Select.js +3 -2
- package/lib/cjs/components/selectboxes/SelectBoxes.d.ts +1 -2
- package/lib/cjs/components/selectboxes/SelectBoxes.js +7 -6
- package/lib/cjs/components/table/editForm/Table.edit.display.d.ts +31 -2
- package/lib/cjs/components/table/editForm/Table.edit.display.js +22 -0
- package/lib/cjs/components/tabs/editForm/Tabs.edit.display.d.ts +30 -2
- package/lib/cjs/components/tabs/editForm/Tabs.edit.display.js +22 -0
- package/lib/cjs/components/textfield/TextField.js +20 -6
- package/lib/cjs/components/time/Time.js +0 -6
- package/lib/cjs/components/url/Url.js +0 -1
- package/lib/cjs/components/well/editForm/Well.edit.display.d.ts +25 -2
- package/lib/cjs/components/well/editForm/Well.edit.display.js +18 -0
- package/lib/cjs/formio.embed.js +5 -3
- package/lib/cjs/formio.form.d.ts +1 -7
- package/lib/cjs/formio.form.js +3 -38
- package/lib/cjs/index.d.ts +2 -1
- package/lib/cjs/index.js +3 -1
- package/lib/cjs/providers/Providers.d.ts +0 -4
- package/lib/cjs/providers/storage/azure.d.ts +0 -2
- package/lib/cjs/providers/storage/azure.js +1 -6
- package/lib/cjs/providers/storage/googleDrive.d.ts +0 -1
- package/lib/cjs/providers/storage/googleDrive.js +0 -4
- package/lib/cjs/providers/storage/s3.d.ts +0 -1
- package/lib/cjs/providers/storage/s3.js +0 -4
- package/lib/cjs/templates/Templates.d.ts +1 -11
- package/lib/cjs/templates/Templates.js +4 -41
- package/lib/cjs/translations/en.d.ts +5 -0
- package/lib/cjs/translations/en.js +5 -0
- package/lib/cjs/utils/formUtils.js +1 -0
- package/lib/cjs/utils/index.d.ts +1 -0
- package/lib/cjs/utils/index.js +2 -0
- package/lib/cjs/utils/utils.d.ts +2 -1
- package/lib/cjs/utils/utils.js +27 -9
- package/lib/mjs/CDN.d.ts +1 -1
- package/lib/mjs/CDN.js +2 -2
- package/lib/mjs/Embed.d.ts +16 -7
- package/lib/mjs/Embed.js +75 -18
- package/lib/mjs/Formio.d.ts +0 -1
- package/lib/mjs/Formio.js +11 -3
- package/lib/mjs/PDF.js +2 -2
- package/lib/mjs/Webform.d.ts +6 -9
- package/lib/mjs/Webform.js +58 -82
- package/lib/mjs/WebformBuilder.d.ts +1 -1
- package/lib/mjs/WebformBuilder.js +31 -10
- package/lib/mjs/Wizard.d.ts +5 -4
- package/lib/mjs/Wizard.js +36 -27
- package/lib/mjs/WizardBuilder.d.ts +1 -0
- package/lib/mjs/addons/PasswordStrength/PasswordStrengthAddon.d.ts +1 -2
- package/lib/mjs/addons/PasswordStrength/PasswordStrengthAddon.js +11 -12
- package/lib/mjs/addons/index.d.ts +1 -0
- package/lib/mjs/addons/index.js +5 -1
- package/lib/mjs/components/Components.d.ts +7 -0
- package/lib/mjs/components/Components.js +29 -0
- package/lib/mjs/components/_classes/component/Component.d.ts +57 -27
- package/lib/mjs/components/_classes/component/Component.js +191 -118
- package/lib/mjs/components/_classes/component/editForm/Component.edit.addons.d.ts +8 -0
- package/lib/mjs/components/_classes/component/editForm/Component.edit.addons.js +31 -1
- package/lib/mjs/components/_classes/nested/NestedComponent.d.ts +28 -11
- package/lib/mjs/components/_classes/nested/NestedComponent.js +88 -57
- package/lib/mjs/components/_classes/nestedarray/NestedArrayComponent.d.ts +4 -3
- package/lib/mjs/components/_classes/nestedarray/NestedArrayComponent.js +18 -5
- package/lib/mjs/components/builder.js +0 -2
- package/lib/mjs/components/button/Button.js +2 -1
- package/lib/mjs/components/columns/Columns.d.ts +1 -0
- package/lib/mjs/components/columns/Columns.js +2 -3
- package/lib/mjs/components/columns/editForm/Columns.edit.display.d.ts +30 -1
- package/lib/mjs/components/columns/editForm/Columns.edit.display.js +23 -1
- package/lib/mjs/components/container/Container.d.ts +1 -0
- package/lib/mjs/components/container/Container.js +2 -6
- package/lib/mjs/components/content/Content.d.ts +1 -0
- package/lib/mjs/components/content/Content.js +1 -0
- package/lib/mjs/components/datagrid/DataGrid.d.ts +0 -8
- package/lib/mjs/components/datagrid/DataGrid.js +9 -26
- package/lib/mjs/components/datamap/DataMap.js +2 -1
- package/lib/mjs/components/datetime/DateTime.js +0 -2
- package/lib/mjs/components/day/Day.js +2 -3
- package/lib/mjs/components/editgrid/EditGrid.d.ts +8 -4
- package/lib/mjs/components/editgrid/EditGrid.js +97 -76
- package/lib/mjs/components/email/Email.js +0 -1
- package/lib/mjs/components/file/File.js +1 -1
- package/lib/mjs/components/file/fixtures/comp3.d.ts +29 -0
- package/lib/mjs/components/file/fixtures/comp3.js +29 -0
- package/lib/mjs/components/form/Form.d.ts +2 -6
- package/lib/mjs/components/form/Form.js +45 -14
- package/lib/mjs/components/index.d.ts +0 -2
- package/lib/mjs/components/index.js +0 -2
- package/lib/mjs/components/number/Number.d.ts +1 -2
- package/lib/mjs/components/number/Number.js +4 -5
- package/lib/mjs/components/panel/Panel.d.ts +0 -1
- package/lib/mjs/components/panel/Panel.js +3 -9
- package/lib/mjs/components/panel/editForm/Panel.edit.display.d.ts +6 -38
- package/lib/mjs/components/panel/editForm/Panel.edit.display.js +3 -16
- package/lib/mjs/components/phonenumber/PhoneNumber.js +17 -0
- package/lib/mjs/components/radio/Radio.js +0 -2
- package/lib/mjs/components/recaptcha/ReCaptcha.d.ts +1 -1
- package/lib/mjs/components/recaptcha/ReCaptcha.js +2 -2
- package/lib/mjs/components/select/Select.js +3 -2
- package/lib/mjs/components/selectboxes/SelectBoxes.d.ts +1 -2
- package/lib/mjs/components/selectboxes/SelectBoxes.js +7 -6
- package/lib/mjs/components/table/editForm/Table.edit.display.d.ts +31 -2
- package/lib/mjs/components/table/editForm/Table.edit.display.js +22 -0
- package/lib/mjs/components/tabs/editForm/Tabs.edit.display.d.ts +30 -2
- package/lib/mjs/components/tabs/editForm/Tabs.edit.display.js +22 -0
- package/lib/mjs/components/textfield/TextField.js +20 -6
- package/lib/mjs/components/time/Time.js +0 -6
- package/lib/mjs/components/url/Url.js +0 -1
- package/lib/mjs/components/well/editForm/Well.edit.display.d.ts +25 -2
- package/lib/mjs/components/well/editForm/Well.edit.display.js +18 -0
- package/lib/mjs/formio.embed.js +5 -3
- package/lib/mjs/formio.form.d.ts +1 -7
- package/lib/mjs/formio.form.js +3 -32
- package/lib/mjs/index.d.ts +2 -1
- package/lib/mjs/index.js +2 -1
- package/lib/mjs/providers/Providers.d.ts +0 -4
- package/lib/mjs/providers/storage/azure.d.ts +0 -2
- package/lib/mjs/providers/storage/azure.js +1 -6
- package/lib/mjs/providers/storage/googleDrive.d.ts +0 -1
- package/lib/mjs/providers/storage/googleDrive.js +0 -4
- package/lib/mjs/providers/storage/s3.d.ts +0 -1
- package/lib/mjs/providers/storage/s3.js +0 -4
- package/lib/mjs/templates/Templates.d.ts +1 -11
- package/lib/mjs/templates/Templates.js +4 -40
- package/lib/mjs/translations/en.d.ts +5 -0
- package/lib/mjs/translations/en.js +5 -0
- package/lib/mjs/utils/formUtils.js +1 -0
- package/lib/mjs/utils/index.d.ts +1 -0
- package/lib/mjs/utils/index.js +1 -0
- package/lib/mjs/utils/utils.d.ts +2 -1
- package/lib/mjs/utils/utils.js +24 -7
- package/package.json +13 -13
- package/lib/cjs/components/tree/Node.d.ts +0 -55
- package/lib/cjs/components/tree/Node.js +0 -185
- package/lib/cjs/components/tree/Tree.d.ts +0 -48
- package/lib/cjs/components/tree/Tree.form.d.ts +0 -3
- package/lib/cjs/components/tree/Tree.form.js +0 -21
- package/lib/cjs/components/tree/Tree.js +0 -383
- package/lib/cjs/components/tree/editForm/Tree.edit.data.d.ts +0 -5
- package/lib/cjs/components/tree/editForm/Tree.edit.data.js +0 -9
- package/lib/cjs/components/tree/editForm/Tree.edit.display.d.ts +0 -9
- package/lib/cjs/components/tree/editForm/Tree.edit.display.js +0 -12
- package/lib/cjs/components/tree/fixtures/comp1.d.ts +0 -23
- package/lib/cjs/components/tree/fixtures/comp1.js +0 -24
- package/lib/cjs/components/tree/fixtures/comp2.d.ts +0 -116
- package/lib/cjs/components/tree/fixtures/comp2.js +0 -82
- package/lib/cjs/components/tree/fixtures/comp3.d.ts +0 -24
- package/lib/cjs/components/tree/fixtures/comp3.js +0 -25
- package/lib/cjs/components/tree/fixtures/comp4.d.ts +0 -42
- package/lib/cjs/components/tree/fixtures/comp4.js +0 -47
- package/lib/cjs/components/tree/fixtures/index.d.ts +0 -5
- package/lib/cjs/components/tree/fixtures/index.js +0 -14
- package/lib/cjs/validator/Rules.d.ts +0 -53
- package/lib/cjs/validator/Rules.js +0 -22
- package/lib/cjs/validator/Validator.d.ts +0 -228
- package/lib/cjs/validator/Validator.js +0 -1113
- package/lib/cjs/validator/conjunctions/index.d.ts +0 -7
- package/lib/cjs/validator/conjunctions/index.js +0 -18
- package/lib/cjs/validator/operators/index.d.ts +0 -7
- package/lib/cjs/validator/operators/index.js +0 -18
- package/lib/cjs/validator/quickRules/index.d.ts +0 -7
- package/lib/cjs/validator/quickRules/index.js +0 -18
- package/lib/cjs/validator/rules/Custom.d.ts +0 -5
- package/lib/cjs/validator/rules/Custom.js +0 -30
- package/lib/cjs/validator/rules/Date.d.ts +0 -5
- package/lib/cjs/validator/rules/Date.js +0 -25
- package/lib/cjs/validator/rules/Day.d.ts +0 -5
- package/lib/cjs/validator/rules/Day.js +0 -58
- package/lib/cjs/validator/rules/Email.d.ts +0 -5
- package/lib/cjs/validator/rules/Email.js +0 -24
- package/lib/cjs/validator/rules/JSON.d.ts +0 -5
- package/lib/cjs/validator/rules/JSON.js +0 -29
- package/lib/cjs/validator/rules/Mask.d.ts +0 -5
- package/lib/cjs/validator/rules/Mask.js +0 -32
- package/lib/cjs/validator/rules/Max.d.ts +0 -5
- package/lib/cjs/validator/rules/Max.js +0 -21
- package/lib/cjs/validator/rules/MaxDate.d.ts +0 -5
- package/lib/cjs/validator/rules/MaxDate.js +0 -34
- package/lib/cjs/validator/rules/MaxLength.d.ts +0 -5
- package/lib/cjs/validator/rules/MaxLength.js +0 -20
- package/lib/cjs/validator/rules/MaxWords.d.ts +0 -5
- package/lib/cjs/validator/rules/MaxWords.js +0 -20
- package/lib/cjs/validator/rules/MaxYear.d.ts +0 -5
- package/lib/cjs/validator/rules/MaxYear.js +0 -22
- package/lib/cjs/validator/rules/Min.d.ts +0 -5
- package/lib/cjs/validator/rules/Min.js +0 -21
- package/lib/cjs/validator/rules/MinDate.d.ts +0 -5
- package/lib/cjs/validator/rules/MinDate.js +0 -30
- package/lib/cjs/validator/rules/MinLength.d.ts +0 -5
- package/lib/cjs/validator/rules/MinLength.js +0 -20
- package/lib/cjs/validator/rules/MinWords.d.ts +0 -5
- package/lib/cjs/validator/rules/MinWords.js +0 -20
- package/lib/cjs/validator/rules/MinYear.d.ts +0 -5
- package/lib/cjs/validator/rules/MinYear.js +0 -22
- package/lib/cjs/validator/rules/Pattern.d.ts +0 -5
- package/lib/cjs/validator/rules/Pattern.js +0 -20
- package/lib/cjs/validator/rules/Required.d.ts +0 -5
- package/lib/cjs/validator/rules/Required.js +0 -17
- package/lib/cjs/validator/rules/Rule.d.ts +0 -7
- package/lib/cjs/validator/rules/Rule.js +0 -12
- package/lib/cjs/validator/rules/Select.d.ts +0 -5
- package/lib/cjs/validator/rules/Select.js +0 -95
- package/lib/cjs/validator/rules/Time.d.ts +0 -5
- package/lib/cjs/validator/rules/Time.js +0 -19
- package/lib/cjs/validator/rules/Unique.d.ts +0 -5
- package/lib/cjs/validator/rules/Unique.js +0 -69
- package/lib/cjs/validator/rules/Url.d.ts +0 -5
- package/lib/cjs/validator/rules/Url.js +0 -23
- package/lib/cjs/validator/rules/index.d.ts +0 -47
- package/lib/cjs/validator/rules/index.js +0 -51
- package/lib/cjs/validator/transformers/index.d.ts +0 -7
- package/lib/cjs/validator/transformers/index.js +0 -18
- package/lib/cjs/validator/valueSources/index.d.ts +0 -7
- package/lib/cjs/validator/valueSources/index.js +0 -18
- package/lib/mjs/components/tree/Node.d.ts +0 -55
- package/lib/mjs/components/tree/Node.js +0 -179
- package/lib/mjs/components/tree/Tree.d.ts +0 -48
- package/lib/mjs/components/tree/Tree.form.d.ts +0 -3
- package/lib/mjs/components/tree/Tree.form.js +0 -15
- package/lib/mjs/components/tree/Tree.js +0 -384
- package/lib/mjs/components/tree/editForm/Tree.edit.data.d.ts +0 -5
- package/lib/mjs/components/tree/editForm/Tree.edit.data.js +0 -7
- package/lib/mjs/components/tree/editForm/Tree.edit.display.d.ts +0 -9
- package/lib/mjs/components/tree/editForm/Tree.edit.display.js +0 -10
- package/lib/mjs/components/tree/fixtures/comp1.d.ts +0 -23
- package/lib/mjs/components/tree/fixtures/comp1.js +0 -22
- package/lib/mjs/components/tree/fixtures/comp2.d.ts +0 -116
- package/lib/mjs/components/tree/fixtures/comp2.js +0 -80
- package/lib/mjs/components/tree/fixtures/comp3.d.ts +0 -24
- package/lib/mjs/components/tree/fixtures/comp3.js +0 -23
- package/lib/mjs/components/tree/fixtures/comp4.d.ts +0 -42
- package/lib/mjs/components/tree/fixtures/comp4.js +0 -45
- package/lib/mjs/components/tree/fixtures/index.d.ts +0 -5
- package/lib/mjs/components/tree/fixtures/index.js +0 -5
- package/lib/mjs/validator/Rules.d.ts +0 -53
- package/lib/mjs/validator/Rules.js +0 -17
- package/lib/mjs/validator/Validator.d.ts +0 -228
- package/lib/mjs/validator/Validator.js +0 -1103
- package/lib/mjs/validator/conjunctions/index.d.ts +0 -7
- package/lib/mjs/validator/conjunctions/index.js +0 -16
- package/lib/mjs/validator/operators/index.d.ts +0 -7
- package/lib/mjs/validator/operators/index.js +0 -16
- package/lib/mjs/validator/quickRules/index.d.ts +0 -7
- package/lib/mjs/validator/quickRules/index.js +0 -16
- package/lib/mjs/validator/rules/Custom.d.ts +0 -5
- package/lib/mjs/validator/rules/Custom.js +0 -21
- package/lib/mjs/validator/rules/Date.d.ts +0 -5
- package/lib/mjs/validator/rules/Date.js +0 -16
- package/lib/mjs/validator/rules/Day.d.ts +0 -5
- package/lib/mjs/validator/rules/Day.js +0 -49
- package/lib/mjs/validator/rules/Email.d.ts +0 -5
- package/lib/mjs/validator/rules/Email.js +0 -15
- package/lib/mjs/validator/rules/JSON.d.ts +0 -5
- package/lib/mjs/validator/rules/JSON.js +0 -20
- package/lib/mjs/validator/rules/Mask.d.ts +0 -5
- package/lib/mjs/validator/rules/Mask.js +0 -23
- package/lib/mjs/validator/rules/Max.d.ts +0 -5
- package/lib/mjs/validator/rules/Max.js +0 -12
- package/lib/mjs/validator/rules/MaxDate.d.ts +0 -5
- package/lib/mjs/validator/rules/MaxDate.js +0 -25
- package/lib/mjs/validator/rules/MaxLength.d.ts +0 -5
- package/lib/mjs/validator/rules/MaxLength.js +0 -11
- package/lib/mjs/validator/rules/MaxWords.d.ts +0 -5
- package/lib/mjs/validator/rules/MaxWords.js +0 -11
- package/lib/mjs/validator/rules/MaxYear.d.ts +0 -5
- package/lib/mjs/validator/rules/MaxYear.js +0 -13
- package/lib/mjs/validator/rules/Min.d.ts +0 -5
- package/lib/mjs/validator/rules/Min.js +0 -12
- package/lib/mjs/validator/rules/MinDate.d.ts +0 -5
- package/lib/mjs/validator/rules/MinDate.js +0 -21
- package/lib/mjs/validator/rules/MinLength.d.ts +0 -5
- package/lib/mjs/validator/rules/MinLength.js +0 -11
- package/lib/mjs/validator/rules/MinWords.d.ts +0 -5
- package/lib/mjs/validator/rules/MinWords.js +0 -11
- package/lib/mjs/validator/rules/MinYear.d.ts +0 -5
- package/lib/mjs/validator/rules/MinYear.js +0 -13
- package/lib/mjs/validator/rules/Pattern.d.ts +0 -5
- package/lib/mjs/validator/rules/Pattern.js +0 -11
- package/lib/mjs/validator/rules/Required.d.ts +0 -5
- package/lib/mjs/validator/rules/Required.js +0 -8
- package/lib/mjs/validator/rules/Rule.d.ts +0 -7
- package/lib/mjs/validator/rules/Rule.js +0 -9
- package/lib/mjs/validator/rules/Select.d.ts +0 -5
- package/lib/mjs/validator/rules/Select.js +0 -86
- package/lib/mjs/validator/rules/Time.d.ts +0 -5
- package/lib/mjs/validator/rules/Time.js +0 -10
- package/lib/mjs/validator/rules/Unique.d.ts +0 -5
- package/lib/mjs/validator/rules/Unique.js +0 -60
- package/lib/mjs/validator/rules/Url.d.ts +0 -5
- package/lib/mjs/validator/rules/Url.js +0 -14
- package/lib/mjs/validator/rules/index.d.ts +0 -47
- package/lib/mjs/validator/rules/index.js +0 -46
- package/lib/mjs/validator/transformers/index.d.ts +0 -7
- package/lib/mjs/validator/transformers/index.js +0 -16
- package/lib/mjs/validator/valueSources/index.d.ts +0 -7
- package/lib/mjs/validator/valueSources/index.js +0 -16
package/lib/mjs/formio.form.d.ts
CHANGED
@@ -8,16 +8,10 @@ export function useModule(defaultFn?: null): (plugins: any, options?: {}) => voi
|
|
8
8
|
import Components from './components/Components';
|
9
9
|
import Displays from './displays/Displays';
|
10
10
|
import Providers from './providers';
|
11
|
-
import Rules from './validator/Rules';
|
12
11
|
import Widgets from './widgets';
|
13
12
|
import Templates from './templates/Templates';
|
14
|
-
import Conjunctions from './validator/conjunctions';
|
15
|
-
import Operators from './validator/operators';
|
16
|
-
import QuickRules from './validator/quickRules';
|
17
|
-
import Transformers from './validator/transformers';
|
18
|
-
import ValueSources from './validator/valueSources';
|
19
13
|
import Utils from './utils';
|
20
14
|
import Form from './Form';
|
21
15
|
import { Formio } from './Formio';
|
22
16
|
import Licenses from './licenses';
|
23
|
-
export { Components, Displays, Providers,
|
17
|
+
export { Components, Displays, Providers, Widgets, Templates, Utils, Form, Formio, Licenses };
|
package/lib/mjs/formio.form.js
CHANGED
@@ -5,12 +5,6 @@ import Components from './components/Components';
|
|
5
5
|
import Displays from './displays/Displays';
|
6
6
|
import Templates from './templates/Templates';
|
7
7
|
import Providers from './providers';
|
8
|
-
import Rules from './validator/Rules';
|
9
|
-
import Conjunctions from './validator/conjunctions';
|
10
|
-
import Operators from './validator/operators';
|
11
|
-
import QuickRules from './validator/quickRules';
|
12
|
-
import Transformers from './validator/transformers';
|
13
|
-
import ValueSources from './validator/valueSources';
|
14
8
|
import Widgets from './widgets';
|
15
9
|
import Form from './Form';
|
16
10
|
import Utils from './utils';
|
@@ -23,20 +17,15 @@ Formio.loadModules = (path = `${Formio.getApiUrl()}/externalModules.js`, name =
|
|
23
17
|
});
|
24
18
|
};
|
25
19
|
// This is needed to maintain correct imports using the "dist" file.
|
20
|
+
Formio.isRenderer = true;
|
26
21
|
Formio.Components = Components;
|
27
22
|
Formio.Templates = Templates;
|
28
23
|
Formio.Utils = Utils;
|
29
24
|
Formio.Form = Form;
|
30
25
|
Formio.Displays = Displays;
|
31
26
|
Formio.Providers = Providers;
|
32
|
-
Formio.Rules = Rules;
|
33
27
|
Formio.Widgets = Widgets;
|
34
28
|
Formio.Evaluator = Evaluator;
|
35
|
-
Formio.Conjunctions = Conjunctions;
|
36
|
-
Formio.Operators = Operators;
|
37
|
-
Formio.QuickRules = QuickRules;
|
38
|
-
Formio.Transformers = Transformers;
|
39
|
-
Formio.ValueSources = ValueSources;
|
40
29
|
Formio.AllComponents = AllComponents;
|
41
30
|
Formio.Licenses = Licenses;
|
42
31
|
// This is strange, but is needed for "premium" components to import correctly.
|
@@ -85,30 +74,12 @@ export function registerModule(mod, defaultFn = null, options = {}) {
|
|
85
74
|
case 'displays':
|
86
75
|
Formio.Displays.addDisplays(mod.displays);
|
87
76
|
break;
|
88
|
-
case 'rules':
|
89
|
-
Formio.Rules.addRules(mod.rules);
|
90
|
-
break;
|
91
77
|
case 'evaluator':
|
92
78
|
Formio.Evaluator.registerEvaluator(mod.evaluator);
|
93
79
|
break;
|
94
|
-
case 'conjunctions':
|
95
|
-
Formio.Conjunctions.addConjunctions(mod.conjunctions);
|
96
|
-
break;
|
97
|
-
case 'operators':
|
98
|
-
Formio.Operators.addOperators(mod.operators);
|
99
|
-
break;
|
100
|
-
case 'quickRules':
|
101
|
-
Formio.QuickRules.addQuickRules(mod.quickRules);
|
102
|
-
break;
|
103
|
-
case 'transformers':
|
104
|
-
Formio.Transformers.addTransformers(mod.transformers);
|
105
|
-
break;
|
106
|
-
case 'valueSources':
|
107
|
-
Formio.ValueSources.addValueSources(mod.valueSources);
|
108
|
-
break;
|
109
80
|
case 'library':
|
110
81
|
options.license
|
111
|
-
? Formio.Licenses.addLicense(mod.library,
|
82
|
+
? Formio.Licenses.addLicense(mod.library, options.license)
|
112
83
|
: Formio.Licenses.removeLicense(mod.library);
|
113
84
|
break;
|
114
85
|
default:
|
@@ -143,4 +114,4 @@ export function useModule(defaultFn = null) {
|
|
143
114
|
*/
|
144
115
|
Formio.use = useModule();
|
145
116
|
// Export the components.
|
146
|
-
export { Components, Displays, Providers,
|
117
|
+
export { Components, Displays, Providers, Widgets, Templates, Utils, Form, Formio, Licenses };
|
package/lib/mjs/index.d.ts
CHANGED
package/lib/mjs/index.js
CHANGED
@@ -2,6 +2,7 @@ import FormBuilder from './FormBuilder';
|
|
2
2
|
import Builders from './builders/Builders';
|
3
3
|
import { Formio, useModule } from './formio.form';
|
4
4
|
Formio.Builders = Builders;
|
5
|
+
Formio.isBuilder = true;
|
5
6
|
Formio.use = useModule((key, mod) => {
|
6
7
|
if (key === 'builders') {
|
7
8
|
Formio.Builders.addBuilders(mod.builders);
|
@@ -10,4 +11,4 @@ Formio.use = useModule((key, mod) => {
|
|
10
11
|
return false;
|
11
12
|
});
|
12
13
|
export * from './formio.form';
|
13
|
-
export { FormBuilder, Builders };
|
14
|
+
export { FormBuilder, Builders, Formio };
|
@@ -27,7 +27,6 @@ export default class Providers {
|
|
27
27
|
type: any;
|
28
28
|
}>;
|
29
29
|
downloadFile(file: any): any;
|
30
|
-
deleteFile(fileInfo: any): any;
|
31
30
|
};
|
32
31
|
title: string;
|
33
32
|
};
|
@@ -50,10 +49,8 @@ export default class Providers {
|
|
50
49
|
type: any;
|
51
50
|
groupPermissions: any;
|
52
51
|
groupId: any;
|
53
|
-
key: any;
|
54
52
|
}>;
|
55
53
|
downloadFile(file: any): any;
|
56
|
-
deleteFile: (fileInfo: any) => any;
|
57
54
|
};
|
58
55
|
title: string;
|
59
56
|
};
|
@@ -71,7 +68,6 @@ export default class Providers {
|
|
71
68
|
(formio: any): {
|
72
69
|
uploadFile(file: any, fileName: any, dir: any, progressCallback: any, url: any, options: any, fileKey: any, groupPermissions: any, groupId: any, abortCallback: any): Promise<any>;
|
73
70
|
downloadFile(file: any): Promise<any>;
|
74
|
-
deleteFile: (fileInfo: any) => any;
|
75
71
|
};
|
76
72
|
title: string;
|
77
73
|
};
|
@@ -6,7 +6,7 @@ const azure = (formio) => ({
|
|
6
6
|
xhr.setRequestHeader('Content-Type', file.type);
|
7
7
|
xhr.setRequestHeader('x-ms-blob-type', 'BlockBlob');
|
8
8
|
return file;
|
9
|
-
}, file, fileName, dir, progressCallback, groupPermissions, groupId, abortCallback).then((
|
9
|
+
}, file, fileName, dir, progressCallback, groupPermissions, groupId, abortCallback).then(() => {
|
10
10
|
return {
|
11
11
|
storage: 'azure',
|
12
12
|
name: XHR.path([dir, fileName]),
|
@@ -14,16 +14,11 @@ const azure = (formio) => ({
|
|
14
14
|
type: file.type,
|
15
15
|
groupPermissions,
|
16
16
|
groupId,
|
17
|
-
key: response.pathFile
|
18
17
|
};
|
19
18
|
});
|
20
19
|
},
|
21
20
|
downloadFile(file) {
|
22
21
|
return formio.makeRequest('file', `${formio.formUrl}/storage/azure?name=${XHR.trim(file.name)}`, 'GET');
|
23
|
-
},
|
24
|
-
deleteFile: function deleteFile(fileInfo) {
|
25
|
-
var url = `${formio.formUrl}/storage/azure?name=${XHR.trim(fileInfo.name)}&key=${XHR.trim(fileInfo.key)}`;
|
26
|
-
return formio.makeRequest('', url, 'delete');
|
27
22
|
}
|
28
23
|
});
|
29
24
|
azure.title = 'Azure File Services';
|
@@ -2,7 +2,6 @@ export default googledrive;
|
|
2
2
|
declare function googledrive(formio: any): {
|
3
3
|
uploadFile(file: any, fileName: any, dir: any, progressCallback: any, url: any, options: any, fileKey: any, groupPermissions: any, groupId: any, abortCallback: any): Promise<any>;
|
4
4
|
downloadFile(file: any): Promise<any>;
|
5
|
-
deleteFile: (fileInfo: any) => any;
|
6
5
|
};
|
7
6
|
declare namespace googledrive {
|
8
7
|
const title: string;
|
@@ -48,10 +48,6 @@ const googledrive = (formio) => ({
|
|
48
48
|
file.url =
|
49
49
|
`${formio.formUrl}/storage/gdrive?fileId=${file.id}&fileName=${file.originalName}${token ? `&x-jwt-token=${token}` : ''}`;
|
50
50
|
return Promise.resolve(file);
|
51
|
-
},
|
52
|
-
deleteFile: function deleteFile(fileInfo) {
|
53
|
-
var url = ''.concat(formio.formUrl, `/storage/gdrive?id=${fileInfo.id}&name=${fileInfo.originalName}`);
|
54
|
-
return formio.makeRequest('', url, 'delete');
|
55
51
|
}
|
56
52
|
});
|
57
53
|
googledrive.title = 'Google Drive';
|
@@ -38,10 +38,6 @@ const s3 = (formio) => ({
|
|
38
38
|
else {
|
39
39
|
return Promise.resolve(file);
|
40
40
|
}
|
41
|
-
},
|
42
|
-
deleteFile(fileInfo) {
|
43
|
-
const url = `${formio.formUrl}/file/${XHR.trim(fileInfo.name)}?bucket=${XHR.trim(fileInfo.bucket)}&key=${XHR.trim(fileInfo.key)}`;
|
44
|
-
return formio.makeRequest('', url, 'delete');
|
45
41
|
}
|
46
42
|
});
|
47
43
|
s3.title = 'S3';
|
@@ -1,11 +1 @@
|
|
1
|
-
export default
|
2
|
-
static get templates(): any;
|
3
|
-
static addTemplate(name: any, template: any): void;
|
4
|
-
static extendTemplate(name: any, template: any): void;
|
5
|
-
static setTemplate(name: any, template: any): void;
|
6
|
-
static set current(arg: any);
|
7
|
-
static get current(): any;
|
8
|
-
static get defaultTemplates(): any;
|
9
|
-
static set framework(arg: any);
|
10
|
-
static get framework(): any;
|
11
|
-
}
|
1
|
+
export default Template;
|
@@ -1,41 +1,5 @@
|
|
1
|
-
import _ from 'lodash';
|
2
1
|
import templates from './index';
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
}
|
8
|
-
return Templates._templates;
|
9
|
-
}
|
10
|
-
static addTemplate(name, template) {
|
11
|
-
Templates.templates[name] = template;
|
12
|
-
}
|
13
|
-
static extendTemplate(name, template) {
|
14
|
-
Templates.templates[name] = _.merge({}, Templates.templates[name], template);
|
15
|
-
}
|
16
|
-
static setTemplate(name, template) {
|
17
|
-
Templates.addTemplate(name, template);
|
18
|
-
}
|
19
|
-
static set current(templates) {
|
20
|
-
const defaultTemplates = Templates.current;
|
21
|
-
Templates._current = _.merge({}, defaultTemplates, templates);
|
22
|
-
}
|
23
|
-
static get current() {
|
24
|
-
if (Templates._current) {
|
25
|
-
return Templates._current;
|
26
|
-
}
|
27
|
-
return Templates.defaultTemplates;
|
28
|
-
}
|
29
|
-
static get defaultTemplates() {
|
30
|
-
return Templates.templates.hasOwnProperty('bootstrap') ? Templates.templates.bootstrap : {};
|
31
|
-
}
|
32
|
-
static set framework(framework) {
|
33
|
-
if (Templates.templates.hasOwnProperty(framework)) {
|
34
|
-
Templates._framework = framework;
|
35
|
-
Templates._current = Templates.templates[framework];
|
36
|
-
}
|
37
|
-
}
|
38
|
-
static get framework() {
|
39
|
-
return Templates._framework;
|
40
|
-
}
|
41
|
-
}
|
2
|
+
import { Template } from '@formio/core/template';
|
3
|
+
Template.addTemplates(templates);
|
4
|
+
Template.defaultTemplates = templates.bootstrap;
|
5
|
+
export default Template;
|
@@ -2,6 +2,8 @@ declare namespace _default {
|
|
2
2
|
const unsavedRowsError: string;
|
3
3
|
const invalidRowsError: string;
|
4
4
|
const invalidRowError: string;
|
5
|
+
const invalidOption: string;
|
6
|
+
const invalidDay: string;
|
5
7
|
const alertMessageWithLabel: string;
|
6
8
|
const alertMessage: string;
|
7
9
|
const complete: string;
|
@@ -26,11 +28,14 @@ declare namespace _default {
|
|
26
28
|
const minDate: string;
|
27
29
|
const maxYear: string;
|
28
30
|
const minYear: string;
|
31
|
+
const minSelectedCount: string;
|
32
|
+
const maxSelectedCount: string;
|
29
33
|
const invalid_email: string;
|
30
34
|
const invalid_url: string;
|
31
35
|
const invalid_regex: string;
|
32
36
|
const invalid_date: string;
|
33
37
|
const invalid_day: string;
|
38
|
+
const invalidValueProperty: string;
|
34
39
|
const mask: string;
|
35
40
|
const valueIsNotAvailable: string;
|
36
41
|
const stripe: string;
|
@@ -2,6 +2,8 @@ export default {
|
|
2
2
|
unsavedRowsError: 'Please save all rows before proceeding.',
|
3
3
|
invalidRowsError: 'Please correct invalid rows before proceeding.',
|
4
4
|
invalidRowError: 'Invalid row. Please correct it or delete.',
|
5
|
+
invalidOption: '{{field}} is an invalid value.',
|
6
|
+
invalidDay: '{{field}} is not a valid day.',
|
5
7
|
alertMessageWithLabel: '{{label}}: {{message}}',
|
6
8
|
alertMessage: '{{message}}',
|
7
9
|
complete: 'Submission Complete',
|
@@ -26,11 +28,14 @@ export default {
|
|
26
28
|
minDate: '{{field}} should not contain date before {{- minDate}}',
|
27
29
|
maxYear: '{{field}} should not contain year greater than {{maxYear}}',
|
28
30
|
minYear: '{{field}} should not contain year less than {{minYear}}',
|
31
|
+
minSelectedCount: 'You must select at least {{minCount}} items',
|
32
|
+
maxSelectedCount: 'You may only select up to {{maxCount}} items',
|
29
33
|
invalid_email: '{{field}} must be a valid email.',
|
30
34
|
invalid_url: '{{field}} must be a valid url.',
|
31
35
|
invalid_regex: '{{field}} does not match the pattern {{regex}}.',
|
32
36
|
invalid_date: '{{field}} is not a valid date.',
|
33
37
|
invalid_day: '{{field}} is not a valid day.',
|
38
|
+
invalidValueProperty: 'Invalid Value Property',
|
34
39
|
mask: '{{field}} does not match the mask.',
|
35
40
|
valueIsNotAvailable: '{{ field }} is an invalid value.',
|
36
41
|
stripe: '{{stripe}}',
|
@@ -12,6 +12,7 @@ import chunk from 'lodash/chunk';
|
|
12
12
|
import pad from 'lodash/pad';
|
13
13
|
import { compare, applyPatch } from 'fast-json-patch';
|
14
14
|
import _ from 'lodash';
|
15
|
+
import { fastCloneDeep } from './utils';
|
15
16
|
/**
|
16
17
|
* Determine if a component is a layout component or not.
|
17
18
|
*
|
package/lib/mjs/utils/index.d.ts
CHANGED
package/lib/mjs/utils/index.js
CHANGED
package/lib/mjs/utils/utils.d.ts
CHANGED
@@ -306,7 +306,7 @@ export function sanitize(string: any, options: any): any;
|
|
306
306
|
export function fastCloneDeep(obj: any): any;
|
307
307
|
export function isInputComponent(componentJson: any): any;
|
308
308
|
export function getArrayFromComponentPath(pathStr: any): any;
|
309
|
-
export function
|
309
|
+
export function isChildOf(child: any, parent: any): boolean;
|
310
310
|
export function getStringFromComponentPath(path: any): any;
|
311
311
|
export function round(number: any, precision: any): any;
|
312
312
|
/**
|
@@ -367,6 +367,7 @@ export namespace componentValueTypes {
|
|
367
367
|
const date: string;
|
368
368
|
const any: string;
|
369
369
|
}
|
370
|
+
export function interpolateErrors(component: any, errors: FieldError[], interpolateFn: any): [];
|
370
371
|
import jsonLogic from 'json-logic-js';
|
371
372
|
import ConditionOperators from './conditionOperators';
|
372
373
|
import Evaluator from './Evaluator';
|
package/lib/mjs/utils/utils.js
CHANGED
@@ -715,8 +715,10 @@ export function convertFormatToMask(format) {
|
|
715
715
|
.replace(/M{3}/g, '***')
|
716
716
|
// Short month conversion if input as text.
|
717
717
|
.replace(/e/g, 'Q')
|
718
|
+
// Month number conversion.
|
719
|
+
.replace(/W/g, '99')
|
718
720
|
// Year conversion.
|
719
|
-
.replace(/[
|
721
|
+
.replace(/[ydhmswHMG]/g, '9')
|
720
722
|
// AM/PM conversion.
|
721
723
|
.replace(/a/g, 'AA');
|
722
724
|
}
|
@@ -1207,13 +1209,14 @@ export function getArrayFromComponentPath(pathStr) {
|
|
1207
1209
|
.split('.')
|
1208
1210
|
.map(part => _.defaultTo(_.toNumber(part), part));
|
1209
1211
|
}
|
1210
|
-
export function
|
1211
|
-
|
1212
|
-
if (
|
1213
|
-
return
|
1212
|
+
export function isChildOf(child, parent) {
|
1213
|
+
while (child && child.parent) {
|
1214
|
+
if (child.parent === parent) {
|
1215
|
+
return true;
|
1214
1216
|
}
|
1215
|
-
|
1216
|
-
}
|
1217
|
+
child = child.parent;
|
1218
|
+
}
|
1219
|
+
return false;
|
1217
1220
|
}
|
1218
1221
|
export function getStringFromComponentPath(path) {
|
1219
1222
|
if (!_.isArray(path)) {
|
@@ -1384,3 +1387,17 @@ export function getComponentSavedTypes(fullSchema) {
|
|
1384
1387
|
}
|
1385
1388
|
return null;
|
1386
1389
|
}
|
1390
|
+
/**
|
1391
|
+
* Interpolates @formio/core errors so that they are compatible with the renderer
|
1392
|
+
* @param {FieldError[]} errors
|
1393
|
+
* @param firstPass
|
1394
|
+
* @returns {[]}
|
1395
|
+
*/
|
1396
|
+
export const interpolateErrors = (component, errors, interpolateFn) => {
|
1397
|
+
return errors.map((error) => {
|
1398
|
+
error.component = component;
|
1399
|
+
const { errorKeyOrMessage, context } = error;
|
1400
|
+
const toInterpolate = component.errors && component.errors[errorKeyOrMessage] ? component.errors[errorKeyOrMessage] : errorKeyOrMessage;
|
1401
|
+
return { ...error, message: unescapeHTML(interpolateFn(toInterpolate, context)), context: { ...context } };
|
1402
|
+
});
|
1403
|
+
};
|
package/package.json
CHANGED
@@ -1,30 +1,30 @@
|
|
1
1
|
{
|
2
2
|
"name": "@formio/js",
|
3
|
-
"version": "5.0.0-rc.
|
3
|
+
"version": "5.0.0-rc.29",
|
4
4
|
"description": "JavaScript powered Forms with JSON Form Builder",
|
5
5
|
"main": "lib/cjs/index.js",
|
6
|
-
"module": "lib/mjs/index.js",
|
7
6
|
"exports": {
|
8
7
|
".": {
|
9
|
-
"import": "./lib/
|
8
|
+
"import": "./lib/cjs/index.js",
|
10
9
|
"require": "./lib/cjs/index.js"
|
11
10
|
},
|
12
11
|
"./sdk": {
|
13
|
-
"import": "./lib/
|
12
|
+
"import": "./lib/cjs/Formio.js",
|
14
13
|
"require": "./lib/cjs/Formio.js"
|
15
14
|
},
|
16
15
|
"./utils": {
|
17
|
-
"import": "./lib/
|
16
|
+
"import": "./lib/cjs/utils/index.js",
|
18
17
|
"require": "./lib/cjs/utils/index.js"
|
19
18
|
},
|
20
19
|
"./form": {
|
21
|
-
"import": "./lib/
|
20
|
+
"import": "./lib/cjs/formio.form.js",
|
22
21
|
"require": "./lib/cjs/formio.form.js"
|
23
22
|
},
|
24
23
|
"./embed": {
|
25
|
-
"import": "./lib/
|
26
|
-
"require": "./lib/cjs/
|
27
|
-
}
|
24
|
+
"import": "./lib/cjs/Embed.js",
|
25
|
+
"require": "./lib/cjs/Embed.js"
|
26
|
+
},
|
27
|
+
"./dist/*": "./dist/*"
|
28
28
|
},
|
29
29
|
"types": "index.d.ts",
|
30
30
|
"files": [
|
@@ -80,7 +80,7 @@
|
|
80
80
|
"dependencies": {
|
81
81
|
"@formio/bootstrap": "^3.0.0-rc.13",
|
82
82
|
"@formio/choices.js": "^10.2.0",
|
83
|
-
"@formio/core": "1.3.0-rc.
|
83
|
+
"@formio/core": "^1.3.0-rc.21",
|
84
84
|
"@formio/text-mask-addons": "^3.8.0-formio.2",
|
85
85
|
"@formio/vanilla-text-mask": "^5.1.1-formio.1",
|
86
86
|
"autocompleter": "^8.0.4",
|
@@ -88,10 +88,10 @@
|
|
88
88
|
"browser-cookies": "^1.2.0",
|
89
89
|
"browser-md5-file": "^1.1.1",
|
90
90
|
"compare-versions": "^6.0.0-rc.2",
|
91
|
-
"core-js": "^3.
|
91
|
+
"core-js": "^3.32.1",
|
92
92
|
"dialog-polyfill": "^0.5.6",
|
93
93
|
"dom-autoscroller": "^2.3.4",
|
94
|
-
"dompurify": "^3.0.
|
94
|
+
"dompurify": "^3.0.5",
|
95
95
|
"downloadjs": "^1.4.7",
|
96
96
|
"dragula": "^3.7.3",
|
97
97
|
"eventemitter3": "^5.0.1",
|
@@ -111,7 +111,7 @@
|
|
111
111
|
"string-hash": "^1.1.3",
|
112
112
|
"tippy.js": "^6.3.7",
|
113
113
|
"uuid": "^9.0.0",
|
114
|
-
"vanilla-picker": "^2.12.
|
114
|
+
"vanilla-picker": "^2.12.2"
|
115
115
|
},
|
116
116
|
"devDependencies": {
|
117
117
|
"@typescript-eslint/eslint-plugin": "^5.60.1",
|
@@ -1,55 +0,0 @@
|
|
1
|
-
export default class Node {
|
2
|
-
constructor(parent: any, { data, children, }?: {
|
3
|
-
data?: {} | undefined;
|
4
|
-
children?: any[] | undefined;
|
5
|
-
}, { checkNode, createComponents, isNew, removeComponents, parentPath }?: {
|
6
|
-
checkNode: any;
|
7
|
-
createComponents: any;
|
8
|
-
isNew?: boolean | undefined;
|
9
|
-
removeComponents: any;
|
10
|
-
parentPath?: string | undefined;
|
11
|
-
});
|
12
|
-
parent: any;
|
13
|
-
previousData: {};
|
14
|
-
persistentData: any;
|
15
|
-
new: boolean;
|
16
|
-
createComponents: any;
|
17
|
-
checkNode: any;
|
18
|
-
removeComponents: any;
|
19
|
-
revertAvailable: boolean;
|
20
|
-
editing: boolean;
|
21
|
-
collapsed: boolean;
|
22
|
-
components: any[];
|
23
|
-
children: Node[];
|
24
|
-
parentPath: string;
|
25
|
-
get value(): any;
|
26
|
-
get isRoot(): boolean;
|
27
|
-
get changing(): boolean;
|
28
|
-
get hasChangingChildren(): any;
|
29
|
-
get hasData(): boolean;
|
30
|
-
get hasChildren(): boolean;
|
31
|
-
getChildrenPath(index: any): string;
|
32
|
-
eachChild(iteratee: any): Node;
|
33
|
-
getComponents(): any;
|
34
|
-
validateNode(): boolean;
|
35
|
-
addChild(): Node | null;
|
36
|
-
removeChild(childToRemove: any): Node;
|
37
|
-
edit(): Node;
|
38
|
-
save(): boolean;
|
39
|
-
cancel(): Node;
|
40
|
-
remove(): Node;
|
41
|
-
revert(): Node;
|
42
|
-
data: any;
|
43
|
-
commitData(): Node;
|
44
|
-
resetData(): Node;
|
45
|
-
updateComponentsContext(): Node;
|
46
|
-
instantiateComponents(): void;
|
47
|
-
clearComponents(): void;
|
48
|
-
/**
|
49
|
-
* Return a path of component's value.
|
50
|
-
*
|
51
|
-
* @param {Object} component - The component instance.
|
52
|
-
* @return {string} - The component's value path.
|
53
|
-
*/
|
54
|
-
calculateComponentPath(component: Object): string;
|
55
|
-
}
|