@shwfed/nuxt 0.11.46 → 0.11.48

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