react-formule 1.6.0 → 1.7.0
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.
- package/README.md +1 -1
- package/dist/admin/components/SchemaCodeEditor.d.ts +8 -0
- package/dist/admin/utils/fieldTypes.d.ts +1527 -415
- package/dist/forms/templates/ArrayFieldTemplates/AccordionArrayFieldTemplate.d.ts +1 -1
- package/dist/forms/templates/ArrayFieldTemplates/LayerArrayFieldTemplate.d.ts +1 -1
- package/dist/forms/widgets/base/RichEditorWidget.d.ts +10 -1
- package/dist/forms/widgets/base/SliderWidget.d.ts +25 -0
- package/dist/forms/widgets/base/index.d.ts +3 -0
- package/dist/index.d.ts +1 -0
- package/dist/react-formule.js +53827 -54939
- package/dist/react-formule.umd.cjs +443 -441
- package/package.json +2 -2
- package/dist/admin/formComponents/widgets/SliderWidget.d.ts +0 -14
- package/dist/admin/formComponents/widgets/index.d.ts +0 -5
|
@@ -34,9 +34,13 @@ export namespace common {
|
|
|
34
34
|
span: {
|
|
35
35
|
title: string;
|
|
36
36
|
type: string;
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
37
|
+
default: number;
|
|
38
|
+
minimum: number;
|
|
39
|
+
maximum: number;
|
|
40
|
+
oneOf: {
|
|
41
|
+
title: string;
|
|
42
|
+
const: number;
|
|
43
|
+
}[];
|
|
40
44
|
};
|
|
41
45
|
showAsModal: {
|
|
42
46
|
title: string;
|
|
@@ -46,6 +50,11 @@ export namespace common {
|
|
|
46
50
|
title: string;
|
|
47
51
|
type: string;
|
|
48
52
|
};
|
|
53
|
+
hidden: {
|
|
54
|
+
type: string;
|
|
55
|
+
title: string;
|
|
56
|
+
tooltip: string;
|
|
57
|
+
};
|
|
49
58
|
};
|
|
50
59
|
dependencies: {
|
|
51
60
|
showAsModal: {
|
|
@@ -72,6 +81,14 @@ export namespace common {
|
|
|
72
81
|
modalWidth: {
|
|
73
82
|
title: string;
|
|
74
83
|
type: string;
|
|
84
|
+
tooltip: string;
|
|
85
|
+
default: number;
|
|
86
|
+
minimum: number;
|
|
87
|
+
maximum: number;
|
|
88
|
+
oneOf: {
|
|
89
|
+
title: string;
|
|
90
|
+
const: number;
|
|
91
|
+
}[];
|
|
75
92
|
};
|
|
76
93
|
buttonInNewLine: {
|
|
77
94
|
title: string;
|
|
@@ -102,8 +119,15 @@ export namespace common {
|
|
|
102
119
|
showAsModal: boolean;
|
|
103
120
|
modal: {
|
|
104
121
|
buttonInNewLine: boolean;
|
|
122
|
+
modalWidth: number;
|
|
105
123
|
};
|
|
106
124
|
};
|
|
125
|
+
buttonInNewLine: {
|
|
126
|
+
"ui:widget": string;
|
|
127
|
+
};
|
|
128
|
+
modalWidth: {
|
|
129
|
+
"ui:widget": string;
|
|
130
|
+
};
|
|
107
131
|
};
|
|
108
132
|
showAsModal: {
|
|
109
133
|
"ui:widget": string;
|
|
@@ -111,6 +135,9 @@ export namespace common {
|
|
|
111
135
|
collapsible: {
|
|
112
136
|
"ui:widget": string;
|
|
113
137
|
};
|
|
138
|
+
hidden: {
|
|
139
|
+
"ui:widget": string;
|
|
140
|
+
};
|
|
114
141
|
"ui:order": string[];
|
|
115
142
|
"ui:padding": number;
|
|
116
143
|
"ui:label": boolean;
|
|
@@ -208,8 +235,15 @@ export namespace hiddenFields {
|
|
|
208
235
|
showAsModal: boolean;
|
|
209
236
|
modal: {
|
|
210
237
|
buttonInNewLine: boolean;
|
|
238
|
+
modalWidth: number;
|
|
211
239
|
};
|
|
212
240
|
};
|
|
241
|
+
buttonInNewLine: {
|
|
242
|
+
"ui:widget": string;
|
|
243
|
+
};
|
|
244
|
+
modalWidth: {
|
|
245
|
+
"ui:widget": string;
|
|
246
|
+
};
|
|
213
247
|
};
|
|
214
248
|
showAsModal: {
|
|
215
249
|
"ui:widget": string;
|
|
@@ -217,6 +251,9 @@ export namespace hiddenFields {
|
|
|
217
251
|
collapsible: {
|
|
218
252
|
"ui:widget": string;
|
|
219
253
|
};
|
|
254
|
+
hidden: {
|
|
255
|
+
"ui:widget": string;
|
|
256
|
+
};
|
|
220
257
|
"ui:order": string[];
|
|
221
258
|
"ui:padding": number;
|
|
222
259
|
"ui:label": boolean;
|
|
@@ -285,89 +322,9 @@ declare namespace collections_1 {
|
|
|
285
322
|
export { properties_2 as properties };
|
|
286
323
|
}
|
|
287
324
|
export { optionsSchema_3 as optionsSchema };
|
|
288
|
-
|
|
289
|
-
"ui:ObjectFieldTemplate": ({ properties }: {
|
|
290
|
-
properties: any;
|
|
291
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
292
|
-
};
|
|
325
|
+
import optionsSchemaUiSchema_3 = common.optionsSchemaUiSchema;
|
|
293
326
|
export { optionsSchemaUiSchema_3 as optionsSchemaUiSchema };
|
|
294
|
-
|
|
295
|
-
let type_10: string;
|
|
296
|
-
export { type_10 as type };
|
|
297
|
-
let title_14: string;
|
|
298
|
-
export { title_14 as title };
|
|
299
|
-
let properties_3: {
|
|
300
|
-
"ui:options": {
|
|
301
|
-
type: string;
|
|
302
|
-
title: string;
|
|
303
|
-
dependencies: {
|
|
304
|
-
showAsModal: {
|
|
305
|
-
oneOf: ({
|
|
306
|
-
properties: {
|
|
307
|
-
showAsModal: {
|
|
308
|
-
enum: boolean[];
|
|
309
|
-
};
|
|
310
|
-
modal?: undefined;
|
|
311
|
-
};
|
|
312
|
-
} | {
|
|
313
|
-
properties: {
|
|
314
|
-
showAsModal: {
|
|
315
|
-
enum: boolean[];
|
|
316
|
-
};
|
|
317
|
-
modal: {
|
|
318
|
-
title: string;
|
|
319
|
-
type: string;
|
|
320
|
-
properties: {
|
|
321
|
-
buttonText: {
|
|
322
|
-
title: string;
|
|
323
|
-
type: string;
|
|
324
|
-
};
|
|
325
|
-
modalWidth: {
|
|
326
|
-
title: string;
|
|
327
|
-
type: string;
|
|
328
|
-
};
|
|
329
|
-
buttonInNewLine: {
|
|
330
|
-
title: string;
|
|
331
|
-
type: string;
|
|
332
|
-
};
|
|
333
|
-
};
|
|
334
|
-
};
|
|
335
|
-
};
|
|
336
|
-
})[];
|
|
337
|
-
required: string[];
|
|
338
|
-
};
|
|
339
|
-
};
|
|
340
|
-
properties: {
|
|
341
|
-
hidden: {
|
|
342
|
-
type: string;
|
|
343
|
-
title: string;
|
|
344
|
-
description: string;
|
|
345
|
-
};
|
|
346
|
-
span: {
|
|
347
|
-
title: string;
|
|
348
|
-
type: string;
|
|
349
|
-
defaultValue: number;
|
|
350
|
-
values: number[];
|
|
351
|
-
labels: string[];
|
|
352
|
-
};
|
|
353
|
-
showAsModal: {
|
|
354
|
-
title: string;
|
|
355
|
-
type: string;
|
|
356
|
-
};
|
|
357
|
-
collapsible: {
|
|
358
|
-
title: string;
|
|
359
|
-
type: string;
|
|
360
|
-
};
|
|
361
|
-
};
|
|
362
|
-
};
|
|
363
|
-
"ui:label": {
|
|
364
|
-
title: string;
|
|
365
|
-
type: string;
|
|
366
|
-
default: boolean;
|
|
367
|
-
};
|
|
368
|
-
};
|
|
369
|
-
export { properties_3 as properties };
|
|
370
|
-
}
|
|
327
|
+
import optionsUiSchema_2 = common.optionsUiSchema;
|
|
371
328
|
export { optionsUiSchema_2 as optionsUiSchema };
|
|
372
329
|
let optionsUiSchemaUiSchema_2: {
|
|
373
330
|
"ui:options": {
|
|
@@ -379,8 +336,15 @@ declare namespace collections_1 {
|
|
|
379
336
|
showAsModal: boolean;
|
|
380
337
|
modal: {
|
|
381
338
|
buttonInNewLine: boolean;
|
|
339
|
+
modalWidth: number;
|
|
382
340
|
};
|
|
383
341
|
};
|
|
342
|
+
buttonInNewLine: {
|
|
343
|
+
"ui:widget": string;
|
|
344
|
+
};
|
|
345
|
+
modalWidth: {
|
|
346
|
+
"ui:widget": string;
|
|
347
|
+
};
|
|
384
348
|
};
|
|
385
349
|
showAsModal: {
|
|
386
350
|
"ui:widget": string;
|
|
@@ -388,6 +352,9 @@ declare namespace collections_1 {
|
|
|
388
352
|
collapsible: {
|
|
389
353
|
"ui:widget": string;
|
|
390
354
|
};
|
|
355
|
+
hidden: {
|
|
356
|
+
"ui:widget": string;
|
|
357
|
+
};
|
|
391
358
|
"ui:order": string[];
|
|
392
359
|
"ui:padding": number;
|
|
393
360
|
"ui:label": boolean;
|
|
@@ -402,10 +369,10 @@ declare namespace collections_1 {
|
|
|
402
369
|
export { optionsUiSchemaUiSchema_2 as optionsUiSchemaUiSchema };
|
|
403
370
|
namespace _default_1 {
|
|
404
371
|
export namespace schema_1 {
|
|
405
|
-
let
|
|
406
|
-
export {
|
|
407
|
-
let
|
|
408
|
-
export {
|
|
372
|
+
let type_10: string;
|
|
373
|
+
export { type_10 as type };
|
|
374
|
+
let properties_3: {};
|
|
375
|
+
export { properties_3 as properties };
|
|
409
376
|
}
|
|
410
377
|
export { schema_1 as schema };
|
|
411
378
|
let uiSchema_1: {};
|
|
@@ -414,8 +381,8 @@ declare namespace collections_1 {
|
|
|
414
381
|
export { _default_1 as default };
|
|
415
382
|
}
|
|
416
383
|
namespace array {
|
|
417
|
-
let
|
|
418
|
-
export {
|
|
384
|
+
let title_14: string;
|
|
385
|
+
export { title_14 as title };
|
|
419
386
|
let icon_2: import("react/jsx-runtime").JSX.Element;
|
|
420
387
|
export { icon_2 as icon };
|
|
421
388
|
let description_8: string;
|
|
@@ -425,12 +392,12 @@ declare namespace collections_1 {
|
|
|
425
392
|
let child_2: {};
|
|
426
393
|
export { child_2 as child };
|
|
427
394
|
export namespace optionsSchema_4 {
|
|
428
|
-
let
|
|
429
|
-
export {
|
|
430
|
-
let
|
|
431
|
-
export {
|
|
432
|
-
export namespace
|
|
433
|
-
export {
|
|
395
|
+
let type_11: string;
|
|
396
|
+
export { type_11 as type };
|
|
397
|
+
let title_15: string;
|
|
398
|
+
export { title_15 as title };
|
|
399
|
+
export namespace properties_4 { }
|
|
400
|
+
export { properties_4 as properties };
|
|
434
401
|
}
|
|
435
402
|
export { optionsSchema_4 as optionsSchema };
|
|
436
403
|
let optionsSchemaUiSchema_4: {
|
|
@@ -440,11 +407,11 @@ declare namespace collections_1 {
|
|
|
440
407
|
};
|
|
441
408
|
export { optionsSchemaUiSchema_4 as optionsSchemaUiSchema };
|
|
442
409
|
export namespace optionsUiSchema_3 {
|
|
443
|
-
let
|
|
444
|
-
export {
|
|
445
|
-
let
|
|
446
|
-
export {
|
|
447
|
-
let
|
|
410
|
+
let type_12: string;
|
|
411
|
+
export { type_12 as type };
|
|
412
|
+
let title_16: string;
|
|
413
|
+
export { title_16 as title };
|
|
414
|
+
let properties_5: {
|
|
448
415
|
"ui:options": {
|
|
449
416
|
type: string;
|
|
450
417
|
title: string;
|
|
@@ -458,9 +425,13 @@ declare namespace collections_1 {
|
|
|
458
425
|
span: {
|
|
459
426
|
title: string;
|
|
460
427
|
type: string;
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
428
|
+
default: number;
|
|
429
|
+
minimum: number;
|
|
430
|
+
maximum: number;
|
|
431
|
+
oneOf: {
|
|
432
|
+
title: string;
|
|
433
|
+
const: number;
|
|
434
|
+
}[];
|
|
464
435
|
};
|
|
465
436
|
showAsModal: {
|
|
466
437
|
title: string;
|
|
@@ -470,6 +441,11 @@ declare namespace collections_1 {
|
|
|
470
441
|
title: string;
|
|
471
442
|
type: string;
|
|
472
443
|
};
|
|
444
|
+
hidden: {
|
|
445
|
+
type: string;
|
|
446
|
+
title: string;
|
|
447
|
+
tooltip: string;
|
|
448
|
+
};
|
|
473
449
|
};
|
|
474
450
|
};
|
|
475
451
|
"ui:label": {
|
|
@@ -478,7 +454,7 @@ declare namespace collections_1 {
|
|
|
478
454
|
default: boolean;
|
|
479
455
|
};
|
|
480
456
|
};
|
|
481
|
-
export {
|
|
457
|
+
export { properties_5 as properties };
|
|
482
458
|
}
|
|
483
459
|
export { optionsUiSchema_3 as optionsUiSchema };
|
|
484
460
|
let optionsUiSchemaUiSchema_3: {
|
|
@@ -507,8 +483,15 @@ declare namespace collections_1 {
|
|
|
507
483
|
showAsModal: boolean;
|
|
508
484
|
modal: {
|
|
509
485
|
buttonInNewLine: boolean;
|
|
486
|
+
modalWidth: number;
|
|
510
487
|
};
|
|
511
488
|
};
|
|
489
|
+
buttonInNewLine: {
|
|
490
|
+
"ui:widget": string;
|
|
491
|
+
};
|
|
492
|
+
modalWidth: {
|
|
493
|
+
"ui:widget": string;
|
|
494
|
+
};
|
|
512
495
|
};
|
|
513
496
|
showAsModal: {
|
|
514
497
|
"ui:widget": string;
|
|
@@ -516,6 +499,9 @@ declare namespace collections_1 {
|
|
|
516
499
|
collapsible: {
|
|
517
500
|
"ui:widget": string;
|
|
518
501
|
};
|
|
502
|
+
hidden: {
|
|
503
|
+
"ui:widget": string;
|
|
504
|
+
};
|
|
519
505
|
"ui:order": string[];
|
|
520
506
|
"ui:padding": number;
|
|
521
507
|
"ui:label": boolean;
|
|
@@ -530,8 +516,8 @@ declare namespace collections_1 {
|
|
|
530
516
|
export { optionsUiSchemaUiSchema_3 as optionsUiSchemaUiSchema };
|
|
531
517
|
namespace _default_2 {
|
|
532
518
|
export namespace schema_2 {
|
|
533
|
-
let
|
|
534
|
-
export {
|
|
519
|
+
let type_13: string;
|
|
520
|
+
export { type_13 as type };
|
|
535
521
|
export let items: {};
|
|
536
522
|
}
|
|
537
523
|
export { schema_2 as schema };
|
|
@@ -541,8 +527,8 @@ declare namespace collections_1 {
|
|
|
541
527
|
export { _default_2 as default };
|
|
542
528
|
}
|
|
543
529
|
namespace accordion {
|
|
544
|
-
let
|
|
545
|
-
export {
|
|
530
|
+
let title_17: string;
|
|
531
|
+
export { title_17 as title };
|
|
546
532
|
let icon_3: import("react/jsx-runtime").JSX.Element;
|
|
547
533
|
export { icon_3 as icon };
|
|
548
534
|
let description_9: string;
|
|
@@ -550,12 +536,12 @@ declare namespace collections_1 {
|
|
|
550
536
|
let child_3: {};
|
|
551
537
|
export { child_3 as child };
|
|
552
538
|
export namespace optionsSchema_5 {
|
|
553
|
-
let
|
|
554
|
-
export {
|
|
555
|
-
let
|
|
556
|
-
export {
|
|
557
|
-
export namespace
|
|
558
|
-
export {
|
|
539
|
+
let type_14: string;
|
|
540
|
+
export { type_14 as type };
|
|
541
|
+
let title_18: string;
|
|
542
|
+
export { title_18 as title };
|
|
543
|
+
export namespace properties_6 { }
|
|
544
|
+
export { properties_6 as properties };
|
|
559
545
|
}
|
|
560
546
|
export { optionsSchema_5 as optionsSchema };
|
|
561
547
|
let optionsSchemaUiSchema_5: {
|
|
@@ -576,8 +562,15 @@ declare namespace collections_1 {
|
|
|
576
562
|
showAsModal: boolean;
|
|
577
563
|
modal: {
|
|
578
564
|
buttonInNewLine: boolean;
|
|
565
|
+
modalWidth: number;
|
|
579
566
|
};
|
|
580
567
|
};
|
|
568
|
+
buttonInNewLine: {
|
|
569
|
+
"ui:widget": string;
|
|
570
|
+
};
|
|
571
|
+
modalWidth: {
|
|
572
|
+
"ui:widget": string;
|
|
573
|
+
};
|
|
581
574
|
};
|
|
582
575
|
showAsModal: {
|
|
583
576
|
"ui:widget": string;
|
|
@@ -585,6 +578,9 @@ declare namespace collections_1 {
|
|
|
585
578
|
collapsible: {
|
|
586
579
|
"ui:widget": string;
|
|
587
580
|
};
|
|
581
|
+
hidden: {
|
|
582
|
+
"ui:widget": string;
|
|
583
|
+
};
|
|
588
584
|
"ui:order": string[];
|
|
589
585
|
"ui:padding": number;
|
|
590
586
|
"ui:label": boolean;
|
|
@@ -599,8 +595,8 @@ declare namespace collections_1 {
|
|
|
599
595
|
export { optionsUiSchemaUiSchema_4 as optionsUiSchemaUiSchema };
|
|
600
596
|
namespace _default_3 {
|
|
601
597
|
export namespace schema_3 {
|
|
602
|
-
let
|
|
603
|
-
export {
|
|
598
|
+
let type_15: string;
|
|
599
|
+
export { type_15 as type };
|
|
604
600
|
let items_1: {};
|
|
605
601
|
export { items_1 as items };
|
|
606
602
|
}
|
|
@@ -613,8 +609,8 @@ declare namespace collections_1 {
|
|
|
613
609
|
export { _default_3 as default };
|
|
614
610
|
}
|
|
615
611
|
namespace layer {
|
|
616
|
-
let
|
|
617
|
-
export {
|
|
612
|
+
let title_19: string;
|
|
613
|
+
export { title_19 as title };
|
|
618
614
|
let icon_4: import("react/jsx-runtime").JSX.Element;
|
|
619
615
|
export { icon_4 as icon };
|
|
620
616
|
let description_10: string;
|
|
@@ -622,12 +618,12 @@ declare namespace collections_1 {
|
|
|
622
618
|
let child_4: {};
|
|
623
619
|
export { child_4 as child };
|
|
624
620
|
export namespace optionsSchema_6 {
|
|
625
|
-
let
|
|
626
|
-
export {
|
|
627
|
-
let
|
|
628
|
-
export {
|
|
629
|
-
export namespace
|
|
630
|
-
export {
|
|
621
|
+
let type_16: string;
|
|
622
|
+
export { type_16 as type };
|
|
623
|
+
let title_20: string;
|
|
624
|
+
export { title_20 as title };
|
|
625
|
+
export namespace properties_7 { }
|
|
626
|
+
export { properties_7 as properties };
|
|
631
627
|
}
|
|
632
628
|
export { optionsSchema_6 as optionsSchema };
|
|
633
629
|
let optionsSchemaUiSchema_6: {
|
|
@@ -648,8 +644,15 @@ declare namespace collections_1 {
|
|
|
648
644
|
showAsModal: boolean;
|
|
649
645
|
modal: {
|
|
650
646
|
buttonInNewLine: boolean;
|
|
647
|
+
modalWidth: number;
|
|
651
648
|
};
|
|
652
649
|
};
|
|
650
|
+
buttonInNewLine: {
|
|
651
|
+
"ui:widget": string;
|
|
652
|
+
};
|
|
653
|
+
modalWidth: {
|
|
654
|
+
"ui:widget": string;
|
|
655
|
+
};
|
|
653
656
|
};
|
|
654
657
|
showAsModal: {
|
|
655
658
|
"ui:widget": string;
|
|
@@ -657,6 +660,9 @@ declare namespace collections_1 {
|
|
|
657
660
|
collapsible: {
|
|
658
661
|
"ui:widget": string;
|
|
659
662
|
};
|
|
663
|
+
hidden: {
|
|
664
|
+
"ui:widget": string;
|
|
665
|
+
};
|
|
660
666
|
"ui:order": string[];
|
|
661
667
|
"ui:padding": number;
|
|
662
668
|
"ui:label": boolean;
|
|
@@ -671,8 +677,8 @@ declare namespace collections_1 {
|
|
|
671
677
|
export { optionsUiSchemaUiSchema_5 as optionsUiSchemaUiSchema };
|
|
672
678
|
namespace _default_4 {
|
|
673
679
|
export namespace schema_4 {
|
|
674
|
-
let
|
|
675
|
-
export {
|
|
680
|
+
let type_17: string;
|
|
681
|
+
export { type_17 as type };
|
|
676
682
|
let items_2: {};
|
|
677
683
|
export { items_2 as items };
|
|
678
684
|
}
|
|
@@ -685,8 +691,8 @@ declare namespace collections_1 {
|
|
|
685
691
|
export { _default_4 as default };
|
|
686
692
|
}
|
|
687
693
|
namespace tabView {
|
|
688
|
-
let
|
|
689
|
-
export {
|
|
694
|
+
let title_21: string;
|
|
695
|
+
export { title_21 as title };
|
|
690
696
|
let icon_5: import("react/jsx-runtime").JSX.Element;
|
|
691
697
|
export { icon_5 as icon };
|
|
692
698
|
let description_11: string;
|
|
@@ -694,12 +700,12 @@ declare namespace collections_1 {
|
|
|
694
700
|
let child_5: {};
|
|
695
701
|
export { child_5 as child };
|
|
696
702
|
export namespace optionsSchema_7 {
|
|
697
|
-
let
|
|
698
|
-
export {
|
|
699
|
-
let
|
|
700
|
-
export {
|
|
701
|
-
export namespace
|
|
702
|
-
export {
|
|
703
|
+
let type_18: string;
|
|
704
|
+
export { type_18 as type };
|
|
705
|
+
let title_22: string;
|
|
706
|
+
export { title_22 as title };
|
|
707
|
+
export namespace properties_8 { }
|
|
708
|
+
export { properties_8 as properties };
|
|
703
709
|
}
|
|
704
710
|
export { optionsSchema_7 as optionsSchema };
|
|
705
711
|
let optionsSchemaUiSchema_7: {
|
|
@@ -720,8 +726,15 @@ declare namespace collections_1 {
|
|
|
720
726
|
showAsModal: boolean;
|
|
721
727
|
modal: {
|
|
722
728
|
buttonInNewLine: boolean;
|
|
729
|
+
modalWidth: number;
|
|
723
730
|
};
|
|
724
731
|
};
|
|
732
|
+
buttonInNewLine: {
|
|
733
|
+
"ui:widget": string;
|
|
734
|
+
};
|
|
735
|
+
modalWidth: {
|
|
736
|
+
"ui:widget": string;
|
|
737
|
+
};
|
|
725
738
|
};
|
|
726
739
|
showAsModal: {
|
|
727
740
|
"ui:widget": string;
|
|
@@ -729,6 +742,9 @@ declare namespace collections_1 {
|
|
|
729
742
|
collapsible: {
|
|
730
743
|
"ui:widget": string;
|
|
731
744
|
};
|
|
745
|
+
hidden: {
|
|
746
|
+
"ui:widget": string;
|
|
747
|
+
};
|
|
732
748
|
"ui:order": string[];
|
|
733
749
|
"ui:padding": number;
|
|
734
750
|
"ui:label": boolean;
|
|
@@ -743,10 +759,10 @@ declare namespace collections_1 {
|
|
|
743
759
|
export { optionsUiSchemaUiSchema_6 as optionsUiSchemaUiSchema };
|
|
744
760
|
namespace _default_5 {
|
|
745
761
|
export namespace schema_5 {
|
|
746
|
-
let
|
|
747
|
-
export {
|
|
748
|
-
let
|
|
749
|
-
export {
|
|
762
|
+
let type_19: string;
|
|
763
|
+
export { type_19 as type };
|
|
764
|
+
let properties_9: {};
|
|
765
|
+
export { properties_9 as properties };
|
|
750
766
|
}
|
|
751
767
|
export { schema_5 as schema };
|
|
752
768
|
let uiSchema_5: {
|
|
@@ -757,8 +773,8 @@ declare namespace collections_1 {
|
|
|
757
773
|
export { _default_5 as default };
|
|
758
774
|
}
|
|
759
775
|
namespace stepsView {
|
|
760
|
-
let
|
|
761
|
-
export {
|
|
776
|
+
let title_23: string;
|
|
777
|
+
export { title_23 as title };
|
|
762
778
|
let description_12: string;
|
|
763
779
|
export { description_12 as description };
|
|
764
780
|
let icon_6: import("react/jsx-runtime").JSX.Element;
|
|
@@ -766,12 +782,12 @@ declare namespace collections_1 {
|
|
|
766
782
|
let child_6: {};
|
|
767
783
|
export { child_6 as child };
|
|
768
784
|
export namespace optionsSchema_8 {
|
|
769
|
-
let
|
|
770
|
-
export {
|
|
771
|
-
let
|
|
772
|
-
export {
|
|
773
|
-
export namespace
|
|
774
|
-
export {
|
|
785
|
+
let type_20: string;
|
|
786
|
+
export { type_20 as type };
|
|
787
|
+
let title_24: string;
|
|
788
|
+
export { title_24 as title };
|
|
789
|
+
export namespace properties_10 { }
|
|
790
|
+
export { properties_10 as properties };
|
|
775
791
|
}
|
|
776
792
|
export { optionsSchema_8 as optionsSchema };
|
|
777
793
|
let optionsSchemaUiSchema_8: {
|
|
@@ -781,11 +797,11 @@ declare namespace collections_1 {
|
|
|
781
797
|
};
|
|
782
798
|
export { optionsSchemaUiSchema_8 as optionsSchemaUiSchema };
|
|
783
799
|
export namespace optionsUiSchema_7 {
|
|
784
|
-
let
|
|
785
|
-
export {
|
|
786
|
-
let
|
|
787
|
-
export {
|
|
788
|
-
let
|
|
800
|
+
let type_21: string;
|
|
801
|
+
export { type_21 as type };
|
|
802
|
+
let title_25: string;
|
|
803
|
+
export { title_25 as title };
|
|
804
|
+
let properties_11: {
|
|
789
805
|
"ui:options": {
|
|
790
806
|
type: string;
|
|
791
807
|
title: string;
|
|
@@ -814,6 +830,14 @@ declare namespace collections_1 {
|
|
|
814
830
|
modalWidth: {
|
|
815
831
|
title: string;
|
|
816
832
|
type: string;
|
|
833
|
+
tooltip: string;
|
|
834
|
+
default: number;
|
|
835
|
+
minimum: number;
|
|
836
|
+
maximum: number;
|
|
837
|
+
oneOf: {
|
|
838
|
+
title: string;
|
|
839
|
+
const: number;
|
|
840
|
+
}[];
|
|
817
841
|
};
|
|
818
842
|
buttonInNewLine: {
|
|
819
843
|
title: string;
|
|
@@ -835,9 +859,13 @@ declare namespace collections_1 {
|
|
|
835
859
|
span: {
|
|
836
860
|
title: string;
|
|
837
861
|
type: string;
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
862
|
+
default: number;
|
|
863
|
+
minimum: number;
|
|
864
|
+
maximum: number;
|
|
865
|
+
oneOf: {
|
|
866
|
+
title: string;
|
|
867
|
+
const: number;
|
|
868
|
+
}[];
|
|
841
869
|
};
|
|
842
870
|
showAsModal: {
|
|
843
871
|
title: string;
|
|
@@ -847,6 +875,11 @@ declare namespace collections_1 {
|
|
|
847
875
|
title: string;
|
|
848
876
|
type: string;
|
|
849
877
|
};
|
|
878
|
+
hidden: {
|
|
879
|
+
type: string;
|
|
880
|
+
title: string;
|
|
881
|
+
tooltip: string;
|
|
882
|
+
};
|
|
850
883
|
};
|
|
851
884
|
if: {
|
|
852
885
|
properties: {
|
|
@@ -889,7 +922,7 @@ declare namespace collections_1 {
|
|
|
889
922
|
default: boolean;
|
|
890
923
|
};
|
|
891
924
|
};
|
|
892
|
-
export {
|
|
925
|
+
export { properties_11 as properties };
|
|
893
926
|
}
|
|
894
927
|
export { optionsUiSchema_7 as optionsUiSchema };
|
|
895
928
|
let optionsUiSchemaUiSchema_7: {
|
|
@@ -914,8 +947,15 @@ declare namespace collections_1 {
|
|
|
914
947
|
showAsModal: boolean;
|
|
915
948
|
modal: {
|
|
916
949
|
buttonInNewLine: boolean;
|
|
950
|
+
modalWidth: number;
|
|
917
951
|
};
|
|
918
952
|
};
|
|
953
|
+
buttonInNewLine: {
|
|
954
|
+
"ui:widget": string;
|
|
955
|
+
};
|
|
956
|
+
modalWidth: {
|
|
957
|
+
"ui:widget": string;
|
|
958
|
+
};
|
|
919
959
|
};
|
|
920
960
|
showAsModal: {
|
|
921
961
|
"ui:widget": string;
|
|
@@ -923,6 +963,9 @@ declare namespace collections_1 {
|
|
|
923
963
|
collapsible: {
|
|
924
964
|
"ui:widget": string;
|
|
925
965
|
};
|
|
966
|
+
hidden: {
|
|
967
|
+
"ui:widget": string;
|
|
968
|
+
};
|
|
926
969
|
"ui:order": string[];
|
|
927
970
|
"ui:padding": number;
|
|
928
971
|
"ui:label": boolean;
|
|
@@ -937,10 +980,10 @@ declare namespace collections_1 {
|
|
|
937
980
|
export { optionsUiSchemaUiSchema_7 as optionsUiSchemaUiSchema };
|
|
938
981
|
namespace _default_6 {
|
|
939
982
|
export namespace schema_6 {
|
|
940
|
-
let
|
|
941
|
-
export {
|
|
942
|
-
let
|
|
943
|
-
export {
|
|
983
|
+
let type_22: string;
|
|
984
|
+
export { type_22 as type };
|
|
985
|
+
let properties_12: {};
|
|
986
|
+
export { properties_12 as properties };
|
|
944
987
|
}
|
|
945
988
|
export { schema_6 as schema };
|
|
946
989
|
let uiSchema_6: {
|
|
@@ -957,8 +1000,8 @@ declare namespace collections_1 {
|
|
|
957
1000
|
}
|
|
958
1001
|
declare namespace simple_1 {
|
|
959
1002
|
export namespace text {
|
|
960
|
-
let
|
|
961
|
-
export {
|
|
1003
|
+
let title_26: string;
|
|
1004
|
+
export { title_26 as title };
|
|
962
1005
|
let icon_7: import("react/jsx-runtime").JSX.Element;
|
|
963
1006
|
export { icon_7 as icon };
|
|
964
1007
|
let description_13: string;
|
|
@@ -968,26 +1011,35 @@ declare namespace simple_1 {
|
|
|
968
1011
|
let child_7: {};
|
|
969
1012
|
export { child_7 as child };
|
|
970
1013
|
export namespace optionsSchema_9 {
|
|
971
|
-
let
|
|
972
|
-
export {
|
|
973
|
-
let
|
|
974
|
-
export {
|
|
975
|
-
export namespace
|
|
1014
|
+
let type_23: string;
|
|
1015
|
+
export { type_23 as type };
|
|
1016
|
+
let title_27: string;
|
|
1017
|
+
export { title_27 as title };
|
|
1018
|
+
export namespace properties_13 {
|
|
976
1019
|
export namespace pattern {
|
|
977
|
-
let
|
|
978
|
-
export {
|
|
1020
|
+
let title_28: string;
|
|
1021
|
+
export { title_28 as title };
|
|
979
1022
|
let description_14: string;
|
|
980
1023
|
export { description_14 as description };
|
|
1024
|
+
let type_24: string;
|
|
1025
|
+
export { type_24 as type };
|
|
1026
|
+
export let format: string;
|
|
1027
|
+
}
|
|
1028
|
+
export namespace format_1 {
|
|
1029
|
+
let title_29: string;
|
|
1030
|
+
export { title_29 as title };
|
|
981
1031
|
let type_25: string;
|
|
982
1032
|
export { type_25 as type };
|
|
983
|
-
|
|
1033
|
+
let _enum: string[];
|
|
1034
|
+
export { _enum as enum };
|
|
984
1035
|
}
|
|
1036
|
+
export { format_1 as format };
|
|
985
1037
|
import readOnly_3 = readOnly;
|
|
986
1038
|
export { readOnly_3 as readOnly };
|
|
987
1039
|
import isRequired_3 = isRequired;
|
|
988
1040
|
export { isRequired_3 as isRequired };
|
|
989
1041
|
}
|
|
990
|
-
export {
|
|
1042
|
+
export { properties_13 as properties };
|
|
991
1043
|
}
|
|
992
1044
|
export { optionsSchema_9 as optionsSchema };
|
|
993
1045
|
let optionsSchemaUiSchema_9: {
|
|
@@ -1010,7 +1062,7 @@ declare namespace simple_1 {
|
|
|
1010
1062
|
export { type_26 as type };
|
|
1011
1063
|
let title_30: string;
|
|
1012
1064
|
export { title_30 as title };
|
|
1013
|
-
let
|
|
1065
|
+
let properties_14: {
|
|
1014
1066
|
"ui:options": {
|
|
1015
1067
|
type: string;
|
|
1016
1068
|
title: string;
|
|
@@ -1039,6 +1091,14 @@ declare namespace simple_1 {
|
|
|
1039
1091
|
modalWidth: {
|
|
1040
1092
|
title: string;
|
|
1041
1093
|
type: string;
|
|
1094
|
+
tooltip: string;
|
|
1095
|
+
default: number;
|
|
1096
|
+
minimum: number;
|
|
1097
|
+
maximum: number;
|
|
1098
|
+
oneOf: {
|
|
1099
|
+
title: string;
|
|
1100
|
+
const: number;
|
|
1101
|
+
}[];
|
|
1042
1102
|
};
|
|
1043
1103
|
buttonInNewLine: {
|
|
1044
1104
|
title: string;
|
|
@@ -1069,9 +1129,13 @@ declare namespace simple_1 {
|
|
|
1069
1129
|
span: {
|
|
1070
1130
|
title: string;
|
|
1071
1131
|
type: string;
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1132
|
+
default: number;
|
|
1133
|
+
minimum: number;
|
|
1134
|
+
maximum: number;
|
|
1135
|
+
oneOf: {
|
|
1136
|
+
title: string;
|
|
1137
|
+
const: number;
|
|
1138
|
+
}[];
|
|
1075
1139
|
};
|
|
1076
1140
|
showAsModal: {
|
|
1077
1141
|
title: string;
|
|
@@ -1081,6 +1145,11 @@ declare namespace simple_1 {
|
|
|
1081
1145
|
title: string;
|
|
1082
1146
|
type: string;
|
|
1083
1147
|
};
|
|
1148
|
+
hidden: {
|
|
1149
|
+
type: string;
|
|
1150
|
+
title: string;
|
|
1151
|
+
tooltip: string;
|
|
1152
|
+
};
|
|
1084
1153
|
};
|
|
1085
1154
|
};
|
|
1086
1155
|
"ui:label": {
|
|
@@ -1089,7 +1158,7 @@ declare namespace simple_1 {
|
|
|
1089
1158
|
default: boolean;
|
|
1090
1159
|
};
|
|
1091
1160
|
};
|
|
1092
|
-
export {
|
|
1161
|
+
export { properties_14 as properties };
|
|
1093
1162
|
}
|
|
1094
1163
|
export { optionsUiSchema_8 as optionsUiSchema };
|
|
1095
1164
|
let optionsUiSchemaUiSchema_8: {
|
|
@@ -1112,8 +1181,15 @@ declare namespace simple_1 {
|
|
|
1112
1181
|
showAsModal: boolean;
|
|
1113
1182
|
modal: {
|
|
1114
1183
|
buttonInNewLine: boolean;
|
|
1184
|
+
modalWidth: number;
|
|
1115
1185
|
};
|
|
1116
1186
|
};
|
|
1187
|
+
buttonInNewLine: {
|
|
1188
|
+
"ui:widget": string;
|
|
1189
|
+
};
|
|
1190
|
+
modalWidth: {
|
|
1191
|
+
"ui:widget": string;
|
|
1192
|
+
};
|
|
1117
1193
|
};
|
|
1118
1194
|
showAsModal: {
|
|
1119
1195
|
"ui:widget": string;
|
|
@@ -1121,6 +1197,9 @@ declare namespace simple_1 {
|
|
|
1121
1197
|
collapsible: {
|
|
1122
1198
|
"ui:widget": string;
|
|
1123
1199
|
};
|
|
1200
|
+
hidden: {
|
|
1201
|
+
"ui:widget": string;
|
|
1202
|
+
};
|
|
1124
1203
|
"ui:order": string[];
|
|
1125
1204
|
"ui:padding": number;
|
|
1126
1205
|
"ui:label": boolean;
|
|
@@ -1160,13 +1239,13 @@ declare namespace simple_1 {
|
|
|
1160
1239
|
export { type_28 as type };
|
|
1161
1240
|
let title_32: string;
|
|
1162
1241
|
export { title_32 as title };
|
|
1163
|
-
export namespace
|
|
1242
|
+
export namespace properties_15 {
|
|
1164
1243
|
import readOnly_4 = readOnly;
|
|
1165
1244
|
export { readOnly_4 as readOnly };
|
|
1166
1245
|
import isRequired_4 = isRequired;
|
|
1167
1246
|
export { isRequired_4 as isRequired };
|
|
1168
1247
|
}
|
|
1169
|
-
export {
|
|
1248
|
+
export { properties_15 as properties };
|
|
1170
1249
|
}
|
|
1171
1250
|
export { optionsSchema_10 as optionsSchema };
|
|
1172
1251
|
let optionsSchemaUiSchema_10: {
|
|
@@ -1186,7 +1265,7 @@ declare namespace simple_1 {
|
|
|
1186
1265
|
export { type_29 as type };
|
|
1187
1266
|
let title_33: string;
|
|
1188
1267
|
export { title_33 as title };
|
|
1189
|
-
let
|
|
1268
|
+
let properties_16: {
|
|
1190
1269
|
"ui:options": {
|
|
1191
1270
|
type: string;
|
|
1192
1271
|
title: string;
|
|
@@ -1215,6 +1294,14 @@ declare namespace simple_1 {
|
|
|
1215
1294
|
modalWidth: {
|
|
1216
1295
|
title: string;
|
|
1217
1296
|
type: string;
|
|
1297
|
+
tooltip: string;
|
|
1298
|
+
default: number;
|
|
1299
|
+
minimum: number;
|
|
1300
|
+
maximum: number;
|
|
1301
|
+
oneOf: {
|
|
1302
|
+
title: string;
|
|
1303
|
+
const: number;
|
|
1304
|
+
}[];
|
|
1218
1305
|
};
|
|
1219
1306
|
buttonInNewLine: {
|
|
1220
1307
|
title: string;
|
|
@@ -1251,9 +1338,13 @@ declare namespace simple_1 {
|
|
|
1251
1338
|
span: {
|
|
1252
1339
|
title: string;
|
|
1253
1340
|
type: string;
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1341
|
+
default: number;
|
|
1342
|
+
minimum: number;
|
|
1343
|
+
maximum: number;
|
|
1344
|
+
oneOf: {
|
|
1345
|
+
title: string;
|
|
1346
|
+
const: number;
|
|
1347
|
+
}[];
|
|
1257
1348
|
};
|
|
1258
1349
|
showAsModal: {
|
|
1259
1350
|
title: string;
|
|
@@ -1263,6 +1354,11 @@ declare namespace simple_1 {
|
|
|
1263
1354
|
title: string;
|
|
1264
1355
|
type: string;
|
|
1265
1356
|
};
|
|
1357
|
+
hidden: {
|
|
1358
|
+
type: string;
|
|
1359
|
+
title: string;
|
|
1360
|
+
tooltip: string;
|
|
1361
|
+
};
|
|
1266
1362
|
};
|
|
1267
1363
|
};
|
|
1268
1364
|
"ui:label": {
|
|
@@ -1271,7 +1367,7 @@ declare namespace simple_1 {
|
|
|
1271
1367
|
default: boolean;
|
|
1272
1368
|
};
|
|
1273
1369
|
};
|
|
1274
|
-
export {
|
|
1370
|
+
export { properties_16 as properties };
|
|
1275
1371
|
}
|
|
1276
1372
|
export { optionsUiSchema_9 as optionsUiSchema };
|
|
1277
1373
|
let optionsUiSchemaUiSchema_9: {
|
|
@@ -1284,8 +1380,15 @@ declare namespace simple_1 {
|
|
|
1284
1380
|
showAsModal: boolean;
|
|
1285
1381
|
modal: {
|
|
1286
1382
|
buttonInNewLine: boolean;
|
|
1383
|
+
modalWidth: number;
|
|
1287
1384
|
};
|
|
1288
1385
|
};
|
|
1386
|
+
buttonInNewLine: {
|
|
1387
|
+
"ui:widget": string;
|
|
1388
|
+
};
|
|
1389
|
+
modalWidth: {
|
|
1390
|
+
"ui:widget": string;
|
|
1391
|
+
};
|
|
1289
1392
|
};
|
|
1290
1393
|
showAsModal: {
|
|
1291
1394
|
"ui:widget": string;
|
|
@@ -1293,6 +1396,9 @@ declare namespace simple_1 {
|
|
|
1293
1396
|
collapsible: {
|
|
1294
1397
|
"ui:widget": string;
|
|
1295
1398
|
};
|
|
1399
|
+
hidden: {
|
|
1400
|
+
"ui:widget": string;
|
|
1401
|
+
};
|
|
1296
1402
|
"ui:order": string[];
|
|
1297
1403
|
"ui:padding": number;
|
|
1298
1404
|
"ui:label": boolean;
|
|
@@ -1332,7 +1438,7 @@ declare namespace simple_1 {
|
|
|
1332
1438
|
export { type_31 as type };
|
|
1333
1439
|
let title_35: string;
|
|
1334
1440
|
export { title_35 as title };
|
|
1335
|
-
export namespace
|
|
1441
|
+
export namespace properties_17 {
|
|
1336
1442
|
export namespace type_32 {
|
|
1337
1443
|
let title_36: string;
|
|
1338
1444
|
export { title_36 as title };
|
|
@@ -1350,7 +1456,7 @@ declare namespace simple_1 {
|
|
|
1350
1456
|
import isRequired_5 = isRequired;
|
|
1351
1457
|
export { isRequired_5 as isRequired };
|
|
1352
1458
|
}
|
|
1353
|
-
export {
|
|
1459
|
+
export { properties_17 as properties };
|
|
1354
1460
|
}
|
|
1355
1461
|
export { optionsSchema_11 as optionsSchema };
|
|
1356
1462
|
let optionsSchemaUiSchema_11: {
|
|
@@ -1377,8 +1483,15 @@ declare namespace simple_1 {
|
|
|
1377
1483
|
showAsModal: boolean;
|
|
1378
1484
|
modal: {
|
|
1379
1485
|
buttonInNewLine: boolean;
|
|
1486
|
+
modalWidth: number;
|
|
1380
1487
|
};
|
|
1381
1488
|
};
|
|
1489
|
+
buttonInNewLine: {
|
|
1490
|
+
"ui:widget": string;
|
|
1491
|
+
};
|
|
1492
|
+
modalWidth: {
|
|
1493
|
+
"ui:widget": string;
|
|
1494
|
+
};
|
|
1382
1495
|
};
|
|
1383
1496
|
showAsModal: {
|
|
1384
1497
|
"ui:widget": string;
|
|
@@ -1386,6 +1499,9 @@ declare namespace simple_1 {
|
|
|
1386
1499
|
collapsible: {
|
|
1387
1500
|
"ui:widget": string;
|
|
1388
1501
|
};
|
|
1502
|
+
hidden: {
|
|
1503
|
+
"ui:widget": string;
|
|
1504
|
+
};
|
|
1389
1505
|
"ui:order": string[];
|
|
1390
1506
|
"ui:padding": number;
|
|
1391
1507
|
"ui:label": boolean;
|
|
@@ -1423,7 +1539,7 @@ declare namespace simple_1 {
|
|
|
1423
1539
|
export { type_35 as type };
|
|
1424
1540
|
let title_38: string;
|
|
1425
1541
|
export { title_38 as title };
|
|
1426
|
-
export namespace
|
|
1542
|
+
export namespace properties_18 {
|
|
1427
1543
|
export namespace type_36 {
|
|
1428
1544
|
let title_39: string;
|
|
1429
1545
|
export { title_39 as title };
|
|
@@ -1441,7 +1557,7 @@ declare namespace simple_1 {
|
|
|
1441
1557
|
import isRequired_6 = isRequired;
|
|
1442
1558
|
export { isRequired_6 as isRequired };
|
|
1443
1559
|
}
|
|
1444
|
-
export {
|
|
1560
|
+
export { properties_18 as properties };
|
|
1445
1561
|
export namespace dependencies {
|
|
1446
1562
|
export namespace type_38 {
|
|
1447
1563
|
let oneOf_3: ({
|
|
@@ -1521,8 +1637,15 @@ declare namespace simple_1 {
|
|
|
1521
1637
|
showAsModal: boolean;
|
|
1522
1638
|
modal: {
|
|
1523
1639
|
buttonInNewLine: boolean;
|
|
1640
|
+
modalWidth: number;
|
|
1524
1641
|
};
|
|
1525
1642
|
};
|
|
1643
|
+
buttonInNewLine: {
|
|
1644
|
+
"ui:widget": string;
|
|
1645
|
+
};
|
|
1646
|
+
modalWidth: {
|
|
1647
|
+
"ui:widget": string;
|
|
1648
|
+
};
|
|
1526
1649
|
};
|
|
1527
1650
|
showAsModal: {
|
|
1528
1651
|
"ui:widget": string;
|
|
@@ -1530,6 +1653,9 @@ declare namespace simple_1 {
|
|
|
1530
1653
|
collapsible: {
|
|
1531
1654
|
"ui:widget": string;
|
|
1532
1655
|
};
|
|
1656
|
+
hidden: {
|
|
1657
|
+
"ui:widget": string;
|
|
1658
|
+
};
|
|
1533
1659
|
"ui:order": string[];
|
|
1534
1660
|
"ui:padding": number;
|
|
1535
1661
|
"ui:label": boolean;
|
|
@@ -1549,8 +1675,8 @@ declare namespace simple_1 {
|
|
|
1549
1675
|
export namespace items_3 {
|
|
1550
1676
|
let type_40: string;
|
|
1551
1677
|
export { type_40 as type };
|
|
1552
|
-
let
|
|
1553
|
-
export {
|
|
1678
|
+
let _enum_1: string[];
|
|
1679
|
+
export { _enum_1 as enum };
|
|
1554
1680
|
}
|
|
1555
1681
|
export { items_3 as items };
|
|
1556
1682
|
export let uniqueItems: boolean;
|
|
@@ -1577,7 +1703,7 @@ declare namespace simple_1 {
|
|
|
1577
1703
|
export { type_41 as type };
|
|
1578
1704
|
let title_41: string;
|
|
1579
1705
|
export { title_41 as title };
|
|
1580
|
-
export namespace
|
|
1706
|
+
export namespace properties_19 {
|
|
1581
1707
|
export namespace type_42 {
|
|
1582
1708
|
let type_43: string;
|
|
1583
1709
|
export { type_43 as type };
|
|
@@ -1597,7 +1723,7 @@ declare namespace simple_1 {
|
|
|
1597
1723
|
import isRequired_7 = isRequired;
|
|
1598
1724
|
export { isRequired_7 as isRequired };
|
|
1599
1725
|
}
|
|
1600
|
-
export {
|
|
1726
|
+
export { properties_19 as properties };
|
|
1601
1727
|
}
|
|
1602
1728
|
export { optionsSchema_13 as optionsSchema };
|
|
1603
1729
|
let optionsSchemaUiSchema_13: {
|
|
@@ -1617,7 +1743,7 @@ declare namespace simple_1 {
|
|
|
1617
1743
|
export { type_44 as type };
|
|
1618
1744
|
let title_43: string;
|
|
1619
1745
|
export { title_43 as title };
|
|
1620
|
-
let
|
|
1746
|
+
let properties_20: {
|
|
1621
1747
|
"ui:options": {
|
|
1622
1748
|
type: string;
|
|
1623
1749
|
title: string;
|
|
@@ -1646,6 +1772,14 @@ declare namespace simple_1 {
|
|
|
1646
1772
|
modalWidth: {
|
|
1647
1773
|
title: string;
|
|
1648
1774
|
type: string;
|
|
1775
|
+
tooltip: string;
|
|
1776
|
+
default: number;
|
|
1777
|
+
minimum: number;
|
|
1778
|
+
maximum: number;
|
|
1779
|
+
oneOf: {
|
|
1780
|
+
title: string;
|
|
1781
|
+
const: number;
|
|
1782
|
+
}[];
|
|
1649
1783
|
};
|
|
1650
1784
|
buttonInNewLine: {
|
|
1651
1785
|
title: string;
|
|
@@ -1667,9 +1801,13 @@ declare namespace simple_1 {
|
|
|
1667
1801
|
span: {
|
|
1668
1802
|
title: string;
|
|
1669
1803
|
type: string;
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1804
|
+
default: number;
|
|
1805
|
+
minimum: number;
|
|
1806
|
+
maximum: number;
|
|
1807
|
+
oneOf: {
|
|
1808
|
+
title: string;
|
|
1809
|
+
const: number;
|
|
1810
|
+
}[];
|
|
1673
1811
|
};
|
|
1674
1812
|
showAsModal: {
|
|
1675
1813
|
title: string;
|
|
@@ -1679,6 +1817,11 @@ declare namespace simple_1 {
|
|
|
1679
1817
|
title: string;
|
|
1680
1818
|
type: string;
|
|
1681
1819
|
};
|
|
1820
|
+
hidden: {
|
|
1821
|
+
type: string;
|
|
1822
|
+
title: string;
|
|
1823
|
+
tooltip: string;
|
|
1824
|
+
};
|
|
1682
1825
|
};
|
|
1683
1826
|
};
|
|
1684
1827
|
"ui:label": {
|
|
@@ -1687,7 +1830,7 @@ declare namespace simple_1 {
|
|
|
1687
1830
|
default: boolean;
|
|
1688
1831
|
};
|
|
1689
1832
|
};
|
|
1690
|
-
export {
|
|
1833
|
+
export { properties_20 as properties };
|
|
1691
1834
|
}
|
|
1692
1835
|
export { optionsUiSchema_12 as optionsUiSchema };
|
|
1693
1836
|
let optionsUiSchemaUiSchema_12: {
|
|
@@ -1700,8 +1843,15 @@ declare namespace simple_1 {
|
|
|
1700
1843
|
showAsModal: boolean;
|
|
1701
1844
|
modal: {
|
|
1702
1845
|
buttonInNewLine: boolean;
|
|
1846
|
+
modalWidth: number;
|
|
1703
1847
|
};
|
|
1704
1848
|
};
|
|
1849
|
+
buttonInNewLine: {
|
|
1850
|
+
"ui:widget": string;
|
|
1851
|
+
};
|
|
1852
|
+
modalWidth: {
|
|
1853
|
+
"ui:widget": string;
|
|
1854
|
+
};
|
|
1705
1855
|
};
|
|
1706
1856
|
showAsModal: {
|
|
1707
1857
|
"ui:widget": string;
|
|
@@ -1709,6 +1859,9 @@ declare namespace simple_1 {
|
|
|
1709
1859
|
collapsible: {
|
|
1710
1860
|
"ui:widget": string;
|
|
1711
1861
|
};
|
|
1862
|
+
hidden: {
|
|
1863
|
+
"ui:widget": string;
|
|
1864
|
+
};
|
|
1712
1865
|
"ui:order": string[];
|
|
1713
1866
|
"ui:padding": number;
|
|
1714
1867
|
"ui:label": boolean;
|
|
@@ -1749,8 +1902,8 @@ declare namespace simple_1 {
|
|
|
1749
1902
|
export { type_46 as type };
|
|
1750
1903
|
let title_45: string;
|
|
1751
1904
|
export { title_45 as title };
|
|
1752
|
-
export namespace
|
|
1753
|
-
export namespace
|
|
1905
|
+
export namespace properties_21 {
|
|
1906
|
+
export namespace _enum_2 {
|
|
1754
1907
|
let title_46: string;
|
|
1755
1908
|
export { title_46 as title };
|
|
1756
1909
|
let type_47: string;
|
|
@@ -1765,13 +1918,13 @@ declare namespace simple_1 {
|
|
|
1765
1918
|
}
|
|
1766
1919
|
export { items_4 as items };
|
|
1767
1920
|
}
|
|
1768
|
-
export {
|
|
1921
|
+
export { _enum_2 as enum };
|
|
1769
1922
|
import readOnly_8 = readOnly;
|
|
1770
1923
|
export { readOnly_8 as readOnly };
|
|
1771
1924
|
import isRequired_8 = isRequired;
|
|
1772
1925
|
export { isRequired_8 as isRequired };
|
|
1773
1926
|
}
|
|
1774
|
-
export {
|
|
1927
|
+
export { properties_21 as properties };
|
|
1775
1928
|
}
|
|
1776
1929
|
export { optionsSchema_14 as optionsSchema };
|
|
1777
1930
|
let optionsSchemaUiSchema_14: {
|
|
@@ -1798,8 +1951,15 @@ declare namespace simple_1 {
|
|
|
1798
1951
|
showAsModal: boolean;
|
|
1799
1952
|
modal: {
|
|
1800
1953
|
buttonInNewLine: boolean;
|
|
1954
|
+
modalWidth: number;
|
|
1801
1955
|
};
|
|
1802
1956
|
};
|
|
1957
|
+
buttonInNewLine: {
|
|
1958
|
+
"ui:widget": string;
|
|
1959
|
+
};
|
|
1960
|
+
modalWidth: {
|
|
1961
|
+
"ui:widget": string;
|
|
1962
|
+
};
|
|
1803
1963
|
};
|
|
1804
1964
|
showAsModal: {
|
|
1805
1965
|
"ui:widget": string;
|
|
@@ -1807,6 +1967,9 @@ declare namespace simple_1 {
|
|
|
1807
1967
|
collapsible: {
|
|
1808
1968
|
"ui:widget": string;
|
|
1809
1969
|
};
|
|
1970
|
+
hidden: {
|
|
1971
|
+
"ui:widget": string;
|
|
1972
|
+
};
|
|
1810
1973
|
"ui:order": string[];
|
|
1811
1974
|
"ui:padding": number;
|
|
1812
1975
|
"ui:label": boolean;
|
|
@@ -1823,8 +1986,8 @@ declare namespace simple_1 {
|
|
|
1823
1986
|
export namespace schema_12 {
|
|
1824
1987
|
let type_49: string;
|
|
1825
1988
|
export { type_49 as type };
|
|
1826
|
-
let
|
|
1827
|
-
export {
|
|
1989
|
+
let _enum_3: string[];
|
|
1990
|
+
export { _enum_3 as enum };
|
|
1828
1991
|
}
|
|
1829
1992
|
export { schema_12 as schema };
|
|
1830
1993
|
let uiSchema_12: {
|
|
@@ -1848,7 +2011,7 @@ declare namespace simple_1 {
|
|
|
1848
2011
|
export { type_50 as type };
|
|
1849
2012
|
let title_49: string;
|
|
1850
2013
|
export { title_49 as title };
|
|
1851
|
-
export namespace
|
|
2014
|
+
export namespace properties_22 {
|
|
1852
2015
|
export namespace type_51 {
|
|
1853
2016
|
let title_50: string;
|
|
1854
2017
|
export { title_50 as title };
|
|
@@ -1866,7 +2029,7 @@ declare namespace simple_1 {
|
|
|
1866
2029
|
import isRequired_9 = isRequired;
|
|
1867
2030
|
export { isRequired_9 as isRequired };
|
|
1868
2031
|
}
|
|
1869
|
-
export {
|
|
2032
|
+
export { properties_22 as properties };
|
|
1870
2033
|
export let allOf: ({
|
|
1871
2034
|
if: {
|
|
1872
2035
|
properties: {
|
|
@@ -1950,8 +2113,15 @@ declare namespace simple_1 {
|
|
|
1950
2113
|
showAsModal: boolean;
|
|
1951
2114
|
modal: {
|
|
1952
2115
|
buttonInNewLine: boolean;
|
|
2116
|
+
modalWidth: number;
|
|
1953
2117
|
};
|
|
1954
2118
|
};
|
|
2119
|
+
buttonInNewLine: {
|
|
2120
|
+
"ui:widget": string;
|
|
2121
|
+
};
|
|
2122
|
+
modalWidth: {
|
|
2123
|
+
"ui:widget": string;
|
|
2124
|
+
};
|
|
1955
2125
|
};
|
|
1956
2126
|
showAsModal: {
|
|
1957
2127
|
"ui:widget": string;
|
|
@@ -1959,6 +2129,9 @@ declare namespace simple_1 {
|
|
|
1959
2129
|
collapsible: {
|
|
1960
2130
|
"ui:widget": string;
|
|
1961
2131
|
};
|
|
2132
|
+
hidden: {
|
|
2133
|
+
"ui:widget": string;
|
|
2134
|
+
};
|
|
1962
2135
|
"ui:order": string[];
|
|
1963
2136
|
"ui:padding": number;
|
|
1964
2137
|
"ui:label": boolean;
|
|
@@ -2000,18 +2173,18 @@ declare namespace simple_1 {
|
|
|
2000
2173
|
export { type_54 as type };
|
|
2001
2174
|
let title_52: string;
|
|
2002
2175
|
export { title_52 as title };
|
|
2003
|
-
export namespace
|
|
2004
|
-
export namespace
|
|
2176
|
+
export namespace properties_23 {
|
|
2177
|
+
export namespace format_2 {
|
|
2005
2178
|
let type_55: string;
|
|
2006
2179
|
export { type_55 as type };
|
|
2007
2180
|
let title_53: string;
|
|
2008
2181
|
export { title_53 as title };
|
|
2009
|
-
let
|
|
2010
|
-
export {
|
|
2182
|
+
let _enum_4: string[];
|
|
2183
|
+
export { _enum_4 as enum };
|
|
2011
2184
|
let _default_14: string;
|
|
2012
2185
|
export { _default_14 as default };
|
|
2013
2186
|
}
|
|
2014
|
-
export {
|
|
2187
|
+
export { format_2 as format };
|
|
2015
2188
|
export namespace customFormat {
|
|
2016
2189
|
let type_56: string;
|
|
2017
2190
|
export { type_56 as type };
|
|
@@ -2038,7 +2211,7 @@ declare namespace simple_1 {
|
|
|
2038
2211
|
import isRequired_10 = isRequired;
|
|
2039
2212
|
export { isRequired_10 as isRequired };
|
|
2040
2213
|
}
|
|
2041
|
-
export {
|
|
2214
|
+
export { properties_23 as properties };
|
|
2042
2215
|
}
|
|
2043
2216
|
export { optionsSchema_16 as optionsSchema };
|
|
2044
2217
|
let optionsSchemaUiSchema_16: {
|
|
@@ -2078,8 +2251,15 @@ declare namespace simple_1 {
|
|
|
2078
2251
|
showAsModal: boolean;
|
|
2079
2252
|
modal: {
|
|
2080
2253
|
buttonInNewLine: boolean;
|
|
2254
|
+
modalWidth: number;
|
|
2081
2255
|
};
|
|
2082
2256
|
};
|
|
2257
|
+
buttonInNewLine: {
|
|
2258
|
+
"ui:widget": string;
|
|
2259
|
+
};
|
|
2260
|
+
modalWidth: {
|
|
2261
|
+
"ui:widget": string;
|
|
2262
|
+
};
|
|
2083
2263
|
};
|
|
2084
2264
|
showAsModal: {
|
|
2085
2265
|
"ui:widget": string;
|
|
@@ -2087,6 +2267,9 @@ declare namespace simple_1 {
|
|
|
2087
2267
|
collapsible: {
|
|
2088
2268
|
"ui:widget": string;
|
|
2089
2269
|
};
|
|
2270
|
+
hidden: {
|
|
2271
|
+
"ui:widget": string;
|
|
2272
|
+
};
|
|
2090
2273
|
"ui:order": string[];
|
|
2091
2274
|
"ui:padding": number;
|
|
2092
2275
|
"ui:label": boolean;
|
|
@@ -2112,15 +2295,15 @@ declare namespace simple_1 {
|
|
|
2112
2295
|
}
|
|
2113
2296
|
export { _default_15 as default };
|
|
2114
2297
|
}
|
|
2115
|
-
|
|
2116
|
-
declare namespace advanced_1 {
|
|
2117
|
-
namespace uri {
|
|
2298
|
+
export namespace email {
|
|
2118
2299
|
let title_57: string;
|
|
2119
2300
|
export { title_57 as title };
|
|
2120
2301
|
let icon_15: import("react/jsx-runtime").JSX.Element;
|
|
2121
2302
|
export { icon_15 as icon };
|
|
2122
2303
|
let description_25: string;
|
|
2123
2304
|
export { description_25 as description };
|
|
2305
|
+
let className_4: string;
|
|
2306
|
+
export { className_4 as className };
|
|
2124
2307
|
let child_15: {};
|
|
2125
2308
|
export { child_15 as child };
|
|
2126
2309
|
export namespace optionsSchema_17 {
|
|
@@ -2128,13 +2311,24 @@ declare namespace advanced_1 {
|
|
|
2128
2311
|
export { type_60 as type };
|
|
2129
2312
|
let title_58: string;
|
|
2130
2313
|
export { title_58 as title };
|
|
2131
|
-
export namespace
|
|
2314
|
+
export namespace properties_24 {
|
|
2315
|
+
export namespace pattern_1 {
|
|
2316
|
+
let title_59: string;
|
|
2317
|
+
export { title_59 as title };
|
|
2318
|
+
let description_26: string;
|
|
2319
|
+
export { description_26 as description };
|
|
2320
|
+
let type_61: string;
|
|
2321
|
+
export { type_61 as type };
|
|
2322
|
+
let format_3: string;
|
|
2323
|
+
export { format_3 as format };
|
|
2324
|
+
}
|
|
2325
|
+
export { pattern_1 as pattern };
|
|
2132
2326
|
import readOnly_11 = readOnly;
|
|
2133
2327
|
export { readOnly_11 as readOnly };
|
|
2134
2328
|
import isRequired_11 = isRequired;
|
|
2135
2329
|
export { isRequired_11 as isRequired };
|
|
2136
2330
|
}
|
|
2137
|
-
export {
|
|
2331
|
+
export { properties_24 as properties };
|
|
2138
2332
|
}
|
|
2139
2333
|
export { optionsSchema_17 as optionsSchema };
|
|
2140
2334
|
let optionsSchemaUiSchema_17: {
|
|
@@ -2144,17 +2338,20 @@ declare namespace advanced_1 {
|
|
|
2144
2338
|
isRequired: {
|
|
2145
2339
|
"ui:widget": string;
|
|
2146
2340
|
};
|
|
2341
|
+
pattern: {
|
|
2342
|
+
"ui:placeholder": string;
|
|
2343
|
+
};
|
|
2147
2344
|
"ui:ObjectFieldTemplate": ({ properties }: {
|
|
2148
2345
|
properties: any;
|
|
2149
2346
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2150
2347
|
};
|
|
2151
2348
|
export { optionsSchemaUiSchema_17 as optionsSchemaUiSchema };
|
|
2152
2349
|
export namespace optionsUiSchema_16 {
|
|
2153
|
-
let
|
|
2154
|
-
export {
|
|
2155
|
-
let
|
|
2156
|
-
export {
|
|
2157
|
-
let
|
|
2350
|
+
let type_62: string;
|
|
2351
|
+
export { type_62 as type };
|
|
2352
|
+
let title_60: string;
|
|
2353
|
+
export { title_60 as title };
|
|
2354
|
+
let properties_25: {
|
|
2158
2355
|
"ui:options": {
|
|
2159
2356
|
type: string;
|
|
2160
2357
|
title: string;
|
|
@@ -2183,6 +2380,14 @@ declare namespace advanced_1 {
|
|
|
2183
2380
|
modalWidth: {
|
|
2184
2381
|
title: string;
|
|
2185
2382
|
type: string;
|
|
2383
|
+
tooltip: string;
|
|
2384
|
+
default: number;
|
|
2385
|
+
minimum: number;
|
|
2386
|
+
maximum: number;
|
|
2387
|
+
oneOf: {
|
|
2388
|
+
title: string;
|
|
2389
|
+
const: number;
|
|
2390
|
+
}[];
|
|
2186
2391
|
};
|
|
2187
2392
|
buttonInNewLine: {
|
|
2188
2393
|
title: string;
|
|
@@ -2201,12 +2406,25 @@ declare namespace advanced_1 {
|
|
|
2201
2406
|
title: string;
|
|
2202
2407
|
description: string;
|
|
2203
2408
|
};
|
|
2409
|
+
convertToUppercase: {
|
|
2410
|
+
type: string;
|
|
2411
|
+
title: string;
|
|
2412
|
+
};
|
|
2413
|
+
mask: {
|
|
2414
|
+
type: string;
|
|
2415
|
+
title: string;
|
|
2416
|
+
tooltip: string;
|
|
2417
|
+
};
|
|
2204
2418
|
span: {
|
|
2205
2419
|
title: string;
|
|
2206
2420
|
type: string;
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2421
|
+
default: number;
|
|
2422
|
+
minimum: number;
|
|
2423
|
+
maximum: number;
|
|
2424
|
+
oneOf: {
|
|
2425
|
+
title: string;
|
|
2426
|
+
const: number;
|
|
2427
|
+
}[];
|
|
2210
2428
|
};
|
|
2211
2429
|
showAsModal: {
|
|
2212
2430
|
title: string;
|
|
@@ -2216,6 +2434,11 @@ declare namespace advanced_1 {
|
|
|
2216
2434
|
title: string;
|
|
2217
2435
|
type: string;
|
|
2218
2436
|
};
|
|
2437
|
+
hidden: {
|
|
2438
|
+
type: string;
|
|
2439
|
+
title: string;
|
|
2440
|
+
tooltip: string;
|
|
2441
|
+
};
|
|
2219
2442
|
};
|
|
2220
2443
|
};
|
|
2221
2444
|
"ui:label": {
|
|
@@ -2224,11 +2447,21 @@ declare namespace advanced_1 {
|
|
|
2224
2447
|
default: boolean;
|
|
2225
2448
|
};
|
|
2226
2449
|
};
|
|
2227
|
-
export {
|
|
2450
|
+
export { properties_25 as properties };
|
|
2228
2451
|
}
|
|
2229
2452
|
export { optionsUiSchema_16 as optionsUiSchema };
|
|
2230
2453
|
let optionsUiSchemaUiSchema_16: {
|
|
2231
2454
|
"ui:options": {
|
|
2455
|
+
mask: {
|
|
2456
|
+
"ui:placeholder": string;
|
|
2457
|
+
"ui:options": {
|
|
2458
|
+
descriptionIsMarkdown: boolean;
|
|
2459
|
+
tooltipIsMarkdown: boolean;
|
|
2460
|
+
};
|
|
2461
|
+
};
|
|
2462
|
+
convertToUppercase: {
|
|
2463
|
+
"ui:widget": string;
|
|
2464
|
+
};
|
|
2232
2465
|
span: {
|
|
2233
2466
|
"ui:widget": string;
|
|
2234
2467
|
};
|
|
@@ -2237,8 +2470,15 @@ declare namespace advanced_1 {
|
|
|
2237
2470
|
showAsModal: boolean;
|
|
2238
2471
|
modal: {
|
|
2239
2472
|
buttonInNewLine: boolean;
|
|
2473
|
+
modalWidth: number;
|
|
2240
2474
|
};
|
|
2241
2475
|
};
|
|
2476
|
+
buttonInNewLine: {
|
|
2477
|
+
"ui:widget": string;
|
|
2478
|
+
};
|
|
2479
|
+
modalWidth: {
|
|
2480
|
+
"ui:widget": string;
|
|
2481
|
+
};
|
|
2242
2482
|
};
|
|
2243
2483
|
showAsModal: {
|
|
2244
2484
|
"ui:widget": string;
|
|
@@ -2246,6 +2486,9 @@ declare namespace advanced_1 {
|
|
|
2246
2486
|
collapsible: {
|
|
2247
2487
|
"ui:widget": string;
|
|
2248
2488
|
};
|
|
2489
|
+
hidden: {
|
|
2490
|
+
"ui:widget": string;
|
|
2491
|
+
};
|
|
2249
2492
|
"ui:order": string[];
|
|
2250
2493
|
"ui:padding": number;
|
|
2251
2494
|
"ui:label": boolean;
|
|
@@ -2260,10 +2503,10 @@ declare namespace advanced_1 {
|
|
|
2260
2503
|
export { optionsUiSchemaUiSchema_16 as optionsUiSchemaUiSchema };
|
|
2261
2504
|
namespace _default_16 {
|
|
2262
2505
|
export namespace schema_15 {
|
|
2263
|
-
let
|
|
2264
|
-
export {
|
|
2265
|
-
let
|
|
2266
|
-
export {
|
|
2506
|
+
let type_63: string;
|
|
2507
|
+
export { type_63 as type };
|
|
2508
|
+
let format_4: string;
|
|
2509
|
+
export { format_4 as format };
|
|
2267
2510
|
}
|
|
2268
2511
|
export { schema_15 as schema };
|
|
2269
2512
|
let uiSchema_15: {
|
|
@@ -2273,27 +2516,29 @@ declare namespace advanced_1 {
|
|
|
2273
2516
|
}
|
|
2274
2517
|
export { _default_16 as default };
|
|
2275
2518
|
}
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
|
|
2519
|
+
}
|
|
2520
|
+
declare namespace advanced_1 {
|
|
2521
|
+
namespace uri {
|
|
2522
|
+
let title_61: string;
|
|
2523
|
+
export { title_61 as title };
|
|
2279
2524
|
let icon_16: import("react/jsx-runtime").JSX.Element;
|
|
2280
2525
|
export { icon_16 as icon };
|
|
2281
|
-
let
|
|
2282
|
-
export {
|
|
2526
|
+
let description_27: string;
|
|
2527
|
+
export { description_27 as description };
|
|
2283
2528
|
let child_16: {};
|
|
2284
2529
|
export { child_16 as child };
|
|
2285
2530
|
export namespace optionsSchema_18 {
|
|
2286
|
-
let
|
|
2287
|
-
export {
|
|
2288
|
-
let
|
|
2289
|
-
export {
|
|
2290
|
-
export namespace
|
|
2531
|
+
let type_64: string;
|
|
2532
|
+
export { type_64 as type };
|
|
2533
|
+
let title_62: string;
|
|
2534
|
+
export { title_62 as title };
|
|
2535
|
+
export namespace properties_26 {
|
|
2291
2536
|
import readOnly_12 = readOnly;
|
|
2292
2537
|
export { readOnly_12 as readOnly };
|
|
2293
2538
|
import isRequired_12 = isRequired;
|
|
2294
2539
|
export { isRequired_12 as isRequired };
|
|
2295
2540
|
}
|
|
2296
|
-
export {
|
|
2541
|
+
export { properties_26 as properties };
|
|
2297
2542
|
}
|
|
2298
2543
|
export { optionsSchema_18 as optionsSchema };
|
|
2299
2544
|
let optionsSchemaUiSchema_18: {
|
|
@@ -2308,7 +2553,100 @@ declare namespace advanced_1 {
|
|
|
2308
2553
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2309
2554
|
};
|
|
2310
2555
|
export { optionsSchemaUiSchema_18 as optionsSchemaUiSchema };
|
|
2311
|
-
export namespace optionsUiSchema_17 {
|
|
2556
|
+
export namespace optionsUiSchema_17 {
|
|
2557
|
+
let type_65: string;
|
|
2558
|
+
export { type_65 as type };
|
|
2559
|
+
let title_63: string;
|
|
2560
|
+
export { title_63 as title };
|
|
2561
|
+
let properties_27: {
|
|
2562
|
+
"ui:options": {
|
|
2563
|
+
type: string;
|
|
2564
|
+
title: string;
|
|
2565
|
+
dependencies: {
|
|
2566
|
+
showAsModal: {
|
|
2567
|
+
oneOf: ({
|
|
2568
|
+
properties: {
|
|
2569
|
+
showAsModal: {
|
|
2570
|
+
enum: boolean[];
|
|
2571
|
+
};
|
|
2572
|
+
modal?: undefined;
|
|
2573
|
+
};
|
|
2574
|
+
} | {
|
|
2575
|
+
properties: {
|
|
2576
|
+
showAsModal: {
|
|
2577
|
+
enum: boolean[];
|
|
2578
|
+
};
|
|
2579
|
+
modal: {
|
|
2580
|
+
title: string;
|
|
2581
|
+
type: string;
|
|
2582
|
+
properties: {
|
|
2583
|
+
buttonText: {
|
|
2584
|
+
title: string;
|
|
2585
|
+
type: string;
|
|
2586
|
+
};
|
|
2587
|
+
modalWidth: {
|
|
2588
|
+
title: string;
|
|
2589
|
+
type: string;
|
|
2590
|
+
tooltip: string;
|
|
2591
|
+
default: number;
|
|
2592
|
+
minimum: number;
|
|
2593
|
+
maximum: number;
|
|
2594
|
+
oneOf: {
|
|
2595
|
+
title: string;
|
|
2596
|
+
const: number;
|
|
2597
|
+
}[];
|
|
2598
|
+
};
|
|
2599
|
+
buttonInNewLine: {
|
|
2600
|
+
title: string;
|
|
2601
|
+
type: string;
|
|
2602
|
+
};
|
|
2603
|
+
};
|
|
2604
|
+
};
|
|
2605
|
+
};
|
|
2606
|
+
})[];
|
|
2607
|
+
required: string[];
|
|
2608
|
+
};
|
|
2609
|
+
};
|
|
2610
|
+
properties: {
|
|
2611
|
+
suggestions: {
|
|
2612
|
+
type: string;
|
|
2613
|
+
title: string;
|
|
2614
|
+
description: string;
|
|
2615
|
+
};
|
|
2616
|
+
span: {
|
|
2617
|
+
title: string;
|
|
2618
|
+
type: string;
|
|
2619
|
+
default: number;
|
|
2620
|
+
minimum: number;
|
|
2621
|
+
maximum: number;
|
|
2622
|
+
oneOf: {
|
|
2623
|
+
title: string;
|
|
2624
|
+
const: number;
|
|
2625
|
+
}[];
|
|
2626
|
+
};
|
|
2627
|
+
showAsModal: {
|
|
2628
|
+
title: string;
|
|
2629
|
+
type: string;
|
|
2630
|
+
};
|
|
2631
|
+
collapsible: {
|
|
2632
|
+
title: string;
|
|
2633
|
+
type: string;
|
|
2634
|
+
};
|
|
2635
|
+
hidden: {
|
|
2636
|
+
type: string;
|
|
2637
|
+
title: string;
|
|
2638
|
+
tooltip: string;
|
|
2639
|
+
};
|
|
2640
|
+
};
|
|
2641
|
+
};
|
|
2642
|
+
"ui:label": {
|
|
2643
|
+
title: string;
|
|
2644
|
+
type: string;
|
|
2645
|
+
default: boolean;
|
|
2646
|
+
};
|
|
2647
|
+
};
|
|
2648
|
+
export { properties_27 as properties };
|
|
2649
|
+
}
|
|
2312
2650
|
export { optionsUiSchema_17 as optionsUiSchema };
|
|
2313
2651
|
let optionsUiSchemaUiSchema_17: {
|
|
2314
2652
|
"ui:options": {
|
|
@@ -2320,8 +2658,15 @@ declare namespace advanced_1 {
|
|
|
2320
2658
|
showAsModal: boolean;
|
|
2321
2659
|
modal: {
|
|
2322
2660
|
buttonInNewLine: boolean;
|
|
2661
|
+
modalWidth: number;
|
|
2323
2662
|
};
|
|
2324
2663
|
};
|
|
2664
|
+
buttonInNewLine: {
|
|
2665
|
+
"ui:widget": string;
|
|
2666
|
+
};
|
|
2667
|
+
modalWidth: {
|
|
2668
|
+
"ui:widget": string;
|
|
2669
|
+
};
|
|
2325
2670
|
};
|
|
2326
2671
|
showAsModal: {
|
|
2327
2672
|
"ui:widget": string;
|
|
@@ -2329,6 +2674,9 @@ declare namespace advanced_1 {
|
|
|
2329
2674
|
collapsible: {
|
|
2330
2675
|
"ui:widget": string;
|
|
2331
2676
|
};
|
|
2677
|
+
hidden: {
|
|
2678
|
+
"ui:widget": string;
|
|
2679
|
+
};
|
|
2332
2680
|
"ui:order": string[];
|
|
2333
2681
|
"ui:padding": number;
|
|
2334
2682
|
"ui:label": boolean;
|
|
@@ -2343,8 +2691,10 @@ declare namespace advanced_1 {
|
|
|
2343
2691
|
export { optionsUiSchemaUiSchema_17 as optionsUiSchemaUiSchema };
|
|
2344
2692
|
namespace _default_17 {
|
|
2345
2693
|
export namespace schema_16 {
|
|
2346
|
-
let
|
|
2347
|
-
export {
|
|
2694
|
+
let type_66: string;
|
|
2695
|
+
export { type_66 as type };
|
|
2696
|
+
let format_5: string;
|
|
2697
|
+
export { format_5 as format };
|
|
2348
2698
|
}
|
|
2349
2699
|
export { schema_16 as schema };
|
|
2350
2700
|
let uiSchema_16: {
|
|
@@ -2354,37 +2704,21 @@ declare namespace advanced_1 {
|
|
|
2354
2704
|
}
|
|
2355
2705
|
export { _default_17 as default };
|
|
2356
2706
|
}
|
|
2357
|
-
namespace
|
|
2358
|
-
let
|
|
2359
|
-
export {
|
|
2707
|
+
namespace richeditor {
|
|
2708
|
+
let title_64: string;
|
|
2709
|
+
export { title_64 as title };
|
|
2360
2710
|
let icon_17: import("react/jsx-runtime").JSX.Element;
|
|
2361
2711
|
export { icon_17 as icon };
|
|
2362
|
-
let
|
|
2363
|
-
export {
|
|
2712
|
+
let description_28: string;
|
|
2713
|
+
export { description_28 as description };
|
|
2364
2714
|
let child_17: {};
|
|
2365
2715
|
export { child_17 as child };
|
|
2366
2716
|
export namespace optionsSchema_19 {
|
|
2367
|
-
let
|
|
2368
|
-
export {
|
|
2369
|
-
let
|
|
2370
|
-
export {
|
|
2717
|
+
let type_67: string;
|
|
2718
|
+
export { type_67 as type };
|
|
2719
|
+
let title_65: string;
|
|
2720
|
+
export { title_65 as title };
|
|
2371
2721
|
export namespace properties_28 {
|
|
2372
|
-
export namespace tagPattern {
|
|
2373
|
-
let type_66: string;
|
|
2374
|
-
export { type_66 as type };
|
|
2375
|
-
let title_64: string;
|
|
2376
|
-
export { title_64 as title };
|
|
2377
|
-
let description_28: string;
|
|
2378
|
-
export { description_28 as description };
|
|
2379
|
-
}
|
|
2380
|
-
export namespace tagPatternErrorMessage {
|
|
2381
|
-
let type_67: string;
|
|
2382
|
-
export { type_67 as type };
|
|
2383
|
-
let title_65: string;
|
|
2384
|
-
export { title_65 as title };
|
|
2385
|
-
let description_29: string;
|
|
2386
|
-
export { description_29 as description };
|
|
2387
|
-
}
|
|
2388
2722
|
import readOnly_13 = readOnly;
|
|
2389
2723
|
export { readOnly_13 as readOnly };
|
|
2390
2724
|
import isRequired_13 = isRequired;
|
|
@@ -2405,10 +2739,111 @@ declare namespace advanced_1 {
|
|
|
2405
2739
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2406
2740
|
};
|
|
2407
2741
|
export { optionsSchemaUiSchema_19 as optionsSchemaUiSchema };
|
|
2408
|
-
export namespace optionsUiSchema_18 {
|
|
2742
|
+
export namespace optionsUiSchema_18 {
|
|
2743
|
+
let type_68: string;
|
|
2744
|
+
export { type_68 as type };
|
|
2745
|
+
let title_66: string;
|
|
2746
|
+
export { title_66 as title };
|
|
2747
|
+
let properties_29: {
|
|
2748
|
+
"ui:options": {
|
|
2749
|
+
type: string;
|
|
2750
|
+
title: string;
|
|
2751
|
+
dependencies: {
|
|
2752
|
+
showAsModal: {
|
|
2753
|
+
oneOf: ({
|
|
2754
|
+
properties: {
|
|
2755
|
+
showAsModal: {
|
|
2756
|
+
enum: boolean[];
|
|
2757
|
+
};
|
|
2758
|
+
modal?: undefined;
|
|
2759
|
+
};
|
|
2760
|
+
} | {
|
|
2761
|
+
properties: {
|
|
2762
|
+
showAsModal: {
|
|
2763
|
+
enum: boolean[];
|
|
2764
|
+
};
|
|
2765
|
+
modal: {
|
|
2766
|
+
title: string;
|
|
2767
|
+
type: string;
|
|
2768
|
+
properties: {
|
|
2769
|
+
buttonText: {
|
|
2770
|
+
title: string;
|
|
2771
|
+
type: string;
|
|
2772
|
+
};
|
|
2773
|
+
modalWidth: {
|
|
2774
|
+
title: string;
|
|
2775
|
+
type: string;
|
|
2776
|
+
tooltip: string;
|
|
2777
|
+
default: number;
|
|
2778
|
+
minimum: number;
|
|
2779
|
+
maximum: number;
|
|
2780
|
+
oneOf: {
|
|
2781
|
+
title: string;
|
|
2782
|
+
const: number;
|
|
2783
|
+
}[];
|
|
2784
|
+
};
|
|
2785
|
+
buttonInNewLine: {
|
|
2786
|
+
title: string;
|
|
2787
|
+
type: string;
|
|
2788
|
+
};
|
|
2789
|
+
};
|
|
2790
|
+
};
|
|
2791
|
+
};
|
|
2792
|
+
})[];
|
|
2793
|
+
required: string[];
|
|
2794
|
+
};
|
|
2795
|
+
};
|
|
2796
|
+
properties: {
|
|
2797
|
+
height: {
|
|
2798
|
+
title: string;
|
|
2799
|
+
type: string;
|
|
2800
|
+
minimum: number;
|
|
2801
|
+
maximum: number;
|
|
2802
|
+
step: number;
|
|
2803
|
+
};
|
|
2804
|
+
span: {
|
|
2805
|
+
title: string;
|
|
2806
|
+
type: string;
|
|
2807
|
+
default: number;
|
|
2808
|
+
minimum: number;
|
|
2809
|
+
maximum: number;
|
|
2810
|
+
oneOf: {
|
|
2811
|
+
title: string;
|
|
2812
|
+
const: number;
|
|
2813
|
+
}[];
|
|
2814
|
+
};
|
|
2815
|
+
showAsModal: {
|
|
2816
|
+
title: string;
|
|
2817
|
+
type: string;
|
|
2818
|
+
};
|
|
2819
|
+
collapsible: {
|
|
2820
|
+
title: string;
|
|
2821
|
+
type: string;
|
|
2822
|
+
};
|
|
2823
|
+
hidden: {
|
|
2824
|
+
type: string;
|
|
2825
|
+
title: string;
|
|
2826
|
+
tooltip: string;
|
|
2827
|
+
};
|
|
2828
|
+
};
|
|
2829
|
+
};
|
|
2830
|
+
"ui:label": {
|
|
2831
|
+
title: string;
|
|
2832
|
+
type: string;
|
|
2833
|
+
default: boolean;
|
|
2834
|
+
};
|
|
2835
|
+
};
|
|
2836
|
+
export { properties_29 as properties };
|
|
2837
|
+
}
|
|
2409
2838
|
export { optionsUiSchema_18 as optionsUiSchema };
|
|
2410
2839
|
let optionsUiSchemaUiSchema_18: {
|
|
2411
2840
|
"ui:options": {
|
|
2841
|
+
height: {
|
|
2842
|
+
"ui:widget": string;
|
|
2843
|
+
"ui:options": {
|
|
2844
|
+
suffix: string;
|
|
2845
|
+
};
|
|
2846
|
+
};
|
|
2412
2847
|
span: {
|
|
2413
2848
|
"ui:widget": string;
|
|
2414
2849
|
};
|
|
@@ -2417,8 +2852,15 @@ declare namespace advanced_1 {
|
|
|
2417
2852
|
showAsModal: boolean;
|
|
2418
2853
|
modal: {
|
|
2419
2854
|
buttonInNewLine: boolean;
|
|
2855
|
+
modalWidth: number;
|
|
2420
2856
|
};
|
|
2421
2857
|
};
|
|
2858
|
+
buttonInNewLine: {
|
|
2859
|
+
"ui:widget": string;
|
|
2860
|
+
};
|
|
2861
|
+
modalWidth: {
|
|
2862
|
+
"ui:widget": string;
|
|
2863
|
+
};
|
|
2422
2864
|
};
|
|
2423
2865
|
showAsModal: {
|
|
2424
2866
|
"ui:widget": string;
|
|
@@ -2426,6 +2868,9 @@ declare namespace advanced_1 {
|
|
|
2426
2868
|
collapsible: {
|
|
2427
2869
|
"ui:widget": string;
|
|
2428
2870
|
};
|
|
2871
|
+
hidden: {
|
|
2872
|
+
"ui:widget": string;
|
|
2873
|
+
};
|
|
2429
2874
|
"ui:order": string[];
|
|
2430
2875
|
"ui:padding": number;
|
|
2431
2876
|
"ui:label": boolean;
|
|
@@ -2433,50 +2878,61 @@ declare namespace advanced_1 {
|
|
|
2433
2878
|
"ui:label": {
|
|
2434
2879
|
"ui:widget": string;
|
|
2435
2880
|
};
|
|
2436
|
-
"ui:ObjectFieldTemplate": ({ properties }: {
|
|
2437
|
-
properties: any;
|
|
2438
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
2439
2881
|
};
|
|
2440
2882
|
export { optionsUiSchemaUiSchema_18 as optionsUiSchemaUiSchema };
|
|
2441
2883
|
namespace _default_18 {
|
|
2442
2884
|
export namespace schema_17 {
|
|
2443
|
-
let
|
|
2444
|
-
export {
|
|
2445
|
-
export namespace items_5 {
|
|
2446
|
-
let type_69: string;
|
|
2447
|
-
export { type_69 as type };
|
|
2448
|
-
}
|
|
2449
|
-
export { items_5 as items };
|
|
2885
|
+
let type_69: string;
|
|
2886
|
+
export { type_69 as type };
|
|
2450
2887
|
}
|
|
2451
2888
|
export { schema_17 as schema };
|
|
2452
2889
|
let uiSchema_17: {
|
|
2453
|
-
"ui:
|
|
2890
|
+
"ui:widget": string;
|
|
2891
|
+
"ui:options": {
|
|
2892
|
+
height: number;
|
|
2893
|
+
};
|
|
2454
2894
|
};
|
|
2455
2895
|
export { uiSchema_17 as uiSchema };
|
|
2456
2896
|
}
|
|
2457
2897
|
export { _default_18 as default };
|
|
2458
2898
|
}
|
|
2459
|
-
namespace
|
|
2460
|
-
let
|
|
2461
|
-
export {
|
|
2899
|
+
namespace tags {
|
|
2900
|
+
let title_67: string;
|
|
2901
|
+
export { title_67 as title };
|
|
2462
2902
|
let icon_18: import("react/jsx-runtime").JSX.Element;
|
|
2463
2903
|
export { icon_18 as icon };
|
|
2464
|
-
let
|
|
2465
|
-
export {
|
|
2904
|
+
let description_29: string;
|
|
2905
|
+
export { description_29 as description };
|
|
2466
2906
|
let child_18: {};
|
|
2467
2907
|
export { child_18 as child };
|
|
2468
2908
|
export namespace optionsSchema_20 {
|
|
2909
|
+
let title_68: string;
|
|
2910
|
+
export { title_68 as title };
|
|
2469
2911
|
let type_70: string;
|
|
2470
2912
|
export { type_70 as type };
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2913
|
+
export namespace properties_30 {
|
|
2914
|
+
export namespace tagPattern {
|
|
2915
|
+
let type_71: string;
|
|
2916
|
+
export { type_71 as type };
|
|
2917
|
+
let title_69: string;
|
|
2918
|
+
export { title_69 as title };
|
|
2919
|
+
let description_30: string;
|
|
2920
|
+
export { description_30 as description };
|
|
2921
|
+
}
|
|
2922
|
+
export namespace tagPatternErrorMessage {
|
|
2923
|
+
let type_72: string;
|
|
2924
|
+
export { type_72 as type };
|
|
2925
|
+
let title_70: string;
|
|
2926
|
+
export { title_70 as title };
|
|
2927
|
+
let description_31: string;
|
|
2928
|
+
export { description_31 as description };
|
|
2929
|
+
}
|
|
2474
2930
|
import readOnly_14 = readOnly;
|
|
2475
2931
|
export { readOnly_14 as readOnly };
|
|
2476
2932
|
import isRequired_14 = isRequired;
|
|
2477
2933
|
export { isRequired_14 as isRequired };
|
|
2478
2934
|
}
|
|
2479
|
-
export {
|
|
2935
|
+
export { properties_30 as properties };
|
|
2480
2936
|
}
|
|
2481
2937
|
export { optionsSchema_20 as optionsSchema };
|
|
2482
2938
|
let optionsSchemaUiSchema_20: {
|
|
@@ -2491,12 +2947,108 @@ declare namespace advanced_1 {
|
|
|
2491
2947
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2492
2948
|
};
|
|
2493
2949
|
export { optionsSchemaUiSchema_20 as optionsSchemaUiSchema };
|
|
2494
|
-
export namespace optionsUiSchema_19 {
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2950
|
+
export namespace optionsUiSchema_19 { }
|
|
2951
|
+
export { optionsUiSchema_19 as optionsUiSchema };
|
|
2952
|
+
let optionsUiSchemaUiSchema_19: {
|
|
2953
|
+
"ui:options": {
|
|
2954
|
+
span: {
|
|
2955
|
+
"ui:widget": string;
|
|
2956
|
+
};
|
|
2957
|
+
modal: {
|
|
2958
|
+
"ui:options": {
|
|
2959
|
+
showAsModal: boolean;
|
|
2960
|
+
modal: {
|
|
2961
|
+
buttonInNewLine: boolean;
|
|
2962
|
+
modalWidth: number;
|
|
2963
|
+
};
|
|
2964
|
+
};
|
|
2965
|
+
buttonInNewLine: {
|
|
2966
|
+
"ui:widget": string;
|
|
2967
|
+
};
|
|
2968
|
+
modalWidth: {
|
|
2969
|
+
"ui:widget": string;
|
|
2970
|
+
};
|
|
2971
|
+
};
|
|
2972
|
+
showAsModal: {
|
|
2973
|
+
"ui:widget": string;
|
|
2974
|
+
};
|
|
2975
|
+
collapsible: {
|
|
2976
|
+
"ui:widget": string;
|
|
2977
|
+
};
|
|
2978
|
+
hidden: {
|
|
2979
|
+
"ui:widget": string;
|
|
2980
|
+
};
|
|
2981
|
+
"ui:order": string[];
|
|
2982
|
+
"ui:padding": number;
|
|
2983
|
+
"ui:label": boolean;
|
|
2984
|
+
};
|
|
2985
|
+
"ui:label": {
|
|
2986
|
+
"ui:widget": string;
|
|
2987
|
+
};
|
|
2988
|
+
"ui:ObjectFieldTemplate": ({ properties }: {
|
|
2989
|
+
properties: any;
|
|
2990
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
2991
|
+
};
|
|
2992
|
+
export { optionsUiSchemaUiSchema_19 as optionsUiSchemaUiSchema };
|
|
2993
|
+
namespace _default_19 {
|
|
2994
|
+
export namespace schema_18 {
|
|
2995
|
+
let type_73: string;
|
|
2996
|
+
export { type_73 as type };
|
|
2997
|
+
export namespace items_5 {
|
|
2998
|
+
let type_74: string;
|
|
2999
|
+
export { type_74 as type };
|
|
3000
|
+
}
|
|
3001
|
+
export { items_5 as items };
|
|
3002
|
+
}
|
|
3003
|
+
export { schema_18 as schema };
|
|
3004
|
+
let uiSchema_18: {
|
|
3005
|
+
"ui:field": string;
|
|
3006
|
+
};
|
|
3007
|
+
export { uiSchema_18 as uiSchema };
|
|
3008
|
+
}
|
|
3009
|
+
export { _default_19 as default };
|
|
3010
|
+
}
|
|
3011
|
+
namespace idFetcher {
|
|
3012
|
+
let title_71: string;
|
|
3013
|
+
export { title_71 as title };
|
|
3014
|
+
let icon_19: import("react/jsx-runtime").JSX.Element;
|
|
3015
|
+
export { icon_19 as icon };
|
|
3016
|
+
let description_32: string;
|
|
3017
|
+
export { description_32 as description };
|
|
3018
|
+
let child_19: {};
|
|
3019
|
+
export { child_19 as child };
|
|
3020
|
+
export namespace optionsSchema_21 {
|
|
3021
|
+
let type_75: string;
|
|
3022
|
+
export { type_75 as type };
|
|
3023
|
+
let title_72: string;
|
|
3024
|
+
export { title_72 as title };
|
|
3025
|
+
export namespace properties_31 {
|
|
3026
|
+
import readOnly_15 = readOnly;
|
|
3027
|
+
export { readOnly_15 as readOnly };
|
|
3028
|
+
import isRequired_15 = isRequired;
|
|
3029
|
+
export { isRequired_15 as isRequired };
|
|
3030
|
+
}
|
|
3031
|
+
export { properties_31 as properties };
|
|
3032
|
+
}
|
|
3033
|
+
export { optionsSchema_21 as optionsSchema };
|
|
3034
|
+
let optionsSchemaUiSchema_21: {
|
|
3035
|
+
readOnly: {
|
|
3036
|
+
"ui:widget": string;
|
|
3037
|
+
};
|
|
3038
|
+
isRequired: {
|
|
3039
|
+
"ui:widget": string;
|
|
3040
|
+
};
|
|
3041
|
+
"ui:ObjectFieldTemplate": ({ properties }: {
|
|
3042
|
+
properties: any;
|
|
3043
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
3044
|
+
};
|
|
3045
|
+
export { optionsSchemaUiSchema_21 as optionsSchemaUiSchema };
|
|
3046
|
+
export namespace optionsUiSchema_20 {
|
|
3047
|
+
let type_76: string;
|
|
3048
|
+
export { type_76 as type };
|
|
3049
|
+
let title_73: string;
|
|
3050
|
+
export { title_73 as title };
|
|
3051
|
+
let properties_32: {
|
|
2500
3052
|
"ui:servicesList": {
|
|
2501
3053
|
title: string;
|
|
2502
3054
|
type: string;
|
|
@@ -2516,9 +3068,13 @@ declare namespace advanced_1 {
|
|
|
2516
3068
|
span: {
|
|
2517
3069
|
title: string;
|
|
2518
3070
|
type: string;
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
3071
|
+
default: number;
|
|
3072
|
+
minimum: number;
|
|
3073
|
+
maximum: number;
|
|
3074
|
+
oneOf: {
|
|
3075
|
+
title: string;
|
|
3076
|
+
const: number;
|
|
3077
|
+
}[];
|
|
2522
3078
|
};
|
|
2523
3079
|
showAsModal: {
|
|
2524
3080
|
title: string;
|
|
@@ -2528,6 +3084,11 @@ declare namespace advanced_1 {
|
|
|
2528
3084
|
title: string;
|
|
2529
3085
|
type: string;
|
|
2530
3086
|
};
|
|
3087
|
+
hidden: {
|
|
3088
|
+
type: string;
|
|
3089
|
+
title: string;
|
|
3090
|
+
tooltip: string;
|
|
3091
|
+
};
|
|
2531
3092
|
};
|
|
2532
3093
|
dependencies: {
|
|
2533
3094
|
showAsModal: {
|
|
@@ -2554,6 +3115,14 @@ declare namespace advanced_1 {
|
|
|
2554
3115
|
modalWidth: {
|
|
2555
3116
|
title: string;
|
|
2556
3117
|
type: string;
|
|
3118
|
+
tooltip: string;
|
|
3119
|
+
default: number;
|
|
3120
|
+
minimum: number;
|
|
3121
|
+
maximum: number;
|
|
3122
|
+
oneOf: {
|
|
3123
|
+
title: string;
|
|
3124
|
+
const: number;
|
|
3125
|
+
}[];
|
|
2557
3126
|
};
|
|
2558
3127
|
buttonInNewLine: {
|
|
2559
3128
|
title: string;
|
|
@@ -2573,10 +3142,10 @@ declare namespace advanced_1 {
|
|
|
2573
3142
|
default: boolean;
|
|
2574
3143
|
};
|
|
2575
3144
|
};
|
|
2576
|
-
export {
|
|
3145
|
+
export { properties_32 as properties };
|
|
2577
3146
|
}
|
|
2578
|
-
export {
|
|
2579
|
-
let
|
|
3147
|
+
export { optionsUiSchema_20 as optionsUiSchema };
|
|
3148
|
+
let optionsUiSchemaUiSchema_20: {
|
|
2580
3149
|
"ui:servicesList": {
|
|
2581
3150
|
"ui:widget": string;
|
|
2582
3151
|
};
|
|
@@ -2589,8 +3158,15 @@ declare namespace advanced_1 {
|
|
|
2589
3158
|
showAsModal: boolean;
|
|
2590
3159
|
modal: {
|
|
2591
3160
|
buttonInNewLine: boolean;
|
|
3161
|
+
modalWidth: number;
|
|
2592
3162
|
};
|
|
2593
3163
|
};
|
|
3164
|
+
buttonInNewLine: {
|
|
3165
|
+
"ui:widget": string;
|
|
3166
|
+
};
|
|
3167
|
+
modalWidth: {
|
|
3168
|
+
"ui:widget": string;
|
|
3169
|
+
};
|
|
2594
3170
|
};
|
|
2595
3171
|
showAsModal: {
|
|
2596
3172
|
"ui:widget": string;
|
|
@@ -2598,6 +3174,9 @@ declare namespace advanced_1 {
|
|
|
2598
3174
|
collapsible: {
|
|
2599
3175
|
"ui:widget": string;
|
|
2600
3176
|
};
|
|
3177
|
+
hidden: {
|
|
3178
|
+
"ui:widget": string;
|
|
3179
|
+
};
|
|
2601
3180
|
"ui:order": string[];
|
|
2602
3181
|
"ui:padding": number;
|
|
2603
3182
|
"ui:label": boolean;
|
|
@@ -2609,47 +3188,47 @@ declare namespace advanced_1 {
|
|
|
2609
3188
|
properties: any;
|
|
2610
3189
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2611
3190
|
};
|
|
2612
|
-
export {
|
|
2613
|
-
namespace
|
|
2614
|
-
export namespace
|
|
2615
|
-
let
|
|
2616
|
-
export {
|
|
2617
|
-
let
|
|
2618
|
-
export {
|
|
3191
|
+
export { optionsUiSchemaUiSchema_20 as optionsUiSchemaUiSchema };
|
|
3192
|
+
namespace _default_20 {
|
|
3193
|
+
export namespace schema_19 {
|
|
3194
|
+
let type_77: string;
|
|
3195
|
+
export { type_77 as type };
|
|
3196
|
+
let properties_33: {};
|
|
3197
|
+
export { properties_33 as properties };
|
|
2619
3198
|
}
|
|
2620
|
-
export {
|
|
2621
|
-
let
|
|
3199
|
+
export { schema_19 as schema };
|
|
3200
|
+
let uiSchema_19: {
|
|
2622
3201
|
"ui:servicesList": string[];
|
|
2623
3202
|
"ui:field": string;
|
|
2624
3203
|
};
|
|
2625
|
-
export {
|
|
3204
|
+
export { uiSchema_19 as uiSchema };
|
|
2626
3205
|
}
|
|
2627
|
-
export {
|
|
3206
|
+
export { _default_20 as default };
|
|
2628
3207
|
}
|
|
2629
3208
|
namespace codeEditor {
|
|
2630
|
-
let
|
|
2631
|
-
export {
|
|
2632
|
-
let
|
|
2633
|
-
export {
|
|
2634
|
-
let
|
|
2635
|
-
export {
|
|
2636
|
-
let
|
|
2637
|
-
export {
|
|
2638
|
-
export namespace
|
|
2639
|
-
let
|
|
2640
|
-
export {
|
|
2641
|
-
let
|
|
2642
|
-
export {
|
|
2643
|
-
export namespace
|
|
2644
|
-
import
|
|
2645
|
-
export {
|
|
2646
|
-
import
|
|
2647
|
-
export {
|
|
3209
|
+
let title_74: string;
|
|
3210
|
+
export { title_74 as title };
|
|
3211
|
+
let icon_20: import("react/jsx-runtime").JSX.Element;
|
|
3212
|
+
export { icon_20 as icon };
|
|
3213
|
+
let description_33: string;
|
|
3214
|
+
export { description_33 as description };
|
|
3215
|
+
let child_20: {};
|
|
3216
|
+
export { child_20 as child };
|
|
3217
|
+
export namespace optionsSchema_22 {
|
|
3218
|
+
let title_75: string;
|
|
3219
|
+
export { title_75 as title };
|
|
3220
|
+
let type_78: string;
|
|
3221
|
+
export { type_78 as type };
|
|
3222
|
+
export namespace properties_34 {
|
|
3223
|
+
import readOnly_16 = readOnly;
|
|
3224
|
+
export { readOnly_16 as readOnly };
|
|
3225
|
+
import isRequired_16 = isRequired;
|
|
3226
|
+
export { isRequired_16 as isRequired };
|
|
2648
3227
|
}
|
|
2649
|
-
export {
|
|
3228
|
+
export { properties_34 as properties };
|
|
2650
3229
|
}
|
|
2651
|
-
export {
|
|
2652
|
-
let
|
|
3230
|
+
export { optionsSchema_22 as optionsSchema };
|
|
3231
|
+
let optionsSchemaUiSchema_22: {
|
|
2653
3232
|
readOnly: {
|
|
2654
3233
|
"ui:widget": string;
|
|
2655
3234
|
};
|
|
@@ -2661,13 +3240,13 @@ declare namespace advanced_1 {
|
|
|
2661
3240
|
properties: any;
|
|
2662
3241
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2663
3242
|
};
|
|
2664
|
-
export {
|
|
2665
|
-
export namespace
|
|
2666
|
-
let
|
|
2667
|
-
export {
|
|
2668
|
-
let
|
|
2669
|
-
export {
|
|
2670
|
-
let
|
|
3243
|
+
export { optionsSchemaUiSchema_22 as optionsSchemaUiSchema };
|
|
3244
|
+
export namespace optionsUiSchema_21 {
|
|
3245
|
+
let type_79: string;
|
|
3246
|
+
export { type_79 as type };
|
|
3247
|
+
let title_76: string;
|
|
3248
|
+
export { title_76 as title };
|
|
3249
|
+
let properties_35: {
|
|
2671
3250
|
"ui:options": {
|
|
2672
3251
|
type: string;
|
|
2673
3252
|
title: string;
|
|
@@ -2730,6 +3309,14 @@ declare namespace advanced_1 {
|
|
|
2730
3309
|
modalWidth: {
|
|
2731
3310
|
title: string;
|
|
2732
3311
|
type: string;
|
|
3312
|
+
tooltip: string;
|
|
3313
|
+
default: number;
|
|
3314
|
+
minimum: number;
|
|
3315
|
+
maximum: number;
|
|
3316
|
+
oneOf: {
|
|
3317
|
+
title: string;
|
|
3318
|
+
const: number;
|
|
3319
|
+
}[];
|
|
2733
3320
|
};
|
|
2734
3321
|
buttonInNewLine: {
|
|
2735
3322
|
title: string;
|
|
@@ -2744,9 +3331,12 @@ declare namespace advanced_1 {
|
|
|
2744
3331
|
};
|
|
2745
3332
|
properties: {
|
|
2746
3333
|
height: {
|
|
2747
|
-
type: string;
|
|
2748
3334
|
title: string;
|
|
2749
|
-
|
|
3335
|
+
type: string;
|
|
3336
|
+
tooltip: string;
|
|
3337
|
+
minimum: number;
|
|
3338
|
+
maximum: number;
|
|
3339
|
+
step: number;
|
|
2750
3340
|
};
|
|
2751
3341
|
language: {
|
|
2752
3342
|
type: string;
|
|
@@ -2769,9 +3359,13 @@ declare namespace advanced_1 {
|
|
|
2769
3359
|
span: {
|
|
2770
3360
|
title: string;
|
|
2771
3361
|
type: string;
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
|
|
3362
|
+
default: number;
|
|
3363
|
+
minimum: number;
|
|
3364
|
+
maximum: number;
|
|
3365
|
+
oneOf: {
|
|
3366
|
+
title: string;
|
|
3367
|
+
const: number;
|
|
3368
|
+
}[];
|
|
2775
3369
|
};
|
|
2776
3370
|
showAsModal: {
|
|
2777
3371
|
title: string;
|
|
@@ -2781,6 +3375,11 @@ declare namespace advanced_1 {
|
|
|
2781
3375
|
title: string;
|
|
2782
3376
|
type: string;
|
|
2783
3377
|
};
|
|
3378
|
+
hidden: {
|
|
3379
|
+
type: string;
|
|
3380
|
+
title: string;
|
|
3381
|
+
tooltip: string;
|
|
3382
|
+
};
|
|
2784
3383
|
};
|
|
2785
3384
|
};
|
|
2786
3385
|
"ui:label": {
|
|
@@ -2789,10 +3388,10 @@ declare namespace advanced_1 {
|
|
|
2789
3388
|
default: boolean;
|
|
2790
3389
|
};
|
|
2791
3390
|
};
|
|
2792
|
-
export {
|
|
3391
|
+
export { properties_35 as properties };
|
|
2793
3392
|
}
|
|
2794
|
-
export {
|
|
2795
|
-
let
|
|
3393
|
+
export { optionsUiSchema_21 as optionsUiSchema };
|
|
3394
|
+
let optionsUiSchemaUiSchema_21: {
|
|
2796
3395
|
"ui:options": {
|
|
2797
3396
|
validateWithUrl: {
|
|
2798
3397
|
"ui:widget": string;
|
|
@@ -2821,8 +3420,15 @@ declare namespace advanced_1 {
|
|
|
2821
3420
|
showAsModal: boolean;
|
|
2822
3421
|
modal: {
|
|
2823
3422
|
buttonInNewLine: boolean;
|
|
3423
|
+
modalWidth: number;
|
|
2824
3424
|
};
|
|
2825
3425
|
};
|
|
3426
|
+
buttonInNewLine: {
|
|
3427
|
+
"ui:widget": string;
|
|
3428
|
+
};
|
|
3429
|
+
modalWidth: {
|
|
3430
|
+
"ui:widget": string;
|
|
3431
|
+
};
|
|
2826
3432
|
};
|
|
2827
3433
|
showAsModal: {
|
|
2828
3434
|
"ui:widget": string;
|
|
@@ -2830,6 +3436,9 @@ declare namespace advanced_1 {
|
|
|
2830
3436
|
collapsible: {
|
|
2831
3437
|
"ui:widget": string;
|
|
2832
3438
|
};
|
|
3439
|
+
hidden: {
|
|
3440
|
+
"ui:widget": string;
|
|
3441
|
+
};
|
|
2833
3442
|
"ui:order": string[];
|
|
2834
3443
|
"ui:padding": number;
|
|
2835
3444
|
"ui:label": boolean;
|
|
@@ -2841,82 +3450,82 @@ declare namespace advanced_1 {
|
|
|
2841
3450
|
properties: any;
|
|
2842
3451
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2843
3452
|
};
|
|
2844
|
-
export {
|
|
2845
|
-
namespace
|
|
2846
|
-
export namespace
|
|
2847
|
-
let
|
|
2848
|
-
export {
|
|
3453
|
+
export { optionsUiSchemaUiSchema_21 as optionsUiSchemaUiSchema };
|
|
3454
|
+
namespace _default_21 {
|
|
3455
|
+
export namespace schema_20 {
|
|
3456
|
+
let type_80: string;
|
|
3457
|
+
export { type_80 as type };
|
|
2849
3458
|
export let validateWith: string;
|
|
2850
3459
|
}
|
|
2851
|
-
export {
|
|
2852
|
-
let
|
|
3460
|
+
export { schema_20 as schema };
|
|
3461
|
+
let uiSchema_20: {
|
|
2853
3462
|
"ui:field": string;
|
|
2854
3463
|
"ui:options": {
|
|
2855
3464
|
language: string;
|
|
2856
3465
|
};
|
|
2857
3466
|
};
|
|
2858
|
-
export {
|
|
3467
|
+
export { uiSchema_20 as uiSchema };
|
|
2859
3468
|
}
|
|
2860
|
-
export {
|
|
3469
|
+
export { _default_21 as default };
|
|
2861
3470
|
}
|
|
2862
3471
|
namespace file {
|
|
2863
|
-
let
|
|
2864
|
-
export {
|
|
2865
|
-
let
|
|
2866
|
-
export {
|
|
2867
|
-
let
|
|
2868
|
-
export {
|
|
2869
|
-
let
|
|
2870
|
-
export {
|
|
2871
|
-
export namespace
|
|
2872
|
-
let
|
|
2873
|
-
export {
|
|
2874
|
-
let
|
|
2875
|
-
export {
|
|
2876
|
-
export namespace
|
|
3472
|
+
let title_77: string;
|
|
3473
|
+
export { title_77 as title };
|
|
3474
|
+
let icon_21: import("react/jsx-runtime").JSX.Element;
|
|
3475
|
+
export { icon_21 as icon };
|
|
3476
|
+
let description_34: string;
|
|
3477
|
+
export { description_34 as description };
|
|
3478
|
+
let child_21: {};
|
|
3479
|
+
export { child_21 as child };
|
|
3480
|
+
export namespace optionsSchema_23 {
|
|
3481
|
+
let type_81: string;
|
|
3482
|
+
export { type_81 as type };
|
|
3483
|
+
let title_78: string;
|
|
3484
|
+
export { title_78 as title };
|
|
3485
|
+
export namespace properties_36 {
|
|
2877
3486
|
export namespace maxFiles {
|
|
2878
|
-
let
|
|
2879
|
-
export {
|
|
2880
|
-
let
|
|
2881
|
-
export {
|
|
2882
|
-
let
|
|
2883
|
-
export {
|
|
3487
|
+
let title_79: string;
|
|
3488
|
+
export { title_79 as title };
|
|
3489
|
+
let description_35: string;
|
|
3490
|
+
export { description_35 as description };
|
|
3491
|
+
let type_82: string;
|
|
3492
|
+
export { type_82 as type };
|
|
2884
3493
|
export let minimum: number;
|
|
2885
3494
|
}
|
|
2886
3495
|
export namespace accept {
|
|
2887
|
-
let
|
|
2888
|
-
export {
|
|
2889
|
-
let
|
|
2890
|
-
export {
|
|
2891
|
-
let
|
|
2892
|
-
export {
|
|
3496
|
+
let title_80: string;
|
|
3497
|
+
export { title_80 as title };
|
|
3498
|
+
let description_36: string;
|
|
3499
|
+
export { description_36 as description };
|
|
3500
|
+
let type_83: string;
|
|
3501
|
+
export { type_83 as type };
|
|
2893
3502
|
let uniqueItems_2: boolean;
|
|
2894
3503
|
export { uniqueItems_2 as uniqueItems };
|
|
2895
3504
|
export namespace items_6 {
|
|
2896
|
-
let
|
|
2897
|
-
export {
|
|
2898
|
-
let
|
|
2899
|
-
export {
|
|
3505
|
+
let type_84: string;
|
|
3506
|
+
export { type_84 as type };
|
|
3507
|
+
let pattern_2: string;
|
|
3508
|
+
export { pattern_2 as pattern };
|
|
2900
3509
|
}
|
|
2901
3510
|
export { items_6 as items };
|
|
2902
3511
|
}
|
|
2903
3512
|
export namespace disablePreview {
|
|
2904
|
-
let
|
|
2905
|
-
export {
|
|
2906
|
-
let
|
|
2907
|
-
export {
|
|
2908
|
-
let
|
|
2909
|
-
export {
|
|
3513
|
+
let title_81: string;
|
|
3514
|
+
export { title_81 as title };
|
|
3515
|
+
let description_37: string;
|
|
3516
|
+
export { description_37 as description };
|
|
3517
|
+
let type_85: string;
|
|
3518
|
+
export { type_85 as type };
|
|
2910
3519
|
}
|
|
2911
|
-
import
|
|
2912
|
-
export {
|
|
2913
|
-
import
|
|
2914
|
-
export {
|
|
3520
|
+
import readOnly_17 = readOnly;
|
|
3521
|
+
export { readOnly_17 as readOnly };
|
|
3522
|
+
import isRequired_17 = isRequired;
|
|
3523
|
+
export { isRequired_17 as isRequired };
|
|
2915
3524
|
}
|
|
2916
|
-
export {
|
|
3525
|
+
export { properties_36 as properties };
|
|
2917
3526
|
}
|
|
2918
|
-
export {
|
|
2919
|
-
let
|
|
3527
|
+
export { optionsSchema_23 as optionsSchema };
|
|
3528
|
+
let optionsSchemaUiSchema_23: {
|
|
2920
3529
|
readOnly: {
|
|
2921
3530
|
"ui:widget": string;
|
|
2922
3531
|
};
|
|
@@ -2938,10 +3547,10 @@ declare namespace advanced_1 {
|
|
|
2938
3547
|
properties: any;
|
|
2939
3548
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2940
3549
|
};
|
|
2941
|
-
export {
|
|
2942
|
-
export namespace
|
|
2943
|
-
export {
|
|
2944
|
-
let
|
|
3550
|
+
export { optionsSchemaUiSchema_23 as optionsSchemaUiSchema };
|
|
3551
|
+
export namespace optionsUiSchema_22 { }
|
|
3552
|
+
export { optionsUiSchema_22 as optionsUiSchema };
|
|
3553
|
+
let optionsUiSchemaUiSchema_22: {
|
|
2945
3554
|
"ui:options": {
|
|
2946
3555
|
span: {
|
|
2947
3556
|
"ui:widget": string;
|
|
@@ -2951,8 +3560,15 @@ declare namespace advanced_1 {
|
|
|
2951
3560
|
showAsModal: boolean;
|
|
2952
3561
|
modal: {
|
|
2953
3562
|
buttonInNewLine: boolean;
|
|
3563
|
+
modalWidth: number;
|
|
2954
3564
|
};
|
|
2955
3565
|
};
|
|
3566
|
+
buttonInNewLine: {
|
|
3567
|
+
"ui:widget": string;
|
|
3568
|
+
};
|
|
3569
|
+
modalWidth: {
|
|
3570
|
+
"ui:widget": string;
|
|
3571
|
+
};
|
|
2956
3572
|
};
|
|
2957
3573
|
showAsModal: {
|
|
2958
3574
|
"ui:widget": string;
|
|
@@ -2960,6 +3576,9 @@ declare namespace advanced_1 {
|
|
|
2960
3576
|
collapsible: {
|
|
2961
3577
|
"ui:widget": string;
|
|
2962
3578
|
};
|
|
3579
|
+
hidden: {
|
|
3580
|
+
"ui:widget": string;
|
|
3581
|
+
};
|
|
2963
3582
|
"ui:order": string[];
|
|
2964
3583
|
"ui:padding": number;
|
|
2965
3584
|
"ui:label": boolean;
|
|
@@ -2971,23 +3590,516 @@ declare namespace advanced_1 {
|
|
|
2971
3590
|
properties: any;
|
|
2972
3591
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2973
3592
|
};
|
|
2974
|
-
export {
|
|
2975
|
-
namespace
|
|
2976
|
-
export namespace
|
|
2977
|
-
let
|
|
2978
|
-
export {
|
|
3593
|
+
export { optionsUiSchemaUiSchema_22 as optionsUiSchemaUiSchema };
|
|
3594
|
+
namespace _default_22 {
|
|
3595
|
+
export namespace schema_21 {
|
|
3596
|
+
let type_86: string;
|
|
3597
|
+
export { type_86 as type };
|
|
2979
3598
|
export namespace items_7 {
|
|
2980
|
-
let
|
|
2981
|
-
export {
|
|
3599
|
+
let type_87: string;
|
|
3600
|
+
export { type_87 as type };
|
|
2982
3601
|
}
|
|
2983
3602
|
export { items_7 as items };
|
|
2984
3603
|
}
|
|
2985
|
-
export {
|
|
2986
|
-
let
|
|
3604
|
+
export { schema_21 as schema };
|
|
3605
|
+
let uiSchema_21: {
|
|
2987
3606
|
"ui:field": string;
|
|
2988
3607
|
};
|
|
2989
|
-
export {
|
|
3608
|
+
export { uiSchema_21 as uiSchema };
|
|
2990
3609
|
}
|
|
2991
|
-
export {
|
|
3610
|
+
export { _default_22 as default };
|
|
3611
|
+
}
|
|
3612
|
+
namespace slider {
|
|
3613
|
+
let title_82: string;
|
|
3614
|
+
export { title_82 as title };
|
|
3615
|
+
let icon_22: import("react/jsx-runtime").JSX.Element;
|
|
3616
|
+
export { icon_22 as icon };
|
|
3617
|
+
let description_38: string;
|
|
3618
|
+
export { description_38 as description };
|
|
3619
|
+
let child_22: {};
|
|
3620
|
+
export { child_22 as child };
|
|
3621
|
+
export namespace optionsSchema_24 {
|
|
3622
|
+
let type_88: string;
|
|
3623
|
+
export { type_88 as type };
|
|
3624
|
+
let title_83: string;
|
|
3625
|
+
export { title_83 as title };
|
|
3626
|
+
export namespace properties_37 {
|
|
3627
|
+
import readOnly_18 = readOnly;
|
|
3628
|
+
export { readOnly_18 as readOnly };
|
|
3629
|
+
import isRequired_18 = isRequired;
|
|
3630
|
+
export { isRequired_18 as isRequired };
|
|
3631
|
+
export namespace minimum_1 {
|
|
3632
|
+
let type_89: string;
|
|
3633
|
+
export { type_89 as type };
|
|
3634
|
+
let title_84: string;
|
|
3635
|
+
export { title_84 as title };
|
|
3636
|
+
}
|
|
3637
|
+
export { minimum_1 as minimum };
|
|
3638
|
+
export namespace maximum {
|
|
3639
|
+
let type_90: string;
|
|
3640
|
+
export { type_90 as type };
|
|
3641
|
+
let title_85: string;
|
|
3642
|
+
export { title_85 as title };
|
|
3643
|
+
}
|
|
3644
|
+
export namespace step {
|
|
3645
|
+
let type_91: string;
|
|
3646
|
+
export { type_91 as type };
|
|
3647
|
+
let title_86: string;
|
|
3648
|
+
export { title_86 as title };
|
|
3649
|
+
}
|
|
3650
|
+
}
|
|
3651
|
+
export { properties_37 as properties };
|
|
3652
|
+
}
|
|
3653
|
+
export { optionsSchema_24 as optionsSchema };
|
|
3654
|
+
let optionsSchemaUiSchema_24: {
|
|
3655
|
+
readOnly: {
|
|
3656
|
+
"ui:widget": string;
|
|
3657
|
+
};
|
|
3658
|
+
isRequired: {
|
|
3659
|
+
"ui:widget": string;
|
|
3660
|
+
};
|
|
3661
|
+
minimum: {
|
|
3662
|
+
"ui:options": {
|
|
3663
|
+
span: number;
|
|
3664
|
+
label: boolean;
|
|
3665
|
+
placeholder: string;
|
|
3666
|
+
};
|
|
3667
|
+
};
|
|
3668
|
+
maximum: {
|
|
3669
|
+
"ui:options": {
|
|
3670
|
+
span: number;
|
|
3671
|
+
label: boolean;
|
|
3672
|
+
placeholder: string;
|
|
3673
|
+
};
|
|
3674
|
+
};
|
|
3675
|
+
"ui:ObjectFieldTemplate": ({ properties }: {
|
|
3676
|
+
properties: any;
|
|
3677
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
3678
|
+
};
|
|
3679
|
+
export { optionsSchemaUiSchema_24 as optionsSchemaUiSchema };
|
|
3680
|
+
export namespace optionsUiSchema_23 {
|
|
3681
|
+
let type_92: string;
|
|
3682
|
+
export { type_92 as type };
|
|
3683
|
+
let title_87: string;
|
|
3684
|
+
export { title_87 as title };
|
|
3685
|
+
let properties_38: {
|
|
3686
|
+
"ui:options": {
|
|
3687
|
+
type: string;
|
|
3688
|
+
title: string;
|
|
3689
|
+
dependencies: {
|
|
3690
|
+
showAsModal: {
|
|
3691
|
+
oneOf: ({
|
|
3692
|
+
properties: {
|
|
3693
|
+
showAsModal: {
|
|
3694
|
+
enum: boolean[];
|
|
3695
|
+
};
|
|
3696
|
+
modal?: undefined;
|
|
3697
|
+
};
|
|
3698
|
+
} | {
|
|
3699
|
+
properties: {
|
|
3700
|
+
showAsModal: {
|
|
3701
|
+
enum: boolean[];
|
|
3702
|
+
};
|
|
3703
|
+
modal: {
|
|
3704
|
+
title: string;
|
|
3705
|
+
type: string;
|
|
3706
|
+
properties: {
|
|
3707
|
+
buttonText: {
|
|
3708
|
+
title: string;
|
|
3709
|
+
type: string;
|
|
3710
|
+
};
|
|
3711
|
+
modalWidth: {
|
|
3712
|
+
title: string;
|
|
3713
|
+
type: string;
|
|
3714
|
+
tooltip: string;
|
|
3715
|
+
default: number;
|
|
3716
|
+
minimum: number;
|
|
3717
|
+
maximum: number;
|
|
3718
|
+
oneOf: {
|
|
3719
|
+
title: string;
|
|
3720
|
+
const: number;
|
|
3721
|
+
}[];
|
|
3722
|
+
};
|
|
3723
|
+
buttonInNewLine: {
|
|
3724
|
+
title: string;
|
|
3725
|
+
type: string;
|
|
3726
|
+
};
|
|
3727
|
+
};
|
|
3728
|
+
};
|
|
3729
|
+
};
|
|
3730
|
+
})[];
|
|
3731
|
+
required: string[];
|
|
3732
|
+
};
|
|
3733
|
+
};
|
|
3734
|
+
properties: {
|
|
3735
|
+
suffix: {
|
|
3736
|
+
title: string;
|
|
3737
|
+
type: string;
|
|
3738
|
+
tooltip: string;
|
|
3739
|
+
};
|
|
3740
|
+
hideInput: {
|
|
3741
|
+
type: string;
|
|
3742
|
+
title: string;
|
|
3743
|
+
tooltip: string;
|
|
3744
|
+
};
|
|
3745
|
+
span: {
|
|
3746
|
+
title: string;
|
|
3747
|
+
type: string;
|
|
3748
|
+
default: number;
|
|
3749
|
+
minimum: number;
|
|
3750
|
+
maximum: number;
|
|
3751
|
+
oneOf: {
|
|
3752
|
+
title: string;
|
|
3753
|
+
const: number;
|
|
3754
|
+
}[];
|
|
3755
|
+
};
|
|
3756
|
+
showAsModal: {
|
|
3757
|
+
title: string;
|
|
3758
|
+
type: string;
|
|
3759
|
+
};
|
|
3760
|
+
collapsible: {
|
|
3761
|
+
title: string;
|
|
3762
|
+
type: string;
|
|
3763
|
+
};
|
|
3764
|
+
hidden: {
|
|
3765
|
+
type: string;
|
|
3766
|
+
title: string;
|
|
3767
|
+
tooltip: string;
|
|
3768
|
+
};
|
|
3769
|
+
};
|
|
3770
|
+
};
|
|
3771
|
+
"ui:label": {
|
|
3772
|
+
title: string;
|
|
3773
|
+
type: string;
|
|
3774
|
+
default: boolean;
|
|
3775
|
+
};
|
|
3776
|
+
};
|
|
3777
|
+
export { properties_38 as properties };
|
|
3778
|
+
}
|
|
3779
|
+
export { optionsUiSchema_23 as optionsUiSchema };
|
|
3780
|
+
let optionsUiSchemaUiSchema_23: {
|
|
3781
|
+
"ui:options": {
|
|
3782
|
+
hideInput: {
|
|
3783
|
+
"ui:widget": string;
|
|
3784
|
+
};
|
|
3785
|
+
span: {
|
|
3786
|
+
"ui:widget": string;
|
|
3787
|
+
};
|
|
3788
|
+
modal: {
|
|
3789
|
+
"ui:options": {
|
|
3790
|
+
showAsModal: boolean;
|
|
3791
|
+
modal: {
|
|
3792
|
+
buttonInNewLine: boolean;
|
|
3793
|
+
modalWidth: number;
|
|
3794
|
+
};
|
|
3795
|
+
};
|
|
3796
|
+
buttonInNewLine: {
|
|
3797
|
+
"ui:widget": string;
|
|
3798
|
+
};
|
|
3799
|
+
modalWidth: {
|
|
3800
|
+
"ui:widget": string;
|
|
3801
|
+
};
|
|
3802
|
+
};
|
|
3803
|
+
showAsModal: {
|
|
3804
|
+
"ui:widget": string;
|
|
3805
|
+
};
|
|
3806
|
+
collapsible: {
|
|
3807
|
+
"ui:widget": string;
|
|
3808
|
+
};
|
|
3809
|
+
hidden: {
|
|
3810
|
+
"ui:widget": string;
|
|
3811
|
+
};
|
|
3812
|
+
"ui:order": string[];
|
|
3813
|
+
"ui:padding": number;
|
|
3814
|
+
"ui:label": boolean;
|
|
3815
|
+
};
|
|
3816
|
+
"ui:label": {
|
|
3817
|
+
"ui:widget": string;
|
|
3818
|
+
};
|
|
3819
|
+
"ui:ObjectFieldTemplate": ({ properties }: {
|
|
3820
|
+
properties: any;
|
|
3821
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
3822
|
+
};
|
|
3823
|
+
export { optionsUiSchemaUiSchema_23 as optionsUiSchemaUiSchema };
|
|
3824
|
+
namespace _default_23 {
|
|
3825
|
+
export namespace schema_22 {
|
|
3826
|
+
let type_93: string;
|
|
3827
|
+
export { type_93 as type };
|
|
3828
|
+
}
|
|
3829
|
+
export { schema_22 as schema };
|
|
3830
|
+
let uiSchema_22: {
|
|
3831
|
+
"ui:widget": string;
|
|
3832
|
+
};
|
|
3833
|
+
export { uiSchema_22 as uiSchema };
|
|
3834
|
+
}
|
|
3835
|
+
export { _default_23 as default };
|
|
3836
|
+
}
|
|
3837
|
+
namespace slider_markers {
|
|
3838
|
+
let title_88: string;
|
|
3839
|
+
export { title_88 as title };
|
|
3840
|
+
let icon_23: import("react/jsx-runtime").JSX.Element;
|
|
3841
|
+
export { icon_23 as icon };
|
|
3842
|
+
let description_39: string;
|
|
3843
|
+
export { description_39 as description };
|
|
3844
|
+
let child_23: {};
|
|
3845
|
+
export { child_23 as child };
|
|
3846
|
+
export namespace optionsSchema_25 {
|
|
3847
|
+
let type_94: string;
|
|
3848
|
+
export { type_94 as type };
|
|
3849
|
+
let title_89: string;
|
|
3850
|
+
export { title_89 as title };
|
|
3851
|
+
export namespace properties_39 {
|
|
3852
|
+
import readOnly_19 = readOnly;
|
|
3853
|
+
export { readOnly_19 as readOnly };
|
|
3854
|
+
import isRequired_19 = isRequired;
|
|
3855
|
+
export { isRequired_19 as isRequired };
|
|
3856
|
+
export namespace oneOf_6 {
|
|
3857
|
+
let title_90: string;
|
|
3858
|
+
export { title_90 as title };
|
|
3859
|
+
let type_95: string;
|
|
3860
|
+
export { type_95 as type };
|
|
3861
|
+
export namespace items_8 {
|
|
3862
|
+
let type_96: string;
|
|
3863
|
+
export { type_96 as type };
|
|
3864
|
+
export namespace properties_40 {
|
|
3865
|
+
export namespace _const {
|
|
3866
|
+
let type_97: string;
|
|
3867
|
+
export { type_97 as type };
|
|
3868
|
+
let _default_24: number;
|
|
3869
|
+
export { _default_24 as default };
|
|
3870
|
+
}
|
|
3871
|
+
export { _const as const };
|
|
3872
|
+
export namespace title_91 {
|
|
3873
|
+
let type_98: string;
|
|
3874
|
+
export { type_98 as type };
|
|
3875
|
+
}
|
|
3876
|
+
export { title_91 as title };
|
|
3877
|
+
export namespace type_99 {
|
|
3878
|
+
let type_100: string;
|
|
3879
|
+
export { type_100 as type };
|
|
3880
|
+
let _default_25: string;
|
|
3881
|
+
export { _default_25 as default };
|
|
3882
|
+
}
|
|
3883
|
+
export { type_99 as type };
|
|
3884
|
+
}
|
|
3885
|
+
export { properties_40 as properties };
|
|
3886
|
+
export let required: string[];
|
|
3887
|
+
}
|
|
3888
|
+
export { items_8 as items };
|
|
3889
|
+
}
|
|
3890
|
+
export { oneOf_6 as oneOf };
|
|
3891
|
+
}
|
|
3892
|
+
export { properties_39 as properties };
|
|
3893
|
+
}
|
|
3894
|
+
export { optionsSchema_25 as optionsSchema };
|
|
3895
|
+
let optionsSchemaUiSchema_25: {
|
|
3896
|
+
readOnly: {
|
|
3897
|
+
"ui:widget": string;
|
|
3898
|
+
};
|
|
3899
|
+
isRequired: {
|
|
3900
|
+
"ui:widget": string;
|
|
3901
|
+
};
|
|
3902
|
+
minimum: {
|
|
3903
|
+
"ui:options": {
|
|
3904
|
+
span: number;
|
|
3905
|
+
label: boolean;
|
|
3906
|
+
placeholder: string;
|
|
3907
|
+
};
|
|
3908
|
+
};
|
|
3909
|
+
maximum: {
|
|
3910
|
+
"ui:options": {
|
|
3911
|
+
span: number;
|
|
3912
|
+
label: boolean;
|
|
3913
|
+
placeholder: string;
|
|
3914
|
+
};
|
|
3915
|
+
};
|
|
3916
|
+
oneOf: {
|
|
3917
|
+
items: {
|
|
3918
|
+
"ui:label": boolean;
|
|
3919
|
+
const: {
|
|
3920
|
+
"ui:options": {
|
|
3921
|
+
span: number;
|
|
3922
|
+
placeholder: string;
|
|
3923
|
+
label: boolean;
|
|
3924
|
+
};
|
|
3925
|
+
};
|
|
3926
|
+
title: {
|
|
3927
|
+
"ui:options": {
|
|
3928
|
+
span: number;
|
|
3929
|
+
placeholder: string;
|
|
3930
|
+
label: boolean;
|
|
3931
|
+
};
|
|
3932
|
+
};
|
|
3933
|
+
type: {
|
|
3934
|
+
"ui:widget": string;
|
|
3935
|
+
};
|
|
3936
|
+
};
|
|
3937
|
+
};
|
|
3938
|
+
"ui:ObjectFieldTemplate": ({ properties }: {
|
|
3939
|
+
properties: any;
|
|
3940
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
3941
|
+
};
|
|
3942
|
+
export { optionsSchemaUiSchema_25 as optionsSchemaUiSchema };
|
|
3943
|
+
export namespace optionsUiSchema_24 {
|
|
3944
|
+
let type_101: string;
|
|
3945
|
+
export { type_101 as type };
|
|
3946
|
+
let title_92: string;
|
|
3947
|
+
export { title_92 as title };
|
|
3948
|
+
let properties_41: {
|
|
3949
|
+
"ui:options": {
|
|
3950
|
+
type: string;
|
|
3951
|
+
title: string;
|
|
3952
|
+
dependencies: {
|
|
3953
|
+
showAsModal: {
|
|
3954
|
+
oneOf: ({
|
|
3955
|
+
properties: {
|
|
3956
|
+
showAsModal: {
|
|
3957
|
+
enum: boolean[];
|
|
3958
|
+
};
|
|
3959
|
+
modal?: undefined;
|
|
3960
|
+
};
|
|
3961
|
+
} | {
|
|
3962
|
+
properties: {
|
|
3963
|
+
showAsModal: {
|
|
3964
|
+
enum: boolean[];
|
|
3965
|
+
};
|
|
3966
|
+
modal: {
|
|
3967
|
+
title: string;
|
|
3968
|
+
type: string;
|
|
3969
|
+
properties: {
|
|
3970
|
+
buttonText: {
|
|
3971
|
+
title: string;
|
|
3972
|
+
type: string;
|
|
3973
|
+
};
|
|
3974
|
+
modalWidth: {
|
|
3975
|
+
title: string;
|
|
3976
|
+
type: string;
|
|
3977
|
+
tooltip: string;
|
|
3978
|
+
default: number;
|
|
3979
|
+
minimum: number;
|
|
3980
|
+
maximum: number;
|
|
3981
|
+
oneOf: {
|
|
3982
|
+
title: string;
|
|
3983
|
+
const: number;
|
|
3984
|
+
}[];
|
|
3985
|
+
};
|
|
3986
|
+
buttonInNewLine: {
|
|
3987
|
+
title: string;
|
|
3988
|
+
type: string;
|
|
3989
|
+
};
|
|
3990
|
+
};
|
|
3991
|
+
};
|
|
3992
|
+
};
|
|
3993
|
+
})[];
|
|
3994
|
+
required: string[];
|
|
3995
|
+
};
|
|
3996
|
+
};
|
|
3997
|
+
properties: {
|
|
3998
|
+
suffix: {
|
|
3999
|
+
title: string;
|
|
4000
|
+
type: string;
|
|
4001
|
+
tooltip: string;
|
|
4002
|
+
};
|
|
4003
|
+
hideInput: {
|
|
4004
|
+
type: string;
|
|
4005
|
+
title: string;
|
|
4006
|
+
tooltip: string;
|
|
4007
|
+
};
|
|
4008
|
+
span: {
|
|
4009
|
+
title: string;
|
|
4010
|
+
type: string;
|
|
4011
|
+
default: number;
|
|
4012
|
+
minimum: number;
|
|
4013
|
+
maximum: number;
|
|
4014
|
+
oneOf: {
|
|
4015
|
+
title: string;
|
|
4016
|
+
const: number;
|
|
4017
|
+
}[];
|
|
4018
|
+
};
|
|
4019
|
+
showAsModal: {
|
|
4020
|
+
title: string;
|
|
4021
|
+
type: string;
|
|
4022
|
+
};
|
|
4023
|
+
collapsible: {
|
|
4024
|
+
title: string;
|
|
4025
|
+
type: string;
|
|
4026
|
+
};
|
|
4027
|
+
hidden: {
|
|
4028
|
+
type: string;
|
|
4029
|
+
title: string;
|
|
4030
|
+
tooltip: string;
|
|
4031
|
+
};
|
|
4032
|
+
};
|
|
4033
|
+
};
|
|
4034
|
+
"ui:label": {
|
|
4035
|
+
title: string;
|
|
4036
|
+
type: string;
|
|
4037
|
+
default: boolean;
|
|
4038
|
+
};
|
|
4039
|
+
};
|
|
4040
|
+
export { properties_41 as properties };
|
|
4041
|
+
}
|
|
4042
|
+
export { optionsUiSchema_24 as optionsUiSchema };
|
|
4043
|
+
let optionsUiSchemaUiSchema_24: {
|
|
4044
|
+
"ui:options": {
|
|
4045
|
+
hideInput: {
|
|
4046
|
+
"ui:widget": string;
|
|
4047
|
+
};
|
|
4048
|
+
span: {
|
|
4049
|
+
"ui:widget": string;
|
|
4050
|
+
};
|
|
4051
|
+
modal: {
|
|
4052
|
+
"ui:options": {
|
|
4053
|
+
showAsModal: boolean;
|
|
4054
|
+
modal: {
|
|
4055
|
+
buttonInNewLine: boolean;
|
|
4056
|
+
modalWidth: number;
|
|
4057
|
+
};
|
|
4058
|
+
};
|
|
4059
|
+
buttonInNewLine: {
|
|
4060
|
+
"ui:widget": string;
|
|
4061
|
+
};
|
|
4062
|
+
modalWidth: {
|
|
4063
|
+
"ui:widget": string;
|
|
4064
|
+
};
|
|
4065
|
+
};
|
|
4066
|
+
showAsModal: {
|
|
4067
|
+
"ui:widget": string;
|
|
4068
|
+
};
|
|
4069
|
+
collapsible: {
|
|
4070
|
+
"ui:widget": string;
|
|
4071
|
+
};
|
|
4072
|
+
hidden: {
|
|
4073
|
+
"ui:widget": string;
|
|
4074
|
+
};
|
|
4075
|
+
"ui:order": string[];
|
|
4076
|
+
"ui:padding": number;
|
|
4077
|
+
"ui:label": boolean;
|
|
4078
|
+
};
|
|
4079
|
+
"ui:label": {
|
|
4080
|
+
"ui:widget": string;
|
|
4081
|
+
};
|
|
4082
|
+
"ui:ObjectFieldTemplate": ({ properties }: {
|
|
4083
|
+
properties: any;
|
|
4084
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
4085
|
+
};
|
|
4086
|
+
export { optionsUiSchemaUiSchema_24 as optionsUiSchemaUiSchema };
|
|
4087
|
+
namespace _default_26 {
|
|
4088
|
+
export namespace schema_23 {
|
|
4089
|
+
let type_102: string;
|
|
4090
|
+
export { type_102 as type };
|
|
4091
|
+
let oneOf_7: {
|
|
4092
|
+
title: string;
|
|
4093
|
+
const: number;
|
|
4094
|
+
}[];
|
|
4095
|
+
export { oneOf_7 as oneOf };
|
|
4096
|
+
}
|
|
4097
|
+
export { schema_23 as schema };
|
|
4098
|
+
let uiSchema_23: {
|
|
4099
|
+
"ui:widget": string;
|
|
4100
|
+
};
|
|
4101
|
+
export { uiSchema_23 as uiSchema };
|
|
4102
|
+
}
|
|
4103
|
+
export { _default_26 as default };
|
|
2992
4104
|
}
|
|
2993
4105
|
}
|