@formio/js 5.0.0-dev.5719.d2d4a61 → 5.0.0-dev.5720.4409b3f

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 (78) hide show
  1. package/Changelog.md +15 -0
  2. package/dist/formio.form.js +11 -11
  3. package/dist/formio.form.min.js +1 -1
  4. package/dist/formio.full.js +12 -12
  5. package/dist/formio.full.min.js +1 -1
  6. package/lib/cjs/Form.d.ts +2 -2
  7. package/lib/cjs/Form.js +9 -3
  8. package/lib/cjs/Webform.js +1 -2
  9. package/lib/cjs/WebformBuilder.js +11 -2
  10. package/lib/cjs/components/_classes/nested/NestedComponent.d.ts +2 -1
  11. package/lib/cjs/components/_classes/nested/NestedComponent.js +5 -1
  12. package/lib/cjs/components/currency/Currency.d.ts +1 -0
  13. package/lib/cjs/components/datagrid/DataGrid.d.ts +0 -1
  14. package/lib/cjs/components/datagrid/DataGrid.js +0 -8
  15. package/lib/cjs/components/datamap/DataMap.js +1 -1
  16. package/lib/cjs/components/editgrid/EditGrid.js +1 -5
  17. package/lib/cjs/components/number/Number.d.ts +7 -1
  18. package/lib/cjs/components/number/Number.js +11 -0
  19. package/lib/cjs/components/number/fixtures/comp10.d.ts +18 -0
  20. package/lib/cjs/components/number/fixtures/comp10.js +21 -0
  21. package/lib/cjs/components/number/fixtures/index.d.ts +2 -1
  22. package/lib/cjs/components/number/fixtures/index.js +3 -1
  23. package/lib/cjs/components/panel/Panel.d.ts +1 -0
  24. package/lib/cjs/components/panel/Panel.js +1 -0
  25. package/lib/cjs/components/radio/Radio.js +17 -6
  26. package/lib/cjs/components/radio/fixtures/comp12.d.ts +29 -0
  27. package/lib/cjs/components/radio/fixtures/comp12.js +36 -0
  28. package/lib/cjs/components/radio/fixtures/index.d.ts +2 -1
  29. package/lib/cjs/components/radio/fixtures/index.js +3 -1
  30. package/lib/cjs/components/select/Select.d.ts +38 -0
  31. package/lib/cjs/components/select/Select.js +12 -2
  32. package/lib/cjs/components/select/fixtures/comp25.d.ts +44 -0
  33. package/lib/cjs/components/select/fixtures/comp25.js +59 -0
  34. package/lib/cjs/components/select/fixtures/index.d.ts +2 -1
  35. package/lib/cjs/components/select/fixtures/index.js +3 -1
  36. package/lib/cjs/components/time/Time.d.ts +2 -2
  37. package/lib/cjs/components/time/Time.js +3 -2
  38. package/lib/cjs/components/time/fixtures/comp4.d.ts +166 -0
  39. package/lib/cjs/components/time/fixtures/comp4.js +171 -0
  40. package/lib/cjs/components/time/fixtures/index.d.ts +2 -1
  41. package/lib/cjs/components/time/fixtures/index.js +3 -1
  42. package/lib/mjs/Form.d.ts +2 -2
  43. package/lib/mjs/Form.js +9 -3
  44. package/lib/mjs/Webform.js +1 -2
  45. package/lib/mjs/WebformBuilder.js +10 -2
  46. package/lib/mjs/components/_classes/nested/NestedComponent.d.ts +2 -1
  47. package/lib/mjs/components/_classes/nested/NestedComponent.js +5 -1
  48. package/lib/mjs/components/currency/Currency.d.ts +1 -0
  49. package/lib/mjs/components/datagrid/DataGrid.d.ts +0 -1
  50. package/lib/mjs/components/datagrid/DataGrid.js +0 -8
  51. package/lib/mjs/components/datamap/DataMap.js +1 -1
  52. package/lib/mjs/components/editgrid/EditGrid.js +1 -5
  53. package/lib/mjs/components/number/Number.d.ts +7 -1
  54. package/lib/mjs/components/number/Number.js +11 -0
  55. package/lib/mjs/components/number/fixtures/comp10.d.ts +18 -0
  56. package/lib/mjs/components/number/fixtures/comp10.js +19 -0
  57. package/lib/mjs/components/number/fixtures/index.d.ts +2 -1
  58. package/lib/mjs/components/number/fixtures/index.js +2 -1
  59. package/lib/mjs/components/panel/Panel.d.ts +1 -0
  60. package/lib/mjs/components/panel/Panel.js +1 -0
  61. package/lib/mjs/components/radio/Radio.js +17 -6
  62. package/lib/mjs/components/radio/fixtures/comp12.d.ts +29 -0
  63. package/lib/mjs/components/radio/fixtures/comp12.js +34 -0
  64. package/lib/mjs/components/radio/fixtures/index.d.ts +2 -1
  65. package/lib/mjs/components/radio/fixtures/index.js +2 -1
  66. package/lib/mjs/components/select/Select.d.ts +38 -0
  67. package/lib/mjs/components/select/Select.js +15 -3
  68. package/lib/mjs/components/select/fixtures/comp25.d.ts +44 -0
  69. package/lib/mjs/components/select/fixtures/comp25.js +57 -0
  70. package/lib/mjs/components/select/fixtures/index.d.ts +2 -1
  71. package/lib/mjs/components/select/fixtures/index.js +2 -1
  72. package/lib/mjs/components/time/Time.d.ts +2 -2
  73. package/lib/mjs/components/time/Time.js +3 -2
  74. package/lib/mjs/components/time/fixtures/comp4.d.ts +166 -0
  75. package/lib/mjs/components/time/fixtures/comp4.js +169 -0
  76. package/lib/mjs/components/time/fixtures/index.d.ts +2 -1
  77. package/lib/mjs/components/time/fixtures/index.js +2 -1
  78. package/package.json +1 -1
