@shwfed/nuxt 0.11.49 → 0.11.51

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/button.d.vue.ts +8 -0
  3. package/dist/runtime/components/button.vue.d.ts +8 -0
  4. package/dist/runtime/components/fields.d.vue.ts +850 -6
  5. package/dist/runtime/components/fields.vue +0 -2
  6. package/dist/runtime/components/fields.vue.d.ts +850 -6
  7. package/dist/runtime/components/ui/button-configurator/ButtonConfiguratorDialog.d.vue.ts +8 -0
  8. package/dist/runtime/components/ui/button-configurator/ButtonConfiguratorDialog.vue +137 -0
  9. package/dist/runtime/components/ui/button-configurator/ButtonConfiguratorDialog.vue.d.ts +8 -0
  10. package/dist/runtime/components/ui/button-configurator/menu.d.ts +2 -0
  11. package/dist/runtime/components/ui/button-configurator/menu.js +14 -0
  12. package/dist/runtime/components/ui/buttons/Buttons.d.vue.ts +8 -0
  13. package/dist/runtime/components/ui/buttons/Buttons.vue +42 -14
  14. package/dist/runtime/components/ui/buttons/Buttons.vue.d.ts +8 -0
  15. package/dist/runtime/components/ui/buttons/schema.d.ts +30 -0
  16. package/dist/runtime/components/ui/buttons/schema.js +5 -0
  17. package/dist/runtime/components/ui/fields/Fields.d.vue.ts +1698 -10
  18. package/dist/runtime/components/ui/fields/Fields.vue +627 -162
  19. package/dist/runtime/components/ui/fields/Fields.vue.d.ts +1698 -10
  20. package/dist/runtime/components/ui/fields/schema.d.ts +5625 -153
  21. package/dist/runtime/components/ui/fields/schema.js +83 -80
  22. package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.d.vue.ts +849 -5
  23. package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue +224 -618
  24. package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue.d.ts +849 -5
  25. package/package.json +1 -1
  26. package/dist/runtime/components/ui/fields/FieldsBody.d.vue.ts +0 -17
  27. package/dist/runtime/components/ui/fields/FieldsBody.vue +0 -720
  28. package/dist/runtime/components/ui/fields/FieldsBody.vue.d.ts +0 -17
  29. package/dist/runtime/components/ui/fields/render-context.d.ts +0 -120
  30. package/dist/runtime/components/ui/fields/render-context.js +0 -0
@@ -1,4 +1,4 @@
1
- import { type Field, type FieldsConfig } from '../fields/schema.js';
1
+ import { type FieldsConfig } from '../fields/schema.js';
2
2
  type __VLS_Props = {
3
3
  config: FieldsConfig;
4
4
  };
@@ -9,10 +9,432 @@ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
9
9
  declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
10
  "update:open": (value: boolean) => any;
