@formio/js 5.0.0-bb.dev.3 → 5.0.0-bb.dev.6

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 (54) hide show
  1. package/dist/formio.embed.js +1 -1
  2. package/dist/formio.embed.min.js +1 -1
  3. package/dist/formio.embed.min.js.LICENSE.txt +1 -1
  4. package/dist/formio.form.js +12 -12
  5. package/dist/formio.form.min.js +1 -1
  6. package/dist/formio.form.min.js.LICENSE.txt +1 -1
  7. package/dist/formio.full.js +12 -12
  8. package/dist/formio.full.min.js +1 -1
  9. package/dist/formio.full.min.js.LICENSE.txt +1 -1
  10. package/dist/formio.js +1 -1
  11. package/dist/formio.min.js +1 -1
  12. package/dist/formio.min.js.LICENSE.txt +1 -1
  13. package/dist/formio.utils.min.js.LICENSE.txt +1 -1
  14. package/lib/cjs/Form.js +0 -15
  15. package/lib/cjs/components/_classes/component/Component.js +10 -4
  16. package/lib/cjs/components/_classes/component/editForm/Component.edit.validation.js +8 -0
  17. package/lib/cjs/components/_classes/nested/NestedComponent.js +2 -2
  18. package/lib/cjs/components/datagrid/DataGrid.js +2 -1
  19. package/lib/cjs/components/datagrid/fixtures/comp-with-allow-calculate-override.js +1 -1
  20. package/lib/cjs/components/datagrid/fixtures/index.d.ts +2 -1
  21. package/lib/cjs/components/datagrid/fixtures/index.js +3 -1
  22. package/lib/cjs/components/datagrid/fixtures/two-comp-with-allow-calculate-override.d.ts +53 -0
  23. package/lib/cjs/components/datagrid/fixtures/two-comp-with-allow-calculate-override.js +104 -0
  24. package/lib/cjs/components/editgrid/EditGrid.js +7 -4
  25. package/lib/cjs/components/editgrid/fixtures/formsWithEditGridAndConditions.d.ts +910 -0
  26. package/lib/cjs/components/editgrid/fixtures/formsWithEditGridAndConditions.js +923 -0
  27. package/lib/cjs/components/html/HTML.d.ts +1 -0
  28. package/lib/cjs/components/html/HTML.js +9 -0
  29. package/lib/cjs/components/recaptcha/ReCaptcha.js +3 -3
  30. package/lib/cjs/formio.form.js +14 -0
  31. package/lib/cjs/translations/en.d.ts +2 -0
  32. package/lib/cjs/translations/en.js +2 -0
  33. package/lib/cjs/validator/Validator.js +1 -1
  34. package/lib/mjs/Form.js +0 -15
  35. package/lib/mjs/components/_classes/component/Component.js +10 -4
  36. package/lib/mjs/components/_classes/component/editForm/Component.edit.validation.js +8 -0
  37. package/lib/mjs/components/_classes/nested/NestedComponent.js +2 -2
  38. package/lib/mjs/components/datagrid/DataGrid.js +2 -1
  39. package/lib/mjs/components/datagrid/fixtures/comp-with-allow-calculate-override.js +1 -1
  40. package/lib/mjs/components/datagrid/fixtures/index.d.ts +2 -1
  41. package/lib/mjs/components/datagrid/fixtures/index.js +2 -1
  42. package/lib/mjs/components/datagrid/fixtures/two-comp-with-allow-calculate-override.d.ts +53 -0
  43. package/lib/mjs/components/datagrid/fixtures/two-comp-with-allow-calculate-override.js +102 -0
  44. package/lib/mjs/components/editgrid/EditGrid.js +7 -4
  45. package/lib/mjs/components/editgrid/fixtures/formsWithEditGridAndConditions.d.ts +910 -0
  46. package/lib/mjs/components/editgrid/fixtures/formsWithEditGridAndConditions.js +921 -0
  47. package/lib/mjs/components/html/HTML.d.ts +1 -0
  48. package/lib/mjs/components/html/HTML.js +8 -0
  49. package/lib/mjs/components/recaptcha/ReCaptcha.js +3 -3
  50. package/lib/mjs/formio.form.js +14 -0
  51. package/lib/mjs/translations/en.d.ts +2 -0
  52. package/lib/mjs/translations/en.js +2 -0
  53. package/lib/mjs/validator/Validator.js +1 -1
  54. package/package.json +2 -2