@@ -0,0 +1,18 @@
1
+ declare namespace _default {
2
+ let components: {
3
+ label: string;
4
+ applyMaskOn: string;
5
+ mask: boolean;
6
+ tableView: boolean;
7
+ delimiter: boolean;
8
+ requireDecimal: boolean;
9
+ inputFormat: string;
10
+ truncateMultipleSpaces: boolean;
11
+ validateWhenHidden: boolean;
12
+ key: string;
13
+ type: string;
14
+ input: boolean;
15
+ defaultValue: string;
16
+ }[];
17
+ }
18
+ export default _default;
@@ -0,0 +1,19 @@
1
+ export default {
2
+ components: [
3
+ {
4
+ "label": "Number",
5
+ "applyMaskOn": "change",
6
+ "mask": false,
7
+ "tableView": false,
8
+ "delimiter": false,
9
+ "requireDecimal": false,
10
+ "inputFormat": "plain",
11
+ "truncateMultipleSpaces": false,
12
+ "validateWhenHidden": false,
13
+ "key": "number",
14
+ "type": "number",
15
+ "input": true,
16
+ "defaultValue": "123.23"
17
+ }
18
+ ]
19
+ };
@@ -7,4 +7,5 @@ import comp6 from './comp6';
7
7
  import comp7 from './comp7';
8
8
  import comp8 from './comp8';
9
9
  import comp9 from './comp9';
10
- export { comp1, comp2, comp3, comp4, comp5, comp6, comp7, comp8, comp9 };
10
+ import comp10 from './comp10';
11
+ export { comp1, comp2, comp3, comp4, comp5, comp6, comp7, comp8, comp9, comp10 };
@@ -7,4 +7,5 @@ import comp6 from './comp6';
7
7
  import comp7 from './comp7';
8
8
  import comp8 from './comp8';
9
9
  import comp9 from './comp9';
