@tsed/react-formio 3.0.0-alpha.1 → 3.0.0-alpha.11
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/atoms/icon/Icon.d.ts +6 -0
- package/dist/atoms/icon/Icon.js +12 -0
- package/dist/atoms/icon/Icon.js.map +1 -0
- package/dist/chunks/_commonjsHelpers.js +7 -0
- package/dist/chunks/_commonjsHelpers.js.map +1 -0
- package/dist/chunks/index.js +16 -18
- package/dist/chunks/index.js.map +1 -1
- package/dist/chunks/index.module.js +56 -0
- package/dist/chunks/index.module.js.map +1 -0
- package/dist/chunks/react-select-animated.esm.js +3513 -0
- package/dist/chunks/react-select-animated.esm.js.map +1 -0
- package/dist/hooks/keyboard.constants.d.ts +38 -0
- package/dist/hooks/keyboard.constants.js +7 -0
- package/dist/hooks/keyboard.constants.js.map +1 -0
- package/dist/hooks/useKeyboardControls.d.ts +12 -0
- package/dist/hooks/useKeyboardControls.js +35 -0
- package/dist/hooks/useKeyboardControls.js.map +1 -0
- package/dist/index.d.ts +0 -6
- package/dist/index.js +12 -105
- package/dist/index.js.map +1 -1
- package/dist/interfaces/ActionType.d.ts +23 -0
- package/dist/interfaces/ActionType.js +2 -0
- package/dist/interfaces/ActionType.js.map +1 -0
- package/dist/interfaces/ComponentType.d.ts +2 -0
- package/dist/interfaces/ComponentType.js +2 -0
- package/dist/interfaces/ComponentType.js.map +1 -0
- package/dist/interfaces/FormOptions.d.ts +3 -0
- package/dist/interfaces/{FormSchema.d.ts → FormType.d.ts} +3 -3
- package/dist/interfaces/FormType.js +2 -0
- package/dist/interfaces/FormType.js.map +1 -0
- package/dist/interfaces/Operation.d.ts +13 -4
- package/dist/interfaces/{RoleSchema.d.ts → RoleType.d.ts} +1 -1
- package/dist/interfaces/RoleType.js +2 -0
- package/dist/interfaces/RoleType.js.map +1 -0
- package/dist/interfaces/SubmissionType.d.ts +29 -0
- package/dist/interfaces/SubmissionType.js +2 -0
- package/dist/interfaces/SubmissionType.js.map +1 -0
- package/dist/interfaces/index.d.ts +5 -4
- package/dist/molecules/alert/Alert.d.ts +6 -0
- package/dist/{components/alert/alert.component.js → molecules/alert/Alert.js} +10 -7
- package/dist/molecules/alert/Alert.js.map +1 -0
- package/dist/molecules/button/Button.d.ts +21 -0
- package/dist/molecules/button/Button.js +51 -0
- package/dist/molecules/button/Button.js.map +1 -0
- package/dist/molecules/card/Card.js +14 -0
- package/dist/molecules/card/Card.js.map +1 -0
- package/dist/molecules/forms/form-control/FormControl.d.ts +17 -0
- package/dist/molecules/forms/form-control/FormControl.js +51 -0
- package/dist/molecules/forms/form-control/FormControl.js.map +1 -0
- package/dist/molecules/forms/input-tags/InputTags.d.ts +2 -0
- package/dist/molecules/forms/input-tags/InputTags.interface.d.ts +7 -0
- package/dist/molecules/forms/input-tags/InputTags.interface.js +2 -0
- package/dist/molecules/forms/input-tags/InputTags.interface.js.map +1 -0
- package/dist/molecules/forms/input-tags/InputTags.js +25 -0
- package/dist/molecules/forms/input-tags/InputTags.js.map +1 -0
- package/dist/molecules/forms/input-tags/all.d.ts +2 -0
- package/dist/molecules/forms/input-tags/all.js +9 -0
- package/dist/molecules/forms/input-tags/all.js.map +1 -0
- package/dist/molecules/forms/input-tags/components/ChoicesTags.d.ts +307 -0
- package/dist/molecules/forms/input-tags/components/ChoicesTags.js +51 -0
- package/dist/molecules/forms/input-tags/components/ChoicesTags.js.map +1 -0
- package/dist/molecules/forms/input-tags/components/ReactTags.d.ts +2 -0
- package/dist/molecules/forms/input-tags/components/ReactTags.js +1937 -0
- package/dist/molecules/forms/input-tags/components/ReactTags.js.map +1 -0
- package/dist/molecules/forms/input-text/InputText.d.ts +2 -0
- package/dist/molecules/forms/input-text/InputText.interface.d.ts +4 -0
- package/dist/molecules/forms/input-text/InputText.interface.js +2 -0
- package/dist/molecules/forms/input-text/InputText.interface.js.map +1 -0
- package/dist/molecules/forms/input-text/InputText.js +54 -0
- package/dist/molecules/forms/input-text/InputText.js.map +1 -0
- package/dist/molecules/forms/select/Select.d.ts +2 -0
- package/dist/molecules/forms/select/Select.interface.d.ts +38 -0
- package/dist/molecules/forms/select/Select.interface.js +2 -0
- package/dist/molecules/forms/select/Select.interface.js.map +1 -0
- package/dist/molecules/forms/select/Select.js +16 -0
- package/dist/molecules/forms/select/Select.js.map +1 -0
- package/dist/molecules/forms/select/all.d.ts +2 -0
- package/dist/molecules/forms/select/all.js +9 -0
- package/dist/molecules/forms/select/all.js.map +1 -0
- package/dist/molecules/forms/select/components/ChoicesSelect.d.ts +7 -0
- package/dist/molecules/forms/select/components/ChoicesSelect.js +115 -0
- package/dist/molecules/forms/select/components/ChoicesSelect.js.map +1 -0
- package/dist/molecules/forms/select/components/HtmlSelect.d.ts +2 -0
- package/dist/molecules/forms/select/components/HtmlSelect.js +35 -0
- package/dist/molecules/forms/select/components/HtmlSelect.js.map +1 -0
- package/dist/molecules/forms/select/components/ReactSelect.d.ts +2 -0
- package/dist/molecules/forms/select/components/ReactSelect.js +46 -0
- package/dist/molecules/forms/select/components/ReactSelect.js.map +1 -0
- package/dist/molecules/forms/select/components/choices.template.d.ts +7 -0
- package/dist/molecules/forms/select/components/choices.template.js +9654 -0
- package/dist/molecules/forms/select/components/choices.template.js.map +1 -0
- package/dist/molecules/forms/select/hooks/useOptions.d.ts +9 -0
- package/dist/molecules/forms/select/hooks/useOptions.js +35 -0
- package/dist/molecules/forms/select/hooks/useOptions.js.map +1 -0
- package/dist/{components/loader/loader.component.d.ts → molecules/loader/Loader.d.ts} +0 -9
- package/dist/molecules/loader/Loader.js +19 -0
- package/dist/molecules/loader/Loader.js.map +1 -0
- package/dist/{components/modal/modal.component.js → molecules/modal/Modal.js} +1 -1
- package/dist/molecules/modal/Modal.js.map +1 -0
- package/dist/{components/pagination/pagination.component.d.ts → molecules/pagination/Pagination.d.ts} +6 -5
- package/dist/molecules/pagination/Pagination.js +77 -0
- package/dist/molecules/pagination/Pagination.js.map +1 -0
- package/dist/molecules/pagination/PaginationButton.d.ts +7 -0
- package/dist/molecules/pagination/PaginationButton.js +21 -0
- package/dist/molecules/pagination/PaginationButton.js.map +1 -0
- package/dist/molecules/pagination/all.d.ts +2 -0
- package/dist/molecules/pagination/all.js +12 -0
- package/dist/molecules/pagination/all.js.map +1 -0
- package/dist/molecules/pagination/utils/getPageNumbers.js.map +1 -0
- package/dist/molecules/table/Table.d.ts +17 -0
- package/dist/molecules/table/Table.js +63 -0
- package/dist/molecules/table/Table.js.map +1 -0
- package/dist/molecules/table/all.d.ts +0 -0
- package/dist/molecules/table/all.js +19 -0
- package/dist/molecules/table/all.js.map +1 -0
- package/dist/molecules/table/components/DefaultArrowSort.d.ts +5 -0
- package/dist/molecules/table/components/DefaultArrowSort.js +22 -0
- package/dist/molecules/table/components/DefaultArrowSort.js.map +1 -0
- package/dist/molecules/table/components/DefaultCell.d.ts +5 -0
- package/dist/molecules/table/components/DefaultCell.js +13 -0
- package/dist/molecules/table/components/DefaultCell.js.map +1 -0
- package/dist/molecules/table/components/DefaultCellFooter.d.ts +6 -0
- package/dist/molecules/table/components/DefaultCellFooter.js +12 -0
- package/dist/molecules/table/components/DefaultCellFooter.js.map +1 -0
- package/dist/molecules/table/components/DefaultCellHeader.d.ts +6 -0
- package/dist/molecules/table/components/DefaultCellHeader.js +30 -0
- package/dist/molecules/table/components/DefaultCellHeader.js.map +1 -0
- package/dist/molecules/table/components/DefaultCellOperations.d.ts +18 -0
- package/dist/molecules/table/components/DefaultCellOperations.js +30 -0
- package/dist/molecules/table/components/DefaultCellOperations.js.map +1 -0
- package/dist/molecules/table/components/DefaultFilter.d.ts +11 -0
- package/dist/molecules/table/components/DefaultFilter.js +15 -0
- package/dist/molecules/table/components/DefaultFilter.js.map +1 -0
- package/dist/molecules/table/components/DefaultOperationButton.d.ts +19 -0
- package/dist/molecules/table/components/DefaultOperationButton.js +30 -0
- package/dist/molecules/table/components/DefaultOperationButton.js.map +1 -0
- package/dist/molecules/table/filters/Filters.d.js +2 -0
- package/dist/molecules/table/filters/Filters.d.js.map +1 -0
- package/dist/molecules/table/filters/RangeFilter.d.ts +3 -0
- package/dist/molecules/table/filters/RangeFilter.js +42 -0
- package/dist/molecules/table/filters/RangeFilter.js.map +1 -0
- package/dist/molecules/table/filters/SelectFilter.d.ts +3 -0
- package/dist/molecules/table/filters/SelectFilter.js +35 -0
- package/dist/molecules/table/filters/SelectFilter.js.map +1 -0
- package/dist/molecules/table/filters/TextFieldFilter.d.ts +3 -0
- package/dist/molecules/table/filters/TextFieldFilter.js +27 -0
- package/dist/molecules/table/filters/TextFieldFilter.js.map +1 -0
- package/dist/molecules/table/hooks/useTable.d.ts +23 -0
- package/dist/molecules/table/hooks/useTable.js +34 -0
- package/dist/molecules/table/hooks/useTable.js.map +1 -0
- package/dist/molecules/table/hooks/useUniqValues.d.ts +5 -0
- package/dist/molecules/table/hooks/useUniqValues.js +11 -0
- package/dist/molecules/table/hooks/useUniqValues.js.map +1 -0
- package/dist/molecules/table/interfaces/extends.d.ts +14 -0
- package/dist/molecules/table/interfaces/extends.js +2 -0
- package/dist/molecules/table/interfaces/extends.js.map +1 -0
- package/dist/molecules/table/utils/mapFormToColumns.d.ts +3 -0
- package/dist/molecules/table/utils/mapFormToColumns.js +39 -0
- package/dist/molecules/table/utils/mapFormToColumns.js.map +1 -0
- package/dist/molecules/tabs/Tab.d.ts +13 -0
- package/dist/molecules/tabs/Tab.js +67 -0
- package/dist/molecules/tabs/Tab.js.map +1 -0
- package/dist/molecules/tabs/TabList.d.ts +2 -0
- package/dist/molecules/tabs/TabList.js +24 -0
- package/dist/molecules/tabs/TabList.js.map +1 -0
- package/dist/molecules/tabs/TabPanel.d.ts +9 -0
- package/dist/molecules/tabs/TabPanel.js +27 -0
- package/dist/molecules/tabs/TabPanel.js.map +1 -0
- package/dist/molecules/tabs/Tabs.d.ts +7 -0
- package/dist/molecules/tabs/Tabs.js +12 -0
- package/dist/molecules/tabs/Tabs.js.map +1 -0
- package/dist/molecules/tabs/TabsBody.d.ts +1 -0
- package/dist/molecules/tabs/TabsBody.js +10 -0
- package/dist/molecules/tabs/TabsBody.js.map +1 -0
- package/dist/molecules/tabs/TabsLegacy.d.ts +17 -0
- package/dist/molecules/tabs/TabsLegacy.js +49 -0
- package/dist/molecules/tabs/TabsLegacy.js.map +1 -0
- package/dist/molecules/tabs/all.d.ts +5 -0
- package/dist/molecules/tabs/all.js +13 -0
- package/dist/molecules/tabs/all.js.map +1 -0
- package/dist/molecules/tabs/context/TabControl.d.ts +52 -0
- package/dist/molecules/tabs/context/TabControl.js +85 -0
- package/dist/molecules/tabs/context/TabControl.js.map +1 -0
- package/dist/molecules/tabs/hooks/tabControl.d.ts +44 -0
- package/dist/molecules/tabs/hooks/tabControl.js +34 -0
- package/dist/molecules/tabs/hooks/tabControl.js.map +1 -0
- package/dist/organisms/form/Form.d.ts +22 -0
- package/dist/organisms/form/Form.js +15 -0
- package/dist/organisms/form/Form.js.map +1 -0
- package/dist/{components/form-access/formAccess.component.d.ts → organisms/form/access/FormAccess.d.ts} +2 -2
- package/dist/{components/form-access/formAccess.component.js → organisms/form/access/FormAccess.js} +4 -5
- package/dist/organisms/form/access/FormAccess.js.map +1 -0
- package/dist/organisms/form/access/FormAccess.schema.d.ts +4 -0
- package/dist/{components/form-access/formAccess.schema.js → organisms/form/access/FormAccess.schema.js} +1 -1
- package/dist/organisms/form/access/FormAccess.schema.js.map +1 -0
- package/dist/organisms/form/access/FormAccess.utils.d.ts +23 -0
- package/dist/{components/form-access/formAccess.utils.js → organisms/form/access/FormAccess.utils.js} +2 -2
- package/dist/organisms/form/access/FormAccess.utils.js.map +1 -0
- package/dist/{components/form-action/formAction.component.d.ts → organisms/form/actions/FormAction.d.ts} +4 -4
- package/dist/{components/form-action/formAction.component.js → organisms/form/actions/FormAction.js} +2 -2
- package/dist/organisms/form/actions/FormAction.js.map +1 -0
- package/dist/organisms/form/builder/FormBuilder.d.ts +7 -0
- package/dist/organisms/form/builder/FormBuilder.js +17 -0
- package/dist/organisms/form/builder/FormBuilder.js.map +1 -0
- package/dist/organisms/form/builder/FormEdit.d.ts +10 -0
- package/dist/organisms/form/builder/FormEdit.js +73 -0
- package/dist/organisms/form/builder/FormEdit.js.map +1 -0
- package/dist/organisms/form/builder/FormEdit.reducer.d.ts +10 -0
- package/dist/{components/form-edit/formEdit.reducer.js → organisms/form/builder/FormEdit.reducer.js} +1 -1
- package/dist/organisms/form/builder/FormEdit.reducer.js.map +1 -0
- package/dist/organisms/form/builder/FormEditCtas.d.ts +15 -0
- package/dist/organisms/form/builder/FormEditCtas.js +52 -0
- package/dist/organisms/form/builder/FormEditCtas.js.map +1 -0
- package/dist/organisms/form/builder/FormParameters.d.ts +24 -0
- package/dist/organisms/form/builder/FormParameters.js +84 -0
- package/dist/organisms/form/builder/FormParameters.js.map +1 -0
- package/dist/organisms/form/builder/all.d.ts +6 -0
- package/dist/organisms/form/builder/all.js +26 -0
- package/dist/organisms/form/builder/all.js.map +1 -0
- package/dist/organisms/form/builder/useFormBuilder.d.ts +28 -0
- package/dist/organisms/form/builder/useFormBuilder.js +71 -0
- package/dist/organisms/form/builder/useFormBuilder.js.map +1 -0
- package/dist/{components/form-edit/useFormEdit.hook.d.ts → organisms/form/builder/useFormEdit.d.ts} +7 -7
- package/dist/organisms/form/builder/useFormEdit.js +36 -0
- package/dist/organisms/form/builder/useFormEdit.js.map +1 -0
- package/dist/organisms/form/exports/FormExport.d.ts +5 -0
- package/dist/organisms/form/exports/FormExport.js +55 -0
- package/dist/organisms/form/exports/FormExport.js.map +1 -0
- package/dist/organisms/form/preview/FormPreview.d.ts +6 -0
- package/dist/organisms/form/preview/FormPreview.js +11 -0
- package/dist/organisms/form/preview/FormPreview.js.map +1 -0
- package/dist/{components/form-settings/formSettings.component.d.ts → organisms/form/settings/FormSettings.d.ts} +2 -2
- package/dist/{components/form-settings/formSettings.component.js → organisms/form/settings/FormSettings.js} +4 -4
- package/dist/organisms/form/settings/FormSettings.js.map +1 -0
- package/dist/organisms/form/settings/FormSettings.schema.d.ts +2 -0
- package/dist/{components/form-settings/formSettings.schema.js → organisms/form/settings/FormSettings.schema.js} +1 -1
- package/dist/organisms/form/settings/FormSettings.schema.js.map +1 -0
- package/dist/organisms/form/settings/FormSettings.utils.d.ts +8 -0
- package/dist/{components/form-settings/formSettings.utils.js → organisms/form/settings/FormSettings.utils.js} +1 -1
- package/dist/organisms/form/settings/FormSettings.utils.js.map +1 -0
- package/dist/organisms/form/types.d.ts +15 -0
- package/dist/organisms/form/types.js +2 -0
- package/dist/organisms/form/types.js.map +1 -0
- package/dist/organisms/form/useForm.d.ts +65 -0
- package/dist/organisms/form/useForm.js +776 -0
- package/dist/organisms/form/useForm.js.map +1 -0
- package/dist/{components/modal/removeModal.component.d.ts → organisms/modal/RemoveModal.d.ts} +1 -1
- package/dist/{components/modal/removeModal.component.js → organisms/modal/RemoveModal.js} +10 -10
- package/dist/organisms/modal/RemoveModal.js.map +1 -0
- package/dist/organisms/table/actions/ActionsTable.d.ts +10 -0
- package/dist/organisms/table/actions/ActionsTable.js +46 -0
- package/dist/organisms/table/actions/ActionsTable.js.map +1 -0
- package/dist/organisms/table/forms/FormsTable.d.ts +9 -0
- package/dist/organisms/table/forms/FormsTable.js +57 -0
- package/dist/organisms/table/forms/FormsTable.js.map +1 -0
- package/dist/organisms/table/forms/components/FormsCell.d.ts +5 -0
- package/dist/organisms/table/forms/components/FormsCell.js +50 -0
- package/dist/organisms/table/forms/components/FormsCell.js.map +1 -0
- package/dist/organisms/table/submissions/SubmissionsTable.d.ts +14 -0
- package/dist/organisms/table/submissions/SubmissionsTable.js +14 -0
- package/dist/organisms/table/submissions/SubmissionsTable.js.map +1 -0
- package/dist/organisms/views/FormViews.d.ts +24 -0
- package/dist/organisms/views/FormViews.js +96 -0
- package/dist/organisms/views/FormViews.js.map +1 -0
- package/dist/registries/components.d.ts +3 -0
- package/dist/registries/components.js +19 -0
- package/dist/registries/components.js.map +1 -0
- package/package.json +10 -8
- package/readme.md +27 -14
- package/src/atoms/icon/Icon.stories.tsx +124 -0
- package/src/atoms/icon/Icon.tsx +16 -0
- package/src/hooks/keyboard.constants.ts +40 -0
- package/src/hooks/useKeyboardControls.spec.tsx +208 -0
- package/src/hooks/useKeyboardControls.ts +84 -0
- package/src/index.ts +1 -6
- package/src/interfaces/ActionType.ts +26 -0
- package/src/interfaces/ComponentType.ts +3 -0
- package/src/interfaces/FormOptions.ts +4 -1
- package/src/interfaces/{FormSchema.ts → FormType.ts} +3 -3
- package/src/interfaces/Operation.ts +10 -4
- package/src/interfaces/{RoleSchema.ts → RoleType.ts} +1 -1
- package/src/interfaces/SubmissionType.ts +20 -0
- package/src/interfaces/index.ts +5 -4
- package/src/molecules/__fixtures__/build.js +28 -0
- package/src/molecules/__fixtures__/form-firstname.fixture.json +256 -0
- package/src/molecules/__fixtures__/form-schema.json +350 -0
- package/src/molecules/__fixtures__/form-submissions.json +11942 -0
- package/src/molecules/__fixtures__/form-wizard.fixture.json +2042 -0
- package/src/molecules/__fixtures__/products.json +81539 -0
- package/src/molecules/__fixtures__/useValue.hook.ts +14 -0
- package/src/{components/alert/alert.component.spec.tsx → molecules/alert/Alert.spec.tsx} +12 -14
- package/src/molecules/alert/Alert.stories.tsx +39 -0
- package/src/{components/alert/alert.component.tsx → molecules/alert/Alert.tsx} +10 -7
- package/src/molecules/button/Button.stories.tsx +106 -0
- package/src/molecules/button/Button.tsx +73 -0
- package/src/{components/card/card.component.spec.tsx → molecules/card/Card.spec.tsx} +3 -2
- package/src/{components/card/card.stories.tsx → molecules/card/Card.stories.tsx} +9 -2
- package/src/{components/card/card.component.tsx → molecules/card/Card.tsx} +4 -0
- package/src/{components/form-control/formControl.component.spec.tsx → molecules/forms/form-control/FormControl.spec.tsx} +9 -8
- package/src/molecules/forms/form-control/FormControl.stories.tsx +58 -0
- package/src/molecules/forms/form-control/FormControl.tsx +86 -0
- package/src/molecules/forms/input-tags/InputTags.interface.ts +9 -0
- package/src/molecules/forms/input-tags/InputTags.tsx +30 -0
- package/src/molecules/forms/input-tags/all.ts +6 -0
- package/src/molecules/forms/input-tags/components/ChoicesTags.stories.tsx +110 -0
- package/src/molecules/forms/input-tags/components/ChoicesTags.tsx +72 -0
- package/src/molecules/forms/input-tags/components/ReactTags.stories.tsx +140 -0
- package/src/molecules/forms/input-tags/components/ReactTags.tsx +38 -0
- package/src/molecules/forms/input-text/InputText.interface.ts +5 -0
- package/src/{components/input-text/inputText.component.spec.tsx → molecules/forms/input-text/InputText.spec.tsx} +8 -7
- package/src/molecules/forms/input-text/InputText.stories.tsx +179 -0
- package/src/molecules/forms/input-text/InputText.tsx +63 -0
- package/src/molecules/forms/select/Select.interface.ts +45 -0
- package/src/molecules/forms/select/Select.tsx +28 -0
- package/src/molecules/forms/select/all.ts +7 -0
- package/src/molecules/forms/select/components/ChoicesSelect.stories.tsx +332 -0
- package/src/molecules/forms/select/components/ChoicesSelect.tsx +159 -0
- package/src/molecules/forms/select/components/HtmlSelect.stories.tsx +305 -0
- package/src/molecules/forms/select/components/HtmlSelect.tsx +54 -0
- package/src/molecules/forms/select/components/ReactSelect.stories.tsx +287 -0
- package/src/molecules/forms/select/components/ReactSelect.tsx +60 -0
- package/src/molecules/forms/select/components/choices.template.tsx +38 -0
- package/src/molecules/forms/select/hooks/useOptions.spec.ts +154 -0
- package/src/molecules/forms/select/hooks/useOptions.ts +53 -0
- package/src/{components/loader/loader.component.spec.tsx → molecules/loader/Loader.spec.tsx} +3 -3
- package/src/molecules/loader/Loader.stories.tsx +43 -0
- package/src/{components/loader/loader.component.tsx → molecules/loader/Loader.tsx} +2 -10
- package/src/{components/modal/modal.component.spec.tsx → molecules/modal/Modal.spec.tsx} +131 -4
- package/src/molecules/modal/Modal.stories.tsx +178 -0
- package/src/{components/pagination/pagination.component.spec.tsx → molecules/pagination/Pagination.spec.tsx} +20 -14
- package/src/molecules/pagination/Pagination.stories.tsx +92 -0
- package/src/{components/pagination/pagination.component.tsx → molecules/pagination/Pagination.tsx} +34 -47
- package/src/molecules/pagination/PaginationButton.tsx +30 -0
- package/src/molecules/pagination/all.ts +3 -0
- package/src/molecules/table/Table.stories.tsx +305 -0
- package/src/molecules/table/Table.tsx +106 -0
- package/src/molecules/table/all.ts +16 -0
- package/src/molecules/table/components/DefaultArrowSort.tsx +26 -0
- package/src/molecules/table/components/DefaultCell.tsx +22 -0
- package/src/molecules/table/components/DefaultCellFooter.tsx +16 -0
- package/src/molecules/table/components/DefaultCellHeader.tsx +42 -0
- package/src/molecules/table/components/DefaultCellOperations.tsx +48 -0
- package/src/molecules/table/components/DefaultFilter.tsx +42 -0
- package/src/molecules/table/components/DefaultOperationButton.tsx +41 -0
- package/src/molecules/table/filters/Filters.d.ts +31 -0
- package/src/molecules/table/filters/RangeFilter.tsx +43 -0
- package/src/molecules/table/filters/SelectFilter.tsx +47 -0
- package/src/molecules/table/filters/TextFieldFilter.tsx +36 -0
- package/src/molecules/table/hooks/useTable.tsx +75 -0
- package/src/molecules/table/hooks/useUniqValues.tsx +10 -0
- package/src/molecules/table/interfaces/extends.ts +18 -0
- package/src/molecules/table/utils/mapFormToColumns.tsx +74 -0
- package/src/molecules/tabs/Tab.tsx +106 -0
- package/src/molecules/tabs/TabList.tsx +37 -0
- package/src/molecules/tabs/TabPanel.tsx +37 -0
- package/src/molecules/tabs/Tabs.spec.tsx +140 -0
- package/src/molecules/tabs/Tabs.stories.tsx +374 -0
- package/src/molecules/tabs/Tabs.tsx +21 -0
- package/src/molecules/tabs/TabsBody.tsx +11 -0
- package/src/molecules/tabs/TabsLegacy.stories.tsx +103 -0
- package/src/molecules/tabs/TabsLegacy.tsx +84 -0
- package/src/molecules/tabs/all.ts +5 -0
- package/src/molecules/tabs/context/TabControl.tsx +166 -0
- package/src/molecules/tabs/hooks/tabControl.spec.tsx +388 -0
- package/src/molecules/tabs/hooks/tabControl.ts +52 -0
- package/src/organisms/__fixtures__/WrapComponent.tsx +11 -0
- package/src/organisms/__fixtures__/form-actions.json +240 -0
- package/src/organisms/__fixtures__/form-firstname.fixture.json +257 -0
- package/src/organisms/__fixtures__/form-wizard.fixture.json +2042 -0
- package/src/organisms/__fixtures__/form.fixture.json +2068 -0
- package/src/organisms/__fixtures__/useEditForm.tsx +84 -0
- package/src/organisms/__fixtures__/utils.ts +74 -0
- package/src/{components/form/form.component.spec.tsx → organisms/form/Form.spec.tsx} +5 -6
- package/src/organisms/form/Form.stories.tsx +698 -0
- package/src/organisms/form/Form.tsx +29 -0
- package/src/{components/form-access/formAccess.schema.ts → organisms/form/access/FormAccess.schema.ts} +4 -6
- package/src/{components/form-access/formAccess.stories.tsx → organisms/form/access/FormAccess.stories.tsx} +8 -2
- package/src/{components/form-access/formAccess.component.tsx → organisms/form/access/FormAccess.tsx} +15 -17
- package/src/{components/form-access/formAccess.utils.spec.ts → organisms/form/access/FormAccess.utils.spec.ts} +13 -7
- package/src/{components/form-access/formAccess.utils.ts → organisms/form/access/FormAccess.utils.ts} +23 -20
- package/src/organisms/form/actions/FormAction.stories.tsx +422 -0
- package/src/{components/form-action/formAction.component.tsx → organisms/form/actions/FormAction.tsx} +7 -7
- package/src/organisms/form/builder/FormBuilder.stories.tsx +97 -0
- package/src/organisms/form/builder/FormBuilder.tsx +28 -0
- package/src/{components/form-edit/formEdit.reducer.ts → organisms/form/builder/FormEdit.reducer.ts} +6 -6
- package/src/{components/form-edit/formEdit.stories.tsx → organisms/form/builder/FormEdit.stories.tsx} +89 -43
- package/src/organisms/form/builder/FormEdit.tsx +81 -0
- package/src/organisms/form/builder/FormEditCtas.tsx +97 -0
- package/src/{components/form-edit/formParameters.component.tsx → organisms/form/builder/FormParameters.tsx} +28 -28
- package/src/organisms/form/builder/all.ts +17 -0
- package/src/organisms/form/builder/useFormBuilder.ts +143 -0
- package/src/{components/form-edit/useFormEdit.hook.ts → organisms/form/builder/useFormEdit.ts} +9 -9
- package/src/organisms/form/exports/FormExport.stories.tsx +71 -0
- package/src/organisms/form/exports/FormExport.tsx +58 -0
- package/src/organisms/form/preview/FormPreview.stories.tsx +61 -0
- package/src/organisms/form/preview/FormPreview.tsx +21 -0
- package/src/{components/form-settings/formSettings.component.spec.tsx → organisms/form/settings/FormSettings.component.spec.tsx} +2 -2
- package/src/{components/form-settings/formSettings.schema.ts → organisms/form/settings/FormSettings.schema.ts} +2 -2
- package/src/{components/form-settings/formSettings.stories.tsx → organisms/form/settings/FormSettings.stories.tsx} +10 -8
- package/src/{components/form-settings/formSettings.component.tsx → organisms/form/settings/FormSettings.tsx} +7 -8
- package/src/{components/form-settings/formSettings.utils.spec.ts → organisms/form/settings/FormSettings.utils.spec.ts} +1 -1
- package/src/{components/form-settings/formSettings.utils.ts → organisms/form/settings/FormSettings.utils.ts} +4 -4
- package/src/organisms/form/types.ts +8 -0
- package/src/organisms/form/useForm.ts +223 -0
- package/src/organisms/modal/RemoveModal.stories.tsx +59 -0
- package/src/{components/modal/removeModal.component.tsx → organisms/modal/RemoveModal.tsx} +2 -2
- package/src/{components/actions-table/actionsTable.component.spec.tsx → organisms/table/actions/ActionsTable.spec.tsx} +11 -7
- package/src/{components/actions-table/actionsTable.stories.tsx → organisms/table/actions/ActionsTable.stories.tsx} +58 -58
- package/src/{components/actions-table/actionsTable.component.tsx → organisms/table/actions/ActionsTable.tsx} +13 -20
- package/src/{components/forms-table/formsTable.stories.tsx → organisms/table/forms/FormsTable.stories.tsx} +24 -27
- package/src/organisms/table/forms/FormsTable.tsx +66 -0
- package/src/organisms/table/forms/components/FormsCell.tsx +53 -0
- package/src/organisms/table/submissions/SubmissionsTable.stories.tsx +142 -0
- package/src/organisms/table/submissions/SubmissionsTable.tsx +19 -0
- package/src/organisms/views/FormViews.stories.tsx +224 -0
- package/src/organisms/views/FormViews.tsx +146 -0
- package/src/registries/components.ts +23 -0
- package/tsconfig.app.json +1 -1
- package/tsconfig.json +3 -0
- package/tsconfig.node.json +13 -0
- package/dist/components/actions-table/actionsTable.component.d.ts +0 -10
- package/dist/components/actions-table/actionsTable.component.js +0 -53
- package/dist/components/actions-table/actionsTable.component.js.map +0 -1
- package/dist/components/alert/alert.component.d.ts +0 -5
- package/dist/components/alert/alert.component.js.map +0 -1
- package/dist/components/card/card.component.js +0 -12
- package/dist/components/card/card.component.js.map +0 -1
- package/dist/components/form/form.component.d.ts +0 -62
- package/dist/components/form/form.component.js +0 -64
- package/dist/components/form/form.component.js.map +0 -1
- package/dist/components/form/useForm.hook.d.ts +0 -59
- package/dist/components/form/useForm.hook.js +0 -64
- package/dist/components/form/useForm.hook.js.map +0 -1
- package/dist/components/form-access/formAccess.component.js.map +0 -1
- package/dist/components/form-access/formAccess.schema.d.ts +0 -5
- package/dist/components/form-access/formAccess.schema.js.map +0 -1
- package/dist/components/form-access/formAccess.utils.d.ts +0 -24
- package/dist/components/form-access/formAccess.utils.js.map +0 -1
- package/dist/components/form-action/formAction.component.js.map +0 -1
- package/dist/components/form-builder/formBuilder.component.d.ts +0 -53
- package/dist/components/form-builder/formBuilder.component.js +0 -142
- package/dist/components/form-builder/formBuilder.component.js.map +0 -1
- package/dist/components/form-control/formControl.component.d.ts +0 -14
- package/dist/components/form-control/formControl.component.js +0 -26
- package/dist/components/form-control/formControl.component.js.map +0 -1
- package/dist/components/form-edit/formCtas.component.d.ts +0 -28
- package/dist/components/form-edit/formCtas.component.js +0 -70
- package/dist/components/form-edit/formCtas.component.js.map +0 -1
- package/dist/components/form-edit/formEdit.component.d.ts +0 -18
- package/dist/components/form-edit/formEdit.component.js +0 -57
- package/dist/components/form-edit/formEdit.component.js.map +0 -1
- package/dist/components/form-edit/formEdit.reducer.d.ts +0 -10
- package/dist/components/form-edit/formEdit.reducer.js.map +0 -1
- package/dist/components/form-edit/formParameters.component.d.ts +0 -34
- package/dist/components/form-edit/formParameters.component.js +0 -92
- package/dist/components/form-edit/formParameters.component.js.map +0 -1
- package/dist/components/form-edit/useFormEdit.hook.js +0 -36
- package/dist/components/form-edit/useFormEdit.hook.js.map +0 -1
- package/dist/components/form-settings/formSettings.component.js.map +0 -1
- package/dist/components/form-settings/formSettings.schema.d.ts +0 -2
- package/dist/components/form-settings/formSettings.schema.js.map +0 -1
- package/dist/components/form-settings/formSettings.utils.d.ts +0 -8
- package/dist/components/form-settings/formSettings.utils.js.map +0 -1
- package/dist/components/forms-table/components/formCell.component.d.ts +0 -6
- package/dist/components/forms-table/components/formCell.component.js +0 -50
- package/dist/components/forms-table/components/formCell.component.js.map +0 -1
- package/dist/components/forms-table/formsTable.component.d.ts +0 -10
- package/dist/components/forms-table/formsTable.component.js +0 -29
- package/dist/components/forms-table/formsTable.component.js.map +0 -1
- package/dist/components/index.d.ts +0 -25
- package/dist/components/index.js +0 -86
- package/dist/components/index.js.map +0 -1
- package/dist/components/input-tags/inputTags.component.d.ts +0 -18
- package/dist/components/input-tags/inputTags.component.js +0 -37
- package/dist/components/input-tags/inputTags.component.js.map +0 -1
- package/dist/components/input-text/inputText.component.d.ts +0 -27
- package/dist/components/input-text/inputText.component.js +0 -70
- package/dist/components/input-text/inputText.component.js.map +0 -1
- package/dist/components/loader/loader.component.js +0 -26
- package/dist/components/loader/loader.component.js.map +0 -1
- package/dist/components/modal/modal.component.js.map +0 -1
- package/dist/components/modal/removeModal.component.js.map +0 -1
- package/dist/components/pagination/pagination.component.js +0 -87
- package/dist/components/pagination/pagination.component.js.map +0 -1
- package/dist/components/select/select.component.d.ts +0 -14
- package/dist/components/select/select.component.js +0 -60
- package/dist/components/select/select.component.js.map +0 -1
- package/dist/components/submissions-table/submissionsTable.component.d.ts +0 -6
- package/dist/components/submissions-table/submissionsTable.component.js +0 -11
- package/dist/components/submissions-table/submissionsTable.component.js.map +0 -1
- package/dist/components/table/components/defaultArrowSort.component.d.ts +0 -1
- package/dist/components/table/components/defaultArrowSort.component.js +0 -10
- package/dist/components/table/components/defaultArrowSort.component.js.map +0 -1
- package/dist/components/table/components/defaultCell.component.d.ts +0 -1
- package/dist/components/table/components/defaultCell.component.js +0 -11
- package/dist/components/table/components/defaultCell.component.js.map +0 -1
- package/dist/components/table/components/defaultCellHeader.component.d.ts +0 -5
- package/dist/components/table/components/defaultCellHeader.component.js +0 -14
- package/dist/components/table/components/defaultCellHeader.component.js.map +0 -1
- package/dist/components/table/components/defaultCellOperations.component.d.ts +0 -12
- package/dist/components/table/components/defaultCellOperations.component.js +0 -21
- package/dist/components/table/components/defaultCellOperations.component.js.map +0 -1
- package/dist/components/table/components/defaultCells.component.d.ts +0 -4
- package/dist/components/table/components/defaultCells.component.js +0 -23
- package/dist/components/table/components/defaultCells.component.js.map +0 -1
- package/dist/components/table/components/defaultOperationButton.component.d.ts +0 -15
- package/dist/components/table/components/defaultOperationButton.component.js +0 -45
- package/dist/components/table/components/defaultOperationButton.component.js.map +0 -1
- package/dist/components/table/components/defaultRow.component.d.ts +0 -12
- package/dist/components/table/components/defaultRow.component.js +0 -25
- package/dist/components/table/components/defaultRow.component.js.map +0 -1
- package/dist/components/table/components/dragNDropContainer.d.ts +0 -4
- package/dist/components/table/components/dragNDropContainer.js +0 -10
- package/dist/components/table/components/dragNDropContainer.js.map +0 -1
- package/dist/components/table/filters/defaultColumnFilter.component.d.ts +0 -5
- package/dist/components/table/filters/defaultColumnFilter.component.js +0 -32
- package/dist/components/table/filters/defaultColumnFilter.component.js.map +0 -1
- package/dist/components/table/filters/selectColumnFilter.component.d.ts +0 -10
- package/dist/components/table/filters/selectColumnFilter.component.js +0 -34
- package/dist/components/table/filters/selectColumnFilter.component.js.map +0 -1
- package/dist/components/table/filters/sliderColumnFilter.component.d.ts +0 -2
- package/dist/components/table/filters/sliderColumnFilter.component.js +0 -27
- package/dist/components/table/filters/sliderColumnFilter.component.js.map +0 -1
- package/dist/components/table/hooks/useCustomTable.hook.d.ts +0 -128
- package/dist/components/table/hooks/useCustomTable.hook.js +0 -130
- package/dist/components/table/hooks/useCustomTable.hook.js.map +0 -1
- package/dist/components/table/hooks/useDragnDropRow.hook.d.ts +0 -272
- package/dist/components/table/hooks/useDragnDropRow.hook.js +0 -40
- package/dist/components/table/hooks/useDragnDropRow.hook.js.map +0 -1
- package/dist/components/table/hooks/useOperations.hook.d.ts +0 -11
- package/dist/components/table/hooks/useOperations.hook.js +0 -25
- package/dist/components/table/hooks/useOperations.hook.js.map +0 -1
- package/dist/components/table/index.d.ts +0 -15
- package/dist/components/table/index.js +0 -35
- package/dist/components/table/index.js.map +0 -1
- package/dist/components/table/table.component.d.ts +0 -3
- package/dist/components/table/table.component.js +0 -81
- package/dist/components/table/table.component.js.map +0 -1
- package/dist/components/table/utils/getPageNumbers.js.map +0 -1
- package/dist/components/table/utils/mapFormToColumns.d.ts +0 -3
- package/dist/components/table/utils/mapFormToColumns.js +0 -23
- package/dist/components/table/utils/mapFormToColumns.js.map +0 -1
- package/dist/components/table/utils/swapElements.d.ts +0 -1
- package/dist/components/table/utils/swapElements.js +0 -5
- package/dist/components/table/utils/swapElements.js.map +0 -1
- package/dist/components/tabs/tabs.component.d.ts +0 -19
- package/dist/components/tabs/tabs.component.js +0 -72
- package/dist/components/tabs/tabs.component.js.map +0 -1
- package/dist/interfaces/ActionSchema.d.ts +0 -23
- package/dist/interfaces/ActionSchema.js +0 -2
- package/dist/interfaces/ActionSchema.js.map +0 -1
- package/dist/interfaces/FormSchema.js +0 -2
- package/dist/interfaces/FormSchema.js.map +0 -1
- package/dist/interfaces/RoleSchema.js +0 -2
- package/dist/interfaces/RoleSchema.js.map +0 -1
- package/dist/interfaces/Submission.d.ts +0 -5
- package/dist/interfaces/Submission.js +0 -2
- package/dist/interfaces/Submission.js.map +0 -1
- package/dist/utils/callLast.d.ts +0 -1
- package/dist/utils/callLast.js +0 -10
- package/dist/utils/callLast.js.map +0 -1
- package/src/components/alert/alert.stories.tsx +0 -16
- package/src/components/form/form.component.tsx +0 -72
- package/src/components/form/form.stories.tsx +0 -253
- package/src/components/form/useForm.hook.ts +0 -216
- package/src/components/form-action/formAction.stories.tsx +0 -364
- package/src/components/form-builder/formBuilder.component.tsx +0 -195
- package/src/components/form-builder/formBuilder.stories.tsx +0 -3665
- package/src/components/form-control/formControl.component.tsx +0 -58
- package/src/components/form-control/formControl.stories.tsx +0 -63
- package/src/components/form-edit/formCtas.component.tsx +0 -106
- package/src/components/form-edit/formEdit.component.tsx +0 -59
- package/src/components/forms-table/components/formCell.component.tsx +0 -47
- package/src/components/forms-table/formsTable.component.tsx +0 -40
- package/src/components/index.ts +0 -25
- package/src/components/input-tags/inputTags.component.tsx +0 -58
- package/src/components/input-tags/inputTags.stories.tsx +0 -97
- package/src/components/input-text/inputText.component.tsx +0 -85
- package/src/components/input-text/inputText.stories.tsx +0 -126
- package/src/components/loader/loader.stories.tsx +0 -16
- package/src/components/modal/modal.stories.tsx +0 -190
- package/src/components/pagination/pagination.stories.tsx +0 -40
- package/src/components/select/select.component.spec.tsx +0 -84
- package/src/components/select/select.component.tsx +0 -88
- package/src/components/select/select.stories.tsx +0 -173
- package/src/components/submissions-table/submissionsTable.component.tsx +0 -14
- package/src/components/submissions-table/submissionsTable.stories.tsx +0 -99
- package/src/components/table/components/defaultArrowSort.component.tsx +0 -10
- package/src/components/table/components/defaultCell.component.tsx +0 -13
- package/src/components/table/components/defaultCellHeader.component.tsx +0 -18
- package/src/components/table/components/defaultCellOperations.component.tsx +0 -37
- package/src/components/table/components/defaultCells.component.tsx +0 -30
- package/src/components/table/components/defaultOperationButton.component.tsx +0 -56
- package/src/components/table/components/defaultRow.component.tsx +0 -51
- package/src/components/table/components/dragNDropContainer.tsx +0 -7
- package/src/components/table/filters/defaultColumnFilter.component.spec.tsx +0 -31
- package/src/components/table/filters/defaultColumnFilter.component.tsx +0 -39
- package/src/components/table/filters/selectColumnFilter.component.spec.tsx +0 -66
- package/src/components/table/filters/selectColumnFilter.component.tsx +0 -51
- package/src/components/table/filters/sliderColumnFilter.component.tsx +0 -28
- package/src/components/table/hooks/useCustomTable.hook.tsx +0 -268
- package/src/components/table/hooks/useDragnDropRow.hook.ts +0 -80
- package/src/components/table/hooks/useOperations.hook.tsx +0 -39
- package/src/components/table/index.ts +0 -15
- package/src/components/table/table.component.tsx +0 -100
- package/src/components/table/table.stories.tsx +0 -120
- package/src/components/table/utils/mapFormToColumns.tsx +0 -33
- package/src/components/table/utils/swapElements.spec.ts +0 -7
- package/src/components/table/utils/swapElements.ts +0 -7
- package/src/components/tabs/tabs.component.spec.tsx +0 -87
- package/src/components/tabs/tabs.component.stories.tsx +0 -127
- package/src/components/tabs/tabs.component.tsx +0 -92
- package/src/interfaces/ActionSchema.ts +0 -26
- package/src/interfaces/Submission.ts +0 -5
- package/src/utils/callLast.ts +0 -12
- /package/dist/{components/card/card.component.d.ts → molecules/card/Card.d.ts} +0 -0
- /package/dist/{components/modal/modal.component.d.ts → molecules/modal/Modal.d.ts} +0 -0
- /package/dist/{components/table → molecules/pagination}/utils/getPageNumbers.d.ts +0 -0
- /package/dist/{components/table → molecules/pagination}/utils/getPageNumbers.js +0 -0
- /package/src/{components → molecules}/__fixtures__/form-actions.json +0 -0
- /package/src/{components → molecules}/__fixtures__/form.fixture.json +0 -0
- /package/src/{components/modal/modal.component.tsx → molecules/modal/Modal.tsx} +0 -0
- /package/src/{components/table → molecules/pagination}/utils/getPageNumbers.ts +0 -0
- /package/src/{components → organisms}/__fixtures__/form-schema.json +0 -0
- /package/src/{components → organisms}/__fixtures__/form-submissions.json +0 -0
- /package/src/{components/actions-table → organisms/table/actions}/__fixtures__/data.json +0 -0
|
@@ -0,0 +1,2042 @@
|
|
|
1
|
+
{
|
|
2
|
+
"display": "wizard",
|
|
3
|
+
"components": [
|
|
4
|
+
{
|
|
5
|
+
"label": "Text Field",
|
|
6
|
+
"labelPosition": "top",
|
|
7
|
+
"placeholder": "",
|
|
8
|
+
"description": "",
|
|
9
|
+
"tooltip": "",
|
|
10
|
+
"prefix": "",
|
|
11
|
+
"suffix": "",
|
|
12
|
+
"widget": {
|
|
13
|
+
"type": "input"
|
|
14
|
+
},
|
|
15
|
+
"inputMask": "",
|
|
16
|
+
"allowMultipleMasks": false,
|
|
17
|
+
"customClass": "",
|
|
18
|
+
"tabindex": "",
|
|
19
|
+
"autocomplete": "",
|
|
20
|
+
"hidden": false,
|
|
21
|
+
"hideLabel": false,
|
|
22
|
+
"showWordCount": false,
|
|
23
|
+
"showCharCount": false,
|
|
24
|
+
"mask": false,
|
|
25
|
+
"autofocus": false,
|
|
26
|
+
"spellcheck": true,
|
|
27
|
+
"disabled": false,
|
|
28
|
+
"tableView": true,
|
|
29
|
+
"modalEdit": false,
|
|
30
|
+
"multiple": false,
|
|
31
|
+
"persistent": true,
|
|
32
|
+
"inputFormat": "plain",
|
|
33
|
+
"protected": false,
|
|
34
|
+
"dbIndex": false,
|
|
35
|
+
"case": "",
|
|
36
|
+
"encrypted": false,
|
|
37
|
+
"redrawOn": "",
|
|
38
|
+
"clearOnHide": true,
|
|
39
|
+
"customDefaultValue": "",
|
|
40
|
+
"calculateValue": "",
|
|
41
|
+
"calculateServer": false,
|
|
42
|
+
"allowCalculateOverride": false,
|
|
43
|
+
"validateOn": "change",
|
|
44
|
+
"validate": {
|
|
45
|
+
"required": true,
|
|
46
|
+
"pattern": "",
|
|
47
|
+
"customMessage": "",
|
|
48
|
+
"custom": "",
|
|
49
|
+
"customPrivate": false,
|
|
50
|
+
"json": "",
|
|
51
|
+
"minLength": "",
|
|
52
|
+
"maxLength": "",
|
|
53
|
+
"strictDateValidation": false,
|
|
54
|
+
"multiple": false,
|
|
55
|
+
"unique": false
|
|
56
|
+
},
|
|
57
|
+
"unique": false,
|
|
58
|
+
"errorLabel": "",
|
|
59
|
+
"key": "textField",
|
|
60
|
+
"tags": [],
|
|
61
|
+
"properties": {},
|
|
62
|
+
"conditional": {
|
|
63
|
+
"show": null,
|
|
64
|
+
"when": null,
|
|
65
|
+
"eq": "",
|
|
66
|
+
"json": ""
|
|
67
|
+
},
|
|
68
|
+
"customConditional": "",
|
|
69
|
+
"logic": [],
|
|
70
|
+
"attributes": {},
|
|
71
|
+
"overlay": {
|
|
72
|
+
"style": "",
|
|
73
|
+
"page": "",
|
|
74
|
+
"left": "",
|
|
75
|
+
"top": "",
|
|
76
|
+
"width": "",
|
|
77
|
+
"height": ""
|
|
78
|
+
},
|
|
79
|
+
"type": "textfield",
|
|
80
|
+
"input": true,
|
|
81
|
+
"refreshOn": "",
|
|
82
|
+
"inputType": "text",
|
|
83
|
+
"id": "eqb1o4r",
|
|
84
|
+
"defaultValue": ""
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"label": "Text Area",
|
|
88
|
+
"labelPosition": "top",
|
|
89
|
+
"placeholder": "Placeholder",
|
|
90
|
+
"description": "description",
|
|
91
|
+
"tooltip": "tooltip",
|
|
92
|
+
"prefix": "",
|
|
93
|
+
"suffix": "",
|
|
94
|
+
"widget": {
|
|
95
|
+
"type": "input"
|
|
96
|
+
},
|
|
97
|
+
"editor": "",
|
|
98
|
+
"autoExpand": false,
|
|
99
|
+
"customClass": "",
|
|
100
|
+
"tabindex": "",
|
|
101
|
+
"autocomplete": "",
|
|
102
|
+
"hidden": false,
|
|
103
|
+
"hideLabel": false,
|
|
104
|
+
"showWordCount": false,
|
|
105
|
+
"showCharCount": false,
|
|
106
|
+
"autofocus": false,
|
|
107
|
+
"spellcheck": true,
|
|
108
|
+
"disabled": false,
|
|
109
|
+
"tableView": true,
|
|
110
|
+
"modalEdit": false,
|
|
111
|
+
"multiple": false,
|
|
112
|
+
"persistent": true,
|
|
113
|
+
"inputFormat": "html",
|
|
114
|
+
"protected": false,
|
|
115
|
+
"dbIndex": false,
|
|
116
|
+
"case": "",
|
|
117
|
+
"encrypted": false,
|
|
118
|
+
"redrawOn": "",
|
|
119
|
+
"clearOnHide": true,
|
|
120
|
+
"customDefaultValue": "",
|
|
121
|
+
"calculateValue": "",
|
|
122
|
+
"calculateServer": false,
|
|
123
|
+
"allowCalculateOverride": false,
|
|
124
|
+
"validateOn": "change",
|
|
125
|
+
"validate": {
|
|
126
|
+
"required": false,
|
|
127
|
+
"pattern": "",
|
|
128
|
+
"customMessage": "",
|
|
129
|
+
"custom": "",
|
|
130
|
+
"customPrivate": false,
|
|
131
|
+
"json": "",
|
|
132
|
+
"minLength": "",
|
|
133
|
+
"maxLength": "",
|
|
134
|
+
"minWords": "",
|
|
135
|
+
"maxWords": "",
|
|
136
|
+
"strictDateValidation": false,
|
|
137
|
+
"multiple": false,
|
|
138
|
+
"unique": false
|
|
139
|
+
},
|
|
140
|
+
"unique": false,
|
|
141
|
+
"errorLabel": "",
|
|
142
|
+
"key": "textArea",
|
|
143
|
+
"tags": [],
|
|
144
|
+
"properties": {},
|
|
145
|
+
"conditional": {
|
|
146
|
+
"show": null,
|
|
147
|
+
"when": null,
|
|
148
|
+
"eq": "",
|
|
149
|
+
"json": ""
|
|
150
|
+
},
|
|
151
|
+
"customConditional": "",
|
|
152
|
+
"logic": [],
|
|
153
|
+
"fixedSize": true,
|
|
154
|
+
"overlay": {
|
|
155
|
+
"style": "",
|
|
156
|
+
"page": "",
|
|
157
|
+
"left": "",
|
|
158
|
+
"top": "",
|
|
159
|
+
"width": "",
|
|
160
|
+
"height": ""
|
|
161
|
+
},
|
|
162
|
+
"attributes": {},
|
|
163
|
+
"type": "textarea",
|
|
164
|
+
"rows": 3,
|
|
165
|
+
"wysiwyg": false,
|
|
166
|
+
"input": true,
|
|
167
|
+
"refreshOn": "",
|
|
168
|
+
"allowMultipleMasks": false,
|
|
169
|
+
"mask": false,
|
|
170
|
+
"inputType": "text",
|
|
171
|
+
"inputMask": "",
|
|
172
|
+
"id": "e4jsrqc",
|
|
173
|
+
"defaultValue": ""
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"label": "Number",
|
|
177
|
+
"labelPosition": "top",
|
|
178
|
+
"placeholder": "",
|
|
179
|
+
"description": "",
|
|
180
|
+
"tooltip": "",
|
|
181
|
+
"prefix": "",
|
|
182
|
+
"suffix": "",
|
|
183
|
+
"widget": {
|
|
184
|
+
"type": "input"
|
|
185
|
+
},
|
|
186
|
+
"customClass": "",
|
|
187
|
+
"tabindex": "",
|
|
188
|
+
"autocomplete": "",
|
|
189
|
+
"hidden": false,
|
|
190
|
+
"hideLabel": false,
|
|
191
|
+
"mask": false,
|
|
192
|
+
"autofocus": false,
|
|
193
|
+
"spellcheck": true,
|
|
194
|
+
"disabled": false,
|
|
195
|
+
"tableView": false,
|
|
196
|
+
"modalEdit": false,
|
|
197
|
+
"multiple": false,
|
|
198
|
+
"persistent": true,
|
|
199
|
+
"delimiter": false,
|
|
200
|
+
"requireDecimal": false,
|
|
201
|
+
"inputFormat": "plain",
|
|
202
|
+
"protected": false,
|
|
203
|
+
"dbIndex": false,
|
|
204
|
+
"encrypted": false,
|
|
205
|
+
"redrawOn": "",
|
|
206
|
+
"clearOnHide": true,
|
|
207
|
+
"customDefaultValue": "",
|
|
208
|
+
"calculateValue": "",
|
|
209
|
+
"calculateServer": false,
|
|
210
|
+
"allowCalculateOverride": false,
|
|
211
|
+
"validateOn": "change",
|
|
212
|
+
"validate": {
|
|
213
|
+
"required": false,
|
|
214
|
+
"customMessage": "",
|
|
215
|
+
"custom": "",
|
|
216
|
+
"customPrivate": false,
|
|
217
|
+
"json": "",
|
|
218
|
+
"min": "",
|
|
219
|
+
"max": "",
|
|
220
|
+
"strictDateValidation": false,
|
|
221
|
+
"multiple": false,
|
|
222
|
+
"unique": false,
|
|
223
|
+
"step": "any",
|
|
224
|
+
"integer": ""
|
|
225
|
+
},
|
|
226
|
+
"errorLabel": "",
|
|
227
|
+
"key": "number",
|
|
228
|
+
"tags": [],
|
|
229
|
+
"properties": {},
|
|
230
|
+
"conditional": {
|
|
231
|
+
"show": null,
|
|
232
|
+
"when": null,
|
|
233
|
+
"eq": "",
|
|
234
|
+
"json": ""
|
|
235
|
+
},
|
|
236
|
+
"customConditional": "",
|
|
237
|
+
"logic": [],
|
|
238
|
+
"attributes": {},
|
|
239
|
+
"overlay": {
|
|
240
|
+
"style": "",
|
|
241
|
+
"page": "",
|
|
242
|
+
"left": "",
|
|
243
|
+
"top": "",
|
|
244
|
+
"width": "",
|
|
245
|
+
"height": ""
|
|
246
|
+
},
|
|
247
|
+
"type": "number",
|
|
248
|
+
"input": true,
|
|
249
|
+
"unique": false,
|
|
250
|
+
"refreshOn": "",
|
|
251
|
+
"showCharCount": false,
|
|
252
|
+
"showWordCount": false,
|
|
253
|
+
"allowMultipleMasks": false,
|
|
254
|
+
"id": "ex8zh8u",
|
|
255
|
+
"defaultValue": null
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"label": "Password",
|
|
259
|
+
"labelPosition": "top",
|
|
260
|
+
"placeholder": "",
|
|
261
|
+
"description": "",
|
|
262
|
+
"tooltip": "",
|
|
263
|
+
"prefix": "",
|
|
264
|
+
"suffix": "",
|
|
265
|
+
"widget": {
|
|
266
|
+
"type": "input"
|
|
267
|
+
},
|
|
268
|
+
"customClass": "",
|
|
269
|
+
"tabindex": "",
|
|
270
|
+
"autocomplete": "",
|
|
271
|
+
"hidden": false,
|
|
272
|
+
"hideLabel": false,
|
|
273
|
+
"showWordCount": false,
|
|
274
|
+
"showCharCount": false,
|
|
275
|
+
"mask": false,
|
|
276
|
+
"autofocus": false,
|
|
277
|
+
"spellcheck": true,
|
|
278
|
+
"disabled": false,
|
|
279
|
+
"tableView": false,
|
|
280
|
+
"modalEdit": false,
|
|
281
|
+
"case": "",
|
|
282
|
+
"redrawOn": "",
|
|
283
|
+
"clearOnHide": true,
|
|
284
|
+
"calculateServer": false,
|
|
285
|
+
"allowCalculateOverride": false,
|
|
286
|
+
"validateOn": "change",
|
|
287
|
+
"validate": {
|
|
288
|
+
"required": false,
|
|
289
|
+
"pattern": "",
|
|
290
|
+
"customMessage": "",
|
|
291
|
+
"custom": "",
|
|
292
|
+
"customPrivate": false,
|
|
293
|
+
"json": "",
|
|
294
|
+
"minLength": "",
|
|
295
|
+
"maxLength": "",
|
|
296
|
+
"strictDateValidation": false,
|
|
297
|
+
"multiple": false,
|
|
298
|
+
"unique": false
|
|
299
|
+
},
|
|
300
|
+
"errorLabel": "",
|
|
301
|
+
"key": "password",
|
|
302
|
+
"tags": [],
|
|
303
|
+
"properties": {},
|
|
304
|
+
"conditional": {
|
|
305
|
+
"show": null,
|
|
306
|
+
"when": null,
|
|
307
|
+
"eq": "",
|
|
308
|
+
"json": ""
|
|
309
|
+
},
|
|
310
|
+
"customConditional": "",
|
|
311
|
+
"logic": [],
|
|
312
|
+
"attributes": {},
|
|
313
|
+
"overlay": {
|
|
314
|
+
"style": "",
|
|
315
|
+
"page": "",
|
|
316
|
+
"left": "",
|
|
317
|
+
"top": "",
|
|
318
|
+
"width": "",
|
|
319
|
+
"height": ""
|
|
320
|
+
},
|
|
321
|
+
"type": "password",
|
|
322
|
+
"input": true,
|
|
323
|
+
"multiple": false,
|
|
324
|
+
"defaultValue": null,
|
|
325
|
+
"protected": true,
|
|
326
|
+
"unique": false,
|
|
327
|
+
"persistent": true,
|
|
328
|
+
"refreshOn": "",
|
|
329
|
+
"dbIndex": false,
|
|
330
|
+
"customDefaultValue": "",
|
|
331
|
+
"calculateValue": "",
|
|
332
|
+
"encrypted": false,
|
|
333
|
+
"allowMultipleMasks": false,
|
|
334
|
+
"inputType": "text",
|
|
335
|
+
"inputFormat": "plain",
|
|
336
|
+
"inputMask": "",
|
|
337
|
+
"id": "etqa5pm"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"label": "Checkbox",
|
|
341
|
+
"description": "description",
|
|
342
|
+
"tooltip": "tooltip",
|
|
343
|
+
"shortcut": "",
|
|
344
|
+
"inputType": "checkbox",
|
|
345
|
+
"customClass": "",
|
|
346
|
+
"tabindex": "",
|
|
347
|
+
"hidden": false,
|
|
348
|
+
"hideLabel": false,
|
|
349
|
+
"autofocus": false,
|
|
350
|
+
"disabled": false,
|
|
351
|
+
"tableView": false,
|
|
352
|
+
"modalEdit": false,
|
|
353
|
+
"defaultValue": false,
|
|
354
|
+
"persistent": true,
|
|
355
|
+
"protected": false,
|
|
356
|
+
"dbIndex": false,
|
|
357
|
+
"encrypted": false,
|
|
358
|
+
"redrawOn": "",
|
|
359
|
+
"clearOnHide": true,
|
|
360
|
+
"customDefaultValue": "",
|
|
361
|
+
"calculateValue": "",
|
|
362
|
+
"calculateServer": false,
|
|
363
|
+
"allowCalculateOverride": false,
|
|
364
|
+
"validate": {
|
|
365
|
+
"required": false,
|
|
366
|
+
"customMessage": "",
|
|
367
|
+
"custom": "",
|
|
368
|
+
"customPrivate": false,
|
|
369
|
+
"json": "",
|
|
370
|
+
"strictDateValidation": false,
|
|
371
|
+
"multiple": false,
|
|
372
|
+
"unique": false
|
|
373
|
+
},
|
|
374
|
+
"errorLabel": "",
|
|
375
|
+
"key": "checkbox",
|
|
376
|
+
"tags": [],
|
|
377
|
+
"properties": {},
|
|
378
|
+
"conditional": {
|
|
379
|
+
"show": null,
|
|
380
|
+
"when": null,
|
|
381
|
+
"eq": "",
|
|
382
|
+
"json": ""
|
|
383
|
+
},
|
|
384
|
+
"customConditional": "",
|
|
385
|
+
"logic": [],
|
|
386
|
+
"attributes": {},
|
|
387
|
+
"overlay": {
|
|
388
|
+
"style": "",
|
|
389
|
+
"page": "",
|
|
390
|
+
"left": "",
|
|
391
|
+
"top": "",
|
|
392
|
+
"width": "",
|
|
393
|
+
"height": ""
|
|
394
|
+
},
|
|
395
|
+
"type": "checkbox",
|
|
396
|
+
"name": "",
|
|
397
|
+
"value": "",
|
|
398
|
+
"input": true,
|
|
399
|
+
"placeholder": "",
|
|
400
|
+
"prefix": "",
|
|
401
|
+
"suffix": "",
|
|
402
|
+
"multiple": false,
|
|
403
|
+
"unique": false,
|
|
404
|
+
"refreshOn": "",
|
|
405
|
+
"labelPosition": "right",
|
|
406
|
+
"widget": null,
|
|
407
|
+
"validateOn": "change",
|
|
408
|
+
"showCharCount": false,
|
|
409
|
+
"showWordCount": false,
|
|
410
|
+
"allowMultipleMasks": false,
|
|
411
|
+
"dataGridLabel": true,
|
|
412
|
+
"id": "em8ln2m"
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"label": "Select Boxes",
|
|
416
|
+
"labelPosition": "top",
|
|
417
|
+
"optionsLabelPosition": "right",
|
|
418
|
+
"description": "",
|
|
419
|
+
"tooltip": "",
|
|
420
|
+
"customClass": "",
|
|
421
|
+
"tabindex": "",
|
|
422
|
+
"inline": false,
|
|
423
|
+
"hidden": false,
|
|
424
|
+
"hideLabel": false,
|
|
425
|
+
"autofocus": false,
|
|
426
|
+
"disabled": false,
|
|
427
|
+
"tableView": false,
|
|
428
|
+
"modalEdit": false,
|
|
429
|
+
"values": [
|
|
430
|
+
{
|
|
431
|
+
"label": "label",
|
|
432
|
+
"value": "label",
|
|
433
|
+
"shortcut": ""
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"label": "lol",
|
|
437
|
+
"value": "lol",
|
|
438
|
+
"shortcut": ""
|
|
439
|
+
}
|
|
440
|
+
],
|
|
441
|
+
"persistent": true,
|
|
442
|
+
"protected": false,
|
|
443
|
+
"dbIndex": false,
|
|
444
|
+
"encrypted": false,
|
|
445
|
+
"redrawOn": "",
|
|
446
|
+
"clearOnHide": true,
|
|
447
|
+
"customDefaultValue": "",
|
|
448
|
+
"calculateValue": "",
|
|
449
|
+
"calculateServer": false,
|
|
450
|
+
"allowCalculateOverride": false,
|
|
451
|
+
"validate": {
|
|
452
|
+
"required": false,
|
|
453
|
+
"customMessage": "",
|
|
454
|
+
"custom": "",
|
|
455
|
+
"customPrivate": false,
|
|
456
|
+
"json": "",
|
|
457
|
+
"strictDateValidation": false,
|
|
458
|
+
"multiple": false,
|
|
459
|
+
"unique": false
|
|
460
|
+
},
|
|
461
|
+
"errorLabel": "",
|
|
462
|
+
"minSelectedCountMessage": "",
|
|
463
|
+
"maxSelectedCountMessage": "",
|
|
464
|
+
"key": "selectBoxes",
|
|
465
|
+
"tags": [],
|
|
466
|
+
"properties": {},
|
|
467
|
+
"conditional": {
|
|
468
|
+
"show": null,
|
|
469
|
+
"when": null,
|
|
470
|
+
"eq": "",
|
|
471
|
+
"json": ""
|
|
472
|
+
},
|
|
473
|
+
"customConditional": "",
|
|
474
|
+
"logic": [],
|
|
475
|
+
"attributes": {},
|
|
476
|
+
"overlay": {
|
|
477
|
+
"style": "",
|
|
478
|
+
"page": "",
|
|
479
|
+
"left": "",
|
|
480
|
+
"top": "",
|
|
481
|
+
"width": "",
|
|
482
|
+
"height": ""
|
|
483
|
+
},
|
|
484
|
+
"type": "selectboxes",
|
|
485
|
+
"input": true,
|
|
486
|
+
"placeholder": "",
|
|
487
|
+
"prefix": "",
|
|
488
|
+
"suffix": "",
|
|
489
|
+
"multiple": false,
|
|
490
|
+
"unique": false,
|
|
491
|
+
"refreshOn": "",
|
|
492
|
+
"widget": null,
|
|
493
|
+
"validateOn": "change",
|
|
494
|
+
"showCharCount": false,
|
|
495
|
+
"showWordCount": false,
|
|
496
|
+
"allowMultipleMasks": false,
|
|
497
|
+
"inputType": "checkbox",
|
|
498
|
+
"fieldSet": false,
|
|
499
|
+
"id": "esa4upt",
|
|
500
|
+
"defaultValue": {
|
|
501
|
+
"": false
|
|
502
|
+
}
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
"label": "Radio",
|
|
506
|
+
"labelPosition": "top",
|
|
507
|
+
"optionsLabelPosition": "right",
|
|
508
|
+
"description": "",
|
|
509
|
+
"tooltip": "",
|
|
510
|
+
"customClass": "",
|
|
511
|
+
"tabindex": "",
|
|
512
|
+
"inline": false,
|
|
513
|
+
"hidden": false,
|
|
514
|
+
"hideLabel": false,
|
|
515
|
+
"autofocus": false,
|
|
516
|
+
"disabled": false,
|
|
517
|
+
"tableView": false,
|
|
518
|
+
"modalEdit": false,
|
|
519
|
+
"values": [
|
|
520
|
+
{
|
|
521
|
+
"label": "data",
|
|
522
|
+
"value": "data",
|
|
523
|
+
"shortcut": ""
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
"label": "label",
|
|
527
|
+
"value": "label",
|
|
528
|
+
"shortcut": ""
|
|
529
|
+
}
|
|
530
|
+
],
|
|
531
|
+
"dataType": "",
|
|
532
|
+
"persistent": true,
|
|
533
|
+
"protected": false,
|
|
534
|
+
"dbIndex": false,
|
|
535
|
+
"encrypted": false,
|
|
536
|
+
"redrawOn": "",
|
|
537
|
+
"clearOnHide": true,
|
|
538
|
+
"customDefaultValue": "",
|
|
539
|
+
"calculateValue": "",
|
|
540
|
+
"calculateServer": false,
|
|
541
|
+
"allowCalculateOverride": false,
|
|
542
|
+
"validate": {
|
|
543
|
+
"required": false,
|
|
544
|
+
"customMessage": "",
|
|
545
|
+
"custom": "",
|
|
546
|
+
"customPrivate": false,
|
|
547
|
+
"json": "",
|
|
548
|
+
"strictDateValidation": false,
|
|
549
|
+
"multiple": false,
|
|
550
|
+
"unique": false
|
|
551
|
+
},
|
|
552
|
+
"errorLabel": "",
|
|
553
|
+
"key": "radio",
|
|
554
|
+
"tags": [],
|
|
555
|
+
"properties": {},
|
|
556
|
+
"conditional": {
|
|
557
|
+
"show": null,
|
|
558
|
+
"when": null,
|
|
559
|
+
"eq": "",
|
|
560
|
+
"json": ""
|
|
561
|
+
},
|
|
562
|
+
"customConditional": "",
|
|
563
|
+
"logic": [],
|
|
564
|
+
"attributes": {},
|
|
565
|
+
"overlay": {
|
|
566
|
+
"style": "",
|
|
567
|
+
"page": "",
|
|
568
|
+
"left": "",
|
|
569
|
+
"top": "",
|
|
570
|
+
"width": "",
|
|
571
|
+
"height": ""
|
|
572
|
+
},
|
|
573
|
+
"type": "radio",
|
|
574
|
+
"input": true,
|
|
575
|
+
"placeholder": "",
|
|
576
|
+
"prefix": "",
|
|
577
|
+
"suffix": "",
|
|
578
|
+
"multiple": false,
|
|
579
|
+
"unique": false,
|
|
580
|
+
"refreshOn": "",
|
|
581
|
+
"widget": null,
|
|
582
|
+
"validateOn": "change",
|
|
583
|
+
"showCharCount": false,
|
|
584
|
+
"showWordCount": false,
|
|
585
|
+
"allowMultipleMasks": false,
|
|
586
|
+
"inputType": "radio",
|
|
587
|
+
"fieldSet": false,
|
|
588
|
+
"id": "edh7o6o",
|
|
589
|
+
"defaultValue": ""
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
"label": "Select",
|
|
593
|
+
"labelPosition": "top",
|
|
594
|
+
"widget": "choicesjs",
|
|
595
|
+
"placeholder": "placeholder",
|
|
596
|
+
"description": "",
|
|
597
|
+
"tooltip": "",
|
|
598
|
+
"customClass": "",
|
|
599
|
+
"tabindex": "",
|
|
600
|
+
"hidden": false,
|
|
601
|
+
"hideLabel": false,
|
|
602
|
+
"uniqueOptions": false,
|
|
603
|
+
"autofocus": false,
|
|
604
|
+
"disabled": false,
|
|
605
|
+
"tableView": true,
|
|
606
|
+
"modalEdit": false,
|
|
607
|
+
"multiple": false,
|
|
608
|
+
"dataSrc": "values",
|
|
609
|
+
"data": {
|
|
610
|
+
"values": [
|
|
611
|
+
{
|
|
612
|
+
"label": "label",
|
|
613
|
+
"value": "label"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"label": "save",
|
|
617
|
+
"value": "save"
|
|
618
|
+
}
|
|
619
|
+
],
|
|
620
|
+
"resource": "",
|
|
621
|
+
"json": "",
|
|
622
|
+
"url": "",
|
|
623
|
+
"custom": ""
|
|
624
|
+
},
|
|
625
|
+
"valueProperty": "",
|
|
626
|
+
"dataType": "",
|
|
627
|
+
"idPath": "id",
|
|
628
|
+
"template": "<span>{{ item.label }}</span>",
|
|
629
|
+
"refreshOn": "",
|
|
630
|
+
"refreshOnBlur": "",
|
|
631
|
+
"clearOnRefresh": false,
|
|
632
|
+
"searchEnabled": true,
|
|
633
|
+
"selectThreshold": 0.3,
|
|
634
|
+
"readOnlyValue": false,
|
|
635
|
+
"customOptions": {},
|
|
636
|
+
"useExactSearch": false,
|
|
637
|
+
"persistent": true,
|
|
638
|
+
"protected": false,
|
|
639
|
+
"dbIndex": false,
|
|
640
|
+
"encrypted": false,
|
|
641
|
+
"clearOnHide": true,
|
|
642
|
+
"customDefaultValue": "",
|
|
643
|
+
"calculateValue": "",
|
|
644
|
+
"calculateServer": false,
|
|
645
|
+
"allowCalculateOverride": false,
|
|
646
|
+
"validateOn": "change",
|
|
647
|
+
"validate": {
|
|
648
|
+
"required": false,
|
|
649
|
+
"customMessage": "",
|
|
650
|
+
"custom": "",
|
|
651
|
+
"customPrivate": false,
|
|
652
|
+
"json": "",
|
|
653
|
+
"strictDateValidation": false,
|
|
654
|
+
"multiple": false,
|
|
655
|
+
"unique": false
|
|
656
|
+
},
|
|
657
|
+
"unique": false,
|
|
658
|
+
"errorLabel": "",
|
|
659
|
+
"key": "select",
|
|
660
|
+
"tags": [],
|
|
661
|
+
"properties": {},
|
|
662
|
+
"conditional": {
|
|
663
|
+
"show": null,
|
|
664
|
+
"when": null,
|
|
665
|
+
"eq": "",
|
|
666
|
+
"json": ""
|
|
667
|
+
},
|
|
668
|
+
"customConditional": "",
|
|
669
|
+
"logic": [],
|
|
670
|
+
"attributes": {},
|
|
671
|
+
"overlay": {
|
|
672
|
+
"style": "",
|
|
673
|
+
"page": "",
|
|
674
|
+
"left": "",
|
|
675
|
+
"top": "",
|
|
676
|
+
"width": "",
|
|
677
|
+
"height": ""
|
|
678
|
+
},
|
|
679
|
+
"type": "select",
|
|
680
|
+
"indexeddb": {
|
|
681
|
+
"filter": {}
|
|
682
|
+
},
|
|
683
|
+
"selectFields": "",
|
|
684
|
+
"searchField": "",
|
|
685
|
+
"minSearch": 0,
|
|
686
|
+
"filter": "",
|
|
687
|
+
"limit": 100,
|
|
688
|
+
"redrawOn": "",
|
|
689
|
+
"input": true,
|
|
690
|
+
"prefix": "",
|
|
691
|
+
"suffix": "",
|
|
692
|
+
"showCharCount": false,
|
|
693
|
+
"showWordCount": false,
|
|
694
|
+
"allowMultipleMasks": false,
|
|
695
|
+
"lazyLoad": true,
|
|
696
|
+
"authenticate": false,
|
|
697
|
+
"searchThreshold": 0.3,
|
|
698
|
+
"fuseOptions": {
|
|
699
|
+
"include": "score",
|
|
700
|
+
"threshold": 0.3
|
|
701
|
+
},
|
|
702
|
+
"id": "ebqtqd6",
|
|
703
|
+
"defaultValue": ""
|
|
704
|
+
},
|
|
705
|
+
{
|
|
706
|
+
"label": "Select",
|
|
707
|
+
"labelPosition": "top",
|
|
708
|
+
"widget": "html5",
|
|
709
|
+
"placeholder": "placeholder",
|
|
710
|
+
"description": "",
|
|
711
|
+
"tooltip": "",
|
|
712
|
+
"customClass": "",
|
|
713
|
+
"tabindex": "",
|
|
714
|
+
"hidden": false,
|
|
715
|
+
"hideLabel": false,
|
|
716
|
+
"uniqueOptions": false,
|
|
717
|
+
"autofocus": false,
|
|
718
|
+
"disabled": false,
|
|
719
|
+
"tableView": true,
|
|
720
|
+
"modalEdit": false,
|
|
721
|
+
"multiple": false,
|
|
722
|
+
"dataSrc": "values",
|
|
723
|
+
"data": {
|
|
724
|
+
"values": [
|
|
725
|
+
{
|
|
726
|
+
"label": "",
|
|
727
|
+
"value": ""
|
|
728
|
+
}
|
|
729
|
+
],
|
|
730
|
+
"resource": "",
|
|
731
|
+
"json": "",
|
|
732
|
+
"url": "",
|
|
733
|
+
"custom": ""
|
|
734
|
+
},
|
|
735
|
+
"valueProperty": "",
|
|
736
|
+
"dataType": "",
|
|
737
|
+
"idPath": "id",
|
|
738
|
+
"template": "<span>{{ item.label }}</span>",
|
|
739
|
+
"refreshOn": "",
|
|
740
|
+
"refreshOnBlur": "",
|
|
741
|
+
"clearOnRefresh": false,
|
|
742
|
+
"searchEnabled": true,
|
|
743
|
+
"selectThreshold": 0.3,
|
|
744
|
+
"readOnlyValue": false,
|
|
745
|
+
"customOptions": {},
|
|
746
|
+
"useExactSearch": false,
|
|
747
|
+
"persistent": true,
|
|
748
|
+
"protected": false,
|
|
749
|
+
"dbIndex": false,
|
|
750
|
+
"encrypted": false,
|
|
751
|
+
"clearOnHide": true,
|
|
752
|
+
"customDefaultValue": "",
|
|
753
|
+
"calculateValue": "",
|
|
754
|
+
"calculateServer": false,
|
|
755
|
+
"allowCalculateOverride": false,
|
|
756
|
+
"validateOn": "change",
|
|
757
|
+
"validate": {
|
|
758
|
+
"required": false,
|
|
759
|
+
"customMessage": "",
|
|
760
|
+
"custom": "",
|
|
761
|
+
"customPrivate": false,
|
|
762
|
+
"json": "",
|
|
763
|
+
"strictDateValidation": false,
|
|
764
|
+
"multiple": false,
|
|
765
|
+
"unique": false
|
|
766
|
+
},
|
|
767
|
+
"unique": false,
|
|
768
|
+
"errorLabel": "",
|
|
769
|
+
"key": "select1",
|
|
770
|
+
"tags": [],
|
|
771
|
+
"properties": {},
|
|
772
|
+
"conditional": {
|
|
773
|
+
"show": null,
|
|
774
|
+
"when": null,
|
|
775
|
+
"eq": "",
|
|
776
|
+
"json": ""
|
|
777
|
+
},
|
|
778
|
+
"customConditional": "",
|
|
779
|
+
"logic": [],
|
|
780
|
+
"attributes": {},
|
|
781
|
+
"overlay": {
|
|
782
|
+
"style": "",
|
|
783
|
+
"page": "",
|
|
784
|
+
"left": "",
|
|
785
|
+
"top": "",
|
|
786
|
+
"width": "",
|
|
787
|
+
"height": ""
|
|
788
|
+
},
|
|
789
|
+
"type": "select",
|
|
790
|
+
"indexeddb": {
|
|
791
|
+
"filter": {}
|
|
792
|
+
},
|
|
793
|
+
"selectFields": "",
|
|
794
|
+
"searchField": "",
|
|
795
|
+
"minSearch": 0,
|
|
796
|
+
"filter": "",
|
|
797
|
+
"limit": 100,
|
|
798
|
+
"redrawOn": "",
|
|
799
|
+
"input": true,
|
|
800
|
+
"prefix": "",
|
|
801
|
+
"suffix": "",
|
|
802
|
+
"showCharCount": false,
|
|
803
|
+
"showWordCount": false,
|
|
804
|
+
"allowMultipleMasks": false,
|
|
805
|
+
"lazyLoad": true,
|
|
806
|
+
"authenticate": false,
|
|
807
|
+
"searchThreshold": 0.3,
|
|
808
|
+
"fuseOptions": {
|
|
809
|
+
"include": "score",
|
|
810
|
+
"threshold": 0.3
|
|
811
|
+
},
|
|
812
|
+
"id": "em8m4qk",
|
|
813
|
+
"defaultValue": ""
|
|
814
|
+
},
|
|
815
|
+
{
|
|
816
|
+
"label": "Email",
|
|
817
|
+
"labelPosition": "top",
|
|
818
|
+
"placeholder": "",
|
|
819
|
+
"description": "",
|
|
820
|
+
"tooltip": "",
|
|
821
|
+
"prefix": "",
|
|
822
|
+
"suffix": "",
|
|
823
|
+
"widget": {
|
|
824
|
+
"type": "input"
|
|
825
|
+
},
|
|
826
|
+
"customClass": "",
|
|
827
|
+
"tabindex": "",
|
|
828
|
+
"autocomplete": "",
|
|
829
|
+
"hidden": false,
|
|
830
|
+
"hideLabel": false,
|
|
831
|
+
"mask": false,
|
|
832
|
+
"autofocus": false,
|
|
833
|
+
"spellcheck": true,
|
|
834
|
+
"disabled": false,
|
|
835
|
+
"tableView": true,
|
|
836
|
+
"modalEdit": false,
|
|
837
|
+
"multiple": false,
|
|
838
|
+
"persistent": true,
|
|
839
|
+
"inputFormat": "plain",
|
|
840
|
+
"protected": false,
|
|
841
|
+
"dbIndex": false,
|
|
842
|
+
"case": "",
|
|
843
|
+
"encrypted": false,
|
|
844
|
+
"redrawOn": "",
|
|
845
|
+
"clearOnHide": true,
|
|
846
|
+
"customDefaultValue": "",
|
|
847
|
+
"calculateValue": "",
|
|
848
|
+
"calculateServer": false,
|
|
849
|
+
"allowCalculateOverride": false,
|
|
850
|
+
"validateOn": "change",
|
|
851
|
+
"validate": {
|
|
852
|
+
"required": false,
|
|
853
|
+
"pattern": "",
|
|
854
|
+
"customMessage": "",
|
|
855
|
+
"custom": "",
|
|
856
|
+
"customPrivate": false,
|
|
857
|
+
"json": "",
|
|
858
|
+
"minLength": "",
|
|
859
|
+
"maxLength": "",
|
|
860
|
+
"strictDateValidation": false,
|
|
861
|
+
"multiple": false,
|
|
862
|
+
"unique": false
|
|
863
|
+
},
|
|
864
|
+
"unique": false,
|
|
865
|
+
"kickbox": {
|
|
866
|
+
"enabled": false
|
|
867
|
+
},
|
|
868
|
+
"errorLabel": "",
|
|
869
|
+
"key": "email",
|
|
870
|
+
"tags": [],
|
|
871
|
+
"properties": {},
|
|
872
|
+
"conditional": {
|
|
873
|
+
"show": null,
|
|
874
|
+
"when": null,
|
|
875
|
+
"eq": "",
|
|
876
|
+
"json": ""
|
|
877
|
+
},
|
|
878
|
+
"customConditional": "",
|
|
879
|
+
"logic": [],
|
|
880
|
+
"attributes": {},
|
|
881
|
+
"overlay": {
|
|
882
|
+
"style": "",
|
|
883
|
+
"page": "",
|
|
884
|
+
"left": "",
|
|
885
|
+
"top": "",
|
|
886
|
+
"width": "",
|
|
887
|
+
"height": ""
|
|
888
|
+
},
|
|
889
|
+
"type": "email",
|
|
890
|
+
"input": true,
|
|
891
|
+
"refreshOn": "",
|
|
892
|
+
"showCharCount": false,
|
|
893
|
+
"showWordCount": false,
|
|
894
|
+
"allowMultipleMasks": false,
|
|
895
|
+
"inputType": "email",
|
|
896
|
+
"inputMask": "",
|
|
897
|
+
"id": "epj8sj28",
|
|
898
|
+
"defaultValue": null
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
"label": "Url",
|
|
902
|
+
"labelPosition": "top",
|
|
903
|
+
"placeholder": "",
|
|
904
|
+
"description": "",
|
|
905
|
+
"tooltip": "",
|
|
906
|
+
"prefix": "",
|
|
907
|
+
"suffix": "",
|
|
908
|
+
"widget": {
|
|
909
|
+
"type": "input"
|
|
910
|
+
},
|
|
911
|
+
"customClass": "",
|
|
912
|
+
"tabindex": "",
|
|
913
|
+
"autocomplete": "",
|
|
914
|
+
"hidden": false,
|
|
915
|
+
"hideLabel": false,
|
|
916
|
+
"mask": false,
|
|
917
|
+
"autofocus": false,
|
|
918
|
+
"spellcheck": true,
|
|
919
|
+
"disabled": false,
|
|
920
|
+
"tableView": true,
|
|
921
|
+
"modalEdit": false,
|
|
922
|
+
"multiple": false,
|
|
923
|
+
"persistent": true,
|
|
924
|
+
"inputFormat": "plain",
|
|
925
|
+
"protected": false,
|
|
926
|
+
"dbIndex": false,
|
|
927
|
+
"encrypted": false,
|
|
928
|
+
"redrawOn": "",
|
|
929
|
+
"clearOnHide": true,
|
|
930
|
+
"customDefaultValue": "",
|
|
931
|
+
"calculateValue": "",
|
|
932
|
+
"calculateServer": false,
|
|
933
|
+
"allowCalculateOverride": false,
|
|
934
|
+
"validateOn": "change",
|
|
935
|
+
"validate": {
|
|
936
|
+
"required": false,
|
|
937
|
+
"pattern": "",
|
|
938
|
+
"customMessage": "",
|
|
939
|
+
"custom": "",
|
|
940
|
+
"customPrivate": false,
|
|
941
|
+
"json": "",
|
|
942
|
+
"minLength": "",
|
|
943
|
+
"maxLength": "",
|
|
944
|
+
"strictDateValidation": false,
|
|
945
|
+
"multiple": false,
|
|
946
|
+
"unique": false
|
|
947
|
+
},
|
|
948
|
+
"unique": false,
|
|
949
|
+
"errorLabel": "",
|
|
950
|
+
"key": "url",
|
|
951
|
+
"tags": [],
|
|
952
|
+
"properties": {},
|
|
953
|
+
"conditional": {
|
|
954
|
+
"show": null,
|
|
955
|
+
"when": null,
|
|
956
|
+
"eq": "",
|
|
957
|
+
"json": ""
|
|
958
|
+
},
|
|
959
|
+
"customConditional": "",
|
|
960
|
+
"logic": [],
|
|
961
|
+
"attributes": {},
|
|
962
|
+
"overlay": {
|
|
963
|
+
"style": "",
|
|
964
|
+
"page": "",
|
|
965
|
+
"left": "",
|
|
966
|
+
"top": "",
|
|
967
|
+
"width": "",
|
|
968
|
+
"height": ""
|
|
969
|
+
},
|
|
970
|
+
"type": "url",
|
|
971
|
+
"input": true,
|
|
972
|
+
"refreshOn": "",
|
|
973
|
+
"showCharCount": false,
|
|
974
|
+
"showWordCount": false,
|
|
975
|
+
"allowMultipleMasks": false,
|
|
976
|
+
"inputType": "url",
|
|
977
|
+
"inputMask": "",
|
|
978
|
+
"id": "exw9p4",
|
|
979
|
+
"defaultValue": null
|
|
980
|
+
},
|
|
981
|
+
{
|
|
982
|
+
"label": "Phone Number",
|
|
983
|
+
"labelPosition": "top",
|
|
984
|
+
"placeholder": "",
|
|
985
|
+
"description": "",
|
|
986
|
+
"tooltip": "",
|
|
987
|
+
"prefix": "",
|
|
988
|
+
"suffix": "",
|
|
989
|
+
"widget": {
|
|
990
|
+
"type": "input"
|
|
991
|
+
},
|
|
992
|
+
"inputMask": "(999) 999-9999",
|
|
993
|
+
"allowMultipleMasks": false,
|
|
994
|
+
"customClass": "",
|
|
995
|
+
"tabindex": "",
|
|
996
|
+
"autocomplete": "",
|
|
997
|
+
"hidden": false,
|
|
998
|
+
"hideLabel": false,
|
|
999
|
+
"mask": false,
|
|
1000
|
+
"autofocus": false,
|
|
1001
|
+
"spellcheck": true,
|
|
1002
|
+
"disabled": false,
|
|
1003
|
+
"tableView": true,
|
|
1004
|
+
"modalEdit": false,
|
|
1005
|
+
"multiple": false,
|
|
1006
|
+
"persistent": true,
|
|
1007
|
+
"inputFormat": "plain",
|
|
1008
|
+
"protected": false,
|
|
1009
|
+
"dbIndex": false,
|
|
1010
|
+
"case": "",
|
|
1011
|
+
"encrypted": false,
|
|
1012
|
+
"redrawOn": "",
|
|
1013
|
+
"clearOnHide": true,
|
|
1014
|
+
"customDefaultValue": "",
|
|
1015
|
+
"calculateValue": "",
|
|
1016
|
+
"calculateServer": false,
|
|
1017
|
+
"allowCalculateOverride": false,
|
|
1018
|
+
"validateOn": "change",
|
|
1019
|
+
"validate": {
|
|
1020
|
+
"required": false,
|
|
1021
|
+
"customMessage": "",
|
|
1022
|
+
"custom": "",
|
|
1023
|
+
"customPrivate": false,
|
|
1024
|
+
"json": "",
|
|
1025
|
+
"strictDateValidation": false,
|
|
1026
|
+
"multiple": false,
|
|
1027
|
+
"unique": false,
|
|
1028
|
+
"minLength": "",
|
|
1029
|
+
"maxLength": "",
|
|
1030
|
+
"pattern": ""
|
|
1031
|
+
},
|
|
1032
|
+
"unique": false,
|
|
1033
|
+
"errorLabel": "",
|
|
1034
|
+
"key": "phoneNumber",
|
|
1035
|
+
"tags": [],
|
|
1036
|
+
"properties": {},
|
|
1037
|
+
"conditional": {
|
|
1038
|
+
"show": null,
|
|
1039
|
+
"when": null,
|
|
1040
|
+
"eq": "",
|
|
1041
|
+
"json": ""
|
|
1042
|
+
},
|
|
1043
|
+
"customConditional": "",
|
|
1044
|
+
"logic": [],
|
|
1045
|
+
"attributes": {},
|
|
1046
|
+
"overlay": {
|
|
1047
|
+
"style": "",
|
|
1048
|
+
"page": "",
|
|
1049
|
+
"left": "",
|
|
1050
|
+
"top": "",
|
|
1051
|
+
"width": "",
|
|
1052
|
+
"height": ""
|
|
1053
|
+
},
|
|
1054
|
+
"type": "phoneNumber",
|
|
1055
|
+
"input": true,
|
|
1056
|
+
"refreshOn": "",
|
|
1057
|
+
"showCharCount": false,
|
|
1058
|
+
"showWordCount": false,
|
|
1059
|
+
"inputType": "tel",
|
|
1060
|
+
"id": "e2c7lpl",
|
|
1061
|
+
"defaultValue": null
|
|
1062
|
+
},
|
|
1063
|
+
{
|
|
1064
|
+
"label": "Tags",
|
|
1065
|
+
"labelPosition": "top",
|
|
1066
|
+
"placeholder": "",
|
|
1067
|
+
"description": "",
|
|
1068
|
+
"tooltip": "",
|
|
1069
|
+
"customClass": "",
|
|
1070
|
+
"tabindex": "",
|
|
1071
|
+
"hidden": false,
|
|
1072
|
+
"hideLabel": false,
|
|
1073
|
+
"autofocus": false,
|
|
1074
|
+
"disabled": false,
|
|
1075
|
+
"tableView": false,
|
|
1076
|
+
"modalEdit": false,
|
|
1077
|
+
"delimeter": ",",
|
|
1078
|
+
"maxTags": 0,
|
|
1079
|
+
"storeas": "string",
|
|
1080
|
+
"persistent": true,
|
|
1081
|
+
"protected": false,
|
|
1082
|
+
"dbIndex": false,
|
|
1083
|
+
"encrypted": false,
|
|
1084
|
+
"redrawOn": "",
|
|
1085
|
+
"clearOnHide": true,
|
|
1086
|
+
"customDefaultValue": "",
|
|
1087
|
+
"calculateValue": "",
|
|
1088
|
+
"calculateServer": false,
|
|
1089
|
+
"allowCalculateOverride": false,
|
|
1090
|
+
"validate": {
|
|
1091
|
+
"required": false,
|
|
1092
|
+
"customMessage": "",
|
|
1093
|
+
"custom": "",
|
|
1094
|
+
"customPrivate": false,
|
|
1095
|
+
"json": "",
|
|
1096
|
+
"strictDateValidation": false,
|
|
1097
|
+
"multiple": false,
|
|
1098
|
+
"unique": false
|
|
1099
|
+
},
|
|
1100
|
+
"unique": false,
|
|
1101
|
+
"validateOn": "change",
|
|
1102
|
+
"errorLabel": "",
|
|
1103
|
+
"key": "tags",
|
|
1104
|
+
"tags": [],
|
|
1105
|
+
"properties": {},
|
|
1106
|
+
"conditional": {
|
|
1107
|
+
"show": null,
|
|
1108
|
+
"when": null,
|
|
1109
|
+
"eq": "",
|
|
1110
|
+
"json": ""
|
|
1111
|
+
},
|
|
1112
|
+
"customConditional": "",
|
|
1113
|
+
"logic": [],
|
|
1114
|
+
"attributes": {},
|
|
1115
|
+
"overlay": {
|
|
1116
|
+
"style": "",
|
|
1117
|
+
"page": "",
|
|
1118
|
+
"left": "",
|
|
1119
|
+
"top": "",
|
|
1120
|
+
"width": "",
|
|
1121
|
+
"height": ""
|
|
1122
|
+
},
|
|
1123
|
+
"type": "tags",
|
|
1124
|
+
"input": true,
|
|
1125
|
+
"prefix": "",
|
|
1126
|
+
"suffix": "",
|
|
1127
|
+
"multiple": false,
|
|
1128
|
+
"refreshOn": "",
|
|
1129
|
+
"widget": {
|
|
1130
|
+
"type": "input"
|
|
1131
|
+
},
|
|
1132
|
+
"showCharCount": false,
|
|
1133
|
+
"showWordCount": false,
|
|
1134
|
+
"allowMultipleMasks": false,
|
|
1135
|
+
"id": "ejc82t",
|
|
1136
|
+
"defaultValue": null
|
|
1137
|
+
},
|
|
1138
|
+
{
|
|
1139
|
+
"label": "Address",
|
|
1140
|
+
"labelPosition": "top",
|
|
1141
|
+
"enableManualMode": false,
|
|
1142
|
+
"disableClearIcon": false,
|
|
1143
|
+
"placeholder": "",
|
|
1144
|
+
"description": "",
|
|
1145
|
+
"tooltip": "",
|
|
1146
|
+
"customClass": "",
|
|
1147
|
+
"tabindex": "",
|
|
1148
|
+
"hidden": false,
|
|
1149
|
+
"hideLabel": false,
|
|
1150
|
+
"autofocus": false,
|
|
1151
|
+
"disabled": false,
|
|
1152
|
+
"tableView": false,
|
|
1153
|
+
"modalEdit": false,
|
|
1154
|
+
"multiple": false,
|
|
1155
|
+
"persistent": true,
|
|
1156
|
+
"protected": false,
|
|
1157
|
+
"dbIndex": false,
|
|
1158
|
+
"encrypted": false,
|
|
1159
|
+
"redrawOn": "",
|
|
1160
|
+
"clearOnHide": true,
|
|
1161
|
+
"customDefaultValue": "",
|
|
1162
|
+
"calculateValue": "",
|
|
1163
|
+
"calculateServer": false,
|
|
1164
|
+
"allowCalculateOverride": false,
|
|
1165
|
+
"provider": "google",
|
|
1166
|
+
"manualModeViewString": "",
|
|
1167
|
+
"validate": {
|
|
1168
|
+
"required": false,
|
|
1169
|
+
"customMessage": "",
|
|
1170
|
+
"custom": "",
|
|
1171
|
+
"customPrivate": false,
|
|
1172
|
+
"json": "",
|
|
1173
|
+
"strictDateValidation": false,
|
|
1174
|
+
"multiple": false,
|
|
1175
|
+
"unique": false
|
|
1176
|
+
},
|
|
1177
|
+
"unique": false,
|
|
1178
|
+
"validateOn": "change",
|
|
1179
|
+
"errorLabel": "",
|
|
1180
|
+
"key": "address",
|
|
1181
|
+
"tags": [],
|
|
1182
|
+
"properties": {},
|
|
1183
|
+
"conditional": {
|
|
1184
|
+
"show": null,
|
|
1185
|
+
"when": null,
|
|
1186
|
+
"eq": "",
|
|
1187
|
+
"json": ""
|
|
1188
|
+
},
|
|
1189
|
+
"customConditional": "",
|
|
1190
|
+
"logic": [],
|
|
1191
|
+
"attributes": {},
|
|
1192
|
+
"overlay": {
|
|
1193
|
+
"style": "",
|
|
1194
|
+
"page": "",
|
|
1195
|
+
"left": "",
|
|
1196
|
+
"top": "",
|
|
1197
|
+
"width": "",
|
|
1198
|
+
"height": ""
|
|
1199
|
+
},
|
|
1200
|
+
"type": "address",
|
|
1201
|
+
"switchToManualModeLabel": "Can't find address? Switch to manual mode.",
|
|
1202
|
+
"input": true,
|
|
1203
|
+
"prefix": "",
|
|
1204
|
+
"suffix": "",
|
|
1205
|
+
"refreshOn": "",
|
|
1206
|
+
"widget": null,
|
|
1207
|
+
"showCharCount": false,
|
|
1208
|
+
"showWordCount": false,
|
|
1209
|
+
"allowMultipleMasks": false,
|
|
1210
|
+
"tree": true,
|
|
1211
|
+
"components": [
|
|
1212
|
+
{
|
|
1213
|
+
"label": "Address 1",
|
|
1214
|
+
"tableView": false,
|
|
1215
|
+
"key": "address1",
|
|
1216
|
+
"type": "textfield",
|
|
1217
|
+
"input": true,
|
|
1218
|
+
"customConditional": "show = _.get(instance, 'parent.manualMode', false);",
|
|
1219
|
+
"placeholder": "",
|
|
1220
|
+
"prefix": "",
|
|
1221
|
+
"customClass": "",
|
|
1222
|
+
"suffix": "",
|
|
1223
|
+
"multiple": false,
|
|
1224
|
+
"defaultValue": null,
|
|
1225
|
+
"protected": false,
|
|
1226
|
+
"unique": false,
|
|
1227
|
+
"persistent": true,
|
|
1228
|
+
"hidden": false,
|
|
1229
|
+
"clearOnHide": true,
|
|
1230
|
+
"refreshOn": "",
|
|
1231
|
+
"redrawOn": "",
|
|
1232
|
+
"modalEdit": false,
|
|
1233
|
+
"labelPosition": "top",
|
|
1234
|
+
"description": "",
|
|
1235
|
+
"errorLabel": "",
|
|
1236
|
+
"tooltip": "",
|
|
1237
|
+
"hideLabel": false,
|
|
1238
|
+
"tabindex": "",
|
|
1239
|
+
"disabled": false,
|
|
1240
|
+
"autofocus": false,
|
|
1241
|
+
"dbIndex": false,
|
|
1242
|
+
"customDefaultValue": "",
|
|
1243
|
+
"calculateValue": "",
|
|
1244
|
+
"calculateServer": false,
|
|
1245
|
+
"widget": {
|
|
1246
|
+
"type": "input"
|
|
1247
|
+
},
|
|
1248
|
+
"attributes": {},
|
|
1249
|
+
"validateOn": "change",
|
|
1250
|
+
"validate": {
|
|
1251
|
+
"required": false,
|
|
1252
|
+
"custom": "",
|
|
1253
|
+
"customPrivate": false,
|
|
1254
|
+
"strictDateValidation": false,
|
|
1255
|
+
"multiple": false,
|
|
1256
|
+
"unique": false,
|
|
1257
|
+
"minLength": "",
|
|
1258
|
+
"maxLength": "",
|
|
1259
|
+
"pattern": ""
|
|
1260
|
+
},
|
|
1261
|
+
"conditional": {
|
|
1262
|
+
"show": null,
|
|
1263
|
+
"when": null,
|
|
1264
|
+
"eq": ""
|
|
1265
|
+
},
|
|
1266
|
+
"overlay": {
|
|
1267
|
+
"style": "",
|
|
1268
|
+
"left": "",
|
|
1269
|
+
"top": "",
|
|
1270
|
+
"width": "",
|
|
1271
|
+
"height": ""
|
|
1272
|
+
},
|
|
1273
|
+
"allowCalculateOverride": false,
|
|
1274
|
+
"encrypted": false,
|
|
1275
|
+
"showCharCount": false,
|
|
1276
|
+
"showWordCount": false,
|
|
1277
|
+
"properties": {},
|
|
1278
|
+
"allowMultipleMasks": false,
|
|
1279
|
+
"mask": false,
|
|
1280
|
+
"inputType": "text",
|
|
1281
|
+
"inputFormat": "plain",
|
|
1282
|
+
"inputMask": "",
|
|
1283
|
+
"spellcheck": true,
|
|
1284
|
+
"id": "eecfg6h"
|
|
1285
|
+
},
|
|
1286
|
+
{
|
|
1287
|
+
"label": "Address 2",
|
|
1288
|
+
"tableView": false,
|
|
1289
|
+
"key": "address2",
|
|
1290
|
+
"type": "textfield",
|
|
1291
|
+
"input": true,
|
|
1292
|
+
"customConditional": "show = _.get(instance, 'parent.manualMode', false);",
|
|
1293
|
+
"placeholder": "",
|
|
1294
|
+
"prefix": "",
|
|
1295
|
+
"customClass": "",
|
|
1296
|
+
"suffix": "",
|
|
1297
|
+
"multiple": false,
|
|
1298
|
+
"defaultValue": null,
|
|
1299
|
+
"protected": false,
|
|
1300
|
+
"unique": false,
|
|
1301
|
+
"persistent": true,
|
|
1302
|
+
"hidden": false,
|
|
1303
|
+
"clearOnHide": true,
|
|
1304
|
+
"refreshOn": "",
|
|
1305
|
+
"redrawOn": "",
|
|
1306
|
+
"modalEdit": false,
|
|
1307
|
+
"labelPosition": "top",
|
|
1308
|
+
"description": "",
|
|
1309
|
+
"errorLabel": "",
|
|
1310
|
+
"tooltip": "",
|
|
1311
|
+
"hideLabel": false,
|
|
1312
|
+
"tabindex": "",
|
|
1313
|
+
"disabled": false,
|
|
1314
|
+
"autofocus": false,
|
|
1315
|
+
"dbIndex": false,
|
|
1316
|
+
"customDefaultValue": "",
|
|
1317
|
+
"calculateValue": "",
|
|
1318
|
+
"calculateServer": false,
|
|
1319
|
+
"widget": {
|
|
1320
|
+
"type": "input"
|
|
1321
|
+
},
|
|
1322
|
+
"attributes": {},
|
|
1323
|
+
"validateOn": "change",
|
|
1324
|
+
"validate": {
|
|
1325
|
+
"required": false,
|
|
1326
|
+
"custom": "",
|
|
1327
|
+
"customPrivate": false,
|
|
1328
|
+
"strictDateValidation": false,
|
|
1329
|
+
"multiple": false,
|
|
1330
|
+
"unique": false,
|
|
1331
|
+
"minLength": "",
|
|
1332
|
+
"maxLength": "",
|
|
1333
|
+
"pattern": ""
|
|
1334
|
+
},
|
|
1335
|
+
"conditional": {
|
|
1336
|
+
"show": null,
|
|
1337
|
+
"when": null,
|
|
1338
|
+
"eq": ""
|
|
1339
|
+
},
|
|
1340
|
+
"overlay": {
|
|
1341
|
+
"style": "",
|
|
1342
|
+
"left": "",
|
|
1343
|
+
"top": "",
|
|
1344
|
+
"width": "",
|
|
1345
|
+
"height": ""
|
|
1346
|
+
},
|
|
1347
|
+
"allowCalculateOverride": false,
|
|
1348
|
+
"encrypted": false,
|
|
1349
|
+
"showCharCount": false,
|
|
1350
|
+
"showWordCount": false,
|
|
1351
|
+
"properties": {},
|
|
1352
|
+
"allowMultipleMasks": false,
|
|
1353
|
+
"mask": false,
|
|
1354
|
+
"inputType": "text",
|
|
1355
|
+
"inputFormat": "plain",
|
|
1356
|
+
"inputMask": "",
|
|
1357
|
+
"spellcheck": true,
|
|
1358
|
+
"id": "eajhpuu"
|
|
1359
|
+
},
|
|
1360
|
+
{
|
|
1361
|
+
"label": "City",
|
|
1362
|
+
"tableView": false,
|
|
1363
|
+
"key": "city",
|
|
1364
|
+
"type": "textfield",
|
|
1365
|
+
"input": true,
|
|
1366
|
+
"customConditional": "show = _.get(instance, 'parent.manualMode', false);",
|
|
1367
|
+
"placeholder": "",
|
|
1368
|
+
"prefix": "",
|
|
1369
|
+
"customClass": "",
|
|
1370
|
+
"suffix": "",
|
|
1371
|
+
"multiple": false,
|
|
1372
|
+
"defaultValue": null,
|
|
1373
|
+
"protected": false,
|
|
1374
|
+
"unique": false,
|
|
1375
|
+
"persistent": true,
|
|
1376
|
+
"hidden": false,
|
|
1377
|
+
"clearOnHide": true,
|
|
1378
|
+
"refreshOn": "",
|
|
1379
|
+
"redrawOn": "",
|
|
1380
|
+
"modalEdit": false,
|
|
1381
|
+
"labelPosition": "top",
|
|
1382
|
+
"description": "",
|
|
1383
|
+
"errorLabel": "",
|
|
1384
|
+
"tooltip": "",
|
|
1385
|
+
"hideLabel": false,
|
|
1386
|
+
"tabindex": "",
|
|
1387
|
+
"disabled": false,
|
|
1388
|
+
"autofocus": false,
|
|
1389
|
+
"dbIndex": false,
|
|
1390
|
+
"customDefaultValue": "",
|
|
1391
|
+
"calculateValue": "",
|
|
1392
|
+
"calculateServer": false,
|
|
1393
|
+
"widget": {
|
|
1394
|
+
"type": "input"
|
|
1395
|
+
},
|
|
1396
|
+
"attributes": {},
|
|
1397
|
+
"validateOn": "change",
|
|
1398
|
+
"validate": {
|
|
1399
|
+
"required": false,
|
|
1400
|
+
"custom": "",
|
|
1401
|
+
"customPrivate": false,
|
|
1402
|
+
"strictDateValidation": false,
|
|
1403
|
+
"multiple": false,
|
|
1404
|
+
"unique": false,
|
|
1405
|
+
"minLength": "",
|
|
1406
|
+
"maxLength": "",
|
|
1407
|
+
"pattern": ""
|
|
1408
|
+
},
|
|
1409
|
+
"conditional": {
|
|
1410
|
+
"show": null,
|
|
1411
|
+
"when": null,
|
|
1412
|
+
"eq": ""
|
|
1413
|
+
},
|
|
1414
|
+
"overlay": {
|
|
1415
|
+
"style": "",
|
|
1416
|
+
"left": "",
|
|
1417
|
+
"top": "",
|
|
1418
|
+
"width": "",
|
|
1419
|
+
"height": ""
|
|
1420
|
+
},
|
|
1421
|
+
"allowCalculateOverride": false,
|
|
1422
|
+
"encrypted": false,
|
|
1423
|
+
"showCharCount": false,
|
|
1424
|
+
"showWordCount": false,
|
|
1425
|
+
"properties": {},
|
|
1426
|
+
"allowMultipleMasks": false,
|
|
1427
|
+
"mask": false,
|
|
1428
|
+
"inputType": "text",
|
|
1429
|
+
"inputFormat": "plain",
|
|
1430
|
+
"inputMask": "",
|
|
1431
|
+
"spellcheck": true,
|
|
1432
|
+
"id": "efpnrca7"
|
|
1433
|
+
},
|
|
1434
|
+
{
|
|
1435
|
+
"label": "State",
|
|
1436
|
+
"tableView": false,
|
|
1437
|
+
"key": "state",
|
|
1438
|
+
"type": "textfield",
|
|
1439
|
+
"input": true,
|
|
1440
|
+
"customConditional": "show = _.get(instance, 'parent.manualMode', false);",
|
|
1441
|
+
"placeholder": "",
|
|
1442
|
+
"prefix": "",
|
|
1443
|
+
"customClass": "",
|
|
1444
|
+
"suffix": "",
|
|
1445
|
+
"multiple": false,
|
|
1446
|
+
"defaultValue": null,
|
|
1447
|
+
"protected": false,
|
|
1448
|
+
"unique": false,
|
|
1449
|
+
"persistent": true,
|
|
1450
|
+
"hidden": false,
|
|
1451
|
+
"clearOnHide": true,
|
|
1452
|
+
"refreshOn": "",
|
|
1453
|
+
"redrawOn": "",
|
|
1454
|
+
"modalEdit": false,
|
|
1455
|
+
"labelPosition": "top",
|
|
1456
|
+
"description": "",
|
|
1457
|
+
"errorLabel": "",
|
|
1458
|
+
"tooltip": "",
|
|
1459
|
+
"hideLabel": false,
|
|
1460
|
+
"tabindex": "",
|
|
1461
|
+
"disabled": false,
|
|
1462
|
+
"autofocus": false,
|
|
1463
|
+
"dbIndex": false,
|
|
1464
|
+
"customDefaultValue": "",
|
|
1465
|
+
"calculateValue": "",
|
|
1466
|
+
"calculateServer": false,
|
|
1467
|
+
"widget": {
|
|
1468
|
+
"type": "input"
|
|
1469
|
+
},
|
|
1470
|
+
"attributes": {},
|
|
1471
|
+
"validateOn": "change",
|
|
1472
|
+
"validate": {
|
|
1473
|
+
"required": false,
|
|
1474
|
+
"custom": "",
|
|
1475
|
+
"customPrivate": false,
|
|
1476
|
+
"strictDateValidation": false,
|
|
1477
|
+
"multiple": false,
|
|
1478
|
+
"unique": false,
|
|
1479
|
+
"minLength": "",
|
|
1480
|
+
"maxLength": "",
|
|
1481
|
+
"pattern": ""
|
|
1482
|
+
},
|
|
1483
|
+
"conditional": {
|
|
1484
|
+
"show": null,
|
|
1485
|
+
"when": null,
|
|
1486
|
+
"eq": ""
|
|
1487
|
+
},
|
|
1488
|
+
"overlay": {
|
|
1489
|
+
"style": "",
|
|
1490
|
+
"left": "",
|
|
1491
|
+
"top": "",
|
|
1492
|
+
"width": "",
|
|
1493
|
+
"height": ""
|
|
1494
|
+
},
|
|
1495
|
+
"allowCalculateOverride": false,
|
|
1496
|
+
"encrypted": false,
|
|
1497
|
+
"showCharCount": false,
|
|
1498
|
+
"showWordCount": false,
|
|
1499
|
+
"properties": {},
|
|
1500
|
+
"allowMultipleMasks": false,
|
|
1501
|
+
"mask": false,
|
|
1502
|
+
"inputType": "text",
|
|
1503
|
+
"inputFormat": "plain",
|
|
1504
|
+
"inputMask": "",
|
|
1505
|
+
"spellcheck": true,
|
|
1506
|
+
"id": "eu3kksv"
|
|
1507
|
+
},
|
|
1508
|
+
{
|
|
1509
|
+
"label": "Country",
|
|
1510
|
+
"tableView": false,
|
|
1511
|
+
"key": "country",
|
|
1512
|
+
"type": "textfield",
|
|
1513
|
+
"input": true,
|
|
1514
|
+
"customConditional": "show = _.get(instance, 'parent.manualMode', false);",
|
|
1515
|
+
"placeholder": "",
|
|
1516
|
+
"prefix": "",
|
|
1517
|
+
"customClass": "",
|
|
1518
|
+
"suffix": "",
|
|
1519
|
+
"multiple": false,
|
|
1520
|
+
"defaultValue": null,
|
|
1521
|
+
"protected": false,
|
|
1522
|
+
"unique": false,
|
|
1523
|
+
"persistent": true,
|
|
1524
|
+
"hidden": false,
|
|
1525
|
+
"clearOnHide": true,
|
|
1526
|
+
"refreshOn": "",
|
|
1527
|
+
"redrawOn": "",
|
|
1528
|
+
"modalEdit": false,
|
|
1529
|
+
"labelPosition": "top",
|
|
1530
|
+
"description": "",
|
|
1531
|
+
"errorLabel": "",
|
|
1532
|
+
"tooltip": "",
|
|
1533
|
+
"hideLabel": false,
|
|
1534
|
+
"tabindex": "",
|
|
1535
|
+
"disabled": false,
|
|
1536
|
+
"autofocus": false,
|
|
1537
|
+
"dbIndex": false,
|
|
1538
|
+
"customDefaultValue": "",
|
|
1539
|
+
"calculateValue": "",
|
|
1540
|
+
"calculateServer": false,
|
|
1541
|
+
"widget": {
|
|
1542
|
+
"type": "input"
|
|
1543
|
+
},
|
|
1544
|
+
"attributes": {},
|
|
1545
|
+
"validateOn": "change",
|
|
1546
|
+
"validate": {
|
|
1547
|
+
"required": false,
|
|
1548
|
+
"custom": "",
|
|
1549
|
+
"customPrivate": false,
|
|
1550
|
+
"strictDateValidation": false,
|
|
1551
|
+
"multiple": false,
|
|
1552
|
+
"unique": false,
|
|
1553
|
+
"minLength": "",
|
|
1554
|
+
"maxLength": "",
|
|
1555
|
+
"pattern": ""
|
|
1556
|
+
},
|
|
1557
|
+
"conditional": {
|
|
1558
|
+
"show": null,
|
|
1559
|
+
"when": null,
|
|
1560
|
+
"eq": ""
|
|
1561
|
+
},
|
|
1562
|
+
"overlay": {
|
|
1563
|
+
"style": "",
|
|
1564
|
+
"left": "",
|
|
1565
|
+
"top": "",
|
|
1566
|
+
"width": "",
|
|
1567
|
+
"height": ""
|
|
1568
|
+
},
|
|
1569
|
+
"allowCalculateOverride": false,
|
|
1570
|
+
"encrypted": false,
|
|
1571
|
+
"showCharCount": false,
|
|
1572
|
+
"showWordCount": false,
|
|
1573
|
+
"properties": {},
|
|
1574
|
+
"allowMultipleMasks": false,
|
|
1575
|
+
"mask": false,
|
|
1576
|
+
"inputType": "text",
|
|
1577
|
+
"inputFormat": "plain",
|
|
1578
|
+
"inputMask": "",
|
|
1579
|
+
"spellcheck": true,
|
|
1580
|
+
"id": "el39cu9"
|
|
1581
|
+
},
|
|
1582
|
+
{
|
|
1583
|
+
"label": "Zip Code",
|
|
1584
|
+
"tableView": false,
|
|
1585
|
+
"key": "zip",
|
|
1586
|
+
"type": "textfield",
|
|
1587
|
+
"input": true,
|
|
1588
|
+
"customConditional": "show = _.get(instance, 'parent.manualMode', false);",
|
|
1589
|
+
"placeholder": "",
|
|
1590
|
+
"prefix": "",
|
|
1591
|
+
"customClass": "",
|
|
1592
|
+
"suffix": "",
|
|
1593
|
+
"multiple": false,
|
|
1594
|
+
"defaultValue": null,
|
|
1595
|
+
"protected": false,
|
|
1596
|
+
"unique": false,
|
|
1597
|
+
"persistent": true,
|
|
1598
|
+
"hidden": false,
|
|
1599
|
+
"clearOnHide": true,
|
|
1600
|
+
"refreshOn": "",
|
|
1601
|
+
"redrawOn": "",
|
|
1602
|
+
"modalEdit": false,
|
|
1603
|
+
"labelPosition": "top",
|
|
1604
|
+
"description": "",
|
|
1605
|
+
"errorLabel": "",
|
|
1606
|
+
"tooltip": "",
|
|
1607
|
+
"hideLabel": false,
|
|
1608
|
+
"tabindex": "",
|
|
1609
|
+
"disabled": false,
|
|
1610
|
+
"autofocus": false,
|
|
1611
|
+
"dbIndex": false,
|
|
1612
|
+
"customDefaultValue": "",
|
|
1613
|
+
"calculateValue": "",
|
|
1614
|
+
"calculateServer": false,
|
|
1615
|
+
"widget": {
|
|
1616
|
+
"type": "input"
|
|
1617
|
+
},
|
|
1618
|
+
"attributes": {},
|
|
1619
|
+
"validateOn": "change",
|
|
1620
|
+
"validate": {
|
|
1621
|
+
"required": false,
|
|
1622
|
+
"custom": "",
|
|
1623
|
+
"customPrivate": false,
|
|
1624
|
+
"strictDateValidation": false,
|
|
1625
|
+
"multiple": false,
|
|
1626
|
+
"unique": false,
|
|
1627
|
+
"minLength": "",
|
|
1628
|
+
"maxLength": "",
|
|
1629
|
+
"pattern": ""
|
|
1630
|
+
},
|
|
1631
|
+
"conditional": {
|
|
1632
|
+
"show": null,
|
|
1633
|
+
"when": null,
|
|
1634
|
+
"eq": ""
|
|
1635
|
+
},
|
|
1636
|
+
"overlay": {
|
|
1637
|
+
"style": "",
|
|
1638
|
+
"left": "",
|
|
1639
|
+
"top": "",
|
|
1640
|
+
"width": "",
|
|
1641
|
+
"height": ""
|
|
1642
|
+
},
|
|
1643
|
+
"allowCalculateOverride": false,
|
|
1644
|
+
"encrypted": false,
|
|
1645
|
+
"showCharCount": false,
|
|
1646
|
+
"showWordCount": false,
|
|
1647
|
+
"properties": {},
|
|
1648
|
+
"allowMultipleMasks": false,
|
|
1649
|
+
"mask": false,
|
|
1650
|
+
"inputType": "text",
|
|
1651
|
+
"inputFormat": "plain",
|
|
1652
|
+
"inputMask": "",
|
|
1653
|
+
"spellcheck": true,
|
|
1654
|
+
"id": "epyac4"
|
|
1655
|
+
}
|
|
1656
|
+
],
|
|
1657
|
+
"providerOptions": {
|
|
1658
|
+
"params": {
|
|
1659
|
+
"key": "fze",
|
|
1660
|
+
"region": ""
|
|
1661
|
+
}
|
|
1662
|
+
},
|
|
1663
|
+
"id": "er02e2gb",
|
|
1664
|
+
"defaultValue": {}
|
|
1665
|
+
},
|
|
1666
|
+
{
|
|
1667
|
+
"label": "Date / Time",
|
|
1668
|
+
"labelPosition": "top",
|
|
1669
|
+
"displayInTimezone": "viewer",
|
|
1670
|
+
"useLocaleSettings": false,
|
|
1671
|
+
"allowInput": true,
|
|
1672
|
+
"format": "yyyy-MM-dd hh:mm a",
|
|
1673
|
+
"placeholder": "",
|
|
1674
|
+
"description": "",
|
|
1675
|
+
"tooltip": "",
|
|
1676
|
+
"customClass": "",
|
|
1677
|
+
"tabindex": "",
|
|
1678
|
+
"hidden": false,
|
|
1679
|
+
"hideLabel": false,
|
|
1680
|
+
"autofocus": false,
|
|
1681
|
+
"disabled": false,
|
|
1682
|
+
"tableView": false,
|
|
1683
|
+
"modalEdit": false,
|
|
1684
|
+
"enableDate": true,
|
|
1685
|
+
"enableMinDateInput": false,
|
|
1686
|
+
"datePicker": {
|
|
1687
|
+
"minDate": null,
|
|
1688
|
+
"maxDate": null,
|
|
1689
|
+
"disable": "",
|
|
1690
|
+
"disableFunction": "",
|
|
1691
|
+
"disableWeekends": false,
|
|
1692
|
+
"disableWeekdays": false,
|
|
1693
|
+
"showWeeks": true,
|
|
1694
|
+
"startingDay": 0,
|
|
1695
|
+
"initDate": "",
|
|
1696
|
+
"minMode": "day",
|
|
1697
|
+
"maxMode": "year",
|
|
1698
|
+
"yearRows": 4,
|
|
1699
|
+
"yearColumns": 5
|
|
1700
|
+
},
|
|
1701
|
+
"enableMaxDateInput": false,
|
|
1702
|
+
"enableTime": true,
|
|
1703
|
+
"timePicker": {
|
|
1704
|
+
"showMeridian": true,
|
|
1705
|
+
"hourStep": 1,
|
|
1706
|
+
"minuteStep": 1,
|
|
1707
|
+
"readonlyInput": false,
|
|
1708
|
+
"mousewheel": true,
|
|
1709
|
+
"arrowkeys": true
|
|
1710
|
+
},
|
|
1711
|
+
"multiple": false,
|
|
1712
|
+
"defaultValue": "",
|
|
1713
|
+
"defaultDate": "",
|
|
1714
|
+
"customOptions": {},
|
|
1715
|
+
"persistent": true,
|
|
1716
|
+
"protected": false,
|
|
1717
|
+
"dbIndex": false,
|
|
1718
|
+
"encrypted": false,
|
|
1719
|
+
"redrawOn": "",
|
|
1720
|
+
"clearOnHide": true,
|
|
1721
|
+
"customDefaultValue": "",
|
|
1722
|
+
"calculateValue": "",
|
|
1723
|
+
"calculateServer": false,
|
|
1724
|
+
"allowCalculateOverride": false,
|
|
1725
|
+
"validate": {
|
|
1726
|
+
"required": false,
|
|
1727
|
+
"customMessage": "",
|
|
1728
|
+
"custom": "",
|
|
1729
|
+
"customPrivate": false,
|
|
1730
|
+
"json": "",
|
|
1731
|
+
"strictDateValidation": false,
|
|
1732
|
+
"multiple": false,
|
|
1733
|
+
"unique": false
|
|
1734
|
+
},
|
|
1735
|
+
"unique": false,
|
|
1736
|
+
"validateOn": "change",
|
|
1737
|
+
"errorLabel": "",
|
|
1738
|
+
"key": "dateTime",
|
|
1739
|
+
"tags": [],
|
|
1740
|
+
"properties": {},
|
|
1741
|
+
"conditional": {
|
|
1742
|
+
"show": null,
|
|
1743
|
+
"when": null,
|
|
1744
|
+
"eq": "",
|
|
1745
|
+
"json": ""
|
|
1746
|
+
},
|
|
1747
|
+
"customConditional": "",
|
|
1748
|
+
"logic": [],
|
|
1749
|
+
"attributes": {},
|
|
1750
|
+
"overlay": {
|
|
1751
|
+
"style": "",
|
|
1752
|
+
"page": "",
|
|
1753
|
+
"left": "",
|
|
1754
|
+
"top": "",
|
|
1755
|
+
"width": "",
|
|
1756
|
+
"height": ""
|
|
1757
|
+
},
|
|
1758
|
+
"type": "datetime",
|
|
1759
|
+
"timezone": "",
|
|
1760
|
+
"input": true,
|
|
1761
|
+
"prefix": "",
|
|
1762
|
+
"suffix": "",
|
|
1763
|
+
"refreshOn": "",
|
|
1764
|
+
"widget": {
|
|
1765
|
+
"type": "calendar",
|
|
1766
|
+
"displayInTimezone": "viewer",
|
|
1767
|
+
"locale": "en",
|
|
1768
|
+
"useLocaleSettings": false,
|
|
1769
|
+
"allowInput": true,
|
|
1770
|
+
"mode": "single",
|
|
1771
|
+
"enableTime": true,
|
|
1772
|
+
"noCalendar": false,
|
|
1773
|
+
"format": "yyyy-MM-dd hh:mm a",
|
|
1774
|
+
"hourIncrement": 1,
|
|
1775
|
+
"minuteIncrement": 1,
|
|
1776
|
+
"minDate": null,
|
|
1777
|
+
"disabledDates": "",
|
|
1778
|
+
"disableWeekends": false,
|
|
1779
|
+
"disableWeekdays": false,
|
|
1780
|
+
"disableFunction": "",
|
|
1781
|
+
"maxDate": null
|
|
1782
|
+
},
|
|
1783
|
+
"showCharCount": false,
|
|
1784
|
+
"showWordCount": false,
|
|
1785
|
+
"allowMultipleMasks": false,
|
|
1786
|
+
"datepickerMode": "day",
|
|
1787
|
+
"id": "el9idgl"
|
|
1788
|
+
},
|
|
1789
|
+
{
|
|
1790
|
+
"label": "Day",
|
|
1791
|
+
"hideInputLabels": false,
|
|
1792
|
+
"inputsLabelPosition": "top",
|
|
1793
|
+
"description": "",
|
|
1794
|
+
"useLocaleSettings": false,
|
|
1795
|
+
"tooltip": "",
|
|
1796
|
+
"customClass": "",
|
|
1797
|
+
"tabindex": "",
|
|
1798
|
+
"hidden": false,
|
|
1799
|
+
"hideLabel": false,
|
|
1800
|
+
"autofocus": false,
|
|
1801
|
+
"disabled": false,
|
|
1802
|
+
"tableView": false,
|
|
1803
|
+
"modalEdit": false,
|
|
1804
|
+
"fields": {
|
|
1805
|
+
"day": {
|
|
1806
|
+
"type": "number",
|
|
1807
|
+
"placeholder": "",
|
|
1808
|
+
"hide": false,
|
|
1809
|
+
"required": false
|
|
1810
|
+
},
|
|
1811
|
+
"month": {
|
|
1812
|
+
"type": "select",
|
|
1813
|
+
"placeholder": "",
|
|
1814
|
+
"hide": false,
|
|
1815
|
+
"required": false
|
|
1816
|
+
},
|
|
1817
|
+
"year": {
|
|
1818
|
+
"type": "number",
|
|
1819
|
+
"placeholder": "",
|
|
1820
|
+
"hide": false,
|
|
1821
|
+
"required": false
|
|
1822
|
+
}
|
|
1823
|
+
},
|
|
1824
|
+
"dayFirst": false,
|
|
1825
|
+
"persistent": true,
|
|
1826
|
+
"protected": false,
|
|
1827
|
+
"dbIndex": false,
|
|
1828
|
+
"encrypted": false,
|
|
1829
|
+
"redrawOn": "",
|
|
1830
|
+
"clearOnHide": true,
|
|
1831
|
+
"customDefaultValue": "",
|
|
1832
|
+
"calculateValue": "",
|
|
1833
|
+
"calculateServer": false,
|
|
1834
|
+
"allowCalculateOverride": false,
|
|
1835
|
+
"validateOn": "change",
|
|
1836
|
+
"maxDate": "",
|
|
1837
|
+
"minDate": "",
|
|
1838
|
+
"unique": false,
|
|
1839
|
+
"errorLabel": "",
|
|
1840
|
+
"validate": {
|
|
1841
|
+
"customMessage": "",
|
|
1842
|
+
"custom": "",
|
|
1843
|
+
"customPrivate": false,
|
|
1844
|
+
"json": "",
|
|
1845
|
+
"required": false,
|
|
1846
|
+
"strictDateValidation": false,
|
|
1847
|
+
"multiple": false,
|
|
1848
|
+
"unique": false
|
|
1849
|
+
},
|
|
1850
|
+
"key": "day",
|
|
1851
|
+
"tags": [],
|
|
1852
|
+
"properties": {},
|
|
1853
|
+
"conditional": {
|
|
1854
|
+
"show": null,
|
|
1855
|
+
"when": null,
|
|
1856
|
+
"eq": "",
|
|
1857
|
+
"json": ""
|
|
1858
|
+
},
|
|
1859
|
+
"customConditional": "",
|
|
1860
|
+
"logic": [],
|
|
1861
|
+
"attributes": {},
|
|
1862
|
+
"overlay": {
|
|
1863
|
+
"style": "",
|
|
1864
|
+
"page": "",
|
|
1865
|
+
"left": "",
|
|
1866
|
+
"top": "",
|
|
1867
|
+
"width": "",
|
|
1868
|
+
"height": ""
|
|
1869
|
+
},
|
|
1870
|
+
"type": "day",
|
|
1871
|
+
"input": true,
|
|
1872
|
+
"placeholder": "",
|
|
1873
|
+
"prefix": "",
|
|
1874
|
+
"suffix": "",
|
|
1875
|
+
"multiple": false,
|
|
1876
|
+
"refreshOn": "",
|
|
1877
|
+
"labelPosition": "top",
|
|
1878
|
+
"widget": null,
|
|
1879
|
+
"showCharCount": false,
|
|
1880
|
+
"showWordCount": false,
|
|
1881
|
+
"allowMultipleMasks": false,
|
|
1882
|
+
"id": "ecgefls",
|
|
1883
|
+
"defaultValue": "00/00/0000"
|
|
1884
|
+
},
|
|
1885
|
+
{
|
|
1886
|
+
"label": "Currency",
|
|
1887
|
+
"labelPosition": "top",
|
|
1888
|
+
"placeholder": "",
|
|
1889
|
+
"description": "",
|
|
1890
|
+
"tooltip": "",
|
|
1891
|
+
"prefix": "",
|
|
1892
|
+
"suffix": "",
|
|
1893
|
+
"widget": {
|
|
1894
|
+
"type": "input"
|
|
1895
|
+
},
|
|
1896
|
+
"customClass": "",
|
|
1897
|
+
"tabindex": "",
|
|
1898
|
+
"autocomplete": "",
|
|
1899
|
+
"hidden": false,
|
|
1900
|
+
"hideLabel": false,
|
|
1901
|
+
"mask": false,
|
|
1902
|
+
"autofocus": false,
|
|
1903
|
+
"spellcheck": true,
|
|
1904
|
+
"disabled": false,
|
|
1905
|
+
"tableView": false,
|
|
1906
|
+
"modalEdit": false,
|
|
1907
|
+
"multiple": false,
|
|
1908
|
+
"persistent": true,
|
|
1909
|
+
"currency": "USD",
|
|
1910
|
+
"inputFormat": "plain",
|
|
1911
|
+
"protected": false,
|
|
1912
|
+
"dbIndex": false,
|
|
1913
|
+
"case": "",
|
|
1914
|
+
"encrypted": false,
|
|
1915
|
+
"redrawOn": "",
|
|
1916
|
+
"clearOnHide": true,
|
|
1917
|
+
"customDefaultValue": "",
|
|
1918
|
+
"calculateValue": "",
|
|
1919
|
+
"calculateServer": false,
|
|
1920
|
+
"allowCalculateOverride": false,
|
|
1921
|
+
"validateOn": "change",
|
|
1922
|
+
"validate": {
|
|
1923
|
+
"required": false,
|
|
1924
|
+
"customMessage": "",
|
|
1925
|
+
"custom": "",
|
|
1926
|
+
"customPrivate": false,
|
|
1927
|
+
"json": "",
|
|
1928
|
+
"strictDateValidation": false,
|
|
1929
|
+
"multiple": false,
|
|
1930
|
+
"unique": false,
|
|
1931
|
+
"min": "",
|
|
1932
|
+
"max": "",
|
|
1933
|
+
"step": "any",
|
|
1934
|
+
"integer": ""
|
|
1935
|
+
},
|
|
1936
|
+
"unique": false,
|
|
1937
|
+
"errorLabel": "",
|
|
1938
|
+
"key": "currency",
|
|
1939
|
+
"tags": [],
|
|
1940
|
+
"properties": {},
|
|
1941
|
+
"conditional": {
|
|
1942
|
+
"show": null,
|
|
1943
|
+
"when": null,
|
|
1944
|
+
"eq": "",
|
|
1945
|
+
"json": ""
|
|
1946
|
+
},
|
|
1947
|
+
"customConditional": "",
|
|
1948
|
+
"logic": [],
|
|
1949
|
+
"attributes": {},
|
|
1950
|
+
"overlay": {
|
|
1951
|
+
"style": "",
|
|
1952
|
+
"page": "",
|
|
1953
|
+
"left": "",
|
|
1954
|
+
"top": "",
|
|
1955
|
+
"width": "",
|
|
1956
|
+
"height": ""
|
|
1957
|
+
},
|
|
1958
|
+
"type": "currency",
|
|
1959
|
+
"input": true,
|
|
1960
|
+
"refreshOn": "",
|
|
1961
|
+
"showCharCount": false,
|
|
1962
|
+
"showWordCount": false,
|
|
1963
|
+
"allowMultipleMasks": false,
|
|
1964
|
+
"delimiter": true,
|
|
1965
|
+
"id": "em22wkd",
|
|
1966
|
+
"defaultValue": null
|
|
1967
|
+
},
|
|
1968
|
+
{
|
|
1969
|
+
"type": "button",
|
|
1970
|
+
"label": "Submit",
|
|
1971
|
+
"key": "submit",
|
|
1972
|
+
"size": "md",
|
|
1973
|
+
"block": false,
|
|
1974
|
+
"action": "submit",
|
|
1975
|
+
"disableOnInvalid": true,
|
|
1976
|
+
"theme": "primary",
|
|
1977
|
+
"input": true,
|
|
1978
|
+
"placeholder": "",
|
|
1979
|
+
"prefix": "",
|
|
1980
|
+
"customClass": "",
|
|
1981
|
+
"suffix": "",
|
|
1982
|
+
"multiple": false,
|
|
1983
|
+
"defaultValue": null,
|
|
1984
|
+
"protected": false,
|
|
1985
|
+
"unique": false,
|
|
1986
|
+
"persistent": false,
|
|
1987
|
+
"hidden": false,
|
|
1988
|
+
"clearOnHide": true,
|
|
1989
|
+
"refreshOn": "",
|
|
1990
|
+
"redrawOn": "",
|
|
1991
|
+
"tableView": false,
|
|
1992
|
+
"modalEdit": false,
|
|
1993
|
+
"labelPosition": "top",
|
|
1994
|
+
"description": "",
|
|
1995
|
+
"errorLabel": "",
|
|
1996
|
+
"tooltip": "",
|
|
1997
|
+
"hideLabel": false,
|
|
1998
|
+
"tabindex": "",
|
|
1999
|
+
"disabled": false,
|
|
2000
|
+
"autofocus": false,
|
|
2001
|
+
"dbIndex": false,
|
|
2002
|
+
"customDefaultValue": "",
|
|
2003
|
+
"calculateValue": "",
|
|
2004
|
+
"calculateServer": false,
|
|
2005
|
+
"widget": {
|
|
2006
|
+
"type": "input"
|
|
2007
|
+
},
|
|
2008
|
+
"attributes": {},
|
|
2009
|
+
"validateOn": "change",
|
|
2010
|
+
"validate": {
|
|
2011
|
+
"required": false,
|
|
2012
|
+
"custom": "",
|
|
2013
|
+
"customPrivate": false,
|
|
2014
|
+
"strictDateValidation": false,
|
|
2015
|
+
"multiple": false,
|
|
2016
|
+
"unique": false
|
|
2017
|
+
},
|
|
2018
|
+
"conditional": {
|
|
2019
|
+
"show": null,
|
|
2020
|
+
"when": null,
|
|
2021
|
+
"eq": ""
|
|
2022
|
+
},
|
|
2023
|
+
"overlay": {
|
|
2024
|
+
"style": "",
|
|
2025
|
+
"left": "",
|
|
2026
|
+
"top": "",
|
|
2027
|
+
"width": "",
|
|
2028
|
+
"height": ""
|
|
2029
|
+
},
|
|
2030
|
+
"allowCalculateOverride": false,
|
|
2031
|
+
"encrypted": false,
|
|
2032
|
+
"showCharCount": false,
|
|
2033
|
+
"showWordCount": false,
|
|
2034
|
+
"properties": {},
|
|
2035
|
+
"allowMultipleMasks": false,
|
|
2036
|
+
"leftIcon": "",
|
|
2037
|
+
"rightIcon": "",
|
|
2038
|
+
"dataGridLabel": true,
|
|
2039
|
+
"id": "e08gq3l"
|
|
2040
|
+
}
|
|
2041
|
+
]
|
|
2042
|
+
}
|