11
11
  confirm: (args_0: Readonly<{
12
- fields: readonly Field[];
12
+ fields: readonly ({
13
+ id: string;
14
+ type: "string";
15
+ path: string;
16
+ title: readonly {
17
+ locale: "en" | "ja" | "ko" | "zh";
18
+ message: string;
19
+ }[];
20
+ labelStyle?: string | undefined;
21
+ contentStyle?: string | undefined;
22
+ required?: boolean | undefined;
23
+ icon?: string | undefined;
24
+ style?: string | undefined;
25
+ discardEmptyString?: boolean | undefined;
26
+ initialValue?: string | undefined;
27
+ maxLength?: string | undefined;
28
+ hidden?: string | undefined;
29
+ disabled?: string | undefined;
30
+ validation?: readonly Readonly<{
31
+ expression: string;
32
+ message: string;
33
+ }>[] | undefined;
34
+ hideLabel?: boolean | undefined;
35
+ } | {
36
+ id: string;
37
+ type: "textarea";
38
+ path: string;
39
+ title: readonly {
40
+ locale: "en" | "ja" | "ko" | "zh";
41
+ message: string;
42
+ }[];
43
+ labelStyle?: string | undefined;
44
+ contentStyle?: string | undefined;
45
+ required?: boolean | undefined;
46
+ icon?: string | undefined;
47
+ style?: string | undefined;
48
+ discardEmptyString?: boolean | undefined;
49
+ initialValue?: string | undefined;
50
+ maxLength?: string | undefined;
51
+ hidden?: string | undefined;
52
+ disabled?: string | undefined;
53
+ validation?: readonly Readonly<{
54
+ expression: string;
55
+ message: string;
56
+ }>[] | undefined;
57
+ hideLabel?: boolean | undefined;
58
+ } | {
59
+ id: string;
60
+ type: "number";
61
+ path: string;
62
+ title: readonly {
63
+ locale: "en" | "ja" | "ko" | "zh";
64
+ message: string;
65
+ }[];
66
+ labelStyle?: string | undefined;
67
+ contentStyle?: string | undefined;
68
+ required?: boolean | undefined;
69
+ icon?: string | undefined;
70
+ style?: string | undefined;
71
+ initialValue?: string | undefined;
72
+ min?: string | undefined;
73
+ max?: string | undefined;
74
+ step?: string | undefined;
75
+ hidden?: string | undefined;
76
+ disabled?: string | undefined;
77
+ validation?: readonly Readonly<{
78
+ expression: string;
79
+ message: string;
80
+ }>[] | undefined;
81
+ hideLabel?: boolean | undefined;
82
+ } | {
83
+ locale: readonly {
84
+ locale: "en" | "ja" | "ko" | "zh";
85
+ message: string;
86
+ }[];
87
+ id: string;
88
+ type: "markdown";
89
+ title: readonly {
90
+ locale: "en" | "ja" | "ko" | "zh";
91
+ message: string;
92
+ }[];
93
+ labelStyle?: string | undefined;
94
+ contentStyle?: string | undefined;
95
+ style?: string | undefined;
96
+ hidden?: string | undefined;
97
+ hideLabel?: boolean | undefined;
98
+ } | {
99
+ id: string;
100
+ type: "markdown-body";
101
+ locale: readonly {
102
+ locale: "en" | "ja" | "ko" | "zh";
103
+ message: string;
104
+ }[];
105
+ inline?: boolean | undefined;
106
+ style?: string | undefined;
107
+ hidden?: string | undefined;
108
+ } | {
109
+ options: string;
110
+ label: string;
111
+ value: string;
112
+ key: string;
113
+ id: string;
114
+ type: "select";
115
+ path: string;
116
+ title: readonly {
117
+ locale: "en" | "ja" | "ko" | "zh";
118
+ message: string;
119
+ }[];
120
+ labelStyle?: string | undefined;
121
+ contentStyle?: string | undefined;
122
+ required?: boolean | undefined;
123
+ icon?: string | undefined;
124
+ style?: string | undefined;
125
+ initialValue?: string | undefined;
126
+ hidden?: string | undefined;
127
+ disabled?: string | undefined;
128
+ validation?: readonly Readonly<{
129
+ expression: string;
130
+ message: string;
131
+ }>[] | undefined;
132
+ hideLabel?: boolean | undefined;
133
+ } | {
134
+ options: string;
135
+ label: string;
136
+ value: string;
137
+ key: string;
138
+ id: string;
139
+ type: "radio";
140
+ path: string;
141
+ title: readonly {
142
+ locale: "en" | "ja" | "ko" | "zh";
143
+ message: string;
144
+ }[];
145
+ labelStyle?: string | undefined;
146
+ contentStyle?: string | undefined;
147
+ required?: boolean | undefined;
148
+ icon?: string | undefined;
149
+ style?: string | undefined;
150
+ initialValue?: string | undefined;
151
+ hidden?: string | undefined;
152
+ disabled?: string | undefined;
153
+ validation?: readonly Readonly<{
154
+ expression: string;
155
+ message: string;
156
+ }>[] | undefined;
157
+ hideLabel?: boolean | undefined;
158
+ } | {
159
+ mode: "month" | "year" | "date";
160
+ value: string;
161
+ id: string;
162
+ type: "calendar";
163
+ path: string;
164
+ title: readonly {
165
+ locale: "en" | "ja" | "ko" | "zh";
166
+ message: string;
167
+ }[];
168
+ labelStyle?: string | undefined;
169
+ contentStyle?: string | undefined;
170
+ required?: boolean | undefined;
171
+ icon?: string | undefined;
172
+ style?: string | undefined;
173
+ display?: string | undefined;
174
+ initialValue?: string | undefined;
175
+ disableDate?: string | undefined;
176
+ hidden?: string | undefined;
177
+ disabled?: string | undefined;
178
+ validation?: readonly Readonly<{
179
+ expression: string;
180
+ message: string;
181
+ }>[] | undefined;
182
+ hideLabel?: boolean | undefined;
183
+ } | {
184
+ id: string;
185
+ type: "upload";
186
+ path: string;
187
+ title: readonly {
188
+ locale: "en" | "ja" | "ko" | "zh";
189
+ message: string;
190
+ }[];
191
+ labelStyle?: string | undefined;
192
+ contentStyle?: string | undefined;
193
+ required?: boolean | undefined;
194
+ icon?: string | undefined;
195
+ accept?: readonly string[] | undefined;
196
+ description?: readonly {
197
+ locale: "en" | "ja" | "ko" | "zh";
198
+ message: string;
199
+ }[] | undefined;
200
+ maxCount?: string | undefined;
201
+ template?: string | undefined;
202
+ templateName?: readonly {
203
+ locale: "en" | "ja" | "ko" | "zh";
204
+ message: string;
205
+ }[] | undefined;
206
+ style?: string | undefined;
207
+ initialValue?: string | undefined;
208
+ hidden?: string | undefined;
209
+ disabled?: string | undefined;
210
+ validation?: readonly Readonly<{
211
+ expression: string;
212
+ message: string;
213
+ }>[] | undefined;
214
+ hideLabel?: boolean | undefined;
215
+ } | {
216
+ id: string;
217
+ type: "slot";
218
+ style?: string | undefined;
219
+ } | {
220
+ id: string;
221
+ type: "empty";
222
+ style?: string | undefined;
223
+ })[];
13
224
  groups: readonly Readonly<{
14
225
  id: string;
15
- fields: readonly Field[];
226
+ fields: readonly ({
227
+ id: string;
228
+ type: "string";
229
+ path: string;
230
+ title: readonly {
231
+ locale: "en" | "ja" | "ko" | "zh";
232
+ message: string;
233
+ }[];
234
+ labelStyle?: string | undefined;
235
+ contentStyle?: string | undefined;
236
+ required?: boolean | undefined;
237
+ icon?: string | undefined;
238
+ style?: string | undefined;
239
+ discardEmptyString?: boolean | undefined;
240
+ initialValue?: string | undefined;
241
+ maxLength?: string | undefined;
242
+ hidden?: string | undefined;
243
+ disabled?: string | undefined;
244
+ validation?: readonly Readonly<{
245
+ expression: string;
246
+ message: string;
247
+ }>[] | undefined;
248
+ hideLabel?: boolean | undefined;
249
+ } | {
250
+ id: string;
251
+ type: "textarea";
252
+ path: string;
253
+ title: readonly {
254
+ locale: "en" | "ja" | "ko" | "zh";
255
+ message: string;
256
+ }[];
257
+ labelStyle?: string | undefined;
258
+ contentStyle?: string | undefined;
259
+ required?: boolean | undefined;
260
+ icon?: string | undefined;
261
+ style?: string | undefined;
262
+ discardEmptyString?: boolean | undefined;
263
+ initialValue?: string | undefined;
264
+ maxLength?: string | undefined;
265
+ hidden?: string | undefined;
266
+ disabled?: string | undefined;
267
+ validation?: readonly Readonly<{
268
+ expression: string;
269
+ message: string;
270
+ }>[] | undefined;
271
+ hideLabel?: boolean | undefined;
272
+ } | {
273
+ id: string;
274
+ type: "number";
275
+ path: string;
276
+ title: readonly {
277
+ locale: "en" | "ja" | "ko" | "zh";
278
+ message: string;
279
+ }[];
280
+ labelStyle?: string | undefined;
281
+ contentStyle?: string | undefined;
282
+ required?: boolean | undefined;
283
+ icon?: string | undefined;
284
+ style?: string | undefined;
285
+ initialValue?: string | undefined;
286
+ min?: string | undefined;
287
+ max?: string | undefined;
288
+ step?: string | undefined;
289
+ hidden?: string | undefined;
290
+ disabled?: string | undefined;
291
+ validation?: readonly Readonly<{
292
+ expression: string;
293
+ message: string;
294
+ }>[] | undefined;
295
+ hideLabel?: boolean | undefined;
296
+ } | {
297
+ locale: readonly {
298
+ locale: "en" | "ja" | "ko" | "zh";
299
+ message: string;
300
+ }[];
301
+ id: string;
302
+ type: "markdown";
303
+ title: readonly {
304
+ locale: "en" | "ja" | "ko" | "zh";
305
+ message: string;
306
+ }[];
307
+ labelStyle?: string | undefined;
308
+ contentStyle?: string | undefined;
309
+ style?: string | undefined;
310
+ hidden?: string | undefined;
311
+ hideLabel?: boolean | undefined;
312
+ } | {
313
+ id: string;
314
+ type: "markdown-body";
315
+ locale: readonly {
316
+ locale: "en" | "ja" | "ko" | "zh";
317
+ message: string;
318
+ }[];
319
+ inline?: boolean | undefined;
320
+ style?: string | undefined;
321
+ hidden?: string | undefined;
322
+ } | {
323
+ options: string;
324
+ label: string;
325
+ value: string;
326
+ key: string;
327
+ id: string;
328
+ type: "select";
329
+ path: string;
330
+ title: readonly {
331
+ locale: "en" | "ja" | "ko" | "zh";
332
+ message: string;
333
+ }[];
334
+ labelStyle?: string | undefined;
335
+ contentStyle?: string | undefined;
336
+ required?: boolean | undefined;
337
+ icon?: string | undefined;
338
+ style?: string | undefined;
339
+ initialValue?: string | undefined;
340
+ hidden?: string | undefined;
341
+ disabled?: string | undefined;
342
+ validation?: readonly Readonly<{
343
+ expression: string;
344
+ message: string;
345
+ }>[] | undefined;
346
+ hideLabel?: boolean | undefined;
347
+ } | {
348
+ options: string;
349
+ label: string;
350
+ value: string;
351
+ key: string;
352
+ id: string;
353
+ type: "radio";
354
+ path: string;
355
+ title: readonly {
356
+ locale: "en" | "ja" | "ko" | "zh";
357
+ message: string;
358
+ }[];
359
+ labelStyle?: string | undefined;
360
+ contentStyle?: string | undefined;
361
+ required?: boolean | undefined;
362
+ icon?: string | undefined;
363
+ style?: string | undefined;
364
+ initialValue?: string | undefined;
365
+ hidden?: string | undefined;
366
+ disabled?: string | undefined;
367
+ validation?: readonly Readonly<{
368
+ expression: string;
369
+ message: string;
370
+ }>[] | undefined;
371
+ hideLabel?: boolean | undefined;
372
+ } | {
373
+ mode: "month" | "year" | "date";
374
+ value: string;
375
+ id: string;
376
+ type: "calendar";
377
+ path: string;
378
+ title: readonly {
379
+ locale: "en" | "ja" | "ko" | "zh";
380
+ message: string;
381
+ }[];
382
+ labelStyle?: string | undefined;
383
+ contentStyle?: string | undefined;
384
+ required?: boolean | undefined;
385
+ icon?: string | undefined;
386
+ style?: string | undefined;
387
+ display?: string | undefined;
388
+ initialValue?: string | undefined;
389
+ disableDate?: string | undefined;
390
+ hidden?: string | undefined;
391
+ disabled?: string | undefined;
392
+ validation?: readonly Readonly<{
393
+ expression: string;
394
+ message: string;
395
+ }>[] | undefined;
396
+ hideLabel?: boolean | undefined;
397
+ } | {
398
+ id: string;
399
+ type: "upload";
400
+ path: string;
401
+ title: readonly {
402
+ locale: "en" | "ja" | "ko" | "zh";
403
+ message: string;
404
+ }[];
405
+ labelStyle?: string | undefined;
406
+ contentStyle?: string | undefined;
407
+ required?: boolean | undefined;
408
+ icon?: string | undefined;
409
+ accept?: readonly string[] | undefined;
410
+ description?: readonly {
411
+ locale: "en" | "ja" | "ko" | "zh";
412
+ message: string;
413
+ }[] | undefined;
414
+ maxCount?: string | undefined;
415
+ template?: string | undefined;
416
+ templateName?: readonly {
417
+ locale: "en" | "ja" | "ko" | "zh";
418
+ message: string;
419
+ }[] | undefined;
420
+ style?: string | undefined;
421
+ initialValue?: string | undefined;
422
+ hidden?: string | undefined;
423
+ disabled?: string | undefined;
424
+ validation?: readonly Readonly<{
425
+ expression: string;
426
+ message: string;
427
+ }>[] | undefined;
428
+ hideLabel?: boolean | undefined;
429
+ } | {
430
+ id: string;
431
+ type: "slot";
432
+ style?: string | undefined;
433
+ } | {
434
+ id: string;
435
+ type: "empty";
436
+ style?: string | undefined;
437
+ })[];
16
438
  style?: string | undefined;
17
439
  }>[];
18
440
  kind: string;
@@ -24,10 +446,432 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
24
446
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
25
447
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
26
448
  onConfirm?: ((args_0: Readonly<{
27
- fields: readonly Field[];
449
+ fields: readonly ({
450
+ id: string;
451
+ type: "string";
452
+ path: string;
453
+ title: readonly {
454
+ locale: "en" | "ja" | "ko" | "zh";
455
+ message: string;
456
+ }[];
457
+ labelStyle?: string | undefined;
458
+ contentStyle?: string | undefined;
459
+ required?: boolean | undefined;
460
+ icon?: string | undefined;
461
+ style?: string | undefined;
462
+ discardEmptyString?: boolean | undefined;
463
+ initialValue?: string | undefined;
464
+ maxLength?: string | undefined;
465
+ hidden?: string | undefined;
466
+ disabled?: string | undefined;
467
+ validation?: readonly Readonly<{
468
+ expression: string;
469
+ message: string;
470
+ }>[] | undefined;
471
+ hideLabel?: boolean | undefined;
472
+ } | {
473
+ id: string;
474
+ type: "textarea";
475
+ path: string;
476
+ title: readonly {
477
+ locale: "en" | "ja" | "ko" | "zh";
478
+ message: string;
479
+ }[];
480
+ labelStyle?: string | undefined;
481
+ contentStyle?: string | undefined;
482
+ required?: boolean | undefined;
483
+ icon?: string | undefined;
484
+ style?: string | undefined;
485
+ discardEmptyString?: boolean | undefined;
486
+ initialValue?: string | undefined;
487
+ maxLength?: string | undefined;
488
+ hidden?: string | undefined;
489
+ disabled?: string | undefined;
490
+ validation?: readonly Readonly<{
491
+ expression: string;
492
+ message: string;
493
+ }>[] | undefined;
494
+ hideLabel?: boolean | undefined;
495
+ } | {
496
+ id: string;
497
+ type: "number";
498
+ path: string;
499
+ title: readonly {
500
+ locale: "en" | "ja" | "ko" | "zh";
501
+ message: string;
502
+ }[];
503
+ labelStyle?: string | undefined;
504
+ contentStyle?: string | undefined;
505
+ required?: boolean | undefined;
506
+ icon?: string | undefined;
507
+ style?: string | undefined;
508
+ initialValue?: string | undefined;
509
+ min?: string | undefined;
510
+ max?: string | undefined;
511
+ step?: string | undefined;
512
+ hidden?: string | undefined;
513
+ disabled?: string | undefined;
514
+ validation?: readonly Readonly<{
515
+ expression: string;
516
+ message: string;
517
+ }>[] | undefined;
518
+ hideLabel?: boolean | undefined;
519
+ } | {
520
+ locale: readonly {
521
+ locale: "en" | "ja" | "ko" | "zh";
522
+ message: string;
523
+ }[];
524
+ id: string;
525
+ type: "markdown";
526
+ title: readonly {
527
+ locale: "en" | "ja" | "ko" | "zh";
528
+ message: string;
529
+ }[];
530
+ labelStyle?: string | undefined;
531
+ contentStyle?: string | undefined;
532
+ style?: string | undefined;
533
+ hidden?: string | undefined;
534
+ hideLabel?: boolean | undefined;
535
+ } | {
536
+ id: string;
537
+ type: "markdown-body";
538
+ locale: readonly {
539
+ locale: "en" | "ja" | "ko" | "zh";
540
+ message: string;
541
+ }[];
542
+ inline?: boolean | undefined;
543
+ style?: string | undefined;
544
+ hidden?: string | undefined;
545
+ } | {
546
+ options: string;
547
+ label: string;
548
+ value: string;
549
+ key: string;
550
+ id: string;
551
+ type: "select";
552
+ path: string;
553
+ title: readonly {
554
+ locale: "en" | "ja" | "ko" | "zh";
555
+ message: string;
556
+ }[];
557
+ labelStyle?: string | undefined;
558
+ contentStyle?: string | undefined;
559
+ required?: boolean | undefined;
560
+ icon?: string | undefined;
561
+ style?: string | undefined;
562
+ initialValue?: string | undefined;
563
+ hidden?: string | undefined;
564
+ disabled?: string | undefined;
565
+ validation?: readonly Readonly<{
566
+ expression: string;
567
+ message: string;
568
+ }>[] | undefined;
569
+ hideLabel?: boolean | undefined;
570
+ } | {
571
+ options: string;
572
+ label: string;
573
+ value: string;
574
+ key: string;
575
+ id: string;
576
+ type: "radio";
577
+ path: string;
578
+ title: readonly {
579
+ locale: "en" | "ja" | "ko" | "zh";
580
+ message: string;
581
+ }[];
582
+ labelStyle?: string | undefined;
583
+ contentStyle?: string | undefined;
584
+ required?: boolean | undefined;
585
+ icon?: string | undefined;
586
+ style?: string | undefined;
587
+ initialValue?: string | undefined;
588
+ hidden?: string | undefined;
589
+ disabled?: string | undefined;
590
+ validation?: readonly Readonly<{
591
+ expression: string;
592
+ message: string;
593
+ }>[] | undefined;
594
+ hideLabel?: boolean | undefined;
595
+ } | {
596
+ mode: "month" | "year" | "date";
597
+ value: string;
598
+ id: string;
599
+ type: "calendar";
600
+ path: string;
601
+ title: readonly {
602
+ locale: "en" | "ja" | "ko" | "zh";
603
+ message: string;
604
+ }[];
605
+ labelStyle?: string | undefined;
606
+ contentStyle?: string | undefined;
607
+ required?: boolean | undefined;
608
+ icon?: string | undefined;
609
+ style?: string | undefined;
610
+ display?: string | undefined;
611
+ initialValue?: string | undefined;
612
+ disableDate?: string | undefined;
613
+ hidden?: string | undefined;
614
+ disabled?: string | undefined;
615
+ validation?: readonly Readonly<{
616
+ expression: string;
617
+ message: string;
618
+ }>[] | undefined;
619
+ hideLabel?: boolean | undefined;
620
+ } | {
621
+ id: string;
622
+ type: "upload";
623
+ path: string;
624
+ title: readonly {
625
+ locale: "en" | "ja" | "ko" | "zh";
626
+ message: string;
627
+ }[];
628
+ labelStyle?: string | undefined;
629
+ contentStyle?: string | undefined;
630
+ required?: boolean | undefined;
631
+ icon?: string | undefined;
632
+ accept?: readonly string[] | undefined;
633
+ description?: readonly {
634
+ locale: "en" | "ja" | "ko" | "zh";
635
+ message: string;
636
+ }[] | undefined;
637
+ maxCount?: string | undefined;
638
+ template?: string | undefined;
639
+ templateName?: readonly {
640
+ locale: "en" | "ja" | "ko" | "zh";
641
+ message: string;
642
+ }[] | undefined;
643
+ style?: string | undefined;
644
+ initialValue?: string | undefined;
645
+ hidden?: string | undefined;
646
+ disabled?: string | undefined;
647
+ validation?: readonly Readonly<{
648
+ expression: string;
649
+ message: string;
650
+ }>[] | undefined;
651
+ hideLabel?: boolean | undefined;
652
+ } | {
653
+ id: string;
654
+ type: "slot";
655
+ style?: string | undefined;
656
+ } | {
657
+ id: string;
658
+ type: "empty";
659
+ style?: string | undefined;
660
+ })[];
28
661
  groups: readonly Readonly<{
29
662
  id: string;
30
- fields: readonly Field[];
663
+ fields: readonly ({
664
+ id: string;
665
+ type: "string";
666
+ path: string;
667
+ title: readonly {
668
+ locale: "en" | "ja" | "ko" | "zh";
669
+ message: string;
670
+ }[];
671
+ labelStyle?: string | undefined;
672
+ contentStyle?: string | undefined;
673
+ required?: boolean | undefined;
674
+ icon?: string | undefined;
675
+ style?: string | undefined;
676
+ discardEmptyString?: boolean | undefined;
677
+ initialValue?: string | undefined;
678
+ maxLength?: string | undefined;
679
+ hidden?: string | undefined;
680
+ disabled?: string | undefined;
681
+ validation?: readonly Readonly<{
682
+ expression: string;
683
+ message: string;
684
+ }>[] | undefined;
685
+ hideLabel?: boolean | undefined;
686
+ } | {
687
+ id: string;
688
+ type: "textarea";
689
+ path: string;
690
+ title: readonly {
691
+ locale: "en" | "ja" | "ko" | "zh";
692
+ message: string;
693
+ }[];
694
+ labelStyle?: string | undefined;
695
+ contentStyle?: string | undefined;
696
+ required?: boolean | undefined;
697
+ icon?: string | undefined;
698
+ style?: string | undefined;
699
+ discardEmptyString?: boolean | undefined;
700
+ initialValue?: string | undefined;
701
+ maxLength?: string | undefined;
702
+ hidden?: string | undefined;
703
+ disabled?: string | undefined;
704
+ validation?: readonly Readonly<{
705
+ expression: string;
706
+ message: string;
707
+ }>[] | undefined;
708
+ hideLabel?: boolean | undefined;
709
+ } | {
710
+ id: string;
711
+ type: "number";
712
+ path: string;
713
+ title: readonly {
714
+ locale: "en" | "ja" | "ko" | "zh";
715
+ message: string;
716
+ }[];
717
+ labelStyle?: string | undefined;
718
+ contentStyle?: string | undefined;
719
+ required?: boolean | undefined;
720
+ icon?: string | undefined;
721
+ style?: string | undefined;
722
+ initialValue?: string | undefined;
723
+ min?: string | undefined;
724
+ max?: string | undefined;
725
+ step?: string | undefined;
726
+ hidden?: string | undefined;
727
+ disabled?: string | undefined;
728
+ validation?: readonly Readonly<{
729
+ expression: string;
730
+ message: string;
731
+ }>[] | undefined;
732
+ hideLabel?: boolean | undefined;
733
+ } | {
734
+ locale: readonly {
735
+ locale: "en" | "ja" | "ko" | "zh";
736
+ message: string;
737
+ }[];
738
+ id: string;
739
+ type: "markdown";
740
+ title: readonly {
741
+ locale: "en" | "ja" | "ko" | "zh";
742
+ message: string;
743
+ }[];
744
+ labelStyle?: string | undefined;
745
+ contentStyle?: string | undefined;
746
+ style?: string | undefined;
747
+ hidden?: string | undefined;
748
+ hideLabel?: boolean | undefined;
749
+ } | {
750
+ id: string;
751
+ type: "markdown-body";
752
+ locale: readonly {
753
+ locale: "en" | "ja" | "ko" | "zh";
754
+ message: string;
755
+ }[];
756
+ inline?: boolean | undefined;
757
+ style?: string | undefined;
758
+ hidden?: string | undefined;
759
+ } | {
760
+ options: string;
761
+ label: string;
762
+ value: string;
763
+ key: string;
764
+ id: string;
765
+ type: "select";
766
+ path: string;
767
+ title: readonly {
768
+ locale: "en" | "ja" | "ko" | "zh";
769
+ message: string;
770
+ }[];
771
+ labelStyle?: string | undefined;
772
+ contentStyle?: string | undefined;
773
+ required?: boolean | undefined;
774
+ icon?: string | undefined;
775
+ style?: string | undefined;
776
+ initialValue?: string | undefined;
777
+ hidden?: string | undefined;
778
+ disabled?: string | undefined;
779
+ validation?: readonly Readonly<{
780
+ expression: string;
781
+ message: string;
782
+ }>[] | undefined;
783
+ hideLabel?: boolean | undefined;
784
+ } | {
785
+ options: string;
786
+ label: string;
787
+ value: string;
788
+ key: string;
789
+ id: string;
790
+ type: "radio";
791
+ path: string;
792
+ title: readonly {
793
+ locale: "en" | "ja" | "ko" | "zh";
794
+ message: string;
795
+ }[];
796
+ labelStyle?: string | undefined;
797
+ contentStyle?: string | undefined;
798
+ required?: boolean | undefined;
799
+ icon?: string | undefined;
800
+ style?: string | undefined;
801
+ initialValue?: string | undefined;
802
+ hidden?: string | undefined;
803
+ disabled?: string | undefined;
804
+ validation?: readonly Readonly<{
805
+ expression: string;
806
+ message: string;
807
+ }>[] | undefined;
808
+ hideLabel?: boolean | undefined;
809
+ } | {
810
+ mode: "month" | "year" | "date";
811
+ value: string;
812
+ id: string;
813
+ type: "calendar";
814
+ path: string;
815
+ title: readonly {
816
+ locale: "en" | "ja" | "ko" | "zh";
817
+ message: string;
818
+ }[];
819
+ labelStyle?: string | undefined;
820
+ contentStyle?: string | undefined;
821
+ required?: boolean | undefined;
822
+ icon?: string | undefined;
823
+ style?: string | undefined;
824
+ display?: string | undefined;
825
+ initialValue?: string | undefined;
826
+ disableDate?: string | undefined;
827
+ hidden?: string | undefined;
828
+ disabled?: string | undefined;
829
+ validation?: readonly Readonly<{
830
+ expression: string;
831
+ message: string;
832
+ }>[] | undefined;
833
+ hideLabel?: boolean | undefined;
834
+ } | {
835
+ id: string;
836
+ type: "upload";
837
+ path: string;
838
+ title: readonly {
839
+ locale: "en" | "ja" | "ko" | "zh";
840
+ message: string;
841
+ }[];
842
+ labelStyle?: string | undefined;
843
+ contentStyle?: string | undefined;
844
+ required?: boolean | undefined;
845
+ icon?: string | undefined;
846
+ accept?: readonly string[] | undefined;
847
+ description?: readonly {
848
+ locale: "en" | "ja" | "ko" | "zh";
849
+ message: string;
850
+ }[] | undefined;
851
+ maxCount?: string | undefined;
852
+ template?: string | undefined;
853
+ templateName?: readonly {
854
+ locale: "en" | "ja" | "ko" | "zh";
855
+ message: string;
856
+ }[] | undefined;
857
+ style?: string | undefined;
858
+ initialValue?: string | undefined;
859
+ hidden?: string | undefined;
860
+ disabled?: string | undefined;
861
+ validation?: readonly Readonly<{
862
+ expression: string;
863
+ message: string;
864
+ }>[] | undefined;
865
+ hideLabel?: boolean | undefined;
866
+ } | {
867
+ id: string;
868
+ type: "slot";
869
+ style?: string | undefined;
870
+ } | {
871
+ id: string;
872
+ type: "empty";
873
+ style?: string | undefined;
874
+ })[];
31
875
  style?: string | undefined;
32
876
  }>[];
33
877
  kind: string;