@tsed/react-formio 1.12.0 → 1.13.2

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 (85) hide show
  1. package/dist/components/actions-table/actionsTable.component.d.ts +0 -1
  2. package/dist/components/actions-table/actionsTable.stories.d.ts +0 -1
  3. package/dist/components/alert/alert.component.d.ts +1 -2
  4. package/dist/components/alert/alert.stories.d.ts +0 -1
  5. package/dist/components/card/card.stories.d.ts +0 -1
  6. package/dist/components/form/form.component.d.ts +3 -2
  7. package/dist/components/form/form.component.spec.d.ts +1 -0
  8. package/dist/components/form/form.stories.d.ts +3689 -79
  9. package/dist/components/form/useForm.hook.d.ts +1 -1
  10. package/dist/components/form-access/formAccess.stories.d.ts +1 -2
  11. package/dist/components/form-action/formAction.stories.d.ts +0 -1
  12. package/dist/components/form-builder/formBuilder.stories.d.ts +518 -153
  13. package/dist/components/form-edit/formEdit.component.d.ts +0 -1
  14. package/dist/components/form-edit/formEdit.stories.d.ts +18 -19
  15. package/dist/components/form-settings/formSettings.component.d.ts +0 -1
  16. package/dist/components/form-settings/formSettings.stories.d.ts +1 -2
  17. package/dist/components/forms-table/components/formCell.component.d.ts +0 -1
  18. package/dist/components/forms-table/formsTable.component.d.ts +0 -1
  19. package/dist/components/forms-table/formsTable.stories.d.ts +0 -1
  20. package/dist/components/input-tags/inputTags.component.d.ts +0 -1
  21. package/dist/components/input-tags/inputTags.stories.d.ts +2 -3
  22. package/dist/components/input-text/inputText.component.d.ts +0 -1
  23. package/dist/components/input-text/inputText.stories.d.ts +0 -1
  24. package/dist/components/loader/loader.component.d.ts +1 -1
  25. package/dist/components/loader/loader.stories.d.ts +0 -1
  26. package/dist/components/modal/modal.component.d.ts +1 -1
  27. package/dist/components/modal/modal.stories.d.ts +0 -1
  28. package/dist/components/pagination/pagination.component.d.ts +0 -1
  29. package/dist/components/pagination/pagination.stories.d.ts +0 -1
  30. package/dist/components/react-component/reactComponent.component.d.ts +3 -3
  31. package/dist/components/select/select.stories.d.ts +2 -3
  32. package/dist/components/submissions-table/submissionsTable.component.d.ts +0 -1
  33. package/dist/components/submissions-table/submissionsTable.stories.d.ts +13 -14
  34. package/dist/components/table/components/defaultArrowSort.component.d.ts +0 -1
  35. package/dist/components/table/components/defaultCell.component.d.ts +0 -1
  36. package/dist/components/table/components/defaultCellHeader.component.d.ts +0 -1
  37. package/dist/components/table/components/defaultCellOperations.component.d.ts +0 -1
  38. package/dist/components/table/components/defaultOperationButton.component.d.ts +0 -1
  39. package/dist/components/table/filters/defaultColumnFilter.component.d.ts +0 -1
  40. package/dist/components/table/filters/selectColumnFilter.component.d.ts +0 -1
  41. package/dist/components/table/filters/sliderColumnFilter.component.d.ts +0 -1
  42. package/dist/components/table/table.stories.d.ts +4 -5
  43. package/dist/components/tabs/tabs.component.stories.d.ts +0 -1
  44. package/dist/hooks/useTooltip.d.ts +1 -1
  45. package/dist/index.js +342 -274
  46. package/dist/index.js.map +1 -1
  47. package/dist/index.modern.js +313 -268
  48. package/dist/index.modern.js.map +1 -1
  49. package/dist/stores/auth/auth.selectors.d.ts +1 -1
  50. package/jest.config.js +1 -1
  51. package/package.json +5 -5
  52. package/readme.md +51 -18
  53. package/src/components/__fixtures__/form.fixture.json +23 -0
  54. package/src/components/form/form.component.spec.tsx +56 -0
  55. package/src/components/form/form.component.tsx +5 -3
  56. package/src/components/form/form.stories.tsx +182 -11
  57. package/src/components/form/useForm.hook.ts +54 -29
  58. package/src/components/form-access/formAccess.component.tsx +1 -1
  59. package/src/components/form-access/formAccess.utils.ts +13 -13
  60. package/src/components/form-action/formAction.component.tsx +1 -1
  61. package/src/components/form-builder/formBuilder.component.tsx +1 -1
  62. package/src/components/form-edit/formCtas.component.tsx +32 -30
  63. package/src/components/form-edit/formEdit.component.tsx +1 -1
  64. package/src/components/form-settings/formSettings.utils.ts +3 -3
  65. package/src/components/input-tags/inputTags.component.tsx +3 -3
  66. package/src/components/input-text/inputText.component.spec.tsx +1 -1
  67. package/src/components/input-text/inputText.component.tsx +3 -3
  68. package/src/components/modal/modal.component.tsx +2 -2
  69. package/src/components/react-component/reactComponent.component.tsx +9 -6
  70. package/src/components/select/select.component.tsx +2 -2
  71. package/src/components/submissions-table/submissionsTable.component.tsx +6 -6
  72. package/src/components/table/table.component.tsx +58 -44
  73. package/src/components/table/utils/mapFormToColumns.tsx +1 -1
  74. package/src/components/tabs/tabs.component.tsx +1 -1
  75. package/src/hooks/useTooltip.ts +1 -1
  76. package/src/stores/action-info/action-info.selectors.ts +1 -1
  77. package/src/stores/auth/auth.utils.tsx +2 -2
  78. package/src/stores/auth/getAccess.action.ts +2 -2
  79. package/src/stores/auth/logout.action.spec.ts +1 -0
  80. package/src/stores/form/form.selectors.ts +1 -1
  81. package/src/stores/root/root.selectors.ts +2 -2
  82. package/tsconfig.json +10 -27
  83. package/tsconfig.node.json +8 -0
  84. package/craco.config.js +0 -11
  85. package/tsconfig.test.json +0 -6
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { Form } from "./form.component";
3
2
  declare const _default: {
4
3
  title: string;
@@ -9,8 +8,61 @@ declare const _default: {
9
8
  type: string;
10
9
  };
11
10
  };
11
+ onPrevPage: {
12
+ action: string;
13
+ };
14
+ onNextPage: {
15
+ action: string;
16
+ };
17
+ onCancel: {
18
+ action: string;
19
+ };
20
+ onChange: {
21
+ action: string;
22
+ };
23
+ onCustomEvent: {
24
+ action: string;
25
+ };
26
+ onComponentChange: {
27
+ action: string;
28
+ };
29
+ onSubmit: {
30
+ action: string;
31
+ };
32
+ onAsyncSubmit: {
33
+ action: string;
34
+ };
35
+ onSubmitDone: {
36
+ action: string;
37
+ };
38
+ onFormLoad: {
39
+ action: string;
40
+ };
41
+ onError: {
42
+ action: string;
43
+ };
44
+ onRender: {
45
+ action: string;
46
+ };
47
+ onAttach: {
48
+ action: string;
49
+ };
50
+ onBuild: {
51
+ action: string;
52
+ };
53
+ onFocus: {
54
+ action: string;
55
+ };
56
+ onBlur: {
57
+ action: string;
58
+ };
59
+ onInitialized: {
60
+ action: string;
61
+ };
62
+ onFormReady: {
63
+ action: string;
64
+ };
12
65
  };
13
- parameters: {};
14
66
  };
15
67
  export default _default;
