@tsed/react-formio 1.13.1 → 1.13.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (184) hide show
  1. package/.eslintignore +13 -0
  2. package/.eslintrc.js +7 -0
  3. package/coverage.json +6 -0
  4. package/dist/components/actions-table/actionsTable.component.d.ts +0 -1
  5. package/dist/components/actions-table/actionsTable.stories.d.ts +0 -1
  6. package/dist/components/alert/alert.component.d.ts +1 -2
  7. package/dist/components/alert/alert.stories.d.ts +0 -1
  8. package/dist/components/card/card.stories.d.ts +0 -1
  9. package/dist/components/form/form.component.d.ts +1 -2
  10. package/dist/components/form/form.component.spec.d.ts +1 -0
  11. package/dist/components/form/form.stories.d.ts +3754 -156
  12. package/dist/components/form/useForm.hook.d.ts +6 -3
  13. package/dist/components/form-access/formAccess.stories.d.ts +1 -2
  14. package/dist/components/form-action/formAction.stories.d.ts +0 -1
  15. package/dist/components/form-builder/formBuilder.stories.d.ts +518 -153
  16. package/dist/components/form-control/formControl.component.d.ts +2 -2
  17. package/dist/components/form-control/formControl.component.spec.d.ts +1 -0
  18. package/dist/components/form-control/formControl.stories.d.ts +57 -0
  19. package/dist/components/form-edit/formEdit.component.d.ts +0 -1
  20. package/dist/components/form-edit/formEdit.stories.d.ts +18 -19
  21. package/dist/components/form-settings/formSettings.component.d.ts +0 -1
  22. package/dist/components/form-settings/formSettings.stories.d.ts +1 -2
  23. package/dist/components/forms-table/components/formCell.component.d.ts +0 -1
  24. package/dist/components/forms-table/formsTable.component.d.ts +0 -1
  25. package/dist/components/forms-table/formsTable.stories.d.ts +0 -1
  26. package/dist/components/index.d.ts +2 -2
  27. package/dist/components/input-tags/inputTags.component.d.ts +0 -1
  28. package/dist/components/input-tags/inputTags.stories.d.ts +2 -3
  29. package/dist/components/input-text/inputText.component.d.ts +0 -1
  30. package/dist/components/input-text/inputText.stories.d.ts +0 -1
  31. package/dist/components/loader/loader.component.d.ts +1 -1
  32. package/dist/components/loader/loader.stories.d.ts +0 -1
  33. package/dist/components/modal/modal.component.d.ts +1 -1
  34. package/dist/components/modal/modal.stories.d.ts +0 -1
  35. package/dist/components/pagination/pagination.component.d.ts +0 -1
  36. package/dist/components/pagination/pagination.stories.d.ts +0 -1
  37. package/dist/components/react-component/reactComponent.component.d.ts +3 -3
  38. package/dist/components/select/select.stories.d.ts +2 -3
  39. package/dist/components/submissions-table/submissionsTable.component.d.ts +0 -1
  40. package/dist/components/submissions-table/submissionsTable.stories.d.ts +13 -14
  41. package/dist/components/table/components/defaultArrowSort.component.d.ts +0 -1
  42. package/dist/components/table/components/defaultCell.component.d.ts +0 -1
  43. package/dist/components/table/components/defaultCellHeader.component.d.ts +1 -2
  44. package/dist/components/table/components/defaultCellOperations.component.d.ts +0 -1
  45. package/dist/components/table/components/defaultOperationButton.component.d.ts +0 -1
  46. package/dist/components/table/filters/defaultColumnFilter.component.d.ts +0 -1
  47. package/dist/components/table/filters/selectColumnFilter.component.d.ts +0 -1
  48. package/dist/components/table/filters/sliderColumnFilter.component.d.ts +0 -1
  49. package/dist/components/table/index.d.ts +1 -1
  50. package/dist/components/table/table.stories.d.ts +4 -5
  51. package/dist/components/tabs/tabs.component.stories.d.ts +0 -1
  52. package/dist/hooks/useTooltip.d.ts +1 -1
  53. package/dist/index.d.ts +3 -3
  54. package/dist/index.js +8014 -7967
  55. package/dist/index.js.map +1 -1
  56. package/dist/index.modern.js +7392 -7340
  57. package/dist/index.modern.js.map +1 -1
  58. package/dist/stores/actions/index.d.ts +1 -1
  59. package/dist/stores/auth/auth.selectors.d.ts +1 -1
  60. package/dist/stores/auth/index.d.ts +4 -4
  61. package/dist/stores/index.d.ts +2 -2
  62. package/jest.config.js +6 -1
  63. package/package.json +8 -5
  64. package/src/components/__fixtures__/form.fixture.json +23 -0
  65. package/src/components/actions-table/actionsTable.component.spec.tsx +11 -11
  66. package/src/components/actions-table/actionsTable.component.tsx +8 -9
  67. package/src/components/actions-table/actionsTable.stories.tsx +1 -0
  68. package/src/components/alert/alert.component.spec.tsx +21 -19
  69. package/src/components/alert/alert.stories.tsx +1 -0
  70. package/src/components/card/card.component.spec.tsx +5 -4
  71. package/src/components/card/card.stories.tsx +1 -0
  72. package/src/components/form/form.component.spec.tsx +57 -0
  73. package/src/components/form/form.component.tsx +4 -3
  74. package/src/components/form/form.stories.tsx +206 -57
  75. package/src/components/form/useForm.hook.ts +68 -37
  76. package/src/components/form-access/formAccess.component.tsx +3 -2
  77. package/src/components/form-access/formAccess.schema.ts +1 -0
  78. package/src/components/form-access/formAccess.stories.tsx +1 -0
  79. package/src/components/form-access/formAccess.utils.ts +6 -5
  80. package/src/components/form-action/formAction.component.tsx +5 -4
  81. package/src/components/form-action/formAction.stories.tsx +225 -227
  82. package/src/components/form-builder/formBuilder.component.tsx +2 -1
  83. package/src/components/form-builder/formBuilder.stories.tsx +1 -0
  84. package/src/components/form-control/formControl.component.spec.tsx +76 -0
  85. package/src/components/form-control/formControl.component.tsx +15 -7
  86. package/src/components/form-control/formControl.stories.tsx +65 -0
  87. package/src/components/form-edit/formCtas.component.tsx +10 -9
  88. package/src/components/form-edit/formEdit.component.tsx +2 -1
  89. package/src/components/form-edit/formEdit.reducer.ts +1 -0
  90. package/src/components/form-edit/formEdit.stories.tsx +1 -0
  91. package/src/components/form-edit/formParameters.component.tsx +1 -0
  92. package/src/components/form-edit/useFormEdit.hook.ts +1 -0
  93. package/src/components/form-settings/formSettings.component.spec.tsx +7 -6
  94. package/src/components/form-settings/formSettings.component.tsx +12 -14
  95. package/src/components/form-settings/formSettings.stories.tsx +1 -0
  96. package/src/components/form-settings/formSettings.utils.ts +4 -3
  97. package/src/components/forms-table/components/formCell.component.tsx +1 -0
  98. package/src/components/forms-table/formsTable.component.tsx +23 -25
  99. package/src/components/forms-table/formsTable.stories.tsx +1 -0
  100. package/src/components/index.ts +2 -2
  101. package/src/components/input-tags/inputTags.component.tsx +7 -6
  102. package/src/components/input-tags/inputTags.stories.tsx +1 -0
  103. package/src/components/input-text/inputText.component.spec.tsx +12 -11
  104. package/src/components/input-text/inputText.component.tsx +3 -2
  105. package/src/components/input-text/inputText.stories.tsx +1 -0
  106. package/src/components/loader/loader.component.spec.tsx +6 -5
  107. package/src/components/loader/loader.component.tsx +1 -0
  108. package/src/components/loader/loader.stories.tsx +1 -0
  109. package/src/components/modal/modal.component.spec.tsx +36 -33
  110. package/src/components/modal/modal.component.tsx +3 -3
  111. package/src/components/modal/modal.stories.tsx +1 -0
  112. package/src/components/modal/removeModal.component.tsx +1 -0
  113. package/src/components/pagination/pagination.component.spec.tsx +24 -21
  114. package/src/components/pagination/pagination.component.tsx +1 -0
  115. package/src/components/pagination/pagination.stories.tsx +1 -0
  116. package/src/components/react-component/reactComponent.component.tsx +11 -7
  117. package/src/components/select/select.component.spec.tsx +17 -18
  118. package/src/components/select/select.component.tsx +3 -2
  119. package/src/components/select/select.stories.tsx +1 -0
  120. package/src/components/submissions-table/submissionsTable.component.tsx +3 -2
  121. package/src/components/submissions-table/submissionsTable.stories.tsx +1 -0
  122. package/src/components/table/components/defaultArrowSort.component.tsx +1 -0
  123. package/src/components/table/components/defaultCellHeader.component.tsx +1 -1
  124. package/src/components/table/components/defaultCellOperations.component.tsx +1 -0
  125. package/src/components/table/components/defaultOperationButton.component.tsx +1 -0
  126. package/src/components/table/filters/defaultColumnFilter.component.spec.tsx +5 -3
  127. package/src/components/table/filters/defaultColumnFilter.component.tsx +1 -0
  128. package/src/components/table/filters/selectColumnFilter.component.spec.tsx +9 -7
  129. package/src/components/table/filters/selectColumnFilter.component.tsx +1 -0
  130. package/src/components/table/index.ts +1 -1
  131. package/src/components/table/table.component.tsx +5 -4
  132. package/src/components/table/table.stories.tsx +2 -1
  133. package/src/components/table/utils/mapFormToColumns.tsx +3 -2
  134. package/src/components/table/utils/useOperations.hook.tsx +1 -0
  135. package/src/components/tabs/tabs.component.spec.tsx +6 -5
  136. package/src/components/tabs/tabs.component.stories.tsx +1 -0
  137. package/src/components/tabs/tabs.component.tsx +11 -5
  138. package/src/hooks/useTooltip.ts +1 -1
  139. package/src/index.ts +3 -4
  140. package/src/interfaces/Operation.ts +1 -0
  141. package/src/stores/action/action.actions.spec.ts +1 -0
  142. package/src/stores/action/action.actions.ts +1 -0
  143. package/src/stores/action/action.reducers.ts +1 -1
  144. package/src/stores/action-info/action-info.actions.spec.ts +1 -0
  145. package/src/stores/action-info/action-info.actions.ts +2 -1
  146. package/src/stores/action-info/action-info.reducers.ts +2 -1
  147. package/src/stores/action-info/action-info.selectors.ts +2 -1
  148. package/src/stores/actions/actions.actions.spec.ts +1 -0
  149. package/src/stores/actions/actions.actions.ts +1 -0
  150. package/src/stores/actions/actions.reducers.ts +1 -0
  151. package/src/stores/actions/index.ts +1 -1
  152. package/src/stores/auth/auth.actions.ts +1 -0
  153. package/src/stores/auth/auth.reducers.ts +1 -0
  154. package/src/stores/auth/auth.selectors.ts +1 -0
  155. package/src/stores/auth/auth.utils.tsx +3 -2
  156. package/src/stores/auth/getAccess.action.spec.ts +1 -0
  157. package/src/stores/auth/getAccess.action.ts +3 -2
  158. package/src/stores/auth/getProjectAccess.action.ts +1 -0
  159. package/src/stores/auth/index.ts +4 -4
  160. package/src/stores/auth/initAuth.action.spec.ts +1 -0
  161. package/src/stores/auth/initAuth.action.ts +1 -0
  162. package/src/stores/auth/logout.action.spec.ts +2 -0
  163. package/src/stores/auth/logout.action.ts +1 -0
  164. package/src/stores/auth/setUser.action.spec.ts +1 -0
  165. package/src/stores/auth/setUser.action.ts +1 -0
  166. package/src/stores/form/form.actions.spec.ts +1 -0
  167. package/src/stores/form/form.actions.ts +1 -0
  168. package/src/stores/form/form.reducers.ts +1 -0
  169. package/src/stores/form/form.selectors.ts +1 -1
  170. package/src/stores/forms/forms.actions.spec.ts +1 -0
  171. package/src/stores/forms/forms.actions.ts +1 -0
  172. package/src/stores/forms/forms.reducers.ts +1 -0
  173. package/src/stores/index.ts +3 -2
  174. package/src/stores/root/root.selectors.ts +3 -3
  175. package/src/stores/submission/submission.actions.spec.ts +1 -0
  176. package/src/stores/submission/submission.actions.ts +1 -0
  177. package/src/stores/submission/submission.reducers.ts +1 -0
  178. package/src/stores/submissions/submissions.actions.spec.ts +1 -0
  179. package/src/stores/submissions/submissions.actions.ts +1 -0
  180. package/src/stores/submissions/submissions.reducers.ts +1 -0
  181. package/tsconfig.json +10 -27
  182. package/tsconfig.node.json +8 -0
  183. package/craco.config.js +0 -11
  184. package/tsconfig.test.json +0 -6
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { 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;
@@ -46,8 +98,3388 @@ export declare const Sandbox: {
46
98
  disableFunction?: undefined;
47
99
  maxDate?: undefined;
48
100
  };
49
- inputMask: string;
50
- allowMultipleMasks: boolean;
101
+ inputMask: string;
102
+ allowMultipleMasks: boolean;
103
+ customClass: string;
104
+ tabindex: string;
105
+ autocomplete: string;
106
+ hidden: boolean;
107
+ hideLabel: boolean;
108
+ showWordCount: boolean;
109
+ showCharCount: boolean;
110
+ mask: boolean;
111
+ autofocus: boolean;
112
+ spellcheck: boolean;
113
+ disabled: boolean;
114
+ tableView: boolean;
115
+ modalEdit: boolean;
116
+ multiple: boolean;
117
+ persistent: boolean;
118
+ inputFormat: string;
119
+ protected: boolean;
120
+ dbIndex: boolean;
121
+ case: string;
122
+ encrypted: boolean;
123
+ redrawOn: string;
124
+ clearOnHide: boolean;
125
+ customDefaultValue: string;
126
+ calculateValue: string;
127
+ calculateServer: boolean;
128
+ allowCalculateOverride: boolean;
129
+ validateOn: string;
130
+ validate: {
131
+ required: boolean;
132
+ pattern: string;
133
+ customMessage: string;
134
+ custom: string;
135
+ customPrivate: boolean;
136
+ json: string;
137
+ minLength: string;
138
+ maxLength: string;
139
+ strictDateValidation: boolean;
140
+ multiple: boolean;
141
+ unique: boolean;
142
+ minWords?: undefined;
143
+ maxWords?: undefined;
144
+ min?: undefined;
145
+ max?: undefined;
146
+ step?: undefined;
147
+ integer?: undefined;
148
+ };
149
+ unique: boolean;
150
+ errorLabel: string;
151
+ key: string;
152
+ tags: never[];
153
+ properties: {};
154
+ conditional: {
155
+ show: null;
156
+ when: null;
157
+ eq: string;
158
+ json: string;
159
+ };
160
+ customConditional: string;
161
+ logic: never[];
162
+ attributes: {};
163
+ overlay: {
164
+ style: string;
165
+ page: string;
166
+ left: string;
167
+ top: string;
168
+ width: string;
169
+ height: string;
170
+ };
171
+ type: string;
172
+ input: boolean;
173
+ refreshOn: string;
174
+ inputType: string;
175
+ id: string;
176
+ defaultValue: string;
177
+ editor?: undefined;
178
+ autoExpand?: undefined;
179
+ fixedSize?: undefined;
180
+ rows?: undefined;
181
+ wysiwyg?: undefined;
182
+ delimiter?: undefined;
183
+ requireDecimal?: undefined;
184
+ shortcut?: undefined;
185
+ name?: undefined;
186
+ value?: undefined;
187
+ dataGridLabel?: undefined;
188
+ optionsLabelPosition?: undefined;
189
+ inline?: undefined;
190
+ values?: undefined;
191
+ minSelectedCountMessage?: undefined;
192
+ maxSelectedCountMessage?: undefined;
193
+ fieldSet?: undefined;
194
+ dataType?: undefined;
195
+ uniqueOptions?: undefined;
196
+ dataSrc?: undefined;
197
+ data?: undefined;
198
+ valueProperty?: undefined;
199
+ idPath?: undefined;
200
+ template?: undefined;
201
+ refreshOnBlur?: undefined;
202
+ clearOnRefresh?: undefined;
203
+ searchEnabled?: undefined;
204
+ selectThreshold?: undefined;
205
+ readOnlyValue?: undefined;
206
+ customOptions?: undefined;
207
+ useExactSearch?: undefined;
208
+ indexeddb?: undefined;
209
+ selectFields?: undefined;
210
+ searchField?: undefined;
211
+ minSearch?: undefined;
212
+ filter?: undefined;
213
+ limit?: undefined;
214
+ lazyLoad?: undefined;
215
+ authenticate?: undefined;
216
+ searchThreshold?: undefined;
217
+ fuseOptions?: undefined;
218
+ kickbox?: undefined;
219
+ delimeter?: undefined;
220
+ maxTags?: undefined;
221
+ storeas?: undefined;
222
+ enableManualMode?: undefined;
223
+ disableClearIcon?: undefined;
224
+ provider?: undefined;
225
+ manualModeViewString?: undefined;
226
+ switchToManualModeLabel?: undefined;
227
+ tree?: undefined;
228
+ components?: undefined;
229
+ providerOptions?: undefined;
230
+ displayInTimezone?: undefined;
231
+ useLocaleSettings?: undefined;
232
+ allowInput?: undefined;
233
+ format?: undefined;
234
+ enableDate?: undefined;
235
+ enableMinDateInput?: undefined;
236
+ datePicker?: undefined;
237
+ enableMaxDateInput?: undefined;
238
+ enableTime?: undefined;
239
+ timePicker?: undefined;
240
+ defaultDate?: undefined;
241
+ timezone?: undefined;
242
+ datepickerMode?: undefined;
243
+ hideInputLabels?: undefined;
244
+ inputsLabelPosition?: undefined;
245
+ fields?: undefined;
246
+ dayFirst?: undefined;
247
+ maxDate?: undefined;
248
+ minDate?: undefined;
249
+ currency?: undefined;
250
+ rowDrafts?: undefined;
251
+ displayAsTable?: undefined;
252
+ size?: undefined;
253
+ block?: undefined;
254
+ action?: undefined;
255
+ disableOnInvalid?: undefined;
256
+ theme?: undefined;
257
+ leftIcon?: undefined;
258
+ rightIcon?: undefined;
259
+ } | {
260
+ label: string;
261
+ labelPosition: string;
262
+ placeholder: string;
263
+ description: string;
264
+ tooltip: string;
265
+ prefix: string;
266
+ suffix: string;
267
+ widget: {
268
+ type: string;
269
+ displayInTimezone?: undefined;
270
+ locale?: undefined;
271
+ useLocaleSettings?: undefined;
272
+ allowInput?: undefined;
273
+ mode?: undefined;
274
+ enableTime?: undefined;
275
+ noCalendar?: undefined;
276
+ format?: undefined;
277
+ hourIncrement?: undefined;
278
+ minuteIncrement?: undefined;
279
+ minDate?: undefined;
280
+ disabledDates?: undefined;
281
+ disableWeekends?: undefined;
282
+ disableWeekdays?: undefined;
283
+ disableFunction?: undefined;
284
+ maxDate?: undefined;
285
+ };
286
+ editor: string;
287
+ autoExpand: boolean;
288
+ customClass: string;
289
+ tabindex: string;
290
+ autocomplete: string;
291
+ hidden: boolean;
292
+ hideLabel: boolean;
293
+ showWordCount: boolean;
294
+ showCharCount: boolean;
295
+ autofocus: boolean;
296
+ spellcheck: boolean;
297
+ disabled: boolean;
298
+ tableView: boolean;
299
+ modalEdit: boolean;
300
+ multiple: boolean;
301
+ persistent: boolean;
302
+ inputFormat: string;
303
+ protected: boolean;
304
+ dbIndex: boolean;
305
+ case: string;
306
+ encrypted: boolean;
307
+ redrawOn: string;
308
+ clearOnHide: boolean;
309
+ customDefaultValue: string;
310
+ calculateValue: string;
311
+ calculateServer: boolean;
312
+ allowCalculateOverride: boolean;
313
+ validateOn: string;
314
+ validate: {
315
+ required: boolean;
316
+ pattern: string;
317
+ customMessage: string;
318
+ custom: string;
319
+ customPrivate: boolean;
320
+ json: string;
321
+ minLength: string;
322
+ maxLength: string;
323
+ minWords: string;
324
+ maxWords: string;
325
+ strictDateValidation: boolean;
326
+ multiple: boolean;
327
+ unique: boolean;
328
+ min?: undefined;
329
+ max?: undefined;
330
+ step?: undefined;
331
+ integer?: undefined;
332
+ };
333
+ unique: boolean;
334
+ errorLabel: string;
335
+ key: string;
336
+ tags: never[];
337
+ properties: {};
338
+ conditional: {
339
+ show: null;
340
+ when: null;
341
+ eq: string;
342
+ json: string;
343
+ };
344
+ customConditional: string;
345
+ logic: never[];
346
+ fixedSize: boolean;
347
+ overlay: {
348
+ style: string;
349
+ page: string;
350
+ left: string;
351
+ top: string;
352
+ width: string;
353
+ height: string;
354
+ };
355
+ attributes: {};
356
+ type: string;
357
+ rows: number;
358
+ wysiwyg: boolean;
359
+ input: boolean;
360
+ refreshOn: string;
361
+ allowMultipleMasks: boolean;
362
+ mask: boolean;
363
+ inputType: string;
364
+ inputMask: string;
365
+ id: string;
366
+ defaultValue: string;
367
+ delimiter?: undefined;
368
+ requireDecimal?: undefined;
369
+ shortcut?: undefined;
370
+ name?: undefined;
371
+ value?: undefined;
372
+ dataGridLabel?: undefined;
373
+ optionsLabelPosition?: undefined;
374
+ inline?: undefined;
375
+ values?: undefined;
376
+ minSelectedCountMessage?: undefined;
377
+ maxSelectedCountMessage?: undefined;
378
+ fieldSet?: undefined;
379
+ dataType?: undefined;
380
+ uniqueOptions?: undefined;
381
+ dataSrc?: undefined;
382
+ data?: undefined;
383
+ valueProperty?: undefined;
384
+ idPath?: undefined;
385
+ template?: undefined;
386
+ refreshOnBlur?: undefined;
387
+ clearOnRefresh?: undefined;
388
+ searchEnabled?: undefined;
389
+ selectThreshold?: undefined;
390
+ readOnlyValue?: undefined;
391
+ customOptions?: undefined;
392
+ useExactSearch?: undefined;
393
+ indexeddb?: undefined;
394
+ selectFields?: undefined;
395
+ searchField?: undefined;
396
+ minSearch?: undefined;
397
+ filter?: undefined;
398
+ limit?: undefined;
399
+ lazyLoad?: undefined;
400
+ authenticate?: undefined;
401
+ searchThreshold?: undefined;
402
+ fuseOptions?: undefined;
403
+ kickbox?: undefined;
404
+ delimeter?: undefined;
405
+ maxTags?: undefined;
406
+ storeas?: undefined;
407
+ enableManualMode?: undefined;
408
+ disableClearIcon?: undefined;
409
+ provider?: undefined;
410
+ manualModeViewString?: undefined;
411
+ switchToManualModeLabel?: undefined;
412
+ tree?: undefined;
413
+ components?: undefined;
414
+ providerOptions?: undefined;
415
+ displayInTimezone?: undefined;
416
+ useLocaleSettings?: undefined;
417
+ allowInput?: undefined;
418
+ format?: undefined;
419
+ enableDate?: undefined;
420
+ enableMinDateInput?: undefined;
421
+ datePicker?: undefined;
422
+ enableMaxDateInput?: undefined;
423
+ enableTime?: undefined;
424
+ timePicker?: undefined;
425
+ defaultDate?: undefined;
426
+ timezone?: undefined;
427
+ datepickerMode?: undefined;
428
+ hideInputLabels?: undefined;
429
+ inputsLabelPosition?: undefined;
430
+ fields?: undefined;
431
+ dayFirst?: undefined;
432
+ maxDate?: undefined;
433
+ minDate?: undefined;
434
+ currency?: undefined;
435
+ rowDrafts?: undefined;
436
+ displayAsTable?: undefined;
437
+ size?: undefined;
438
+ block?: undefined;
439
+ action?: undefined;
440
+ disableOnInvalid?: undefined;
441
+ theme?: undefined;
442
+ leftIcon?: undefined;
443
+ rightIcon?: undefined;
444
+ } | {
445
+ label: string;
446
+ labelPosition: string;
447
+ placeholder: string;
448
+ description: string;
449
+ tooltip: string;
450
+ prefix: string;
451
+ suffix: string;
452
+ widget: {
453
+ type: string;
454
+ displayInTimezone?: undefined;
455
+ locale?: undefined;
456
+ useLocaleSettings?: undefined;
457
+ allowInput?: undefined;
458
+ mode?: undefined;
459
+ enableTime?: undefined;
460
+ noCalendar?: undefined;
461
+ format?: undefined;
462
+ hourIncrement?: undefined;
463
+ minuteIncrement?: undefined;
464
+ minDate?: undefined;
465
+ disabledDates?: undefined;
466
+ disableWeekends?: undefined;
467
+ disableWeekdays?: undefined;
468
+ disableFunction?: undefined;
469
+ maxDate?: undefined;
470
+ };
471
+ customClass: string;
472
+ tabindex: string;
473
+ autocomplete: string;
474
+ hidden: boolean;
475
+ hideLabel: boolean;
476
+ mask: boolean;
477
+ autofocus: boolean;
478
+ spellcheck: boolean;
479
+ disabled: boolean;
480
+ tableView: boolean;
481
+ modalEdit: boolean;
482
+ multiple: boolean;
483
+ persistent: boolean;
484
+ delimiter: boolean;
485
+ requireDecimal: boolean;
486
+ inputFormat: string;
487
+ protected: boolean;
488
+ dbIndex: boolean;
489
+ encrypted: boolean;
490
+ redrawOn: string;
491
+ clearOnHide: boolean;
492
+ customDefaultValue: string;
493
+ calculateValue: string;
494
+ calculateServer: boolean;
495
+ allowCalculateOverride: boolean;
496
+ validateOn: string;
497
+ validate: {
498
+ required: boolean;
499
+ customMessage: string;
500
+ custom: string;
501
+ customPrivate: boolean;
502
+ json: string;
503
+ min: string;
504
+ max: string;
505
+ strictDateValidation: boolean;
506
+ multiple: boolean;
507
+ unique: boolean;
508
+ step: string;
509
+ integer: string;
510
+ pattern?: undefined;
511
+ minLength?: undefined;
512
+ maxLength?: undefined;
513
+ minWords?: undefined;
514
+ maxWords?: undefined;
515
+ };
516
+ errorLabel: string;
517
+ key: string;
518
+ tags: never[];
519
+ properties: {};
520
+ conditional: {
521
+ show: null;
522
+ when: null;
523
+ eq: string;
524
+ json: string;
525
+ };
526
+ customConditional: string;
527
+ logic: never[];
528
+ attributes: {};
529
+ overlay: {
530
+ style: string;
531
+ page: string;
532
+ left: string;
533
+ top: string;
534
+ width: string;
535
+ height: string;
536
+ };
537
+ type: string;
538
+ input: boolean;
539
+ unique: boolean;
540
+ refreshOn: string;
541
+ showCharCount: boolean;
542
+ showWordCount: boolean;
543
+ allowMultipleMasks: boolean;
544
+ id: string;
545
+ defaultValue: null;
546
+ inputMask?: undefined;
547
+ case?: undefined;
548
+ inputType?: undefined;
549
+ editor?: undefined;
550
+ autoExpand?: undefined;
551
+ fixedSize?: undefined;
552
+ rows?: undefined;
553
+ wysiwyg?: undefined;
554
+ shortcut?: undefined;
555
+ name?: undefined;
556
+ value?: undefined;
557
+ dataGridLabel?: undefined;
558
+ optionsLabelPosition?: undefined;
559
+ inline?: undefined;
560
+ values?: undefined;
561
+ minSelectedCountMessage?: undefined;
562
+ maxSelectedCountMessage?: undefined;
563
+ fieldSet?: undefined;
564
+ dataType?: undefined;
565
+ uniqueOptions?: undefined;
566
+ dataSrc?: undefined;
567
+ data?: undefined;
568
+ valueProperty?: undefined;
569
+ idPath?: undefined;
570
+ template?: undefined;
571
+ refreshOnBlur?: undefined;
572
+ clearOnRefresh?: undefined;
573
+ searchEnabled?: undefined;
574
+ selectThreshold?: undefined;
575
+ readOnlyValue?: undefined;
576
+ customOptions?: undefined;
577
+ useExactSearch?: undefined;
578
+ indexeddb?: undefined;
579
+ selectFields?: undefined;
580
+ searchField?: undefined;
581
+ minSearch?: undefined;
582
+ filter?: undefined;
583
+ limit?: undefined;
584
+ lazyLoad?: undefined;
585
+ authenticate?: undefined;
586
+ searchThreshold?: undefined;
587
+ fuseOptions?: undefined;
588
+ kickbox?: undefined;
589
+ delimeter?: undefined;
590
+ maxTags?: undefined;
591
+ storeas?: undefined;
592
+ enableManualMode?: undefined;
593
+ disableClearIcon?: undefined;
594
+ provider?: undefined;
595
+ manualModeViewString?: undefined;
596
+ switchToManualModeLabel?: undefined;
597
+ tree?: undefined;
598
+ components?: undefined;
599
+ providerOptions?: undefined;
600
+ displayInTimezone?: undefined;
601
+ useLocaleSettings?: undefined;
602
+ allowInput?: undefined;
603
+ format?: undefined;
604
+ enableDate?: undefined;
605
+ enableMinDateInput?: undefined;
606
+ datePicker?: undefined;
607
+ enableMaxDateInput?: undefined;
608
+ enableTime?: undefined;
609
+ timePicker?: undefined;
610
+ defaultDate?: undefined;
611
+ timezone?: undefined;
612
+ datepickerMode?: undefined;
613
+ hideInputLabels?: undefined;
614
+ inputsLabelPosition?: undefined;
615
+ fields?: undefined;
616
+ dayFirst?: undefined;
617
+ maxDate?: undefined;
618
+ minDate?: undefined;
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;
807
+ size?: undefined;
808
+ block?: undefined;
809
+ action?: undefined;
810
+ disableOnInvalid?: undefined;
811
+ theme?: undefined;
812
+ leftIcon?: undefined;
813
+ rightIcon?: undefined;
814
+ } | {
815
+ label: string;
816
+ description: string;
817
+ tooltip: string;
818
+ shortcut: string;
819
+ inputType: string;
820
+ customClass: string;
821
+ tabindex: string;
822
+ hidden: boolean;
823
+ hideLabel: boolean;
824
+ autofocus: boolean;
825
+ disabled: boolean;
826
+ tableView: boolean;
827
+ modalEdit: boolean;
828
+ defaultValue: boolean;
829
+ persistent: boolean;
830
+ protected: boolean;
831
+ dbIndex: boolean;
832
+ encrypted: boolean;
833
+ redrawOn: string;
834
+ clearOnHide: boolean;
835
+ customDefaultValue: string;
836
+ calculateValue: string;
837
+ calculateServer: boolean;
838
+ allowCalculateOverride: boolean;
839
+ validate: {
840
+ required: boolean;
841
+ customMessage: string;
842
+ custom: string;
843
+ customPrivate: boolean;
844
+ json: string;
845
+ strictDateValidation: boolean;
846
+ multiple: boolean;
847
+ unique: boolean;
848
+ pattern?: undefined;
849
+ minLength?: undefined;
850
+ maxLength?: undefined;
851
+ minWords?: undefined;
852
+ maxWords?: undefined;
853
+ min?: undefined;
854
+ max?: undefined;
855
+ step?: undefined;
856
+ integer?: undefined;
857
+ };
858
+ errorLabel: string;
859
+ key: string;
860
+ tags: never[];
861
+ properties: {};
862
+ conditional: {
863
+ show: null;
864
+ when: null;
865
+ eq: string;
866
+ json: string;
867
+ };
868
+ customConditional: string;
869
+ logic: never[];
870
+ attributes: {};
871
+ overlay: {
872
+ style: string;
873
+ page: string;
874
+ left: string;
875
+ top: string;
876
+ width: string;
877
+ height: string;
878
+ };
879
+ type: string;
880
+ name: string;
881
+ value: string;
882
+ input: boolean;
883
+ placeholder: string;
884
+ prefix: string;
885
+ suffix: string;
886
+ multiple: boolean;
887
+ unique: boolean;
888
+ refreshOn: string;
889
+ labelPosition: string;
890
+ widget: null;
891
+ validateOn: string;
892
+ showCharCount: boolean;
893
+ showWordCount: boolean;
894
+ allowMultipleMasks: boolean;
895
+ dataGridLabel: boolean;
896
+ id: string;
897
+ inputMask?: undefined;
898
+ autocomplete?: undefined;
899
+ mask?: undefined;
900
+ spellcheck?: undefined;
901
+ inputFormat?: undefined;
902
+ case?: undefined;
903
+ editor?: undefined;
904
+ autoExpand?: undefined;
905
+ fixedSize?: undefined;
906
+ rows?: undefined;
907
+ wysiwyg?: undefined;
908
+ delimiter?: undefined;
909
+ requireDecimal?: undefined;
910
+ optionsLabelPosition?: undefined;
911
+ inline?: undefined;
912
+ values?: undefined;
913
+ minSelectedCountMessage?: undefined;
914
+ maxSelectedCountMessage?: undefined;
915
+ fieldSet?: undefined;
916
+ dataType?: undefined;
917
+ uniqueOptions?: undefined;
918
+ dataSrc?: undefined;
919
+ data?: undefined;
920
+ valueProperty?: undefined;
921
+ idPath?: undefined;
922
+ template?: undefined;
923
+ refreshOnBlur?: undefined;
924
+ clearOnRefresh?: undefined;
925
+ searchEnabled?: undefined;
926
+ selectThreshold?: undefined;
927
+ readOnlyValue?: undefined;
928
+ customOptions?: undefined;
929
+ useExactSearch?: undefined;
930
+ indexeddb?: undefined;
931
+ selectFields?: undefined;
932
+ searchField?: undefined;
933
+ minSearch?: undefined;
934
+ filter?: undefined;
935
+ limit?: undefined;
936
+ lazyLoad?: undefined;
937
+ authenticate?: undefined;
938
+ searchThreshold?: undefined;
939
+ fuseOptions?: undefined;
940
+ kickbox?: undefined;
941
+ delimeter?: undefined;
942
+ maxTags?: undefined;
943
+ storeas?: undefined;
944
+ enableManualMode?: undefined;
945
+ disableClearIcon?: undefined;
946
+ provider?: undefined;
947
+ manualModeViewString?: undefined;
948
+ switchToManualModeLabel?: undefined;
949
+ tree?: undefined;
950
+ components?: undefined;
951
+ providerOptions?: undefined;
952
+ displayInTimezone?: undefined;
953
+ useLocaleSettings?: undefined;
954
+ allowInput?: undefined;
955
+ format?: undefined;
956
+ enableDate?: undefined;
957
+ enableMinDateInput?: undefined;
958
+ datePicker?: undefined;
959
+ enableMaxDateInput?: undefined;
960
+ enableTime?: undefined;
961
+ timePicker?: undefined;
962
+ defaultDate?: undefined;
963
+ timezone?: undefined;
964
+ datepickerMode?: undefined;
965
+ hideInputLabels?: undefined;
966
+ inputsLabelPosition?: undefined;
967
+ fields?: undefined;
968
+ dayFirst?: undefined;
969
+ maxDate?: undefined;
970
+ minDate?: undefined;
971
+ currency?: undefined;
972
+ rowDrafts?: undefined;
973
+ displayAsTable?: undefined;
974
+ size?: undefined;
975
+ block?: undefined;
976
+ action?: undefined;
977
+ disableOnInvalid?: undefined;
978
+ theme?: undefined;
979
+ leftIcon?: undefined;
980
+ rightIcon?: undefined;
981
+ } | {
982
+ label: string;
983
+ labelPosition: string;
984
+ optionsLabelPosition: string;
985
+ description: string;
986
+ tooltip: string;
987
+ customClass: string;
988
+ tabindex: string;
989
+ inline: boolean;
990
+ hidden: boolean;
991
+ hideLabel: boolean;
992
+ autofocus: boolean;
993
+ disabled: boolean;
994
+ tableView: boolean;
995
+ modalEdit: boolean;
996
+ values: {
997
+ label: string;
998
+ value: string;
999
+ shortcut: string;
1000
+ }[];
1001
+ persistent: boolean;
1002
+ protected: boolean;
1003
+ dbIndex: boolean;
1004
+ encrypted: boolean;
1005
+ redrawOn: string;
1006
+ clearOnHide: boolean;
1007
+ customDefaultValue: string;
1008
+ calculateValue: string;
1009
+ calculateServer: boolean;
1010
+ allowCalculateOverride: boolean;
1011
+ validate: {
1012
+ required: boolean;
1013
+ customMessage: string;
1014
+ custom: string;
1015
+ customPrivate: boolean;
1016
+ json: string;
1017
+ strictDateValidation: boolean;
1018
+ multiple: boolean;
1019
+ unique: boolean;
1020
+ pattern?: undefined;
1021
+ minLength?: undefined;
1022
+ maxLength?: undefined;
1023
+ minWords?: undefined;
1024
+ maxWords?: undefined;
1025
+ min?: undefined;
1026
+ max?: undefined;
1027
+ step?: undefined;
1028
+ integer?: undefined;
1029
+ };
1030
+ errorLabel: string;
1031
+ minSelectedCountMessage: string;
1032
+ maxSelectedCountMessage: string;
1033
+ key: string;
1034
+ tags: never[];
1035
+ properties: {};
1036
+ conditional: {
1037
+ show: null;
1038
+ when: null;
1039
+ eq: string;
1040
+ json: string;
1041
+ };
1042
+ customConditional: string;
1043
+ logic: never[];
1044
+ attributes: {};
1045
+ overlay: {
1046
+ style: string;
1047
+ page: string;
1048
+ left: string;
1049
+ top: string;
1050
+ width: string;
1051
+ height: string;
1052
+ };
1053
+ type: string;
1054
+ input: boolean;
1055
+ placeholder: string;
1056
+ prefix: string;
1057
+ suffix: string;
1058
+ multiple: boolean;
1059
+ unique: boolean;
1060
+ refreshOn: string;
1061
+ widget: null;
1062
+ validateOn: string;
1063
+ showCharCount: boolean;
1064
+ showWordCount: boolean;
1065
+ allowMultipleMasks: boolean;
1066
+ inputType: string;
1067
+ fieldSet: boolean;
1068
+ id: string;
1069
+ defaultValue: {
1070
+ "": boolean;
1071
+ };
1072
+ inputMask?: undefined;
1073
+ autocomplete?: undefined;
1074
+ mask?: undefined;
1075
+ spellcheck?: undefined;
1076
+ inputFormat?: undefined;
1077
+ case?: undefined;
1078
+ editor?: undefined;
1079
+ autoExpand?: undefined;
1080
+ fixedSize?: undefined;
1081
+ rows?: undefined;
1082
+ wysiwyg?: undefined;
1083
+ delimiter?: undefined;
1084
+ requireDecimal?: undefined;
1085
+ shortcut?: undefined;
1086
+ name?: undefined;
1087
+ value?: undefined;
1088
+ dataGridLabel?: undefined;
1089
+ dataType?: undefined;
1090
+ uniqueOptions?: undefined;
1091
+ dataSrc?: undefined;
1092
+ data?: undefined;
1093
+ valueProperty?: undefined;
1094
+ idPath?: undefined;
1095
+ template?: undefined;
1096
+ refreshOnBlur?: undefined;
1097
+ clearOnRefresh?: undefined;
1098
+ searchEnabled?: undefined;
1099
+ selectThreshold?: undefined;
1100
+ readOnlyValue?: undefined;
1101
+ customOptions?: undefined;
1102
+ useExactSearch?: undefined;
1103
+ indexeddb?: undefined;
1104
+ selectFields?: undefined;
1105
+ searchField?: undefined;
1106
+ minSearch?: undefined;
1107
+ filter?: undefined;
1108
+ limit?: undefined;
1109
+ lazyLoad?: undefined;
1110
+ authenticate?: undefined;
1111
+ searchThreshold?: undefined;
1112
+ fuseOptions?: undefined;
1113
+ kickbox?: undefined;
1114
+ delimeter?: undefined;
1115
+ maxTags?: undefined;
1116
+ storeas?: undefined;
1117
+ enableManualMode?: undefined;
1118
+ disableClearIcon?: undefined;
1119
+ provider?: undefined;
1120
+ manualModeViewString?: undefined;
1121
+ switchToManualModeLabel?: undefined;
1122
+ tree?: undefined;
1123
+ components?: undefined;
1124
+ providerOptions?: undefined;
1125
+ displayInTimezone?: undefined;
1126
+ useLocaleSettings?: undefined;
1127
+ allowInput?: undefined;
1128
+ format?: undefined;
1129
+ enableDate?: undefined;
1130
+ enableMinDateInput?: undefined;
1131
+ datePicker?: undefined;
1132
+ enableMaxDateInput?: undefined;
1133
+ enableTime?: undefined;
1134
+ timePicker?: undefined;
1135
+ defaultDate?: undefined;
1136
+ timezone?: undefined;
1137
+ datepickerMode?: undefined;
1138
+ hideInputLabels?: undefined;
1139
+ inputsLabelPosition?: undefined;
1140
+ fields?: undefined;
1141
+ dayFirst?: undefined;
1142
+ maxDate?: undefined;
1143
+ minDate?: undefined;
1144
+ currency?: undefined;
1145
+ rowDrafts?: undefined;
1146
+ displayAsTable?: undefined;
1147
+ size?: undefined;
1148
+ block?: undefined;
1149
+ action?: undefined;
1150
+ disableOnInvalid?: undefined;
1151
+ theme?: undefined;
1152
+ leftIcon?: undefined;
1153
+ rightIcon?: undefined;
1154
+ } | {
1155
+ label: string;
1156
+ labelPosition: string;
1157
+ optionsLabelPosition: string;
1158
+ description: string;
1159
+ tooltip: string;
1160
+ customClass: string;
1161
+ tabindex: string;
1162
+ inline: boolean;
1163
+ hidden: boolean;
1164
+ hideLabel: boolean;
1165
+ autofocus: boolean;
1166
+ disabled: boolean;
1167
+ tableView: boolean;
1168
+ modalEdit: boolean;
1169
+ values: {
1170
+ label: string;
1171
+ value: string;
1172
+ shortcut: string;
1173
+ }[];
1174
+ dataType: string;
1175
+ persistent: boolean;
1176
+ protected: boolean;
1177
+ dbIndex: boolean;
1178
+ encrypted: boolean;
1179
+ redrawOn: string;
1180
+ clearOnHide: boolean;
1181
+ customDefaultValue: string;
1182
+ calculateValue: string;
1183
+ calculateServer: boolean;
1184
+ allowCalculateOverride: boolean;
1185
+ validate: {
1186
+ required: boolean;
1187
+ customMessage: string;
1188
+ custom: string;
1189
+ customPrivate: boolean;
1190
+ json: string;
1191
+ strictDateValidation: boolean;
1192
+ multiple: boolean;
1193
+ unique: boolean;
1194
+ pattern?: undefined;
1195
+ minLength?: undefined;
1196
+ maxLength?: undefined;
1197
+ minWords?: undefined;
1198
+ maxWords?: undefined;
1199
+ min?: undefined;
1200
+ max?: undefined;
1201
+ step?: undefined;
1202
+ integer?: undefined;
1203
+ };
1204
+ errorLabel: string;
1205
+ key: string;
1206
+ tags: never[];
1207
+ properties: {};
1208
+ conditional: {
1209
+ show: null;
1210
+ when: null;
1211
+ eq: string;
1212
+ json: string;
1213
+ };
1214
+ customConditional: string;
1215
+ logic: never[];
1216
+ attributes: {};
1217
+ overlay: {
1218
+ style: string;
1219
+ page: string;
1220
+ left: string;
1221
+ top: string;
1222
+ width: string;
1223
+ height: string;
1224
+ };
1225
+ type: string;
1226
+ input: boolean;
1227
+ placeholder: string;
1228
+ prefix: string;
1229
+ suffix: string;
1230
+ multiple: boolean;
1231
+ unique: boolean;
1232
+ refreshOn: string;
1233
+ widget: null;
1234
+ validateOn: string;
1235
+ showCharCount: boolean;
1236
+ showWordCount: boolean;
1237
+ allowMultipleMasks: boolean;
1238
+ inputType: string;
1239
+ fieldSet: boolean;
1240
+ id: string;
1241
+ defaultValue: string;
1242
+ inputMask?: undefined;
1243
+ autocomplete?: undefined;
1244
+ mask?: undefined;
1245
+ spellcheck?: undefined;
1246
+ inputFormat?: undefined;
1247
+ case?: undefined;
1248
+ editor?: undefined;
1249
+ autoExpand?: undefined;
1250
+ fixedSize?: undefined;
1251
+ rows?: undefined;
1252
+ wysiwyg?: undefined;
1253
+ delimiter?: undefined;
1254
+ requireDecimal?: undefined;
1255
+ shortcut?: undefined;
1256
+ name?: undefined;
1257
+ value?: undefined;
1258
+ dataGridLabel?: undefined;
1259
+ minSelectedCountMessage?: undefined;
1260
+ maxSelectedCountMessage?: undefined;
1261
+ uniqueOptions?: undefined;
1262
+ dataSrc?: undefined;
1263
+ data?: undefined;
1264
+ valueProperty?: undefined;
1265
+ idPath?: undefined;
1266
+ template?: undefined;
1267
+ refreshOnBlur?: undefined;
1268
+ clearOnRefresh?: undefined;
1269
+ searchEnabled?: undefined;
1270
+ selectThreshold?: undefined;
1271
+ readOnlyValue?: undefined;
1272
+ customOptions?: undefined;
1273
+ useExactSearch?: undefined;
1274
+ indexeddb?: undefined;
1275
+ selectFields?: undefined;
1276
+ searchField?: undefined;
1277
+ minSearch?: undefined;
1278
+ filter?: undefined;
1279
+ limit?: undefined;
1280
+ lazyLoad?: undefined;
1281
+ authenticate?: undefined;
1282
+ searchThreshold?: undefined;
1283
+ fuseOptions?: undefined;
1284
+ kickbox?: undefined;
1285
+ delimeter?: undefined;
1286
+ maxTags?: undefined;
1287
+ storeas?: undefined;
1288
+ enableManualMode?: undefined;
1289
+ disableClearIcon?: undefined;
1290
+ provider?: undefined;
1291
+ manualModeViewString?: undefined;
1292
+ switchToManualModeLabel?: undefined;
1293
+ tree?: undefined;
1294
+ components?: undefined;
1295
+ providerOptions?: undefined;
1296
+ displayInTimezone?: undefined;
1297
+ useLocaleSettings?: undefined;
1298
+ allowInput?: undefined;
1299
+ format?: undefined;
1300
+ enableDate?: undefined;
1301
+ enableMinDateInput?: undefined;
1302
+ datePicker?: undefined;
1303
+ enableMaxDateInput?: undefined;
1304
+ enableTime?: undefined;
1305
+ timePicker?: undefined;
1306
+ defaultDate?: undefined;
1307
+ timezone?: undefined;
1308
+ datepickerMode?: undefined;
1309
+ hideInputLabels?: undefined;
1310
+ inputsLabelPosition?: undefined;
1311
+ fields?: undefined;
1312
+ dayFirst?: undefined;
1313
+ maxDate?: undefined;
1314
+ minDate?: undefined;
1315
+ currency?: undefined;
1316
+ rowDrafts?: undefined;
1317
+ displayAsTable?: undefined;
1318
+ size?: undefined;
1319
+ block?: undefined;
1320
+ action?: undefined;
1321
+ disableOnInvalid?: undefined;
1322
+ theme?: undefined;
1323
+ leftIcon?: undefined;
1324
+ rightIcon?: undefined;
1325
+ } | {
1326
+ label: string;
1327
+ labelPosition: string;
1328
+ widget: string;
1329
+ placeholder: string;
1330
+ description: string;
1331
+ tooltip: string;
1332
+ customClass: string;
1333
+ tabindex: string;
1334
+ hidden: boolean;
1335
+ hideLabel: boolean;
1336
+ uniqueOptions: boolean;
1337
+ autofocus: boolean;
1338
+ disabled: boolean;
1339
+ tableView: boolean;
1340
+ modalEdit: boolean;
1341
+ multiple: boolean;
1342
+ dataSrc: string;
1343
+ data: {
1344
+ values: {
1345
+ label: string;
1346
+ value: string;
1347
+ }[];
1348
+ resource: string;
1349
+ json: string;
1350
+ url: string;
1351
+ custom: string;
1352
+ };
1353
+ valueProperty: string;
1354
+ dataType: string;
1355
+ idPath: string;
1356
+ template: string;
1357
+ refreshOn: string;
1358
+ refreshOnBlur: string;
1359
+ clearOnRefresh: boolean;
1360
+ searchEnabled: boolean;
1361
+ selectThreshold: number;
1362
+ readOnlyValue: boolean;
1363
+ customOptions: {};
1364
+ useExactSearch: boolean;
1365
+ persistent: boolean;
1366
+ protected: boolean;
1367
+ dbIndex: boolean;
1368
+ encrypted: boolean;
1369
+ clearOnHide: boolean;
1370
+ customDefaultValue: string;
1371
+ calculateValue: string;
1372
+ calculateServer: boolean;
1373
+ allowCalculateOverride: boolean;
1374
+ validateOn: string;
1375
+ validate: {
1376
+ required: boolean;
1377
+ customMessage: string;
1378
+ custom: string;
1379
+ customPrivate: boolean;
1380
+ json: string;
1381
+ strictDateValidation: boolean;
1382
+ multiple: boolean;
1383
+ unique: boolean;
1384
+ pattern?: undefined;
1385
+ minLength?: undefined;
1386
+ maxLength?: undefined;
1387
+ minWords?: undefined;
1388
+ maxWords?: undefined;
1389
+ min?: undefined;
1390
+ max?: undefined;
1391
+ step?: undefined;
1392
+ integer?: undefined;
1393
+ };
1394
+ unique: boolean;
1395
+ errorLabel: string;
1396
+ key: string;
1397
+ tags: never[];
1398
+ properties: {};
1399
+ conditional: {
1400
+ show: null;
1401
+ when: null;
1402
+ eq: string;
1403
+ json: string;
1404
+ };
1405
+ customConditional: string;
1406
+ logic: never[];
1407
+ attributes: {};
1408
+ overlay: {
1409
+ style: string;
1410
+ page: string;
1411
+ left: string;
1412
+ top: string;
1413
+ width: string;
1414
+ height: string;
1415
+ };
1416
+ type: string;
1417
+ indexeddb: {
1418
+ filter: {};
1419
+ };
1420
+ selectFields: string;
1421
+ searchField: string;
1422
+ minSearch: number;
1423
+ filter: string;
1424
+ limit: number;
1425
+ redrawOn: string;
1426
+ input: boolean;
1427
+ prefix: string;
1428
+ suffix: string;
1429
+ showCharCount: boolean;
1430
+ showWordCount: boolean;
1431
+ allowMultipleMasks: boolean;
1432
+ lazyLoad: boolean;
1433
+ authenticate: boolean;
1434
+ searchThreshold: number;
1435
+ fuseOptions: {
1436
+ include: string;
1437
+ threshold: number;
1438
+ };
1439
+ id: string;
1440
+ defaultValue: string;
1441
+ inputMask?: undefined;
1442
+ autocomplete?: undefined;
1443
+ mask?: undefined;
1444
+ spellcheck?: undefined;
1445
+ inputFormat?: undefined;
1446
+ case?: undefined;
1447
+ inputType?: undefined;
1448
+ editor?: undefined;
1449
+ autoExpand?: undefined;
1450
+ fixedSize?: undefined;
1451
+ rows?: undefined;
1452
+ wysiwyg?: undefined;
1453
+ delimiter?: undefined;
1454
+ requireDecimal?: undefined;
1455
+ shortcut?: undefined;
1456
+ name?: undefined;
1457
+ value?: undefined;
1458
+ dataGridLabel?: undefined;
1459
+ optionsLabelPosition?: undefined;
1460
+ inline?: undefined;
1461
+ values?: undefined;
1462
+ minSelectedCountMessage?: undefined;
1463
+ maxSelectedCountMessage?: undefined;
1464
+ fieldSet?: undefined;
1465
+ kickbox?: undefined;
1466
+ delimeter?: undefined;
1467
+ maxTags?: undefined;
1468
+ storeas?: undefined;
1469
+ enableManualMode?: undefined;
1470
+ disableClearIcon?: undefined;
1471
+ provider?: undefined;
1472
+ manualModeViewString?: undefined;
1473
+ switchToManualModeLabel?: undefined;
1474
+ tree?: undefined;
1475
+ components?: undefined;
1476
+ providerOptions?: undefined;
1477
+ displayInTimezone?: undefined;
1478
+ useLocaleSettings?: undefined;
1479
+ allowInput?: undefined;
1480
+ format?: undefined;
1481
+ enableDate?: undefined;
1482
+ enableMinDateInput?: undefined;
1483
+ datePicker?: undefined;
1484
+ enableMaxDateInput?: undefined;
1485
+ enableTime?: undefined;
1486
+ timePicker?: undefined;
1487
+ defaultDate?: undefined;
1488
+ timezone?: undefined;
1489
+ datepickerMode?: undefined;
1490
+ hideInputLabels?: undefined;
1491
+ inputsLabelPosition?: undefined;
1492
+ fields?: undefined;
1493
+ dayFirst?: undefined;
1494
+ maxDate?: undefined;
1495
+ minDate?: undefined;
1496
+ currency?: undefined;
1497
+ rowDrafts?: undefined;
1498
+ displayAsTable?: undefined;
1499
+ size?: undefined;
1500
+ block?: undefined;
1501
+ action?: undefined;
1502
+ disableOnInvalid?: undefined;
1503
+ theme?: undefined;
1504
+ leftIcon?: undefined;
1505
+ rightIcon?: undefined;
1506
+ } | {
1507
+ label: string;
1508
+ labelPosition: string;
1509
+ placeholder: string;
1510
+ description: string;
1511
+ tooltip: string;
1512
+ prefix: string;
1513
+ suffix: string;
1514
+ widget: {
1515
+ type: string;
1516
+ displayInTimezone?: undefined;
1517
+ locale?: undefined;
1518
+ useLocaleSettings?: undefined;
1519
+ allowInput?: undefined;
1520
+ mode?: undefined;
1521
+ enableTime?: undefined;
1522
+ noCalendar?: undefined;
1523
+ format?: undefined;
1524
+ hourIncrement?: undefined;
1525
+ minuteIncrement?: undefined;
1526
+ minDate?: undefined;
1527
+ disabledDates?: undefined;
1528
+ disableWeekends?: undefined;
1529
+ disableWeekdays?: undefined;
1530
+ disableFunction?: undefined;
1531
+ maxDate?: undefined;
1532
+ };
1533
+ customClass: string;
1534
+ tabindex: string;
1535
+ autocomplete: string;
1536
+ hidden: boolean;
1537
+ hideLabel: boolean;
1538
+ mask: boolean;
1539
+ autofocus: boolean;
1540
+ spellcheck: boolean;
1541
+ disabled: boolean;
1542
+ tableView: boolean;
1543
+ modalEdit: boolean;
1544
+ multiple: boolean;
1545
+ persistent: boolean;
1546
+ inputFormat: string;
1547
+ protected: boolean;
1548
+ dbIndex: boolean;
1549
+ case: string;
1550
+ encrypted: boolean;
1551
+ redrawOn: string;
1552
+ clearOnHide: boolean;
1553
+ customDefaultValue: string;
1554
+ calculateValue: string;
1555
+ calculateServer: boolean;
1556
+ allowCalculateOverride: boolean;
1557
+ validateOn: string;
1558
+ validate: {
1559
+ required: boolean;
1560
+ pattern: string;
1561
+ customMessage: string;
1562
+ custom: string;
1563
+ customPrivate: boolean;
1564
+ json: string;
1565
+ minLength: string;
1566
+ maxLength: string;
1567
+ strictDateValidation: boolean;
1568
+ multiple: boolean;
1569
+ unique: boolean;
1570
+ minWords?: undefined;
1571
+ maxWords?: undefined;
1572
+ min?: undefined;
1573
+ max?: undefined;
1574
+ step?: undefined;
1575
+ integer?: undefined;
1576
+ };
1577
+ unique: boolean;
1578
+ kickbox: {
1579
+ enabled: boolean;
1580
+ };
1581
+ errorLabel: string;
1582
+ key: string;
1583
+ tags: never[];
1584
+ properties: {};
1585
+ conditional: {
1586
+ show: null;
1587
+ when: null;
1588
+ eq: string;
1589
+ json: string;
1590
+ };
1591
+ customConditional: string;
1592
+ logic: never[];
1593
+ attributes: {};
1594
+ overlay: {
1595
+ style: string;
1596
+ page: string;
1597
+ left: string;
1598
+ top: string;
1599
+ width: string;
1600
+ height: string;
1601
+ };
1602
+ type: string;
1603
+ input: boolean;
1604
+ refreshOn: string;
1605
+ showCharCount: boolean;
1606
+ showWordCount: boolean;
1607
+ allowMultipleMasks: boolean;
1608
+ inputType: string;
1609
+ inputMask: string;
1610
+ id: string;
1611
+ defaultValue: null;
1612
+ editor?: undefined;
1613
+ autoExpand?: undefined;
1614
+ fixedSize?: undefined;
1615
+ rows?: undefined;
1616
+ wysiwyg?: undefined;
1617
+ delimiter?: undefined;
1618
+ requireDecimal?: undefined;
1619
+ shortcut?: undefined;
1620
+ name?: undefined;
1621
+ value?: undefined;
1622
+ dataGridLabel?: undefined;
1623
+ optionsLabelPosition?: undefined;
1624
+ inline?: undefined;
1625
+ values?: undefined;
1626
+ minSelectedCountMessage?: undefined;
1627
+ maxSelectedCountMessage?: undefined;
1628
+ fieldSet?: undefined;
1629
+ dataType?: undefined;
1630
+ uniqueOptions?: undefined;
1631
+ dataSrc?: undefined;
1632
+ data?: undefined;
1633
+ valueProperty?: undefined;
1634
+ idPath?: undefined;
1635
+ template?: undefined;
1636
+ refreshOnBlur?: undefined;
1637
+ clearOnRefresh?: undefined;
1638
+ searchEnabled?: undefined;
1639
+ selectThreshold?: undefined;
1640
+ readOnlyValue?: undefined;
1641
+ customOptions?: undefined;
1642
+ useExactSearch?: undefined;
1643
+ indexeddb?: undefined;
1644
+ selectFields?: undefined;
1645
+ searchField?: undefined;
1646
+ minSearch?: undefined;
1647
+ filter?: undefined;
1648
+ limit?: undefined;
1649
+ lazyLoad?: undefined;
1650
+ authenticate?: undefined;
1651
+ searchThreshold?: undefined;
1652
+ fuseOptions?: undefined;
1653
+ delimeter?: undefined;
1654
+ maxTags?: undefined;
1655
+ storeas?: undefined;
1656
+ enableManualMode?: undefined;
1657
+ disableClearIcon?: undefined;
1658
+ provider?: undefined;
1659
+ manualModeViewString?: undefined;
1660
+ switchToManualModeLabel?: undefined;
1661
+ tree?: undefined;
1662
+ components?: undefined;
1663
+ providerOptions?: undefined;
1664
+ displayInTimezone?: undefined;
1665
+ useLocaleSettings?: undefined;
1666
+ allowInput?: undefined;
1667
+ format?: undefined;
1668
+ enableDate?: undefined;
1669
+ enableMinDateInput?: undefined;
1670
+ datePicker?: undefined;
1671
+ enableMaxDateInput?: undefined;
1672
+ enableTime?: undefined;
1673
+ timePicker?: undefined;
1674
+ defaultDate?: undefined;
1675
+ timezone?: undefined;
1676
+ datepickerMode?: undefined;
1677
+ hideInputLabels?: undefined;
1678
+ inputsLabelPosition?: undefined;
1679
+ fields?: undefined;
1680
+ dayFirst?: undefined;
1681
+ maxDate?: undefined;
1682
+ minDate?: undefined;
1683
+ currency?: undefined;
1684
+ rowDrafts?: undefined;
1685
+ displayAsTable?: undefined;
1686
+ size?: undefined;
1687
+ block?: undefined;
1688
+ action?: undefined;
1689
+ disableOnInvalid?: undefined;
1690
+ theme?: undefined;
1691
+ leftIcon?: undefined;
1692
+ rightIcon?: undefined;
1693
+ } | {
1694
+ label: string;
1695
+ labelPosition: string;
1696
+ placeholder: string;
1697
+ description: string;
1698
+ tooltip: string;
1699
+ prefix: string;
1700
+ suffix: string;
1701
+ widget: {
1702
+ type: string;
1703
+ displayInTimezone?: undefined;
1704
+ locale?: undefined;
1705
+ useLocaleSettings?: undefined;
1706
+ allowInput?: undefined;
1707
+ mode?: undefined;
1708
+ enableTime?: undefined;
1709
+ noCalendar?: undefined;
1710
+ format?: undefined;
1711
+ hourIncrement?: undefined;
1712
+ minuteIncrement?: undefined;
1713
+ minDate?: undefined;
1714
+ disabledDates?: undefined;
1715
+ disableWeekends?: undefined;
1716
+ disableWeekdays?: undefined;
1717
+ disableFunction?: undefined;
1718
+ maxDate?: undefined;
1719
+ };
1720
+ customClass: string;
1721
+ tabindex: string;
1722
+ autocomplete: string;
1723
+ hidden: boolean;
1724
+ hideLabel: boolean;
1725
+ mask: boolean;
1726
+ autofocus: boolean;
1727
+ spellcheck: boolean;
1728
+ disabled: boolean;
1729
+ tableView: boolean;
1730
+ modalEdit: boolean;
1731
+ multiple: boolean;
1732
+ persistent: boolean;
1733
+ inputFormat: string;
1734
+ protected: boolean;
1735
+ dbIndex: boolean;
1736
+ encrypted: boolean;
1737
+ redrawOn: string;
1738
+ clearOnHide: boolean;
1739
+ customDefaultValue: string;
1740
+ calculateValue: string;
1741
+ calculateServer: boolean;
1742
+ allowCalculateOverride: boolean;
1743
+ validateOn: string;
1744
+ validate: {
1745
+ required: boolean;
1746
+ pattern: string;
1747
+ customMessage: string;
1748
+ custom: string;
1749
+ customPrivate: boolean;
1750
+ json: string;
1751
+ minLength: string;
1752
+ maxLength: string;
1753
+ strictDateValidation: boolean;
1754
+ multiple: boolean;
1755
+ unique: boolean;
1756
+ minWords?: undefined;
1757
+ maxWords?: undefined;
1758
+ min?: undefined;
1759
+ max?: undefined;
1760
+ step?: undefined;
1761
+ integer?: undefined;
1762
+ };
1763
+ unique: boolean;
1764
+ errorLabel: string;
1765
+ key: string;
1766
+ tags: never[];
1767
+ properties: {};
1768
+ conditional: {
1769
+ show: null;
1770
+ when: null;
1771
+ eq: string;
1772
+ json: string;
1773
+ };
1774
+ customConditional: string;
1775
+ logic: never[];
1776
+ attributes: {};
1777
+ overlay: {
1778
+ style: string;
1779
+ page: string;
1780
+ left: string;
1781
+ top: string;
1782
+ width: string;
1783
+ height: string;
1784
+ };
1785
+ type: string;
1786
+ input: boolean;
1787
+ refreshOn: string;
1788
+ showCharCount: boolean;
1789
+ showWordCount: boolean;
1790
+ allowMultipleMasks: boolean;
1791
+ inputType: string;
1792
+ inputMask: string;
1793
+ id: string;
1794
+ defaultValue: null;
1795
+ case?: undefined;
1796
+ editor?: undefined;
1797
+ autoExpand?: undefined;
1798
+ fixedSize?: undefined;
1799
+ rows?: undefined;
1800
+ wysiwyg?: undefined;
1801
+ delimiter?: undefined;
1802
+ requireDecimal?: undefined;
1803
+ shortcut?: undefined;
1804
+ name?: undefined;
1805
+ value?: undefined;
1806
+ dataGridLabel?: undefined;
1807
+ optionsLabelPosition?: undefined;
1808
+ inline?: undefined;
1809
+ values?: undefined;
1810
+ minSelectedCountMessage?: undefined;
1811
+ maxSelectedCountMessage?: undefined;
1812
+ fieldSet?: undefined;
1813
+ dataType?: undefined;
1814
+ uniqueOptions?: undefined;
1815
+ dataSrc?: undefined;
1816
+ data?: undefined;
1817
+ valueProperty?: undefined;
1818
+ idPath?: undefined;
1819
+ template?: undefined;
1820
+ refreshOnBlur?: undefined;
1821
+ clearOnRefresh?: undefined;
1822
+ searchEnabled?: undefined;
1823
+ selectThreshold?: undefined;
1824
+ readOnlyValue?: undefined;
1825
+ customOptions?: undefined;
1826
+ useExactSearch?: undefined;
1827
+ indexeddb?: undefined;
1828
+ selectFields?: undefined;
1829
+ searchField?: undefined;
1830
+ minSearch?: undefined;
1831
+ filter?: undefined;
1832
+ limit?: undefined;
1833
+ lazyLoad?: undefined;
1834
+ authenticate?: undefined;
1835
+ searchThreshold?: undefined;
1836
+ fuseOptions?: undefined;
1837
+ kickbox?: undefined;
1838
+ delimeter?: undefined;
1839
+ maxTags?: undefined;
1840
+ storeas?: undefined;
1841
+ enableManualMode?: undefined;
1842
+ disableClearIcon?: undefined;
1843
+ provider?: undefined;
1844
+ manualModeViewString?: undefined;
1845
+ switchToManualModeLabel?: undefined;
1846
+ tree?: undefined;
1847
+ components?: undefined;
1848
+ providerOptions?: undefined;
1849
+ displayInTimezone?: undefined;
1850
+ useLocaleSettings?: undefined;
1851
+ allowInput?: undefined;
1852
+ format?: undefined;
1853
+ enableDate?: undefined;
1854
+ enableMinDateInput?: undefined;
1855
+ datePicker?: undefined;
1856
+ enableMaxDateInput?: undefined;
1857
+ enableTime?: undefined;
1858
+ timePicker?: undefined;
1859
+ defaultDate?: undefined;
1860
+ timezone?: undefined;
1861
+ datepickerMode?: undefined;
1862
+ hideInputLabels?: undefined;
1863
+ inputsLabelPosition?: undefined;
1864
+ fields?: undefined;
1865
+ dayFirst?: undefined;
1866
+ maxDate?: undefined;
1867
+ minDate?: undefined;
1868
+ currency?: undefined;
1869
+ rowDrafts?: undefined;
1870
+ displayAsTable?: undefined;
1871
+ size?: undefined;
1872
+ block?: undefined;
1873
+ action?: undefined;
1874
+ disableOnInvalid?: undefined;
1875
+ theme?: undefined;
1876
+ leftIcon?: undefined;
1877
+ rightIcon?: undefined;
1878
+ } | {
1879
+ label: string;
1880
+ labelPosition: string;
1881
+ placeholder: string;
1882
+ description: string;
1883
+ tooltip: string;
1884
+ customClass: string;
1885
+ tabindex: string;
1886
+ hidden: boolean;
1887
+ hideLabel: boolean;
1888
+ autofocus: boolean;
1889
+ disabled: boolean;
1890
+ tableView: boolean;
1891
+ modalEdit: boolean;
1892
+ delimeter: string;
1893
+ maxTags: number;
1894
+ storeas: string;
1895
+ persistent: boolean;
1896
+ protected: boolean;
1897
+ dbIndex: boolean;
1898
+ encrypted: boolean;
1899
+ redrawOn: string;
1900
+ clearOnHide: boolean;
1901
+ customDefaultValue: string;
1902
+ calculateValue: string;
1903
+ calculateServer: boolean;
1904
+ allowCalculateOverride: boolean;
1905
+ validate: {
1906
+ required: boolean;
1907
+ customMessage: string;
1908
+ custom: string;
1909
+ customPrivate: boolean;
1910
+ json: string;
1911
+ strictDateValidation: boolean;
1912
+ multiple: boolean;
1913
+ unique: boolean;
1914
+ pattern?: undefined;
1915
+ minLength?: undefined;
1916
+ maxLength?: undefined;
1917
+ minWords?: undefined;
1918
+ maxWords?: undefined;
1919
+ min?: undefined;
1920
+ max?: undefined;
1921
+ step?: undefined;
1922
+ integer?: undefined;
1923
+ };
1924
+ unique: boolean;
1925
+ validateOn: string;
1926
+ errorLabel: string;
1927
+ key: string;
1928
+ tags: never[];
1929
+ properties: {};
1930
+ conditional: {
1931
+ show: null;
1932
+ when: null;
1933
+ eq: string;
1934
+ json: string;
1935
+ };
1936
+ customConditional: string;
1937
+ logic: never[];
1938
+ attributes: {};
1939
+ overlay: {
1940
+ style: string;
1941
+ page: string;
1942
+ left: string;
1943
+ top: string;
1944
+ width: string;
1945
+ height: string;
1946
+ };
1947
+ type: string;
1948
+ input: boolean;
1949
+ prefix: string;
1950
+ suffix: string;
1951
+ multiple: boolean;
1952
+ refreshOn: string;
1953
+ widget: {
1954
+ type: string;
1955
+ displayInTimezone?: undefined;
1956
+ locale?: undefined;
1957
+ useLocaleSettings?: undefined;
1958
+ allowInput?: undefined;
1959
+ mode?: undefined;
1960
+ enableTime?: undefined;
1961
+ noCalendar?: undefined;
1962
+ format?: undefined;
1963
+ hourIncrement?: undefined;
1964
+ minuteIncrement?: undefined;
1965
+ minDate?: undefined;
1966
+ disabledDates?: undefined;
1967
+ disableWeekends?: undefined;
1968
+ disableWeekdays?: undefined;
1969
+ disableFunction?: undefined;
1970
+ maxDate?: undefined;
1971
+ };
1972
+ showCharCount: boolean;
1973
+ showWordCount: boolean;
1974
+ allowMultipleMasks: boolean;
1975
+ id: string;
1976
+ defaultValue: null;
1977
+ inputMask?: undefined;
1978
+ autocomplete?: undefined;
1979
+ mask?: undefined;
1980
+ spellcheck?: undefined;
1981
+ inputFormat?: undefined;
1982
+ case?: undefined;
1983
+ inputType?: undefined;
1984
+ editor?: undefined;
1985
+ autoExpand?: undefined;
1986
+ fixedSize?: undefined;
1987
+ rows?: undefined;
1988
+ wysiwyg?: undefined;
1989
+ delimiter?: undefined;
1990
+ requireDecimal?: undefined;
1991
+ shortcut?: undefined;
1992
+ name?: undefined;
1993
+ value?: undefined;
1994
+ dataGridLabel?: undefined;
1995
+ optionsLabelPosition?: undefined;
1996
+ inline?: undefined;
1997
+ values?: undefined;
1998
+ minSelectedCountMessage?: undefined;
1999
+ maxSelectedCountMessage?: undefined;
2000
+ fieldSet?: undefined;
2001
+ dataType?: undefined;
2002
+ uniqueOptions?: undefined;
2003
+ dataSrc?: undefined;
2004
+ data?: undefined;
2005
+ valueProperty?: undefined;
2006
+ idPath?: undefined;
2007
+ template?: undefined;
2008
+ refreshOnBlur?: undefined;
2009
+ clearOnRefresh?: undefined;
2010
+ searchEnabled?: undefined;
2011
+ selectThreshold?: undefined;
2012
+ readOnlyValue?: undefined;
2013
+ customOptions?: undefined;
2014
+ useExactSearch?: undefined;
2015
+ indexeddb?: undefined;
2016
+ selectFields?: undefined;
2017
+ searchField?: undefined;
2018
+ minSearch?: undefined;
2019
+ filter?: undefined;
2020
+ limit?: undefined;
2021
+ lazyLoad?: undefined;
2022
+ authenticate?: undefined;
2023
+ searchThreshold?: undefined;
2024
+ fuseOptions?: undefined;
2025
+ kickbox?: undefined;
2026
+ enableManualMode?: undefined;
2027
+ disableClearIcon?: undefined;
2028
+ provider?: undefined;
2029
+ manualModeViewString?: undefined;
2030
+ switchToManualModeLabel?: undefined;
2031
+ tree?: undefined;
2032
+ components?: undefined;
2033
+ providerOptions?: undefined;
2034
+ displayInTimezone?: undefined;
2035
+ useLocaleSettings?: undefined;
2036
+ allowInput?: undefined;
2037
+ format?: undefined;
2038
+ enableDate?: undefined;
2039
+ enableMinDateInput?: undefined;
2040
+ datePicker?: undefined;
2041
+ enableMaxDateInput?: undefined;
2042
+ enableTime?: undefined;
2043
+ timePicker?: undefined;
2044
+ defaultDate?: undefined;
2045
+ timezone?: undefined;
2046
+ datepickerMode?: undefined;
2047
+ hideInputLabels?: undefined;
2048
+ inputsLabelPosition?: undefined;
2049
+ fields?: undefined;
2050
+ dayFirst?: undefined;
2051
+ maxDate?: undefined;
2052
+ minDate?: undefined;
2053
+ currency?: undefined;
2054
+ rowDrafts?: undefined;
2055
+ displayAsTable?: undefined;
2056
+ size?: undefined;
2057
+ block?: undefined;
2058
+ action?: undefined;
2059
+ disableOnInvalid?: undefined;
2060
+ theme?: undefined;
2061
+ leftIcon?: undefined;
2062
+ rightIcon?: undefined;
2063
+ } | {
2064
+ label: string;
2065
+ labelPosition: string;
2066
+ enableManualMode: boolean;
2067
+ disableClearIcon: boolean;
2068
+ placeholder: string;
2069
+ description: string;
2070
+ tooltip: string;
2071
+ customClass: string;
2072
+ tabindex: string;
2073
+ hidden: boolean;
2074
+ hideLabel: boolean;
2075
+ autofocus: boolean;
2076
+ disabled: boolean;
2077
+ tableView: boolean;
2078
+ modalEdit: boolean;
2079
+ multiple: boolean;
2080
+ persistent: boolean;
2081
+ protected: boolean;
2082
+ dbIndex: boolean;
2083
+ encrypted: boolean;
2084
+ redrawOn: string;
2085
+ clearOnHide: boolean;
2086
+ customDefaultValue: string;
2087
+ calculateValue: string;
2088
+ calculateServer: boolean;
2089
+ allowCalculateOverride: boolean;
2090
+ provider: string;
2091
+ manualModeViewString: string;
2092
+ validate: {
2093
+ required: boolean;
2094
+ customMessage: string;
2095
+ custom: string;
2096
+ customPrivate: boolean;
2097
+ json: string;
2098
+ strictDateValidation: boolean;
2099
+ multiple: boolean;
2100
+ unique: boolean;
2101
+ pattern?: undefined;
2102
+ minLength?: undefined;
2103
+ maxLength?: undefined;
2104
+ minWords?: undefined;
2105
+ maxWords?: undefined;
2106
+ min?: undefined;
2107
+ max?: undefined;
2108
+ step?: undefined;
2109
+ integer?: undefined;
2110
+ };
2111
+ unique: boolean;
2112
+ validateOn: string;
2113
+ errorLabel: string;
2114
+ key: string;
2115
+ tags: never[];
2116
+ properties: {};
2117
+ conditional: {
2118
+ show: null;
2119
+ when: null;
2120
+ eq: string;
2121
+ json: string;
2122
+ };
2123
+ customConditional: string;
2124
+ logic: never[];
2125
+ attributes: {};
2126
+ overlay: {
2127
+ style: string;
2128
+ page: string;
2129
+ left: string;
2130
+ top: string;
2131
+ width: string;
2132
+ height: string;
2133
+ };
2134
+ type: string;
2135
+ switchToManualModeLabel: string;
2136
+ input: boolean;
2137
+ prefix: string;
2138
+ suffix: string;
2139
+ refreshOn: string;
2140
+ widget: null;
2141
+ showCharCount: boolean;
2142
+ showWordCount: boolean;
2143
+ allowMultipleMasks: boolean;
2144
+ tree: boolean;
2145
+ components: {
2146
+ label: string;
2147
+ tableView: boolean;
2148
+ key: string;
2149
+ type: string;
2150
+ input: boolean;
2151
+ customConditional: string;
2152
+ placeholder: string;
2153
+ prefix: string;
2154
+ customClass: string;
2155
+ suffix: string;
2156
+ multiple: boolean;
2157
+ defaultValue: null;
2158
+ protected: boolean;
2159
+ unique: boolean;
2160
+ persistent: boolean;
2161
+ hidden: boolean;
2162
+ clearOnHide: boolean;
2163
+ refreshOn: string;
2164
+ redrawOn: string;
2165
+ modalEdit: boolean;
2166
+ labelPosition: string;
2167
+ description: string;
2168
+ errorLabel: string;
2169
+ tooltip: string;
2170
+ hideLabel: boolean;
2171
+ tabindex: string;
2172
+ disabled: boolean;
2173
+ autofocus: boolean;
2174
+ dbIndex: boolean;
2175
+ customDefaultValue: string;
2176
+ calculateValue: string;
2177
+ calculateServer: boolean;
2178
+ widget: {
2179
+ type: string;
2180
+ };
2181
+ attributes: {};
2182
+ validateOn: string;
2183
+ validate: {
2184
+ required: boolean;
2185
+ custom: string;
2186
+ customPrivate: boolean;
2187
+ strictDateValidation: boolean;
2188
+ multiple: boolean;
2189
+ unique: boolean;
2190
+ minLength: string;
2191
+ maxLength: string;
2192
+ pattern: string;
2193
+ };
2194
+ conditional: {
2195
+ show: null;
2196
+ when: null;
2197
+ eq: string;
2198
+ };
2199
+ overlay: {
2200
+ style: string;
2201
+ left: string;
2202
+ top: string;
2203
+ width: string;
2204
+ height: string;
2205
+ };
2206
+ allowCalculateOverride: boolean;
2207
+ encrypted: boolean;
2208
+ showCharCount: boolean;
2209
+ showWordCount: boolean;
2210
+ properties: {};
2211
+ allowMultipleMasks: boolean;
2212
+ mask: boolean;
2213
+ inputType: string;
2214
+ inputFormat: string;
2215
+ inputMask: string;
2216
+ spellcheck: boolean;
2217
+ id: string;
2218
+ }[];
2219
+ providerOptions: {
2220
+ params: {
2221
+ key: string;
2222
+ region: string;
2223
+ };
2224
+ };
2225
+ id: string;
2226
+ defaultValue: {
2227
+ ""?: undefined;
2228
+ };
2229
+ inputMask?: undefined;
2230
+ autocomplete?: undefined;
2231
+ mask?: undefined;
2232
+ spellcheck?: undefined;
2233
+ inputFormat?: undefined;
2234
+ case?: undefined;
2235
+ inputType?: undefined;
2236
+ editor?: undefined;
2237
+ autoExpand?: undefined;
2238
+ fixedSize?: undefined;
2239
+ rows?: undefined;
2240
+ wysiwyg?: undefined;
2241
+ delimiter?: undefined;
2242
+ requireDecimal?: undefined;
2243
+ shortcut?: undefined;
2244
+ name?: undefined;
2245
+ value?: undefined;
2246
+ dataGridLabel?: undefined;
2247
+ optionsLabelPosition?: undefined;
2248
+ inline?: undefined;
2249
+ values?: undefined;
2250
+ minSelectedCountMessage?: undefined;
2251
+ maxSelectedCountMessage?: undefined;
2252
+ fieldSet?: undefined;
2253
+ dataType?: undefined;
2254
+ uniqueOptions?: undefined;
2255
+ dataSrc?: undefined;
2256
+ data?: undefined;
2257
+ valueProperty?: undefined;
2258
+ idPath?: undefined;
2259
+ template?: undefined;
2260
+ refreshOnBlur?: undefined;
2261
+ clearOnRefresh?: undefined;
2262
+ searchEnabled?: undefined;
2263
+ selectThreshold?: undefined;
2264
+ readOnlyValue?: undefined;
2265
+ customOptions?: undefined;
2266
+ useExactSearch?: undefined;
2267
+ indexeddb?: undefined;
2268
+ selectFields?: undefined;
2269
+ searchField?: undefined;
2270
+ minSearch?: undefined;
2271
+ filter?: undefined;
2272
+ limit?: undefined;
2273
+ lazyLoad?: undefined;
2274
+ authenticate?: undefined;
2275
+ searchThreshold?: undefined;
2276
+ fuseOptions?: undefined;
2277
+ kickbox?: undefined;
2278
+ delimeter?: undefined;
2279
+ maxTags?: undefined;
2280
+ storeas?: undefined;
2281
+ displayInTimezone?: undefined;
2282
+ useLocaleSettings?: undefined;
2283
+ allowInput?: undefined;
2284
+ format?: undefined;
2285
+ enableDate?: undefined;
2286
+ enableMinDateInput?: undefined;
2287
+ datePicker?: undefined;
2288
+ enableMaxDateInput?: undefined;
2289
+ enableTime?: undefined;
2290
+ timePicker?: undefined;
2291
+ defaultDate?: undefined;
2292
+ timezone?: undefined;
2293
+ datepickerMode?: undefined;
2294
+ hideInputLabels?: undefined;
2295
+ inputsLabelPosition?: undefined;
2296
+ fields?: undefined;
2297
+ dayFirst?: undefined;
2298
+ maxDate?: undefined;
2299
+ minDate?: undefined;
2300
+ currency?: undefined;
2301
+ rowDrafts?: undefined;
2302
+ displayAsTable?: undefined;
2303
+ size?: undefined;
2304
+ block?: undefined;
2305
+ action?: undefined;
2306
+ disableOnInvalid?: undefined;
2307
+ theme?: undefined;
2308
+ leftIcon?: undefined;
2309
+ rightIcon?: undefined;
2310
+ } | {
2311
+ label: string;
2312
+ labelPosition: string;
2313
+ displayInTimezone: string;
2314
+ useLocaleSettings: boolean;
2315
+ allowInput: boolean;
2316
+ format: string;
2317
+ placeholder: string;
2318
+ description: string;
2319
+ tooltip: string;
2320
+ customClass: string;
2321
+ tabindex: string;
2322
+ hidden: boolean;
2323
+ hideLabel: boolean;
2324
+ autofocus: boolean;
2325
+ disabled: boolean;
2326
+ tableView: boolean;
2327
+ modalEdit: boolean;
2328
+ enableDate: boolean;
2329
+ enableMinDateInput: boolean;
2330
+ datePicker: {
2331
+ minDate: null;
2332
+ maxDate: null;
2333
+ disable: string;
2334
+ disableFunction: string;
2335
+ disableWeekends: boolean;
2336
+ disableWeekdays: boolean;
2337
+ showWeeks: boolean;
2338
+ startingDay: number;
2339
+ initDate: string;
2340
+ minMode: string;
2341
+ maxMode: string;
2342
+ yearRows: number;
2343
+ yearColumns: number;
2344
+ };
2345
+ enableMaxDateInput: boolean;
2346
+ enableTime: boolean;
2347
+ timePicker: {
2348
+ showMeridian: boolean;
2349
+ hourStep: number;
2350
+ minuteStep: number;
2351
+ readonlyInput: boolean;
2352
+ mousewheel: boolean;
2353
+ arrowkeys: boolean;
2354
+ };
2355
+ multiple: boolean;
2356
+ defaultValue: string;
2357
+ defaultDate: string;
2358
+ customOptions: {};
2359
+ persistent: boolean;
2360
+ protected: boolean;
2361
+ dbIndex: boolean;
2362
+ encrypted: boolean;
2363
+ redrawOn: string;
2364
+ clearOnHide: boolean;
2365
+ customDefaultValue: string;
2366
+ calculateValue: string;
2367
+ calculateServer: boolean;
2368
+ allowCalculateOverride: boolean;
2369
+ validate: {
2370
+ required: boolean;
2371
+ customMessage: string;
2372
+ custom: string;
2373
+ customPrivate: boolean;
2374
+ json: string;
2375
+ strictDateValidation: boolean;
2376
+ multiple: boolean;
2377
+ unique: boolean;
2378
+ pattern?: undefined;
2379
+ minLength?: undefined;
2380
+ maxLength?: undefined;
2381
+ minWords?: undefined;
2382
+ maxWords?: undefined;
2383
+ min?: undefined;
2384
+ max?: undefined;
2385
+ step?: undefined;
2386
+ integer?: undefined;
2387
+ };
2388
+ unique: boolean;
2389
+ validateOn: string;
2390
+ errorLabel: string;
2391
+ key: string;
2392
+ tags: never[];
2393
+ properties: {};
2394
+ conditional: {
2395
+ show: null;
2396
+ when: null;
2397
+ eq: string;
2398
+ json: string;
2399
+ };
2400
+ customConditional: string;
2401
+ logic: never[];
2402
+ attributes: {};
2403
+ overlay: {
2404
+ style: string;
2405
+ page: string;
2406
+ left: string;
2407
+ top: string;
2408
+ width: string;
2409
+ height: string;
2410
+ };
2411
+ type: string;
2412
+ timezone: string;
2413
+ input: boolean;
2414
+ prefix: string;
2415
+ suffix: string;
2416
+ refreshOn: string;
2417
+ widget: {
2418
+ type: string;
2419
+ displayInTimezone: string;
2420
+ locale: string;
2421
+ useLocaleSettings: boolean;
2422
+ allowInput: boolean;
2423
+ mode: string;
2424
+ enableTime: boolean;
2425
+ noCalendar: boolean;
2426
+ format: string;
2427
+ hourIncrement: number;
2428
+ minuteIncrement: number;
2429
+ minDate: null;
2430
+ disabledDates: string;
2431
+ disableWeekends: boolean;
2432
+ disableWeekdays: boolean;
2433
+ disableFunction: string;
2434
+ maxDate: null;
2435
+ };
2436
+ showCharCount: boolean;
2437
+ showWordCount: boolean;
2438
+ allowMultipleMasks: boolean;
2439
+ datepickerMode: string;
2440
+ id: string;
2441
+ inputMask?: undefined;
2442
+ autocomplete?: undefined;
2443
+ mask?: undefined;
2444
+ spellcheck?: undefined;
2445
+ inputFormat?: undefined;
2446
+ case?: undefined;
2447
+ inputType?: undefined;
2448
+ editor?: undefined;
2449
+ autoExpand?: undefined;
2450
+ fixedSize?: undefined;
2451
+ rows?: undefined;
2452
+ wysiwyg?: undefined;
2453
+ delimiter?: undefined;
2454
+ requireDecimal?: undefined;
2455
+ shortcut?: undefined;
2456
+ name?: undefined;
2457
+ value?: undefined;
2458
+ dataGridLabel?: undefined;
2459
+ optionsLabelPosition?: undefined;
2460
+ inline?: undefined;
2461
+ values?: undefined;
2462
+ minSelectedCountMessage?: undefined;
2463
+ maxSelectedCountMessage?: undefined;
2464
+ fieldSet?: undefined;
2465
+ dataType?: undefined;
2466
+ uniqueOptions?: undefined;
2467
+ dataSrc?: undefined;
2468
+ data?: undefined;
2469
+ valueProperty?: undefined;
2470
+ idPath?: undefined;
2471
+ template?: undefined;
2472
+ refreshOnBlur?: undefined;
2473
+ clearOnRefresh?: undefined;
2474
+ searchEnabled?: undefined;
2475
+ selectThreshold?: undefined;
2476
+ readOnlyValue?: undefined;
2477
+ useExactSearch?: undefined;
2478
+ indexeddb?: undefined;
2479
+ selectFields?: undefined;
2480
+ searchField?: undefined;
2481
+ minSearch?: undefined;
2482
+ filter?: undefined;
2483
+ limit?: undefined;
2484
+ lazyLoad?: undefined;
2485
+ authenticate?: undefined;
2486
+ searchThreshold?: undefined;
2487
+ fuseOptions?: undefined;
2488
+ kickbox?: undefined;
2489
+ delimeter?: undefined;
2490
+ maxTags?: undefined;
2491
+ storeas?: undefined;
2492
+ enableManualMode?: undefined;
2493
+ disableClearIcon?: undefined;
2494
+ provider?: undefined;
2495
+ manualModeViewString?: undefined;
2496
+ switchToManualModeLabel?: undefined;
2497
+ tree?: undefined;
2498
+ components?: undefined;
2499
+ providerOptions?: undefined;
2500
+ hideInputLabels?: undefined;
2501
+ inputsLabelPosition?: undefined;
2502
+ fields?: undefined;
2503
+ dayFirst?: undefined;
2504
+ maxDate?: undefined;
2505
+ minDate?: undefined;
2506
+ currency?: undefined;
2507
+ rowDrafts?: undefined;
2508
+ displayAsTable?: undefined;
2509
+ size?: undefined;
2510
+ block?: undefined;
2511
+ action?: undefined;
2512
+ disableOnInvalid?: undefined;
2513
+ theme?: undefined;
2514
+ leftIcon?: undefined;
2515
+ rightIcon?: undefined;
2516
+ } | {
2517
+ label: string;
2518
+ hideInputLabels: boolean;
2519
+ inputsLabelPosition: string;
2520
+ description: string;
2521
+ useLocaleSettings: boolean;
2522
+ tooltip: string;
2523
+ customClass: string;
2524
+ tabindex: string;
2525
+ hidden: boolean;
2526
+ hideLabel: boolean;
2527
+ autofocus: boolean;
2528
+ disabled: boolean;
2529
+ tableView: boolean;
2530
+ modalEdit: boolean;
2531
+ fields: {
2532
+ day: {
2533
+ type: string;
2534
+ placeholder: string;
2535
+ hide: boolean;
2536
+ required: boolean;
2537
+ };
2538
+ month: {
2539
+ type: string;
2540
+ placeholder: string;
2541
+ hide: boolean;
2542
+ required: boolean;
2543
+ };
2544
+ year: {
2545
+ type: string;
2546
+ placeholder: string;
2547
+ hide: boolean;
2548
+ required: boolean;
2549
+ };
2550
+ };
2551
+ dayFirst: boolean;
2552
+ persistent: boolean;
2553
+ protected: boolean;
2554
+ dbIndex: boolean;
2555
+ encrypted: boolean;
2556
+ redrawOn: string;
2557
+ clearOnHide: boolean;
2558
+ customDefaultValue: string;
2559
+ calculateValue: string;
2560
+ calculateServer: boolean;
2561
+ allowCalculateOverride: boolean;
2562
+ validateOn: string;
2563
+ maxDate: string;
2564
+ minDate: string;
2565
+ unique: boolean;
2566
+ errorLabel: string;
2567
+ validate: {
2568
+ customMessage: string;
2569
+ custom: string;
2570
+ customPrivate: boolean;
2571
+ json: string;
2572
+ required: boolean;
2573
+ strictDateValidation: boolean;
2574
+ multiple: boolean;
2575
+ unique: boolean;
2576
+ pattern?: undefined;
2577
+ minLength?: undefined;
2578
+ maxLength?: undefined;
2579
+ minWords?: undefined;
2580
+ maxWords?: undefined;
2581
+ min?: undefined;
2582
+ max?: undefined;
2583
+ step?: undefined;
2584
+ integer?: undefined;
2585
+ };
2586
+ key: string;
2587
+ tags: never[];
2588
+ properties: {};
2589
+ conditional: {
2590
+ show: null;
2591
+ when: null;
2592
+ eq: string;
2593
+ json: string;
2594
+ };
2595
+ customConditional: string;
2596
+ logic: never[];
2597
+ attributes: {};
2598
+ overlay: {
2599
+ style: string;
2600
+ page: string;
2601
+ left: string;
2602
+ top: string;
2603
+ width: string;
2604
+ height: string;
2605
+ };
2606
+ type: string;
2607
+ input: boolean;
2608
+ placeholder: string;
2609
+ prefix: string;
2610
+ suffix: string;
2611
+ multiple: boolean;
2612
+ refreshOn: string;
2613
+ labelPosition: string;
2614
+ widget: null;
2615
+ showCharCount: boolean;
2616
+ showWordCount: boolean;
2617
+ allowMultipleMasks: boolean;
2618
+ id: string;
2619
+ defaultValue: string;
2620
+ inputMask?: undefined;
2621
+ autocomplete?: undefined;
2622
+ mask?: undefined;
2623
+ spellcheck?: undefined;
2624
+ inputFormat?: undefined;
2625
+ case?: undefined;
2626
+ inputType?: undefined;
2627
+ editor?: undefined;
2628
+ autoExpand?: undefined;
2629
+ fixedSize?: undefined;
2630
+ rows?: undefined;
2631
+ wysiwyg?: undefined;
2632
+ delimiter?: undefined;
2633
+ requireDecimal?: undefined;
2634
+ shortcut?: undefined;
2635
+ name?: undefined;
2636
+ value?: undefined;
2637
+ dataGridLabel?: undefined;
2638
+ optionsLabelPosition?: undefined;
2639
+ inline?: undefined;
2640
+ values?: undefined;
2641
+ minSelectedCountMessage?: undefined;
2642
+ maxSelectedCountMessage?: undefined;
2643
+ fieldSet?: undefined;
2644
+ dataType?: undefined;
2645
+ uniqueOptions?: undefined;
2646
+ dataSrc?: undefined;
2647
+ data?: undefined;
2648
+ valueProperty?: undefined;
2649
+ idPath?: undefined;
2650
+ template?: undefined;
2651
+ refreshOnBlur?: undefined;
2652
+ clearOnRefresh?: undefined;
2653
+ searchEnabled?: undefined;
2654
+ selectThreshold?: undefined;
2655
+ readOnlyValue?: undefined;
2656
+ customOptions?: undefined;
2657
+ useExactSearch?: undefined;
2658
+ indexeddb?: undefined;
2659
+ selectFields?: undefined;
2660
+ searchField?: undefined;
2661
+ minSearch?: undefined;
2662
+ filter?: undefined;
2663
+ limit?: undefined;
2664
+ lazyLoad?: undefined;
2665
+ authenticate?: undefined;
2666
+ searchThreshold?: undefined;
2667
+ fuseOptions?: undefined;
2668
+ kickbox?: undefined;
2669
+ delimeter?: undefined;
2670
+ maxTags?: undefined;
2671
+ storeas?: undefined;
2672
+ enableManualMode?: undefined;
2673
+ disableClearIcon?: undefined;
2674
+ provider?: undefined;
2675
+ manualModeViewString?: undefined;
2676
+ switchToManualModeLabel?: undefined;
2677
+ tree?: undefined;
2678
+ components?: undefined;
2679
+ providerOptions?: undefined;
2680
+ displayInTimezone?: undefined;
2681
+ allowInput?: undefined;
2682
+ format?: undefined;
2683
+ enableDate?: undefined;
2684
+ enableMinDateInput?: undefined;
2685
+ datePicker?: undefined;
2686
+ enableMaxDateInput?: undefined;
2687
+ enableTime?: undefined;
2688
+ timePicker?: undefined;
2689
+ defaultDate?: undefined;
2690
+ timezone?: undefined;
2691
+ datepickerMode?: undefined;
2692
+ currency?: undefined;
2693
+ rowDrafts?: undefined;
2694
+ displayAsTable?: undefined;
2695
+ size?: undefined;
2696
+ block?: undefined;
2697
+ action?: undefined;
2698
+ disableOnInvalid?: undefined;
2699
+ theme?: undefined;
2700
+ leftIcon?: undefined;
2701
+ rightIcon?: undefined;
2702
+ } | {
2703
+ label: string;
2704
+ labelPosition: string;
2705
+ placeholder: string;
2706
+ description: string;
2707
+ tooltip: string;
2708
+ prefix: string;
2709
+ suffix: string;
2710
+ widget: {
2711
+ type: string;
2712
+ displayInTimezone?: undefined;
2713
+ locale?: undefined;
2714
+ useLocaleSettings?: undefined;
2715
+ allowInput?: undefined;
2716
+ mode?: undefined;
2717
+ enableTime?: undefined;
2718
+ noCalendar?: undefined;
2719
+ format?: undefined;
2720
+ hourIncrement?: undefined;
2721
+ minuteIncrement?: undefined;
2722
+ minDate?: undefined;
2723
+ disabledDates?: undefined;
2724
+ disableWeekends?: undefined;
2725
+ disableWeekdays?: undefined;
2726
+ disableFunction?: undefined;
2727
+ maxDate?: undefined;
2728
+ };
2729
+ customClass: string;
2730
+ tabindex: string;
2731
+ autocomplete: string;
2732
+ hidden: boolean;
2733
+ hideLabel: boolean;
2734
+ mask: boolean;
2735
+ autofocus: boolean;
2736
+ spellcheck: boolean;
2737
+ disabled: boolean;
2738
+ tableView: boolean;
2739
+ modalEdit: boolean;
2740
+ multiple: boolean;
2741
+ persistent: boolean;
2742
+ currency: string;
2743
+ inputFormat: string;
2744
+ protected: boolean;
2745
+ dbIndex: boolean;
2746
+ case: string;
2747
+ encrypted: boolean;
2748
+ redrawOn: string;
2749
+ clearOnHide: boolean;
2750
+ customDefaultValue: string;
2751
+ calculateValue: string;
2752
+ calculateServer: boolean;
2753
+ allowCalculateOverride: boolean;
2754
+ validateOn: string;
2755
+ validate: {
2756
+ required: boolean;
2757
+ customMessage: string;
2758
+ custom: string;
2759
+ customPrivate: boolean;
2760
+ json: string;
2761
+ strictDateValidation: boolean;
2762
+ multiple: boolean;
2763
+ unique: boolean;
2764
+ min: string;
2765
+ max: string;
2766
+ step: string;
2767
+ integer: string;
2768
+ pattern?: undefined;
2769
+ minLength?: undefined;
2770
+ maxLength?: undefined;
2771
+ minWords?: undefined;
2772
+ maxWords?: undefined;
2773
+ };
2774
+ unique: boolean;
2775
+ errorLabel: string;
2776
+ key: string;
2777
+ tags: never[];
2778
+ properties: {};
2779
+ conditional: {
2780
+ show: null;
2781
+ when: null;
2782
+ eq: string;
2783
+ json: string;
2784
+ };
2785
+ customConditional: string;
2786
+ logic: never[];
2787
+ attributes: {};
2788
+ overlay: {
2789
+ style: string;
2790
+ page: string;
2791
+ left: string;
2792
+ top: string;
2793
+ width: string;
2794
+ height: string;
2795
+ };
2796
+ type: string;
2797
+ input: boolean;
2798
+ refreshOn: string;
2799
+ showCharCount: boolean;
2800
+ showWordCount: boolean;
2801
+ allowMultipleMasks: boolean;
2802
+ delimiter: boolean;
2803
+ id: string;
2804
+ defaultValue: null;
2805
+ inputMask?: undefined;
2806
+ inputType?: undefined;
2807
+ editor?: undefined;
2808
+ autoExpand?: undefined;
2809
+ fixedSize?: undefined;
2810
+ rows?: undefined;
2811
+ wysiwyg?: undefined;
2812
+ requireDecimal?: undefined;
2813
+ shortcut?: undefined;
2814
+ name?: undefined;
2815
+ value?: undefined;
2816
+ dataGridLabel?: undefined;
2817
+ optionsLabelPosition?: undefined;
2818
+ inline?: undefined;
2819
+ values?: undefined;
2820
+ minSelectedCountMessage?: undefined;
2821
+ maxSelectedCountMessage?: undefined;
2822
+ fieldSet?: undefined;
2823
+ dataType?: undefined;
2824
+ uniqueOptions?: undefined;
2825
+ dataSrc?: undefined;
2826
+ data?: undefined;
2827
+ valueProperty?: undefined;
2828
+ idPath?: undefined;
2829
+ template?: undefined;
2830
+ refreshOnBlur?: undefined;
2831
+ clearOnRefresh?: undefined;
2832
+ searchEnabled?: undefined;
2833
+ selectThreshold?: undefined;
2834
+ readOnlyValue?: undefined;
2835
+ customOptions?: undefined;
2836
+ useExactSearch?: undefined;
2837
+ indexeddb?: undefined;
2838
+ selectFields?: undefined;
2839
+ searchField?: undefined;
2840
+ minSearch?: undefined;
2841
+ filter?: undefined;
2842
+ limit?: undefined;
2843
+ lazyLoad?: undefined;
2844
+ authenticate?: undefined;
2845
+ searchThreshold?: undefined;
2846
+ fuseOptions?: undefined;
2847
+ kickbox?: undefined;
2848
+ delimeter?: undefined;
2849
+ maxTags?: undefined;
2850
+ storeas?: undefined;
2851
+ enableManualMode?: undefined;
2852
+ disableClearIcon?: undefined;
2853
+ provider?: undefined;
2854
+ manualModeViewString?: undefined;
2855
+ switchToManualModeLabel?: undefined;
2856
+ tree?: undefined;
2857
+ components?: undefined;
2858
+ providerOptions?: undefined;
2859
+ displayInTimezone?: undefined;
2860
+ useLocaleSettings?: undefined;
2861
+ allowInput?: undefined;
2862
+ format?: undefined;
2863
+ enableDate?: undefined;
2864
+ enableMinDateInput?: undefined;
2865
+ datePicker?: undefined;
2866
+ enableMaxDateInput?: undefined;
2867
+ enableTime?: undefined;
2868
+ timePicker?: undefined;
2869
+ defaultDate?: undefined;
2870
+ timezone?: undefined;
2871
+ datepickerMode?: undefined;
2872
+ hideInputLabels?: undefined;
2873
+ inputsLabelPosition?: undefined;
2874
+ fields?: undefined;
2875
+ dayFirst?: undefined;
2876
+ maxDate?: undefined;
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;
51
3483
  customClass: string;
52
3484
  tabindex: string;
53
3485
  autocomplete: string;
@@ -55,7 +3487,6 @@ export declare const Sandbox: {
55
3487
  hideLabel: boolean;
56
3488
  showWordCount: boolean;
57
3489
  showCharCount: boolean;
58
- mask: boolean;
59
3490
  autofocus: boolean;
60
3491
  spellcheck: boolean;
61
3492
  disabled: boolean;
@@ -84,11 +3515,11 @@ export declare const Sandbox: {
84
3515
  json: string;
85
3516
  minLength: string;
86
3517
  maxLength: string;
3518
+ minWords: string;
3519
+ maxWords: string;
87
3520
  strictDateValidation: boolean;
88
3521
  multiple: boolean;
89
3522
  unique: boolean;
90
- minWords?: undefined;
91
- maxWords?: undefined;
92
3523
  min?: undefined;
93
3524
  max?: undefined;
94
3525
  step?: undefined;
@@ -97,17 +3528,17 @@ export declare const Sandbox: {
97
3528
  unique: boolean;
98
3529
  errorLabel: string;
99
3530
  key: string;
100
- tags: any[];
3531
+ tags: never[];
101
3532
  properties: {};
102
3533
  conditional: {
103
- show: any;
104
- when: any;
3534
+ show: null;
3535
+ when: null;
105
3536
  eq: string;
106
3537
  json: string;
107
3538
  };
108
3539
  customConditional: string;
109
- logic: any[];
110
- attributes: {};
3540
+ logic: never[];
3541
+ fixedSize: boolean;
111
3542
  overlay: {
112
3543
  style: string;
113
3544
  page: string;
@@ -116,17 +3547,18 @@ export declare const Sandbox: {
116
3547
  width: string;
117
3548
  height: string;
118
3549
  };
3550
+ attributes: {};
119
3551
  type: string;
3552
+ rows: number;
3553
+ wysiwyg: boolean;
120
3554
  input: boolean;
121
3555
  refreshOn: string;
3556
+ allowMultipleMasks: boolean;
3557
+ mask: boolean;
122
3558
  inputType: string;
3559
+ inputMask: string;
123
3560
  id: string;
124
3561
  defaultValue: string;
125
- editor?: undefined;
126
- autoExpand?: undefined;
127
- fixedSize?: undefined;
128
- rows?: undefined;
129
- wysiwyg?: undefined;
130
3562
  delimiter?: undefined;
131
3563
  requireDecimal?: undefined;
132
3564
  shortcut?: undefined;
@@ -195,6 +3627,8 @@ export declare const Sandbox: {
195
3627
  maxDate?: undefined;
196
3628
  minDate?: undefined;
197
3629
  currency?: undefined;
3630
+ rowDrafts?: undefined;
3631
+ displayAsTable?: undefined;
198
3632
  size?: undefined;
199
3633
  block?: undefined;
200
3634
  action?: undefined;
@@ -229,15 +3663,12 @@ export declare const Sandbox: {
229
3663
  disableFunction?: undefined;
230
3664
  maxDate?: undefined;
231
3665
  };
232
- editor: string;
233
- autoExpand: boolean;
234
3666
  customClass: string;
235
3667
  tabindex: string;
236
3668
  autocomplete: string;
237
3669
  hidden: boolean;
238
3670
  hideLabel: boolean;
239
- showWordCount: boolean;
240
- showCharCount: boolean;
3671
+ mask: boolean;
241
3672
  autofocus: boolean;
242
3673
  spellcheck: boolean;
243
3674
  disabled: boolean;
@@ -245,10 +3676,11 @@ export declare const Sandbox: {
245
3676
  modalEdit: boolean;
246
3677
  multiple: boolean;
247
3678
  persistent: boolean;
3679
+ delimiter: boolean;
3680
+ requireDecimal: boolean;
248
3681
  inputFormat: string;
249
3682
  protected: boolean;
250
3683
  dbIndex: boolean;
251
- case: string;
252
3684
  encrypted: boolean;
253
3685
  redrawOn: string;
254
3686
  clearOnHide: boolean;
@@ -259,37 +3691,36 @@ export declare const Sandbox: {
259
3691
  validateOn: string;
260
3692
  validate: {
261
3693
  required: boolean;
262
- pattern: string;
263
3694
  customMessage: string;
264
3695
  custom: string;
265
3696
  customPrivate: boolean;
266
3697
  json: string;
267
- minLength: string;
268
- maxLength: string;
269
- minWords: string;
270
- maxWords: string;
3698
+ min: string;
3699
+ max: string;
271
3700
  strictDateValidation: boolean;
272
3701
  multiple: boolean;
273
3702
  unique: boolean;
274
- min?: undefined;
275
- max?: undefined;
276
- step?: undefined;
277
- integer?: undefined;
3703
+ step: string;
3704
+ integer: string;
3705
+ pattern?: undefined;
3706
+ minLength?: undefined;
3707
+ maxLength?: undefined;
3708
+ minWords?: undefined;
3709
+ maxWords?: undefined;
278
3710
  };
279
- unique: boolean;
280
3711
  errorLabel: string;
281
3712
  key: string;
282
- tags: any[];
3713
+ tags: never[];
283
3714
  properties: {};
284
3715
  conditional: {
285
- show: any;
286
- when: any;
3716
+ show: null;
3717
+ when: null;
287
3718
  eq: string;
288
3719
  json: string;
289
3720
  };
290
3721
  customConditional: string;
291
- logic: any[];
292
- fixedSize: boolean;
3722
+ logic: never[];
3723
+ attributes: {};
293
3724
  overlay: {
294
3725
  style: string;
295
3726
  page: string;
@@ -298,20 +3729,23 @@ export declare const Sandbox: {
298
3729
  width: string;
299
3730
  height: string;
300
3731
  };
301
- attributes: {};
302
3732
  type: string;
303
- rows: number;
304
- wysiwyg: boolean;
305
3733
  input: boolean;
3734
+ unique: boolean;
306
3735
  refreshOn: string;
3736
+ showCharCount: boolean;
3737
+ showWordCount: boolean;
307
3738
  allowMultipleMasks: boolean;
308
- mask: boolean;
309
- inputType: string;
310
- inputMask: string;
311
3739
  id: string;
312
- defaultValue: string;
313
- delimiter?: undefined;
314
- requireDecimal?: undefined;
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;
315
3749
  shortcut?: undefined;
316
3750
  name?: undefined;
317
3751
  value?: undefined;
@@ -378,6 +3812,8 @@ export declare const Sandbox: {
378
3812
  maxDate?: undefined;
379
3813
  minDate?: undefined;
380
3814
  currency?: undefined;
3815
+ rowDrafts?: undefined;
3816
+ displayAsTable?: undefined;
381
3817
  size?: undefined;
382
3818
  block?: undefined;
383
3819
  action?: undefined;
@@ -417,58 +3853,51 @@ export declare const Sandbox: {
417
3853
  autocomplete: string;
418
3854
  hidden: boolean;
419
3855
  hideLabel: boolean;
3856
+ showWordCount: boolean;
3857
+ showCharCount: boolean;
420
3858
  mask: boolean;
421
3859
  autofocus: boolean;
422
3860
  spellcheck: boolean;
423
3861
  disabled: boolean;
424
3862
  tableView: boolean;
425
3863
  modalEdit: boolean;
426
- multiple: boolean;
427
- persistent: boolean;
428
- delimiter: boolean;
429
- requireDecimal: boolean;
430
- inputFormat: string;
431
- protected: boolean;
432
- dbIndex: boolean;
433
- encrypted: boolean;
3864
+ case: string;
434
3865
  redrawOn: string;
435
3866
  clearOnHide: boolean;
436
- customDefaultValue: string;
437
- calculateValue: string;
438
3867
  calculateServer: boolean;
439
3868
  allowCalculateOverride: boolean;
440
3869
  validateOn: string;
441
3870
  validate: {
442
3871
  required: boolean;
3872
+ pattern: string;
443
3873
  customMessage: string;
444
3874
  custom: string;
445
3875
  customPrivate: boolean;
446
3876
  json: string;
447
- min: string;
448
- max: string;
3877
+ minLength: string;
3878
+ maxLength: string;
449
3879
  strictDateValidation: boolean;
450
3880
  multiple: boolean;
451
3881
  unique: boolean;
452
- step: string;
453
- integer: string;
454
- pattern?: undefined;
455
- minLength?: undefined;
456
- maxLength?: undefined;
457
3882
  minWords?: undefined;
458
3883
  maxWords?: undefined;
3884
+ min?: undefined;
3885
+ max?: undefined;
3886
+ step?: undefined;
3887
+ integer?: undefined;
459
3888
  };
460
3889
  errorLabel: string;
461
3890
  key: string;
462
- tags: any[];
3891
+ tags: never[];
463
3892
  properties: {};
464
3893
  conditional: {
465
- show: any;
466
- when: any;
3894
+ show: null;
3895
+ when: null;
467
3896
  eq: string;
468
3897
  json: string;
469
3898
  };
470
3899
  customConditional: string;
471
- logic: any[];
3900
+ logic: never[];
472
3901
  attributes: {};
473
3902
  overlay: {
474
3903
  style: string;
@@ -480,21 +3909,28 @@ export declare const Sandbox: {
480
3909
  };
481
3910
  type: string;
482
3911
  input: boolean;
3912
+ multiple: boolean;
3913
+ defaultValue: null;
3914
+ protected: boolean;
483
3915
  unique: boolean;
3916
+ persistent: boolean;
484
3917
  refreshOn: string;
485
- showCharCount: boolean;
486
- showWordCount: boolean;
3918
+ dbIndex: boolean;
3919
+ customDefaultValue: string;
3920
+ calculateValue: string;
3921
+ encrypted: boolean;
487
3922
  allowMultipleMasks: boolean;
3923
+ inputType: string;
3924
+ inputFormat: string;
3925
+ inputMask: string;
488
3926
  id: string;
489
- defaultValue: any;
490
- inputMask?: undefined;
491
- case?: undefined;
492
- inputType?: undefined;
493
3927
  editor?: undefined;
494
3928
  autoExpand?: undefined;
495
3929
  fixedSize?: undefined;
496
3930
  rows?: undefined;
497
3931
  wysiwyg?: undefined;
3932
+ delimiter?: undefined;
3933
+ requireDecimal?: undefined;
498
3934
  shortcut?: undefined;
499
3935
  name?: undefined;
500
3936
  value?: undefined;
@@ -561,6 +3997,8 @@ export declare const Sandbox: {
561
3997
  maxDate?: undefined;
562
3998
  minDate?: undefined;
563
3999
  currency?: undefined;
4000
+ rowDrafts?: undefined;
4001
+ displayAsTable?: undefined;
564
4002
  size?: undefined;
565
4003
  block?: undefined;
566
4004
  action?: undefined;
@@ -614,16 +4052,16 @@ export declare const Sandbox: {
614
4052
  };
615
4053
  errorLabel: string;
616
4054
  key: string;
617
- tags: any[];
4055
+ tags: never[];
618
4056
  properties: {};
619
4057
  conditional: {
620
- show: any;
621
- when: any;
4058
+ show: null;
4059
+ when: null;
622
4060
  eq: string;
623
4061
  json: string;
624
4062
  };
625
4063
  customConditional: string;
626
- logic: any[];
4064
+ logic: never[];
627
4065
  attributes: {};
628
4066
  overlay: {
629
4067
  style: string;
@@ -644,7 +4082,7 @@ export declare const Sandbox: {
644
4082
  unique: boolean;
645
4083
  refreshOn: string;
646
4084
  labelPosition: string;
647
- widget: any;
4085
+ widget: null;
648
4086
  validateOn: string;
649
4087
  showCharCount: boolean;
650
4088
  showWordCount: boolean;
@@ -726,6 +4164,8 @@ export declare const Sandbox: {
726
4164
  maxDate?: undefined;
727
4165
  minDate?: undefined;
728
4166
  currency?: undefined;
4167
+ rowDrafts?: undefined;
4168
+ displayAsTable?: undefined;
729
4169
  size?: undefined;
730
4170
  block?: undefined;
731
4171
  action?: undefined;
@@ -786,16 +4226,16 @@ export declare const Sandbox: {
786
4226
  minSelectedCountMessage: string;
787
4227
  maxSelectedCountMessage: string;
788
4228
  key: string;
789
- tags: any[];
4229
+ tags: never[];
790
4230
  properties: {};
791
4231
  conditional: {
792
- show: any;
793
- when: any;
4232
+ show: null;
4233
+ when: null;
794
4234
  eq: string;
795
4235
  json: string;
796
4236
  };
797
4237
  customConditional: string;
798
- logic: any[];
4238
+ logic: never[];
799
4239
  attributes: {};
800
4240
  overlay: {
801
4241
  style: string;
@@ -813,7 +4253,7 @@ export declare const Sandbox: {
813
4253
  multiple: boolean;
814
4254
  unique: boolean;
815
4255
  refreshOn: string;
816
- widget: any;
4256
+ widget: null;
817
4257
  validateOn: string;
818
4258
  showCharCount: boolean;
819
4259
  showWordCount: boolean;
@@ -897,6 +4337,8 @@ export declare const Sandbox: {
897
4337
  maxDate?: undefined;
898
4338
  minDate?: undefined;
899
4339
  currency?: undefined;
4340
+ rowDrafts?: undefined;
4341
+ displayAsTable?: undefined;
900
4342
  size?: undefined;
901
4343
  block?: undefined;
902
4344
  action?: undefined;
@@ -956,16 +4398,16 @@ export declare const Sandbox: {
956
4398
  };
957
4399
  errorLabel: string;
958
4400
  key: string;
959
- tags: any[];
4401
+ tags: never[];
960
4402
  properties: {};
961
4403
  conditional: {
962
- show: any;
963
- when: any;
4404
+ show: null;
4405
+ when: null;
964
4406
  eq: string;
965
4407
  json: string;
966
4408
  };
967
4409
  customConditional: string;
968
- logic: any[];
4410
+ logic: never[];
969
4411
  attributes: {};
970
4412
  overlay: {
971
4413
  style: string;
@@ -983,7 +4425,7 @@ export declare const Sandbox: {
983
4425
  multiple: boolean;
984
4426
  unique: boolean;
985
4427
  refreshOn: string;
986
- widget: any;
4428
+ widget: null;
987
4429
  validateOn: string;
988
4430
  showCharCount: boolean;
989
4431
  showWordCount: boolean;
@@ -1066,6 +4508,8 @@ export declare const Sandbox: {
1066
4508
  maxDate?: undefined;
1067
4509
  minDate?: undefined;
1068
4510
  currency?: undefined;
4511
+ rowDrafts?: undefined;
4512
+ displayAsTable?: undefined;
1069
4513
  size?: undefined;
1070
4514
  block?: undefined;
1071
4515
  action?: undefined;
@@ -1145,16 +4589,16 @@ export declare const Sandbox: {
1145
4589
  unique: boolean;
1146
4590
  errorLabel: string;
1147
4591
  key: string;
1148
- tags: any[];
4592
+ tags: never[];
1149
4593
  properties: {};
1150
4594
  conditional: {
1151
- show: any;
1152
- when: any;
4595
+ show: null;
4596
+ when: null;
1153
4597
  eq: string;
1154
4598
  json: string;
1155
4599
  };
1156
4600
  customConditional: string;
1157
- logic: any[];
4601
+ logic: never[];
1158
4602
  attributes: {};
1159
4603
  overlay: {
1160
4604
  style: string;
@@ -1245,6 +4689,8 @@ export declare const Sandbox: {
1245
4689
  maxDate?: undefined;
1246
4690
  minDate?: undefined;
1247
4691
  currency?: undefined;
4692
+ rowDrafts?: undefined;
4693
+ displayAsTable?: undefined;
1248
4694
  size?: undefined;
1249
4695
  block?: undefined;
1250
4696
  action?: undefined;
@@ -1329,16 +4775,16 @@ export declare const Sandbox: {
1329
4775
  };
1330
4776
  errorLabel: string;
1331
4777
  key: string;
1332
- tags: any[];
4778
+ tags: never[];
1333
4779
  properties: {};
1334
4780
  conditional: {
1335
- show: any;
1336
- when: any;
4781
+ show: null;
4782
+ when: null;
1337
4783
  eq: string;
1338
4784
  json: string;
1339
4785
  };
1340
4786
  customConditional: string;
1341
- logic: any[];
4787
+ logic: never[];
1342
4788
  attributes: {};
1343
4789
  overlay: {
1344
4790
  style: string;
@@ -1357,7 +4803,7 @@ export declare const Sandbox: {
1357
4803
  inputType: string;
1358
4804
  inputMask: string;
1359
4805
  id: string;
1360
- defaultValue: any;
4806
+ defaultValue: null;
1361
4807
  editor?: undefined;
1362
4808
  autoExpand?: undefined;
1363
4809
  fixedSize?: undefined;
@@ -1430,6 +4876,8 @@ export declare const Sandbox: {
1430
4876
  maxDate?: undefined;
1431
4877
  minDate?: undefined;
1432
4878
  currency?: undefined;
4879
+ rowDrafts?: undefined;
4880
+ displayAsTable?: undefined;
1433
4881
  size?: undefined;
1434
4882
  block?: undefined;
1435
4883
  action?: undefined;
@@ -1510,16 +4958,16 @@ export declare const Sandbox: {
1510
4958
  unique: boolean;
1511
4959
  errorLabel: string;
1512
4960
  key: string;
1513
- tags: any[];
4961
+ tags: never[];
1514
4962
  properties: {};
1515
4963
  conditional: {
1516
- show: any;
1517
- when: any;
4964
+ show: null;
4965
+ when: null;
1518
4966
  eq: string;
1519
4967
  json: string;
1520
4968
  };
1521
4969
  customConditional: string;
1522
- logic: any[];
4970
+ logic: never[];
1523
4971
  attributes: {};
1524
4972
  overlay: {
1525
4973
  style: string;
@@ -1538,7 +4986,7 @@ export declare const Sandbox: {
1538
4986
  inputType: string;
1539
4987
  inputMask: string;
1540
4988
  id: string;
1541
- defaultValue: any;
4989
+ defaultValue: null;
1542
4990
  case?: undefined;
1543
4991
  editor?: undefined;
1544
4992
  autoExpand?: undefined;
@@ -1613,6 +5061,8 @@ export declare const Sandbox: {
1613
5061
  maxDate?: undefined;
1614
5062
  minDate?: undefined;
1615
5063
  currency?: undefined;
5064
+ rowDrafts?: undefined;
5065
+ displayAsTable?: undefined;
1616
5066
  size?: undefined;
1617
5067
  block?: undefined;
1618
5068
  action?: undefined;
@@ -1670,16 +5120,16 @@ export declare const Sandbox: {
1670
5120
  validateOn: string;
1671
5121
  errorLabel: string;
1672
5122
  key: string;
1673
- tags: any[];
5123
+ tags: never[];
1674
5124
  properties: {};
1675
5125
  conditional: {
1676
- show: any;
1677
- when: any;
5126
+ show: null;
5127
+ when: null;
1678
5128
  eq: string;
1679
5129
  json: string;
1680
5130
  };
1681
5131
  customConditional: string;
1682
- logic: any[];
5132
+ logic: never[];
1683
5133
  attributes: {};
1684
5134
  overlay: {
1685
5135
  style: string;
@@ -1718,7 +5168,7 @@ export declare const Sandbox: {
1718
5168
  showWordCount: boolean;
1719
5169
  allowMultipleMasks: boolean;
1720
5170
  id: string;
1721
- defaultValue: any;
5171
+ defaultValue: null;
1722
5172
  inputMask?: undefined;
1723
5173
  autocomplete?: undefined;
1724
5174
  mask?: undefined;
@@ -1796,6 +5246,8 @@ export declare const Sandbox: {
1796
5246
  maxDate?: undefined;
1797
5247
  minDate?: undefined;
1798
5248
  currency?: undefined;
5249
+ rowDrafts?: undefined;
5250
+ displayAsTable?: undefined;
1799
5251
  size?: undefined;
1800
5252
  block?: undefined;
1801
5253
  action?: undefined;
@@ -1855,16 +5307,16 @@ export declare const Sandbox: {
1855
5307
  validateOn: string;
1856
5308
  errorLabel: string;
1857
5309
  key: string;
1858
- tags: any[];
5310
+ tags: never[];
1859
5311
  properties: {};
1860
5312
  conditional: {
1861
- show: any;
1862
- when: any;
5313
+ show: null;
5314
+ when: null;
1863
5315
  eq: string;
1864
5316
  json: string;
1865
5317
  };
1866
5318
  customConditional: string;
1867
- logic: any[];
5319
+ logic: never[];
1868
5320
  attributes: {};
1869
5321
  overlay: {
1870
5322
  style: string;
@@ -1880,7 +5332,7 @@ export declare const Sandbox: {
1880
5332
  prefix: string;
1881
5333
  suffix: string;
1882
5334
  refreshOn: string;
1883
- widget: any;
5335
+ widget: null;
1884
5336
  showCharCount: boolean;
1885
5337
  showWordCount: boolean;
1886
5338
  allowMultipleMasks: boolean;
@@ -1897,7 +5349,7 @@ export declare const Sandbox: {
1897
5349
  customClass: string;
1898
5350
  suffix: string;
1899
5351
  multiple: boolean;
1900
- defaultValue: any;
5352
+ defaultValue: null;
1901
5353
  protected: boolean;
1902
5354
  unique: boolean;
1903
5355
  persistent: boolean;
@@ -1935,8 +5387,8 @@ export declare const Sandbox: {
1935
5387
  pattern: string;
1936
5388
  };
1937
5389
  conditional: {
1938
- show: any;
1939
- when: any;
5390
+ show: null;
5391
+ when: null;
1940
5392
  eq: string;
1941
5393
  };
1942
5394
  overlay: {
@@ -2041,6 +5493,8 @@ export declare const Sandbox: {
2041
5493
  maxDate?: undefined;
2042
5494
  minDate?: undefined;
2043
5495
  currency?: undefined;
5496
+ rowDrafts?: undefined;
5497
+ displayAsTable?: undefined;
2044
5498
  size?: undefined;
2045
5499
  block?: undefined;
2046
5500
  action?: undefined;
@@ -2069,8 +5523,8 @@ export declare const Sandbox: {
2069
5523
  enableDate: boolean;
2070
5524
  enableMinDateInput: boolean;
2071
5525
  datePicker: {
2072
- minDate: any;
2073
- maxDate: any;
5526
+ minDate: null;
5527
+ maxDate: null;
2074
5528
  disable: string;
2075
5529
  disableFunction: string;
2076
5530
  disableWeekends: boolean;
@@ -2130,16 +5584,16 @@ export declare const Sandbox: {
2130
5584
  validateOn: string;
2131
5585
  errorLabel: string;
2132
5586
  key: string;
2133
- tags: any[];
5587
+ tags: never[];
2134
5588
  properties: {};
2135
5589
  conditional: {
2136
- show: any;
2137
- when: any;
5590
+ show: null;
5591
+ when: null;
2138
5592
  eq: string;
2139
5593
  json: string;
2140
5594
  };
2141
5595
  customConditional: string;
2142
- logic: any[];
5596
+ logic: never[];
2143
5597
  attributes: {};
2144
5598
  overlay: {
2145
5599
  style: string;
@@ -2167,12 +5621,12 @@ export declare const Sandbox: {
2167
5621
  format: string;
2168
5622
  hourIncrement: number;
2169
5623
  minuteIncrement: number;
2170
- minDate: any;
5624
+ minDate: null;
2171
5625
  disabledDates: string;
2172
5626
  disableWeekends: boolean;
2173
5627
  disableWeekdays: boolean;
2174
5628
  disableFunction: string;
2175
- maxDate: any;
5629
+ maxDate: null;
2176
5630
  };
2177
5631
  showCharCount: boolean;
2178
5632
  showWordCount: boolean;
@@ -2245,6 +5699,8 @@ export declare const Sandbox: {
2245
5699
  maxDate?: undefined;
2246
5700
  minDate?: undefined;
2247
5701
  currency?: undefined;
5702
+ rowDrafts?: undefined;
5703
+ displayAsTable?: undefined;
2248
5704
  size?: undefined;
2249
5705
  block?: undefined;
2250
5706
  action?: undefined;
@@ -2323,16 +5779,16 @@ export declare const Sandbox: {
2323
5779
  integer?: undefined;
2324
5780
  };
2325
5781
  key: string;
2326
- tags: any[];
5782
+ tags: never[];
2327
5783
  properties: {};
2328
5784
  conditional: {
2329
- show: any;
2330
- when: any;
5785
+ show: null;
5786
+ when: null;
2331
5787
  eq: string;
2332
5788
  json: string;
2333
5789
  };
2334
5790
  customConditional: string;
2335
- logic: any[];
5791
+ logic: never[];
2336
5792
  attributes: {};
2337
5793
  overlay: {
2338
5794
  style: string;
@@ -2350,7 +5806,7 @@ export declare const Sandbox: {
2350
5806
  multiple: boolean;
2351
5807
  refreshOn: string;
2352
5808
  labelPosition: string;
2353
- widget: any;
5809
+ widget: null;
2354
5810
  showCharCount: boolean;
2355
5811
  showWordCount: boolean;
2356
5812
  allowMultipleMasks: boolean;
@@ -2429,6 +5885,8 @@ export declare const Sandbox: {
2429
5885
  timezone?: undefined;
2430
5886
  datepickerMode?: undefined;
2431
5887
  currency?: undefined;
5888
+ rowDrafts?: undefined;
5889
+ displayAsTable?: undefined;
2432
5890
  size?: undefined;
2433
5891
  block?: undefined;
2434
5892
  action?: undefined;
@@ -2511,16 +5969,16 @@ export declare const Sandbox: {
2511
5969
  unique: boolean;
2512
5970
  errorLabel: string;
2513
5971
  key: string;
2514
- tags: any[];
5972
+ tags: never[];
2515
5973
  properties: {};
2516
5974
  conditional: {
2517
- show: any;
2518
- when: any;
5975
+ show: null;
5976
+ when: null;
2519
5977
  eq: string;
2520
5978
  json: string;
2521
5979
  };
2522
5980
  customConditional: string;
2523
- logic: any[];
5981
+ logic: never[];
2524
5982
  attributes: {};
2525
5983
  overlay: {
2526
5984
  style: string;
@@ -2538,7 +5996,7 @@ export declare const Sandbox: {
2538
5996
  allowMultipleMasks: boolean;
2539
5997
  delimiter: boolean;
2540
5998
  id: string;
2541
- defaultValue: any;
5999
+ defaultValue: null;
2542
6000
  inputMask?: undefined;
2543
6001
  inputType?: undefined;
2544
6002
  editor?: undefined;
@@ -2612,6 +6070,156 @@ export declare const Sandbox: {
2612
6070
  dayFirst?: undefined;
2613
6071
  maxDate?: undefined;
2614
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,19 +6410,21 @@ 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
  };
2808
6418
  };
2809
6419
  };
2810
- export declare const TriggerError: {
6420
+ export declare const OnChange: {
2811
6421
  (args: any): JSX.Element;
2812
6422
  args: {
2813
6423
  form: {
2814
6424
  type: string;
2815
6425
  display: string;
2816
- tags: any[];
2817
- components: ({
6426
+ tags: never[];
6427
+ components: {
2818
6428
  label: string;
2819
6429
  widget: {
2820
6430
  type: string;
@@ -2825,22 +6435,10 @@ export declare const TriggerError: {
2825
6435
  type: string;
2826
6436
  id: string;
2827
6437
  defaultValue: string;
2828
- showValidations?: undefined;
2829
- tableView?: undefined;
2830
- input?: undefined;
2831
- } | {
2832
- label: string;
2833
- showValidations: boolean;
2834
- tableView: boolean;
2835
- key: string;
2836
- type: string;
2837
- input: boolean;
2838
- widget?: undefined;
2839
- errorLabel?: undefined;
2840
- inputType?: undefined;
2841
- id?: undefined;
2842
- defaultValue?: undefined;
2843
- })[];
6438
+ validate: {
6439
+ required: boolean;
6440
+ };
6441
+ }[];
2844
6442
  };
2845
6443
  };
2846
6444
  };