@shwfed/nuxt 0.11.50 → 0.11.52

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