@@ -0,0 +1,910 @@
1
+ declare namespace _default {
2
+ export { form1 };
3
+ export { form2 };
4
+ export { form3 };
5
+ export { form4 };
6
+ export { form5 };
7
+ export { form6 };
8
+ }
9
+ export default _default;
10
+ declare namespace form1 {
11
+ const title: string;
12
+ const name: string;
13
+ const path: string;
14
+ const type: string;
15
+ const display: string;
16
+ const components: ({
17
+ label: string;
18
+ tableView: boolean;
19
+ key: string;
20
+ type: string;
21
+ input: boolean;
22
+ collapsible?: undefined;
23
+ conditional?: undefined;
24
+ components?: undefined;
25
+ disableOnInvalid?: undefined;
26
+ } | {
27
+ collapsible: boolean;
28
+ key: string;
29
+ conditional: {
30
+ show: boolean;
31
+ conjunction: string;
32
+ conditions: {
33
+ component: string;
34
+ operator: string;
35
+ value: boolean;
36
+ }[];
37
+ };
38
+ type: string;
39
+ label: string;
40
+ input: boolean;
41
+ tableView: boolean;
42
+ components: ({
43
+ label: string;
44
+ optionsLabelPosition: string;
45
+ inline: boolean;
46
+ tableView: boolean;
47
+ values: {
48
+ label: string;
49
+ value: string;
50
+ shortcut: string;
51
+ }[];
52
+ key: string;
53
+ type: string;
54
+ input: boolean;
55
+ rowDrafts?: undefined;
56
+ conditional?: undefined;
57
+ displayAsTable?: undefined;
58
+ components?: undefined;
59
+ } | {
60
+ label: string;
61
+ tableView: boolean;
62
+ rowDrafts: boolean;
63
+ key: string;
64
+ conditional: {
65
+ show: boolean;
66
+ conjunction: string;
67
+ conditions: {
68
+ component: string;
69
+ operator: string;
70
+ value: string;
71
+ }[];
72
+ };
73
+ type: string;
74
+ displayAsTable: boolean;
75
+ input: boolean;
76
+ components: ({
77
+ label: string;
78
+ applyMaskOn: string;
79
+ tableView: boolean;
80
+ key: string;
81
+ type: string;
82
+ input: boolean;
83
+ mask?: undefined;
84
+ delimiter?: undefined;
85
+ requireDecimal?: undefined;
86
+ inputFormat?: undefined;
87
+ truncateMultipleSpaces?: undefined;
88
+ } | {
89
+ label: string;
90
+ applyMaskOn: string;
91
+ mask: boolean;
92
+ tableView: boolean;
93
+ delimiter: boolean;
94
+ requireDecimal: boolean;
95
+ inputFormat: string;
96
+ truncateMultipleSpaces: boolean;
97
+ calculateValue: string;
98
+ key: string;
99
+ type: string;
100
+ input: boolean;
101
+ })[];
102
+ optionsLabelPosition?: undefined;
103
+ inline?: undefined;
104
+ values?: undefined;
105
+ })[];
106
+ disableOnInvalid?: undefined;
107
+ } | {
108
+ type: string;
109
+ label: string;
110
+ key: string;
111
+ disableOnInvalid: boolean;
112
+ input: boolean;
113
+ tableView: boolean;
114
+ collapsible?: undefined;
115
+ conditional?: undefined;
116
+ components?: undefined;
117
+ })[];
118
+ }
119
+ declare namespace form2 {
120
+ const title_1: string;
121
+ export { title_1 as title };
122
+ const name_1: string;
123
+ export { name_1 as name };
124
+ const path_1: string;
125
+ export { path_1 as path };
126
+ const type_1: string;
127
+ export { type_1 as type };
128
+ const display_1: string;
129
+ export { display_1 as display };
130
+ const components_1: ({
131
+ label: string;
132
+ autoExpand: boolean;
133
+ tableView: boolean;
134
+ key: string;
135
+ type: string;
136
+ input: boolean;
137
+ rowDrafts?: undefined;
138
+ displayAsTable?: undefined;
139
+ components?: undefined;
140
+ disableOnInvalid?: undefined;
141
+ } | {
142
+ label: string;
143
+ tableView: boolean;
144
+ rowDrafts: boolean;
145
+ key: string;
146
+ type: string;
147
+ displayAsTable: boolean;
148
+ input: boolean;
149
+ components: ({
150
+ label: string;
151
+ action: string;
152
+ showValidations: boolean;
153
+ tableView: boolean;
154
+ key: string;
155
+ type: string;
156
+ custom: string;
157
+ input: boolean;
158
+ collapsible?: undefined;
159
+ components?: undefined;
160
+ } | {
161
+ collapsible: boolean;
162
+ key: string;
163
+ type: string;
164
+ label: string;
165
+ input: boolean;
166
+ tableView: boolean;
167
+ components: ({
168
+ label: string;
169
+ optionsLabelPosition: string;
170
+ inline: boolean;
171
+ tableView: boolean;
172
+ values: {
173
+ label: string;
174
+ value: string;
175
+ shortcut: string;
176
+ }[];
177
+ key: string;
178
+ type: string;
179
+ input: boolean;
180
+ title?: undefined;
181
+ collapsible?: undefined;
182
+ components?: undefined;
183
+ } | {
184
+ title: string;
185
+ collapsible: boolean;
186
+ key: string;
187
+ customConditional: string;
188
+ type: string;
189
+ label: string;
190
+ input: boolean;
191
+ tableView: boolean;
192
+ components: {
193
+ label: string;
194
+ openWhenEmpty: boolean;
195
+ disableAddingRemovingRows: boolean;
196
+ tableView: boolean;
197
+ rowDrafts: boolean;
198
+ key: string;
199
+ conditional: {
200
+ show: boolean;
201
+ conjunction: string;
202
+ conditions: {
203
+ component: string;
204
+ operator: string;
205
+ value: string;
206
+ }[];
207
+ };
208
+ type: string;
209
+ displayAsTable: boolean;
210
+ input: boolean;
211
+ components: {
212
+ label: string;
213
+ tableView: boolean;
214
+ key: string;
215
+ type: string;
216
+ input: boolean;
217
+ }[];
218
+ }[];
219
+ optionsLabelPosition?: undefined;
220
+ inline?: undefined;
221
+ values?: undefined;
222
+ })[];
223
+ action?: undefined;
224
+ showValidations?: undefined;
225
+ })[];
226
+ autoExpand?: undefined;
227
+ disableOnInvalid?: undefined;
228
+ } | {
229
+ type: string;
230
+ label: string;
231
+ key: string;
232
+ disableOnInvalid: boolean;
233
+ input: boolean;
234
+ tableView: boolean;
235
+ autoExpand?: undefined;
236
+ rowDrafts?: undefined;
237
+ displayAsTable?: undefined;
238
+ components?: undefined;
239
+ })[];
240
+ export { components_1 as components };
241
+ }
242
+ declare namespace form3 {
243
+ const title_2: string;
244
+ export { title_2 as title };
245
+ const name_2: string;
246
+ export { name_2 as name };
247
+ const path_2: string;
248
+ export { path_2 as path };
249
+ const type_2: string;
250
+ export { type_2 as type };
251
+ const display_2: string;
252
+ export { display_2 as display };
253
+ const components_2: ({
254
+ label: string;
255
+ components: ({
256
+ label: string;
257
+ key: string;
258
+ components: ({
259
+ title: string;
260
+ theme: string;
261
+ collapsible: boolean;
262
+ key: string;
263
+ type: string;
264
+ label: string;
265
+ tableView: boolean;
266
+ input: boolean;
267
+ components: {
268
+ label: string;
269
+ optionsLabelPosition: string;
270
+ tableView: boolean;
271
+ defaultValue: {
272
+ creditRisk: boolean;
273
+ marketRisk: boolean;
274
+ operationalRisk: boolean;
275
+ counterpartyCreditRisk: boolean;
276
+ creditValuationRiskAdjustment: boolean;
277
+ };
278
+ values: {
279
+ label: string;
280
+ value: string;
281
+ shortcut: string;
282
+ }[];
283
+ key: string;
284
+ type: string;
285
+ input: boolean;
286
+ inputType: string;
287
+ }[];
288
+ } | {
289
+ title: string;
290
+ theme: string;
291
+ collapsible: boolean;
292
+ key: string;
293
+ type: string;
294
+ label: string;
295
+ input: boolean;
296
+ tableView: boolean;
297
+ components: {
298
+ title: string;
299
+ collapsible: boolean;
300
+ key: string;
301
+ type: string;
302
+ label: string;
303
+ input: boolean;
304
+ tableView: boolean;
305
+ components: ({
306
+ label: string;
307
+ optionsLabelPosition: string;
308
+ customClass: string;
309
+ inline: boolean;
310
+ tableView: boolean;
311
+ values: {
312
+ label: string;
313
+ value: string;
314
+ shortcut: string;
315
+ }[];
316
+ key: string;
317
+ type: string;
318
+ labelWidth: number;
319
+ input: boolean;
320
+ conditional?: undefined;
321
+ } | {
322
+ label: string;
323
+ optionsLabelPosition: string;
324
+ customClass: string;
325
+ inline: boolean;
326
+ tableView: boolean;
327
+ values: {
328
+ label: string;
329
+ value: string;
330
+ shortcut: string;
331
+ }[];
332
+ key: string;
333
+ conditional: {
334
+ show: boolean;
335
+ conjunction: string;
336
+ conditions: {
337
+ component: string;
338
+ operator: string;
339
+ value: string;
340
+ }[];
341
+ };
342
+ type: string;
343
+ input: boolean;
344
+ labelWidth?: undefined;
345
+ })[];
346
+ }[];
347
+ })[];
348
+ } | {
349
+ label: string;
350
+ key: string;
351
+ components: {
352
+ label: string;
353
+ tableView: boolean;
354
+ key: string;
355
+ conditional: {
356
+ show: boolean;
357
+ conjunction: string;
358
+ conditions: {
359
+ component: string;
360
+ operator: string;
361
+ value: string;
362
+ }[];
363
+ };
364
+ type: string;
365
+ input: boolean;
366
+ components: {
367
+ label: string;
368
+ tableView: boolean;
369
+ key: string;
370
+ type: string;
371
+ input: boolean;
372
+ components: {
373
+ title: string;
374
+ theme: string;
375
+ customClass: string;
376
+ collapsible: boolean;
377
+ key: string;
378
+ type: string;
379
+ label: string;
380
+ input: boolean;
381
+ tableView: boolean;
382
+ components: ({
383
+ label: string;
384
+ labelPosition: string;
385
+ optionsLabelPosition: string;
386
+ inline: boolean;
387
+ tableView: boolean;
388
+ values: {
389
+ label: string;
390
+ value: string;
391
+ shortcut: string;
392
+ }[];
393
+ key: string;
394
+ customConditional: string;
395
+ type: string;
396
+ labelWidth: number;
397
+ input: boolean;
398
+ defaultValue?: undefined;
399
+ conditional?: undefined;
400
+ templates?: undefined;
401
+ addAnother?: undefined;
402
+ modal?: undefined;
403
+ saveRow?: undefined;
404
+ rowDrafts?: undefined;
405
+ displayAsTable?: undefined;
406
+ alwaysEnabled?: undefined;
407
+ components?: undefined;
408
+ path?: undefined;
409
+ } | {
410
+ label: string;
411
+ tableView: boolean;
412
+ defaultValue: boolean;
413
+ key: string;
414
+ conditional: {
415
+ show: boolean;
416
+ conjunction: string;
417
+ conditions: {
418
+ component: string;
419
+ operator: string;
420
+ value: string;
421
+ }[];
422
+ };
423
+ type: string;
424
+ input: boolean;
425
+ labelPosition?: undefined;
426
+ optionsLabelPosition?: undefined;
427
+ inline?: undefined;
428
+ values?: undefined;
429
+ labelWidth?: undefined;
430
+ templates?: undefined;
431
+ addAnother?: undefined;
432
+ modal?: undefined;
433
+ saveRow?: undefined;
434
+ rowDrafts?: undefined;
435
+ displayAsTable?: undefined;
436
+ alwaysEnabled?: undefined;
437
+ components?: undefined;
438
+ path?: undefined;
439
+ } | {
440
+ label: string;
441
+ tableView: boolean;
442
+ key: string;
443
+ conditional: {
444
+ show: boolean;
445
+ conjunction: string;
446
+ conditions: {
447
+ component: string;
448
+ operator: string;
449
+ value: string;
450
+ }[];
451
+ };
452
+ type: string;
453
+ optionsLabelPosition: string;
454
+ input: boolean;
455
+ defaultValue: boolean;
456
+ labelPosition?: undefined;
457
+ inline?: undefined;
458
+ values?: undefined;
459
+ labelWidth?: undefined;
460
+ templates?: undefined;
461
+ addAnother?: undefined;
462
+ modal?: undefined;
463
+ saveRow?: undefined;
464
+ rowDrafts?: undefined;
465
+ displayAsTable?: undefined;
466
+ alwaysEnabled?: undefined;
467
+ components?: undefined;
468
+ path?: undefined;
469
+ } | {
470
+ label: string;
471
+ tableView: boolean;
472
+ templates: {
473
+ header: string;
474
+ row: string;
475
+ };
476
+ addAnother: string;
477
+ modal: boolean;
478
+ saveRow: string;
479
+ rowDrafts: boolean;
480
+ key: string;
481
+ conditional: {
482
+ show: boolean;
483
+ conjunction: string;
484
+ conditions: {
485
+ component: string;
486
+ operator: string;
487
+ value: string;
488
+ }[];
489
+ };
490
+ type: string;
491
+ displayAsTable: boolean;
492
+ alwaysEnabled: boolean;
493
+ input: boolean;
494
+ components: {
495
+ title: string;
496
+ theme: string;
497
+ collapsible: boolean;
498
+ key: string;
499
+ type: string;
500
+ label: string;
501
+ input: boolean;
502
+ tableView: boolean;
503
+ components: {
504
+ title: string;
505
+ collapsible: boolean;
506
+ key: string;
507
+ customConditional: string;
508
+ type: string;
509
+ label: string;
510
+ input: boolean;
511
+ tableView: boolean;
512
+ components: {
513
+ label: string;
514
+ applyMaskOn: string;
515
+ mask: boolean;
516
+ tableView: boolean;
517
+ delimiter: boolean;
518
+ requireDecimal: boolean;
519
+ inputFormat: string;
520
+ truncateMultipleSpaces: boolean;
521
+ key: string;
522
+ type: string;
523
+ input: boolean;
524
+ }[];
525
+ }[];
526
+ }[];
527
+ path: string;
528
+ labelPosition?: undefined;
529
+ optionsLabelPosition?: undefined;
530
+ inline?: undefined;
531
+ values?: undefined;
532
+ labelWidth?: undefined;
533
+ defaultValue?: undefined;
534
+ })[];
535
+ }[];
536
+ }[];
537
+ }[];
538
+ })[];
539
+ key: string;
540
+ type: string;
541
+ tableView: boolean;
542
+ input: boolean;
543
+ keyModified: boolean;
544
+ action?: undefined;
545
+ showValidations?: undefined;
546
+ alwaysEnabled?: undefined;
547
+ state?: undefined;
548
+ } | {
549
+ label: string;
550
+ action: string;
551
+ showValidations: boolean;
552
+ tableView: boolean;
553
+ key: string;
554
+ type: string;
555
+ input: boolean;
556
+ alwaysEnabled: boolean;
557
+ state: string;
558
+ components?: undefined;
559
+ keyModified?: undefined;
560
+ })[];
561
+ export { components_2 as components };
562
+ }
563
+ declare namespace form4 {
564
+ const title_3: string;
565
+ export { title_3 as title };
566
+ const name_3: string;
567
+ export { name_3 as name };
568
+ const path_3: string;
569
+ export { path_3 as path };
570
+ const type_3: string;
571
+ export { type_3 as type };
572
+ const display_3: string;
573
+ export { display_3 as display };
574
+ const components_3: ({
575
+ label: string;
576
+ applyMaskOn: string;
577
+ tableView: boolean;
578
+ key: string;
579
+ type: string;
580
+ input: boolean;
581
+ calculateServer?: undefined;
582
+ rowDrafts?: undefined;
583
+ displayAsTable?: undefined;
584
+ components?: undefined;
585
+ disableOnInvalid?: undefined;
586
+ } | {
587
+ label: string;
588
+ tableView: boolean;
589
+ calculateValue: string;
590
+ calculateServer: boolean;
591
+ rowDrafts: boolean;
592
+ key: string;
593
+ type: string;
594
+ displayAsTable: boolean;
595
+ input: boolean;
596
+ components: {
597
+ label: string;
598
+ applyMaskOn: string;
599
+ autoExpand: boolean;
600
+ tableView: boolean;
601
+ key: string;
602
+ type: string;
603
+ input: boolean;
604
+ }[];
605
+ applyMaskOn?: undefined;
606
+ disableOnInvalid?: undefined;
607
+ } | {
608
+ type: string;
609
+ label: string;
610
+ key: string;
611
+ disableOnInvalid: boolean;
612
+ input: boolean;
613
+ tableView: boolean;
614
+ applyMaskOn?: undefined;
615
+ calculateServer?: undefined;
616
+ rowDrafts?: undefined;
617
+ displayAsTable?: undefined;
618
+ components?: undefined;
619
+ })[];
620
+ export { components_3 as components };
621
+ }
622
+ declare namespace form5 {
623
+ const title_4: string;
624
+ export { title_4 as title };
625
+ const name_4: string;
626
+ export { name_4 as name };
627
+ const path_4: string;
628
+ export { path_4 as path };
629
+ const type_4: string;
630
+ export { type_4 as type };
631
+ const display_4: string;
632
+ export { display_4 as display };
633
+ const components_4: ({
634
+ label: string;
635
+ tableView: boolean;
636
+ key: string;
637
+ type: string;
638
+ input: boolean;
639
+ components: ({
640
+ title: string;
641
+ theme: string;
642
+ collapsible: boolean;
643
+ key: string;
644
+ type: string;
645
+ label: string;
646
+ tableView: boolean;
647
+ input: boolean;
648
+ components: {
649
+ label: string;
650
+ widget: string;
651
+ description: string;
652
+ tableView: boolean;
653
+ multiple: boolean;
654
+ dataSrc: string;
655
+ data: {
656
+ json: {
657
+ id: number;
658
+ longName: string;
659
+ leiCode: string;
660
+ countryCode: string;
661
+ }[];
662
+ };
663
+ template: string;
664
+ customOptions: {
665
+ searchResultLimit: number;
666
+ fuseOptions: {
667
+ threshold: number;
668
+ distance: number;
669
+ };
670
+ };
671
+ validate: {
672
+ required: boolean;
673
+ };
674
+ key: string;
675
+ type: string;
676
+ input: boolean;
677
+ searchThreshold: number;
678
+ }[];
679
+ path: string;
680
+ } | {
681
+ title: string;
682
+ collapsible: boolean;
683
+ key: string;
684
+ customConditional: string;
685
+ type: string;
686
+ label: string;
687
+ input: boolean;
688
+ tableView: boolean;
689
+ components: {
690
+ label: string;
691
+ tableView: boolean;
692
+ key: string;
693
+ customConditional: string;
694
+ type: string;
695
+ input: boolean;
696
+ components: {
697
+ title: string;
698
+ collapsible: boolean;
699
+ key: string;
700
+ type: string;
701
+ label: string;
702
+ input: boolean;
703
+ tableView: boolean;
704
+ components: {
705
+ title: string;
706
+ collapsible: boolean;
707
+ key: string;
708
+ type: string;
709
+ label: string;
710
+ input: boolean;
711
+ tableView: boolean;
712
+ components: ({
713
+ label: string;
714
+ optionsLabelPosition: string;
715
+ customClass: string;
716
+ inline: boolean;
717
+ tableView: boolean;
718
+ values: {
719
+ label: string;
720
+ value: string;
721
+ shortcut: string;
722
+ }[];
723
+ validate: {
724
+ required: boolean;
725
+ };
726
+ key: string;
727
+ type: string;
728
+ labelWidth: number;
729
+ input: boolean;
730
+ templates?: undefined;
731
+ addAnother?: undefined;
732
+ modal?: undefined;
733
+ saveRow?: undefined;
734
+ rowDrafts?: undefined;
735
+ conditional?: undefined;
736
+ displayAsTable?: undefined;
737
+ components?: undefined;
738
+ } | {
739
+ label: string;
740
+ customClass: string;
741
+ tableView: boolean;
742
+ templates: {
743
+ header: string;
744
+ row: string;
745
+ };
746
+ addAnother: string;
747
+ modal: boolean;
748
+ saveRow: string;
749
+ validate: {
750
+ required: boolean;
751
+ };
752
+ rowDrafts: boolean;
753
+ key: string;
754
+ conditional: {
755
+ show: boolean;
756
+ conjunction: string;
757
+ conditions: {
758
+ component: string;
759
+ operator: string;
760
+ value: string;
761
+ }[];
762
+ };
763
+ type: string;
764
+ displayAsTable: boolean;
765
+ input: boolean;
766
+ components: {
767
+ title: string;
768
+ theme: string;
769
+ collapsible: boolean;
770
+ key: string;
771
+ type: string;
772
+ label: string;
773
+ input: boolean;
774
+ tableView: boolean;
775
+ components: {
776
+ label: string;
777
+ applyMaskOn: string;
778
+ tableView: boolean;
779
+ validate: {
780
+ required: boolean;
781
+ maxLength: number;
782
+ };
783
+ key: string;
784
+ type: string;
785
+ input: boolean;
786
+ }[];
787
+ }[];
788
+ optionsLabelPosition?: undefined;
789
+ inline?: undefined;
790
+ values?: undefined;
791
+ labelWidth?: undefined;
792
+ })[];
793
+ }[];
794
+ }[];
795
+ }[];
796
+ theme?: undefined;
797
+ path?: undefined;
798
+ })[];
799
+ action?: undefined;
800
+ showValidations?: undefined;
801
+ state?: undefined;
802
+ } | {
803
+ label: string;
804
+ action: string;
805
+ showValidations: boolean;
806
+ tableView: boolean;
807
+ key: string;
808
+ type: string;
809
+ input: boolean;
810
+ state: string;
811
+ components?: undefined;
812
+ })[];
813
+ export { components_4 as components };
814
+ }
815
+ declare namespace form6 {
816
+ const title_5: string;
817
+ export { title_5 as title };
818
+ const name_5: string;
819
+ export { name_5 as name };
820
+ const path_5: string;
821
+ export { path_5 as path };
822
+ const type_5: string;
823
+ export { type_5 as type };
824
+ const display_5: string;
825
+ export { display_5 as display };
826
+ const components_5: ({
827
+ label: string;
828
+ applyMaskOn: string;
829
+ tableView: boolean;
830
+ key: string;
831
+ type: string;
832
+ input: boolean;
833
+ components?: undefined;
834
+ disableOnInvalid?: undefined;
835
+ } | {
836
+ label: string;
837
+ tableView: boolean;
838
+ key: string;
839
+ type: string;
840
+ input: boolean;
841
+ components: {
842
+ label: string;
843
+ tableView: boolean;
844
+ rowDrafts: boolean;
845
+ key: string;
846
+ logic: {
847
+ name: string;
848
+ trigger: {
849
+ type: string;
850
+ simple: {
851
+ show: boolean;
852
+ conjunction: string;
853
+ conditions: {
854
+ component: string;
855
+ operator: string;
856
+ value: string;
857
+ }[];
858
+ };
859
+ };
860
+ actions: {
861
+ name: string;
862
+ type: string;
863
+ value: string;
864
+ }[];
865
+ }[];
866
+ type: string;
867
+ displayAsTable: boolean;
868
+ input: boolean;
869
+ components: ({
870
+ label: string;
871
+ applyMaskOn: string;
872
+ mask: boolean;
873
+ tableView: boolean;
874
+ delimiter: boolean;
875
+ requireDecimal: boolean;
876
+ inputFormat: string;
877
+ truncateMultipleSpaces: boolean;
878
+ key: string;
879
+ type: string;
880
+ input: boolean;
881
+ autoExpand?: undefined;
882
+ } | {
883
+ label: string;
884
+ applyMaskOn: string;
885
+ autoExpand: boolean;
886
+ tableView: boolean;
887
+ key: string;
888
+ type: string;
889
+ input: boolean;
890
+ mask?: undefined;
891
+ delimiter?: undefined;
892
+ requireDecimal?: undefined;
893
+ inputFormat?: undefined;
894
+ truncateMultipleSpaces?: undefined;
895
+ })[];
896
+ }[];
897
+ applyMaskOn?: undefined;
898
+ disableOnInvalid?: undefined;
899
+ } | {
900
+ type: string;
901
+ label: string;
902
+ key: string;
903
+ disableOnInvalid: boolean;
904
+ input: boolean;
905
+ tableView: boolean;
906
+ applyMaskOn?: undefined;
907
+ components?: undefined;
908
+ })[];
909
+ export { components_5 as components };
910
+ }