@tsed/react-formio 1.13.0 → 1.13.3

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.
Files changed (184) hide show
  1. package/.eslintignore +13 -0
  2. package/.eslintrc.js +7 -0
  3. package/coverage.json +6 -0
  4. package/dist/components/actions-table/actionsTable.component.d.ts +0 -1
  5. package/dist/components/actions-table/actionsTable.stories.d.ts +0 -1
  6. package/dist/components/alert/alert.component.d.ts +1 -2
  7. package/dist/components/alert/alert.stories.d.ts +0 -1
  8. package/dist/components/card/card.stories.d.ts +0 -1
  9. package/dist/components/form/form.component.d.ts +1 -2
  10. package/dist/components/form/form.component.spec.d.ts +1 -0
  11. package/dist/components/form/form.stories.d.ts +3745 -172
  12. package/dist/components/form/useForm.hook.d.ts +1 -2
  13. package/dist/components/form-access/formAccess.stories.d.ts +1 -2
  14. package/dist/components/form-action/formAction.stories.d.ts +0 -1
  15. package/dist/components/form-builder/formBuilder.stories.d.ts +518 -153
  16. package/dist/components/form-control/formControl.component.d.ts +2 -2
  17. package/dist/components/form-control/formControl.component.spec.d.ts +1 -0
  18. package/dist/components/form-control/formControl.stories.d.ts +57 -0
  19. package/dist/components/form-edit/formEdit.component.d.ts +0 -1
  20. package/dist/components/form-edit/formEdit.stories.d.ts +18 -19
  21. package/dist/components/form-settings/formSettings.component.d.ts +0 -1
  22. package/dist/components/form-settings/formSettings.stories.d.ts +1 -2
  23. package/dist/components/forms-table/components/formCell.component.d.ts +0 -1
  24. package/dist/components/forms-table/formsTable.component.d.ts +0 -1
  25. package/dist/components/forms-table/formsTable.stories.d.ts +0 -1
  26. package/dist/components/index.d.ts +2 -2
  27. package/dist/components/input-tags/inputTags.component.d.ts +0 -1
  28. package/dist/components/input-tags/inputTags.stories.d.ts +2 -3
  29. package/dist/components/input-text/inputText.component.d.ts +0 -1
  30. package/dist/components/input-text/inputText.stories.d.ts +0 -1
  31. package/dist/components/loader/loader.component.d.ts +1 -1
  32. package/dist/components/loader/loader.stories.d.ts +0 -1
  33. package/dist/components/modal/modal.component.d.ts +1 -1
  34. package/dist/components/modal/modal.stories.d.ts +0 -1
  35. package/dist/components/pagination/pagination.component.d.ts +0 -1
  36. package/dist/components/pagination/pagination.stories.d.ts +0 -1
  37. package/dist/components/react-component/reactComponent.component.d.ts +3 -3
  38. package/dist/components/select/select.stories.d.ts +2 -3
  39. package/dist/components/submissions-table/submissionsTable.component.d.ts +0 -1
  40. package/dist/components/submissions-table/submissionsTable.stories.d.ts +13 -14
  41. package/dist/components/table/components/defaultArrowSort.component.d.ts +0 -1
  42. package/dist/components/table/components/defaultCell.component.d.ts +0 -1
  43. package/dist/components/table/components/defaultCellHeader.component.d.ts +1 -2
  44. package/dist/components/table/components/defaultCellOperations.component.d.ts +0 -1
  45. package/dist/components/table/components/defaultOperationButton.component.d.ts +0 -1
  46. package/dist/components/table/filters/defaultColumnFilter.component.d.ts +0 -1
  47. package/dist/components/table/filters/selectColumnFilter.component.d.ts +0 -1
  48. package/dist/components/table/filters/sliderColumnFilter.component.d.ts +0 -1
  49. package/dist/components/table/index.d.ts +1 -1
  50. package/dist/components/table/table.stories.d.ts +4 -5
  51. package/dist/components/tabs/tabs.component.stories.d.ts +0 -1
  52. package/dist/hooks/useTooltip.d.ts +1 -1
  53. package/dist/index.d.ts +3 -3
  54. package/dist/index.js +7936 -7913
  55. package/dist/index.js.map +1 -1
  56. package/dist/index.modern.js +7375 -7347
  57. package/dist/index.modern.js.map +1 -1
  58. package/dist/stores/actions/index.d.ts +1 -1
  59. package/dist/stores/auth/auth.selectors.d.ts +1 -1
  60. package/dist/stores/auth/index.d.ts +4 -4
  61. package/dist/stores/index.d.ts +2 -2
  62. package/jest.config.js +6 -1
  63. package/package.json +8 -5
  64. package/src/components/__fixtures__/form.fixture.json +23 -0
  65. package/src/components/actions-table/actionsTable.component.spec.tsx +11 -11
  66. package/src/components/actions-table/actionsTable.component.tsx +8 -9
  67. package/src/components/actions-table/actionsTable.stories.tsx +1 -0
  68. package/src/components/alert/alert.component.spec.tsx +21 -19
  69. package/src/components/alert/alert.stories.tsx +1 -0
  70. package/src/components/card/card.component.spec.tsx +5 -4
  71. package/src/components/card/card.stories.tsx +1 -0
  72. package/src/components/form/form.component.spec.tsx +57 -0
  73. package/src/components/form/form.component.tsx +4 -3
  74. package/src/components/form/form.stories.tsx +157 -65
  75. package/src/components/form/useForm.hook.ts +35 -33
  76. package/src/components/form-access/formAccess.component.tsx +3 -2
  77. package/src/components/form-access/formAccess.schema.ts +1 -0
  78. package/src/components/form-access/formAccess.stories.tsx +1 -0
  79. package/src/components/form-access/formAccess.utils.ts +6 -5
  80. package/src/components/form-action/formAction.component.tsx +5 -4
  81. package/src/components/form-action/formAction.stories.tsx +225 -227
  82. package/src/components/form-builder/formBuilder.component.tsx +2 -1
  83. package/src/components/form-builder/formBuilder.stories.tsx +1 -0
  84. package/src/components/form-control/formControl.component.spec.tsx +76 -0
  85. package/src/components/form-control/formControl.component.tsx +15 -7
  86. package/src/components/form-control/formControl.stories.tsx +65 -0
  87. package/src/components/form-edit/formCtas.component.tsx +10 -9
  88. package/src/components/form-edit/formEdit.component.tsx +2 -1
  89. package/src/components/form-edit/formEdit.reducer.ts +1 -0
  90. package/src/components/form-edit/formEdit.stories.tsx +1 -0
  91. package/src/components/form-edit/formParameters.component.tsx +1 -0
  92. package/src/components/form-edit/useFormEdit.hook.ts +1 -0
  93. package/src/components/form-settings/formSettings.component.spec.tsx +7 -6
  94. package/src/components/form-settings/formSettings.component.tsx +12 -14
  95. package/src/components/form-settings/formSettings.stories.tsx +1 -0
  96. package/src/components/form-settings/formSettings.utils.ts +4 -3
  97. package/src/components/forms-table/components/formCell.component.tsx +1 -0
  98. package/src/components/forms-table/formsTable.component.tsx +23 -25
  99. package/src/components/forms-table/formsTable.stories.tsx +1 -0
  100. package/src/components/index.ts +2 -2
  101. package/src/components/input-tags/inputTags.component.tsx +7 -6
  102. package/src/components/input-tags/inputTags.stories.tsx +1 -0
  103. package/src/components/input-text/inputText.component.spec.tsx +13 -12
  104. package/src/components/input-text/inputText.component.tsx +4 -3
  105. package/src/components/input-text/inputText.stories.tsx +1 -0
  106. package/src/components/loader/loader.component.spec.tsx +6 -5
  107. package/src/components/loader/loader.component.tsx +1 -0
  108. package/src/components/loader/loader.stories.tsx +1 -0
  109. package/src/components/modal/modal.component.spec.tsx +36 -33
  110. package/src/components/modal/modal.component.tsx +3 -3
  111. package/src/components/modal/modal.stories.tsx +1 -0
  112. package/src/components/modal/removeModal.component.tsx +1 -0
  113. package/src/components/pagination/pagination.component.spec.tsx +24 -21
  114. package/src/components/pagination/pagination.component.tsx +1 -0
  115. package/src/components/pagination/pagination.stories.tsx +1 -0
  116. package/src/components/react-component/reactComponent.component.tsx +11 -7
  117. package/src/components/select/select.component.spec.tsx +17 -18
  118. package/src/components/select/select.component.tsx +3 -2
  119. package/src/components/select/select.stories.tsx +1 -0
  120. package/src/components/submissions-table/submissionsTable.component.tsx +3 -2
  121. package/src/components/submissions-table/submissionsTable.stories.tsx +1 -0
  122. package/src/components/table/components/defaultArrowSort.component.tsx +1 -0
  123. package/src/components/table/components/defaultCellHeader.component.tsx +1 -1
  124. package/src/components/table/components/defaultCellOperations.component.tsx +1 -0
  125. package/src/components/table/components/defaultOperationButton.component.tsx +1 -0
  126. package/src/components/table/filters/defaultColumnFilter.component.spec.tsx +5 -3
  127. package/src/components/table/filters/defaultColumnFilter.component.tsx +1 -0
  128. package/src/components/table/filters/selectColumnFilter.component.spec.tsx +9 -7
  129. package/src/components/table/filters/selectColumnFilter.component.tsx +1 -0
  130. package/src/components/table/index.ts +1 -1
  131. package/src/components/table/table.component.tsx +5 -4
  132. package/src/components/table/table.stories.tsx +2 -1
  133. package/src/components/table/utils/mapFormToColumns.tsx +3 -2
  134. package/src/components/table/utils/useOperations.hook.tsx +1 -0
  135. package/src/components/tabs/tabs.component.spec.tsx +6 -5
  136. package/src/components/tabs/tabs.component.stories.tsx +1 -0
  137. package/src/components/tabs/tabs.component.tsx +11 -5
  138. package/src/hooks/useTooltip.ts +1 -1
  139. package/src/index.ts +3 -4
  140. package/src/interfaces/Operation.ts +1 -0
  141. package/src/stores/action/action.actions.spec.ts +1 -0
  142. package/src/stores/action/action.actions.ts +1 -0
  143. package/src/stores/action/action.reducers.ts +1 -1
  144. package/src/stores/action-info/action-info.actions.spec.ts +1 -0
  145. package/src/stores/action-info/action-info.actions.ts +2 -1
  146. package/src/stores/action-info/action-info.reducers.ts +2 -1
  147. package/src/stores/action-info/action-info.selectors.ts +2 -1
  148. package/src/stores/actions/actions.actions.spec.ts +1 -0
  149. package/src/stores/actions/actions.actions.ts +1 -0
  150. package/src/stores/actions/actions.reducers.ts +1 -0
  151. package/src/stores/actions/index.ts +1 -1
  152. package/src/stores/auth/auth.actions.ts +1 -0
  153. package/src/stores/auth/auth.reducers.ts +1 -0
  154. package/src/stores/auth/auth.selectors.ts +1 -0
  155. package/src/stores/auth/auth.utils.tsx +3 -2
  156. package/src/stores/auth/getAccess.action.spec.ts +1 -0
  157. package/src/stores/auth/getAccess.action.ts +3 -2
  158. package/src/stores/auth/getProjectAccess.action.ts +1 -0
  159. package/src/stores/auth/index.ts +4 -4
  160. package/src/stores/auth/initAuth.action.spec.ts +1 -0
  161. package/src/stores/auth/initAuth.action.ts +1 -0
  162. package/src/stores/auth/logout.action.spec.ts +2 -0
  163. package/src/stores/auth/logout.action.ts +1 -0
  164. package/src/stores/auth/setUser.action.spec.ts +1 -0
  165. package/src/stores/auth/setUser.action.ts +1 -0
  166. package/src/stores/form/form.actions.spec.ts +1 -0
  167. package/src/stores/form/form.actions.ts +1 -0
  168. package/src/stores/form/form.reducers.ts +1 -0
  169. package/src/stores/form/form.selectors.ts +1 -1
  170. package/src/stores/forms/forms.actions.spec.ts +1 -0
  171. package/src/stores/forms/forms.actions.ts +1 -0
  172. package/src/stores/forms/forms.reducers.ts +1 -0
  173. package/src/stores/index.ts +3 -2
  174. package/src/stores/root/root.selectors.ts +3 -3
  175. package/src/stores/submission/submission.actions.spec.ts +1 -0
  176. package/src/stores/submission/submission.actions.ts +1 -0
  177. package/src/stores/submission/submission.reducers.ts +1 -0
  178. package/src/stores/submissions/submissions.actions.spec.ts +1 -0
  179. package/src/stores/submissions/submissions.actions.ts +1 -0
  180. package/src/stores/submissions/submissions.reducers.ts +1 -0
  181. package/tsconfig.json +10 -27
  182. package/tsconfig.node.json +8 -0
  183. package/craco.config.js +0 -11
  184. package/tsconfig.test.json +0 -6
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { FormBuilder } from "../../index";
3
2
  declare const _default: {
4
3
  title: string;
@@ -115,16 +114,16 @@ export declare const Sandbox: {
115
114
  unique: boolean;
116
115
  errorLabel: string;
117
116
  key: string;
118
- tags: any[];
117
+ tags: never[];
119
118
  properties: {};
120
119
  conditional: {
121
- show: any;
122
- when: any;
120
+ show: null;
121
+ when: null;
123
122
  eq: string;
124
123
  json: string;
125
124
  };
126
125
  customConditional: string;
127
- logic: any[];
126
+ logic: never[];
128
127
  attributes: {};
129
128
  overlay: {
130
129
  style: string;
@@ -297,16 +296,16 @@ export declare const Sandbox: {
297
296
  unique: boolean;
298
297
  errorLabel: string;
299
298
  key: string;
300
- tags: any[];
299
+ tags: never[];
301
300
  properties: {};
302
301
  conditional: {
303
- show: any;
304
- when: any;
302
+ show: null;
303
+ when: null;
305
304
  eq: string;
306
305
  json: string;
307
306
  };
308
307
  customConditional: string;
309
- logic: any[];
308
+ logic: never[];
310
309
  fixedSize: boolean;
311
310
  overlay: {
312
311
  style: string;
@@ -477,16 +476,16 @@ export declare const Sandbox: {
477
476
  };
478
477
  errorLabel: string;
479
478
  key: string;
480
- tags: any[];
479
+ tags: never[];
481
480
  properties: {};
482
481
  conditional: {
483
- show: any;
484
- when: any;
482
+ show: null;
483
+ when: null;
485
484
  eq: string;
486
485
  json: string;
487
486
  };
488
487
  customConditional: string;
489
- logic: any[];
488
+ logic: never[];
490
489
  attributes: {};
491
490
  overlay: {
492
491
  style: string;
@@ -504,7 +503,7 @@ export declare const Sandbox: {
504
503
  showWordCount: boolean;
505
504
  allowMultipleMasks: boolean;
506
505
  id: string;
507
- defaultValue: any;
506
+ defaultValue: null;
508
507
  inputMask?: undefined;
509
508
  case?: undefined;
510
509
  inputType?: undefined;
@@ -586,6 +585,189 @@ export declare const Sandbox: {
586
585
  theme?: undefined;
587
586
  leftIcon?: undefined;
588
587
  rightIcon?: undefined;
588
+ } | {
589
+ label: string;
590
+ labelPosition: string;
591
+ placeholder: string;
592
+ description: string;
593
+ tooltip: string;
594
+ prefix: string;
595
+ suffix: string;
596
+ widget: {
597
+ type: string;
598
+ displayInTimezone?: undefined;
599
+ locale?: undefined;
600
+ useLocaleSettings?: undefined;
601
+ allowInput?: undefined;
602
+ mode?: undefined;
603
+ enableTime?: undefined;
604
+ noCalendar?: undefined;
605
+ format?: undefined;
606
+ hourIncrement?: undefined;
607
+ minuteIncrement?: undefined;
608
+ minDate?: undefined;
609
+ disabledDates?: undefined;
610
+ disableWeekends?: undefined;
611
+ disableWeekdays?: undefined;
612
+ disableFunction?: undefined;
613
+ maxDate?: undefined;
614
+ };
615
+ customClass: string;
616
+ tabindex: string;
617
+ autocomplete: string;
618
+ hidden: boolean;
619
+ hideLabel: boolean;
620
+ showWordCount: boolean;
621
+ showCharCount: boolean;
622
+ mask: boolean;
623
+ autofocus: boolean;
624
+ spellcheck: boolean;
625
+ disabled: boolean;
626
+ tableView: boolean;
627
+ modalEdit: boolean;
628
+ case: string;
629
+ redrawOn: string;
630
+ clearOnHide: boolean;
631
+ calculateServer: boolean;
632
+ allowCalculateOverride: boolean;
633
+ validateOn: string;
634
+ validate: {
635
+ required: boolean;
636
+ pattern: string;
637
+ customMessage: string;
638
+ custom: string;
639
+ customPrivate: boolean;
640
+ json: string;
641
+ minLength: string;
642
+ maxLength: string;
643
+ strictDateValidation: boolean;
644
+ multiple: boolean;
645
+ unique: boolean;
646
+ minWords?: undefined;
647
+ maxWords?: undefined;
648
+ min?: undefined;
649
+ max?: undefined;
650
+ step?: undefined;
651
+ integer?: undefined;
652
+ };
653
+ errorLabel: string;
654
+ key: string;
655
+ tags: never[];
656
+ properties: {};
657
+ conditional: {
658
+ show: null;
659
+ when: null;
660
+ eq: string;
661
+ json: string;
662
+ };
663
+ customConditional: string;
664
+ logic: never[];
665
+ attributes: {};
666
+ overlay: {
667
+ style: string;
668
+ page: string;
669
+ left: string;
670
+ top: string;
671
+ width: string;
672
+ height: string;
673
+ };
674
+ type: string;
675
+ input: boolean;
676
+ multiple: boolean;
677
+ defaultValue: null;
678
+ protected: boolean;
679
+ unique: boolean;
680
+ persistent: boolean;
681
+ refreshOn: string;
682
+ dbIndex: boolean;
683
+ customDefaultValue: string;
684
+ calculateValue: string;
685
+ encrypted: boolean;
686
+ allowMultipleMasks: boolean;
687
+ inputType: string;
688
+ inputFormat: string;
689
+ inputMask: string;
690
+ id: string;
691
+ editor?: undefined;
692
+ autoExpand?: undefined;
693
+ fixedSize?: undefined;
694
+ rows?: undefined;
695
+ wysiwyg?: undefined;
696
+ delimiter?: undefined;
697
+ requireDecimal?: undefined;
698
+ shortcut?: undefined;
699
+ name?: undefined;
700
+ value?: undefined;
701
+ dataGridLabel?: undefined;
702
+ optionsLabelPosition?: undefined;
703
+ inline?: undefined;
704
+ values?: undefined;
705
+ minSelectedCountMessage?: undefined;
706
+ maxSelectedCountMessage?: undefined;
707
+ fieldSet?: undefined;
708
+ dataType?: undefined;
709
+ uniqueOptions?: undefined;
710
+ dataSrc?: undefined;
711
+ data?: undefined;
712
+ valueProperty?: undefined;
713
+ idPath?: undefined;
714
+ template?: undefined;
715
+ refreshOnBlur?: undefined;
716
+ clearOnRefresh?: undefined;
717
+ searchEnabled?: undefined;
718
+ selectThreshold?: undefined;
719
+ readOnlyValue?: undefined;
720
+ customOptions?: undefined;
721
+ useExactSearch?: undefined;
722
+ indexeddb?: undefined;
723
+ selectFields?: undefined;
724
+ searchField?: undefined;
725
+ minSearch?: undefined;
726
+ filter?: undefined;
727
+ limit?: undefined;
728
+ lazyLoad?: undefined;
729
+ authenticate?: undefined;
730
+ searchThreshold?: undefined;
731
+ fuseOptions?: undefined;
732
+ kickbox?: undefined;
733
+ delimeter?: undefined;
734
+ maxTags?: undefined;
735
+ storeas?: undefined;
736
+ enableManualMode?: undefined;
737
+ disableClearIcon?: undefined;
738
+ provider?: undefined;
739
+ manualModeViewString?: undefined;
740
+ switchToManualModeLabel?: undefined;
741
+ tree?: undefined;
742
+ components?: undefined;
743
+ providerOptions?: undefined;
744
+ displayInTimezone?: undefined;
745
+ useLocaleSettings?: undefined;
746
+ allowInput?: undefined;
747
+ format?: undefined;
748
+ enableDate?: undefined;
749
+ enableMinDateInput?: undefined;
750
+ datePicker?: undefined;
751
+ enableMaxDateInput?: undefined;
752
+ enableTime?: undefined;
753
+ timePicker?: undefined;
754
+ defaultDate?: undefined;
755
+ timezone?: undefined;
756
+ datepickerMode?: undefined;
757
+ hideInputLabels?: undefined;
758
+ inputsLabelPosition?: undefined;
759
+ fields?: undefined;
760
+ dayFirst?: undefined;
761
+ maxDate?: undefined;
762
+ minDate?: undefined;
763
+ currency?: undefined;
764
+ size?: undefined;
765
+ block?: undefined;
766
+ action?: undefined;
767
+ disableOnInvalid?: undefined;
768
+ theme?: undefined;
769
+ leftIcon?: undefined;
770
+ rightIcon?: undefined;
589
771
  } | {
590
772
  label: string;
591
773
  description: string;
@@ -632,16 +814,16 @@ export declare const Sandbox: {
632
814
  };
633
815
  errorLabel: string;
634
816
  key: string;
635
- tags: any[];
817
+ tags: never[];
636
818
  properties: {};
637
819
  conditional: {
638
- show: any;
639
- when: any;
820
+ show: null;
821
+ when: null;
640
822
  eq: string;
641
823
  json: string;
642
824
  };
643
825
  customConditional: string;
644
- logic: any[];
826
+ logic: never[];
645
827
  attributes: {};
646
828
  overlay: {
647
829
  style: string;
@@ -662,7 +844,7 @@ export declare const Sandbox: {
662
844
  unique: boolean;
663
845
  refreshOn: string;
664
846
  labelPosition: string;
665
- widget: any;
847
+ widget: null;
666
848
  validateOn: string;
667
849
  showCharCount: boolean;
668
850
  showWordCount: boolean;
@@ -804,16 +986,16 @@ export declare const Sandbox: {
804
986
  minSelectedCountMessage: string;
805
987
  maxSelectedCountMessage: string;
806
988
  key: string;
807
- tags: any[];
989
+ tags: never[];
808
990
  properties: {};
809
991
  conditional: {
810
- show: any;
811
- when: any;
992
+ show: null;
993
+ when: null;
812
994
  eq: string;
813
995
  json: string;
814
996
  };
815
997
  customConditional: string;
816
- logic: any[];
998
+ logic: never[];
817
999
  attributes: {};
818
1000
  overlay: {
819
1001
  style: string;
@@ -831,7 +1013,7 @@ export declare const Sandbox: {
831
1013
  multiple: boolean;
832
1014
  unique: boolean;
833
1015
  refreshOn: string;
834
- widget: any;
1016
+ widget: null;
835
1017
  validateOn: string;
836
1018
  showCharCount: boolean;
837
1019
  showWordCount: boolean;
@@ -974,16 +1156,16 @@ export declare const Sandbox: {
974
1156
  };
975
1157
  errorLabel: string;
976
1158
  key: string;
977
- tags: any[];
1159
+ tags: never[];
978
1160
  properties: {};
979
1161
  conditional: {
980
- show: any;
981
- when: any;
1162
+ show: null;
1163
+ when: null;
982
1164
  eq: string;
983
1165
  json: string;
984
1166
  };
985
1167
  customConditional: string;
986
- logic: any[];
1168
+ logic: never[];
987
1169
  attributes: {};
988
1170
  overlay: {
989
1171
  style: string;
@@ -1001,7 +1183,7 @@ export declare const Sandbox: {
1001
1183
  multiple: boolean;
1002
1184
  unique: boolean;
1003
1185
  refreshOn: string;
1004
- widget: any;
1186
+ widget: null;
1005
1187
  validateOn: string;
1006
1188
  showCharCount: boolean;
1007
1189
  showWordCount: boolean;
@@ -1163,16 +1345,16 @@ export declare const Sandbox: {
1163
1345
  unique: boolean;
1164
1346
  errorLabel: string;
1165
1347
  key: string;
1166
- tags: any[];
1348
+ tags: never[];
1167
1349
  properties: {};
1168
1350
  conditional: {
1169
- show: any;
1170
- when: any;
1351
+ show: null;
1352
+ when: null;
1171
1353
  eq: string;
1172
1354
  json: string;
1173
1355
  };
1174
1356
  customConditional: string;
1175
- logic: any[];
1357
+ logic: never[];
1176
1358
  attributes: {};
1177
1359
  overlay: {
1178
1360
  style: string;
@@ -1347,16 +1529,16 @@ export declare const Sandbox: {
1347
1529
  };
1348
1530
  errorLabel: string;
1349
1531
  key: string;
1350
- tags: any[];
1532
+ tags: never[];
1351
1533
  properties: {};
1352
1534
  conditional: {
1353
- show: any;
1354
- when: any;
1535
+ show: null;
1536
+ when: null;
1355
1537
  eq: string;
1356
1538
  json: string;
1357
1539
  };
1358
1540
  customConditional: string;
1359
- logic: any[];
1541
+ logic: never[];
1360
1542
  attributes: {};
1361
1543
  overlay: {
1362
1544
  style: string;
@@ -1375,7 +1557,7 @@ export declare const Sandbox: {
1375
1557
  inputType: string;
1376
1558
  inputMask: string;
1377
1559
  id: string;
1378
- defaultValue: any;
1560
+ defaultValue: null;
1379
1561
  editor?: undefined;
1380
1562
  autoExpand?: undefined;
1381
1563
  fixedSize?: undefined;
@@ -1528,16 +1710,16 @@ export declare const Sandbox: {
1528
1710
  unique: boolean;
1529
1711
  errorLabel: string;
1530
1712
  key: string;
1531
- tags: any[];
1713
+ tags: never[];
1532
1714
  properties: {};
1533
1715
  conditional: {
1534
- show: any;
1535
- when: any;
1716
+ show: null;
1717
+ when: null;
1536
1718
  eq: string;
1537
1719
  json: string;
1538
1720
  };
1539
1721
  customConditional: string;
1540
- logic: any[];
1722
+ logic: never[];
1541
1723
  attributes: {};
1542
1724
  overlay: {
1543
1725
  style: string;
@@ -1556,7 +1738,7 @@ export declare const Sandbox: {
1556
1738
  inputType: string;
1557
1739
  inputMask: string;
1558
1740
  id: string;
1559
- defaultValue: any;
1741
+ defaultValue: null;
1560
1742
  case?: undefined;
1561
1743
  editor?: undefined;
1562
1744
  autoExpand?: undefined;
@@ -1688,16 +1870,16 @@ export declare const Sandbox: {
1688
1870
  validateOn: string;
1689
1871
  errorLabel: string;
1690
1872
  key: string;
1691
- tags: any[];
1873
+ tags: never[];
1692
1874
  properties: {};
1693
1875
  conditional: {
1694
- show: any;
1695
- when: any;
1876
+ show: null;
1877
+ when: null;
1696
1878
  eq: string;
1697
1879
  json: string;
1698
1880
  };
1699
1881
  customConditional: string;
1700
- logic: any[];
1882
+ logic: never[];
1701
1883
  attributes: {};
1702
1884
  overlay: {
1703
1885
  style: string;
@@ -1736,7 +1918,7 @@ export declare const Sandbox: {
1736
1918
  showWordCount: boolean;
1737
1919
  allowMultipleMasks: boolean;
1738
1920
  id: string;
1739
- defaultValue: any;
1921
+ defaultValue: null;
1740
1922
  inputMask?: undefined;
1741
1923
  autocomplete?: undefined;
1742
1924
  mask?: undefined;
@@ -1873,16 +2055,16 @@ export declare const Sandbox: {
1873
2055
  validateOn: string;
1874
2056
  errorLabel: string;
1875
2057
  key: string;
1876
- tags: any[];
2058
+ tags: never[];
1877
2059
  properties: {};
1878
2060
  conditional: {
1879
- show: any;
1880
- when: any;
2061
+ show: null;
2062
+ when: null;
1881
2063
  eq: string;
1882
2064
  json: string;
1883
2065
  };
1884
2066
  customConditional: string;
1885
- logic: any[];
2067
+ logic: never[];
1886
2068
  attributes: {};
1887
2069
  overlay: {
1888
2070
  style: string;
@@ -1898,7 +2080,7 @@ export declare const Sandbox: {
1898
2080
  prefix: string;
1899
2081
  suffix: string;
1900
2082
  refreshOn: string;
1901
- widget: any;
2083
+ widget: null;
1902
2084
  showCharCount: boolean;
1903
2085
  showWordCount: boolean;
1904
2086
  allowMultipleMasks: boolean;
@@ -1915,7 +2097,7 @@ export declare const Sandbox: {
1915
2097
  customClass: string;
1916
2098
  suffix: string;
1917
2099
  multiple: boolean;
1918
- defaultValue: any;
2100
+ defaultValue: null;
1919
2101
  protected: boolean;
1920
2102
  unique: boolean;
1921
2103
  persistent: boolean;
@@ -1953,8 +2135,8 @@ export declare const Sandbox: {
1953
2135
  pattern: string;
1954
2136
  };
1955
2137
  conditional: {
1956
- show: any;
1957
- when: any;
2138
+ show: null;
2139
+ when: null;
1958
2140
  eq: string;
1959
2141
  };
1960
2142
  overlay: {
@@ -2087,8 +2269,8 @@ export declare const Sandbox: {
2087
2269
  enableDate: boolean;
2088
2270
  enableMinDateInput: boolean;
2089
2271
  datePicker: {
2090
- minDate: any;
2091
- maxDate: any;
2272
+ minDate: null;
2273
+ maxDate: null;
2092
2274
  disable: string;
2093
2275
  disableFunction: string;
2094
2276
  disableWeekends: boolean;
@@ -2148,16 +2330,16 @@ export declare const Sandbox: {
2148
2330
  validateOn: string;
2149
2331
  errorLabel: string;
2150
2332
  key: string;
2151
- tags: any[];
2333
+ tags: never[];
2152
2334
  properties: {};
2153
2335
  conditional: {
2154
- show: any;
2155
- when: any;
2336
+ show: null;
2337
+ when: null;
2156
2338
  eq: string;
2157
2339
  json: string;
2158
2340
  };
2159
2341
  customConditional: string;
2160
- logic: any[];
2342
+ logic: never[];
2161
2343
  attributes: {};
2162
2344
  overlay: {
2163
2345
  style: string;
@@ -2185,12 +2367,12 @@ export declare const Sandbox: {
2185
2367
  format: string;
2186
2368
  hourIncrement: number;
2187
2369
  minuteIncrement: number;
2188
- minDate: any;
2370
+ minDate: null;
2189
2371
  disabledDates: string;
2190
2372
  disableWeekends: boolean;
2191
2373
  disableWeekdays: boolean;
2192
2374
  disableFunction: string;
2193
- maxDate: any;
2375
+ maxDate: null;
2194
2376
  };
2195
2377
  showCharCount: boolean;
2196
2378
  showWordCount: boolean;
@@ -2341,16 +2523,16 @@ export declare const Sandbox: {
2341
2523
  integer?: undefined;
2342
2524
  };
2343
2525
  key: string;
2344
- tags: any[];
2526
+ tags: never[];
2345
2527
  properties: {};
2346
2528
  conditional: {
2347
- show: any;
2348
- when: any;
2529
+ show: null;
2530
+ when: null;
2349
2531
  eq: string;
2350
2532
  json: string;
2351
2533
  };
2352
2534
  customConditional: string;
2353
- logic: any[];
2535
+ logic: never[];
2354
2536
  attributes: {};
2355
2537
  overlay: {
2356
2538
  style: string;
@@ -2368,7 +2550,7 @@ export declare const Sandbox: {
2368
2550
  multiple: boolean;
2369
2551
  refreshOn: string;
2370
2552
  labelPosition: string;
2371
- widget: any;
2553
+ widget: null;
2372
2554
  showCharCount: boolean;
2373
2555
  showWordCount: boolean;
2374
2556
  allowMultipleMasks: boolean;
@@ -2529,16 +2711,16 @@ export declare const Sandbox: {
2529
2711
  unique: boolean;
2530
2712
  errorLabel: string;
2531
2713
  key: string;
2532
- tags: any[];
2714
+ tags: never[];
2533
2715
  properties: {};
2534
2716
  conditional: {
2535
- show: any;
2536
- when: any;
2717
+ show: null;
2718
+ when: null;
2537
2719
  eq: string;
2538
2720
  json: string;
2539
2721
  };
2540
2722
  customConditional: string;
2541
- logic: any[];
2723
+ logic: never[];
2542
2724
  attributes: {};
2543
2725
  overlay: {
2544
2726
  style: string;
@@ -2556,7 +2738,7 @@ export declare const Sandbox: {
2556
2738
  allowMultipleMasks: boolean;
2557
2739
  delimiter: boolean;
2558
2740
  id: string;
2559
- defaultValue: any;
2741
+ defaultValue: null;
2560
2742
  inputMask?: undefined;
2561
2743
  inputType?: undefined;
2562
2744
  editor?: undefined;
@@ -2652,7 +2834,7 @@ export declare const Sandbox: {
2652
2834
  customClass: string;
2653
2835
  suffix: string;
2654
2836
  multiple: boolean;
2655
- defaultValue: any;
2837
+ defaultValue: null;
2656
2838
  protected: boolean;
2657
2839
  unique: boolean;
2658
2840
  persistent: boolean;
@@ -2715,8 +2897,8 @@ export declare const Sandbox: {
2715
2897
  integer?: undefined;
2716
2898
  };
2717
2899
  conditional: {
2718
- show: any;
2719
- when: any;
2900
+ show: null;
2901
+ when: null;
2720
2902
  eq: string;
2721
2903
  json?: undefined;
2722
2904
  };
@@ -2909,16 +3091,16 @@ export declare const Wizard: {
2909
3091
  unique: boolean;
2910
3092
  errorLabel: string;
2911
3093
  key: string;
2912
- tags: any[];
3094
+ tags: never[];
2913
3095
  properties: {};
2914
3096
  conditional: {
2915
- show: any;
2916
- when: any;
3097
+ show: null;
3098
+ when: null;
2917
3099
  eq: string;
2918
3100
  json: string;
2919
3101
  };
2920
3102
  customConditional: string;
2921
- logic: any[];
3103
+ logic: never[];
2922
3104
  attributes: {};
2923
3105
  overlay: {
2924
3106
  style: string;
@@ -3091,16 +3273,16 @@ export declare const Wizard: {
3091
3273
  unique: boolean;
3092
3274
  errorLabel: string;
3093
3275
  key: string;
3094
- tags: any[];
3276
+ tags: never[];
3095
3277
  properties: {};
3096
3278
  conditional: {
3097
- show: any;
3098
- when: any;
3279
+ show: null;
3280
+ when: null;
3099
3281
  eq: string;
3100
3282
  json: string;
3101
3283
  };
3102
3284
  customConditional: string;
3103
- logic: any[];
3285
+ logic: never[];
3104
3286
  fixedSize: boolean;
3105
3287
  overlay: {
3106
3288
  style: string;
@@ -3271,16 +3453,16 @@ export declare const Wizard: {
3271
3453
  };
3272
3454
  errorLabel: string;
3273
3455
  key: string;
3274
- tags: any[];
3456
+ tags: never[];
3275
3457
  properties: {};
3276
3458
  conditional: {
3277
- show: any;
3278
- when: any;
3459
+ show: null;
3460
+ when: null;
3279
3461
  eq: string;
3280
3462
  json: string;
3281
3463
  };
3282
3464
  customConditional: string;
3283
- logic: any[];
3465
+ logic: never[];
3284
3466
  attributes: {};
3285
3467
  overlay: {
3286
3468
  style: string;
@@ -3298,7 +3480,7 @@ export declare const Wizard: {
3298
3480
  showWordCount: boolean;
3299
3481
  allowMultipleMasks: boolean;
3300
3482
  id: string;
3301
- defaultValue: any;
3483
+ defaultValue: null;
3302
3484
  inputMask?: undefined;
3303
3485
  case?: undefined;
3304
3486
  inputType?: undefined;
@@ -3380,6 +3562,189 @@ export declare const Wizard: {
3380
3562
  theme?: undefined;
3381
3563
  leftIcon?: undefined;
3382
3564
  rightIcon?: undefined;
3565
+ } | {
3566
+ label: string;
3567
+ labelPosition: string;
3568
+ placeholder: string;
3569
+ description: string;
3570
+ tooltip: string;
3571
+ prefix: string;
3572
+ suffix: string;
3573
+ widget: {
3574
+ type: string;
3575
+ displayInTimezone?: undefined;
3576
+ locale?: undefined;
3577
+ useLocaleSettings?: undefined;
3578
+ allowInput?: undefined;
3579
+ mode?: undefined;
3580
+ enableTime?: undefined;
3581
+ noCalendar?: undefined;
3582
+ format?: undefined;
3583
+ hourIncrement?: undefined;
3584
+ minuteIncrement?: undefined;
3585
+ minDate?: undefined;
3586
+ disabledDates?: undefined;
3587
+ disableWeekends?: undefined;
3588
+ disableWeekdays?: undefined;
3589
+ disableFunction?: undefined;
3590
+ maxDate?: undefined;
3591
+ };
3592
+ customClass: string;
3593
+ tabindex: string;
3594
+ autocomplete: string;
3595
+ hidden: boolean;
3596
+ hideLabel: boolean;
3597
+ showWordCount: boolean;
3598
+ showCharCount: boolean;
3599
+ mask: boolean;
3600
+ autofocus: boolean;
3601
+ spellcheck: boolean;
3602
+ disabled: boolean;
3603
+ tableView: boolean;
3604
+ modalEdit: boolean;
3605
+ case: string;
3606
+ redrawOn: string;
3607
+ clearOnHide: boolean;
3608
+ calculateServer: boolean;
3609
+ allowCalculateOverride: boolean;
3610
+ validateOn: string;
3611
+ validate: {
3612
+ required: boolean;
3613
+ pattern: string;
3614
+ customMessage: string;
3615
+ custom: string;
3616
+ customPrivate: boolean;
3617
+ json: string;
3618
+ minLength: string;
3619
+ maxLength: string;
3620
+ strictDateValidation: boolean;
3621
+ multiple: boolean;
3622
+ unique: boolean;
3623
+ minWords?: undefined;
3624
+ maxWords?: undefined;
3625
+ min?: undefined;
3626
+ max?: undefined;
3627
+ step?: undefined;
3628
+ integer?: undefined;
3629
+ };
3630
+ errorLabel: string;
3631
+ key: string;
3632
+ tags: never[];
3633
+ properties: {};
3634
+ conditional: {
3635
+ show: null;
3636
+ when: null;
3637
+ eq: string;
3638
+ json: string;
3639
+ };
3640
+ customConditional: string;
3641
+ logic: never[];
3642
+ attributes: {};
3643
+ overlay: {
3644
+ style: string;
3645
+ page: string;
3646
+ left: string;
3647
+ top: string;
3648
+ width: string;
3649
+ height: string;
3650
+ };
3651
+ type: string;
3652
+ input: boolean;
3653
+ multiple: boolean;
3654
+ defaultValue: null;
3655
+ protected: boolean;
3656
+ unique: boolean;
3657
+ persistent: boolean;
3658
+ refreshOn: string;
3659
+ dbIndex: boolean;
3660
+ customDefaultValue: string;
3661
+ calculateValue: string;
3662
+ encrypted: boolean;
3663
+ allowMultipleMasks: boolean;
3664
+ inputType: string;
3665
+ inputFormat: string;
3666
+ inputMask: string;
3667
+ id: string;
3668
+ editor?: undefined;
3669
+ autoExpand?: undefined;
3670
+ fixedSize?: undefined;
3671
+ rows?: undefined;
3672
+ wysiwyg?: undefined;
3673
+ delimiter?: undefined;
3674
+ requireDecimal?: undefined;
3675
+ shortcut?: undefined;
3676
+ name?: undefined;
3677
+ value?: undefined;
3678
+ dataGridLabel?: undefined;
3679
+ optionsLabelPosition?: undefined;
3680
+ inline?: undefined;
3681
+ values?: undefined;
3682
+ minSelectedCountMessage?: undefined;
3683
+ maxSelectedCountMessage?: undefined;
3684
+ fieldSet?: undefined;
3685
+ dataType?: undefined;
3686
+ uniqueOptions?: undefined;
3687
+ dataSrc?: undefined;
3688
+ data?: undefined;
3689
+ valueProperty?: undefined;
3690
+ idPath?: undefined;
3691
+ template?: undefined;
3692
+ refreshOnBlur?: undefined;
3693
+ clearOnRefresh?: undefined;
3694
+ searchEnabled?: undefined;
3695
+ selectThreshold?: undefined;
3696
+ readOnlyValue?: undefined;
3697
+ customOptions?: undefined;
3698
+ useExactSearch?: undefined;
3699
+ indexeddb?: undefined;
3700
+ selectFields?: undefined;
3701
+ searchField?: undefined;
3702
+ minSearch?: undefined;
3703
+ filter?: undefined;
3704
+ limit?: undefined;
3705
+ lazyLoad?: undefined;
3706
+ authenticate?: undefined;
3707
+ searchThreshold?: undefined;
3708
+ fuseOptions?: undefined;
3709
+ kickbox?: undefined;
3710
+ delimeter?: undefined;
3711
+ maxTags?: undefined;
3712
+ storeas?: undefined;
3713
+ enableManualMode?: undefined;
3714
+ disableClearIcon?: undefined;
3715
+ provider?: undefined;
3716
+ manualModeViewString?: undefined;
3717
+ switchToManualModeLabel?: undefined;
3718
+ tree?: undefined;
3719
+ components?: undefined;
3720
+ providerOptions?: undefined;
3721
+ displayInTimezone?: undefined;
3722
+ useLocaleSettings?: undefined;
3723
+ allowInput?: undefined;
3724
+ format?: undefined;
3725
+ enableDate?: undefined;
3726
+ enableMinDateInput?: undefined;
3727
+ datePicker?: undefined;
3728
+ enableMaxDateInput?: undefined;
3729
+ enableTime?: undefined;
3730
+ timePicker?: undefined;
3731
+ defaultDate?: undefined;
3732
+ timezone?: undefined;
3733
+ datepickerMode?: undefined;
3734
+ hideInputLabels?: undefined;
3735
+ inputsLabelPosition?: undefined;
3736
+ fields?: undefined;
3737
+ dayFirst?: undefined;
3738
+ maxDate?: undefined;
3739
+ minDate?: undefined;
3740
+ currency?: undefined;
3741
+ size?: undefined;
3742
+ block?: undefined;
3743
+ action?: undefined;
3744
+ disableOnInvalid?: undefined;
3745
+ theme?: undefined;
3746
+ leftIcon?: undefined;
3747
+ rightIcon?: undefined;
3383
3748
  } | {
3384
3749
  label: string;
3385
3750
  description: string;
@@ -3426,16 +3791,16 @@ export declare const Wizard: {
3426
3791
  };
3427
3792
  errorLabel: string;
3428
3793
  key: string;
3429
- tags: any[];
3794
+ tags: never[];
3430
3795
  properties: {};
3431
3796
  conditional: {
3432
- show: any;
3433
- when: any;
3797
+ show: null;
3798
+ when: null;
3434
3799
  eq: string;
3435
3800
  json: string;
3436
3801
  };
3437
3802
  customConditional: string;
3438
- logic: any[];
3803
+ logic: never[];
3439
3804
  attributes: {};
3440
3805
  overlay: {
3441
3806
  style: string;
@@ -3456,7 +3821,7 @@ export declare const Wizard: {
3456
3821
  unique: boolean;
3457
3822
  refreshOn: string;
3458
3823
  labelPosition: string;
3459
- widget: any;
3824
+ widget: null;
3460
3825
  validateOn: string;
3461
3826
  showCharCount: boolean;
3462
3827
  showWordCount: boolean;
@@ -3598,16 +3963,16 @@ export declare const Wizard: {
3598
3963
  minSelectedCountMessage: string;
3599
3964
  maxSelectedCountMessage: string;
3600
3965
  key: string;
3601
- tags: any[];
3966
+ tags: never[];
3602
3967
  properties: {};
3603
3968
  conditional: {
3604
- show: any;
3605
- when: any;
3969
+ show: null;
3970
+ when: null;
3606
3971
  eq: string;
3607
3972
  json: string;
3608
3973
  };
3609
3974
  customConditional: string;
3610
- logic: any[];
3975
+ logic: never[];
3611
3976
  attributes: {};
3612
3977
  overlay: {
3613
3978
  style: string;
@@ -3625,7 +3990,7 @@ export declare const Wizard: {
3625
3990
  multiple: boolean;
3626
3991
  unique: boolean;
3627
3992
  refreshOn: string;
3628
- widget: any;
3993
+ widget: null;
3629
3994
  validateOn: string;
3630
3995
  showCharCount: boolean;
3631
3996
  showWordCount: boolean;
@@ -3768,16 +4133,16 @@ export declare const Wizard: {
3768
4133
  };
3769
4134
  errorLabel: string;
3770
4135
  key: string;
3771
- tags: any[];
4136
+ tags: never[];
3772
4137
  properties: {};
3773
4138
  conditional: {
3774
- show: any;
3775
- when: any;
4139
+ show: null;
4140
+ when: null;
3776
4141
  eq: string;
3777
4142
  json: string;
3778
4143
  };
3779
4144
  customConditional: string;
3780
- logic: any[];
4145
+ logic: never[];
3781
4146
  attributes: {};
3782
4147
  overlay: {
3783
4148
  style: string;
@@ -3795,7 +4160,7 @@ export declare const Wizard: {
3795
4160
  multiple: boolean;
3796
4161
  unique: boolean;
3797
4162
  refreshOn: string;
3798
- widget: any;
4163
+ widget: null;
3799
4164
  validateOn: string;
3800
4165
  showCharCount: boolean;
3801
4166
  showWordCount: boolean;
@@ -3957,16 +4322,16 @@ export declare const Wizard: {
3957
4322
  unique: boolean;
3958
4323
  errorLabel: string;
3959
4324
  key: string;
3960
- tags: any[];
4325
+ tags: never[];
3961
4326
  properties: {};
3962
4327
  conditional: {
3963
- show: any;
3964
- when: any;
4328
+ show: null;
4329
+ when: null;
3965
4330
  eq: string;
3966
4331
  json: string;
3967
4332
  };
3968
4333
  customConditional: string;
3969
- logic: any[];
4334
+ logic: never[];
3970
4335
  attributes: {};
3971
4336
  overlay: {
3972
4337
  style: string;
@@ -4141,16 +4506,16 @@ export declare const Wizard: {
4141
4506
  };
4142
4507
  errorLabel: string;
4143
4508
  key: string;
4144
- tags: any[];
4509
+ tags: never[];
4145
4510
  properties: {};
4146
4511
  conditional: {
4147
- show: any;
4148
- when: any;
4512
+ show: null;
4513
+ when: null;
4149
4514
  eq: string;
4150
4515
  json: string;
4151
4516
  };
4152
4517
  customConditional: string;
4153
- logic: any[];
4518
+ logic: never[];
4154
4519
  attributes: {};
4155
4520
  overlay: {
4156
4521
  style: string;
@@ -4169,7 +4534,7 @@ export declare const Wizard: {
4169
4534
  inputType: string;
4170
4535
  inputMask: string;
4171
4536
  id: string;
4172
- defaultValue: any;
4537
+ defaultValue: null;
4173
4538
  editor?: undefined;
4174
4539
  autoExpand?: undefined;
4175
4540
  fixedSize?: undefined;
@@ -4322,16 +4687,16 @@ export declare const Wizard: {
4322
4687
  unique: boolean;
4323
4688
  errorLabel: string;
4324
4689
  key: string;
4325
- tags: any[];
4690
+ tags: never[];
4326
4691
  properties: {};
4327
4692
  conditional: {
4328
- show: any;
4329
- when: any;
4693
+ show: null;
4694
+ when: null;
4330
4695
  eq: string;
4331
4696
  json: string;
4332
4697
  };
4333
4698
  customConditional: string;
4334
- logic: any[];
4699
+ logic: never[];
4335
4700
  attributes: {};
4336
4701
  overlay: {
4337
4702
  style: string;
@@ -4350,7 +4715,7 @@ export declare const Wizard: {
4350
4715
  inputType: string;
4351
4716
  inputMask: string;
4352
4717
  id: string;
4353
- defaultValue: any;
4718
+ defaultValue: null;
4354
4719
  case?: undefined;
4355
4720
  editor?: undefined;
4356
4721
  autoExpand?: undefined;
@@ -4482,16 +4847,16 @@ export declare const Wizard: {
4482
4847
  validateOn: string;
4483
4848
  errorLabel: string;
4484
4849
  key: string;
4485
- tags: any[];
4850
+ tags: never[];
4486
4851
  properties: {};
4487
4852
  conditional: {
4488
- show: any;
4489
- when: any;
4853
+ show: null;
4854
+ when: null;
4490
4855
  eq: string;
4491
4856
  json: string;
4492
4857
  };
4493
4858
  customConditional: string;
4494
- logic: any[];
4859
+ logic: never[];
4495
4860
  attributes: {};
4496
4861
  overlay: {
4497
4862
  style: string;
@@ -4530,7 +4895,7 @@ export declare const Wizard: {
4530
4895
  showWordCount: boolean;
4531
4896
  allowMultipleMasks: boolean;
4532
4897
  id: string;
4533
- defaultValue: any;
4898
+ defaultValue: null;
4534
4899
  inputMask?: undefined;
4535
4900
  autocomplete?: undefined;
4536
4901
  mask?: undefined;
@@ -4667,16 +5032,16 @@ export declare const Wizard: {
4667
5032
  validateOn: string;
4668
5033
  errorLabel: string;
4669
5034
  key: string;
4670
- tags: any[];
5035
+ tags: never[];
4671
5036
  properties: {};
4672
5037
  conditional: {
4673
- show: any;
4674
- when: any;
5038
+ show: null;
5039
+ when: null;
4675
5040
  eq: string;
4676
5041
  json: string;
4677
5042
  };
4678
5043
  customConditional: string;
4679
- logic: any[];
5044
+ logic: never[];
4680
5045
  attributes: {};
4681
5046
  overlay: {
4682
5047
  style: string;
@@ -4692,7 +5057,7 @@ export declare const Wizard: {
4692
5057
  prefix: string;
4693
5058
  suffix: string;
4694
5059
  refreshOn: string;
4695
- widget: any;
5060
+ widget: null;
4696
5061
  showCharCount: boolean;
4697
5062
  showWordCount: boolean;
4698
5063
  allowMultipleMasks: boolean;
@@ -4709,7 +5074,7 @@ export declare const Wizard: {
4709
5074
  customClass: string;
4710
5075
  suffix: string;
4711
5076
  multiple: boolean;
4712
- defaultValue: any;
5077
+ defaultValue: null;
4713
5078
  protected: boolean;
4714
5079
  unique: boolean;
4715
5080
  persistent: boolean;
@@ -4747,8 +5112,8 @@ export declare const Wizard: {
4747
5112
  pattern: string;
4748
5113
  };
4749
5114
  conditional: {
4750
- show: any;
4751
- when: any;
5115
+ show: null;
5116
+ when: null;
4752
5117
  eq: string;
4753
5118
  };
4754
5119
  overlay: {
@@ -4881,8 +5246,8 @@ export declare const Wizard: {
4881
5246
  enableDate: boolean;
4882
5247
  enableMinDateInput: boolean;
4883
5248
  datePicker: {
4884
- minDate: any;
4885
- maxDate: any;
5249
+ minDate: null;
5250
+ maxDate: null;
4886
5251
  disable: string;
4887
5252
  disableFunction: string;
4888
5253
  disableWeekends: boolean;
@@ -4942,16 +5307,16 @@ export declare const Wizard: {
4942
5307
  validateOn: string;
4943
5308
  errorLabel: string;
4944
5309
  key: string;
4945
- tags: any[];
5310
+ tags: never[];
4946
5311
  properties: {};
4947
5312
  conditional: {
4948
- show: any;
4949
- when: any;
5313
+ show: null;
5314
+ when: null;
4950
5315
  eq: string;
4951
5316
  json: string;
4952
5317
  };
4953
5318
  customConditional: string;
4954
- logic: any[];
5319
+ logic: never[];
4955
5320
  attributes: {};
4956
5321
  overlay: {
4957
5322
  style: string;
@@ -4979,12 +5344,12 @@ export declare const Wizard: {
4979
5344
  format: string;
4980
5345
  hourIncrement: number;
4981
5346
  minuteIncrement: number;
4982
- minDate: any;
5347
+ minDate: null;
4983
5348
  disabledDates: string;
4984
5349
  disableWeekends: boolean;
4985
5350
  disableWeekdays: boolean;
4986
5351
  disableFunction: string;
4987
- maxDate: any;
5352
+ maxDate: null;
4988
5353
  };
4989
5354
  showCharCount: boolean;
4990
5355
  showWordCount: boolean;
@@ -5135,16 +5500,16 @@ export declare const Wizard: {
5135
5500
  integer?: undefined;
5136
5501
  };
5137
5502
  key: string;
5138
- tags: any[];
5503
+ tags: never[];
5139
5504
  properties: {};
5140
5505
  conditional: {
5141
- show: any;
5142
- when: any;
5506
+ show: null;
5507
+ when: null;
5143
5508
  eq: string;
5144
5509
  json: string;
5145
5510
  };
5146
5511
  customConditional: string;
5147
- logic: any[];
5512
+ logic: never[];
5148
5513
  attributes: {};
5149
5514
  overlay: {
5150
5515
  style: string;
@@ -5162,7 +5527,7 @@ export declare const Wizard: {
5162
5527
  multiple: boolean;
5163
5528
  refreshOn: string;
5164
5529
  labelPosition: string;
5165
- widget: any;
5530
+ widget: null;
5166
5531
  showCharCount: boolean;
5167
5532
  showWordCount: boolean;
5168
5533
  allowMultipleMasks: boolean;
@@ -5323,16 +5688,16 @@ export declare const Wizard: {
5323
5688
  unique: boolean;
5324
5689
  errorLabel: string;
5325
5690
  key: string;
5326
- tags: any[];
5691
+ tags: never[];
5327
5692
  properties: {};
5328
5693
  conditional: {
5329
- show: any;
5330
- when: any;
5694
+ show: null;
5695
+ when: null;
5331
5696
  eq: string;
5332
5697
  json: string;
5333
5698
  };
5334
5699
  customConditional: string;
5335
- logic: any[];
5700
+ logic: never[];
5336
5701
  attributes: {};
5337
5702
  overlay: {
5338
5703
  style: string;
@@ -5350,7 +5715,7 @@ export declare const Wizard: {
5350
5715
  allowMultipleMasks: boolean;
5351
5716
  delimiter: boolean;
5352
5717
  id: string;
5353
- defaultValue: any;
5718
+ defaultValue: null;
5354
5719
  inputMask?: undefined;
5355
5720
  inputType?: undefined;
5356
5721
  editor?: undefined;
@@ -5446,7 +5811,7 @@ export declare const Wizard: {
5446
5811
  customClass: string;
5447
5812
  suffix: string;
5448
5813
  multiple: boolean;
5449
- defaultValue: any;
5814
+ defaultValue: null;
5450
5815
  protected: boolean;
5451
5816
  unique: boolean;
5452
5817
  persistent: boolean;
@@ -5509,8 +5874,8 @@ export declare const Wizard: {
5509
5874
  integer?: undefined;
5510
5875
  };
5511
5876
  conditional: {
5512
- show: any;
5513
- when: any;
5877
+ show: null;
5878
+ when: null;
5514
5879
  eq: string;
5515
5880
  json?: undefined;
5516
5881
  };