10
- export { comp1, comp2, comp3, comp4, comp5, comp6, comp7, comp8, comp9 };
10
+ import comp10 from './comp10';
11
+ export { comp1, comp2, comp3, comp4, comp5, comp6, comp7, comp8, comp9, comp10 };
@@ -4,6 +4,7 @@ export default class PanelComponent extends NestedComponent {
4
4
  icon: string;
5
5
  group: string;
6
6
  documentation: string;
7
+ showPreview: boolean;
7
8
  weight: number;
8
9
  schema: any;
9
10
  };
@@ -22,6 +22,7 @@ export default class PanelComponent extends NestedComponent {
22
22
  icon: 'list-alt',
23
23
  group: 'layout',
24
24
  documentation: '/userguide/form-building/layout-components#panel',
25
+ showPreview: false,
25
26
  weight: 30,
26
27
  schema: PanelComponent.schema()
27
28
  };
@@ -264,6 +264,16 @@ export default class RadioComponent extends ListComponent {
264
264
  if (method.toUpperCase() === 'GET') {
265
265
  body = null;
266
266
  }
267
+ const limit = this.component.limit || 100;
268
+ const skip = this.isScrollLoading ? this.selectOptions.length : 0;
269
+ // Allow for url interpolation.
270
+ url = this.sanitize(this.interpolate(url, {
271
+ formioBase: Formio.getBaseUrl(),
272
+ search,
273
+ limit,
274
+ skip,
275
+ page: Math.abs(Math.floor(skip / limit))
276
+ }), this.shouldSanitizeValue);
267
277
  // Set ignoreCache if it is
268
278
  options.ignoreCache = this.component.ignoreCache;
269
279
  // Make the request.
@@ -295,14 +305,15 @@ export default class RadioComponent extends ListComponent {
295
305
  setItems(items) {
296
306
  const listData = [];
297
307
  items?.forEach((item, i) => {
308
+ const valueAtProperty = _.get(item, this.component.valueProperty);
298
309
  this.loadedOptions[i] = {
299
- value: this.component.valueProperty ? item[this.component.valueProperty] : item,
300
- label: this.component.valueProperty ? this.itemTemplate(item, item[this.component.valueProperty]) : this.itemTemplate(item, item, i)
310
+ value: this.component.valueProperty ? valueAtProperty : item,
311
+ label: this.component.valueProperty ? this.itemTemplate(item, valueAtProperty) : this.itemTemplate(item, item, i)
301
312
  };
302
- listData.push(this.templateData[this.component.valueProperty ? item[this.component.valueProperty] : i]);
303
- if ((this.component.valueProperty || !this.isRadio) && (_.isUndefined(item[this.component.valueProperty]) ||
304
- (!this.isRadio && _.isObject(item[this.component.valueProperty])) ||
305
- (!this.isRadio && _.isBoolean(item[this.component.valueProperty])))) {
313
+ listData.push(this.templateData[this.component.valueProperty ? valueAtProperty : i]);
314
+ if ((this.component.valueProperty || !this.isRadio) && (_.isUndefined(valueAtProperty) ||
315
+ (!this.isRadio && _.isObject(valueAtProperty)) ||
316
+ (!this.isRadio && _.isBoolean(valueAtProperty)))) {
306
317
  this.loadedOptions[i].invalid = true;
307
318
  }
308
319
  });
@@ -0,0 +1,29 @@
1
+ declare namespace _default {
2
+ let components: {
3
+ label: string;
4
+ optionsLabelPosition: string;
5
+ tableView: boolean;
6
+ dataSrc: string;
7
+ values: {
8
+ label: string;
9
+ value: string;
10
+ shortcut: string;
11
+ }[];
12
+ valueProperty: string;
13
+ validateWhenHidden: boolean;
14
+ key: string;
15
+ type: string;
16
+ data: {
17
+ url: string;
18
+ headers: {
19
+ key: string;
20
+ value: string;
21
+ }[];
22
+ };
23
+ template: string;
24
+ authenticate: boolean;
25
+ input: boolean;
26
+ inputType: string;
27
+ }[];
28
+ }
29
+ export default _default;
@@ -0,0 +1,34 @@
1
+ export default {
2
+ components: [
3
+ {
4
+ "label": "Select Boxes",
5
+ "optionsLabelPosition": "right",
6
+ "tableView": false,
7
+ "dataSrc": "url",
8
+ "values": [
9
+ {
10
+ "label": "",
11
+ "value": "",
12
+ "shortcut": ""
13
+ }
14
+ ],
15
+ "valueProperty": "data.name",
16
+ "validateWhenHidden": false,
17
+ "key": "selectBoxes",
18
+ "type": "selectboxes",
19
+ "data": {
20
+ "url": "https://remote-dev.form.io/projectId/name/submission",
21
+ "headers": [
22
+ {
23
+ "key": "",
24
+ "value": ""
25
+ }
26
+ ]
27
+ },
28
+ "template": "<span>{{ item.data.name }}</span>",
29
+ "authenticate": true,
30
+ "input": true,
31
+ "inputType": "checkbox"
32
+ }
33
+ ]
34
+ };
@@ -9,4 +9,5 @@ import comp8 from './comp8';
9
9
  import comp9 from './comp9';
10
10
  import comp10 from './comp10';
11
11
  import comp11 from './comp11';
12
- export { comp1, comp2, comp3, comp4, comp5, comp6, comp7, comp8, comp9, comp10, comp11 };
12
+ import comp12 from './comp12';
13
+ export { comp1, comp2, comp3, comp4, comp5, comp6, comp7, comp8, comp9, comp10, comp11, comp12 };
@@ -9,4 +9,5 @@ import comp8 from './comp8';
9
9
  import comp9 from './comp9';
10
10
  import comp10 from './comp10';
11
11
  import comp11 from './comp11';
12
- export { comp1, comp2, comp3, comp4, comp5, comp6, comp7, comp8, comp9, comp10, comp11 };
12
+ import comp12 from './comp12';
13
+ export { comp1, comp2, comp3, comp4, comp5, comp6, comp7, comp8, comp9, comp10, comp11, comp12 };
@@ -9,9 +9,47 @@ export default class SelectComponent extends ListComponent {
9
9
  };
10
10
  static get serverConditionSettings(): {
11
11
  valueComponent(classComp: any): any;
12
+ dataTypeOperators: {
13
+ number: string[];
14
+ };
15
+ dataTypeValueComponents: {
16
+ number: {
17
+ lessThan: () => {
18
+ type: string;
19
+ };
20
+ greaterThan: () => {
21
+ type: string;
22
+ };
23
+ lessThanOrEqual: () => {
24
+ type: string;
25
+ };
26
+ greaterThanOrEqual: () => {
27
+ type: string;
28
+ };
29
+ };
30
+ };
12
31
  };
13
32
  static get conditionOperatorsSettings(): {
14
33
  valueComponent(classComp: any): any;
34
+ dataTypeOperators: {
35
+ number: string[];
36
+ };
37
+ dataTypeValueComponents: {
38
+ number: {
39
+ lessThan: () => {
40
+ type: string;
41
+ };
42
+ greaterThan: () => {
43
+ type: string;
44
+ };
45
+ lessThanOrEqual: () => {
46
+ type: string;
47
+ };
48
+ greaterThanOrEqual: () => {
49
+ type: string;
50
+ };
51
+ };
52
+ };
15
53
  };
16
54
  static savedValueTypes(schema: any): any[];
17
55
  templateData: {} | undefined;
@@ -57,6 +57,7 @@ export default class SelectComponent extends ListComponent {
57
57
  return SelectComponent.conditionOperatorsSettings;
58
58
  }
59
59
  static get conditionOperatorsSettings() {
60
+ const numberType = () => ({ type: 'number' });
60
61
  return {
61
62
  ...super.conditionOperatorsSettings,
62
63
  valueComponent(classComp) {
@@ -73,7 +74,18 @@ export default class SelectComponent extends ListComponent {
73
74
  `;
74
75
  }
75
76
  return valueComp;
76
- }
77
+ },
78
+ dataTypeOperators: {
79
+ number: ['lessThan', 'greaterThan', 'lessThanOrEqual', 'greaterThanOrEqual'],
80
+ },
81
+ dataTypeValueComponents: {
82
+ number: {
83
+ lessThan: numberType,
84
+ greaterThan: numberType,
85
+ lessThanOrEqual: numberType,
86
+ greaterThanOrEqual: numberType,
87
+ },
88
+ },
77
89
  };
78
90
  }
79
91
  static savedValueTypes(schema) {
@@ -526,13 +538,13 @@ export default class SelectComponent extends ListComponent {
526
538
  skip,
527
539
  };
528
540
  // Allow for url interpolation.
529
- url = this.interpolate(url, {
541
+ url = this.sanitize(this.interpolate(url, {
530
542
  formioBase: Formio.getBaseUrl(),
531
543
  search,
532
544
  limit,
533
545
  skip,
534
546
  page: Math.abs(Math.floor(skip / limit))
535
- });
547
+ }), this.shouldSanitizeValue);
536
548
  // Add search capability.
537
549
  if (this.component.searchField && search) {
538
550
  const searchValue = Array.isArray(search)
@@ -0,0 +1,44 @@
1
+ declare namespace _default {
2
+ let title: string;
3
+ let name: string;
4
+ let path: string;
5
+ let type: string;
6
+ let display: string;
7
+ let components: ({
8
+ label: string;
9
+ widget: string;
10
+ tableView: boolean;
11
+ data: {
12
+ values: {
13
+ label: string;
14
+ value: string;
15
+ }[];
16
+ };
17
+ dataType: string;
18
+ key: string;
19
+ type: string;
20
+ input: boolean;
21
+ applyMaskOn?: undefined;
22
+ conditional?: undefined;
23
+ } | {
24
+ label: string;
25
+ applyMaskOn: string;
26
+ tableView: boolean;
27
+ key: string;
28
+ type: string;
29
+ input: boolean;
30
+ conditional: {
31
+ show: boolean;
32
+ conjunction: string;
33
+ conditions: {
34
+ component: string;
35
+ operator: string;
36
+ value: number;
37
+ }[];
38
+ };
39
+ widget?: undefined;
40
+ data?: undefined;
41
+ dataType?: undefined;
42
+ })[];
43
+ }
44
+ export default _default;
@@ -0,0 +1,57 @@
1
+ export default {
2
+ title: 'FIO-8072',
3
+ name: 'fio8072',
4
+ path: 'fio8072',
5
+ type: 'form',
6
+ display: 'form',
7
+ components: [
8
+ {
9
+ label: 'Select',
10
+ widget: 'choicesjs',
11
+ tableView: true,
12
+ data: {
13
+ values: [
14
+ {
15
+ label: 'A',
16
+ value: '1',
17
+ },
18
+ {
19
+ label: 'B',
20
+ value: '2',
21
+ },
22
+ {
23
+ label: 'C',
24
+ value: '10',
25
+ },
26
+ {
27
+ label: 'D',
28
+ value: '1d',
29
+ },
30
+ ],
31
+ },
32
+ dataType: 'number',
33
+ key: 'select',
34
+ type: 'select',
35
+ input: true,
36
+ },
37
+ {
38
+ label: 'Text Field',
39
+ applyMaskOn: 'change',
40
+ tableView: true,
41
+ key: 'textField',
42
+ type: 'textfield',
43
+ input: true,
44
+ conditional: {
45
+ show: true,
46
+ conjunction: 'all',
47
+ conditions: [
48
+ {
49
+ component: 'select',
50
+ operator: 'lessThan',
51
+ value: 5,
52
+ },
53
+ ],
54
+ },
55
+ },
56
+ ],
57
+ };
@@ -21,5 +21,6 @@ import comp21 from './comp21';
21
21
  import comp22 from './comp22';
22
22
  import comp23 from './comp23';
23
23
  import comp24 from './comp24';
24
- export { comp1, comp2, comp4, comp5, comp6, comp7, comp8, comp9, comp10, comp11, comp12, comp13, comp14, comp15, comp16, comp17, comp18, comp19, comp20, comp21, comp22, comp23, comp24 };
24
+ import comp25 from './comp25';
25
+ export { comp1, comp2, comp4, comp5, comp6, comp7, comp8, comp9, comp10, comp11, comp12, comp13, comp14, comp15, comp16, comp17, comp18, comp19, comp20, comp21, comp22, comp23, comp24, comp25 };
25
26
  export { multiSelect, multiSelectOptions } from "./comp3";
@@ -22,4 +22,5 @@ import comp21 from './comp21';
22
22
  import comp22 from './comp22';
23
23
  import comp23 from './comp23';
24
24
  import comp24 from './comp24';
25
- export { comp1, comp2, comp4, comp5, comp6, comp7, comp8, comp9, comp10, comp11, comp12, comp13, comp14, comp15, comp16, comp17, comp18, comp19, comp20, comp21, comp22, comp23, comp24 };
25
+ import comp25 from './comp25';
26
+ export { comp1, comp2, comp4, comp5, comp6, comp7, comp8, comp9, comp10, comp11, comp12, comp13, comp14, comp15, comp16, comp17, comp18, comp19, comp20, comp21, comp22, comp23, comp24, comp25 };
@@ -1,12 +1,12 @@
1
1
  export default class TimeComponent extends TextFieldComponent {
2
- rawData: string | never[];
2
+ rawData: any;
3
3
  get dataFormat(): any;
4
4
  get skipMaskValidation(): boolean;
5
5
  isNotCompleteInput(value: any): any;
6
6
  removeValue(index: any): void;
7
7
  resetRawData(index: any): void;
8
8
  setRawValue(value: any, index: any): void;
9
- getRawValue(index: any): string | never[];
9
+ getRawValue(index: any): any;
10
10
  getValueAt(index: any): any;
11
11
  setValueAt(index: any, value: any): void;
12
12
  getStringAsValue(view: any): any;
@@ -31,7 +31,8 @@ export default class TimeComponent extends TextFieldComponent {
31
31
  this.component.inputType = isEdgeBrowser && edgeVersion <= 18
32
32
  ? 'text'
33
33
  : (this.component.inputType || 'time');
34
- this.rawData = this.component.multiple ? [] : this.emptyValue;
34
+ // If default value is given then the raw data needs to be set
35
+ this.rawData = this.component.multiple ? [] : this.getValueAsString(this.defaultValue) || this.emptyValue;
35
36
  }
36
37
  static get builderInfo() {
37
38
  return {
@@ -62,7 +63,7 @@ export default class TimeComponent extends TextFieldComponent {
62
63
  return value;
63
64
  }
64
65
  get validationValue() {
65
- if (Array.isArray(this.rawData) && !this.rawData.length || !this.rawData) {
66
+ if ((Array.isArray(this.rawData) && !this.rawData.length) || !this.rawData) {
66
67
  return this.dataValue;
67
68
  }
68
69
  return this.rawData;
@@ -0,0 +1,166 @@
1
+ declare namespace _default {
2
+ let type: string;
3
+ let display: string;
4
+ let components: {
5
+ title: string;
6
+ breadcrumbClickable: boolean;
7
+ buttonSettings: {
8
+ previous: boolean;
9
+ cancel: boolean;
10
+ next: boolean;
11
+ };
12
+ navigateOnEnter: boolean;
13
+ saveOnEnter: boolean;
14
+ scrollToTop: boolean;
15
+ collapsible: boolean;
16
+ key: string;
17
+ type: string;
18
+ label: string;
19
+ components: {
20
+ label: string;
21
+ disabled: boolean;
22
+ alwaysEnabled: boolean;
23
+ tableView: boolean;
24
+ defaultValue: string;
25
+ key: string;
26
+ type: string;
27
+ input: boolean;
28
+ inputMask: string;
29
+ hideOnChildrenHidden: boolean;
30
+ id: string;
31
+ placeholder: string;
32
+ prefix: string;
33
+ customClass: string;
34
+ suffix: string;
35
+ multiple: boolean;
36
+ protected: boolean;
37
+ unique: boolean;
38
+ persistent: boolean;
39
+ hidden: boolean;
40
+ clearOnHide: boolean;
41
+ refreshOn: string;
42
+ redrawOn: string;
43
+ modalEdit: boolean;
44
+ dataGridLabel: boolean;
45
+ labelPosition: string;
46
+ description: string;
47
+ errorLabel: string;
48
+ tooltip: string;
49
+ hideLabel: boolean;
50
+ tabindex: string;
51
+ autofocus: boolean;
52
+ dbIndex: boolean;
53
+ customDefaultValue: string;
54
+ calculateValue: string;
55
+ calculateServer: boolean;
56
+ widget: {
57
+ type: string;
58
+ };
59
+ attributes: {};
60
+ validateOn: string;
61
+ validate: {
62
+ required: boolean;
63
+ custom: string;
64
+ customPrivate: boolean;
65
+ strictDateValidation: boolean;
66
+ multiple: boolean;
67
+ unique: boolean;
68
+ minLength: string;
69
+ maxLength: string;
70
+ pattern: string;
71
+ };
72
+ conditional: {
73
+ show: null;
74
+ when: null;
75
+ eq: string;
76
+ };
77
+ overlay: {
78
+ style: string;
79
+ left: string;
80
+ top: string;
81
+ width: string;
82
+ height: string;
83
+ };
84
+ allowCalculateOverride: boolean;
85
+ encrypted: boolean;
86
+ showCharCount: boolean;
87
+ showWordCount: boolean;
88
+ properties: {};
89
+ allowMultipleMasks: boolean;
90
+ addons: never[];
91
+ mask: boolean;
92
+ inputType: string;
93
+ inputFormat: string;
94
+ displayMask: string;
95
+ spellcheck: boolean;
96
+ truncateMultipleSpaces: boolean;
97
+ format: string;
98
+ dataFormat: string;
99
+ }[];
100
+ input: boolean;
101
+ tableView: boolean;
102
+ id: string;
103
+ placeholder: string;
104
+ prefix: string;
105
+ customClass: string;
106
+ suffix: string;
107
+ multiple: boolean;
108
+ defaultValue: null;
109
+ protected: boolean;
110
+ unique: boolean;
111
+ persistent: boolean;
112
+ hidden: boolean;
113
+ clearOnHide: boolean;
114
+ refreshOn: string;
115
+ redrawOn: string;
116
+ modalEdit: boolean;
117
+ dataGridLabel: boolean;
118
+ labelPosition: string;
119
+ description: string;
120
+ errorLabel: string;
121
+ tooltip: string;
122
+ hideLabel: boolean;
123
+ tabindex: string;
124
+ disabled: boolean;
125
+ autofocus: boolean;
126
+ dbIndex: boolean;
127
+ customDefaultValue: string;
128
+ calculateValue: string;
129
+ calculateServer: boolean;
130
+ widget: null;
131
+ attributes: {};
132
+ validateOn: string;
133
+ validate: {
134
+ required: boolean;
135
+ custom: string;
136
+ customPrivate: boolean;
137
+ strictDateValidation: boolean;
138
+ multiple: boolean;
139
+ unique: boolean;
140
+ };
141
+ conditional: {
142
+ show: null;
143
+ when: null;
144
+ eq: string;
145
+ };
146
+ overlay: {
147
+ style: string;
148
+ left: string;
149
+ top: string;
150
+ width: string;
151
+ height: string;
152
+ };
153
+ allowCalculateOverride: boolean;
154
+ encrypted: boolean;
155
+ showCharCount: boolean;
156
+ showWordCount: boolean;
157
+ properties: {};
158
+ allowMultipleMasks: boolean;
159
+ addons: never[];
160
+ tree: boolean;
161
+ lazyLoad: boolean;
162
+ theme: string;
163
+ breadcrumb: string;
164
+ }[];
165
+ }
166
+ export default _default;