react-formule 1.5.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 +129 -5
- package/dist/admin/components/SchemaCodeEditor.d.ts +8 -0
- package/dist/admin/utils/fieldTypes.d.ts +1667 -549
- package/dist/admin/utils/index.d.ts +1 -1
- package/dist/ai/AiChatFooter.d.ts +9 -0
- package/dist/ai/AiDiff.d.ts +9 -0
- package/dist/ai/AiSettingsDialog.d.ts +7 -0
- package/dist/ai/defaults.d.ts +4 -0
- package/dist/ai/hooks.d.ts +4 -0
- package/dist/ai/utils.d.ts +5 -0
- package/dist/contexts/CustomizationContext.d.ts +3 -1
- package/dist/exposed.d.ts +1 -1
- package/dist/forms/Form.d.ts +2 -0
- package/dist/forms/fields/base/CodeEditorField.d.ts +1 -2
- package/dist/forms/templates/ArrayFieldTemplates/AccordionArrayFieldTemplate.d.ts +1 -1
- package/dist/forms/templates/ArrayFieldTemplates/LayerArrayFieldTemplate.d.ts +1 -1
- package/dist/forms/templates/utils/index.d.ts +1 -0
- package/dist/forms/widgets/base/MaskedInput/MaskedInput.d.ts +2 -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 +8 -0
- package/dist/react-formule.js +87300 -81900
- package/dist/react-formule.umd.cjs +576 -457
- package/dist/store/schemaWizard.d.ts +1 -1
- package/dist/types/index.d.ts +74 -0
- package/dist/utils/CodeDiffViewer.d.ts +2 -1
- package/dist/utils/FieldMessageTag.d.ts +4 -0
- package/package.json +6 -3
- 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,19 +773,21 @@ 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 };
|
|
778
|
+
let description_12: string;
|
|
779
|
+
export { description_12 as description };
|
|
762
780
|
let icon_6: import("react/jsx-runtime").JSX.Element;
|
|
763
781
|
export { icon_6 as icon };
|
|
764
782
|
let child_6: {};
|
|
765
783
|
export { child_6 as child };
|
|
766
784
|
export namespace optionsSchema_8 {
|
|
767
|
-
let
|
|
768
|
-
export {
|
|
769
|
-
let
|
|
770
|
-
export {
|
|
771
|
-
export namespace
|
|
772
|
-
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 };
|
|
773
791
|
}
|
|
774
792
|
export { optionsSchema_8 as optionsSchema };
|
|
775
793
|
let optionsSchemaUiSchema_8: {
|
|
@@ -779,11 +797,11 @@ declare namespace collections_1 {
|
|
|
779
797
|
};
|
|
780
798
|
export { optionsSchemaUiSchema_8 as optionsSchemaUiSchema };
|
|
781
799
|
export namespace optionsUiSchema_7 {
|
|
782
|
-
let
|
|
783
|
-
export {
|
|
784
|
-
let
|
|
785
|
-
export {
|
|
786
|
-
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: {
|
|
787
805
|
"ui:options": {
|
|
788
806
|
type: string;
|
|
789
807
|
title: string;
|
|
@@ -812,6 +830,14 @@ declare namespace collections_1 {
|
|
|
812
830
|
modalWidth: {
|
|
813
831
|
title: string;
|
|
814
832
|
type: string;
|
|
833
|
+
tooltip: string;
|
|
834
|
+
default: number;
|
|
835
|
+
minimum: number;
|
|
836
|
+
maximum: number;
|
|
837
|
+
oneOf: {
|
|
838
|
+
title: string;
|
|
839
|
+
const: number;
|
|
840
|
+
}[];
|
|
815
841
|
};
|
|
816
842
|
buttonInNewLine: {
|
|
817
843
|
title: string;
|
|
@@ -833,9 +859,13 @@ declare namespace collections_1 {
|
|
|
833
859
|
span: {
|
|
834
860
|
title: string;
|
|
835
861
|
type: string;
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
862
|
+
default: number;
|
|
863
|
+
minimum: number;
|
|
864
|
+
maximum: number;
|
|
865
|
+
oneOf: {
|
|
866
|
+
title: string;
|
|
867
|
+
const: number;
|
|
868
|
+
}[];
|
|
839
869
|
};
|
|
840
870
|
showAsModal: {
|
|
841
871
|
title: string;
|
|
@@ -845,6 +875,11 @@ declare namespace collections_1 {
|
|
|
845
875
|
title: string;
|
|
846
876
|
type: string;
|
|
847
877
|
};
|
|
878
|
+
hidden: {
|
|
879
|
+
type: string;
|
|
880
|
+
title: string;
|
|
881
|
+
tooltip: string;
|
|
882
|
+
};
|
|
848
883
|
};
|
|
849
884
|
if: {
|
|
850
885
|
properties: {
|
|
@@ -887,7 +922,7 @@ declare namespace collections_1 {
|
|
|
887
922
|
default: boolean;
|
|
888
923
|
};
|
|
889
924
|
};
|
|
890
|
-
export {
|
|
925
|
+
export { properties_11 as properties };
|
|
891
926
|
}
|
|
892
927
|
export { optionsUiSchema_7 as optionsUiSchema };
|
|
893
928
|
let optionsUiSchemaUiSchema_7: {
|
|
@@ -912,8 +947,15 @@ declare namespace collections_1 {
|
|
|
912
947
|
showAsModal: boolean;
|
|
913
948
|
modal: {
|
|
914
949
|
buttonInNewLine: boolean;
|
|
950
|
+
modalWidth: number;
|
|
915
951
|
};
|
|
916
952
|
};
|
|
953
|
+
buttonInNewLine: {
|
|
954
|
+
"ui:widget": string;
|
|
955
|
+
};
|
|
956
|
+
modalWidth: {
|
|
957
|
+
"ui:widget": string;
|
|
958
|
+
};
|
|
917
959
|
};
|
|
918
960
|
showAsModal: {
|
|
919
961
|
"ui:widget": string;
|
|
@@ -921,6 +963,9 @@ declare namespace collections_1 {
|
|
|
921
963
|
collapsible: {
|
|
922
964
|
"ui:widget": string;
|
|
923
965
|
};
|
|
966
|
+
hidden: {
|
|
967
|
+
"ui:widget": string;
|
|
968
|
+
};
|
|
924
969
|
"ui:order": string[];
|
|
925
970
|
"ui:padding": number;
|
|
926
971
|
"ui:label": boolean;
|
|
@@ -935,10 +980,10 @@ declare namespace collections_1 {
|
|
|
935
980
|
export { optionsUiSchemaUiSchema_7 as optionsUiSchemaUiSchema };
|
|
936
981
|
namespace _default_6 {
|
|
937
982
|
export namespace schema_6 {
|
|
938
|
-
let
|
|
939
|
-
export {
|
|
940
|
-
let
|
|
941
|
-
export {
|
|
983
|
+
let type_22: string;
|
|
984
|
+
export { type_22 as type };
|
|
985
|
+
let properties_12: {};
|
|
986
|
+
export { properties_12 as properties };
|
|
942
987
|
}
|
|
943
988
|
export { schema_6 as schema };
|
|
944
989
|
let uiSchema_6: {
|
|
@@ -955,37 +1000,46 @@ declare namespace collections_1 {
|
|
|
955
1000
|
}
|
|
956
1001
|
declare namespace simple_1 {
|
|
957
1002
|
export namespace text {
|
|
958
|
-
let
|
|
959
|
-
export {
|
|
1003
|
+
let title_26: string;
|
|
1004
|
+
export { title_26 as title };
|
|
960
1005
|
let icon_7: import("react/jsx-runtime").JSX.Element;
|
|
961
1006
|
export { icon_7 as icon };
|
|
962
|
-
let
|
|
963
|
-
export {
|
|
1007
|
+
let description_13: string;
|
|
1008
|
+
export { description_13 as description };
|
|
964
1009
|
let className_3: string;
|
|
965
1010
|
export { className_3 as className };
|
|
966
1011
|
let child_7: {};
|
|
967
1012
|
export { child_7 as child };
|
|
968
1013
|
export namespace optionsSchema_9 {
|
|
969
|
-
let
|
|
970
|
-
export {
|
|
971
|
-
let
|
|
972
|
-
export {
|
|
973
|
-
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 {
|
|
974
1019
|
export namespace pattern {
|
|
1020
|
+
let title_28: string;
|
|
1021
|
+
export { title_28 as title };
|
|
1022
|
+
let description_14: string;
|
|
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 {
|
|
975
1029
|
let title_29: string;
|
|
976
1030
|
export { title_29 as title };
|
|
977
|
-
let description_13: string;
|
|
978
|
-
export { description_13 as description };
|
|
979
1031
|
let type_25: string;
|
|
980
1032
|
export { type_25 as type };
|
|
981
|
-
|
|
1033
|
+
let _enum: string[];
|
|
1034
|
+
export { _enum as enum };
|
|
982
1035
|
}
|
|
1036
|
+
export { format_1 as format };
|
|
983
1037
|
import readOnly_3 = readOnly;
|
|
984
1038
|
export { readOnly_3 as readOnly };
|
|
985
1039
|
import isRequired_3 = isRequired;
|
|
986
1040
|
export { isRequired_3 as isRequired };
|
|
987
1041
|
}
|
|
988
|
-
export {
|
|
1042
|
+
export { properties_13 as properties };
|
|
989
1043
|
}
|
|
990
1044
|
export { optionsSchema_9 as optionsSchema };
|
|
991
1045
|
let optionsSchemaUiSchema_9: {
|
|
@@ -1008,7 +1062,7 @@ declare namespace simple_1 {
|
|
|
1008
1062
|
export { type_26 as type };
|
|
1009
1063
|
let title_30: string;
|
|
1010
1064
|
export { title_30 as title };
|
|
1011
|
-
let
|
|
1065
|
+
let properties_14: {
|
|
1012
1066
|
"ui:options": {
|
|
1013
1067
|
type: string;
|
|
1014
1068
|
title: string;
|
|
@@ -1037,6 +1091,14 @@ declare namespace simple_1 {
|
|
|
1037
1091
|
modalWidth: {
|
|
1038
1092
|
title: string;
|
|
1039
1093
|
type: string;
|
|
1094
|
+
tooltip: string;
|
|
1095
|
+
default: number;
|
|
1096
|
+
minimum: number;
|
|
1097
|
+
maximum: number;
|
|
1098
|
+
oneOf: {
|
|
1099
|
+
title: string;
|
|
1100
|
+
const: number;
|
|
1101
|
+
}[];
|
|
1040
1102
|
};
|
|
1041
1103
|
buttonInNewLine: {
|
|
1042
1104
|
title: string;
|
|
@@ -1067,9 +1129,13 @@ declare namespace simple_1 {
|
|
|
1067
1129
|
span: {
|
|
1068
1130
|
title: string;
|
|
1069
1131
|
type: string;
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1132
|
+
default: number;
|
|
1133
|
+
minimum: number;
|
|
1134
|
+
maximum: number;
|
|
1135
|
+
oneOf: {
|
|
1136
|
+
title: string;
|
|
1137
|
+
const: number;
|
|
1138
|
+
}[];
|
|
1073
1139
|
};
|
|
1074
1140
|
showAsModal: {
|
|
1075
1141
|
title: string;
|
|
@@ -1079,6 +1145,11 @@ declare namespace simple_1 {
|
|
|
1079
1145
|
title: string;
|
|
1080
1146
|
type: string;
|
|
1081
1147
|
};
|
|
1148
|
+
hidden: {
|
|
1149
|
+
type: string;
|
|
1150
|
+
title: string;
|
|
1151
|
+
tooltip: string;
|
|
1152
|
+
};
|
|
1082
1153
|
};
|
|
1083
1154
|
};
|
|
1084
1155
|
"ui:label": {
|
|
@@ -1087,7 +1158,7 @@ declare namespace simple_1 {
|
|
|
1087
1158
|
default: boolean;
|
|
1088
1159
|
};
|
|
1089
1160
|
};
|
|
1090
|
-
export {
|
|
1161
|
+
export { properties_14 as properties };
|
|
1091
1162
|
}
|
|
1092
1163
|
export { optionsUiSchema_8 as optionsUiSchema };
|
|
1093
1164
|
let optionsUiSchemaUiSchema_8: {
|
|
@@ -1110,8 +1181,15 @@ declare namespace simple_1 {
|
|
|
1110
1181
|
showAsModal: boolean;
|
|
1111
1182
|
modal: {
|
|
1112
1183
|
buttonInNewLine: boolean;
|
|
1184
|
+
modalWidth: number;
|
|
1113
1185
|
};
|
|
1114
1186
|
};
|
|
1187
|
+
buttonInNewLine: {
|
|
1188
|
+
"ui:widget": string;
|
|
1189
|
+
};
|
|
1190
|
+
modalWidth: {
|
|
1191
|
+
"ui:widget": string;
|
|
1192
|
+
};
|
|
1115
1193
|
};
|
|
1116
1194
|
showAsModal: {
|
|
1117
1195
|
"ui:widget": string;
|
|
@@ -1119,6 +1197,9 @@ declare namespace simple_1 {
|
|
|
1119
1197
|
collapsible: {
|
|
1120
1198
|
"ui:widget": string;
|
|
1121
1199
|
};
|
|
1200
|
+
hidden: {
|
|
1201
|
+
"ui:widget": string;
|
|
1202
|
+
};
|
|
1122
1203
|
"ui:order": string[];
|
|
1123
1204
|
"ui:padding": number;
|
|
1124
1205
|
"ui:label": boolean;
|
|
@@ -1149,8 +1230,8 @@ declare namespace simple_1 {
|
|
|
1149
1230
|
export { title_31 as title };
|
|
1150
1231
|
let icon_8: import("react/jsx-runtime").JSX.Element;
|
|
1151
1232
|
export { icon_8 as icon };
|
|
1152
|
-
let
|
|
1153
|
-
export {
|
|
1233
|
+
let description_15: string;
|
|
1234
|
+
export { description_15 as description };
|
|
1154
1235
|
let child_8: {};
|
|
1155
1236
|
export { child_8 as child };
|
|
1156
1237
|
export namespace optionsSchema_10 {
|
|
@@ -1158,13 +1239,13 @@ declare namespace simple_1 {
|
|
|
1158
1239
|
export { type_28 as type };
|
|
1159
1240
|
let title_32: string;
|
|
1160
1241
|
export { title_32 as title };
|
|
1161
|
-
export namespace
|
|
1242
|
+
export namespace properties_15 {
|
|
1162
1243
|
import readOnly_4 = readOnly;
|
|
1163
1244
|
export { readOnly_4 as readOnly };
|
|
1164
1245
|
import isRequired_4 = isRequired;
|
|
1165
1246
|
export { isRequired_4 as isRequired };
|
|
1166
1247
|
}
|
|
1167
|
-
export {
|
|
1248
|
+
export { properties_15 as properties };
|
|
1168
1249
|
}
|
|
1169
1250
|
export { optionsSchema_10 as optionsSchema };
|
|
1170
1251
|
let optionsSchemaUiSchema_10: {
|
|
@@ -1184,7 +1265,7 @@ declare namespace simple_1 {
|
|
|
1184
1265
|
export { type_29 as type };
|
|
1185
1266
|
let title_33: string;
|
|
1186
1267
|
export { title_33 as title };
|
|
1187
|
-
let
|
|
1268
|
+
let properties_16: {
|
|
1188
1269
|
"ui:options": {
|
|
1189
1270
|
type: string;
|
|
1190
1271
|
title: string;
|
|
@@ -1213,6 +1294,14 @@ declare namespace simple_1 {
|
|
|
1213
1294
|
modalWidth: {
|
|
1214
1295
|
title: string;
|
|
1215
1296
|
type: string;
|
|
1297
|
+
tooltip: string;
|
|
1298
|
+
default: number;
|
|
1299
|
+
minimum: number;
|
|
1300
|
+
maximum: number;
|
|
1301
|
+
oneOf: {
|
|
1302
|
+
title: string;
|
|
1303
|
+
const: number;
|
|
1304
|
+
}[];
|
|
1216
1305
|
};
|
|
1217
1306
|
buttonInNewLine: {
|
|
1218
1307
|
title: string;
|
|
@@ -1249,9 +1338,13 @@ declare namespace simple_1 {
|
|
|
1249
1338
|
span: {
|
|
1250
1339
|
title: string;
|
|
1251
1340
|
type: string;
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1341
|
+
default: number;
|
|
1342
|
+
minimum: number;
|
|
1343
|
+
maximum: number;
|
|
1344
|
+
oneOf: {
|
|
1345
|
+
title: string;
|
|
1346
|
+
const: number;
|
|
1347
|
+
}[];
|
|
1255
1348
|
};
|
|
1256
1349
|
showAsModal: {
|
|
1257
1350
|
title: string;
|
|
@@ -1261,6 +1354,11 @@ declare namespace simple_1 {
|
|
|
1261
1354
|
title: string;
|
|
1262
1355
|
type: string;
|
|
1263
1356
|
};
|
|
1357
|
+
hidden: {
|
|
1358
|
+
type: string;
|
|
1359
|
+
title: string;
|
|
1360
|
+
tooltip: string;
|
|
1361
|
+
};
|
|
1264
1362
|
};
|
|
1265
1363
|
};
|
|
1266
1364
|
"ui:label": {
|
|
@@ -1269,7 +1367,7 @@ declare namespace simple_1 {
|
|
|
1269
1367
|
default: boolean;
|
|
1270
1368
|
};
|
|
1271
1369
|
};
|
|
1272
|
-
export {
|
|
1370
|
+
export { properties_16 as properties };
|
|
1273
1371
|
}
|
|
1274
1372
|
export { optionsUiSchema_9 as optionsUiSchema };
|
|
1275
1373
|
let optionsUiSchemaUiSchema_9: {
|
|
@@ -1282,8 +1380,15 @@ declare namespace simple_1 {
|
|
|
1282
1380
|
showAsModal: boolean;
|
|
1283
1381
|
modal: {
|
|
1284
1382
|
buttonInNewLine: boolean;
|
|
1383
|
+
modalWidth: number;
|
|
1285
1384
|
};
|
|
1286
1385
|
};
|
|
1386
|
+
buttonInNewLine: {
|
|
1387
|
+
"ui:widget": string;
|
|
1388
|
+
};
|
|
1389
|
+
modalWidth: {
|
|
1390
|
+
"ui:widget": string;
|
|
1391
|
+
};
|
|
1287
1392
|
};
|
|
1288
1393
|
showAsModal: {
|
|
1289
1394
|
"ui:widget": string;
|
|
@@ -1291,6 +1396,9 @@ declare namespace simple_1 {
|
|
|
1291
1396
|
collapsible: {
|
|
1292
1397
|
"ui:widget": string;
|
|
1293
1398
|
};
|
|
1399
|
+
hidden: {
|
|
1400
|
+
"ui:widget": string;
|
|
1401
|
+
};
|
|
1294
1402
|
"ui:order": string[];
|
|
1295
1403
|
"ui:padding": number;
|
|
1296
1404
|
"ui:label": boolean;
|
|
@@ -1321,8 +1429,8 @@ declare namespace simple_1 {
|
|
|
1321
1429
|
export { title_34 as title };
|
|
1322
1430
|
let icon_9: import("react/jsx-runtime").JSX.Element;
|
|
1323
1431
|
export { icon_9 as icon };
|
|
1324
|
-
let
|
|
1325
|
-
export {
|
|
1432
|
+
let description_16: string;
|
|
1433
|
+
export { description_16 as description };
|
|
1326
1434
|
let child_9: {};
|
|
1327
1435
|
export { child_9 as child };
|
|
1328
1436
|
export namespace optionsSchema_11 {
|
|
@@ -1330,7 +1438,7 @@ declare namespace simple_1 {
|
|
|
1330
1438
|
export { type_31 as type };
|
|
1331
1439
|
let title_35: string;
|
|
1332
1440
|
export { title_35 as title };
|
|
1333
|
-
export namespace
|
|
1441
|
+
export namespace properties_17 {
|
|
1334
1442
|
export namespace type_32 {
|
|
1335
1443
|
let title_36: string;
|
|
1336
1444
|
export { title_36 as title };
|
|
@@ -1348,7 +1456,7 @@ declare namespace simple_1 {
|
|
|
1348
1456
|
import isRequired_5 = isRequired;
|
|
1349
1457
|
export { isRequired_5 as isRequired };
|
|
1350
1458
|
}
|
|
1351
|
-
export {
|
|
1459
|
+
export { properties_17 as properties };
|
|
1352
1460
|
}
|
|
1353
1461
|
export { optionsSchema_11 as optionsSchema };
|
|
1354
1462
|
let optionsSchemaUiSchema_11: {
|
|
@@ -1375,8 +1483,15 @@ declare namespace simple_1 {
|
|
|
1375
1483
|
showAsModal: boolean;
|
|
1376
1484
|
modal: {
|
|
1377
1485
|
buttonInNewLine: boolean;
|
|
1486
|
+
modalWidth: number;
|
|
1378
1487
|
};
|
|
1379
1488
|
};
|
|
1489
|
+
buttonInNewLine: {
|
|
1490
|
+
"ui:widget": string;
|
|
1491
|
+
};
|
|
1492
|
+
modalWidth: {
|
|
1493
|
+
"ui:widget": string;
|
|
1494
|
+
};
|
|
1380
1495
|
};
|
|
1381
1496
|
showAsModal: {
|
|
1382
1497
|
"ui:widget": string;
|
|
@@ -1384,6 +1499,9 @@ declare namespace simple_1 {
|
|
|
1384
1499
|
collapsible: {
|
|
1385
1500
|
"ui:widget": string;
|
|
1386
1501
|
};
|
|
1502
|
+
hidden: {
|
|
1503
|
+
"ui:widget": string;
|
|
1504
|
+
};
|
|
1387
1505
|
"ui:order": string[];
|
|
1388
1506
|
"ui:padding": number;
|
|
1389
1507
|
"ui:label": boolean;
|
|
@@ -1412,8 +1530,8 @@ declare namespace simple_1 {
|
|
|
1412
1530
|
export { title_37 as title };
|
|
1413
1531
|
let icon_10: import("react/jsx-runtime").JSX.Element;
|
|
1414
1532
|
export { icon_10 as icon };
|
|
1415
|
-
let
|
|
1416
|
-
export {
|
|
1533
|
+
let description_17: string;
|
|
1534
|
+
export { description_17 as description };
|
|
1417
1535
|
let child_10: {};
|
|
1418
1536
|
export { child_10 as child };
|
|
1419
1537
|
export namespace optionsSchema_12 {
|
|
@@ -1421,7 +1539,7 @@ declare namespace simple_1 {
|
|
|
1421
1539
|
export { type_35 as type };
|
|
1422
1540
|
let title_38: string;
|
|
1423
1541
|
export { title_38 as title };
|
|
1424
|
-
export namespace
|
|
1542
|
+
export namespace properties_18 {
|
|
1425
1543
|
export namespace type_36 {
|
|
1426
1544
|
let title_39: string;
|
|
1427
1545
|
export { title_39 as title };
|
|
@@ -1439,7 +1557,7 @@ declare namespace simple_1 {
|
|
|
1439
1557
|
import isRequired_6 = isRequired;
|
|
1440
1558
|
export { isRequired_6 as isRequired };
|
|
1441
1559
|
}
|
|
1442
|
-
export {
|
|
1560
|
+
export { properties_18 as properties };
|
|
1443
1561
|
export namespace dependencies {
|
|
1444
1562
|
export namespace type_38 {
|
|
1445
1563
|
let oneOf_3: ({
|
|
@@ -1467,7 +1585,6 @@ declare namespace simple_1 {
|
|
|
1467
1585
|
items: {
|
|
1468
1586
|
title: string;
|
|
1469
1587
|
type: string;
|
|
1470
|
-
description: string;
|
|
1471
1588
|
properties: {
|
|
1472
1589
|
enum: {
|
|
1473
1590
|
title: string;
|
|
@@ -1490,6 +1607,13 @@ declare namespace simple_1 {
|
|
|
1490
1607
|
}
|
|
1491
1608
|
export { optionsSchema_12 as optionsSchema };
|
|
1492
1609
|
let optionsSchemaUiSchema_12: {
|
|
1610
|
+
items: {
|
|
1611
|
+
enum: {
|
|
1612
|
+
items: {
|
|
1613
|
+
"ui:label": boolean;
|
|
1614
|
+
};
|
|
1615
|
+
};
|
|
1616
|
+
};
|
|
1493
1617
|
readOnly: {
|
|
1494
1618
|
"ui:widget": string;
|
|
1495
1619
|
};
|
|
@@ -1513,8 +1637,15 @@ declare namespace simple_1 {
|
|
|
1513
1637
|
showAsModal: boolean;
|
|
1514
1638
|
modal: {
|
|
1515
1639
|
buttonInNewLine: boolean;
|
|
1640
|
+
modalWidth: number;
|
|
1516
1641
|
};
|
|
1517
1642
|
};
|
|
1643
|
+
buttonInNewLine: {
|
|
1644
|
+
"ui:widget": string;
|
|
1645
|
+
};
|
|
1646
|
+
modalWidth: {
|
|
1647
|
+
"ui:widget": string;
|
|
1648
|
+
};
|
|
1518
1649
|
};
|
|
1519
1650
|
showAsModal: {
|
|
1520
1651
|
"ui:widget": string;
|
|
@@ -1522,6 +1653,9 @@ declare namespace simple_1 {
|
|
|
1522
1653
|
collapsible: {
|
|
1523
1654
|
"ui:widget": string;
|
|
1524
1655
|
};
|
|
1656
|
+
hidden: {
|
|
1657
|
+
"ui:widget": string;
|
|
1658
|
+
};
|
|
1525
1659
|
"ui:order": string[];
|
|
1526
1660
|
"ui:padding": number;
|
|
1527
1661
|
"ui:label": boolean;
|
|
@@ -1541,8 +1675,8 @@ declare namespace simple_1 {
|
|
|
1541
1675
|
export namespace items_3 {
|
|
1542
1676
|
let type_40: string;
|
|
1543
1677
|
export { type_40 as type };
|
|
1544
|
-
let
|
|
1545
|
-
export {
|
|
1678
|
+
let _enum_1: string[];
|
|
1679
|
+
export { _enum_1 as enum };
|
|
1546
1680
|
}
|
|
1547
1681
|
export { items_3 as items };
|
|
1548
1682
|
export let uniqueItems: boolean;
|
|
@@ -1560,8 +1694,8 @@ declare namespace simple_1 {
|
|
|
1560
1694
|
export { title_40 as title };
|
|
1561
1695
|
let icon_11: import("react/jsx-runtime").JSX.Element;
|
|
1562
1696
|
export { icon_11 as icon };
|
|
1563
|
-
let
|
|
1564
|
-
export {
|
|
1697
|
+
let description_18: string;
|
|
1698
|
+
export { description_18 as description };
|
|
1565
1699
|
let child_11: {};
|
|
1566
1700
|
export { child_11 as child };
|
|
1567
1701
|
export namespace optionsSchema_13 {
|
|
@@ -1569,14 +1703,14 @@ declare namespace simple_1 {
|
|
|
1569
1703
|
export { type_41 as type };
|
|
1570
1704
|
let title_41: string;
|
|
1571
1705
|
export { title_41 as title };
|
|
1572
|
-
export namespace
|
|
1706
|
+
export namespace properties_19 {
|
|
1573
1707
|
export namespace type_42 {
|
|
1574
1708
|
let type_43: string;
|
|
1575
1709
|
export { type_43 as type };
|
|
1576
1710
|
let title_42: string;
|
|
1577
1711
|
export { title_42 as title };
|
|
1578
|
-
let
|
|
1579
|
-
export {
|
|
1712
|
+
let description_19: string;
|
|
1713
|
+
export { description_19 as description };
|
|
1580
1714
|
let oneOf_4: {
|
|
1581
1715
|
const: string;
|
|
1582
1716
|
title: string;
|
|
@@ -1589,7 +1723,7 @@ declare namespace simple_1 {
|
|
|
1589
1723
|
import isRequired_7 = isRequired;
|
|
1590
1724
|
export { isRequired_7 as isRequired };
|
|
1591
1725
|
}
|
|
1592
|
-
export {
|
|
1726
|
+
export { properties_19 as properties };
|
|
1593
1727
|
}
|
|
1594
1728
|
export { optionsSchema_13 as optionsSchema };
|
|
1595
1729
|
let optionsSchemaUiSchema_13: {
|
|
@@ -1609,7 +1743,7 @@ declare namespace simple_1 {
|
|
|
1609
1743
|
export { type_44 as type };
|
|
1610
1744
|
let title_43: string;
|
|
1611
1745
|
export { title_43 as title };
|
|
1612
|
-
let
|
|
1746
|
+
let properties_20: {
|
|
1613
1747
|
"ui:options": {
|
|
1614
1748
|
type: string;
|
|
1615
1749
|
title: string;
|
|
@@ -1638,6 +1772,14 @@ declare namespace simple_1 {
|
|
|
1638
1772
|
modalWidth: {
|
|
1639
1773
|
title: string;
|
|
1640
1774
|
type: string;
|
|
1775
|
+
tooltip: string;
|
|
1776
|
+
default: number;
|
|
1777
|
+
minimum: number;
|
|
1778
|
+
maximum: number;
|
|
1779
|
+
oneOf: {
|
|
1780
|
+
title: string;
|
|
1781
|
+
const: number;
|
|
1782
|
+
}[];
|
|
1641
1783
|
};
|
|
1642
1784
|
buttonInNewLine: {
|
|
1643
1785
|
title: string;
|
|
@@ -1659,9 +1801,13 @@ declare namespace simple_1 {
|
|
|
1659
1801
|
span: {
|
|
1660
1802
|
title: string;
|
|
1661
1803
|
type: string;
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1804
|
+
default: number;
|
|
1805
|
+
minimum: number;
|
|
1806
|
+
maximum: number;
|
|
1807
|
+
oneOf: {
|
|
1808
|
+
title: string;
|
|
1809
|
+
const: number;
|
|
1810
|
+
}[];
|
|
1665
1811
|
};
|
|
1666
1812
|
showAsModal: {
|
|
1667
1813
|
title: string;
|
|
@@ -1671,6 +1817,11 @@ declare namespace simple_1 {
|
|
|
1671
1817
|
title: string;
|
|
1672
1818
|
type: string;
|
|
1673
1819
|
};
|
|
1820
|
+
hidden: {
|
|
1821
|
+
type: string;
|
|
1822
|
+
title: string;
|
|
1823
|
+
tooltip: string;
|
|
1824
|
+
};
|
|
1674
1825
|
};
|
|
1675
1826
|
};
|
|
1676
1827
|
"ui:label": {
|
|
@@ -1679,7 +1830,7 @@ declare namespace simple_1 {
|
|
|
1679
1830
|
default: boolean;
|
|
1680
1831
|
};
|
|
1681
1832
|
};
|
|
1682
|
-
export {
|
|
1833
|
+
export { properties_20 as properties };
|
|
1683
1834
|
}
|
|
1684
1835
|
export { optionsUiSchema_12 as optionsUiSchema };
|
|
1685
1836
|
let optionsUiSchemaUiSchema_12: {
|
|
@@ -1692,8 +1843,15 @@ declare namespace simple_1 {
|
|
|
1692
1843
|
showAsModal: boolean;
|
|
1693
1844
|
modal: {
|
|
1694
1845
|
buttonInNewLine: boolean;
|
|
1846
|
+
modalWidth: number;
|
|
1695
1847
|
};
|
|
1696
1848
|
};
|
|
1849
|
+
buttonInNewLine: {
|
|
1850
|
+
"ui:widget": string;
|
|
1851
|
+
};
|
|
1852
|
+
modalWidth: {
|
|
1853
|
+
"ui:widget": string;
|
|
1854
|
+
};
|
|
1697
1855
|
};
|
|
1698
1856
|
showAsModal: {
|
|
1699
1857
|
"ui:widget": string;
|
|
@@ -1701,6 +1859,9 @@ declare namespace simple_1 {
|
|
|
1701
1859
|
collapsible: {
|
|
1702
1860
|
"ui:widget": string;
|
|
1703
1861
|
};
|
|
1862
|
+
hidden: {
|
|
1863
|
+
"ui:widget": string;
|
|
1864
|
+
};
|
|
1704
1865
|
"ui:order": string[];
|
|
1705
1866
|
"ui:padding": number;
|
|
1706
1867
|
"ui:label": boolean;
|
|
@@ -1732,8 +1893,8 @@ declare namespace simple_1 {
|
|
|
1732
1893
|
export { title_44 as title };
|
|
1733
1894
|
let icon_12: import("react/jsx-runtime").JSX.Element;
|
|
1734
1895
|
export { icon_12 as icon };
|
|
1735
|
-
let
|
|
1736
|
-
export {
|
|
1896
|
+
let description_20: string;
|
|
1897
|
+
export { description_20 as description };
|
|
1737
1898
|
let child_12: {};
|
|
1738
1899
|
export { child_12 as child };
|
|
1739
1900
|
export namespace optionsSchema_14 {
|
|
@@ -1741,14 +1902,14 @@ declare namespace simple_1 {
|
|
|
1741
1902
|
export { type_46 as type };
|
|
1742
1903
|
let title_45: string;
|
|
1743
1904
|
export { title_45 as title };
|
|
1744
|
-
export namespace
|
|
1745
|
-
export namespace
|
|
1905
|
+
export namespace properties_21 {
|
|
1906
|
+
export namespace _enum_2 {
|
|
1746
1907
|
let title_46: string;
|
|
1747
1908
|
export { title_46 as title };
|
|
1748
1909
|
let type_47: string;
|
|
1749
1910
|
export { type_47 as type };
|
|
1750
|
-
let
|
|
1751
|
-
export {
|
|
1911
|
+
let description_21: string;
|
|
1912
|
+
export { description_21 as description };
|
|
1752
1913
|
export namespace items_4 {
|
|
1753
1914
|
let title_47: string;
|
|
1754
1915
|
export { title_47 as title };
|
|
@@ -1757,13 +1918,13 @@ declare namespace simple_1 {
|
|
|
1757
1918
|
}
|
|
1758
1919
|
export { items_4 as items };
|
|
1759
1920
|
}
|
|
1760
|
-
export {
|
|
1921
|
+
export { _enum_2 as enum };
|
|
1761
1922
|
import readOnly_8 = readOnly;
|
|
1762
1923
|
export { readOnly_8 as readOnly };
|
|
1763
1924
|
import isRequired_8 = isRequired;
|
|
1764
1925
|
export { isRequired_8 as isRequired };
|
|
1765
1926
|
}
|
|
1766
|
-
export {
|
|
1927
|
+
export { properties_21 as properties };
|
|
1767
1928
|
}
|
|
1768
1929
|
export { optionsSchema_14 as optionsSchema };
|
|
1769
1930
|
let optionsSchemaUiSchema_14: {
|
|
@@ -1790,15 +1951,25 @@ declare namespace simple_1 {
|
|
|
1790
1951
|
showAsModal: boolean;
|
|
1791
1952
|
modal: {
|
|
1792
1953
|
buttonInNewLine: boolean;
|
|
1954
|
+
modalWidth: number;
|
|
1793
1955
|
};
|
|
1794
1956
|
};
|
|
1795
|
-
|
|
1957
|
+
buttonInNewLine: {
|
|
1958
|
+
"ui:widget": string;
|
|
1959
|
+
};
|
|
1960
|
+
modalWidth: {
|
|
1961
|
+
"ui:widget": string;
|
|
1962
|
+
};
|
|
1963
|
+
};
|
|
1796
1964
|
showAsModal: {
|
|
1797
1965
|
"ui:widget": string;
|
|
1798
1966
|
};
|
|
1799
1967
|
collapsible: {
|
|
1800
1968
|
"ui:widget": string;
|
|
1801
1969
|
};
|
|
1970
|
+
hidden: {
|
|
1971
|
+
"ui:widget": string;
|
|
1972
|
+
};
|
|
1802
1973
|
"ui:order": string[];
|
|
1803
1974
|
"ui:padding": number;
|
|
1804
1975
|
"ui:label": boolean;
|
|
@@ -1815,8 +1986,8 @@ declare namespace simple_1 {
|
|
|
1815
1986
|
export namespace schema_12 {
|
|
1816
1987
|
let type_49: string;
|
|
1817
1988
|
export { type_49 as type };
|
|
1818
|
-
let
|
|
1819
|
-
export {
|
|
1989
|
+
let _enum_3: string[];
|
|
1990
|
+
export { _enum_3 as enum };
|
|
1820
1991
|
}
|
|
1821
1992
|
export { schema_12 as schema };
|
|
1822
1993
|
let uiSchema_12: {
|
|
@@ -1831,8 +2002,8 @@ declare namespace simple_1 {
|
|
|
1831
2002
|
export { title_48 as title };
|
|
1832
2003
|
let icon_13: import("react/jsx-runtime").JSX.Element;
|
|
1833
2004
|
export { icon_13 as icon };
|
|
1834
|
-
let
|
|
1835
|
-
export {
|
|
2005
|
+
let description_22: string;
|
|
2006
|
+
export { description_22 as description };
|
|
1836
2007
|
let child_13: {};
|
|
1837
2008
|
export { child_13 as child };
|
|
1838
2009
|
export namespace optionsSchema_15 {
|
|
@@ -1840,7 +2011,7 @@ declare namespace simple_1 {
|
|
|
1840
2011
|
export { type_50 as type };
|
|
1841
2012
|
let title_49: string;
|
|
1842
2013
|
export { title_49 as title };
|
|
1843
|
-
export namespace
|
|
2014
|
+
export namespace properties_22 {
|
|
1844
2015
|
export namespace type_51 {
|
|
1845
2016
|
let title_50: string;
|
|
1846
2017
|
export { title_50 as title };
|
|
@@ -1858,7 +2029,7 @@ declare namespace simple_1 {
|
|
|
1858
2029
|
import isRequired_9 = isRequired;
|
|
1859
2030
|
export { isRequired_9 as isRequired };
|
|
1860
2031
|
}
|
|
1861
|
-
export {
|
|
2032
|
+
export { properties_22 as properties };
|
|
1862
2033
|
export let allOf: ({
|
|
1863
2034
|
if: {
|
|
1864
2035
|
properties: {
|
|
@@ -1912,6 +2083,13 @@ declare namespace simple_1 {
|
|
|
1912
2083
|
}
|
|
1913
2084
|
export { optionsSchema_15 as optionsSchema };
|
|
1914
2085
|
let optionsSchemaUiSchema_15: {
|
|
2086
|
+
items: {
|
|
2087
|
+
enum: {
|
|
2088
|
+
items: {
|
|
2089
|
+
"ui:label": boolean;
|
|
2090
|
+
};
|
|
2091
|
+
};
|
|
2092
|
+
};
|
|
1915
2093
|
readOnly: {
|
|
1916
2094
|
"ui:widget": string;
|
|
1917
2095
|
};
|
|
@@ -1935,8 +2113,15 @@ declare namespace simple_1 {
|
|
|
1935
2113
|
showAsModal: boolean;
|
|
1936
2114
|
modal: {
|
|
1937
2115
|
buttonInNewLine: boolean;
|
|
2116
|
+
modalWidth: number;
|
|
1938
2117
|
};
|
|
1939
2118
|
};
|
|
2119
|
+
buttonInNewLine: {
|
|
2120
|
+
"ui:widget": string;
|
|
2121
|
+
};
|
|
2122
|
+
modalWidth: {
|
|
2123
|
+
"ui:widget": string;
|
|
2124
|
+
};
|
|
1940
2125
|
};
|
|
1941
2126
|
showAsModal: {
|
|
1942
2127
|
"ui:widget": string;
|
|
@@ -1944,6 +2129,9 @@ declare namespace simple_1 {
|
|
|
1944
2129
|
collapsible: {
|
|
1945
2130
|
"ui:widget": string;
|
|
1946
2131
|
};
|
|
2132
|
+
hidden: {
|
|
2133
|
+
"ui:widget": string;
|
|
2134
|
+
};
|
|
1947
2135
|
"ui:order": string[];
|
|
1948
2136
|
"ui:padding": number;
|
|
1949
2137
|
"ui:label": boolean;
|
|
@@ -1976,8 +2164,8 @@ declare namespace simple_1 {
|
|
|
1976
2164
|
export { title_51 as title };
|
|
1977
2165
|
let icon_14: import("react/jsx-runtime").JSX.Element;
|
|
1978
2166
|
export { icon_14 as icon };
|
|
1979
|
-
let
|
|
1980
|
-
export {
|
|
2167
|
+
let description_23: string;
|
|
2168
|
+
export { description_23 as description };
|
|
1981
2169
|
let child_14: {};
|
|
1982
2170
|
export { child_14 as child };
|
|
1983
2171
|
export namespace optionsSchema_16 {
|
|
@@ -1985,25 +2173,25 @@ declare namespace simple_1 {
|
|
|
1985
2173
|
export { type_54 as type };
|
|
1986
2174
|
let title_52: string;
|
|
1987
2175
|
export { title_52 as title };
|
|
1988
|
-
export namespace
|
|
1989
|
-
export namespace
|
|
2176
|
+
export namespace properties_23 {
|
|
2177
|
+
export namespace format_2 {
|
|
1990
2178
|
let type_55: string;
|
|
1991
2179
|
export { type_55 as type };
|
|
1992
2180
|
let title_53: string;
|
|
1993
2181
|
export { title_53 as title };
|
|
1994
|
-
let
|
|
1995
|
-
export {
|
|
2182
|
+
let _enum_4: string[];
|
|
2183
|
+
export { _enum_4 as enum };
|
|
1996
2184
|
let _default_14: string;
|
|
1997
2185
|
export { _default_14 as default };
|
|
1998
2186
|
}
|
|
1999
|
-
export {
|
|
2187
|
+
export { format_2 as format };
|
|
2000
2188
|
export namespace customFormat {
|
|
2001
2189
|
let type_56: string;
|
|
2002
2190
|
export { type_56 as type };
|
|
2003
2191
|
let title_54: string;
|
|
2004
2192
|
export { title_54 as title };
|
|
2005
|
-
let
|
|
2006
|
-
export {
|
|
2193
|
+
let description_24: string;
|
|
2194
|
+
export { description_24 as description };
|
|
2007
2195
|
export let tooltip: string;
|
|
2008
2196
|
}
|
|
2009
2197
|
export namespace minDate {
|
|
@@ -2023,7 +2211,7 @@ declare namespace simple_1 {
|
|
|
2023
2211
|
import isRequired_10 = isRequired;
|
|
2024
2212
|
export { isRequired_10 as isRequired };
|
|
2025
2213
|
}
|
|
2026
|
-
export {
|
|
2214
|
+
export { properties_23 as properties };
|
|
2027
2215
|
}
|
|
2028
2216
|
export { optionsSchema_16 as optionsSchema };
|
|
2029
2217
|
let optionsSchemaUiSchema_16: {
|
|
@@ -2063,8 +2251,15 @@ declare namespace simple_1 {
|
|
|
2063
2251
|
showAsModal: boolean;
|
|
2064
2252
|
modal: {
|
|
2065
2253
|
buttonInNewLine: boolean;
|
|
2254
|
+
modalWidth: number;
|
|
2066
2255
|
};
|
|
2067
2256
|
};
|
|
2257
|
+
buttonInNewLine: {
|
|
2258
|
+
"ui:widget": string;
|
|
2259
|
+
};
|
|
2260
|
+
modalWidth: {
|
|
2261
|
+
"ui:widget": string;
|
|
2262
|
+
};
|
|
2068
2263
|
};
|
|
2069
2264
|
showAsModal: {
|
|
2070
2265
|
"ui:widget": string;
|
|
@@ -2072,6 +2267,9 @@ declare namespace simple_1 {
|
|
|
2072
2267
|
collapsible: {
|
|
2073
2268
|
"ui:widget": string;
|
|
2074
2269
|
};
|
|
2270
|
+
hidden: {
|
|
2271
|
+
"ui:widget": string;
|
|
2272
|
+
};
|
|
2075
2273
|
"ui:order": string[];
|
|
2076
2274
|
"ui:padding": number;
|
|
2077
2275
|
"ui:label": boolean;
|
|
@@ -2097,15 +2295,15 @@ declare namespace simple_1 {
|
|
|
2097
2295
|
}
|
|
2098
2296
|
export { _default_15 as default };
|
|
2099
2297
|
}
|
|
2100
|
-
|
|
2101
|
-
declare namespace advanced_1 {
|
|
2102
|
-
namespace uri {
|
|
2298
|
+
export namespace email {
|
|
2103
2299
|
let title_57: string;
|
|
2104
2300
|
export { title_57 as title };
|
|
2105
2301
|
let icon_15: import("react/jsx-runtime").JSX.Element;
|
|
2106
2302
|
export { icon_15 as icon };
|
|
2107
|
-
let
|
|
2108
|
-
export {
|
|
2303
|
+
let description_25: string;
|
|
2304
|
+
export { description_25 as description };
|
|
2305
|
+
let className_4: string;
|
|
2306
|
+
export { className_4 as className };
|
|
2109
2307
|
let child_15: {};
|
|
2110
2308
|
export { child_15 as child };
|
|
2111
2309
|
export namespace optionsSchema_17 {
|
|
@@ -2113,13 +2311,24 @@ declare namespace advanced_1 {
|
|
|
2113
2311
|
export { type_60 as type };
|
|
2114
2312
|
let title_58: string;
|
|
2115
2313
|
export { title_58 as title };
|
|
2116
|
-
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 };
|
|
2117
2326
|
import readOnly_11 = readOnly;
|
|
2118
2327
|
export { readOnly_11 as readOnly };
|
|
2119
2328
|
import isRequired_11 = isRequired;
|
|
2120
2329
|
export { isRequired_11 as isRequired };
|
|
2121
2330
|
}
|
|
2122
|
-
export {
|
|
2331
|
+
export { properties_24 as properties };
|
|
2123
2332
|
}
|
|
2124
2333
|
export { optionsSchema_17 as optionsSchema };
|
|
2125
2334
|
let optionsSchemaUiSchema_17: {
|
|
@@ -2129,17 +2338,20 @@ declare namespace advanced_1 {
|
|
|
2129
2338
|
isRequired: {
|
|
2130
2339
|
"ui:widget": string;
|
|
2131
2340
|
};
|
|
2341
|
+
pattern: {
|
|
2342
|
+
"ui:placeholder": string;
|
|
2343
|
+
};
|
|
2132
2344
|
"ui:ObjectFieldTemplate": ({ properties }: {
|
|
2133
2345
|
properties: any;
|
|
2134
2346
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2135
2347
|
};
|
|
2136
2348
|
export { optionsSchemaUiSchema_17 as optionsSchemaUiSchema };
|
|
2137
2349
|
export namespace optionsUiSchema_16 {
|
|
2138
|
-
let
|
|
2139
|
-
export {
|
|
2140
|
-
let
|
|
2141
|
-
export {
|
|
2142
|
-
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: {
|
|
2143
2355
|
"ui:options": {
|
|
2144
2356
|
type: string;
|
|
2145
2357
|
title: string;
|
|
@@ -2168,6 +2380,14 @@ declare namespace advanced_1 {
|
|
|
2168
2380
|
modalWidth: {
|
|
2169
2381
|
title: string;
|
|
2170
2382
|
type: string;
|
|
2383
|
+
tooltip: string;
|
|
2384
|
+
default: number;
|
|
2385
|
+
minimum: number;
|
|
2386
|
+
maximum: number;
|
|
2387
|
+
oneOf: {
|
|
2388
|
+
title: string;
|
|
2389
|
+
const: number;
|
|
2390
|
+
}[];
|
|
2171
2391
|
};
|
|
2172
2392
|
buttonInNewLine: {
|
|
2173
2393
|
title: string;
|
|
@@ -2186,12 +2406,25 @@ declare namespace advanced_1 {
|
|
|
2186
2406
|
title: string;
|
|
2187
2407
|
description: string;
|
|
2188
2408
|
};
|
|
2409
|
+
convertToUppercase: {
|
|
2410
|
+
type: string;
|
|
2411
|
+
title: string;
|
|
2412
|
+
};
|
|
2413
|
+
mask: {
|
|
2414
|
+
type: string;
|
|
2415
|
+
title: string;
|
|
2416
|
+
tooltip: string;
|
|
2417
|
+
};
|
|
2189
2418
|
span: {
|
|
2190
2419
|
title: string;
|
|
2191
2420
|
type: string;
|
|
2192
|
-
|
|
2193
|
-
|
|
2194
|
-
|
|
2421
|
+
default: number;
|
|
2422
|
+
minimum: number;
|
|
2423
|
+
maximum: number;
|
|
2424
|
+
oneOf: {
|
|
2425
|
+
title: string;
|
|
2426
|
+
const: number;
|
|
2427
|
+
}[];
|
|
2195
2428
|
};
|
|
2196
2429
|
showAsModal: {
|
|
2197
2430
|
title: string;
|
|
@@ -2201,6 +2434,11 @@ declare namespace advanced_1 {
|
|
|
2201
2434
|
title: string;
|
|
2202
2435
|
type: string;
|
|
2203
2436
|
};
|
|
2437
|
+
hidden: {
|
|
2438
|
+
type: string;
|
|
2439
|
+
title: string;
|
|
2440
|
+
tooltip: string;
|
|
2441
|
+
};
|
|
2204
2442
|
};
|
|
2205
2443
|
};
|
|
2206
2444
|
"ui:label": {
|
|
@@ -2209,11 +2447,21 @@ declare namespace advanced_1 {
|
|
|
2209
2447
|
default: boolean;
|
|
2210
2448
|
};
|
|
2211
2449
|
};
|
|
2212
|
-
export {
|
|
2450
|
+
export { properties_25 as properties };
|
|
2213
2451
|
}
|
|
2214
2452
|
export { optionsUiSchema_16 as optionsUiSchema };
|
|
2215
2453
|
let optionsUiSchemaUiSchema_16: {
|
|
2216
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
|
+
};
|
|
2217
2465
|
span: {
|
|
2218
2466
|
"ui:widget": string;
|
|
2219
2467
|
};
|
|
@@ -2222,8 +2470,15 @@ declare namespace advanced_1 {
|
|
|
2222
2470
|
showAsModal: boolean;
|
|
2223
2471
|
modal: {
|
|
2224
2472
|
buttonInNewLine: boolean;
|
|
2473
|
+
modalWidth: number;
|
|
2225
2474
|
};
|
|
2226
2475
|
};
|
|
2476
|
+
buttonInNewLine: {
|
|
2477
|
+
"ui:widget": string;
|
|
2478
|
+
};
|
|
2479
|
+
modalWidth: {
|
|
2480
|
+
"ui:widget": string;
|
|
2481
|
+
};
|
|
2227
2482
|
};
|
|
2228
2483
|
showAsModal: {
|
|
2229
2484
|
"ui:widget": string;
|
|
@@ -2231,6 +2486,9 @@ declare namespace advanced_1 {
|
|
|
2231
2486
|
collapsible: {
|
|
2232
2487
|
"ui:widget": string;
|
|
2233
2488
|
};
|
|
2489
|
+
hidden: {
|
|
2490
|
+
"ui:widget": string;
|
|
2491
|
+
};
|
|
2234
2492
|
"ui:order": string[];
|
|
2235
2493
|
"ui:padding": number;
|
|
2236
2494
|
"ui:label": boolean;
|
|
@@ -2245,10 +2503,10 @@ declare namespace advanced_1 {
|
|
|
2245
2503
|
export { optionsUiSchemaUiSchema_16 as optionsUiSchemaUiSchema };
|
|
2246
2504
|
namespace _default_16 {
|
|
2247
2505
|
export namespace schema_15 {
|
|
2248
|
-
let
|
|
2249
|
-
export {
|
|
2250
|
-
let
|
|
2251
|
-
export {
|
|
2506
|
+
let type_63: string;
|
|
2507
|
+
export { type_63 as type };
|
|
2508
|
+
let format_4: string;
|
|
2509
|
+
export { format_4 as format };
|
|
2252
2510
|
}
|
|
2253
2511
|
export { schema_15 as schema };
|
|
2254
2512
|
let uiSchema_15: {
|
|
@@ -2258,27 +2516,29 @@ declare namespace advanced_1 {
|
|
|
2258
2516
|
}
|
|
2259
2517
|
export { _default_16 as default };
|
|
2260
2518
|
}
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
|
|
2519
|
+
}
|
|
2520
|
+
declare namespace advanced_1 {
|
|
2521
|
+
namespace uri {
|
|
2522
|
+
let title_61: string;
|
|
2523
|
+
export { title_61 as title };
|
|
2264
2524
|
let icon_16: import("react/jsx-runtime").JSX.Element;
|
|
2265
2525
|
export { icon_16 as icon };
|
|
2266
|
-
let
|
|
2267
|
-
export {
|
|
2526
|
+
let description_27: string;
|
|
2527
|
+
export { description_27 as description };
|
|
2268
2528
|
let child_16: {};
|
|
2269
2529
|
export { child_16 as child };
|
|
2270
2530
|
export namespace optionsSchema_18 {
|
|
2271
|
-
let
|
|
2272
|
-
export {
|
|
2273
|
-
let
|
|
2274
|
-
export {
|
|
2275
|
-
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 {
|
|
2276
2536
|
import readOnly_12 = readOnly;
|
|
2277
2537
|
export { readOnly_12 as readOnly };
|
|
2278
2538
|
import isRequired_12 = isRequired;
|
|
2279
2539
|
export { isRequired_12 as isRequired };
|
|
2280
2540
|
}
|
|
2281
|
-
export {
|
|
2541
|
+
export { properties_26 as properties };
|
|
2282
2542
|
}
|
|
2283
2543
|
export { optionsSchema_18 as optionsSchema };
|
|
2284
2544
|
let optionsSchemaUiSchema_18: {
|
|
@@ -2293,7 +2553,100 @@ declare namespace advanced_1 {
|
|
|
2293
2553
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2294
2554
|
};
|
|
2295
2555
|
export { optionsSchemaUiSchema_18 as optionsSchemaUiSchema };
|
|
2296
|
-
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
|
+
}
|
|
2297
2650
|
export { optionsUiSchema_17 as optionsUiSchema };
|
|
2298
2651
|
let optionsUiSchemaUiSchema_17: {
|
|
2299
2652
|
"ui:options": {
|
|
@@ -2305,8 +2658,15 @@ declare namespace advanced_1 {
|
|
|
2305
2658
|
showAsModal: boolean;
|
|
2306
2659
|
modal: {
|
|
2307
2660
|
buttonInNewLine: boolean;
|
|
2661
|
+
modalWidth: number;
|
|
2308
2662
|
};
|
|
2309
2663
|
};
|
|
2664
|
+
buttonInNewLine: {
|
|
2665
|
+
"ui:widget": string;
|
|
2666
|
+
};
|
|
2667
|
+
modalWidth: {
|
|
2668
|
+
"ui:widget": string;
|
|
2669
|
+
};
|
|
2310
2670
|
};
|
|
2311
2671
|
showAsModal: {
|
|
2312
2672
|
"ui:widget": string;
|
|
@@ -2314,6 +2674,9 @@ declare namespace advanced_1 {
|
|
|
2314
2674
|
collapsible: {
|
|
2315
2675
|
"ui:widget": string;
|
|
2316
2676
|
};
|
|
2677
|
+
hidden: {
|
|
2678
|
+
"ui:widget": string;
|
|
2679
|
+
};
|
|
2317
2680
|
"ui:order": string[];
|
|
2318
2681
|
"ui:padding": number;
|
|
2319
2682
|
"ui:label": boolean;
|
|
@@ -2328,8 +2691,10 @@ declare namespace advanced_1 {
|
|
|
2328
2691
|
export { optionsUiSchemaUiSchema_17 as optionsUiSchemaUiSchema };
|
|
2329
2692
|
namespace _default_17 {
|
|
2330
2693
|
export namespace schema_16 {
|
|
2331
|
-
let
|
|
2332
|
-
export {
|
|
2694
|
+
let type_66: string;
|
|
2695
|
+
export { type_66 as type };
|
|
2696
|
+
let format_5: string;
|
|
2697
|
+
export { format_5 as format };
|
|
2333
2698
|
}
|
|
2334
2699
|
export { schema_16 as schema };
|
|
2335
2700
|
let uiSchema_16: {
|
|
@@ -2339,37 +2704,21 @@ declare namespace advanced_1 {
|
|
|
2339
2704
|
}
|
|
2340
2705
|
export { _default_17 as default };
|
|
2341
2706
|
}
|
|
2342
|
-
namespace
|
|
2343
|
-
let
|
|
2344
|
-
export {
|
|
2707
|
+
namespace richeditor {
|
|
2708
|
+
let title_64: string;
|
|
2709
|
+
export { title_64 as title };
|
|
2345
2710
|
let icon_17: import("react/jsx-runtime").JSX.Element;
|
|
2346
2711
|
export { icon_17 as icon };
|
|
2347
|
-
let
|
|
2348
|
-
export {
|
|
2712
|
+
let description_28: string;
|
|
2713
|
+
export { description_28 as description };
|
|
2349
2714
|
let child_17: {};
|
|
2350
2715
|
export { child_17 as child };
|
|
2351
2716
|
export namespace optionsSchema_19 {
|
|
2352
|
-
let
|
|
2353
|
-
export {
|
|
2354
|
-
let
|
|
2355
|
-
export {
|
|
2717
|
+
let type_67: string;
|
|
2718
|
+
export { type_67 as type };
|
|
2719
|
+
let title_65: string;
|
|
2720
|
+
export { title_65 as title };
|
|
2356
2721
|
export namespace properties_28 {
|
|
2357
|
-
export namespace tagPattern {
|
|
2358
|
-
let type_66: string;
|
|
2359
|
-
export { type_66 as type };
|
|
2360
|
-
let title_64: string;
|
|
2361
|
-
export { title_64 as title };
|
|
2362
|
-
let description_27: string;
|
|
2363
|
-
export { description_27 as description };
|
|
2364
|
-
}
|
|
2365
|
-
export namespace tagPatternErrorMessage {
|
|
2366
|
-
let type_67: string;
|
|
2367
|
-
export { type_67 as type };
|
|
2368
|
-
let title_65: string;
|
|
2369
|
-
export { title_65 as title };
|
|
2370
|
-
let description_28: string;
|
|
2371
|
-
export { description_28 as description };
|
|
2372
|
-
}
|
|
2373
2722
|
import readOnly_13 = readOnly;
|
|
2374
2723
|
export { readOnly_13 as readOnly };
|
|
2375
2724
|
import isRequired_13 = isRequired;
|
|
@@ -2390,27 +2739,138 @@ declare namespace advanced_1 {
|
|
|
2390
2739
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2391
2740
|
};
|
|
2392
2741
|
export { optionsSchemaUiSchema_19 as optionsSchemaUiSchema };
|
|
2393
|
-
export namespace optionsUiSchema_18 {
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
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;
|
|
2405
2827
|
};
|
|
2406
2828
|
};
|
|
2407
2829
|
};
|
|
2830
|
+
"ui:label": {
|
|
2831
|
+
title: string;
|
|
2832
|
+
type: string;
|
|
2833
|
+
default: boolean;
|
|
2834
|
+
};
|
|
2835
|
+
};
|
|
2836
|
+
export { properties_29 as properties };
|
|
2837
|
+
}
|
|
2838
|
+
export { optionsUiSchema_18 as optionsUiSchema };
|
|
2839
|
+
let optionsUiSchemaUiSchema_18: {
|
|
2840
|
+
"ui:options": {
|
|
2841
|
+
height: {
|
|
2842
|
+
"ui:widget": string;
|
|
2843
|
+
"ui:options": {
|
|
2844
|
+
suffix: string;
|
|
2845
|
+
};
|
|
2846
|
+
};
|
|
2847
|
+
span: {
|
|
2848
|
+
"ui:widget": string;
|
|
2849
|
+
};
|
|
2850
|
+
modal: {
|
|
2851
|
+
"ui:options": {
|
|
2852
|
+
showAsModal: boolean;
|
|
2853
|
+
modal: {
|
|
2854
|
+
buttonInNewLine: boolean;
|
|
2855
|
+
modalWidth: number;
|
|
2856
|
+
};
|
|
2857
|
+
};
|
|
2858
|
+
buttonInNewLine: {
|
|
2859
|
+
"ui:widget": string;
|
|
2860
|
+
};
|
|
2861
|
+
modalWidth: {
|
|
2862
|
+
"ui:widget": string;
|
|
2863
|
+
};
|
|
2864
|
+
};
|
|
2408
2865
|
showAsModal: {
|
|
2409
2866
|
"ui:widget": string;
|
|
2410
2867
|
};
|
|
2411
2868
|
collapsible: {
|
|
2412
2869
|
"ui:widget": string;
|
|
2413
2870
|
};
|
|
2871
|
+
hidden: {
|
|
2872
|
+
"ui:widget": string;
|
|
2873
|
+
};
|
|
2414
2874
|
"ui:order": string[];
|
|
2415
2875
|
"ui:padding": number;
|
|
2416
2876
|
"ui:label": boolean;
|
|
@@ -2418,32 +2878,27 @@ declare namespace advanced_1 {
|
|
|
2418
2878
|
"ui:label": {
|
|
2419
2879
|
"ui:widget": string;
|
|
2420
2880
|
};
|
|
2421
|
-
"ui:ObjectFieldTemplate": ({ properties }: {
|
|
2422
|
-
properties: any;
|
|
2423
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
2424
2881
|
};
|
|
2425
2882
|
export { optionsUiSchemaUiSchema_18 as optionsUiSchemaUiSchema };
|
|
2426
2883
|
namespace _default_18 {
|
|
2427
2884
|
export namespace schema_17 {
|
|
2428
|
-
let
|
|
2429
|
-
export {
|
|
2430
|
-
export namespace items_5 {
|
|
2431
|
-
let type_69: string;
|
|
2432
|
-
export { type_69 as type };
|
|
2433
|
-
}
|
|
2434
|
-
export { items_5 as items };
|
|
2885
|
+
let type_69: string;
|
|
2886
|
+
export { type_69 as type };
|
|
2435
2887
|
}
|
|
2436
2888
|
export { schema_17 as schema };
|
|
2437
2889
|
let uiSchema_17: {
|
|
2438
|
-
"ui:
|
|
2890
|
+
"ui:widget": string;
|
|
2891
|
+
"ui:options": {
|
|
2892
|
+
height: number;
|
|
2893
|
+
};
|
|
2439
2894
|
};
|
|
2440
2895
|
export { uiSchema_17 as uiSchema };
|
|
2441
2896
|
}
|
|
2442
2897
|
export { _default_18 as default };
|
|
2443
2898
|
}
|
|
2444
|
-
namespace
|
|
2445
|
-
let
|
|
2446
|
-
export {
|
|
2899
|
+
namespace tags {
|
|
2900
|
+
let title_67: string;
|
|
2901
|
+
export { title_67 as title };
|
|
2447
2902
|
let icon_18: import("react/jsx-runtime").JSX.Element;
|
|
2448
2903
|
export { icon_18 as icon };
|
|
2449
2904
|
let description_29: string;
|
|
@@ -2451,17 +2906,33 @@ declare namespace advanced_1 {
|
|
|
2451
2906
|
let child_18: {};
|
|
2452
2907
|
export { child_18 as child };
|
|
2453
2908
|
export namespace optionsSchema_20 {
|
|
2909
|
+
let title_68: string;
|
|
2910
|
+
export { title_68 as title };
|
|
2454
2911
|
let type_70: string;
|
|
2455
2912
|
export { type_70 as type };
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
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
|
+
}
|
|
2459
2930
|
import readOnly_14 = readOnly;
|
|
2460
2931
|
export { readOnly_14 as readOnly };
|
|
2461
2932
|
import isRequired_14 = isRequired;
|
|
2462
2933
|
export { isRequired_14 as isRequired };
|
|
2463
2934
|
}
|
|
2464
|
-
export {
|
|
2935
|
+
export { properties_30 as properties };
|
|
2465
2936
|
}
|
|
2466
2937
|
export { optionsSchema_20 as optionsSchema };
|
|
2467
2938
|
let optionsSchemaUiSchema_20: {
|
|
@@ -2476,12 +2947,108 @@ declare namespace advanced_1 {
|
|
|
2476
2947
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2477
2948
|
};
|
|
2478
2949
|
export { optionsSchemaUiSchema_20 as optionsSchemaUiSchema };
|
|
2479
|
-
export namespace optionsUiSchema_19 {
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
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: {
|
|
2485
3052
|
"ui:servicesList": {
|
|
2486
3053
|
title: string;
|
|
2487
3054
|
type: string;
|
|
@@ -2501,9 +3068,13 @@ declare namespace advanced_1 {
|
|
|
2501
3068
|
span: {
|
|
2502
3069
|
title: string;
|
|
2503
3070
|
type: string;
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
3071
|
+
default: number;
|
|
3072
|
+
minimum: number;
|
|
3073
|
+
maximum: number;
|
|
3074
|
+
oneOf: {
|
|
3075
|
+
title: string;
|
|
3076
|
+
const: number;
|
|
3077
|
+
}[];
|
|
2507
3078
|
};
|
|
2508
3079
|
showAsModal: {
|
|
2509
3080
|
title: string;
|
|
@@ -2513,6 +3084,11 @@ declare namespace advanced_1 {
|
|
|
2513
3084
|
title: string;
|
|
2514
3085
|
type: string;
|
|
2515
3086
|
};
|
|
3087
|
+
hidden: {
|
|
3088
|
+
type: string;
|
|
3089
|
+
title: string;
|
|
3090
|
+
tooltip: string;
|
|
3091
|
+
};
|
|
2516
3092
|
};
|
|
2517
3093
|
dependencies: {
|
|
2518
3094
|
showAsModal: {
|
|
@@ -2539,6 +3115,14 @@ declare namespace advanced_1 {
|
|
|
2539
3115
|
modalWidth: {
|
|
2540
3116
|
title: string;
|
|
2541
3117
|
type: string;
|
|
3118
|
+
tooltip: string;
|
|
3119
|
+
default: number;
|
|
3120
|
+
minimum: number;
|
|
3121
|
+
maximum: number;
|
|
3122
|
+
oneOf: {
|
|
3123
|
+
title: string;
|
|
3124
|
+
const: number;
|
|
3125
|
+
}[];
|
|
2542
3126
|
};
|
|
2543
3127
|
buttonInNewLine: {
|
|
2544
3128
|
title: string;
|
|
@@ -2558,10 +3142,10 @@ declare namespace advanced_1 {
|
|
|
2558
3142
|
default: boolean;
|
|
2559
3143
|
};
|
|
2560
3144
|
};
|
|
2561
|
-
export {
|
|
3145
|
+
export { properties_32 as properties };
|
|
2562
3146
|
}
|
|
2563
|
-
export {
|
|
2564
|
-
let
|
|
3147
|
+
export { optionsUiSchema_20 as optionsUiSchema };
|
|
3148
|
+
let optionsUiSchemaUiSchema_20: {
|
|
2565
3149
|
"ui:servicesList": {
|
|
2566
3150
|
"ui:widget": string;
|
|
2567
3151
|
};
|
|
@@ -2574,8 +3158,417 @@ declare namespace advanced_1 {
|
|
|
2574
3158
|
showAsModal: boolean;
|
|
2575
3159
|
modal: {
|
|
2576
3160
|
buttonInNewLine: boolean;
|
|
3161
|
+
modalWidth: number;
|
|
3162
|
+
};
|
|
3163
|
+
};
|
|
3164
|
+
buttonInNewLine: {
|
|
3165
|
+
"ui:widget": string;
|
|
3166
|
+
};
|
|
3167
|
+
modalWidth: {
|
|
3168
|
+
"ui:widget": string;
|
|
3169
|
+
};
|
|
3170
|
+
};
|
|
3171
|
+
showAsModal: {
|
|
3172
|
+
"ui:widget": string;
|
|
3173
|
+
};
|
|
3174
|
+
collapsible: {
|
|
3175
|
+
"ui:widget": string;
|
|
3176
|
+
};
|
|
3177
|
+
hidden: {
|
|
3178
|
+
"ui:widget": string;
|
|
3179
|
+
};
|
|
3180
|
+
"ui:order": string[];
|
|
3181
|
+
"ui:padding": number;
|
|
3182
|
+
"ui:label": boolean;
|
|
3183
|
+
};
|
|
3184
|
+
"ui:label": {
|
|
3185
|
+
"ui:widget": string;
|
|
3186
|
+
};
|
|
3187
|
+
"ui:ObjectFieldTemplate": ({ properties }: {
|
|
3188
|
+
properties: any;
|
|
3189
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
3190
|
+
};
|
|
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 };
|
|
3198
|
+
}
|
|
3199
|
+
export { schema_19 as schema };
|
|
3200
|
+
let uiSchema_19: {
|
|
3201
|
+
"ui:servicesList": string[];
|
|
3202
|
+
"ui:field": string;
|
|
3203
|
+
};
|
|
3204
|
+
export { uiSchema_19 as uiSchema };
|
|
3205
|
+
}
|
|
3206
|
+
export { _default_20 as default };
|
|
3207
|
+
}
|
|
3208
|
+
namespace codeEditor {
|
|
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 };
|
|
3227
|
+
}
|
|
3228
|
+
export { properties_34 as properties };
|
|
3229
|
+
}
|
|
3230
|
+
export { optionsSchema_22 as optionsSchema };
|
|
3231
|
+
let optionsSchemaUiSchema_22: {
|
|
3232
|
+
readOnly: {
|
|
3233
|
+
"ui:widget": string;
|
|
3234
|
+
};
|
|
3235
|
+
isRequired: {
|
|
3236
|
+
"ui:widget": string;
|
|
3237
|
+
};
|
|
3238
|
+
"ui:order": string[];
|
|
3239
|
+
"ui:ObjectFieldTemplate": ({ properties }: {
|
|
3240
|
+
properties: any;
|
|
3241
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
3242
|
+
};
|
|
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: {
|
|
3250
|
+
"ui:options": {
|
|
3251
|
+
type: string;
|
|
3252
|
+
title: string;
|
|
3253
|
+
dependencies: {
|
|
3254
|
+
validateWith: {
|
|
3255
|
+
oneOf: ({
|
|
3256
|
+
properties: {
|
|
3257
|
+
validateWith: {
|
|
3258
|
+
enum: string[];
|
|
3259
|
+
};
|
|
3260
|
+
validateWithUrl: {
|
|
3261
|
+
title: string;
|
|
3262
|
+
type: string;
|
|
3263
|
+
};
|
|
3264
|
+
validateWithJson?: undefined;
|
|
3265
|
+
};
|
|
3266
|
+
} | {
|
|
3267
|
+
properties: {
|
|
3268
|
+
validateWith: {
|
|
3269
|
+
enum: string[];
|
|
3270
|
+
};
|
|
3271
|
+
validateWithJson: {
|
|
3272
|
+
title: string;
|
|
3273
|
+
aiHint: string;
|
|
3274
|
+
type: string;
|
|
3275
|
+
};
|
|
3276
|
+
validateWithUrl?: undefined;
|
|
3277
|
+
};
|
|
3278
|
+
} | {
|
|
3279
|
+
properties: {
|
|
3280
|
+
validateWith: {
|
|
3281
|
+
enum: string[];
|
|
3282
|
+
};
|
|
3283
|
+
validateWithUrl?: undefined;
|
|
3284
|
+
validateWithJson?: undefined;
|
|
3285
|
+
};
|
|
3286
|
+
})[];
|
|
3287
|
+
};
|
|
3288
|
+
showAsModal: {
|
|
3289
|
+
oneOf: ({
|
|
3290
|
+
properties: {
|
|
3291
|
+
showAsModal: {
|
|
3292
|
+
enum: boolean[];
|
|
3293
|
+
};
|
|
3294
|
+
modal?: undefined;
|
|
3295
|
+
};
|
|
3296
|
+
} | {
|
|
3297
|
+
properties: {
|
|
3298
|
+
showAsModal: {
|
|
3299
|
+
enum: boolean[];
|
|
3300
|
+
};
|
|
3301
|
+
modal: {
|
|
3302
|
+
title: string;
|
|
3303
|
+
type: string;
|
|
3304
|
+
properties: {
|
|
3305
|
+
buttonText: {
|
|
3306
|
+
title: string;
|
|
3307
|
+
type: string;
|
|
3308
|
+
};
|
|
3309
|
+
modalWidth: {
|
|
3310
|
+
title: string;
|
|
3311
|
+
type: string;
|
|
3312
|
+
tooltip: string;
|
|
3313
|
+
default: number;
|
|
3314
|
+
minimum: number;
|
|
3315
|
+
maximum: number;
|
|
3316
|
+
oneOf: {
|
|
3317
|
+
title: string;
|
|
3318
|
+
const: number;
|
|
3319
|
+
}[];
|
|
3320
|
+
};
|
|
3321
|
+
buttonInNewLine: {
|
|
3322
|
+
title: string;
|
|
3323
|
+
type: string;
|
|
3324
|
+
};
|
|
3325
|
+
};
|
|
3326
|
+
};
|
|
3327
|
+
};
|
|
3328
|
+
})[];
|
|
3329
|
+
required: string[];
|
|
3330
|
+
};
|
|
3331
|
+
};
|
|
3332
|
+
properties: {
|
|
3333
|
+
height: {
|
|
3334
|
+
title: string;
|
|
3335
|
+
type: string;
|
|
3336
|
+
tooltip: string;
|
|
3337
|
+
minimum: number;
|
|
3338
|
+
maximum: number;
|
|
3339
|
+
step: number;
|
|
3340
|
+
};
|
|
3341
|
+
language: {
|
|
3342
|
+
type: string;
|
|
3343
|
+
title: string;
|
|
3344
|
+
oneOf: {
|
|
3345
|
+
const: string;
|
|
3346
|
+
title: string;
|
|
3347
|
+
}[];
|
|
3348
|
+
tooltip: string;
|
|
3349
|
+
};
|
|
3350
|
+
validateWith: {
|
|
3351
|
+
type: string;
|
|
3352
|
+
title: string;
|
|
3353
|
+
tooltip: string;
|
|
3354
|
+
oneOf: {
|
|
3355
|
+
const: string;
|
|
3356
|
+
title: string;
|
|
3357
|
+
}[];
|
|
3358
|
+
};
|
|
3359
|
+
span: {
|
|
3360
|
+
title: string;
|
|
3361
|
+
type: string;
|
|
3362
|
+
default: number;
|
|
3363
|
+
minimum: number;
|
|
3364
|
+
maximum: number;
|
|
3365
|
+
oneOf: {
|
|
3366
|
+
title: string;
|
|
3367
|
+
const: number;
|
|
3368
|
+
}[];
|
|
3369
|
+
};
|
|
3370
|
+
showAsModal: {
|
|
3371
|
+
title: string;
|
|
3372
|
+
type: string;
|
|
3373
|
+
};
|
|
3374
|
+
collapsible: {
|
|
3375
|
+
title: string;
|
|
3376
|
+
type: string;
|
|
3377
|
+
};
|
|
3378
|
+
hidden: {
|
|
3379
|
+
type: string;
|
|
3380
|
+
title: string;
|
|
3381
|
+
tooltip: string;
|
|
3382
|
+
};
|
|
3383
|
+
};
|
|
3384
|
+
};
|
|
3385
|
+
"ui:label": {
|
|
3386
|
+
title: string;
|
|
3387
|
+
type: string;
|
|
3388
|
+
default: boolean;
|
|
3389
|
+
};
|
|
3390
|
+
};
|
|
3391
|
+
export { properties_35 as properties };
|
|
3392
|
+
}
|
|
3393
|
+
export { optionsUiSchema_21 as optionsUiSchema };
|
|
3394
|
+
let optionsUiSchemaUiSchema_21: {
|
|
3395
|
+
"ui:options": {
|
|
3396
|
+
validateWithUrl: {
|
|
3397
|
+
"ui:widget": string;
|
|
3398
|
+
};
|
|
3399
|
+
validateWithJson: {
|
|
3400
|
+
"ui:field": string;
|
|
3401
|
+
"ui:options": {
|
|
3402
|
+
showAsModal: boolean;
|
|
3403
|
+
modal: {
|
|
3404
|
+
buttonInNewLine: boolean;
|
|
3405
|
+
modalWidth: string;
|
|
3406
|
+
};
|
|
3407
|
+
codeEditor: {
|
|
3408
|
+
minimal: boolean;
|
|
3409
|
+
language: string;
|
|
3410
|
+
height: string;
|
|
3411
|
+
extraExtensions: import("@codemirror/state").Extension[];
|
|
3412
|
+
};
|
|
3413
|
+
};
|
|
3414
|
+
};
|
|
3415
|
+
span: {
|
|
3416
|
+
"ui:widget": string;
|
|
3417
|
+
};
|
|
3418
|
+
modal: {
|
|
3419
|
+
"ui:options": {
|
|
3420
|
+
showAsModal: boolean;
|
|
3421
|
+
modal: {
|
|
3422
|
+
buttonInNewLine: boolean;
|
|
3423
|
+
modalWidth: number;
|
|
3424
|
+
};
|
|
3425
|
+
};
|
|
3426
|
+
buttonInNewLine: {
|
|
3427
|
+
"ui:widget": string;
|
|
3428
|
+
};
|
|
3429
|
+
modalWidth: {
|
|
3430
|
+
"ui:widget": string;
|
|
3431
|
+
};
|
|
3432
|
+
};
|
|
3433
|
+
showAsModal: {
|
|
3434
|
+
"ui:widget": string;
|
|
3435
|
+
};
|
|
3436
|
+
collapsible: {
|
|
3437
|
+
"ui:widget": string;
|
|
3438
|
+
};
|
|
3439
|
+
hidden: {
|
|
3440
|
+
"ui:widget": string;
|
|
3441
|
+
};
|
|
3442
|
+
"ui:order": string[];
|
|
3443
|
+
"ui:padding": number;
|
|
3444
|
+
"ui:label": boolean;
|
|
3445
|
+
};
|
|
3446
|
+
"ui:label": {
|
|
3447
|
+
"ui:widget": string;
|
|
3448
|
+
};
|
|
3449
|
+
"ui:ObjectFieldTemplate": ({ properties }: {
|
|
3450
|
+
properties: any;
|
|
3451
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
3452
|
+
};
|
|
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 };
|
|
3458
|
+
export let validateWith: string;
|
|
3459
|
+
}
|
|
3460
|
+
export { schema_20 as schema };
|
|
3461
|
+
let uiSchema_20: {
|
|
3462
|
+
"ui:field": string;
|
|
3463
|
+
"ui:options": {
|
|
3464
|
+
language: string;
|
|
3465
|
+
};
|
|
3466
|
+
};
|
|
3467
|
+
export { uiSchema_20 as uiSchema };
|
|
3468
|
+
}
|
|
3469
|
+
export { _default_21 as default };
|
|
3470
|
+
}
|
|
3471
|
+
namespace file {
|
|
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 {
|
|
3486
|
+
export namespace maxFiles {
|
|
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 };
|
|
3493
|
+
export let minimum: number;
|
|
3494
|
+
}
|
|
3495
|
+
export namespace accept {
|
|
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 };
|
|
3502
|
+
let uniqueItems_2: boolean;
|
|
3503
|
+
export { uniqueItems_2 as uniqueItems };
|
|
3504
|
+
export namespace items_6 {
|
|
3505
|
+
let type_84: string;
|
|
3506
|
+
export { type_84 as type };
|
|
3507
|
+
let pattern_2: string;
|
|
3508
|
+
export { pattern_2 as pattern };
|
|
3509
|
+
}
|
|
3510
|
+
export { items_6 as items };
|
|
3511
|
+
}
|
|
3512
|
+
export namespace disablePreview {
|
|
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 };
|
|
3519
|
+
}
|
|
3520
|
+
import readOnly_17 = readOnly;
|
|
3521
|
+
export { readOnly_17 as readOnly };
|
|
3522
|
+
import isRequired_17 = isRequired;
|
|
3523
|
+
export { isRequired_17 as isRequired };
|
|
3524
|
+
}
|
|
3525
|
+
export { properties_36 as properties };
|
|
3526
|
+
}
|
|
3527
|
+
export { optionsSchema_23 as optionsSchema };
|
|
3528
|
+
let optionsSchemaUiSchema_23: {
|
|
3529
|
+
readOnly: {
|
|
3530
|
+
"ui:widget": string;
|
|
3531
|
+
};
|
|
3532
|
+
isRequired: {
|
|
3533
|
+
"ui:widget": string;
|
|
3534
|
+
};
|
|
3535
|
+
accept: {
|
|
3536
|
+
"ui:options": {
|
|
3537
|
+
descriptionIsMarkdown: boolean;
|
|
3538
|
+
};
|
|
3539
|
+
items: {
|
|
3540
|
+
"ui:label": boolean;
|
|
3541
|
+
};
|
|
3542
|
+
};
|
|
3543
|
+
disablePreview: {
|
|
3544
|
+
"ui:widget": string;
|
|
3545
|
+
};
|
|
3546
|
+
"ui:ObjectFieldTemplate": ({ properties }: {
|
|
3547
|
+
properties: any;
|
|
3548
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
3549
|
+
};
|
|
3550
|
+
export { optionsSchemaUiSchema_23 as optionsSchemaUiSchema };
|
|
3551
|
+
export namespace optionsUiSchema_22 { }
|
|
3552
|
+
export { optionsUiSchema_22 as optionsUiSchema };
|
|
3553
|
+
let optionsUiSchemaUiSchema_22: {
|
|
3554
|
+
"ui:options": {
|
|
3555
|
+
span: {
|
|
3556
|
+
"ui:widget": string;
|
|
3557
|
+
};
|
|
3558
|
+
modal: {
|
|
3559
|
+
"ui:options": {
|
|
3560
|
+
showAsModal: boolean;
|
|
3561
|
+
modal: {
|
|
3562
|
+
buttonInNewLine: boolean;
|
|
3563
|
+
modalWidth: number;
|
|
2577
3564
|
};
|
|
2578
3565
|
};
|
|
3566
|
+
buttonInNewLine: {
|
|
3567
|
+
"ui:widget": string;
|
|
3568
|
+
};
|
|
3569
|
+
modalWidth: {
|
|
3570
|
+
"ui:widget": string;
|
|
3571
|
+
};
|
|
2579
3572
|
};
|
|
2580
3573
|
showAsModal: {
|
|
2581
3574
|
"ui:widget": string;
|
|
@@ -2583,6 +3576,9 @@ declare namespace advanced_1 {
|
|
|
2583
3576
|
collapsible: {
|
|
2584
3577
|
"ui:widget": string;
|
|
2585
3578
|
};
|
|
3579
|
+
hidden: {
|
|
3580
|
+
"ui:widget": string;
|
|
3581
|
+
};
|
|
2586
3582
|
"ui:order": string[];
|
|
2587
3583
|
"ui:padding": number;
|
|
2588
3584
|
"ui:label": boolean;
|
|
@@ -2594,135 +3590,99 @@ declare namespace advanced_1 {
|
|
|
2594
3590
|
properties: any;
|
|
2595
3591
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2596
3592
|
};
|
|
2597
|
-
export {
|
|
2598
|
-
namespace
|
|
2599
|
-
export namespace
|
|
2600
|
-
let
|
|
2601
|
-
export {
|
|
2602
|
-
|
|
2603
|
-
|
|
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 };
|
|
3598
|
+
export namespace items_7 {
|
|
3599
|
+
let type_87: string;
|
|
3600
|
+
export { type_87 as type };
|
|
3601
|
+
}
|
|
3602
|
+
export { items_7 as items };
|
|
2604
3603
|
}
|
|
2605
|
-
export {
|
|
2606
|
-
let
|
|
2607
|
-
"ui:servicesList": string[];
|
|
3604
|
+
export { schema_21 as schema };
|
|
3605
|
+
let uiSchema_21: {
|
|
2608
3606
|
"ui:field": string;
|
|
2609
3607
|
};
|
|
2610
|
-
export {
|
|
3608
|
+
export { uiSchema_21 as uiSchema };
|
|
2611
3609
|
}
|
|
2612
|
-
export {
|
|
3610
|
+
export { _default_22 as default };
|
|
2613
3611
|
}
|
|
2614
|
-
namespace
|
|
2615
|
-
let
|
|
2616
|
-
export {
|
|
2617
|
-
let
|
|
2618
|
-
export {
|
|
2619
|
-
let
|
|
2620
|
-
export {
|
|
2621
|
-
let
|
|
2622
|
-
export {
|
|
2623
|
-
export namespace
|
|
2624
|
-
let
|
|
2625
|
-
export {
|
|
2626
|
-
let
|
|
2627
|
-
export {
|
|
2628
|
-
export namespace
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
let
|
|
2635
|
-
export {
|
|
2636
|
-
let
|
|
2637
|
-
|
|
2638
|
-
title: string;
|
|
2639
|
-
}[];
|
|
2640
|
-
export { oneOf_6 as oneOf };
|
|
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 };
|
|
2641
3636
|
}
|
|
2642
|
-
|
|
2643
|
-
export
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
export namespace
|
|
2650
|
-
let
|
|
2651
|
-
|
|
2652
|
-
|
|
2653
|
-
|
|
2654
|
-
};
|
|
2655
|
-
validateWithUrl: {
|
|
2656
|
-
title: string;
|
|
2657
|
-
type: string;
|
|
2658
|
-
};
|
|
2659
|
-
validateWithJson?: undefined;
|
|
2660
|
-
};
|
|
2661
|
-
} | {
|
|
2662
|
-
properties: {
|
|
2663
|
-
validateWith: {
|
|
2664
|
-
enum: string[];
|
|
2665
|
-
};
|
|
2666
|
-
validateWithJson: {
|
|
2667
|
-
title: string;
|
|
2668
|
-
type: string;
|
|
2669
|
-
};
|
|
2670
|
-
validateWithUrl?: undefined;
|
|
2671
|
-
};
|
|
2672
|
-
} | {
|
|
2673
|
-
properties: {
|
|
2674
|
-
validateWith: {
|
|
2675
|
-
enum: string[];
|
|
2676
|
-
};
|
|
2677
|
-
validateWithUrl?: undefined;
|
|
2678
|
-
validateWithJson?: undefined;
|
|
2679
|
-
};
|
|
2680
|
-
})[];
|
|
2681
|
-
export { oneOf_7 as oneOf };
|
|
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 };
|
|
2682
3649
|
}
|
|
2683
|
-
export { validateWith_1 as validateWith };
|
|
2684
3650
|
}
|
|
2685
|
-
export {
|
|
3651
|
+
export { properties_37 as properties };
|
|
2686
3652
|
}
|
|
2687
|
-
export {
|
|
2688
|
-
let
|
|
3653
|
+
export { optionsSchema_24 as optionsSchema };
|
|
3654
|
+
let optionsSchemaUiSchema_24: {
|
|
2689
3655
|
readOnly: {
|
|
2690
3656
|
"ui:widget": string;
|
|
2691
3657
|
};
|
|
2692
3658
|
isRequired: {
|
|
2693
3659
|
"ui:widget": string;
|
|
2694
3660
|
};
|
|
2695
|
-
|
|
2696
|
-
"ui:
|
|
3661
|
+
minimum: {
|
|
3662
|
+
"ui:options": {
|
|
3663
|
+
span: number;
|
|
3664
|
+
label: boolean;
|
|
3665
|
+
placeholder: string;
|
|
3666
|
+
};
|
|
2697
3667
|
};
|
|
2698
|
-
|
|
2699
|
-
"ui:field": string;
|
|
3668
|
+
maximum: {
|
|
2700
3669
|
"ui:options": {
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
modalWidth: string;
|
|
2705
|
-
};
|
|
2706
|
-
codeEditor: {
|
|
2707
|
-
minimal: boolean;
|
|
2708
|
-
language: string;
|
|
2709
|
-
height: string;
|
|
2710
|
-
extraExtensions: import("@codemirror/state").Extension[];
|
|
2711
|
-
};
|
|
3670
|
+
span: number;
|
|
3671
|
+
label: boolean;
|
|
3672
|
+
placeholder: string;
|
|
2712
3673
|
};
|
|
2713
3674
|
};
|
|
2714
|
-
"ui:order": string[];
|
|
2715
3675
|
"ui:ObjectFieldTemplate": ({ properties }: {
|
|
2716
3676
|
properties: any;
|
|
2717
3677
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2718
3678
|
};
|
|
2719
|
-
export {
|
|
2720
|
-
export namespace
|
|
2721
|
-
let
|
|
2722
|
-
export {
|
|
2723
|
-
let
|
|
2724
|
-
export {
|
|
2725
|
-
let
|
|
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: {
|
|
2726
3686
|
"ui:options": {
|
|
2727
3687
|
type: string;
|
|
2728
3688
|
title: string;
|
|
@@ -2751,6 +3711,14 @@ declare namespace advanced_1 {
|
|
|
2751
3711
|
modalWidth: {
|
|
2752
3712
|
title: string;
|
|
2753
3713
|
type: string;
|
|
3714
|
+
tooltip: string;
|
|
3715
|
+
default: number;
|
|
3716
|
+
minimum: number;
|
|
3717
|
+
maximum: number;
|
|
3718
|
+
oneOf: {
|
|
3719
|
+
title: string;
|
|
3720
|
+
const: number;
|
|
3721
|
+
}[];
|
|
2754
3722
|
};
|
|
2755
3723
|
buttonInNewLine: {
|
|
2756
3724
|
title: string;
|
|
@@ -2764,26 +3732,26 @@ declare namespace advanced_1 {
|
|
|
2764
3732
|
};
|
|
2765
3733
|
};
|
|
2766
3734
|
properties: {
|
|
2767
|
-
|
|
2768
|
-
type: string;
|
|
3735
|
+
suffix: {
|
|
2769
3736
|
title: string;
|
|
2770
|
-
|
|
3737
|
+
type: string;
|
|
3738
|
+
tooltip: string;
|
|
2771
3739
|
};
|
|
2772
|
-
|
|
3740
|
+
hideInput: {
|
|
2773
3741
|
type: string;
|
|
2774
3742
|
title: string;
|
|
2775
|
-
oneOf: {
|
|
2776
|
-
const: string;
|
|
2777
|
-
title: string;
|
|
2778
|
-
}[];
|
|
2779
3743
|
tooltip: string;
|
|
2780
3744
|
};
|
|
2781
3745
|
span: {
|
|
2782
3746
|
title: string;
|
|
2783
3747
|
type: string;
|
|
2784
|
-
|
|
2785
|
-
|
|
2786
|
-
|
|
3748
|
+
default: number;
|
|
3749
|
+
minimum: number;
|
|
3750
|
+
maximum: number;
|
|
3751
|
+
oneOf: {
|
|
3752
|
+
title: string;
|
|
3753
|
+
const: number;
|
|
3754
|
+
}[];
|
|
2787
3755
|
};
|
|
2788
3756
|
showAsModal: {
|
|
2789
3757
|
title: string;
|
|
@@ -2793,6 +3761,11 @@ declare namespace advanced_1 {
|
|
|
2793
3761
|
title: string;
|
|
2794
3762
|
type: string;
|
|
2795
3763
|
};
|
|
3764
|
+
hidden: {
|
|
3765
|
+
type: string;
|
|
3766
|
+
title: string;
|
|
3767
|
+
tooltip: string;
|
|
3768
|
+
};
|
|
2796
3769
|
};
|
|
2797
3770
|
};
|
|
2798
3771
|
"ui:label": {
|
|
@@ -2801,11 +3774,14 @@ declare namespace advanced_1 {
|
|
|
2801
3774
|
default: boolean;
|
|
2802
3775
|
};
|
|
2803
3776
|
};
|
|
2804
|
-
export {
|
|
3777
|
+
export { properties_38 as properties };
|
|
2805
3778
|
}
|
|
2806
|
-
export {
|
|
2807
|
-
let
|
|
3779
|
+
export { optionsUiSchema_23 as optionsUiSchema };
|
|
3780
|
+
let optionsUiSchemaUiSchema_23: {
|
|
2808
3781
|
"ui:options": {
|
|
3782
|
+
hideInput: {
|
|
3783
|
+
"ui:widget": string;
|
|
3784
|
+
};
|
|
2809
3785
|
span: {
|
|
2810
3786
|
"ui:widget": string;
|
|
2811
3787
|
};
|
|
@@ -2814,8 +3790,15 @@ declare namespace advanced_1 {
|
|
|
2814
3790
|
showAsModal: boolean;
|
|
2815
3791
|
modal: {
|
|
2816
3792
|
buttonInNewLine: boolean;
|
|
3793
|
+
modalWidth: number;
|
|
2817
3794
|
};
|
|
2818
3795
|
};
|
|
3796
|
+
buttonInNewLine: {
|
|
3797
|
+
"ui:widget": string;
|
|
3798
|
+
};
|
|
3799
|
+
modalWidth: {
|
|
3800
|
+
"ui:widget": string;
|
|
3801
|
+
};
|
|
2819
3802
|
};
|
|
2820
3803
|
showAsModal: {
|
|
2821
3804
|
"ui:widget": string;
|
|
@@ -2823,6 +3806,9 @@ declare namespace advanced_1 {
|
|
|
2823
3806
|
collapsible: {
|
|
2824
3807
|
"ui:widget": string;
|
|
2825
3808
|
};
|
|
3809
|
+
hidden: {
|
|
3810
|
+
"ui:widget": string;
|
|
3811
|
+
};
|
|
2826
3812
|
"ui:order": string[];
|
|
2827
3813
|
"ui:padding": number;
|
|
2828
3814
|
"ui:label": boolean;
|
|
@@ -2834,109 +3820,231 @@ declare namespace advanced_1 {
|
|
|
2834
3820
|
properties: any;
|
|
2835
3821
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2836
3822
|
};
|
|
2837
|
-
export {
|
|
2838
|
-
namespace
|
|
2839
|
-
export namespace
|
|
2840
|
-
let
|
|
2841
|
-
export {
|
|
2842
|
-
let validateWith_2: string;
|
|
2843
|
-
export { validateWith_2 as validateWith };
|
|
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 };
|
|
2844
3828
|
}
|
|
2845
|
-
export {
|
|
2846
|
-
let
|
|
2847
|
-
"ui:
|
|
2848
|
-
"ui:options": {
|
|
2849
|
-
language: string;
|
|
2850
|
-
};
|
|
3829
|
+
export { schema_22 as schema };
|
|
3830
|
+
let uiSchema_22: {
|
|
3831
|
+
"ui:widget": string;
|
|
2851
3832
|
};
|
|
2852
|
-
export {
|
|
3833
|
+
export { uiSchema_22 as uiSchema };
|
|
2853
3834
|
}
|
|
2854
|
-
export {
|
|
3835
|
+
export { _default_23 as default };
|
|
2855
3836
|
}
|
|
2856
|
-
namespace
|
|
2857
|
-
let
|
|
2858
|
-
export {
|
|
2859
|
-
let
|
|
2860
|
-
export {
|
|
2861
|
-
let
|
|
2862
|
-
export {
|
|
2863
|
-
let
|
|
2864
|
-
export {
|
|
2865
|
-
export namespace
|
|
2866
|
-
let
|
|
2867
|
-
export {
|
|
2868
|
-
let
|
|
2869
|
-
export {
|
|
2870
|
-
export namespace
|
|
2871
|
-
|
|
2872
|
-
|
|
2873
|
-
|
|
2874
|
-
|
|
2875
|
-
|
|
2876
|
-
let
|
|
2877
|
-
export {
|
|
2878
|
-
|
|
2879
|
-
|
|
2880
|
-
|
|
2881
|
-
|
|
2882
|
-
|
|
2883
|
-
|
|
2884
|
-
|
|
2885
|
-
|
|
2886
|
-
|
|
2887
|
-
|
|
2888
|
-
|
|
2889
|
-
|
|
2890
|
-
|
|
2891
|
-
|
|
2892
|
-
|
|
2893
|
-
|
|
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[];
|
|
2894
3887
|
}
|
|
2895
|
-
export {
|
|
2896
|
-
}
|
|
2897
|
-
export namespace disablePreview {
|
|
2898
|
-
let title_77: string;
|
|
2899
|
-
export { title_77 as title };
|
|
2900
|
-
let description_35: string;
|
|
2901
|
-
export { description_35 as description };
|
|
2902
|
-
let type_81: string;
|
|
2903
|
-
export { type_81 as type };
|
|
3888
|
+
export { items_8 as items };
|
|
2904
3889
|
}
|
|
2905
|
-
|
|
2906
|
-
export { readOnly_16 as readOnly };
|
|
2907
|
-
import isRequired_16 = isRequired;
|
|
2908
|
-
export { isRequired_16 as isRequired };
|
|
3890
|
+
export { oneOf_6 as oneOf };
|
|
2909
3891
|
}
|
|
2910
|
-
export {
|
|
3892
|
+
export { properties_39 as properties };
|
|
2911
3893
|
}
|
|
2912
|
-
export {
|
|
2913
|
-
let
|
|
3894
|
+
export { optionsSchema_25 as optionsSchema };
|
|
3895
|
+
let optionsSchemaUiSchema_25: {
|
|
2914
3896
|
readOnly: {
|
|
2915
3897
|
"ui:widget": string;
|
|
2916
3898
|
};
|
|
2917
3899
|
isRequired: {
|
|
2918
3900
|
"ui:widget": string;
|
|
2919
3901
|
};
|
|
2920
|
-
|
|
3902
|
+
minimum: {
|
|
2921
3903
|
"ui:options": {
|
|
2922
|
-
|
|
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;
|
|
2923
3914
|
};
|
|
3915
|
+
};
|
|
3916
|
+
oneOf: {
|
|
2924
3917
|
items: {
|
|
2925
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
|
+
};
|
|
2926
3936
|
};
|
|
2927
3937
|
};
|
|
2928
|
-
disablePreview: {
|
|
2929
|
-
"ui:widget": string;
|
|
2930
|
-
};
|
|
2931
3938
|
"ui:ObjectFieldTemplate": ({ properties }: {
|
|
2932
3939
|
properties: any;
|
|
2933
3940
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2934
3941
|
};
|
|
2935
|
-
export {
|
|
2936
|
-
export namespace
|
|
2937
|
-
|
|
2938
|
-
|
|
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: {
|
|
2939
4044
|
"ui:options": {
|
|
4045
|
+
hideInput: {
|
|
4046
|
+
"ui:widget": string;
|
|
4047
|
+
};
|
|
2940
4048
|
span: {
|
|
2941
4049
|
"ui:widget": string;
|
|
2942
4050
|
};
|
|
@@ -2945,8 +4053,15 @@ declare namespace advanced_1 {
|
|
|
2945
4053
|
showAsModal: boolean;
|
|
2946
4054
|
modal: {
|
|
2947
4055
|
buttonInNewLine: boolean;
|
|
4056
|
+
modalWidth: number;
|
|
2948
4057
|
};
|
|
2949
4058
|
};
|
|
4059
|
+
buttonInNewLine: {
|
|
4060
|
+
"ui:widget": string;
|
|
4061
|
+
};
|
|
4062
|
+
modalWidth: {
|
|
4063
|
+
"ui:widget": string;
|
|
4064
|
+
};
|
|
2950
4065
|
};
|
|
2951
4066
|
showAsModal: {
|
|
2952
4067
|
"ui:widget": string;
|
|
@@ -2954,6 +4069,9 @@ declare namespace advanced_1 {
|
|
|
2954
4069
|
collapsible: {
|
|
2955
4070
|
"ui:widget": string;
|
|
2956
4071
|
};
|
|
4072
|
+
hidden: {
|
|
4073
|
+
"ui:widget": string;
|
|
4074
|
+
};
|
|
2957
4075
|
"ui:order": string[];
|
|
2958
4076
|
"ui:padding": number;
|
|
2959
4077
|
"ui:label": boolean;
|
|
@@ -2965,23 +4083,23 @@ declare namespace advanced_1 {
|
|
|
2965
4083
|
properties: any;
|
|
2966
4084
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
2967
4085
|
};
|
|
2968
|
-
export {
|
|
2969
|
-
namespace
|
|
2970
|
-
export namespace
|
|
2971
|
-
let
|
|
2972
|
-
export {
|
|
2973
|
-
|
|
2974
|
-
|
|
2975
|
-
|
|
2976
|
-
}
|
|
2977
|
-
export {
|
|
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 };
|
|
2978
4096
|
}
|
|
2979
|
-
export {
|
|
2980
|
-
let
|
|
2981
|
-
"ui:
|
|
4097
|
+
export { schema_23 as schema };
|
|
4098
|
+
let uiSchema_23: {
|
|
4099
|
+
"ui:widget": string;
|
|
2982
4100
|
};
|
|
2983
|
-
export {
|
|
4101
|
+
export { uiSchema_23 as uiSchema };
|
|
2984
4102
|
}
|
|
2985
|
-
export {
|
|
4103
|
+
export { _default_26 as default };
|
|
2986
4104
|
}
|
|
2987
4105
|
}
|