16
68
  export declare const Sandbox: {
@@ -18,7 +70,7 @@ export declare const Sandbox: {
18
70
  args: {
19
71
  form: {
20
72
  type: string;
21
- tags: any[];
73
+ tags: never[];
22
74
  components: ({
23
75
  label: string;
24
76
  labelPosition: string;
@@ -97,16 +149,16 @@ export declare const Sandbox: {
97
149
  unique: boolean;
98
150
  errorLabel: string;
99
151
  key: string;
100
- tags: any[];
152
+ tags: never[];
101
153
  properties: {};
102
154
  conditional: {
103
- show: any;
104
- when: any;
155
+ show: null;
156
+ when: null;
105
157
  eq: string;
106
158
  json: string;
107
159
  };
108
160
  customConditional: string;
109
- logic: any[];
161
+ logic: never[];
110
162
  attributes: {};
111
163
  overlay: {
112
164
  style: string;
@@ -195,6 +247,8 @@ export declare const Sandbox: {
195
247
  maxDate?: undefined;
196
248
  minDate?: undefined;
197
249
  currency?: undefined;
250
+ rowDrafts?: undefined;
251
+ displayAsTable?: undefined;
198
252
  size?: undefined;
199
253
  block?: undefined;
200
254
  action?: undefined;
@@ -279,16 +333,16 @@ export declare const Sandbox: {
279
333
  unique: boolean;
280
334
  errorLabel: string;
281
335
  key: string;
282
- tags: any[];
336
+ tags: never[];
283
337
  properties: {};
284
338
  conditional: {
285
- show: any;
286
- when: any;
339
+ show: null;
340
+ when: null;
287
341
  eq: string;
288
342
  json: string;
289
343
  };
290
344
  customConditional: string;
291
- logic: any[];
345
+ logic: never[];
292
346
  fixedSize: boolean;
293
347
  overlay: {
294
348
  style: string;
@@ -378,6 +432,8 @@ export declare const Sandbox: {
378
432
  maxDate?: undefined;
379
433
  minDate?: undefined;
380
434
  currency?: undefined;
435
+ rowDrafts?: undefined;
436
+ displayAsTable?: undefined;
381
437
  size?: undefined;
382
438
  block?: undefined;
383
439
  action?: undefined;
@@ -459,16 +515,16 @@ export declare const Sandbox: {
459
515
  };
460
516
  errorLabel: string;
461
517
  key: string;
462
- tags: any[];
518
+ tags: never[];
463
519
  properties: {};
464
520
  conditional: {
465
- show: any;
466
- when: any;
521
+ show: null;
522
+ when: null;
467
523
  eq: string;
468
524
  json: string;
469
525
  };
470
526
  customConditional: string;
471
- logic: any[];
527
+ logic: never[];
472
528
  attributes: {};
473
529
  overlay: {
474
530
  style: string;
@@ -486,7 +542,7 @@ export declare const Sandbox: {
486
542
  showWordCount: boolean;
487
543
  allowMultipleMasks: boolean;
488
544
  id: string;
489
- defaultValue: any;
545
+ defaultValue: null;
490
546
  inputMask?: undefined;
491
547
  case?: undefined;
492
548
  inputType?: undefined;
@@ -561,6 +617,193 @@ export declare const Sandbox: {
561
617
  maxDate?: undefined;
562
618
  minDate?: undefined;
563
619
  currency?: undefined;
620
+ rowDrafts?: undefined;
621
+ displayAsTable?: undefined;
622
+ size?: undefined;
623
+ block?: undefined;
624
+ action?: undefined;
625
+ disableOnInvalid?: undefined;
626
+ theme?: undefined;
627
+ leftIcon?: undefined;
628
+ rightIcon?: undefined;
629
+ } | {
630
+ label: string;
631
+ labelPosition: string;
632
+ placeholder: string;
633
+ description: string;
634
+ tooltip: string;
635
+ prefix: string;
636
+ suffix: string;
637
+ widget: {
638
+ type: string;
639
+ displayInTimezone?: undefined;
640
+ locale?: undefined;
641
+ useLocaleSettings?: undefined;
642
+ allowInput?: undefined;
643
+ mode?: undefined;
644
+ enableTime?: undefined;
645
+ noCalendar?: undefined;
646
+ format?: undefined;
647
+ hourIncrement?: undefined;
648
+ minuteIncrement?: undefined;
649
+ minDate?: undefined;
650
+ disabledDates?: undefined;
651
+ disableWeekends?: undefined;
652
+ disableWeekdays?: undefined;
653
+ disableFunction?: undefined;
654
+ maxDate?: undefined;
655
+ };
656
+ customClass: string;
657
+ tabindex: string;
658
+ autocomplete: string;
659
+ hidden: boolean;
660
+ hideLabel: boolean;
661
+ showWordCount: boolean;
662
+ showCharCount: boolean;
663
+ mask: boolean;
664
+ autofocus: boolean;
665
+ spellcheck: boolean;
666
+ disabled: boolean;
667
+ tableView: boolean;
668
+ modalEdit: boolean;
669
+ case: string;
670
+ redrawOn: string;
671
+ clearOnHide: boolean;
672
+ calculateServer: boolean;
673
+ allowCalculateOverride: boolean;
674
+ validateOn: string;
675
+ validate: {
676
+ required: boolean;
677
+ pattern: string;
678
+ customMessage: string;
679
+ custom: string;
680
+ customPrivate: boolean;
681
+ json: string;
682
+ minLength: string;
683
+ maxLength: string;
684
+ strictDateValidation: boolean;
685
+ multiple: boolean;
686
+ unique: boolean;
687
+ minWords?: undefined;
688
+ maxWords?: undefined;
689
+ min?: undefined;
690
+ max?: undefined;
691
+ step?: undefined;
692
+ integer?: undefined;
693
+ };
694
+ errorLabel: string;
695
+ key: string;
696
+ tags: never[];
697
+ properties: {};
698
+ conditional: {
699
+ show: null;
700
+ when: null;
701
+ eq: string;
702
+ json: string;
703
+ };
704
+ customConditional: string;
705
+ logic: never[];
706
+ attributes: {};
707
+ overlay: {
708
+ style: string;
709
+ page: string;
710
+ left: string;
711
+ top: string;
712
+ width: string;
713
+ height: string;
714
+ };
715
+ type: string;
716
+ input: boolean;
717
+ multiple: boolean;
718
+ defaultValue: null;
719
+ protected: boolean;
720
+ unique: boolean;
721
+ persistent: boolean;
722
+ refreshOn: string;
723
+ dbIndex: boolean;
724
+ customDefaultValue: string;
725
+ calculateValue: string;
726
+ encrypted: boolean;
727
+ allowMultipleMasks: boolean;
728
+ inputType: string;
729
+ inputFormat: string;
730
+ inputMask: string;
731
+ id: string;
732
+ editor?: undefined;
733
+ autoExpand?: undefined;
734
+ fixedSize?: undefined;
735
+ rows?: undefined;
736
+ wysiwyg?: undefined;
737
+ delimiter?: undefined;
738
+ requireDecimal?: undefined;
739
+ shortcut?: undefined;
740
+ name?: undefined;
741
+ value?: undefined;
742
+ dataGridLabel?: undefined;
743
+ optionsLabelPosition?: undefined;
744
+ inline?: undefined;
745
+ values?: undefined;
746
+ minSelectedCountMessage?: undefined;
747
+ maxSelectedCountMessage?: undefined;
748
+ fieldSet?: undefined;
749
+ dataType?: undefined;
750
+ uniqueOptions?: undefined;
751
+ dataSrc?: undefined;
752
+ data?: undefined;
753
+ valueProperty?: undefined;
754
+ idPath?: undefined;
755
+ template?: undefined;
756
+ refreshOnBlur?: undefined;
757
+ clearOnRefresh?: undefined;
758
+ searchEnabled?: undefined;
759
+ selectThreshold?: undefined;
760
+ readOnlyValue?: undefined;
761
+ customOptions?: undefined;
762
+ useExactSearch?: undefined;
763
+ indexeddb?: undefined;
764
+ selectFields?: undefined;
765
+ searchField?: undefined;
766
+ minSearch?: undefined;
767
+ filter?: undefined;
768
+ limit?: undefined;
769
+ lazyLoad?: undefined;
770
+ authenticate?: undefined;
771
+ searchThreshold?: undefined;
772
+ fuseOptions?: undefined;
773
+ kickbox?: undefined;
774
+ delimeter?: undefined;
775
+ maxTags?: undefined;
776
+ storeas?: undefined;
777
+ enableManualMode?: undefined;
778
+ disableClearIcon?: undefined;
779
+ provider?: undefined;
780
+ manualModeViewString?: undefined;
781
+ switchToManualModeLabel?: undefined;
782
+ tree?: undefined;
783
+ components?: undefined;
784
+ providerOptions?: undefined;
785
+ displayInTimezone?: undefined;
786
+ useLocaleSettings?: undefined;
787
+ allowInput?: undefined;
788
+ format?: undefined;
789
+ enableDate?: undefined;
790
+ enableMinDateInput?: undefined;
791
+ datePicker?: undefined;
792
+ enableMaxDateInput?: undefined;
793
+ enableTime?: undefined;
794
+ timePicker?: undefined;
795
+ defaultDate?: undefined;
796
+ timezone?: undefined;
797
+ datepickerMode?: undefined;
798
+ hideInputLabels?: undefined;
799
+ inputsLabelPosition?: undefined;
800
+ fields?: undefined;
801
+ dayFirst?: undefined;
802
+ maxDate?: undefined;
803
+ minDate?: undefined;
804
+ currency?: undefined;
805
+ rowDrafts?: undefined;
806
+ displayAsTable?: undefined;
564
807
  size?: undefined;
565
808
  block?: undefined;
566
809
  action?: undefined;
@@ -614,16 +857,16 @@ export declare const Sandbox: {
614
857
  };
615
858
  errorLabel: string;
616
859
  key: string;
617
- tags: any[];
860
+ tags: never[];
618
861
  properties: {};
619
862
  conditional: {
620
- show: any;
621
- when: any;
863
+ show: null;
864
+ when: null;
622
865
  eq: string;
623
866
  json: string;
624
867
  };
625
868
  customConditional: string;
626
- logic: any[];
869
+ logic: never[];
627
870
  attributes: {};
628
871
  overlay: {
629
872
  style: string;
@@ -644,7 +887,7 @@ export declare const Sandbox: {
644
887
  unique: boolean;
645
888
  refreshOn: string;
646
889
  labelPosition: string;
647
- widget: any;
890
+ widget: null;
648
891
  validateOn: string;
649
892
  showCharCount: boolean;
650
893
  showWordCount: boolean;
@@ -726,6 +969,8 @@ export declare const Sandbox: {
726
969
  maxDate?: undefined;
727
970
  minDate?: undefined;
728
971
  currency?: undefined;
972
+ rowDrafts?: undefined;
973
+ displayAsTable?: undefined;
729
974
  size?: undefined;
730
975
  block?: undefined;
731
976
  action?: undefined;
@@ -786,16 +1031,16 @@ export declare const Sandbox: {
786
1031
  minSelectedCountMessage: string;
787
1032
  maxSelectedCountMessage: string;
788
1033
  key: string;
789
- tags: any[];
1034
+ tags: never[];
790
1035
  properties: {};
791
1036
  conditional: {
792
- show: any;
793
- when: any;
1037
+ show: null;
1038
+ when: null;
794
1039
  eq: string;
795
1040
  json: string;
796
1041
  };
797
1042
  customConditional: string;
798
- logic: any[];
1043
+ logic: never[];
799
1044
  attributes: {};
800
1045
  overlay: {
801
1046
  style: string;
@@ -813,7 +1058,7 @@ export declare const Sandbox: {
813
1058
  multiple: boolean;
814
1059
  unique: boolean;
815
1060
  refreshOn: string;
816
- widget: any;
1061
+ widget: null;
817
1062
  validateOn: string;
818
1063
  showCharCount: boolean;
819
1064
  showWordCount: boolean;
@@ -897,6 +1142,8 @@ export declare const Sandbox: {
897
1142
  maxDate?: undefined;
898
1143
  minDate?: undefined;
899
1144
  currency?: undefined;
1145
+ rowDrafts?: undefined;
1146
+ displayAsTable?: undefined;
900
1147
  size?: undefined;
901
1148
  block?: undefined;
902
1149
  action?: undefined;
@@ -956,16 +1203,16 @@ export declare const Sandbox: {
956
1203
  };
957
1204
  errorLabel: string;
958
1205
  key: string;
959
- tags: any[];
1206
+ tags: never[];
960
1207
  properties: {};
961
1208
  conditional: {
962
- show: any;
963
- when: any;
1209
+ show: null;
1210
+ when: null;
964
1211
  eq: string;
965
1212
  json: string;
966
1213
  };
967
1214
  customConditional: string;
968
- logic: any[];
1215
+ logic: never[];
969
1216
  attributes: {};
970
1217
  overlay: {
971
1218
  style: string;
@@ -983,7 +1230,7 @@ export declare const Sandbox: {
983
1230
  multiple: boolean;
984
1231
  unique: boolean;
985
1232
  refreshOn: string;
986
- widget: any;
1233
+ widget: null;
987
1234
  validateOn: string;
988
1235
  showCharCount: boolean;
989
1236
  showWordCount: boolean;
@@ -1066,6 +1313,8 @@ export declare const Sandbox: {
1066
1313
  maxDate?: undefined;
1067
1314
  minDate?: undefined;
1068
1315
  currency?: undefined;
1316
+ rowDrafts?: undefined;
1317
+ displayAsTable?: undefined;
1069
1318
  size?: undefined;
1070
1319
  block?: undefined;
1071
1320
  action?: undefined;
@@ -1145,16 +1394,16 @@ export declare const Sandbox: {
1145
1394
  unique: boolean;
1146
1395
  errorLabel: string;
1147
1396
  key: string;
1148
- tags: any[];
1397
+ tags: never[];
1149
1398
  properties: {};
1150
1399
  conditional: {
1151
- show: any;
1152
- when: any;
1400
+ show: null;
1401
+ when: null;
1153
1402
  eq: string;
1154
1403
  json: string;
1155
1404
  };
1156
1405
  customConditional: string;
1157
- logic: any[];
1406
+ logic: never[];
1158
1407
  attributes: {};
1159
1408
  overlay: {
1160
1409
  style: string;
@@ -1245,6 +1494,8 @@ export declare const Sandbox: {
1245
1494
  maxDate?: undefined;
1246
1495
  minDate?: undefined;
1247
1496
  currency?: undefined;
1497
+ rowDrafts?: undefined;
1498
+ displayAsTable?: undefined;
1248
1499
  size?: undefined;
1249
1500
  block?: undefined;
1250
1501
  action?: undefined;
@@ -1329,16 +1580,16 @@ export declare const Sandbox: {
1329
1580
  };
1330
1581
  errorLabel: string;
1331
1582
  key: string;
1332
- tags: any[];
1583
+ tags: never[];
1333
1584
  properties: {};
1334
1585
  conditional: {
1335
- show: any;
1336
- when: any;
1586
+ show: null;
1587
+ when: null;
1337
1588
  eq: string;
1338
1589
  json: string;
1339
1590
  };
1340
1591
  customConditional: string;
1341
- logic: any[];
1592
+ logic: never[];
1342
1593
  attributes: {};
1343
1594
  overlay: {
1344
1595
  style: string;
@@ -1357,7 +1608,7 @@ export declare const Sandbox: {
1357
1608
  inputType: string;
1358
1609
  inputMask: string;
1359
1610
  id: string;
1360
- defaultValue: any;
1611
+ defaultValue: null;
1361
1612
  editor?: undefined;
1362
1613
  autoExpand?: undefined;
1363
1614
  fixedSize?: undefined;
@@ -1430,6 +1681,8 @@ export declare const Sandbox: {
1430
1681
  maxDate?: undefined;
1431
1682
  minDate?: undefined;
1432
1683
  currency?: undefined;
1684
+ rowDrafts?: undefined;
1685
+ displayAsTable?: undefined;
1433
1686
  size?: undefined;
1434
1687
  block?: undefined;
1435
1688
  action?: undefined;
@@ -1510,16 +1763,16 @@ export declare const Sandbox: {
1510
1763
  unique: boolean;
1511
1764
  errorLabel: string;
1512
1765
  key: string;
1513
- tags: any[];
1766
+ tags: never[];
1514
1767
  properties: {};
1515
1768
  conditional: {
1516
- show: any;
1517
- when: any;
1769
+ show: null;
1770
+ when: null;
1518
1771
  eq: string;
1519
1772
  json: string;
1520
1773
  };
1521
1774
  customConditional: string;
1522
- logic: any[];
1775
+ logic: never[];
1523
1776
  attributes: {};
1524
1777
  overlay: {
1525
1778
  style: string;
@@ -1538,7 +1791,7 @@ export declare const Sandbox: {
1538
1791
  inputType: string;
1539
1792
  inputMask: string;
1540
1793
  id: string;
1541
- defaultValue: any;
1794
+ defaultValue: null;
1542
1795
  case?: undefined;
1543
1796
  editor?: undefined;
1544
1797
  autoExpand?: undefined;
@@ -1613,6 +1866,8 @@ export declare const Sandbox: {
1613
1866
  maxDate?: undefined;
1614
1867
  minDate?: undefined;
1615
1868
  currency?: undefined;
1869
+ rowDrafts?: undefined;
1870
+ displayAsTable?: undefined;
1616
1871
  size?: undefined;
1617
1872
  block?: undefined;
1618
1873
  action?: undefined;
@@ -1670,16 +1925,16 @@ export declare const Sandbox: {
1670
1925
  validateOn: string;
1671
1926
  errorLabel: string;
1672
1927
  key: string;
1673
- tags: any[];
1928
+ tags: never[];
1674
1929
  properties: {};
1675
1930
  conditional: {
1676
- show: any;
1677
- when: any;
1931
+ show: null;
1932
+ when: null;
1678
1933
  eq: string;
1679
1934
  json: string;
1680
1935
  };
1681
1936
  customConditional: string;
1682
- logic: any[];
1937
+ logic: never[];
1683
1938
  attributes: {};
1684
1939
  overlay: {
1685
1940
  style: string;
@@ -1718,7 +1973,7 @@ export declare const Sandbox: {
1718
1973
  showWordCount: boolean;
1719
1974
  allowMultipleMasks: boolean;
1720
1975
  id: string;
1721
- defaultValue: any;
1976
+ defaultValue: null;
1722
1977
  inputMask?: undefined;
1723
1978
  autocomplete?: undefined;
1724
1979
  mask?: undefined;
@@ -1796,6 +2051,8 @@ export declare const Sandbox: {
1796
2051
  maxDate?: undefined;
1797
2052
  minDate?: undefined;
1798
2053
  currency?: undefined;
2054
+ rowDrafts?: undefined;
2055
+ displayAsTable?: undefined;
1799
2056
  size?: undefined;
1800
2057
  block?: undefined;
1801
2058
  action?: undefined;
@@ -1855,16 +2112,16 @@ export declare const Sandbox: {
1855
2112
  validateOn: string;
1856
2113
  errorLabel: string;
1857
2114
  key: string;
1858
- tags: any[];
2115
+ tags: never[];
1859
2116
  properties: {};
1860
2117
  conditional: {
1861
- show: any;
1862
- when: any;
2118
+ show: null;
2119
+ when: null;
1863
2120
  eq: string;
1864
2121
  json: string;
1865
2122
  };
1866
2123
  customConditional: string;
1867
- logic: any[];
2124
+ logic: never[];
1868
2125
  attributes: {};
1869
2126
  overlay: {
1870
2127
  style: string;
@@ -1880,7 +2137,7 @@ export declare const Sandbox: {
1880
2137
  prefix: string;
1881
2138
  suffix: string;
1882
2139
  refreshOn: string;
1883
- widget: any;
2140
+ widget: null;
1884
2141
  showCharCount: boolean;
1885
2142
  showWordCount: boolean;
1886
2143
  allowMultipleMasks: boolean;
@@ -1897,7 +2154,7 @@ export declare const Sandbox: {
1897
2154
  customClass: string;
1898
2155
  suffix: string;
1899
2156
  multiple: boolean;
1900
- defaultValue: any;
2157
+ defaultValue: null;
1901
2158
  protected: boolean;
1902
2159
  unique: boolean;
1903
2160
  persistent: boolean;
@@ -1935,8 +2192,8 @@ export declare const Sandbox: {
1935
2192
  pattern: string;
1936
2193
  };
1937
2194
  conditional: {
1938
- show: any;
1939
- when: any;
2195
+ show: null;
2196
+ when: null;
1940
2197
  eq: string;
1941
2198
  };
1942
2199
  overlay: {
@@ -2041,6 +2298,8 @@ export declare const Sandbox: {
2041
2298
  maxDate?: undefined;
2042
2299
  minDate?: undefined;
2043
2300
  currency?: undefined;
2301
+ rowDrafts?: undefined;
2302
+ displayAsTable?: undefined;
2044
2303
  size?: undefined;
2045
2304
  block?: undefined;
2046
2305
  action?: undefined;
@@ -2069,8 +2328,8 @@ export declare const Sandbox: {
2069
2328
  enableDate: boolean;
2070
2329
  enableMinDateInput: boolean;
2071
2330
  datePicker: {
2072
- minDate: any;
2073
- maxDate: any;
2331
+ minDate: null;
2332
+ maxDate: null;
2074
2333
  disable: string;
2075
2334
  disableFunction: string;
2076
2335
  disableWeekends: boolean;
@@ -2130,16 +2389,16 @@ export declare const Sandbox: {
2130
2389
  validateOn: string;
2131
2390
  errorLabel: string;
2132
2391
  key: string;
2133
- tags: any[];
2392
+ tags: never[];
2134
2393
  properties: {};
2135
2394
  conditional: {
2136
- show: any;
2137
- when: any;
2395
+ show: null;
2396
+ when: null;
2138
2397
  eq: string;
2139
2398
  json: string;
2140
2399
  };
2141
2400
  customConditional: string;
2142
- logic: any[];
2401
+ logic: never[];
2143
2402
  attributes: {};
2144
2403
  overlay: {
2145
2404
  style: string;
@@ -2167,12 +2426,12 @@ export declare const Sandbox: {
2167
2426
  format: string;
2168
2427
  hourIncrement: number;
2169
2428
  minuteIncrement: number;
2170
- minDate: any;
2429
+ minDate: null;
2171
2430
  disabledDates: string;
2172
2431
  disableWeekends: boolean;
2173
2432
  disableWeekdays: boolean;
2174
2433
  disableFunction: string;
2175
- maxDate: any;
2434
+ maxDate: null;
2176
2435
  };
2177
2436
  showCharCount: boolean;
2178
2437
  showWordCount: boolean;
@@ -2245,6 +2504,8 @@ export declare const Sandbox: {
2245
2504
  maxDate?: undefined;
2246
2505
  minDate?: undefined;
2247
2506
  currency?: undefined;
2507
+ rowDrafts?: undefined;
2508
+ displayAsTable?: undefined;
2248
2509
  size?: undefined;
2249
2510
  block?: undefined;
2250
2511
  action?: undefined;
@@ -2323,16 +2584,16 @@ export declare const Sandbox: {
2323
2584
  integer?: undefined;
2324
2585
  };
2325
2586
  key: string;
2326
- tags: any[];
2587
+ tags: never[];
2327
2588
  properties: {};
2328
2589
  conditional: {
2329
- show: any;
2330
- when: any;
2590
+ show: null;
2591
+ when: null;
2331
2592
  eq: string;
2332
2593
  json: string;
2333
2594
  };
2334
2595
  customConditional: string;
2335
- logic: any[];
2596
+ logic: never[];
2336
2597
  attributes: {};
2337
2598
  overlay: {
2338
2599
  style: string;
@@ -2350,7 +2611,7 @@ export declare const Sandbox: {
2350
2611
  multiple: boolean;
2351
2612
  refreshOn: string;
2352
2613
  labelPosition: string;
2353
- widget: any;
2614
+ widget: null;
2354
2615
  showCharCount: boolean;
2355
2616
  showWordCount: boolean;
2356
2617
  allowMultipleMasks: boolean;
@@ -2429,6 +2690,8 @@ export declare const Sandbox: {
2429
2690
  timezone?: undefined;
2430
2691
  datepickerMode?: undefined;
2431
2692
  currency?: undefined;
2693
+ rowDrafts?: undefined;
2694
+ displayAsTable?: undefined;
2432
2695
  size?: undefined;
2433
2696
  block?: undefined;
2434
2697
  action?: undefined;
@@ -2511,16 +2774,16 @@ export declare const Sandbox: {
2511
2774
  unique: boolean;
2512
2775
  errorLabel: string;
2513
2776
  key: string;
2514
- tags: any[];
2777
+ tags: never[];
2515
2778
  properties: {};
2516
2779
  conditional: {
2517
- show: any;
2518
- when: any;
2780
+ show: null;
2781
+ when: null;
2519
2782
  eq: string;
2520
2783
  json: string;
2521
2784
  };
2522
2785
  customConditional: string;
2523
- logic: any[];
2786
+ logic: never[];
2524
2787
  attributes: {};
2525
2788
  overlay: {
2526
2789
  style: string;
@@ -2538,7 +2801,7 @@ export declare const Sandbox: {
2538
2801
  allowMultipleMasks: boolean;
2539
2802
  delimiter: boolean;
2540
2803
  id: string;
2541
- defaultValue: any;
2804
+ defaultValue: null;
2542
2805
  inputMask?: undefined;
2543
2806
  inputType?: undefined;
2544
2807
  editor?: undefined;
@@ -2612,6 +2875,3351 @@ export declare const Sandbox: {
2612
2875
  dayFirst?: undefined;
2613
2876
  maxDate?: undefined;
2614
2877
  minDate?: undefined;
2878
+ rowDrafts?: undefined;
2879
+ displayAsTable?: undefined;
2880
+ size?: undefined;
2881
+ block?: undefined;
2882
+ action?: undefined;
2883
+ disableOnInvalid?: undefined;
2884
+ theme?: undefined;
2885
+ leftIcon?: undefined;
2886
+ rightIcon?: undefined;
2887
+ } | {
2888
+ label: string;
2889
+ tableView: boolean;
2890
+ rowDrafts: boolean;
2891
+ key: string;
2892
+ type: string;
2893
+ displayAsTable: boolean;
2894
+ input: boolean;
2895
+ components: {
2896
+ label: string;
2897
+ mask: boolean;
2898
+ spellcheck: boolean;
2899
+ tableView: boolean;
2900
+ currency: string;
2901
+ inputFormat: string;
2902
+ key: string;
2903
+ type: string;
2904
+ input: boolean;
2905
+ delimiter: boolean;
2906
+ }[];
2907
+ labelPosition?: undefined;
2908
+ placeholder?: undefined;
2909
+ description?: undefined;
2910
+ tooltip?: undefined;
2911
+ prefix?: undefined;
2912
+ suffix?: undefined;
2913
+ widget?: undefined;
2914
+ inputMask?: undefined;
2915
+ allowMultipleMasks?: undefined;
2916
+ customClass?: undefined;
2917
+ tabindex?: undefined;
2918
+ autocomplete?: undefined;
2919
+ hidden?: undefined;
2920
+ hideLabel?: undefined;
2921
+ showWordCount?: undefined;
2922
+ showCharCount?: undefined;
2923
+ mask?: undefined;
2924
+ autofocus?: undefined;
2925
+ spellcheck?: undefined;
2926
+ disabled?: undefined;
2927
+ modalEdit?: undefined;
2928
+ multiple?: undefined;
2929
+ persistent?: undefined;
2930
+ inputFormat?: undefined;
2931
+ protected?: undefined;
2932
+ dbIndex?: undefined;
2933
+ case?: undefined;
2934
+ encrypted?: undefined;
2935
+ redrawOn?: undefined;
2936
+ clearOnHide?: undefined;
2937
+ customDefaultValue?: undefined;
2938
+ calculateValue?: undefined;
2939
+ calculateServer?: undefined;
2940
+ allowCalculateOverride?: undefined;
2941
+ validateOn?: undefined;
2942
+ validate?: undefined;
2943
+ unique?: undefined;
2944
+ errorLabel?: undefined;
2945
+ tags?: undefined;
2946
+ properties?: undefined;
2947
+ conditional?: undefined;
2948
+ customConditional?: undefined;
2949
+ logic?: undefined;
2950
+ attributes?: undefined;
2951
+ overlay?: undefined;
2952
+ refreshOn?: undefined;
2953
+ inputType?: undefined;
2954
+ id?: undefined;
2955
+ defaultValue?: undefined;
2956
+ editor?: undefined;
2957
+ autoExpand?: undefined;
2958
+ fixedSize?: undefined;
2959
+ rows?: undefined;
2960
+ wysiwyg?: undefined;
2961
+ delimiter?: undefined;
2962
+ requireDecimal?: undefined;
2963
+ shortcut?: undefined;
2964
+ name?: undefined;
2965
+ value?: undefined;
2966
+ dataGridLabel?: undefined;
2967
+ optionsLabelPosition?: undefined;
2968
+ inline?: undefined;
2969
+ values?: undefined;
2970
+ minSelectedCountMessage?: undefined;
2971
+ maxSelectedCountMessage?: undefined;
2972
+ fieldSet?: undefined;
2973
+ dataType?: undefined;
2974
+ uniqueOptions?: undefined;
2975
+ dataSrc?: undefined;
2976
+ data?: undefined;
2977
+ valueProperty?: undefined;
2978
+ idPath?: undefined;
2979
+ template?: undefined;
2980
+ refreshOnBlur?: undefined;
2981
+ clearOnRefresh?: undefined;
2982
+ searchEnabled?: undefined;
2983
+ selectThreshold?: undefined;
2984
+ readOnlyValue?: undefined;
2985
+ customOptions?: undefined;
2986
+ useExactSearch?: undefined;
2987
+ indexeddb?: undefined;
2988
+ selectFields?: undefined;
2989
+ searchField?: undefined;
2990
+ minSearch?: undefined;
2991
+ filter?: undefined;
2992
+ limit?: undefined;
2993
+ lazyLoad?: undefined;
2994
+ authenticate?: undefined;
2995
+ searchThreshold?: undefined;
2996
+ fuseOptions?: undefined;
2997
+ kickbox?: undefined;
2998
+ delimeter?: undefined;
2999
+ maxTags?: undefined;
3000
+ storeas?: undefined;
3001
+ enableManualMode?: undefined;
3002
+ disableClearIcon?: undefined;
3003
+ provider?: undefined;
3004
+ manualModeViewString?: undefined;
3005
+ switchToManualModeLabel?: undefined;
3006
+ tree?: undefined;
3007
+ providerOptions?: undefined;
3008
+ displayInTimezone?: undefined;
3009
+ useLocaleSettings?: undefined;
3010
+ allowInput?: undefined;
3011
+ format?: undefined;
3012
+ enableDate?: undefined;
3013
+ enableMinDateInput?: undefined;
3014
+ datePicker?: undefined;
3015
+ enableMaxDateInput?: undefined;
3016
+ enableTime?: undefined;
3017
+ timePicker?: undefined;
3018
+ defaultDate?: undefined;
3019
+ timezone?: undefined;
3020
+ datepickerMode?: undefined;
3021
+ hideInputLabels?: undefined;
3022
+ inputsLabelPosition?: undefined;
3023
+ fields?: undefined;
3024
+ dayFirst?: undefined;
3025
+ maxDate?: undefined;
3026
+ minDate?: undefined;
3027
+ currency?: undefined;
3028
+ size?: undefined;
3029
+ block?: undefined;
3030
+ action?: undefined;
3031
+ disableOnInvalid?: undefined;
3032
+ theme?: undefined;
3033
+ leftIcon?: undefined;
3034
+ rightIcon?: undefined;
3035
+ } | {
3036
+ type: string;
3037
+ label: string;
3038
+ key: string;
3039
+ size: string;
3040
+ block: boolean;
3041
+ action: string;
3042
+ disableOnInvalid: boolean;
3043
+ theme: string;
3044
+ input: boolean;
3045
+ placeholder: string;
3046
+ prefix: string;
3047
+ customClass: string;
3048
+ suffix: string;
3049
+ multiple: boolean;
3050
+ defaultValue: null;
3051
+ protected: boolean;
3052
+ unique: boolean;
3053
+ persistent: boolean;
3054
+ hidden: boolean;
3055
+ clearOnHide: boolean;
3056
+ refreshOn: string;
3057
+ redrawOn: string;
3058
+ tableView: boolean;
3059
+ modalEdit: boolean;
3060
+ labelPosition: string;
3061
+ description: string;
3062
+ errorLabel: string;
3063
+ tooltip: string;
3064
+ hideLabel: boolean;
3065
+ tabindex: string;
3066
+ disabled: boolean;
3067
+ autofocus: boolean;
3068
+ dbIndex: boolean;
3069
+ customDefaultValue: string;
3070
+ calculateValue: string;
3071
+ calculateServer: boolean;
3072
+ widget: {
3073
+ type: string;
3074
+ displayInTimezone?: undefined;
3075
+ locale?: undefined;
3076
+ useLocaleSettings?: undefined;
3077
+ allowInput?: undefined;
3078
+ mode?: undefined;
3079
+ enableTime?: undefined;
3080
+ noCalendar?: undefined;
3081
+ format?: undefined;
3082
+ hourIncrement?: undefined;
3083
+ minuteIncrement?: undefined;
3084
+ minDate?: undefined;
3085
+ disabledDates?: undefined;
3086
+ disableWeekends?: undefined;
3087
+ disableWeekdays?: undefined;
3088
+ disableFunction?: undefined;
3089
+ maxDate?: undefined;
3090
+ };
3091
+ attributes: {};
3092
+ validateOn: string;
3093
+ validate: {
3094
+ required: boolean;
3095
+ custom: string;
3096
+ customPrivate: boolean;
3097
+ strictDateValidation: boolean;
3098
+ multiple: boolean;
3099
+ unique: boolean;
3100
+ pattern?: undefined;
3101
+ customMessage?: undefined;
3102
+ json?: undefined;
3103
+ minLength?: undefined;
3104
+ maxLength?: undefined;
3105
+ minWords?: undefined;
3106
+ maxWords?: undefined;
3107
+ min?: undefined;
3108
+ max?: undefined;
3109
+ step?: undefined;
3110
+ integer?: undefined;
3111
+ };
3112
+ conditional: {
3113
+ show: null;
3114
+ when: null;
3115
+ eq: string;
3116
+ json?: undefined;
3117
+ };
3118
+ overlay: {
3119
+ style: string;
3120
+ left: string;
3121
+ top: string;
3122
+ width: string;
3123
+ height: string;
3124
+ page?: undefined;
3125
+ };
3126
+ allowCalculateOverride: boolean;
3127
+ encrypted: boolean;
3128
+ showCharCount: boolean;
3129
+ showWordCount: boolean;
3130
+ properties: {};
3131
+ allowMultipleMasks: boolean;
3132
+ leftIcon: string;
3133
+ rightIcon: string;
3134
+ dataGridLabel: boolean;
3135
+ id: string;
3136
+ inputMask?: undefined;
3137
+ autocomplete?: undefined;
3138
+ mask?: undefined;
3139
+ spellcheck?: undefined;
3140
+ inputFormat?: undefined;
3141
+ case?: undefined;
3142
+ tags?: undefined;
3143
+ customConditional?: undefined;
3144
+ logic?: undefined;
3145
+ inputType?: undefined;
3146
+ editor?: undefined;
3147
+ autoExpand?: undefined;
3148
+ fixedSize?: undefined;
3149
+ rows?: undefined;
3150
+ wysiwyg?: undefined;
3151
+ delimiter?: undefined;
3152
+ requireDecimal?: undefined;
3153
+ shortcut?: undefined;
3154
+ name?: undefined;
3155
+ value?: undefined;
3156
+ optionsLabelPosition?: undefined;
3157
+ inline?: undefined;
3158
+ values?: undefined;
3159
+ minSelectedCountMessage?: undefined;
3160
+ maxSelectedCountMessage?: undefined;
3161
+ fieldSet?: undefined;
3162
+ dataType?: undefined;
3163
+ uniqueOptions?: undefined;
3164
+ dataSrc?: undefined;
3165
+ data?: undefined;
3166
+ valueProperty?: undefined;
3167
+ idPath?: undefined;
3168
+ template?: undefined;
3169
+ refreshOnBlur?: undefined;
3170
+ clearOnRefresh?: undefined;
3171
+ searchEnabled?: undefined;
3172
+ selectThreshold?: undefined;
3173
+ readOnlyValue?: undefined;
3174
+ customOptions?: undefined;
3175
+ useExactSearch?: undefined;
3176
+ indexeddb?: undefined;
3177
+ selectFields?: undefined;
3178
+ searchField?: undefined;
3179
+ minSearch?: undefined;
3180
+ filter?: undefined;
3181
+ limit?: undefined;
3182
+ lazyLoad?: undefined;
3183
+ authenticate?: undefined;
3184
+ searchThreshold?: undefined;
3185
+ fuseOptions?: undefined;
3186
+ kickbox?: undefined;
3187
+ delimeter?: undefined;
3188
+ maxTags?: undefined;
3189
+ storeas?: undefined;
3190
+ enableManualMode?: undefined;
3191
+ disableClearIcon?: undefined;
3192
+ provider?: undefined;
3193
+ manualModeViewString?: undefined;
3194
+ switchToManualModeLabel?: undefined;
3195
+ tree?: undefined;
3196
+ components?: undefined;
3197
+ providerOptions?: undefined;
3198
+ displayInTimezone?: undefined;
3199
+ useLocaleSettings?: undefined;
3200
+ allowInput?: undefined;
3201
+ format?: undefined;
3202
+ enableDate?: undefined;
3203
+ enableMinDateInput?: undefined;
3204
+ datePicker?: undefined;
3205
+ enableMaxDateInput?: undefined;
3206
+ enableTime?: undefined;
3207
+ timePicker?: undefined;
3208
+ defaultDate?: undefined;
3209
+ timezone?: undefined;
3210
+ datepickerMode?: undefined;
3211
+ hideInputLabels?: undefined;
3212
+ inputsLabelPosition?: undefined;
3213
+ fields?: undefined;
3214
+ dayFirst?: undefined;
3215
+ maxDate?: undefined;
3216
+ minDate?: undefined;
3217
+ currency?: undefined;
3218
+ rowDrafts?: undefined;
3219
+ displayAsTable?: undefined;
3220
+ })[];
3221
+ display: string;
3222
+ };
3223
+ };
3224
+ };
3225
+ export declare const TriggerError: {
3226
+ (args: any): JSX.Element;
3227
+ args: {
3228
+ form: {
3229
+ type: string;
3230
+ display: string;
3231
+ tags: never[];
3232
+ components: ({
3233
+ label: string;
3234
+ widget: {
3235
+ type: string;
3236
+ };
3237
+ errorLabel: string;
3238
+ key: string;
3239
+ inputType: string;
3240
+ type: string;
3241
+ id: string;
3242
+ defaultValue: string;
3243
+ showValidations?: undefined;
3244
+ tableView?: undefined;
3245
+ input?: undefined;
3246
+ } | {
3247
+ label: string;
3248
+ showValidations: boolean;
3249
+ tableView: boolean;
3250
+ key: string;
3251
+ type: string;
3252
+ input: boolean;
3253
+ widget?: undefined;
3254
+ errorLabel?: undefined;
3255
+ inputType?: undefined;
3256
+ id?: undefined;
3257
+ defaultValue?: undefined;
3258
+ })[];
3259
+ };
3260
+ };
3261
+ };
3262
+ export declare const ReadOnly: {
3263
+ (args: any): JSX.Element;
3264
+ args: {
3265
+ readonly: boolean;
3266
+ form: {
3267
+ type: string;
3268
+ tags: never[];
3269
+ components: ({
3270
+ label: string;
3271
+ labelPosition: string;
3272
+ placeholder: string;
3273
+ description: string;
3274
+ tooltip: string;
3275
+ prefix: string;
3276
+ suffix: string;
3277
+ widget: {
3278
+ type: string;
3279
+ displayInTimezone?: undefined;
3280
+ locale?: undefined;
3281
+ useLocaleSettings?: undefined;
3282
+ allowInput?: undefined;
3283
+ mode?: undefined;
3284
+ enableTime?: undefined;
3285
+ noCalendar?: undefined;
3286
+ format?: undefined;
3287
+ hourIncrement?: undefined;
3288
+ minuteIncrement?: undefined;
3289
+ minDate?: undefined;
3290
+ disabledDates?: undefined;
3291
+ disableWeekends?: undefined;
3292
+ disableWeekdays?: undefined;
3293
+ disableFunction?: undefined;
3294
+ maxDate?: undefined;
3295
+ };
3296
+ inputMask: string;
3297
+ allowMultipleMasks: boolean;
3298
+ customClass: string;
3299
+ tabindex: string;
3300
+ autocomplete: string;
3301
+ hidden: boolean;
3302
+ hideLabel: boolean;
3303
+ showWordCount: boolean;
3304
+ showCharCount: boolean;
3305
+ mask: boolean;
3306
+ autofocus: boolean;
3307
+ spellcheck: boolean;
3308
+ disabled: boolean;
3309
+ tableView: boolean;
3310
+ modalEdit: boolean;
3311
+ multiple: boolean;
3312
+ persistent: boolean;
3313
+ inputFormat: string;
3314
+ protected: boolean;
3315
+ dbIndex: boolean;
3316
+ case: string;
3317
+ encrypted: boolean;
3318
+ redrawOn: string;
3319
+ clearOnHide: boolean;
3320
+ customDefaultValue: string;
3321
+ calculateValue: string;
3322
+ calculateServer: boolean;
3323
+ allowCalculateOverride: boolean;
3324
+ validateOn: string;
3325
+ validate: {
3326
+ required: boolean;
3327
+ pattern: string;
3328
+ customMessage: string;
3329
+ custom: string;
3330
+ customPrivate: boolean;
3331
+ json: string;
3332
+ minLength: string;
3333
+ maxLength: string;
3334
+ strictDateValidation: boolean;
3335
+ multiple: boolean;
3336
+ unique: boolean;
3337
+ minWords?: undefined;
3338
+ maxWords?: undefined;
3339
+ min?: undefined;
3340
+ max?: undefined;
3341
+ step?: undefined;
3342
+ integer?: undefined;
3343
+ };
3344
+ unique: boolean;
3345
+ errorLabel: string;
3346
+ key: string;
3347
+ tags: never[];
3348
+ properties: {};
3349
+ conditional: {
3350
+ show: null;
3351
+ when: null;
3352
+ eq: string;
3353
+ json: string;
3354
+ };
3355
+ customConditional: string;
3356
+ logic: never[];
3357
+ attributes: {};
3358
+ overlay: {
3359
+ style: string;
3360
+ page: string;
3361
+ left: string;
3362
+ top: string;
3363
+ width: string;
3364
+ height: string;
3365
+ };
3366
+ type: string;
3367
+ input: boolean;
3368
+ refreshOn: string;
3369
+ inputType: string;
3370
+ id: string;
3371
+ defaultValue: string;
3372
+ editor?: undefined;
3373
+ autoExpand?: undefined;
3374
+ fixedSize?: undefined;
3375
+ rows?: undefined;
3376
+ wysiwyg?: undefined;
3377
+ delimiter?: undefined;
3378
+ requireDecimal?: undefined;
3379
+ shortcut?: undefined;
3380
+ name?: undefined;
3381
+ value?: undefined;
3382
+ dataGridLabel?: undefined;
3383
+ optionsLabelPosition?: undefined;
3384
+ inline?: undefined;
3385
+ values?: undefined;
3386
+ minSelectedCountMessage?: undefined;
3387
+ maxSelectedCountMessage?: undefined;
3388
+ fieldSet?: undefined;
3389
+ dataType?: undefined;
3390
+ uniqueOptions?: undefined;
3391
+ dataSrc?: undefined;
3392
+ data?: undefined;
3393
+ valueProperty?: undefined;
3394
+ idPath?: undefined;
3395
+ template?: undefined;
3396
+ refreshOnBlur?: undefined;
3397
+ clearOnRefresh?: undefined;
3398
+ searchEnabled?: undefined;
3399
+ selectThreshold?: undefined;
3400
+ readOnlyValue?: undefined;
3401
+ customOptions?: undefined;
3402
+ useExactSearch?: undefined;
3403
+ indexeddb?: undefined;
3404
+ selectFields?: undefined;
3405
+ searchField?: undefined;
3406
+ minSearch?: undefined;
3407
+ filter?: undefined;
3408
+ limit?: undefined;
3409
+ lazyLoad?: undefined;
3410
+ authenticate?: undefined;
3411
+ searchThreshold?: undefined;
3412
+ fuseOptions?: undefined;
3413
+ kickbox?: undefined;
3414
+ delimeter?: undefined;
3415
+ maxTags?: undefined;
3416
+ storeas?: undefined;
3417
+ enableManualMode?: undefined;
3418
+ disableClearIcon?: undefined;
3419
+ provider?: undefined;
3420
+ manualModeViewString?: undefined;
3421
+ switchToManualModeLabel?: undefined;
3422
+ tree?: undefined;
3423
+ components?: undefined;
3424
+ providerOptions?: undefined;
3425
+ displayInTimezone?: undefined;
3426
+ useLocaleSettings?: undefined;
3427
+ allowInput?: undefined;
3428
+ format?: undefined;
3429
+ enableDate?: undefined;
3430
+ enableMinDateInput?: undefined;
3431
+ datePicker?: undefined;
3432
+ enableMaxDateInput?: undefined;
3433
+ enableTime?: undefined;
3434
+ timePicker?: undefined;
3435
+ defaultDate?: undefined;
3436
+ timezone?: undefined;
3437
+ datepickerMode?: undefined;
3438
+ hideInputLabels?: undefined;
3439
+ inputsLabelPosition?: undefined;
3440
+ fields?: undefined;
3441
+ dayFirst?: undefined;
3442
+ maxDate?: undefined;
3443
+ minDate?: undefined;
3444
+ currency?: undefined;
3445
+ rowDrafts?: undefined;
3446
+ displayAsTable?: undefined;
3447
+ size?: undefined;
3448
+ block?: undefined;
3449
+ action?: undefined;
3450
+ disableOnInvalid?: undefined;
3451
+ theme?: undefined;
3452
+ leftIcon?: undefined;
3453
+ rightIcon?: undefined;
3454
+ } | {
3455
+ label: string;
3456
+ labelPosition: string;
3457
+ placeholder: string;
3458
+ description: string;
3459
+ tooltip: string;
3460
+ prefix: string;
3461
+ suffix: string;
3462
+ widget: {
3463
+ type: string;
3464
+ displayInTimezone?: undefined;
3465
+ locale?: undefined;
3466
+ useLocaleSettings?: undefined;
3467
+ allowInput?: undefined;
3468
+ mode?: undefined;
3469
+ enableTime?: undefined;
3470
+ noCalendar?: undefined;
3471
+ format?: undefined;
3472
+ hourIncrement?: undefined;
3473
+ minuteIncrement?: undefined;
3474
+ minDate?: undefined;
3475
+ disabledDates?: undefined;
3476
+ disableWeekends?: undefined;
3477
+ disableWeekdays?: undefined;
3478
+ disableFunction?: undefined;
3479
+ maxDate?: undefined;
3480
+ };
3481
+ editor: string;
3482
+ autoExpand: boolean;
3483
+ customClass: string;
3484
+ tabindex: string;
3485
+ autocomplete: string;
3486
+ hidden: boolean;
3487
+ hideLabel: boolean;
3488
+ showWordCount: boolean;
3489
+ showCharCount: boolean;
3490
+ autofocus: boolean;
3491
+ spellcheck: boolean;
3492
+ disabled: boolean;
3493
+ tableView: boolean;
3494
+ modalEdit: boolean;
3495
+ multiple: boolean;
3496
+ persistent: boolean;
3497
+ inputFormat: string;
3498
+ protected: boolean;
3499
+ dbIndex: boolean;
3500
+ case: string;
3501
+ encrypted: boolean;
3502
+ redrawOn: string;
3503
+ clearOnHide: boolean;
3504
+ customDefaultValue: string;
3505
+ calculateValue: string;
3506
+ calculateServer: boolean;
3507
+ allowCalculateOverride: boolean;
3508
+ validateOn: string;
3509
+ validate: {
3510
+ required: boolean;
3511
+ pattern: string;
3512
+ customMessage: string;
3513
+ custom: string;
3514
+ customPrivate: boolean;
3515
+ json: string;
3516
+ minLength: string;
3517
+ maxLength: string;
3518
+ minWords: string;
3519
+ maxWords: string;
3520
+ strictDateValidation: boolean;
3521
+ multiple: boolean;
3522
+ unique: boolean;
3523
+ min?: undefined;
3524
+ max?: undefined;
3525
+ step?: undefined;
3526
+ integer?: undefined;
3527
+ };
3528
+ unique: boolean;
3529
+ errorLabel: string;
3530
+ key: string;
3531
+ tags: never[];
3532
+ properties: {};
3533
+ conditional: {
3534
+ show: null;
3535
+ when: null;
3536
+ eq: string;
3537
+ json: string;
3538
+ };
3539
+ customConditional: string;
3540
+ logic: never[];
3541
+ fixedSize: boolean;
3542
+ overlay: {
3543
+ style: string;
3544
+ page: string;
3545
+ left: string;
3546
+ top: string;
3547
+ width: string;
3548
+ height: string;
3549
+ };
3550
+ attributes: {};
3551
+ type: string;
3552
+ rows: number;
3553
+ wysiwyg: boolean;
3554
+ input: boolean;
3555
+ refreshOn: string;
3556
+ allowMultipleMasks: boolean;
3557
+ mask: boolean;
3558
+ inputType: string;
3559
+ inputMask: string;
3560
+ id: string;
3561
+ defaultValue: string;
3562
+ delimiter?: undefined;
3563
+ requireDecimal?: undefined;
3564
+ shortcut?: undefined;
3565
+ name?: undefined;
3566
+ value?: undefined;
3567
+ dataGridLabel?: undefined;
3568
+ optionsLabelPosition?: undefined;
3569
+ inline?: undefined;
3570
+ values?: undefined;
3571
+ minSelectedCountMessage?: undefined;
3572
+ maxSelectedCountMessage?: undefined;
3573
+ fieldSet?: undefined;
3574
+ dataType?: undefined;
3575
+ uniqueOptions?: undefined;
3576
+ dataSrc?: undefined;
3577
+ data?: undefined;
3578
+ valueProperty?: undefined;
3579
+ idPath?: undefined;
3580
+ template?: undefined;
3581
+ refreshOnBlur?: undefined;
3582
+ clearOnRefresh?: undefined;
3583
+ searchEnabled?: undefined;
3584
+ selectThreshold?: undefined;
3585
+ readOnlyValue?: undefined;
3586
+ customOptions?: undefined;
3587
+ useExactSearch?: undefined;
3588
+ indexeddb?: undefined;
3589
+ selectFields?: undefined;
3590
+ searchField?: undefined;
3591
+ minSearch?: undefined;
3592
+ filter?: undefined;
3593
+ limit?: undefined;
3594
+ lazyLoad?: undefined;
3595
+ authenticate?: undefined;
3596
+ searchThreshold?: undefined;
3597
+ fuseOptions?: undefined;
3598
+ kickbox?: undefined;
3599
+ delimeter?: undefined;
3600
+ maxTags?: undefined;
3601
+ storeas?: undefined;
3602
+ enableManualMode?: undefined;
3603
+ disableClearIcon?: undefined;
3604
+ provider?: undefined;
3605
+ manualModeViewString?: undefined;
3606
+ switchToManualModeLabel?: undefined;
3607
+ tree?: undefined;
3608
+ components?: undefined;
3609
+ providerOptions?: undefined;
3610
+ displayInTimezone?: undefined;
3611
+ useLocaleSettings?: undefined;
3612
+ allowInput?: undefined;
3613
+ format?: undefined;
3614
+ enableDate?: undefined;
3615
+ enableMinDateInput?: undefined;
3616
+ datePicker?: undefined;
3617
+ enableMaxDateInput?: undefined;
3618
+ enableTime?: undefined;
3619
+ timePicker?: undefined;
3620
+ defaultDate?: undefined;
3621
+ timezone?: undefined;
3622
+ datepickerMode?: undefined;
3623
+ hideInputLabels?: undefined;
3624
+ inputsLabelPosition?: undefined;
3625
+ fields?: undefined;
3626
+ dayFirst?: undefined;
3627
+ maxDate?: undefined;
3628
+ minDate?: undefined;
3629
+ currency?: undefined;
3630
+ rowDrafts?: undefined;
3631
+ displayAsTable?: undefined;
3632
+ size?: undefined;
3633
+ block?: undefined;
3634
+ action?: undefined;
3635
+ disableOnInvalid?: undefined;
3636
+ theme?: undefined;
3637
+ leftIcon?: undefined;
3638
+ rightIcon?: undefined;
3639
+ } | {
3640
+ label: string;
3641
+ labelPosition: string;
3642
+ placeholder: string;
3643
+ description: string;
3644
+ tooltip: string;
3645
+ prefix: string;
3646
+ suffix: string;
3647
+ widget: {
3648
+ type: string;
3649
+ displayInTimezone?: undefined;
3650
+ locale?: undefined;
3651
+ useLocaleSettings?: undefined;
3652
+ allowInput?: undefined;
3653
+ mode?: undefined;
3654
+ enableTime?: undefined;
3655
+ noCalendar?: undefined;
3656
+ format?: undefined;
3657
+ hourIncrement?: undefined;
3658
+ minuteIncrement?: undefined;
3659
+ minDate?: undefined;
3660
+ disabledDates?: undefined;
3661
+ disableWeekends?: undefined;
3662
+ disableWeekdays?: undefined;
3663
+ disableFunction?: undefined;
3664
+ maxDate?: undefined;
3665
+ };
3666
+ customClass: string;
3667
+ tabindex: string;
3668
+ autocomplete: string;
3669
+ hidden: boolean;
3670
+ hideLabel: boolean;
3671
+ mask: boolean;
3672
+ autofocus: boolean;
3673
+ spellcheck: boolean;
3674
+ disabled: boolean;
3675
+ tableView: boolean;
3676
+ modalEdit: boolean;
3677
+ multiple: boolean;
3678
+ persistent: boolean;
3679
+ delimiter: boolean;
3680
+ requireDecimal: boolean;
3681
+ inputFormat: string;
3682
+ protected: boolean;
3683
+ dbIndex: boolean;
3684
+ encrypted: boolean;
3685
+ redrawOn: string;
3686
+ clearOnHide: boolean;
3687
+ customDefaultValue: string;
3688
+ calculateValue: string;
3689
+ calculateServer: boolean;
3690
+ allowCalculateOverride: boolean;
3691
+ validateOn: string;
3692
+ validate: {
3693
+ required: boolean;
3694
+ customMessage: string;
3695
+ custom: string;
3696
+ customPrivate: boolean;
3697
+ json: string;
3698
+ min: string;
3699
+ max: string;
3700
+ strictDateValidation: boolean;
3701
+ multiple: boolean;
3702
+ unique: boolean;
3703
+ step: string;
3704
+ integer: string;
3705
+ pattern?: undefined;
3706
+ minLength?: undefined;
3707
+ maxLength?: undefined;
3708
+ minWords?: undefined;
3709
+ maxWords?: undefined;
3710
+ };
3711
+ errorLabel: string;
3712
+ key: string;
3713
+ tags: never[];
3714
+ properties: {};
3715
+ conditional: {
3716
+ show: null;
3717
+ when: null;
3718
+ eq: string;
3719
+ json: string;
3720
+ };
3721
+ customConditional: string;
3722
+ logic: never[];
3723
+ attributes: {};
3724
+ overlay: {
3725
+ style: string;
3726
+ page: string;
3727
+ left: string;
3728
+ top: string;
3729
+ width: string;
3730
+ height: string;
3731
+ };
3732
+ type: string;
3733
+ input: boolean;
3734
+ unique: boolean;
3735
+ refreshOn: string;
3736
+ showCharCount: boolean;
3737
+ showWordCount: boolean;
3738
+ allowMultipleMasks: boolean;
3739
+ id: string;
3740
+ defaultValue: null;
3741
+ inputMask?: undefined;
3742
+ case?: undefined;
3743
+ inputType?: undefined;
3744
+ editor?: undefined;
3745
+ autoExpand?: undefined;
3746
+ fixedSize?: undefined;
3747
+ rows?: undefined;
3748
+ wysiwyg?: undefined;
3749
+ shortcut?: undefined;
3750
+ name?: undefined;
3751
+ value?: undefined;
3752
+ dataGridLabel?: undefined;
3753
+ optionsLabelPosition?: undefined;
3754
+ inline?: undefined;
3755
+ values?: undefined;
3756
+ minSelectedCountMessage?: undefined;
3757
+ maxSelectedCountMessage?: undefined;
3758
+ fieldSet?: undefined;
3759
+ dataType?: undefined;
3760
+ uniqueOptions?: undefined;
3761
+ dataSrc?: undefined;
3762
+ data?: undefined;
3763
+ valueProperty?: undefined;
3764
+ idPath?: undefined;
3765
+ template?: undefined;
3766
+ refreshOnBlur?: undefined;
3767
+ clearOnRefresh?: undefined;
3768
+ searchEnabled?: undefined;
3769
+ selectThreshold?: undefined;
3770
+ readOnlyValue?: undefined;
3771
+ customOptions?: undefined;
3772
+ useExactSearch?: undefined;
3773
+ indexeddb?: undefined;
3774
+ selectFields?: undefined;
3775
+ searchField?: undefined;
3776
+ minSearch?: undefined;
3777
+ filter?: undefined;
3778
+ limit?: undefined;
3779
+ lazyLoad?: undefined;
3780
+ authenticate?: undefined;
3781
+ searchThreshold?: undefined;
3782
+ fuseOptions?: undefined;
3783
+ kickbox?: undefined;
3784
+ delimeter?: undefined;
3785
+ maxTags?: undefined;
3786
+ storeas?: undefined;
3787
+ enableManualMode?: undefined;
3788
+ disableClearIcon?: undefined;
3789
+ provider?: undefined;
3790
+ manualModeViewString?: undefined;
3791
+ switchToManualModeLabel?: undefined;
3792
+ tree?: undefined;
3793
+ components?: undefined;
3794
+ providerOptions?: undefined;
3795
+ displayInTimezone?: undefined;
3796
+ useLocaleSettings?: undefined;
3797
+ allowInput?: undefined;
3798
+ format?: undefined;
3799
+ enableDate?: undefined;
3800
+ enableMinDateInput?: undefined;
3801
+ datePicker?: undefined;
3802
+ enableMaxDateInput?: undefined;
3803
+ enableTime?: undefined;
3804
+ timePicker?: undefined;
3805
+ defaultDate?: undefined;
3806
+ timezone?: undefined;
3807
+ datepickerMode?: undefined;
3808
+ hideInputLabels?: undefined;
3809
+ inputsLabelPosition?: undefined;
3810
+ fields?: undefined;
3811
+ dayFirst?: undefined;
3812
+ maxDate?: undefined;
3813
+ minDate?: undefined;
3814
+ currency?: undefined;
3815
+ rowDrafts?: undefined;
3816
+ displayAsTable?: undefined;
3817
+ size?: undefined;
3818
+ block?: undefined;
3819
+ action?: undefined;
3820
+ disableOnInvalid?: undefined;
3821
+ theme?: undefined;
3822
+ leftIcon?: undefined;
3823
+ rightIcon?: undefined;
3824
+ } | {
3825
+ label: string;
3826
+ labelPosition: string;
3827
+ placeholder: string;
3828
+ description: string;
3829
+ tooltip: string;
3830
+ prefix: string;
3831
+ suffix: string;
3832
+ widget: {
3833
+ type: string;
3834
+ displayInTimezone?: undefined;
3835
+ locale?: undefined;
3836
+ useLocaleSettings?: undefined;
3837
+ allowInput?: undefined;
3838
+ mode?: undefined;
3839
+ enableTime?: undefined;
3840
+ noCalendar?: undefined;
3841
+ format?: undefined;
3842
+ hourIncrement?: undefined;
3843
+ minuteIncrement?: undefined;
3844
+ minDate?: undefined;
3845
+ disabledDates?: undefined;
3846
+ disableWeekends?: undefined;
3847
+ disableWeekdays?: undefined;
3848
+ disableFunction?: undefined;
3849
+ maxDate?: undefined;
3850
+ };
3851
+ customClass: string;
3852
+ tabindex: string;
3853
+ autocomplete: string;
3854
+ hidden: boolean;
3855
+ hideLabel: boolean;
3856
+ showWordCount: boolean;
3857
+ showCharCount: boolean;
3858
+ mask: boolean;
3859
+ autofocus: boolean;
3860
+ spellcheck: boolean;
3861
+ disabled: boolean;
3862
+ tableView: boolean;
3863
+ modalEdit: boolean;
3864
+ case: string;
3865
+ redrawOn: string;
3866
+ clearOnHide: boolean;
3867
+ calculateServer: boolean;
3868
+ allowCalculateOverride: boolean;
3869
+ validateOn: string;
3870
+ validate: {
3871
+ required: boolean;
3872
+ pattern: string;
3873
+ customMessage: string;
3874
+ custom: string;
3875
+ customPrivate: boolean;
3876
+ json: string;
3877
+ minLength: string;
3878
+ maxLength: string;
3879
+ strictDateValidation: boolean;
3880
+ multiple: boolean;
3881
+ unique: boolean;
3882
+ minWords?: undefined;
3883
+ maxWords?: undefined;
3884
+ min?: undefined;
3885
+ max?: undefined;
3886
+ step?: undefined;
3887
+ integer?: undefined;
3888
+ };
3889
+ errorLabel: string;
3890
+ key: string;
3891
+ tags: never[];
3892
+ properties: {};
3893
+ conditional: {
3894
+ show: null;
3895
+ when: null;
3896
+ eq: string;
3897
+ json: string;
3898
+ };
3899
+ customConditional: string;
3900
+ logic: never[];
3901
+ attributes: {};
3902
+ overlay: {
3903
+ style: string;
3904
+ page: string;
3905
+ left: string;
3906
+ top: string;
3907
+ width: string;
3908
+ height: string;
3909
+ };
3910
+ type: string;
3911
+ input: boolean;
3912
+ multiple: boolean;
3913
+ defaultValue: null;
3914
+ protected: boolean;
3915
+ unique: boolean;
3916
+ persistent: boolean;
3917
+ refreshOn: string;
3918
+ dbIndex: boolean;
3919
+ customDefaultValue: string;
3920
+ calculateValue: string;
3921
+ encrypted: boolean;
3922
+ allowMultipleMasks: boolean;
3923
+ inputType: string;
3924
+ inputFormat: string;
3925
+ inputMask: string;
3926
+ id: string;
3927
+ editor?: undefined;
3928
+ autoExpand?: undefined;
3929
+ fixedSize?: undefined;
3930
+ rows?: undefined;
3931
+ wysiwyg?: undefined;
3932
+ delimiter?: undefined;
3933
+ requireDecimal?: undefined;
3934
+ shortcut?: undefined;
3935
+ name?: undefined;
3936
+ value?: undefined;
3937
+ dataGridLabel?: undefined;
3938
+ optionsLabelPosition?: undefined;
3939
+ inline?: undefined;
3940
+ values?: undefined;
3941
+ minSelectedCountMessage?: undefined;
3942
+ maxSelectedCountMessage?: undefined;
3943
+ fieldSet?: undefined;
3944
+ dataType?: undefined;
3945
+ uniqueOptions?: undefined;
3946
+ dataSrc?: undefined;
3947
+ data?: undefined;
3948
+ valueProperty?: undefined;
3949
+ idPath?: undefined;
3950
+ template?: undefined;
3951
+ refreshOnBlur?: undefined;
3952
+ clearOnRefresh?: undefined;
3953
+ searchEnabled?: undefined;
3954
+ selectThreshold?: undefined;
3955
+ readOnlyValue?: undefined;
3956
+ customOptions?: undefined;
3957
+ useExactSearch?: undefined;
3958
+ indexeddb?: undefined;
3959
+ selectFields?: undefined;
3960
+ searchField?: undefined;
3961
+ minSearch?: undefined;
3962
+ filter?: undefined;
3963
+ limit?: undefined;
3964
+ lazyLoad?: undefined;
3965
+ authenticate?: undefined;
3966
+ searchThreshold?: undefined;
3967
+ fuseOptions?: undefined;
3968
+ kickbox?: undefined;
3969
+ delimeter?: undefined;
3970
+ maxTags?: undefined;
3971
+ storeas?: undefined;
3972
+ enableManualMode?: undefined;
3973
+ disableClearIcon?: undefined;
3974
+ provider?: undefined;
3975
+ manualModeViewString?: undefined;
3976
+ switchToManualModeLabel?: undefined;
3977
+ tree?: undefined;
3978
+ components?: undefined;
3979
+ providerOptions?: undefined;
3980
+ displayInTimezone?: undefined;
3981
+ useLocaleSettings?: undefined;
3982
+ allowInput?: undefined;
3983
+ format?: undefined;
3984
+ enableDate?: undefined;
3985
+ enableMinDateInput?: undefined;
3986
+ datePicker?: undefined;
3987
+ enableMaxDateInput?: undefined;
3988
+ enableTime?: undefined;
3989
+ timePicker?: undefined;
3990
+ defaultDate?: undefined;
3991
+ timezone?: undefined;
3992
+ datepickerMode?: undefined;
3993
+ hideInputLabels?: undefined;
3994
+ inputsLabelPosition?: undefined;
3995
+ fields?: undefined;
3996
+ dayFirst?: undefined;
3997
+ maxDate?: undefined;
3998
+ minDate?: undefined;
3999
+ currency?: undefined;
4000
+ rowDrafts?: undefined;
4001
+ displayAsTable?: undefined;
4002
+ size?: undefined;
4003
+ block?: undefined;
4004
+ action?: undefined;
4005
+ disableOnInvalid?: undefined;
4006
+ theme?: undefined;
4007
+ leftIcon?: undefined;
4008
+ rightIcon?: undefined;
4009
+ } | {
4010
+ label: string;
4011
+ description: string;
4012
+ tooltip: string;
4013
+ shortcut: string;
4014
+ inputType: string;
4015
+ customClass: string;
4016
+ tabindex: string;
4017
+ hidden: boolean;
4018
+ hideLabel: boolean;
4019
+ autofocus: boolean;
4020
+ disabled: boolean;
4021
+ tableView: boolean;
4022
+ modalEdit: boolean;
4023
+ defaultValue: boolean;
4024
+ persistent: boolean;
4025
+ protected: boolean;
4026
+ dbIndex: boolean;
4027
+ encrypted: boolean;
4028
+ redrawOn: string;
4029
+ clearOnHide: boolean;
4030
+ customDefaultValue: string;
4031
+ calculateValue: string;
4032
+ calculateServer: boolean;
4033
+ allowCalculateOverride: boolean;
4034
+ validate: {
4035
+ required: boolean;
4036
+ customMessage: string;
4037
+ custom: string;
4038
+ customPrivate: boolean;
4039
+ json: string;
4040
+ strictDateValidation: boolean;
4041
+ multiple: boolean;
4042
+ unique: boolean;
4043
+ pattern?: undefined;
4044
+ minLength?: undefined;
4045
+ maxLength?: undefined;
4046
+ minWords?: undefined;
4047
+ maxWords?: undefined;
4048
+ min?: undefined;
4049
+ max?: undefined;
4050
+ step?: undefined;
4051
+ integer?: undefined;
4052
+ };
4053
+ errorLabel: string;
4054
+ key: string;
4055
+ tags: never[];
4056
+ properties: {};
4057
+ conditional: {
4058
+ show: null;
4059
+ when: null;
4060
+ eq: string;
4061
+ json: string;
4062
+ };
4063
+ customConditional: string;
4064
+ logic: never[];
4065
+ attributes: {};
4066
+ overlay: {
4067
+ style: string;
4068
+ page: string;
4069
+ left: string;
4070
+ top: string;
4071
+ width: string;
4072
+ height: string;
4073
+ };
4074
+ type: string;
4075
+ name: string;
4076
+ value: string;
4077
+ input: boolean;
4078
+ placeholder: string;
4079
+ prefix: string;
4080
+ suffix: string;
4081
+ multiple: boolean;
4082
+ unique: boolean;
4083
+ refreshOn: string;
4084
+ labelPosition: string;
4085
+ widget: null;
4086
+ validateOn: string;
4087
+ showCharCount: boolean;
4088
+ showWordCount: boolean;
4089
+ allowMultipleMasks: boolean;
4090
+ dataGridLabel: boolean;
4091
+ id: string;
4092
+ inputMask?: undefined;
4093
+ autocomplete?: undefined;
4094
+ mask?: undefined;
4095
+ spellcheck?: undefined;
4096
+ inputFormat?: undefined;
4097
+ case?: undefined;
4098
+ editor?: undefined;
4099
+ autoExpand?: undefined;
4100
+ fixedSize?: undefined;
4101
+ rows?: undefined;
4102
+ wysiwyg?: undefined;
4103
+ delimiter?: undefined;
4104
+ requireDecimal?: undefined;
4105
+ optionsLabelPosition?: undefined;
4106
+ inline?: undefined;
4107
+ values?: undefined;
4108
+ minSelectedCountMessage?: undefined;
4109
+ maxSelectedCountMessage?: undefined;
4110
+ fieldSet?: undefined;
4111
+ dataType?: undefined;
4112
+ uniqueOptions?: undefined;
4113
+ dataSrc?: undefined;
4114
+ data?: undefined;
4115
+ valueProperty?: undefined;
4116
+ idPath?: undefined;
4117
+ template?: undefined;
4118
+ refreshOnBlur?: undefined;
4119
+ clearOnRefresh?: undefined;
4120
+ searchEnabled?: undefined;
4121
+ selectThreshold?: undefined;
4122
+ readOnlyValue?: undefined;
4123
+ customOptions?: undefined;
4124
+ useExactSearch?: undefined;
4125
+ indexeddb?: undefined;
4126
+ selectFields?: undefined;
4127
+ searchField?: undefined;
4128
+ minSearch?: undefined;
4129
+ filter?: undefined;
4130
+ limit?: undefined;
4131
+ lazyLoad?: undefined;
4132
+ authenticate?: undefined;
4133
+ searchThreshold?: undefined;
4134
+ fuseOptions?: undefined;
4135
+ kickbox?: undefined;
4136
+ delimeter?: undefined;
4137
+ maxTags?: undefined;
4138
+ storeas?: undefined;
4139
+ enableManualMode?: undefined;
4140
+ disableClearIcon?: undefined;
4141
+ provider?: undefined;
4142
+ manualModeViewString?: undefined;
4143
+ switchToManualModeLabel?: undefined;
4144
+ tree?: undefined;
4145
+ components?: undefined;
4146
+ providerOptions?: undefined;
4147
+ displayInTimezone?: undefined;
4148
+ useLocaleSettings?: undefined;
4149
+ allowInput?: undefined;
4150
+ format?: undefined;
4151
+ enableDate?: undefined;
4152
+ enableMinDateInput?: undefined;
4153
+ datePicker?: undefined;
4154
+ enableMaxDateInput?: undefined;
4155
+ enableTime?: undefined;
4156
+ timePicker?: undefined;
4157
+ defaultDate?: undefined;
4158
+ timezone?: undefined;
4159
+ datepickerMode?: undefined;
4160
+ hideInputLabels?: undefined;
4161
+ inputsLabelPosition?: undefined;
4162
+ fields?: undefined;
4163
+ dayFirst?: undefined;
4164
+ maxDate?: undefined;
4165
+ minDate?: undefined;
4166
+ currency?: undefined;
4167
+ rowDrafts?: undefined;
4168
+ displayAsTable?: undefined;
4169
+ size?: undefined;
4170
+ block?: undefined;
4171
+ action?: undefined;
4172
+ disableOnInvalid?: undefined;
4173
+ theme?: undefined;
4174
+ leftIcon?: undefined;
4175
+ rightIcon?: undefined;
4176
+ } | {
4177
+ label: string;
4178
+ labelPosition: string;
4179
+ optionsLabelPosition: string;
4180
+ description: string;
4181
+ tooltip: string;
4182
+ customClass: string;
4183
+ tabindex: string;
4184
+ inline: boolean;
4185
+ hidden: boolean;
4186
+ hideLabel: boolean;
4187
+ autofocus: boolean;
4188
+ disabled: boolean;
4189
+ tableView: boolean;
4190
+ modalEdit: boolean;
4191
+ values: {
4192
+ label: string;
4193
+ value: string;
4194
+ shortcut: string;
4195
+ }[];
4196
+ persistent: boolean;
4197
+ protected: boolean;
4198
+ dbIndex: boolean;
4199
+ encrypted: boolean;
4200
+ redrawOn: string;
4201
+ clearOnHide: boolean;
4202
+ customDefaultValue: string;
4203
+ calculateValue: string;
4204
+ calculateServer: boolean;
4205
+ allowCalculateOverride: boolean;
4206
+ validate: {
4207
+ required: boolean;
4208
+ customMessage: string;
4209
+ custom: string;
4210
+ customPrivate: boolean;
4211
+ json: string;
4212
+ strictDateValidation: boolean;
4213
+ multiple: boolean;
4214
+ unique: boolean;
4215
+ pattern?: undefined;
4216
+ minLength?: undefined;
4217
+ maxLength?: undefined;
4218
+ minWords?: undefined;
4219
+ maxWords?: undefined;
4220
+ min?: undefined;
4221
+ max?: undefined;
4222
+ step?: undefined;
4223
+ integer?: undefined;
4224
+ };
4225
+ errorLabel: string;
4226
+ minSelectedCountMessage: string;
4227
+ maxSelectedCountMessage: string;
4228
+ key: string;
4229
+ tags: never[];
4230
+ properties: {};
4231
+ conditional: {
4232
+ show: null;
4233
+ when: null;
4234
+ eq: string;
4235
+ json: string;
4236
+ };
4237
+ customConditional: string;
4238
+ logic: never[];
4239
+ attributes: {};
4240
+ overlay: {
4241
+ style: string;
4242
+ page: string;
4243
+ left: string;
4244
+ top: string;
4245
+ width: string;
4246
+ height: string;
4247
+ };
4248
+ type: string;
4249
+ input: boolean;
4250
+ placeholder: string;
4251
+ prefix: string;
4252
+ suffix: string;
4253
+ multiple: boolean;
4254
+ unique: boolean;
4255
+ refreshOn: string;
4256
+ widget: null;
4257
+ validateOn: string;
4258
+ showCharCount: boolean;
4259
+ showWordCount: boolean;
4260
+ allowMultipleMasks: boolean;
4261
+ inputType: string;
4262
+ fieldSet: boolean;
4263
+ id: string;
4264
+ defaultValue: {
4265
+ "": boolean;
4266
+ };
4267
+ inputMask?: undefined;
4268
+ autocomplete?: undefined;
4269
+ mask?: undefined;
4270
+ spellcheck?: undefined;
4271
+ inputFormat?: undefined;
4272
+ case?: undefined;
4273
+ editor?: undefined;
4274
+ autoExpand?: undefined;
4275
+ fixedSize?: undefined;
4276
+ rows?: undefined;
4277
+ wysiwyg?: undefined;
4278
+ delimiter?: undefined;
4279
+ requireDecimal?: undefined;
4280
+ shortcut?: undefined;
4281
+ name?: undefined;
4282
+ value?: undefined;
4283
+ dataGridLabel?: undefined;
4284
+ dataType?: undefined;
4285
+ uniqueOptions?: undefined;
4286
+ dataSrc?: undefined;
4287
+ data?: undefined;
4288
+ valueProperty?: undefined;
4289
+ idPath?: undefined;
4290
+ template?: undefined;
4291
+ refreshOnBlur?: undefined;
4292
+ clearOnRefresh?: undefined;
4293
+ searchEnabled?: undefined;
4294
+ selectThreshold?: undefined;
4295
+ readOnlyValue?: undefined;
4296
+ customOptions?: undefined;
4297
+ useExactSearch?: undefined;
4298
+ indexeddb?: undefined;
4299
+ selectFields?: undefined;
4300
+ searchField?: undefined;
4301
+ minSearch?: undefined;
4302
+ filter?: undefined;
4303
+ limit?: undefined;
4304
+ lazyLoad?: undefined;
4305
+ authenticate?: undefined;
4306
+ searchThreshold?: undefined;
4307
+ fuseOptions?: undefined;
4308
+ kickbox?: undefined;
4309
+ delimeter?: undefined;
4310
+ maxTags?: undefined;
4311
+ storeas?: undefined;
4312
+ enableManualMode?: undefined;
4313
+ disableClearIcon?: undefined;
4314
+ provider?: undefined;
4315
+ manualModeViewString?: undefined;
4316
+ switchToManualModeLabel?: undefined;
4317
+ tree?: undefined;
4318
+ components?: undefined;
4319
+ providerOptions?: undefined;
4320
+ displayInTimezone?: undefined;
4321
+ useLocaleSettings?: undefined;
4322
+ allowInput?: undefined;
4323
+ format?: undefined;
4324
+ enableDate?: undefined;
4325
+ enableMinDateInput?: undefined;
4326
+ datePicker?: undefined;
4327
+ enableMaxDateInput?: undefined;
4328
+ enableTime?: undefined;
4329
+ timePicker?: undefined;
4330
+ defaultDate?: undefined;
4331
+ timezone?: undefined;
4332
+ datepickerMode?: undefined;
4333
+ hideInputLabels?: undefined;
4334
+ inputsLabelPosition?: undefined;
4335
+ fields?: undefined;
4336
+ dayFirst?: undefined;
4337
+ maxDate?: undefined;
4338
+ minDate?: undefined;
4339
+ currency?: undefined;
4340
+ rowDrafts?: undefined;
4341
+ displayAsTable?: undefined;
4342
+ size?: undefined;
4343
+ block?: undefined;
4344
+ action?: undefined;
4345
+ disableOnInvalid?: undefined;
4346
+ theme?: undefined;
4347
+ leftIcon?: undefined;
4348
+ rightIcon?: undefined;
4349
+ } | {
4350
+ label: string;
4351
+ labelPosition: string;
4352
+ optionsLabelPosition: string;
4353
+ description: string;
4354
+ tooltip: string;
4355
+ customClass: string;
4356
+ tabindex: string;
4357
+ inline: boolean;
4358
+ hidden: boolean;
4359
+ hideLabel: boolean;
4360
+ autofocus: boolean;
4361
+ disabled: boolean;
4362
+ tableView: boolean;
4363
+ modalEdit: boolean;
4364
+ values: {
4365
+ label: string;
4366
+ value: string;
4367
+ shortcut: string;
4368
+ }[];
4369
+ dataType: string;
4370
+ persistent: boolean;
4371
+ protected: boolean;
4372
+ dbIndex: boolean;
4373
+ encrypted: boolean;
4374
+ redrawOn: string;
4375
+ clearOnHide: boolean;
4376
+ customDefaultValue: string;
4377
+ calculateValue: string;
4378
+ calculateServer: boolean;
4379
+ allowCalculateOverride: boolean;
4380
+ validate: {
4381
+ required: boolean;
4382
+ customMessage: string;
4383
+ custom: string;
4384
+ customPrivate: boolean;
4385
+ json: string;
4386
+ strictDateValidation: boolean;
4387
+ multiple: boolean;
4388
+ unique: boolean;
4389
+ pattern?: undefined;
4390
+ minLength?: undefined;
4391
+ maxLength?: undefined;
4392
+ minWords?: undefined;
4393
+ maxWords?: undefined;
4394
+ min?: undefined;
4395
+ max?: undefined;
4396
+ step?: undefined;
4397
+ integer?: undefined;
4398
+ };
4399
+ errorLabel: string;
4400
+ key: string;
4401
+ tags: never[];
4402
+ properties: {};
4403
+ conditional: {
4404
+ show: null;
4405
+ when: null;
4406
+ eq: string;
4407
+ json: string;
4408
+ };
4409
+ customConditional: string;
4410
+ logic: never[];
4411
+ attributes: {};
4412
+ overlay: {
4413
+ style: string;
4414
+ page: string;
4415
+ left: string;
4416
+ top: string;
4417
+ width: string;
4418
+ height: string;
4419
+ };
4420
+ type: string;
4421
+ input: boolean;
4422
+ placeholder: string;
4423
+ prefix: string;
4424
+ suffix: string;
4425
+ multiple: boolean;
4426
+ unique: boolean;
4427
+ refreshOn: string;
4428
+ widget: null;
4429
+ validateOn: string;
4430
+ showCharCount: boolean;
4431
+ showWordCount: boolean;
4432
+ allowMultipleMasks: boolean;
4433
+ inputType: string;
4434
+ fieldSet: boolean;
4435
+ id: string;
4436
+ defaultValue: string;
4437
+ inputMask?: undefined;
4438
+ autocomplete?: undefined;
4439
+ mask?: undefined;
4440
+ spellcheck?: undefined;
4441
+ inputFormat?: undefined;
4442
+ case?: undefined;
4443
+ editor?: undefined;
4444
+ autoExpand?: undefined;
4445
+ fixedSize?: undefined;
4446
+ rows?: undefined;
4447
+ wysiwyg?: undefined;
4448
+ delimiter?: undefined;
4449
+ requireDecimal?: undefined;
4450
+ shortcut?: undefined;
4451
+ name?: undefined;
4452
+ value?: undefined;
4453
+ dataGridLabel?: undefined;
4454
+ minSelectedCountMessage?: undefined;
4455
+ maxSelectedCountMessage?: undefined;
4456
+ uniqueOptions?: undefined;
4457
+ dataSrc?: undefined;
4458
+ data?: undefined;
4459
+ valueProperty?: undefined;
4460
+ idPath?: undefined;
4461
+ template?: undefined;
4462
+ refreshOnBlur?: undefined;
4463
+ clearOnRefresh?: undefined;
4464
+ searchEnabled?: undefined;
4465
+ selectThreshold?: undefined;
4466
+ readOnlyValue?: undefined;
4467
+ customOptions?: undefined;
4468
+ useExactSearch?: undefined;
4469
+ indexeddb?: undefined;
4470
+ selectFields?: undefined;
4471
+ searchField?: undefined;
4472
+ minSearch?: undefined;
4473
+ filter?: undefined;
4474
+ limit?: undefined;
4475
+ lazyLoad?: undefined;
4476
+ authenticate?: undefined;
4477
+ searchThreshold?: undefined;
4478
+ fuseOptions?: undefined;
4479
+ kickbox?: undefined;
4480
+ delimeter?: undefined;
4481
+ maxTags?: undefined;
4482
+ storeas?: undefined;
4483
+ enableManualMode?: undefined;
4484
+ disableClearIcon?: undefined;
4485
+ provider?: undefined;
4486
+ manualModeViewString?: undefined;
4487
+ switchToManualModeLabel?: undefined;
4488
+ tree?: undefined;
4489
+ components?: undefined;
4490
+ providerOptions?: undefined;
4491
+ displayInTimezone?: undefined;
4492
+ useLocaleSettings?: undefined;
4493
+ allowInput?: undefined;
4494
+ format?: undefined;
4495
+ enableDate?: undefined;
4496
+ enableMinDateInput?: undefined;
4497
+ datePicker?: undefined;
4498
+ enableMaxDateInput?: undefined;
4499
+ enableTime?: undefined;
4500
+ timePicker?: undefined;
4501
+ defaultDate?: undefined;
4502
+ timezone?: undefined;
4503
+ datepickerMode?: undefined;
4504
+ hideInputLabels?: undefined;
4505
+ inputsLabelPosition?: undefined;
4506
+ fields?: undefined;
4507
+ dayFirst?: undefined;
4508
+ maxDate?: undefined;
4509
+ minDate?: undefined;
4510
+ currency?: undefined;
4511
+ rowDrafts?: undefined;
4512
+ displayAsTable?: undefined;
4513
+ size?: undefined;
4514
+ block?: undefined;
4515
+ action?: undefined;
4516
+ disableOnInvalid?: undefined;
4517
+ theme?: undefined;
4518
+ leftIcon?: undefined;
4519
+ rightIcon?: undefined;
4520
+ } | {
4521
+ label: string;
4522
+ labelPosition: string;
4523
+ widget: string;
4524
+ placeholder: string;
4525
+ description: string;
4526
+ tooltip: string;
4527
+ customClass: string;
4528
+ tabindex: string;
4529
+ hidden: boolean;
4530
+ hideLabel: boolean;
4531
+ uniqueOptions: boolean;
4532
+ autofocus: boolean;
4533
+ disabled: boolean;
4534
+ tableView: boolean;
4535
+ modalEdit: boolean;
4536
+ multiple: boolean;
4537
+ dataSrc: string;
4538
+ data: {
4539
+ values: {
4540
+ label: string;
4541
+ value: string;
4542
+ }[];
4543
+ resource: string;
4544
+ json: string;
4545
+ url: string;
4546
+ custom: string;
4547
+ };
4548
+ valueProperty: string;
4549
+ dataType: string;
4550
+ idPath: string;
4551
+ template: string;
4552
+ refreshOn: string;
4553
+ refreshOnBlur: string;
4554
+ clearOnRefresh: boolean;
4555
+ searchEnabled: boolean;
4556
+ selectThreshold: number;
4557
+ readOnlyValue: boolean;
4558
+ customOptions: {};
4559
+ useExactSearch: boolean;
4560
+ persistent: boolean;
4561
+ protected: boolean;
4562
+ dbIndex: boolean;
4563
+ encrypted: boolean;
4564
+ clearOnHide: boolean;
4565
+ customDefaultValue: string;
4566
+ calculateValue: string;
4567
+ calculateServer: boolean;
4568
+ allowCalculateOverride: boolean;
4569
+ validateOn: string;
4570
+ validate: {
4571
+ required: boolean;
4572
+ customMessage: string;
4573
+ custom: string;
4574
+ customPrivate: boolean;
4575
+ json: string;
4576
+ strictDateValidation: boolean;
4577
+ multiple: boolean;
4578
+ unique: boolean;
4579
+ pattern?: undefined;
4580
+ minLength?: undefined;
4581
+ maxLength?: undefined;
4582
+ minWords?: undefined;
4583
+ maxWords?: undefined;
4584
+ min?: undefined;
4585
+ max?: undefined;
4586
+ step?: undefined;
4587
+ integer?: undefined;
4588
+ };
4589
+ unique: boolean;
4590
+ errorLabel: string;
4591
+ key: string;
4592
+ tags: never[];
4593
+ properties: {};
4594
+ conditional: {
4595
+ show: null;
4596
+ when: null;
4597
+ eq: string;
4598
+ json: string;
4599
+ };
4600
+ customConditional: string;
4601
+ logic: never[];
4602
+ attributes: {};
4603
+ overlay: {
4604
+ style: string;
4605
+ page: string;
4606
+ left: string;
4607
+ top: string;
4608
+ width: string;
4609
+ height: string;
4610
+ };
4611
+ type: string;
4612
+ indexeddb: {
4613
+ filter: {};
4614
+ };
4615
+ selectFields: string;
4616
+ searchField: string;
4617
+ minSearch: number;
4618
+ filter: string;
4619
+ limit: number;
4620
+ redrawOn: string;
4621
+ input: boolean;
4622
+ prefix: string;
4623
+ suffix: string;
4624
+ showCharCount: boolean;
4625
+ showWordCount: boolean;
4626
+ allowMultipleMasks: boolean;
4627
+ lazyLoad: boolean;
4628
+ authenticate: boolean;
4629
+ searchThreshold: number;
4630
+ fuseOptions: {
4631
+ include: string;
4632
+ threshold: number;
4633
+ };
4634
+ id: string;
4635
+ defaultValue: string;
4636
+ inputMask?: undefined;
4637
+ autocomplete?: undefined;
4638
+ mask?: undefined;
4639
+ spellcheck?: undefined;
4640
+ inputFormat?: undefined;
4641
+ case?: undefined;
4642
+ inputType?: undefined;
4643
+ editor?: undefined;
4644
+ autoExpand?: undefined;
4645
+ fixedSize?: undefined;
4646
+ rows?: undefined;
4647
+ wysiwyg?: undefined;
4648
+ delimiter?: undefined;
4649
+ requireDecimal?: undefined;
4650
+ shortcut?: undefined;
4651
+ name?: undefined;
4652
+ value?: undefined;
4653
+ dataGridLabel?: undefined;
4654
+ optionsLabelPosition?: undefined;
4655
+ inline?: undefined;
4656
+ values?: undefined;
4657
+ minSelectedCountMessage?: undefined;
4658
+ maxSelectedCountMessage?: undefined;
4659
+ fieldSet?: undefined;
4660
+ kickbox?: undefined;
4661
+ delimeter?: undefined;
4662
+ maxTags?: undefined;
4663
+ storeas?: undefined;
4664
+ enableManualMode?: undefined;
4665
+ disableClearIcon?: undefined;
4666
+ provider?: undefined;
4667
+ manualModeViewString?: undefined;
4668
+ switchToManualModeLabel?: undefined;
4669
+ tree?: undefined;
4670
+ components?: undefined;
4671
+ providerOptions?: undefined;
4672
+ displayInTimezone?: undefined;
4673
+ useLocaleSettings?: undefined;
4674
+ allowInput?: undefined;
4675
+ format?: undefined;
4676
+ enableDate?: undefined;
4677
+ enableMinDateInput?: undefined;
4678
+ datePicker?: undefined;
4679
+ enableMaxDateInput?: undefined;
4680
+ enableTime?: undefined;
4681
+ timePicker?: undefined;
4682
+ defaultDate?: undefined;
4683
+ timezone?: undefined;
4684
+ datepickerMode?: undefined;
4685
+ hideInputLabels?: undefined;
4686
+ inputsLabelPosition?: undefined;
4687
+ fields?: undefined;
4688
+ dayFirst?: undefined;
4689
+ maxDate?: undefined;
4690
+ minDate?: undefined;
4691
+ currency?: undefined;
4692
+ rowDrafts?: undefined;
4693
+ displayAsTable?: undefined;
4694
+ size?: undefined;
4695
+ block?: undefined;
4696
+ action?: undefined;
4697
+ disableOnInvalid?: undefined;
4698
+ theme?: undefined;
4699
+ leftIcon?: undefined;
4700
+ rightIcon?: undefined;
4701
+ } | {
4702
+ label: string;
4703
+ labelPosition: string;
4704
+ placeholder: string;
4705
+ description: string;
4706
+ tooltip: string;
4707
+ prefix: string;
4708
+ suffix: string;
4709
+ widget: {
4710
+ type: string;
4711
+ displayInTimezone?: undefined;
4712
+ locale?: undefined;
4713
+ useLocaleSettings?: undefined;
4714
+ allowInput?: undefined;
4715
+ mode?: undefined;
4716
+ enableTime?: undefined;
4717
+ noCalendar?: undefined;
4718
+ format?: undefined;
4719
+ hourIncrement?: undefined;
4720
+ minuteIncrement?: undefined;
4721
+ minDate?: undefined;
4722
+ disabledDates?: undefined;
4723
+ disableWeekends?: undefined;
4724
+ disableWeekdays?: undefined;
4725
+ disableFunction?: undefined;
4726
+ maxDate?: undefined;
4727
+ };
4728
+ customClass: string;
4729
+ tabindex: string;
4730
+ autocomplete: string;
4731
+ hidden: boolean;
4732
+ hideLabel: boolean;
4733
+ mask: boolean;
4734
+ autofocus: boolean;
4735
+ spellcheck: boolean;
4736
+ disabled: boolean;
4737
+ tableView: boolean;
4738
+ modalEdit: boolean;
4739
+ multiple: boolean;
4740
+ persistent: boolean;
4741
+ inputFormat: string;
4742
+ protected: boolean;
4743
+ dbIndex: boolean;
4744
+ case: string;
4745
+ encrypted: boolean;
4746
+ redrawOn: string;
4747
+ clearOnHide: boolean;
4748
+ customDefaultValue: string;
4749
+ calculateValue: string;
4750
+ calculateServer: boolean;
4751
+ allowCalculateOverride: boolean;
4752
+ validateOn: string;
4753
+ validate: {
4754
+ required: boolean;
4755
+ pattern: string;
4756
+ customMessage: string;
4757
+ custom: string;
4758
+ customPrivate: boolean;
4759
+ json: string;
4760
+ minLength: string;
4761
+ maxLength: string;
4762
+ strictDateValidation: boolean;
4763
+ multiple: boolean;
4764
+ unique: boolean;
4765
+ minWords?: undefined;
4766
+ maxWords?: undefined;
4767
+ min?: undefined;
4768
+ max?: undefined;
4769
+ step?: undefined;
4770
+ integer?: undefined;
4771
+ };
4772
+ unique: boolean;
4773
+ kickbox: {
4774
+ enabled: boolean;
4775
+ };
4776
+ errorLabel: string;
4777
+ key: string;
4778
+ tags: never[];
4779
+ properties: {};
4780
+ conditional: {
4781
+ show: null;
4782
+ when: null;
4783
+ eq: string;
4784
+ json: string;
4785
+ };
4786
+ customConditional: string;
4787
+ logic: never[];
4788
+ attributes: {};
4789
+ overlay: {
4790
+ style: string;
4791
+ page: string;
4792
+ left: string;
4793
+ top: string;
4794
+ width: string;
4795
+ height: string;
4796
+ };
4797
+ type: string;
4798
+ input: boolean;
4799
+ refreshOn: string;
4800
+ showCharCount: boolean;
4801
+ showWordCount: boolean;
4802
+ allowMultipleMasks: boolean;
4803
+ inputType: string;
4804
+ inputMask: string;
4805
+ id: string;
4806
+ defaultValue: null;
4807
+ editor?: undefined;
4808
+ autoExpand?: undefined;
4809
+ fixedSize?: undefined;
4810
+ rows?: undefined;
4811
+ wysiwyg?: undefined;
4812
+ delimiter?: undefined;
4813
+ requireDecimal?: undefined;
4814
+ shortcut?: undefined;
4815
+ name?: undefined;
4816
+ value?: undefined;
4817
+ dataGridLabel?: undefined;
4818
+ optionsLabelPosition?: undefined;
4819
+ inline?: undefined;
4820
+ values?: undefined;
4821
+ minSelectedCountMessage?: undefined;
4822
+ maxSelectedCountMessage?: undefined;
4823
+ fieldSet?: undefined;
4824
+ dataType?: undefined;
4825
+ uniqueOptions?: undefined;
4826
+ dataSrc?: undefined;
4827
+ data?: undefined;
4828
+ valueProperty?: undefined;
4829
+ idPath?: undefined;
4830
+ template?: undefined;
4831
+ refreshOnBlur?: undefined;
4832
+ clearOnRefresh?: undefined;
4833
+ searchEnabled?: undefined;
4834
+ selectThreshold?: undefined;
4835
+ readOnlyValue?: undefined;
4836
+ customOptions?: undefined;
4837
+ useExactSearch?: undefined;
4838
+ indexeddb?: undefined;
4839
+ selectFields?: undefined;
4840
+ searchField?: undefined;
4841
+ minSearch?: undefined;
4842
+ filter?: undefined;
4843
+ limit?: undefined;
4844
+ lazyLoad?: undefined;
4845
+ authenticate?: undefined;
4846
+ searchThreshold?: undefined;
4847
+ fuseOptions?: undefined;
4848
+ delimeter?: undefined;
4849
+ maxTags?: undefined;
4850
+ storeas?: undefined;
4851
+ enableManualMode?: undefined;
4852
+ disableClearIcon?: undefined;
4853
+ provider?: undefined;
4854
+ manualModeViewString?: undefined;
4855
+ switchToManualModeLabel?: undefined;
4856
+ tree?: undefined;
4857
+ components?: undefined;
4858
+ providerOptions?: undefined;
4859
+ displayInTimezone?: undefined;
4860
+ useLocaleSettings?: undefined;
4861
+ allowInput?: undefined;
4862
+ format?: undefined;
4863
+ enableDate?: undefined;
4864
+ enableMinDateInput?: undefined;
4865
+ datePicker?: undefined;
4866
+ enableMaxDateInput?: undefined;
4867
+ enableTime?: undefined;
4868
+ timePicker?: undefined;
4869
+ defaultDate?: undefined;
4870
+ timezone?: undefined;
4871
+ datepickerMode?: undefined;
4872
+ hideInputLabels?: undefined;
4873
+ inputsLabelPosition?: undefined;
4874
+ fields?: undefined;
4875
+ dayFirst?: undefined;
4876
+ maxDate?: undefined;
4877
+ minDate?: undefined;
4878
+ currency?: undefined;
4879
+ rowDrafts?: undefined;
4880
+ displayAsTable?: undefined;
4881
+ size?: undefined;
4882
+ block?: undefined;
4883
+ action?: undefined;
4884
+ disableOnInvalid?: undefined;
4885
+ theme?: undefined;
4886
+ leftIcon?: undefined;
4887
+ rightIcon?: undefined;
4888
+ } | {
4889
+ label: string;
4890
+ labelPosition: string;
4891
+ placeholder: string;
4892
+ description: string;
4893
+ tooltip: string;
4894
+ prefix: string;
4895
+ suffix: string;
4896
+ widget: {
4897
+ type: string;
4898
+ displayInTimezone?: undefined;
4899
+ locale?: undefined;
4900
+ useLocaleSettings?: undefined;
4901
+ allowInput?: undefined;
4902
+ mode?: undefined;
4903
+ enableTime?: undefined;
4904
+ noCalendar?: undefined;
4905
+ format?: undefined;
4906
+ hourIncrement?: undefined;
4907
+ minuteIncrement?: undefined;
4908
+ minDate?: undefined;
4909
+ disabledDates?: undefined;
4910
+ disableWeekends?: undefined;
4911
+ disableWeekdays?: undefined;
4912
+ disableFunction?: undefined;
4913
+ maxDate?: undefined;
4914
+ };
4915
+ customClass: string;
4916
+ tabindex: string;
4917
+ autocomplete: string;
4918
+ hidden: boolean;
4919
+ hideLabel: boolean;
4920
+ mask: boolean;
4921
+ autofocus: boolean;
4922
+ spellcheck: boolean;
4923
+ disabled: boolean;
4924
+ tableView: boolean;
4925
+ modalEdit: boolean;
4926
+ multiple: boolean;
4927
+ persistent: boolean;
4928
+ inputFormat: string;
4929
+ protected: boolean;
4930
+ dbIndex: boolean;
4931
+ encrypted: boolean;
4932
+ redrawOn: string;
4933
+ clearOnHide: boolean;
4934
+ customDefaultValue: string;
4935
+ calculateValue: string;
4936
+ calculateServer: boolean;
4937
+ allowCalculateOverride: boolean;
4938
+ validateOn: string;
4939
+ validate: {
4940
+ required: boolean;
4941
+ pattern: string;
4942
+ customMessage: string;
4943
+ custom: string;
4944
+ customPrivate: boolean;
4945
+ json: string;
4946
+ minLength: string;
4947
+ maxLength: string;
4948
+ strictDateValidation: boolean;
4949
+ multiple: boolean;
4950
+ unique: boolean;
4951
+ minWords?: undefined;
4952
+ maxWords?: undefined;
4953
+ min?: undefined;
4954
+ max?: undefined;
4955
+ step?: undefined;
4956
+ integer?: undefined;
4957
+ };
4958
+ unique: boolean;
4959
+ errorLabel: string;
4960
+ key: string;
4961
+ tags: never[];
4962
+ properties: {};
4963
+ conditional: {
4964
+ show: null;
4965
+ when: null;
4966
+ eq: string;
4967
+ json: string;
4968
+ };
4969
+ customConditional: string;
4970
+ logic: never[];
4971
+ attributes: {};
4972
+ overlay: {
4973
+ style: string;
4974
+ page: string;
4975
+ left: string;
4976
+ top: string;
4977
+ width: string;
4978
+ height: string;
4979
+ };
4980
+ type: string;
4981
+ input: boolean;
4982
+ refreshOn: string;
4983
+ showCharCount: boolean;
4984
+ showWordCount: boolean;
4985
+ allowMultipleMasks: boolean;
4986
+ inputType: string;
4987
+ inputMask: string;
4988
+ id: string;
4989
+ defaultValue: null;
4990
+ case?: undefined;
4991
+ editor?: undefined;
4992
+ autoExpand?: undefined;
4993
+ fixedSize?: undefined;
4994
+ rows?: undefined;
4995
+ wysiwyg?: undefined;
4996
+ delimiter?: undefined;
4997
+ requireDecimal?: undefined;
4998
+ shortcut?: undefined;
4999
+ name?: undefined;
5000
+ value?: undefined;
5001
+ dataGridLabel?: undefined;
5002
+ optionsLabelPosition?: undefined;
5003
+ inline?: undefined;
5004
+ values?: undefined;
5005
+ minSelectedCountMessage?: undefined;
5006
+ maxSelectedCountMessage?: undefined;
5007
+ fieldSet?: undefined;
5008
+ dataType?: undefined;
5009
+ uniqueOptions?: undefined;
5010
+ dataSrc?: undefined;
5011
+ data?: undefined;
5012
+ valueProperty?: undefined;
5013
+ idPath?: undefined;
5014
+ template?: undefined;
5015
+ refreshOnBlur?: undefined;
5016
+ clearOnRefresh?: undefined;
5017
+ searchEnabled?: undefined;
5018
+ selectThreshold?: undefined;
5019
+ readOnlyValue?: undefined;
5020
+ customOptions?: undefined;
5021
+ useExactSearch?: undefined;
5022
+ indexeddb?: undefined;
5023
+ selectFields?: undefined;
5024
+ searchField?: undefined;
5025
+ minSearch?: undefined;
5026
+ filter?: undefined;
5027
+ limit?: undefined;
5028
+ lazyLoad?: undefined;
5029
+ authenticate?: undefined;
5030
+ searchThreshold?: undefined;
5031
+ fuseOptions?: undefined;
5032
+ kickbox?: undefined;
5033
+ delimeter?: undefined;
5034
+ maxTags?: undefined;
5035
+ storeas?: undefined;
5036
+ enableManualMode?: undefined;
5037
+ disableClearIcon?: undefined;
5038
+ provider?: undefined;
5039
+ manualModeViewString?: undefined;
5040
+ switchToManualModeLabel?: undefined;
5041
+ tree?: undefined;
5042
+ components?: undefined;
5043
+ providerOptions?: undefined;
5044
+ displayInTimezone?: undefined;
5045
+ useLocaleSettings?: undefined;
5046
+ allowInput?: undefined;
5047
+ format?: undefined;
5048
+ enableDate?: undefined;
5049
+ enableMinDateInput?: undefined;
5050
+ datePicker?: undefined;
5051
+ enableMaxDateInput?: undefined;
5052
+ enableTime?: undefined;
5053
+ timePicker?: undefined;
5054
+ defaultDate?: undefined;
5055
+ timezone?: undefined;
5056
+ datepickerMode?: undefined;
5057
+ hideInputLabels?: undefined;
5058
+ inputsLabelPosition?: undefined;
5059
+ fields?: undefined;
5060
+ dayFirst?: undefined;
5061
+ maxDate?: undefined;
5062
+ minDate?: undefined;
5063
+ currency?: undefined;
5064
+ rowDrafts?: undefined;
5065
+ displayAsTable?: undefined;
5066
+ size?: undefined;
5067
+ block?: undefined;
5068
+ action?: undefined;
5069
+ disableOnInvalid?: undefined;
5070
+ theme?: undefined;
5071
+ leftIcon?: undefined;
5072
+ rightIcon?: undefined;
5073
+ } | {
5074
+ label: string;
5075
+ labelPosition: string;
5076
+ placeholder: string;
5077
+ description: string;
5078
+ tooltip: string;
5079
+ customClass: string;
5080
+ tabindex: string;
5081
+ hidden: boolean;
5082
+ hideLabel: boolean;
5083
+ autofocus: boolean;
5084
+ disabled: boolean;
5085
+ tableView: boolean;
5086
+ modalEdit: boolean;
5087
+ delimeter: string;
5088
+ maxTags: number;
5089
+ storeas: string;
5090
+ persistent: boolean;
5091
+ protected: boolean;
5092
+ dbIndex: boolean;
5093
+ encrypted: boolean;
5094
+ redrawOn: string;
5095
+ clearOnHide: boolean;
5096
+ customDefaultValue: string;
5097
+ calculateValue: string;
5098
+ calculateServer: boolean;
5099
+ allowCalculateOverride: boolean;
5100
+ validate: {
5101
+ required: boolean;
5102
+ customMessage: string;
5103
+ custom: string;
5104
+ customPrivate: boolean;
5105
+ json: string;
5106
+ strictDateValidation: boolean;
5107
+ multiple: boolean;
5108
+ unique: boolean;
5109
+ pattern?: undefined;
5110
+ minLength?: undefined;
5111
+ maxLength?: undefined;
5112
+ minWords?: undefined;
5113
+ maxWords?: undefined;
5114
+ min?: undefined;
5115
+ max?: undefined;
5116
+ step?: undefined;
5117
+ integer?: undefined;
5118
+ };
5119
+ unique: boolean;
5120
+ validateOn: string;
5121
+ errorLabel: string;
5122
+ key: string;
5123
+ tags: never[];
5124
+ properties: {};
5125
+ conditional: {
5126
+ show: null;
5127
+ when: null;
5128
+ eq: string;
5129
+ json: string;
5130
+ };
5131
+ customConditional: string;
5132
+ logic: never[];
5133
+ attributes: {};
5134
+ overlay: {
5135
+ style: string;
5136
+ page: string;
5137
+ left: string;
5138
+ top: string;
5139
+ width: string;
5140
+ height: string;
5141
+ };
5142
+ type: string;
5143
+ input: boolean;
5144
+ prefix: string;
5145
+ suffix: string;
5146
+ multiple: boolean;
5147
+ refreshOn: string;
5148
+ widget: {
5149
+ type: string;
5150
+ displayInTimezone?: undefined;
5151
+ locale?: undefined;
5152
+ useLocaleSettings?: undefined;
5153
+ allowInput?: undefined;
5154
+ mode?: undefined;
5155
+ enableTime?: undefined;
5156
+ noCalendar?: undefined;
5157
+ format?: undefined;
5158
+ hourIncrement?: undefined;
5159
+ minuteIncrement?: undefined;
5160
+ minDate?: undefined;
5161
+ disabledDates?: undefined;
5162
+ disableWeekends?: undefined;
5163
+ disableWeekdays?: undefined;
5164
+ disableFunction?: undefined;
5165
+ maxDate?: undefined;
5166
+ };
5167
+ showCharCount: boolean;
5168
+ showWordCount: boolean;
5169
+ allowMultipleMasks: boolean;
5170
+ id: string;
5171
+ defaultValue: null;
5172
+ inputMask?: undefined;
5173
+ autocomplete?: undefined;
5174
+ mask?: undefined;
5175
+ spellcheck?: undefined;
5176
+ inputFormat?: undefined;
5177
+ case?: undefined;
5178
+ inputType?: undefined;
5179
+ editor?: undefined;
5180
+ autoExpand?: undefined;
5181
+ fixedSize?: undefined;
5182
+ rows?: undefined;
5183
+ wysiwyg?: undefined;
5184
+ delimiter?: undefined;
5185
+ requireDecimal?: undefined;
5186
+ shortcut?: undefined;
5187
+ name?: undefined;
5188
+ value?: undefined;
5189
+ dataGridLabel?: undefined;
5190
+ optionsLabelPosition?: undefined;
5191
+ inline?: undefined;
5192
+ values?: undefined;
5193
+ minSelectedCountMessage?: undefined;
5194
+ maxSelectedCountMessage?: undefined;
5195
+ fieldSet?: undefined;
5196
+ dataType?: undefined;
5197
+ uniqueOptions?: undefined;
5198
+ dataSrc?: undefined;
5199
+ data?: undefined;
5200
+ valueProperty?: undefined;
5201
+ idPath?: undefined;
5202
+ template?: undefined;
5203
+ refreshOnBlur?: undefined;
5204
+ clearOnRefresh?: undefined;
5205
+ searchEnabled?: undefined;
5206
+ selectThreshold?: undefined;
5207
+ readOnlyValue?: undefined;
5208
+ customOptions?: undefined;
5209
+ useExactSearch?: undefined;
5210
+ indexeddb?: undefined;
5211
+ selectFields?: undefined;
5212
+ searchField?: undefined;
5213
+ minSearch?: undefined;
5214
+ filter?: undefined;
5215
+ limit?: undefined;
5216
+ lazyLoad?: undefined;
5217
+ authenticate?: undefined;
5218
+ searchThreshold?: undefined;
5219
+ fuseOptions?: undefined;
5220
+ kickbox?: undefined;
5221
+ enableManualMode?: undefined;
5222
+ disableClearIcon?: undefined;
5223
+ provider?: undefined;
5224
+ manualModeViewString?: undefined;
5225
+ switchToManualModeLabel?: undefined;
5226
+ tree?: undefined;
5227
+ components?: undefined;
5228
+ providerOptions?: undefined;
5229
+ displayInTimezone?: undefined;
5230
+ useLocaleSettings?: undefined;
5231
+ allowInput?: undefined;
5232
+ format?: undefined;
5233
+ enableDate?: undefined;
5234
+ enableMinDateInput?: undefined;
5235
+ datePicker?: undefined;
5236
+ enableMaxDateInput?: undefined;
5237
+ enableTime?: undefined;
5238
+ timePicker?: undefined;
5239
+ defaultDate?: undefined;
5240
+ timezone?: undefined;
5241
+ datepickerMode?: undefined;
5242
+ hideInputLabels?: undefined;
5243
+ inputsLabelPosition?: undefined;
5244
+ fields?: undefined;
5245
+ dayFirst?: undefined;
5246
+ maxDate?: undefined;
5247
+ minDate?: undefined;
5248
+ currency?: undefined;
5249
+ rowDrafts?: undefined;
5250
+ displayAsTable?: undefined;
5251
+ size?: undefined;
5252
+ block?: undefined;
5253
+ action?: undefined;
5254
+ disableOnInvalid?: undefined;
5255
+ theme?: undefined;
5256
+ leftIcon?: undefined;
5257
+ rightIcon?: undefined;
5258
+ } | {
5259
+ label: string;
5260
+ labelPosition: string;
5261
+ enableManualMode: boolean;
5262
+ disableClearIcon: boolean;
5263
+ placeholder: string;
5264
+ description: string;
5265
+ tooltip: string;
5266
+ customClass: string;
5267
+ tabindex: string;
5268
+ hidden: boolean;
5269
+ hideLabel: boolean;
5270
+ autofocus: boolean;
5271
+ disabled: boolean;
5272
+ tableView: boolean;
5273
+ modalEdit: boolean;
5274
+ multiple: boolean;
5275
+ persistent: boolean;
5276
+ protected: boolean;
5277
+ dbIndex: boolean;
5278
+ encrypted: boolean;
5279
+ redrawOn: string;
5280
+ clearOnHide: boolean;
5281
+ customDefaultValue: string;
5282
+ calculateValue: string;
5283
+ calculateServer: boolean;
5284
+ allowCalculateOverride: boolean;
5285
+ provider: string;
5286
+ manualModeViewString: string;
5287
+ validate: {
5288
+ required: boolean;
5289
+ customMessage: string;
5290
+ custom: string;
5291
+ customPrivate: boolean;
5292
+ json: string;
5293
+ strictDateValidation: boolean;
5294
+ multiple: boolean;
5295
+ unique: boolean;
5296
+ pattern?: undefined;
5297
+ minLength?: undefined;
5298
+ maxLength?: undefined;
5299
+ minWords?: undefined;
5300
+ maxWords?: undefined;
5301
+ min?: undefined;
5302
+ max?: undefined;
5303
+ step?: undefined;
5304
+ integer?: undefined;
5305
+ };
5306
+ unique: boolean;
5307
+ validateOn: string;
5308
+ errorLabel: string;
5309
+ key: string;
5310
+ tags: never[];
5311
+ properties: {};
5312
+ conditional: {
5313
+ show: null;
5314
+ when: null;
5315
+ eq: string;
5316
+ json: string;
5317
+ };
5318
+ customConditional: string;
5319
+ logic: never[];
5320
+ attributes: {};
5321
+ overlay: {
5322
+ style: string;
5323
+ page: string;
5324
+ left: string;
5325
+ top: string;
5326
+ width: string;
5327
+ height: string;
5328
+ };
5329
+ type: string;
5330
+ switchToManualModeLabel: string;
5331
+ input: boolean;
5332
+ prefix: string;
5333
+ suffix: string;
5334
+ refreshOn: string;
5335
+ widget: null;
5336
+ showCharCount: boolean;
5337
+ showWordCount: boolean;
5338
+ allowMultipleMasks: boolean;
5339
+ tree: boolean;
5340
+ components: {
5341
+ label: string;
5342
+ tableView: boolean;
5343
+ key: string;
5344
+ type: string;
5345
+ input: boolean;
5346
+ customConditional: string;
5347
+ placeholder: string;
5348
+ prefix: string;
5349
+ customClass: string;
5350
+ suffix: string;
5351
+ multiple: boolean;
5352
+ defaultValue: null;
5353
+ protected: boolean;
5354
+ unique: boolean;
5355
+ persistent: boolean;
5356
+ hidden: boolean;
5357
+ clearOnHide: boolean;
5358
+ refreshOn: string;
5359
+ redrawOn: string;
5360
+ modalEdit: boolean;
5361
+ labelPosition: string;
5362
+ description: string;
5363
+ errorLabel: string;
5364
+ tooltip: string;
5365
+ hideLabel: boolean;
5366
+ tabindex: string;
5367
+ disabled: boolean;
5368
+ autofocus: boolean;
5369
+ dbIndex: boolean;
5370
+ customDefaultValue: string;
5371
+ calculateValue: string;
5372
+ calculateServer: boolean;
5373
+ widget: {
5374
+ type: string;
5375
+ };
5376
+ attributes: {};
5377
+ validateOn: string;
5378
+ validate: {
5379
+ required: boolean;
5380
+ custom: string;
5381
+ customPrivate: boolean;
5382
+ strictDateValidation: boolean;
5383
+ multiple: boolean;
5384
+ unique: boolean;
5385
+ minLength: string;
5386
+ maxLength: string;
5387
+ pattern: string;
5388
+ };
5389
+ conditional: {
5390
+ show: null;
5391
+ when: null;
5392
+ eq: string;
5393
+ };
5394
+ overlay: {
5395
+ style: string;
5396
+ left: string;
5397
+ top: string;
5398
+ width: string;
5399
+ height: string;
5400
+ };
5401
+ allowCalculateOverride: boolean;
5402
+ encrypted: boolean;
5403
+ showCharCount: boolean;
5404
+ showWordCount: boolean;
5405
+ properties: {};
5406
+ allowMultipleMasks: boolean;
5407
+ mask: boolean;
5408
+ inputType: string;
5409
+ inputFormat: string;
5410
+ inputMask: string;
5411
+ spellcheck: boolean;
5412
+ id: string;
5413
+ }[];
5414
+ providerOptions: {
5415
+ params: {
5416
+ key: string;
5417
+ region: string;
5418
+ };
5419
+ };
5420
+ id: string;
5421
+ defaultValue: {
5422
+ ""?: undefined;
5423
+ };
5424
+ inputMask?: undefined;
5425
+ autocomplete?: undefined;
5426
+ mask?: undefined;
5427
+ spellcheck?: undefined;
5428
+ inputFormat?: undefined;
5429
+ case?: undefined;
5430
+ inputType?: undefined;
5431
+ editor?: undefined;
5432
+ autoExpand?: undefined;
5433
+ fixedSize?: undefined;
5434
+ rows?: undefined;
5435
+ wysiwyg?: undefined;
5436
+ delimiter?: undefined;
5437
+ requireDecimal?: undefined;
5438
+ shortcut?: undefined;
5439
+ name?: undefined;
5440
+ value?: undefined;
5441
+ dataGridLabel?: undefined;
5442
+ optionsLabelPosition?: undefined;
5443
+ inline?: undefined;
5444
+ values?: undefined;
5445
+ minSelectedCountMessage?: undefined;
5446
+ maxSelectedCountMessage?: undefined;
5447
+ fieldSet?: undefined;
5448
+ dataType?: undefined;
5449
+ uniqueOptions?: undefined;
5450
+ dataSrc?: undefined;
5451
+ data?: undefined;
5452
+ valueProperty?: undefined;
5453
+ idPath?: undefined;
5454
+ template?: undefined;
5455
+ refreshOnBlur?: undefined;
5456
+ clearOnRefresh?: undefined;
5457
+ searchEnabled?: undefined;
5458
+ selectThreshold?: undefined;
5459
+ readOnlyValue?: undefined;
5460
+ customOptions?: undefined;
5461
+ useExactSearch?: undefined;
5462
+ indexeddb?: undefined;
5463
+ selectFields?: undefined;
5464
+ searchField?: undefined;
5465
+ minSearch?: undefined;
5466
+ filter?: undefined;
5467
+ limit?: undefined;
5468
+ lazyLoad?: undefined;
5469
+ authenticate?: undefined;
5470
+ searchThreshold?: undefined;
5471
+ fuseOptions?: undefined;
5472
+ kickbox?: undefined;
5473
+ delimeter?: undefined;
5474
+ maxTags?: undefined;
5475
+ storeas?: undefined;
5476
+ displayInTimezone?: undefined;
5477
+ useLocaleSettings?: undefined;
5478
+ allowInput?: undefined;
5479
+ format?: undefined;
5480
+ enableDate?: undefined;
5481
+ enableMinDateInput?: undefined;
5482
+ datePicker?: undefined;
5483
+ enableMaxDateInput?: undefined;
5484
+ enableTime?: undefined;
5485
+ timePicker?: undefined;
5486
+ defaultDate?: undefined;
5487
+ timezone?: undefined;
5488
+ datepickerMode?: undefined;
5489
+ hideInputLabels?: undefined;
5490
+ inputsLabelPosition?: undefined;
5491
+ fields?: undefined;
5492
+ dayFirst?: undefined;
5493
+ maxDate?: undefined;
5494
+ minDate?: undefined;
5495
+ currency?: undefined;
5496
+ rowDrafts?: undefined;
5497
+ displayAsTable?: undefined;
5498
+ size?: undefined;
5499
+ block?: undefined;
5500
+ action?: undefined;
5501
+ disableOnInvalid?: undefined;
5502
+ theme?: undefined;
5503
+ leftIcon?: undefined;
5504
+ rightIcon?: undefined;
5505
+ } | {
5506
+ label: string;
5507
+ labelPosition: string;
5508
+ displayInTimezone: string;
5509
+ useLocaleSettings: boolean;
5510
+ allowInput: boolean;
5511
+ format: string;
5512
+ placeholder: string;
5513
+ description: string;
5514
+ tooltip: string;
5515
+ customClass: string;
5516
+ tabindex: string;
5517
+ hidden: boolean;
5518
+ hideLabel: boolean;
5519
+ autofocus: boolean;
5520
+ disabled: boolean;
5521
+ tableView: boolean;
5522
+ modalEdit: boolean;
5523
+ enableDate: boolean;
5524
+ enableMinDateInput: boolean;
5525
+ datePicker: {
5526
+ minDate: null;
5527
+ maxDate: null;
5528
+ disable: string;
5529
+ disableFunction: string;
5530
+ disableWeekends: boolean;
5531
+ disableWeekdays: boolean;
5532
+ showWeeks: boolean;
5533
+ startingDay: number;
5534
+ initDate: string;
5535
+ minMode: string;
5536
+ maxMode: string;
5537
+ yearRows: number;
5538
+ yearColumns: number;
5539
+ };
5540
+ enableMaxDateInput: boolean;
5541
+ enableTime: boolean;
5542
+ timePicker: {
5543
+ showMeridian: boolean;
5544
+ hourStep: number;
5545
+ minuteStep: number;
5546
+ readonlyInput: boolean;
5547
+ mousewheel: boolean;
5548
+ arrowkeys: boolean;
5549
+ };
5550
+ multiple: boolean;
5551
+ defaultValue: string;
5552
+ defaultDate: string;
5553
+ customOptions: {};
5554
+ persistent: boolean;
5555
+ protected: boolean;
5556
+ dbIndex: boolean;
5557
+ encrypted: boolean;
5558
+ redrawOn: string;
5559
+ clearOnHide: boolean;
5560
+ customDefaultValue: string;
5561
+ calculateValue: string;
5562
+ calculateServer: boolean;
5563
+ allowCalculateOverride: boolean;
5564
+ validate: {
5565
+ required: boolean;
5566
+ customMessage: string;
5567
+ custom: string;
5568
+ customPrivate: boolean;
5569
+ json: string;
5570
+ strictDateValidation: boolean;
5571
+ multiple: boolean;
5572
+ unique: boolean;
5573
+ pattern?: undefined;
5574
+ minLength?: undefined;
5575
+ maxLength?: undefined;
5576
+ minWords?: undefined;
5577
+ maxWords?: undefined;
5578
+ min?: undefined;
5579
+ max?: undefined;
5580
+ step?: undefined;
5581
+ integer?: undefined;
5582
+ };
5583
+ unique: boolean;
5584
+ validateOn: string;
5585
+ errorLabel: string;
5586
+ key: string;
5587
+ tags: never[];
5588
+ properties: {};
5589
+ conditional: {
5590
+ show: null;
5591
+ when: null;
5592
+ eq: string;
5593
+ json: string;
5594
+ };
5595
+ customConditional: string;
5596
+ logic: never[];
5597
+ attributes: {};
5598
+ overlay: {
5599
+ style: string;
5600
+ page: string;
5601
+ left: string;
5602
+ top: string;
5603
+ width: string;
5604
+ height: string;
5605
+ };
5606
+ type: string;
5607
+ timezone: string;
5608
+ input: boolean;
5609
+ prefix: string;
5610
+ suffix: string;
5611
+ refreshOn: string;
5612
+ widget: {
5613
+ type: string;
5614
+ displayInTimezone: string;
5615
+ locale: string;
5616
+ useLocaleSettings: boolean;
5617
+ allowInput: boolean;
5618
+ mode: string;
5619
+ enableTime: boolean;
5620
+ noCalendar: boolean;
5621
+ format: string;
5622
+ hourIncrement: number;
5623
+ minuteIncrement: number;
5624
+ minDate: null;
5625
+ disabledDates: string;
5626
+ disableWeekends: boolean;
5627
+ disableWeekdays: boolean;
5628
+ disableFunction: string;
5629
+ maxDate: null;
5630
+ };
5631
+ showCharCount: boolean;
5632
+ showWordCount: boolean;
5633
+ allowMultipleMasks: boolean;
5634
+ datepickerMode: string;
5635
+ id: string;
5636
+ inputMask?: undefined;
5637
+ autocomplete?: undefined;
5638
+ mask?: undefined;
5639
+ spellcheck?: undefined;
5640
+ inputFormat?: undefined;
5641
+ case?: undefined;
5642
+ inputType?: undefined;
5643
+ editor?: undefined;
5644
+ autoExpand?: undefined;
5645
+ fixedSize?: undefined;
5646
+ rows?: undefined;
5647
+ wysiwyg?: undefined;
5648
+ delimiter?: undefined;
5649
+ requireDecimal?: undefined;
5650
+ shortcut?: undefined;
5651
+ name?: undefined;
5652
+ value?: undefined;
5653
+ dataGridLabel?: undefined;
5654
+ optionsLabelPosition?: undefined;
5655
+ inline?: undefined;
5656
+ values?: undefined;
5657
+ minSelectedCountMessage?: undefined;
5658
+ maxSelectedCountMessage?: undefined;
5659
+ fieldSet?: undefined;
5660
+ dataType?: undefined;
5661
+ uniqueOptions?: undefined;
5662
+ dataSrc?: undefined;
5663
+ data?: undefined;
5664
+ valueProperty?: undefined;
5665
+ idPath?: undefined;
5666
+ template?: undefined;
5667
+ refreshOnBlur?: undefined;
5668
+ clearOnRefresh?: undefined;
5669
+ searchEnabled?: undefined;
5670
+ selectThreshold?: undefined;
5671
+ readOnlyValue?: undefined;
5672
+ useExactSearch?: undefined;
5673
+ indexeddb?: undefined;
5674
+ selectFields?: undefined;
5675
+ searchField?: undefined;
5676
+ minSearch?: undefined;
5677
+ filter?: undefined;
5678
+ limit?: undefined;
5679
+ lazyLoad?: undefined;
5680
+ authenticate?: undefined;
5681
+ searchThreshold?: undefined;
5682
+ fuseOptions?: undefined;
5683
+ kickbox?: undefined;
5684
+ delimeter?: undefined;
5685
+ maxTags?: undefined;
5686
+ storeas?: undefined;
5687
+ enableManualMode?: undefined;
5688
+ disableClearIcon?: undefined;
5689
+ provider?: undefined;
5690
+ manualModeViewString?: undefined;
5691
+ switchToManualModeLabel?: undefined;
5692
+ tree?: undefined;
5693
+ components?: undefined;
5694
+ providerOptions?: undefined;
5695
+ hideInputLabels?: undefined;
5696
+ inputsLabelPosition?: undefined;
5697
+ fields?: undefined;
5698
+ dayFirst?: undefined;
5699
+ maxDate?: undefined;
5700
+ minDate?: undefined;
5701
+ currency?: undefined;
5702
+ rowDrafts?: undefined;
5703
+ displayAsTable?: undefined;
5704
+ size?: undefined;
5705
+ block?: undefined;
5706
+ action?: undefined;
5707
+ disableOnInvalid?: undefined;
5708
+ theme?: undefined;
5709
+ leftIcon?: undefined;
5710
+ rightIcon?: undefined;
5711
+ } | {
5712
+ label: string;
5713
+ hideInputLabels: boolean;
5714
+ inputsLabelPosition: string;
5715
+ description: string;
5716
+ useLocaleSettings: boolean;
5717
+ tooltip: string;
5718
+ customClass: string;
5719
+ tabindex: string;
5720
+ hidden: boolean;
5721
+ hideLabel: boolean;
5722
+ autofocus: boolean;
5723
+ disabled: boolean;
5724
+ tableView: boolean;
5725
+ modalEdit: boolean;
5726
+ fields: {
5727
+ day: {
5728
+ type: string;
5729
+ placeholder: string;
5730
+ hide: boolean;
5731
+ required: boolean;
5732
+ };
5733
+ month: {
5734
+ type: string;
5735
+ placeholder: string;
5736
+ hide: boolean;
5737
+ required: boolean;
5738
+ };
5739
+ year: {
5740
+ type: string;
5741
+ placeholder: string;
5742
+ hide: boolean;
5743
+ required: boolean;
5744
+ };
5745
+ };
5746
+ dayFirst: boolean;
5747
+ persistent: boolean;
5748
+ protected: boolean;
5749
+ dbIndex: boolean;
5750
+ encrypted: boolean;
5751
+ redrawOn: string;
5752
+ clearOnHide: boolean;
5753
+ customDefaultValue: string;
5754
+ calculateValue: string;
5755
+ calculateServer: boolean;
5756
+ allowCalculateOverride: boolean;
5757
+ validateOn: string;
5758
+ maxDate: string;
5759
+ minDate: string;
5760
+ unique: boolean;
5761
+ errorLabel: string;
5762
+ validate: {
5763
+ customMessage: string;
5764
+ custom: string;
5765
+ customPrivate: boolean;
5766
+ json: string;
5767
+ required: boolean;
5768
+ strictDateValidation: boolean;
5769
+ multiple: boolean;
5770
+ unique: boolean;
5771
+ pattern?: undefined;
5772
+ minLength?: undefined;
5773
+ maxLength?: undefined;
5774
+ minWords?: undefined;
5775
+ maxWords?: undefined;
5776
+ min?: undefined;
5777
+ max?: undefined;
5778
+ step?: undefined;
5779
+ integer?: undefined;
5780
+ };
5781
+ key: string;
5782
+ tags: never[];
5783
+ properties: {};
5784
+ conditional: {
5785
+ show: null;
5786
+ when: null;
5787
+ eq: string;
5788
+ json: string;
5789
+ };
5790
+ customConditional: string;
5791
+ logic: never[];
5792
+ attributes: {};
5793
+ overlay: {
5794
+ style: string;
5795
+ page: string;
5796
+ left: string;
5797
+ top: string;
5798
+ width: string;
5799
+ height: string;
5800
+ };
5801
+ type: string;
5802
+ input: boolean;
5803
+ placeholder: string;
5804
+ prefix: string;
5805
+ suffix: string;
5806
+ multiple: boolean;
5807
+ refreshOn: string;
5808
+ labelPosition: string;
5809
+ widget: null;
5810
+ showCharCount: boolean;
5811
+ showWordCount: boolean;
5812
+ allowMultipleMasks: boolean;
5813
+ id: string;
5814
+ defaultValue: string;
5815
+ inputMask?: undefined;
5816
+ autocomplete?: undefined;
5817
+ mask?: undefined;
5818
+ spellcheck?: undefined;
5819
+ inputFormat?: undefined;
5820
+ case?: undefined;
5821
+ inputType?: undefined;
5822
+ editor?: undefined;
5823
+ autoExpand?: undefined;
5824
+ fixedSize?: undefined;
5825
+ rows?: undefined;
5826
+ wysiwyg?: undefined;
5827
+ delimiter?: undefined;
5828
+ requireDecimal?: undefined;
5829
+ shortcut?: undefined;
5830
+ name?: undefined;
5831
+ value?: undefined;
5832
+ dataGridLabel?: undefined;
5833
+ optionsLabelPosition?: undefined;
5834
+ inline?: undefined;
5835
+ values?: undefined;
5836
+ minSelectedCountMessage?: undefined;
5837
+ maxSelectedCountMessage?: undefined;
5838
+ fieldSet?: undefined;
5839
+ dataType?: undefined;
5840
+ uniqueOptions?: undefined;
5841
+ dataSrc?: undefined;
5842
+ data?: undefined;
5843
+ valueProperty?: undefined;
5844
+ idPath?: undefined;
5845
+ template?: undefined;
5846
+ refreshOnBlur?: undefined;
5847
+ clearOnRefresh?: undefined;
5848
+ searchEnabled?: undefined;
5849
+ selectThreshold?: undefined;
5850
+ readOnlyValue?: undefined;
5851
+ customOptions?: undefined;
5852
+ useExactSearch?: undefined;
5853
+ indexeddb?: undefined;
5854
+ selectFields?: undefined;
5855
+ searchField?: undefined;
5856
+ minSearch?: undefined;
5857
+ filter?: undefined;
5858
+ limit?: undefined;
5859
+ lazyLoad?: undefined;
5860
+ authenticate?: undefined;
5861
+ searchThreshold?: undefined;
5862
+ fuseOptions?: undefined;
5863
+ kickbox?: undefined;
5864
+ delimeter?: undefined;
5865
+ maxTags?: undefined;
5866
+ storeas?: undefined;
5867
+ enableManualMode?: undefined;
5868
+ disableClearIcon?: undefined;
5869
+ provider?: undefined;
5870
+ manualModeViewString?: undefined;
5871
+ switchToManualModeLabel?: undefined;
5872
+ tree?: undefined;
5873
+ components?: undefined;
5874
+ providerOptions?: undefined;
5875
+ displayInTimezone?: undefined;
5876
+ allowInput?: undefined;
5877
+ format?: undefined;
5878
+ enableDate?: undefined;
5879
+ enableMinDateInput?: undefined;
5880
+ datePicker?: undefined;
5881
+ enableMaxDateInput?: undefined;
5882
+ enableTime?: undefined;
5883
+ timePicker?: undefined;
5884
+ defaultDate?: undefined;
5885
+ timezone?: undefined;
5886
+ datepickerMode?: undefined;
5887
+ currency?: undefined;
5888
+ rowDrafts?: undefined;
5889
+ displayAsTable?: undefined;
5890
+ size?: undefined;
5891
+ block?: undefined;
5892
+ action?: undefined;
5893
+ disableOnInvalid?: undefined;
5894
+ theme?: undefined;
5895
+ leftIcon?: undefined;
5896
+ rightIcon?: undefined;
5897
+ } | {
5898
+ label: string;
5899
+ labelPosition: string;
5900
+ placeholder: string;
5901
+ description: string;
5902
+ tooltip: string;
5903
+ prefix: string;
5904
+ suffix: string;
5905
+ widget: {
5906
+ type: string;
5907
+ displayInTimezone?: undefined;
5908
+ locale?: undefined;
5909
+ useLocaleSettings?: undefined;
5910
+ allowInput?: undefined;
5911
+ mode?: undefined;
5912
+ enableTime?: undefined;
5913
+ noCalendar?: undefined;
5914
+ format?: undefined;
5915
+ hourIncrement?: undefined;
5916
+ minuteIncrement?: undefined;
5917
+ minDate?: undefined;
5918
+ disabledDates?: undefined;
5919
+ disableWeekends?: undefined;
5920
+ disableWeekdays?: undefined;
5921
+ disableFunction?: undefined;
5922
+ maxDate?: undefined;
5923
+ };
5924
+ customClass: string;
5925
+ tabindex: string;
5926
+ autocomplete: string;
5927
+ hidden: boolean;
5928
+ hideLabel: boolean;
5929
+ mask: boolean;
5930
+ autofocus: boolean;
5931
+ spellcheck: boolean;
5932
+ disabled: boolean;
5933
+ tableView: boolean;
5934
+ modalEdit: boolean;
5935
+ multiple: boolean;
5936
+ persistent: boolean;
5937
+ currency: string;
5938
+ inputFormat: string;
5939
+ protected: boolean;
5940
+ dbIndex: boolean;
5941
+ case: string;
5942
+ encrypted: boolean;
5943
+ redrawOn: string;
5944
+ clearOnHide: boolean;
5945
+ customDefaultValue: string;
5946
+ calculateValue: string;
5947
+ calculateServer: boolean;
5948
+ allowCalculateOverride: boolean;
5949
+ validateOn: string;
5950
+ validate: {
5951
+ required: boolean;
5952
+ customMessage: string;
5953
+ custom: string;
5954
+ customPrivate: boolean;
5955
+ json: string;
5956
+ strictDateValidation: boolean;
5957
+ multiple: boolean;
5958
+ unique: boolean;
5959
+ min: string;
5960
+ max: string;
5961
+ step: string;
5962
+ integer: string;
5963
+ pattern?: undefined;
5964
+ minLength?: undefined;
5965
+ maxLength?: undefined;
5966
+ minWords?: undefined;
5967
+ maxWords?: undefined;
5968
+ };
5969
+ unique: boolean;
5970
+ errorLabel: string;
5971
+ key: string;
5972
+ tags: never[];
5973
+ properties: {};
5974
+ conditional: {
5975
+ show: null;
5976
+ when: null;
5977
+ eq: string;
5978
+ json: string;
5979
+ };
5980
+ customConditional: string;
5981
+ logic: never[];
5982
+ attributes: {};
5983
+ overlay: {
5984
+ style: string;
5985
+ page: string;
5986
+ left: string;
5987
+ top: string;
5988
+ width: string;
5989
+ height: string;
5990
+ };
5991
+ type: string;
5992
+ input: boolean;
5993
+ refreshOn: string;
5994
+ showCharCount: boolean;
5995
+ showWordCount: boolean;
5996
+ allowMultipleMasks: boolean;
5997
+ delimiter: boolean;
5998
+ id: string;
5999
+ defaultValue: null;
6000
+ inputMask?: undefined;
6001
+ inputType?: undefined;
6002
+ editor?: undefined;
6003
+ autoExpand?: undefined;
6004
+ fixedSize?: undefined;
6005
+ rows?: undefined;
6006
+ wysiwyg?: undefined;
6007
+ requireDecimal?: undefined;
6008
+ shortcut?: undefined;
6009
+ name?: undefined;
6010
+ value?: undefined;
6011
+ dataGridLabel?: undefined;
6012
+ optionsLabelPosition?: undefined;
6013
+ inline?: undefined;
6014
+ values?: undefined;
6015
+ minSelectedCountMessage?: undefined;
6016
+ maxSelectedCountMessage?: undefined;
6017
+ fieldSet?: undefined;
6018
+ dataType?: undefined;
6019
+ uniqueOptions?: undefined;
6020
+ dataSrc?: undefined;
6021
+ data?: undefined;
6022
+ valueProperty?: undefined;
6023
+ idPath?: undefined;
6024
+ template?: undefined;
6025
+ refreshOnBlur?: undefined;
6026
+ clearOnRefresh?: undefined;
6027
+ searchEnabled?: undefined;
6028
+ selectThreshold?: undefined;
6029
+ readOnlyValue?: undefined;
6030
+ customOptions?: undefined;
6031
+ useExactSearch?: undefined;
6032
+ indexeddb?: undefined;
6033
+ selectFields?: undefined;
6034
+ searchField?: undefined;
6035
+ minSearch?: undefined;
6036
+ filter?: undefined;
6037
+ limit?: undefined;
6038
+ lazyLoad?: undefined;
6039
+ authenticate?: undefined;
6040
+ searchThreshold?: undefined;
6041
+ fuseOptions?: undefined;
6042
+ kickbox?: undefined;
6043
+ delimeter?: undefined;
6044
+ maxTags?: undefined;
6045
+ storeas?: undefined;
6046
+ enableManualMode?: undefined;
6047
+ disableClearIcon?: undefined;
6048
+ provider?: undefined;
6049
+ manualModeViewString?: undefined;
6050
+ switchToManualModeLabel?: undefined;
6051
+ tree?: undefined;
6052
+ components?: undefined;
6053
+ providerOptions?: undefined;
6054
+ displayInTimezone?: undefined;
6055
+ useLocaleSettings?: undefined;
6056
+ allowInput?: undefined;
6057
+ format?: undefined;
6058
+ enableDate?: undefined;
6059
+ enableMinDateInput?: undefined;
6060
+ datePicker?: undefined;
6061
+ enableMaxDateInput?: undefined;
6062
+ enableTime?: undefined;
6063
+ timePicker?: undefined;
6064
+ defaultDate?: undefined;
6065
+ timezone?: undefined;
6066
+ datepickerMode?: undefined;
6067
+ hideInputLabels?: undefined;
6068
+ inputsLabelPosition?: undefined;
6069
+ fields?: undefined;
6070
+ dayFirst?: undefined;
6071
+ maxDate?: undefined;
6072
+ minDate?: undefined;
6073
+ rowDrafts?: undefined;
6074
+ displayAsTable?: undefined;
6075
+ size?: undefined;
6076
+ block?: undefined;
6077
+ action?: undefined;
6078
+ disableOnInvalid?: undefined;
6079
+ theme?: undefined;
6080
+ leftIcon?: undefined;
6081
+ rightIcon?: undefined;
6082
+ } | {
6083
+ label: string;
6084
+ tableView: boolean;
6085
+ rowDrafts: boolean;
6086
+ key: string;
6087
+ type: string;
6088
+ displayAsTable: boolean;
6089
+ input: boolean;
6090
+ components: {
6091
+ label: string;
6092
+ mask: boolean;
6093
+ spellcheck: boolean;
6094
+ tableView: boolean;
6095
+ currency: string;
6096
+ inputFormat: string;
6097
+ key: string;
6098
+ type: string;
6099
+ input: boolean;
6100
+ delimiter: boolean;
6101
+ }[];
6102
+ labelPosition?: undefined;
6103
+ placeholder?: undefined;
6104
+ description?: undefined;
6105
+ tooltip?: undefined;
6106
+ prefix?: undefined;
6107
+ suffix?: undefined;
6108
+ widget?: undefined;
6109
+ inputMask?: undefined;
6110
+ allowMultipleMasks?: undefined;
6111
+ customClass?: undefined;
6112
+ tabindex?: undefined;
6113
+ autocomplete?: undefined;
6114
+ hidden?: undefined;
6115
+ hideLabel?: undefined;
6116
+ showWordCount?: undefined;
6117
+ showCharCount?: undefined;
6118
+ mask?: undefined;
6119
+ autofocus?: undefined;
6120
+ spellcheck?: undefined;
6121
+ disabled?: undefined;
6122
+ modalEdit?: undefined;
6123
+ multiple?: undefined;
6124
+ persistent?: undefined;
6125
+ inputFormat?: undefined;
6126
+ protected?: undefined;
6127
+ dbIndex?: undefined;
6128
+ case?: undefined;
6129
+ encrypted?: undefined;
6130
+ redrawOn?: undefined;
6131
+ clearOnHide?: undefined;
6132
+ customDefaultValue?: undefined;
6133
+ calculateValue?: undefined;
6134
+ calculateServer?: undefined;
6135
+ allowCalculateOverride?: undefined;
6136
+ validateOn?: undefined;
6137
+ validate?: undefined;
6138
+ unique?: undefined;
6139
+ errorLabel?: undefined;
6140
+ tags?: undefined;
6141
+ properties?: undefined;
6142
+ conditional?: undefined;
6143
+ customConditional?: undefined;
6144
+ logic?: undefined;
6145
+ attributes?: undefined;
6146
+ overlay?: undefined;
6147
+ refreshOn?: undefined;
6148
+ inputType?: undefined;
6149
+ id?: undefined;
6150
+ defaultValue?: undefined;
6151
+ editor?: undefined;
6152
+ autoExpand?: undefined;
6153
+ fixedSize?: undefined;
6154
+ rows?: undefined;
6155
+ wysiwyg?: undefined;
6156
+ delimiter?: undefined;
6157
+ requireDecimal?: undefined;
6158
+ shortcut?: undefined;
6159
+ name?: undefined;
6160
+ value?: undefined;
6161
+ dataGridLabel?: undefined;
6162
+ optionsLabelPosition?: undefined;
6163
+ inline?: undefined;
6164
+ values?: undefined;
6165
+ minSelectedCountMessage?: undefined;
6166
+ maxSelectedCountMessage?: undefined;
6167
+ fieldSet?: undefined;
6168
+ dataType?: undefined;
6169
+ uniqueOptions?: undefined;
6170
+ dataSrc?: undefined;
6171
+ data?: undefined;
6172
+ valueProperty?: undefined;
6173
+ idPath?: undefined;
6174
+ template?: undefined;
6175
+ refreshOnBlur?: undefined;
6176
+ clearOnRefresh?: undefined;
6177
+ searchEnabled?: undefined;
6178
+ selectThreshold?: undefined;
6179
+ readOnlyValue?: undefined;
6180
+ customOptions?: undefined;
6181
+ useExactSearch?: undefined;
6182
+ indexeddb?: undefined;
6183
+ selectFields?: undefined;
6184
+ searchField?: undefined;
6185
+ minSearch?: undefined;
6186
+ filter?: undefined;
6187
+ limit?: undefined;
6188
+ lazyLoad?: undefined;
6189
+ authenticate?: undefined;
6190
+ searchThreshold?: undefined;
6191
+ fuseOptions?: undefined;
6192
+ kickbox?: undefined;
6193
+ delimeter?: undefined;
6194
+ maxTags?: undefined;
6195
+ storeas?: undefined;
6196
+ enableManualMode?: undefined;
6197
+ disableClearIcon?: undefined;
6198
+ provider?: undefined;
6199
+ manualModeViewString?: undefined;
6200
+ switchToManualModeLabel?: undefined;
6201
+ tree?: undefined;
6202
+ providerOptions?: undefined;
6203
+ displayInTimezone?: undefined;
6204
+ useLocaleSettings?: undefined;
6205
+ allowInput?: undefined;
6206
+ format?: undefined;
6207
+ enableDate?: undefined;
6208
+ enableMinDateInput?: undefined;
6209
+ datePicker?: undefined;
6210
+ enableMaxDateInput?: undefined;
6211
+ enableTime?: undefined;
6212
+ timePicker?: undefined;
6213
+ defaultDate?: undefined;
6214
+ timezone?: undefined;
6215
+ datepickerMode?: undefined;
6216
+ hideInputLabels?: undefined;
6217
+ inputsLabelPosition?: undefined;
6218
+ fields?: undefined;
6219
+ dayFirst?: undefined;
6220
+ maxDate?: undefined;
6221
+ minDate?: undefined;
6222
+ currency?: undefined;
2615
6223
  size?: undefined;
2616
6224
  block?: undefined;
2617
6225
  action?: undefined;
@@ -2634,7 +6242,7 @@ export declare const Sandbox: {
2634
6242
  customClass: string;
2635
6243
  suffix: string;
2636
6244
  multiple: boolean;
2637
- defaultValue: any;
6245
+ defaultValue: null;
2638
6246
  protected: boolean;
2639
6247
  unique: boolean;
2640
6248
  persistent: boolean;
@@ -2697,8 +6305,8 @@ export declare const Sandbox: {
2697
6305
  integer?: undefined;
2698
6306
  };
2699
6307
  conditional: {
2700
- show: any;
2701
- when: any;
6308
+ show: null;
6309
+ when: null;
2702
6310
  eq: string;
2703
6311
  json?: undefined;
2704
6312
  };
@@ -2802,6 +6410,8 @@ export declare const Sandbox: {
2802
6410
  maxDate?: undefined;
2803
6411
  minDate?: undefined;
2804
6412
  currency?: undefined;
6413
+ rowDrafts?: undefined;
6414
+ displayAsTable?: undefined;
2805
6415
  })[];
2806
6416
  display: string;
2807
6417
  };