@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,7 +1,7 @@
1
1
  import { Effect } from 'effect';
2
2
  import type { CSSProperties } from 'vue';
3
- export { CalendarFieldC, CURRENT_COMPATIBILITY_DATE, EmptyFieldC, FieldC, FieldGroupC, FieldsBodyC, FieldsBodyInputC, FieldsConfigC, FieldsConfigInputC, KIND, MarkdownFieldC, NumberFieldC, SelectFieldC, SlotFieldC, SUPPORTED_COMPATIBILITY_DATES, StringFieldC, UploadFieldC, ValidationRuleC, createFieldsConfig, validationC, } from './schema.js';
4
- export type { EmptyField, Field, FieldGroup, FieldsBody, FieldsBodyInput, FieldsConfig, FieldsConfigInput, MarkdownField, SlotField, UploadField, ValidationRule, } from './schema.js';
3
+ export { CalendarFieldC, ContainerFieldC, CURRENT_COMPATIBILITY_DATE, EmptyFieldC, FieldC, FieldGroupC, FieldsBodyC, FieldsBodyInputC, FieldsConfigC, FieldsConfigInputC, KIND, MarkdownBodyFieldC, MarkdownFieldC, NumberFieldC, SelectFieldC, SlotFieldC, SUPPORTED_COMPATIBILITY_DATES, StringFieldC, TextareaFieldC, UploadFieldC, ValidationRuleC, createFieldsConfig, validationC, } from './schema.js';
4
+ export type { ContainerField, EmptyField, Field, FieldGroup, FieldsBody, FieldsBodyInput, FieldsConfig, FieldsConfigInput, MarkdownBodyField, MarkdownField, SlotField, TextareaField, UploadField, ValidationRule, } from './schema.js';
5
5
  export type { FieldsInstance } from '../../fields-instance.js';
6
6
  export type { FieldsSlotProps } from './slot-props.js';
7
7
  declare const _default: typeof __VLS_export;
@@ -10,412 +10,10 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
10
10
  config: Effect.Effect<Readonly<{
11
11
  kind: string;
12
12
  compatibilityDate: string;
13
- fields?: readonly ({
14
- id: string;
15
- type: "string";
16
- path: string;
17
- title: readonly {
18
- locale: "en" | "ja" | "ko" | "zh";
19
- message: string;
20
- }[];
21
- labelStyle?: string | undefined;
22
- contentStyle?: string | undefined;
23
- required?: boolean | undefined;
24
- icon?: string | undefined;
25
- style?: string | undefined;
26
- discardEmptyString?: boolean | undefined;
27
- initialValue?: string | undefined;
28
- maxLength?: string | undefined;
29
- hidden?: string | undefined;
30
- disabled?: string | undefined;
31
- validation?: readonly Readonly<{
32
- expression: string;
33
- message: string;
34
- }>[] | undefined;
35
- hideLabel?: boolean | undefined;
36
- } | {
37
- id: string;
38
- type: "textarea";
39
- path: string;
40
- title: readonly {
41
- locale: "en" | "ja" | "ko" | "zh";
42
- message: string;
43
- }[];
44
- labelStyle?: string | undefined;
45
- contentStyle?: string | undefined;
46
- required?: boolean | undefined;
47
- icon?: string | undefined;
48
- style?: string | undefined;
49
- discardEmptyString?: boolean | undefined;
50
- initialValue?: string | undefined;
51
- maxLength?: string | undefined;
52
- hidden?: string | undefined;
53
- disabled?: string | undefined;
54
- validation?: readonly Readonly<{
55
- expression: string;
56
- message: string;
57
- }>[] | undefined;
58
- hideLabel?: boolean | undefined;
59
- } | {
60
- id: string;
61
- type: "number";
62
- path: string;
63
- title: readonly {
64
- locale: "en" | "ja" | "ko" | "zh";
65
- message: string;
66
- }[];
67
- labelStyle?: string | undefined;
68
- contentStyle?: string | undefined;
69
- required?: boolean | undefined;
70
- icon?: string | undefined;
71
- style?: string | undefined;
72
- initialValue?: string | undefined;
73
- min?: string | undefined;
74
- max?: string | undefined;
75
- step?: string | undefined;
76
- hidden?: string | undefined;
77
- disabled?: string | undefined;
78
- validation?: readonly Readonly<{
79
- expression: string;
80
- message: string;
81
- }>[] | undefined;
82
- hideLabel?: boolean | undefined;
83
- } | {
84
- locale: readonly {
85
- locale: "en" | "ja" | "ko" | "zh";
86
- message: string;
87
- }[];
88
- id: string;
89
- type: "markdown";
90
- title: readonly {
91
- locale: "en" | "ja" | "ko" | "zh";
92
- message: string;
93
- }[];
94
- labelStyle?: string | undefined;
95
- contentStyle?: string | undefined;
96
- style?: string | undefined;
97
- hidden?: string | undefined;
98
- hideLabel?: boolean | undefined;
99
- } | {
100
- options: string;
101
- label: string;
102
- value: string;
103
- key: string;
104
- id: string;
105
- type: "select";
106
- path: string;
107
- title: readonly {
108
- locale: "en" | "ja" | "ko" | "zh";
109
- message: string;
110
- }[];
111
- labelStyle?: string | undefined;
112
- contentStyle?: string | undefined;
113
- required?: boolean | undefined;
114
- icon?: string | undefined;
115
- style?: string | undefined;
116
- initialValue?: string | undefined;
117
- hidden?: string | undefined;
118
- disabled?: string | undefined;
119
- validation?: readonly Readonly<{
120
- expression: string;
121
- message: string;
122
- }>[] | undefined;
123
- hideLabel?: boolean | undefined;
124
- } | {
125
- options: string;
126
- label: string;
127
- value: string;
128
- key: string;
129
- id: string;
130
- type: "radio";
131
- path: string;
132
- title: readonly {
133
- locale: "en" | "ja" | "ko" | "zh";
134
- message: string;
135
- }[];
136
- labelStyle?: string | undefined;
137
- contentStyle?: string | undefined;
138
- required?: boolean | undefined;
139
- icon?: string | undefined;
140
- style?: string | undefined;
141
- initialValue?: string | undefined;
142
- hidden?: string | undefined;
143
- disabled?: string | undefined;
144
- validation?: readonly Readonly<{
145
- expression: string;
146
- message: string;
147
- }>[] | undefined;
148
- hideLabel?: boolean | undefined;
149
- } | {
150
- mode: "month" | "year" | "date";
151
- value: string;
152
- id: string;
153
- type: "calendar";
154
- path: string;
155
- title: readonly {
156
- locale: "en" | "ja" | "ko" | "zh";
157
- message: string;
158
- }[];
159
- labelStyle?: string | undefined;
160
- contentStyle?: string | undefined;
161
- required?: boolean | undefined;
162
- icon?: string | undefined;
163
- style?: string | undefined;
164
- display?: string | undefined;
165
- initialValue?: string | undefined;
166
- disableDate?: string | undefined;
167
- hidden?: string | undefined;
168
- disabled?: string | undefined;
169
- validation?: readonly Readonly<{
170
- expression: string;
171
- message: string;
172
- }>[] | undefined;
173
- hideLabel?: boolean | undefined;
174
- } | {
175
- id: string;
176
- type: "upload";
177
- path: string;
178
- title: readonly {
179
- locale: "en" | "ja" | "ko" | "zh";
180
- message: string;
181
- }[];
182
- labelStyle?: string | undefined;
183
- contentStyle?: string | undefined;
184
- required?: boolean | undefined;
185
- icon?: string | undefined;
186
- accept?: readonly string[] | undefined;
187
- description?: readonly {
188
- locale: "en" | "ja" | "ko" | "zh";
189
- message: string;
190
- }[] | undefined;
191
- maxCount?: string | undefined;
192
- template?: string | undefined;
193
- templateName?: readonly {
194
- locale: "en" | "ja" | "ko" | "zh";
195
- message: string;
196
- }[] | undefined;
197
- style?: string | undefined;
198
- initialValue?: string | undefined;
199
- hidden?: string | undefined;
200
- disabled?: string | undefined;
201
- validation?: readonly Readonly<{
202
- expression: string;
203
- message: string;
204
- }>[] | undefined;
205
- hideLabel?: boolean | undefined;
206
- } | {
207
- id: string;
208
- type: "slot";
209
- style?: string | undefined;
210
- } | {
211
- id: string;
212
- type: "empty";
213
- style?: string | undefined;
214
- })[] | undefined;
13
+ fields?: readonly import("./schema.js").Field[] | undefined;
215
14
  groups?: readonly Readonly<{
216
15
  id: string;
217
- fields: readonly ({
218
- id: string;
219
- type: "string";
220
- path: string;
221
- title: readonly {
222
- locale: "en" | "ja" | "ko" | "zh";
223
- message: string;
224
- }[];
225
- labelStyle?: string | undefined;
226
- contentStyle?: string | undefined;
227
- required?: boolean | undefined;
228
- icon?: string | undefined;
229
- style?: string | undefined;
230
- discardEmptyString?: boolean | undefined;
231
- initialValue?: string | undefined;
232
- maxLength?: string | undefined;
233
- hidden?: string | undefined;
234
- disabled?: string | undefined;
235
- validation?: readonly Readonly<{
236
- expression: string;
237
- message: string;
238
- }>[] | undefined;
239
- hideLabel?: boolean | undefined;
240
- } | {
241
- id: string;
242
- type: "textarea";
243
- path: string;
244
- title: readonly {
245
- locale: "en" | "ja" | "ko" | "zh";
246
- message: string;
247
- }[];
248
- labelStyle?: string | undefined;
249
- contentStyle?: string | undefined;
250
- required?: boolean | undefined;
251
- icon?: string | undefined;
252
- style?: string | undefined;
253
- discardEmptyString?: boolean | undefined;
254
- initialValue?: string | undefined;
255
- maxLength?: string | undefined;
256
- hidden?: string | undefined;
257
- disabled?: string | undefined;
258
- validation?: readonly Readonly<{
259
- expression: string;
260
- message: string;
261
- }>[] | undefined;
262
- hideLabel?: boolean | undefined;
263
- } | {
264
- id: string;
265
- type: "number";
266
- path: string;
267
- title: readonly {
268
- locale: "en" | "ja" | "ko" | "zh";
269
- message: string;
270
- }[];
271
- labelStyle?: string | undefined;
272
- contentStyle?: string | undefined;
273
- required?: boolean | undefined;
274
- icon?: string | undefined;
275
- style?: string | undefined;
276
- initialValue?: string | undefined;
277
- min?: string | undefined;
278
- max?: string | undefined;
279
- step?: string | undefined;
280
- hidden?: string | undefined;
281
- disabled?: string | undefined;
282
- validation?: readonly Readonly<{
283
- expression: string;
284
- message: string;
285
- }>[] | undefined;
286
- hideLabel?: boolean | undefined;
287
- } | {
288
- locale: readonly {
289
- locale: "en" | "ja" | "ko" | "zh";
290
- message: string;
291
- }[];
292
- id: string;
293
- type: "markdown";
294
- title: readonly {
295
- locale: "en" | "ja" | "ko" | "zh";
296
- message: string;
297
- }[];
298
- labelStyle?: string | undefined;
299
- contentStyle?: string | undefined;
300
- style?: string | undefined;
301
- hidden?: string | undefined;
302
- hideLabel?: boolean | undefined;
303
- } | {
304
- options: string;
305
- label: string;
306
- value: string;
307
- key: string;
308
- id: string;
309
- type: "select";
310
- path: string;
311
- title: readonly {
312
- locale: "en" | "ja" | "ko" | "zh";
313
- message: string;
314
- }[];
315
- labelStyle?: string | undefined;
316
- contentStyle?: string | undefined;
317
- required?: boolean | undefined;
318
- icon?: string | undefined;
319
- style?: string | undefined;
320
- initialValue?: string | undefined;
321
- hidden?: string | undefined;
322
- disabled?: string | undefined;
323
- validation?: readonly Readonly<{
324
- expression: string;
325
- message: string;
326
- }>[] | undefined;
327
- hideLabel?: boolean | undefined;
328
- } | {
329
- options: string;
330
- label: string;
331
- value: string;
332
- key: string;
333
- id: string;
334
- type: "radio";
335
- path: string;
336
- title: readonly {
337
- locale: "en" | "ja" | "ko" | "zh";
338
- message: string;
339
- }[];
340
- labelStyle?: string | undefined;
341
- contentStyle?: string | undefined;
342
- required?: boolean | undefined;
343
- icon?: string | undefined;
344
- style?: string | undefined;
345
- initialValue?: string | undefined;
346
- hidden?: string | undefined;
347
- disabled?: string | undefined;
348
- validation?: readonly Readonly<{
349
- expression: string;
350
- message: string;
351
- }>[] | undefined;
352
- hideLabel?: boolean | undefined;
353
- } | {
354
- mode: "month" | "year" | "date";
355
- value: string;
356
- id: string;
357
- type: "calendar";
358
- path: string;
359
- title: readonly {
360
- locale: "en" | "ja" | "ko" | "zh";
361
- message: string;
362
- }[];
363
- labelStyle?: string | undefined;
364
- contentStyle?: string | undefined;
365
- required?: boolean | undefined;
366
- icon?: string | undefined;
367
- style?: string | undefined;
368
- display?: string | undefined;
369
- initialValue?: string | undefined;
370
- disableDate?: string | undefined;
371
- hidden?: string | undefined;
372
- disabled?: string | undefined;
373
- validation?: readonly Readonly<{
374
- expression: string;
375
- message: string;
376
- }>[] | undefined;
377
- hideLabel?: boolean | undefined;
378
- } | {
379
- id: string;
380
- type: "upload";
381
- path: string;
382
- title: readonly {
383
- locale: "en" | "ja" | "ko" | "zh";
384
- message: string;
385
- }[];
386
- labelStyle?: string | undefined;
387
- contentStyle?: string | undefined;
388
- required?: boolean | undefined;
389
- icon?: string | undefined;
390
- accept?: readonly string[] | undefined;
391
- description?: readonly {
392
- locale: "en" | "ja" | "ko" | "zh";
393
- message: string;
394
- }[] | undefined;
395
- maxCount?: string | undefined;
396
- template?: string | undefined;
397
- templateName?: readonly {
398
- locale: "en" | "ja" | "ko" | "zh";
399
- message: string;
400
- }[] | undefined;
401
- style?: string | undefined;
402
- initialValue?: string | undefined;
403
- hidden?: string | undefined;
404
- disabled?: string | undefined;
405
- validation?: readonly Readonly<{
406
- expression: string;
407
- message: string;
408
- }>[] | undefined;
409
- hideLabel?: boolean | undefined;
410
- } | {
411
- id: string;
412
- type: "slot";
413
- style?: string | undefined;
414
- } | {
415
- id: string;
416
- type: "empty";
417
- style?: string | undefined;
418
- })[];
16
+ fields: readonly import("./schema.js").Field[];
419
17
  style?: string | undefined;
420
18
  }>[] | undefined;
421
19
  orientation?: "vertical" | "horizontal" | "floating" | "contents" | undefined;
@@ -429,412 +27,10 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
429
27
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
430
28
  "update:modelValue": (value: Record<string, unknown>) => any;
431
29
  "update:config": (args_0: Readonly<{
432
- fields: readonly ({
433
- id: string;
434
- type: "string";
435
- path: string;
436
- title: readonly {
437
- locale: "en" | "ja" | "ko" | "zh";
438
- message: string;
439
- }[];
440
- labelStyle?: string | undefined;
441
- contentStyle?: string | undefined;
442
- required?: boolean | undefined;
443
- icon?: string | undefined;
444
- style?: string | undefined;
445
- discardEmptyString?: boolean | undefined;
446
- initialValue?: string | undefined;
447
- maxLength?: string | undefined;
448
- hidden?: string | undefined;
449
- disabled?: string | undefined;
450
- validation?: readonly Readonly<{
451
- expression: string;
452
- message: string;
453
- }>[] | undefined;
454
- hideLabel?: boolean | undefined;
455
- } | {
456
- id: string;
457
- type: "textarea";
458
- path: string;
459
- title: readonly {
460
- locale: "en" | "ja" | "ko" | "zh";
461
- message: string;
462
- }[];
463
- labelStyle?: string | undefined;
464
- contentStyle?: string | undefined;
465
- required?: boolean | undefined;
466
- icon?: string | undefined;
467
- style?: string | undefined;
468
- discardEmptyString?: boolean | undefined;
469
- initialValue?: string | undefined;
470
- maxLength?: string | undefined;
471
- hidden?: string | undefined;
472
- disabled?: string | undefined;
473
- validation?: readonly Readonly<{
474
- expression: string;
475
- message: string;
476
- }>[] | undefined;
477
- hideLabel?: boolean | undefined;
478
- } | {
479
- id: string;
480
- type: "number";
481
- path: string;
482
- title: readonly {
483
- locale: "en" | "ja" | "ko" | "zh";
484
- message: string;
485
- }[];
486
- labelStyle?: string | undefined;
487
- contentStyle?: string | undefined;
488
- required?: boolean | undefined;
489
- icon?: string | undefined;
490
- style?: string | undefined;
491
- initialValue?: string | undefined;
492
- min?: string | undefined;
493
- max?: string | undefined;
494
- step?: string | undefined;
495
- hidden?: string | undefined;
496
- disabled?: string | undefined;
497
- validation?: readonly Readonly<{
498
- expression: string;
499
- message: string;
500
- }>[] | undefined;
501
- hideLabel?: boolean | undefined;
502
- } | {
503
- locale: readonly {
504
- locale: "en" | "ja" | "ko" | "zh";
505
- message: string;
506
- }[];
507
- id: string;
508
- type: "markdown";
509
- title: readonly {
510
- locale: "en" | "ja" | "ko" | "zh";
511
- message: string;
512
- }[];
513
- labelStyle?: string | undefined;
514
- contentStyle?: string | undefined;
515
- style?: string | undefined;
516
- hidden?: string | undefined;
517
- hideLabel?: boolean | undefined;
518
- } | {
519
- options: string;
520
- label: string;
521
- value: string;
522
- key: string;
523
- id: string;
524
- type: "select";
525
- path: string;
526
- title: readonly {
527
- locale: "en" | "ja" | "ko" | "zh";
528
- message: string;
529
- }[];
530
- labelStyle?: string | undefined;
531
- contentStyle?: string | undefined;
532
- required?: boolean | undefined;
533
- icon?: string | undefined;
534
- style?: string | undefined;
535
- initialValue?: string | undefined;
536
- hidden?: string | undefined;
537
- disabled?: string | undefined;
538
- validation?: readonly Readonly<{
539
- expression: string;
540
- message: string;
541
- }>[] | undefined;
542
- hideLabel?: boolean | undefined;
543
- } | {
544
- options: string;
545
- label: string;
546
- value: string;
547
- key: string;
548
- id: string;
549
- type: "radio";
550
- path: string;
551
- title: readonly {
552
- locale: "en" | "ja" | "ko" | "zh";
553
- message: string;
554
- }[];
555
- labelStyle?: string | undefined;
556
- contentStyle?: string | undefined;
557
- required?: boolean | undefined;
558
- icon?: string | undefined;
559
- style?: string | undefined;
560
- initialValue?: string | undefined;
561
- hidden?: string | undefined;
562
- disabled?: string | undefined;
563
- validation?: readonly Readonly<{
564
- expression: string;
565
- message: string;
566
- }>[] | undefined;
567
- hideLabel?: boolean | undefined;
568
- } | {
569
- mode: "month" | "year" | "date";
570
- value: string;
571
- id: string;
572
- type: "calendar";
573
- path: string;
574
- title: readonly {
575
- locale: "en" | "ja" | "ko" | "zh";
576
- message: string;
577
- }[];
578
- labelStyle?: string | undefined;
579
- contentStyle?: string | undefined;
580
- required?: boolean | undefined;
581
- icon?: string | undefined;
582
- style?: string | undefined;
583
- display?: string | undefined;
584
- initialValue?: string | undefined;
585
- disableDate?: string | undefined;
586
- hidden?: string | undefined;
587
- disabled?: string | undefined;
588
- validation?: readonly Readonly<{
589
- expression: string;
590
- message: string;
591
- }>[] | undefined;
592
- hideLabel?: boolean | undefined;
593
- } | {
594
- id: string;
595
- type: "upload";
596
- path: string;
597
- title: readonly {
598
- locale: "en" | "ja" | "ko" | "zh";
599
- message: string;
600
- }[];
601
- labelStyle?: string | undefined;
602
- contentStyle?: string | undefined;
603
- required?: boolean | undefined;
604
- icon?: string | undefined;
605
- accept?: readonly string[] | undefined;
606
- description?: readonly {
607
- locale: "en" | "ja" | "ko" | "zh";
608
- message: string;
609
- }[] | undefined;
610
- maxCount?: string | undefined;
611
- template?: string | undefined;
612
- templateName?: readonly {
613
- locale: "en" | "ja" | "ko" | "zh";
614
- message: string;
615
- }[] | undefined;
616
- style?: string | undefined;
617
- initialValue?: string | undefined;
618
- hidden?: string | undefined;
619
- disabled?: string | undefined;
620
- validation?: readonly Readonly<{
621
- expression: string;
622
- message: string;
623
- }>[] | undefined;
624
- hideLabel?: boolean | undefined;
625
- } | {
626
- id: string;
627
- type: "slot";
628
- style?: string | undefined;
629
- } | {
630
- id: string;
631
- type: "empty";
632
- style?: string | undefined;
633
- })[];
30
+ fields: readonly import("./schema.js").Field[];
634
31
  groups: readonly Readonly<{
635
32
  id: string;
636
- fields: readonly ({
637
- id: string;
638
- type: "string";
639
- path: string;
640
- title: readonly {
641
- locale: "en" | "ja" | "ko" | "zh";
642
- message: string;
643
- }[];
644
- labelStyle?: string | undefined;
645
- contentStyle?: string | undefined;
646
- required?: boolean | undefined;
647
- icon?: string | undefined;
648
- style?: string | undefined;
649
- discardEmptyString?: boolean | undefined;
650
- initialValue?: string | undefined;
651
- maxLength?: string | undefined;
652
- hidden?: string | undefined;
653
- disabled?: string | undefined;
654
- validation?: readonly Readonly<{
655
- expression: string;
656
- message: string;
657
- }>[] | undefined;
658
- hideLabel?: boolean | undefined;
659
- } | {
660
- id: string;
661
- type: "textarea";
662
- path: string;
663
- title: readonly {
664
- locale: "en" | "ja" | "ko" | "zh";
665
- message: string;
666
- }[];
667
- labelStyle?: string | undefined;
668
- contentStyle?: string | undefined;
669
- required?: boolean | undefined;
670
- icon?: string | undefined;
671
- style?: string | undefined;
672
- discardEmptyString?: boolean | undefined;
673
- initialValue?: string | undefined;
674
- maxLength?: string | undefined;
675
- hidden?: string | undefined;
676
- disabled?: string | undefined;
677
- validation?: readonly Readonly<{
678
- expression: string;
679
- message: string;
680
- }>[] | undefined;
681
- hideLabel?: boolean | undefined;
682
- } | {
683
- id: string;
684
- type: "number";
685
- path: string;
686
- title: readonly {
687
- locale: "en" | "ja" | "ko" | "zh";
688
- message: string;
689
- }[];
690
- labelStyle?: string | undefined;
691
- contentStyle?: string | undefined;
692
- required?: boolean | undefined;
693
- icon?: string | undefined;
694
- style?: string | undefined;
695
- initialValue?: string | undefined;
696
- min?: string | undefined;
697
- max?: string | undefined;
698
- step?: string | undefined;
699
- hidden?: string | undefined;
700
- disabled?: string | undefined;
701
- validation?: readonly Readonly<{
702
- expression: string;
703
- message: string;
704
- }>[] | undefined;
705
- hideLabel?: boolean | undefined;
706
- } | {
707
- locale: readonly {
708
- locale: "en" | "ja" | "ko" | "zh";
709
- message: string;
710
- }[];
711
- id: string;
712
- type: "markdown";
713
- title: readonly {
714
- locale: "en" | "ja" | "ko" | "zh";
715
- message: string;
716
- }[];
717
- labelStyle?: string | undefined;
718
- contentStyle?: string | undefined;
719
- style?: string | undefined;
720
- hidden?: string | undefined;
721
- hideLabel?: boolean | undefined;
722
- } | {
723
- options: string;
724
- label: string;
725
- value: string;
726
- key: string;
727
- id: string;
728
- type: "select";
729
- path: string;
730
- title: readonly {
731
- locale: "en" | "ja" | "ko" | "zh";
732
- message: string;
733
- }[];
734
- labelStyle?: string | undefined;
735
- contentStyle?: string | undefined;
736
- required?: boolean | undefined;
737
- icon?: string | undefined;
738
- style?: string | undefined;
739
- initialValue?: string | undefined;
740
- hidden?: string | undefined;
741
- disabled?: string | undefined;
742
- validation?: readonly Readonly<{
743
- expression: string;
744
- message: string;
745
- }>[] | undefined;
746
- hideLabel?: boolean | undefined;
747
- } | {
748
- options: string;
749
- label: string;
750
- value: string;
751
- key: string;
752
- id: string;
753
- type: "radio";
754
- path: string;
755
- title: readonly {
756
- locale: "en" | "ja" | "ko" | "zh";
757
- message: string;
758
- }[];
759
- labelStyle?: string | undefined;
760
- contentStyle?: string | undefined;
761
- required?: boolean | undefined;
762
- icon?: string | undefined;
763
- style?: string | undefined;
764
- initialValue?: string | undefined;
765
- hidden?: string | undefined;
766
- disabled?: string | undefined;
767
- validation?: readonly Readonly<{
768
- expression: string;
769
- message: string;
770
- }>[] | undefined;
771
- hideLabel?: boolean | undefined;
772
- } | {
773
- mode: "month" | "year" | "date";
774
- value: string;
775
- id: string;
776
- type: "calendar";
777
- path: string;
778
- title: readonly {
779
- locale: "en" | "ja" | "ko" | "zh";
780
- message: string;
781
- }[];
782
- labelStyle?: string | undefined;
783
- contentStyle?: string | undefined;
784
- required?: boolean | undefined;
785
- icon?: string | undefined;
786
- style?: string | undefined;
787
- display?: string | undefined;
788
- initialValue?: string | undefined;
789
- disableDate?: string | undefined;
790
- hidden?: string | undefined;
791
- disabled?: string | undefined;
792
- validation?: readonly Readonly<{
793
- expression: string;
794
- message: string;
795
- }>[] | undefined;
796
- hideLabel?: boolean | undefined;
797
- } | {
798
- id: string;
799
- type: "upload";
800
- path: string;
801
- title: readonly {
802
- locale: "en" | "ja" | "ko" | "zh";
803
- message: string;
804
- }[];
805
- labelStyle?: string | undefined;
806
- contentStyle?: string | undefined;
807
- required?: boolean | undefined;
808
- icon?: string | undefined;
809
- accept?: readonly string[] | undefined;
810
- description?: readonly {
811
- locale: "en" | "ja" | "ko" | "zh";
812
- message: string;
813
- }[] | undefined;
814
- maxCount?: string | undefined;
815
- template?: string | undefined;
816
- templateName?: readonly {
817
- locale: "en" | "ja" | "ko" | "zh";
818
- message: string;
819
- }[] | undefined;
820
- style?: string | undefined;
821
- initialValue?: string | undefined;
822
- hidden?: string | undefined;
823
- disabled?: string | undefined;
824
- validation?: readonly Readonly<{
825
- expression: string;
826
- message: string;
827
- }>[] | undefined;
828
- hideLabel?: boolean | undefined;
829
- } | {
830
- id: string;
831
- type: "slot";
832
- style?: string | undefined;
833
- } | {
834
- id: string;
835
- type: "empty";
836
- style?: string | undefined;
837
- })[];
33
+ fields: readonly import("./schema.js").Field[];
838
34
  style?: string | undefined;
839
35
  }>[];
840
36
  kind: string;
@@ -848,412 +44,10 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
848
44
  config: Effect.Effect<Readonly<{
849
45
  kind: string;
850
46
  compatibilityDate: string;
851
- fields?: readonly ({
852
- id: string;
853
- type: "string";
854
- path: string;
855
- title: readonly {
856
- locale: "en" | "ja" | "ko" | "zh";
857
- message: string;
858
- }[];
859
- labelStyle?: string | undefined;
860
- contentStyle?: string | undefined;
861
- required?: boolean | undefined;
862
- icon?: string | undefined;
863
- style?: string | undefined;
864
- discardEmptyString?: boolean | undefined;
865
- initialValue?: string | undefined;
866
- maxLength?: string | undefined;
867
- hidden?: string | undefined;
868
- disabled?: string | undefined;
869
- validation?: readonly Readonly<{
870
- expression: string;
871
- message: string;
872
- }>[] | undefined;
873
- hideLabel?: boolean | undefined;
874
- } | {
875
- id: string;
876
- type: "textarea";
877
- path: string;
878
- title: readonly {
879
- locale: "en" | "ja" | "ko" | "zh";
880
- message: string;
881
- }[];
882
- labelStyle?: string | undefined;
883
- contentStyle?: string | undefined;
884
- required?: boolean | undefined;
885
- icon?: string | undefined;
886
- style?: string | undefined;
887
- discardEmptyString?: boolean | undefined;
888
- initialValue?: string | undefined;
889
- maxLength?: string | undefined;
890
- hidden?: string | undefined;
891
- disabled?: string | undefined;
892
- validation?: readonly Readonly<{
893
- expression: string;
894
- message: string;
895
- }>[] | undefined;
896
- hideLabel?: boolean | undefined;
897
- } | {
898
- id: string;
899
- type: "number";
900
- path: string;
901
- title: readonly {
902
- locale: "en" | "ja" | "ko" | "zh";
903
- message: string;
904
- }[];
905
- labelStyle?: string | undefined;
906
- contentStyle?: string | undefined;
907
- required?: boolean | undefined;
908
- icon?: string | undefined;
909
- style?: string | undefined;
910
- initialValue?: string | undefined;
911
- min?: string | undefined;
912
- max?: string | undefined;
913
- step?: string | undefined;
914
- hidden?: string | undefined;
915
- disabled?: string | undefined;
916
- validation?: readonly Readonly<{
917
- expression: string;
918
- message: string;
919
- }>[] | undefined;
920
- hideLabel?: boolean | undefined;
921
- } | {
922
- locale: readonly {
923
- locale: "en" | "ja" | "ko" | "zh";
924
- message: string;
925
- }[];
926
- id: string;
927
- type: "markdown";
928
- title: readonly {
929
- locale: "en" | "ja" | "ko" | "zh";
930
- message: string;
931
- }[];
932
- labelStyle?: string | undefined;
933
- contentStyle?: string | undefined;
934
- style?: string | undefined;
935
- hidden?: string | undefined;
936
- hideLabel?: boolean | undefined;
937
- } | {
938
- options: string;
939
- label: string;
940
- value: string;
941
- key: string;
942
- id: string;
943
- type: "select";
944
- path: string;
945
- title: readonly {
946
- locale: "en" | "ja" | "ko" | "zh";
947
- message: string;
948
- }[];
949
- labelStyle?: string | undefined;
950
- contentStyle?: string | undefined;
951
- required?: boolean | undefined;
952
- icon?: string | undefined;
953
- style?: string | undefined;
954
- initialValue?: string | undefined;
955
- hidden?: string | undefined;
956
- disabled?: string | undefined;
957
- validation?: readonly Readonly<{
958
- expression: string;
959
- message: string;
960
- }>[] | undefined;
961
- hideLabel?: boolean | undefined;
962
- } | {
963
- options: string;
964
- label: string;
965
- value: string;
966
- key: string;
967
- id: string;
968
- type: "radio";
969
- path: string;
970
- title: readonly {
971
- locale: "en" | "ja" | "ko" | "zh";
972
- message: string;
973
- }[];
974
- labelStyle?: string | undefined;
975
- contentStyle?: string | undefined;
976
- required?: boolean | undefined;
977
- icon?: string | undefined;
978
- style?: string | undefined;
979
- initialValue?: string | undefined;
980
- hidden?: string | undefined;
981
- disabled?: string | undefined;
982
- validation?: readonly Readonly<{
983
- expression: string;
984
- message: string;
985
- }>[] | undefined;
986
- hideLabel?: boolean | undefined;
987
- } | {
988
- mode: "month" | "year" | "date";
989
- value: string;
990
- id: string;
991
- type: "calendar";
992
- path: string;
993
- title: readonly {
994
- locale: "en" | "ja" | "ko" | "zh";
995
- message: string;
996
- }[];
997
- labelStyle?: string | undefined;
998
- contentStyle?: string | undefined;
999
- required?: boolean | undefined;
1000
- icon?: string | undefined;
1001
- style?: string | undefined;
1002
- display?: string | undefined;
1003
- initialValue?: string | undefined;
1004
- disableDate?: string | undefined;
1005
- hidden?: string | undefined;
1006
- disabled?: string | undefined;
1007
- validation?: readonly Readonly<{
1008
- expression: string;
1009
- message: string;
1010
- }>[] | undefined;
1011
- hideLabel?: boolean | undefined;
1012
- } | {
1013
- id: string;
1014
- type: "upload";
1015
- path: string;
1016
- title: readonly {
1017
- locale: "en" | "ja" | "ko" | "zh";
1018
- message: string;
1019
- }[];
1020
- labelStyle?: string | undefined;
1021
- contentStyle?: string | undefined;
1022
- required?: boolean | undefined;
1023
- icon?: string | undefined;
1024
- accept?: readonly string[] | undefined;
1025
- description?: readonly {
1026
- locale: "en" | "ja" | "ko" | "zh";
1027
- message: string;
1028
- }[] | undefined;
1029
- maxCount?: string | undefined;
1030
- template?: string | undefined;
1031
- templateName?: readonly {
1032
- locale: "en" | "ja" | "ko" | "zh";
1033
- message: string;
1034
- }[] | undefined;
1035
- style?: string | undefined;
1036
- initialValue?: string | undefined;
1037
- hidden?: string | undefined;
1038
- disabled?: string | undefined;
1039
- validation?: readonly Readonly<{
1040
- expression: string;
1041
- message: string;
1042
- }>[] | undefined;
1043
- hideLabel?: boolean | undefined;
1044
- } | {
1045
- id: string;
1046
- type: "slot";
1047
- style?: string | undefined;
1048
- } | {
1049
- id: string;
1050
- type: "empty";
1051
- style?: string | undefined;
1052
- })[] | undefined;
47
+ fields?: readonly import("./schema.js").Field[] | undefined;
1053
48
  groups?: readonly Readonly<{
1054
49
  id: string;
1055
- fields: readonly ({
1056
- id: string;
1057
- type: "string";
1058
- path: string;
1059
- title: readonly {
1060
- locale: "en" | "ja" | "ko" | "zh";
1061
- message: string;
1062
- }[];
1063
- labelStyle?: string | undefined;
1064
- contentStyle?: string | undefined;
1065
- required?: boolean | undefined;
1066
- icon?: string | undefined;
1067
- style?: string | undefined;
1068
- discardEmptyString?: boolean | undefined;
1069
- initialValue?: string | undefined;
1070
- maxLength?: string | undefined;
1071
- hidden?: string | undefined;
1072
- disabled?: string | undefined;
1073
- validation?: readonly Readonly<{
1074
- expression: string;
1075
- message: string;
1076
- }>[] | undefined;
1077
- hideLabel?: boolean | undefined;
1078
- } | {
1079
- id: string;
1080
- type: "textarea";
1081
- path: string;
1082
- title: readonly {
1083
- locale: "en" | "ja" | "ko" | "zh";
1084
- message: string;
1085
- }[];
1086
- labelStyle?: string | undefined;
1087
- contentStyle?: string | undefined;
1088
- required?: boolean | undefined;
1089
- icon?: string | undefined;
1090
- style?: string | undefined;
1091
- discardEmptyString?: boolean | undefined;
1092
- initialValue?: string | undefined;
1093
- maxLength?: string | undefined;
1094
- hidden?: string | undefined;
1095
- disabled?: string | undefined;
1096
- validation?: readonly Readonly<{
1097
- expression: string;
1098
- message: string;
1099
- }>[] | undefined;
1100
- hideLabel?: boolean | undefined;
1101
- } | {
1102
- id: string;
1103
- type: "number";
1104
- path: string;
1105
- title: readonly {
1106
- locale: "en" | "ja" | "ko" | "zh";
1107
- message: string;
1108
- }[];
1109
- labelStyle?: string | undefined;
1110
- contentStyle?: string | undefined;
1111
- required?: boolean | undefined;
1112
- icon?: string | undefined;
1113
- style?: string | undefined;
1114
- initialValue?: string | undefined;
1115
- min?: string | undefined;
1116
- max?: string | undefined;
1117
- step?: string | undefined;
1118
- hidden?: string | undefined;
1119
- disabled?: string | undefined;
1120
- validation?: readonly Readonly<{
1121
- expression: string;
1122
- message: string;
1123
- }>[] | undefined;
1124
- hideLabel?: boolean | undefined;
1125
- } | {
1126
- locale: readonly {
1127
- locale: "en" | "ja" | "ko" | "zh";
1128
- message: string;
1129
- }[];
1130
- id: string;
1131
- type: "markdown";
1132
- title: readonly {
1133
- locale: "en" | "ja" | "ko" | "zh";
1134
- message: string;
1135
- }[];
1136
- labelStyle?: string | undefined;
1137
- contentStyle?: string | undefined;
1138
- style?: string | undefined;
1139
- hidden?: string | undefined;
1140
- hideLabel?: boolean | undefined;
1141
- } | {
1142
- options: string;
1143
- label: string;
1144
- value: string;
1145
- key: string;
1146
- id: string;
1147
- type: "select";
1148
- path: string;
1149
- title: readonly {
1150
- locale: "en" | "ja" | "ko" | "zh";
1151
- message: string;
1152
- }[];
1153
- labelStyle?: string | undefined;
1154
- contentStyle?: string | undefined;
1155
- required?: boolean | undefined;
1156
- icon?: string | undefined;
1157
- style?: string | undefined;
1158
- initialValue?: string | undefined;
1159
- hidden?: string | undefined;
1160
- disabled?: string | undefined;
1161
- validation?: readonly Readonly<{
1162
- expression: string;
1163
- message: string;
1164
- }>[] | undefined;
1165
- hideLabel?: boolean | undefined;
1166
- } | {
1167
- options: string;
1168
- label: string;
1169
- value: string;
1170
- key: string;
1171
- id: string;
1172
- type: "radio";
1173
- path: string;
1174
- title: readonly {
1175
- locale: "en" | "ja" | "ko" | "zh";
1176
- message: string;
1177
- }[];
1178
- labelStyle?: string | undefined;
1179
- contentStyle?: string | undefined;
1180
- required?: boolean | undefined;
1181
- icon?: string | undefined;
1182
- style?: string | undefined;
1183
- initialValue?: string | undefined;
1184
- hidden?: string | undefined;
1185
- disabled?: string | undefined;
1186
- validation?: readonly Readonly<{
1187
- expression: string;
1188
- message: string;
1189
- }>[] | undefined;
1190
- hideLabel?: boolean | undefined;
1191
- } | {
1192
- mode: "month" | "year" | "date";
1193
- value: string;
1194
- id: string;
1195
- type: "calendar";
1196
- path: string;
1197
- title: readonly {
1198
- locale: "en" | "ja" | "ko" | "zh";
1199
- message: string;
1200
- }[];
1201
- labelStyle?: string | undefined;
1202
- contentStyle?: string | undefined;
1203
- required?: boolean | undefined;
1204
- icon?: string | undefined;
1205
- style?: string | undefined;
1206
- display?: string | undefined;
1207
- initialValue?: string | undefined;
1208
- disableDate?: string | undefined;
1209
- hidden?: string | undefined;
1210
- disabled?: string | undefined;
1211
- validation?: readonly Readonly<{
1212
- expression: string;
1213
- message: string;
1214
- }>[] | undefined;
1215
- hideLabel?: boolean | undefined;
1216
- } | {
1217
- id: string;
1218
- type: "upload";
1219
- path: string;
1220
- title: readonly {
1221
- locale: "en" | "ja" | "ko" | "zh";
1222
- message: string;
1223
- }[];
1224
- labelStyle?: string | undefined;
1225
- contentStyle?: string | undefined;
1226
- required?: boolean | undefined;
1227
- icon?: string | undefined;
1228
- accept?: readonly string[] | undefined;
1229
- description?: readonly {
1230
- locale: "en" | "ja" | "ko" | "zh";
1231
- message: string;
1232
- }[] | undefined;
1233
- maxCount?: string | undefined;
1234
- template?: string | undefined;
1235
- templateName?: readonly {
1236
- locale: "en" | "ja" | "ko" | "zh";
1237
- message: string;
1238
- }[] | undefined;
1239
- style?: string | undefined;
1240
- initialValue?: string | undefined;
1241
- hidden?: string | undefined;
1242
- disabled?: string | undefined;
1243
- validation?: readonly Readonly<{
1244
- expression: string;
1245
- message: string;
1246
- }>[] | undefined;
1247
- hideLabel?: boolean | undefined;
1248
- } | {
1249
- id: string;
1250
- type: "slot";
1251
- style?: string | undefined;
1252
- } | {
1253
- id: string;
1254
- type: "empty";
1255
- style?: string | undefined;
1256
- })[];
50
+ fields: readonly import("./schema.js").Field[];
1257
51
  style?: string | undefined;
1258
52
  }>[] | undefined;
1259
53
  orientation?: "vertical" | "horizontal" | "floating" | "contents" | undefined;
@@ -1265,412 +59,10 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
1265
59
  }> & Readonly<{
1266
60
  "onUpdate:modelValue"?: ((value: Record<string, unknown>) => any) | undefined;
1267
61
  "onUpdate:config"?: ((args_0: Readonly<{
1268
- fields: readonly ({
1269
- id: string;
1270
- type: "string";
1271
- path: string;
1272
- title: readonly {
1273
- locale: "en" | "ja" | "ko" | "zh";
1274
- message: string;
1275
- }[];
1276
- labelStyle?: string | undefined;
1277
- contentStyle?: string | undefined;
1278
- required?: boolean | undefined;
1279
- icon?: string | undefined;
1280
- style?: string | undefined;
1281
- discardEmptyString?: boolean | undefined;
1282
- initialValue?: string | undefined;
1283
- maxLength?: string | undefined;
1284
- hidden?: string | undefined;
1285
- disabled?: string | undefined;
1286
- validation?: readonly Readonly<{
1287
- expression: string;
1288
- message: string;
1289
- }>[] | undefined;
1290
- hideLabel?: boolean | undefined;
1291
- } | {
1292
- id: string;
1293
- type: "textarea";
1294
- path: string;
1295
- title: readonly {
1296
- locale: "en" | "ja" | "ko" | "zh";
1297
- message: string;
1298
- }[];
1299
- labelStyle?: string | undefined;
1300
- contentStyle?: string | undefined;
1301
- required?: boolean | undefined;
1302
- icon?: string | undefined;
1303
- style?: string | undefined;
1304
- discardEmptyString?: boolean | undefined;
1305
- initialValue?: string | undefined;
1306
- maxLength?: string | undefined;
1307
- hidden?: string | undefined;
1308
- disabled?: string | undefined;
1309
- validation?: readonly Readonly<{
1310
- expression: string;
1311
- message: string;
1312
- }>[] | undefined;
1313
- hideLabel?: boolean | undefined;
1314
- } | {
1315
- id: string;
1316
- type: "number";
1317
- path: string;
1318
- title: readonly {
1319
- locale: "en" | "ja" | "ko" | "zh";
1320
- message: string;
1321
- }[];
1322
- labelStyle?: string | undefined;
1323
- contentStyle?: string | undefined;
1324
- required?: boolean | undefined;
1325
- icon?: string | undefined;
1326
- style?: string | undefined;
1327
- initialValue?: string | undefined;
1328
- min?: string | undefined;
1329
- max?: string | undefined;
1330
- step?: string | undefined;
1331
- hidden?: string | undefined;
1332
- disabled?: string | undefined;
1333
- validation?: readonly Readonly<{
1334
- expression: string;
1335
- message: string;
1336
- }>[] | undefined;
1337
- hideLabel?: boolean | undefined;
1338
- } | {
1339
- locale: readonly {
1340
- locale: "en" | "ja" | "ko" | "zh";
1341
- message: string;
1342
- }[];
1343
- id: string;
1344
- type: "markdown";
1345
- title: readonly {
1346
- locale: "en" | "ja" | "ko" | "zh";
1347
- message: string;
1348
- }[];
1349
- labelStyle?: string | undefined;
1350
- contentStyle?: string | undefined;
1351
- style?: string | undefined;
1352
- hidden?: string | undefined;
1353
- hideLabel?: boolean | undefined;
1354
- } | {
1355
- options: string;
1356
- label: string;
1357
- value: string;
1358
- key: string;
1359
- id: string;
1360
- type: "select";
1361
- path: string;
1362
- title: readonly {
1363
- locale: "en" | "ja" | "ko" | "zh";
1364
- message: string;
1365
- }[];
1366
- labelStyle?: string | undefined;
1367
- contentStyle?: string | undefined;
1368
- required?: boolean | undefined;
1369
- icon?: string | undefined;
1370
- style?: string | undefined;
1371
- initialValue?: string | undefined;
1372
- hidden?: string | undefined;
1373
- disabled?: string | undefined;
1374
- validation?: readonly Readonly<{
1375
- expression: string;
1376
- message: string;
1377
- }>[] | undefined;
1378
- hideLabel?: boolean | undefined;
1379
- } | {
1380
- options: string;
1381
- label: string;
1382
- value: string;
1383
- key: string;
1384
- id: string;
1385
- type: "radio";
1386
- path: string;
1387
- title: readonly {
1388
- locale: "en" | "ja" | "ko" | "zh";
1389
- message: string;
1390
- }[];
1391
- labelStyle?: string | undefined;
1392
- contentStyle?: string | undefined;
1393
- required?: boolean | undefined;
1394
- icon?: string | undefined;
1395
- style?: string | undefined;
1396
- initialValue?: string | undefined;
1397
- hidden?: string | undefined;
1398
- disabled?: string | undefined;
1399
- validation?: readonly Readonly<{
1400
- expression: string;
1401
- message: string;
1402
- }>[] | undefined;
1403
- hideLabel?: boolean | undefined;
1404
- } | {
1405
- mode: "month" | "year" | "date";
1406
- value: string;
1407
- id: string;
1408
- type: "calendar";
1409
- path: string;
1410
- title: readonly {
1411
- locale: "en" | "ja" | "ko" | "zh";
1412
- message: string;
1413
- }[];
1414
- labelStyle?: string | undefined;
1415
- contentStyle?: string | undefined;
1416
- required?: boolean | undefined;
1417
- icon?: string | undefined;
1418
- style?: string | undefined;
1419
- display?: string | undefined;
1420
- initialValue?: string | undefined;
1421
- disableDate?: string | undefined;
1422
- hidden?: string | undefined;
1423
- disabled?: string | undefined;
1424
- validation?: readonly Readonly<{
1425
- expression: string;
1426
- message: string;
1427
- }>[] | undefined;
1428
- hideLabel?: boolean | undefined;
1429
- } | {
1430
- id: string;
1431
- type: "upload";
1432
- path: string;
1433
- title: readonly {
1434
- locale: "en" | "ja" | "ko" | "zh";
1435
- message: string;
1436
- }[];
1437
- labelStyle?: string | undefined;
1438
- contentStyle?: string | undefined;
1439
- required?: boolean | undefined;
1440
- icon?: string | undefined;
1441
- accept?: readonly string[] | undefined;
1442
- description?: readonly {
1443
- locale: "en" | "ja" | "ko" | "zh";
1444
- message: string;
1445
- }[] | undefined;
1446
- maxCount?: string | undefined;
1447
- template?: string | undefined;
1448
- templateName?: readonly {
1449
- locale: "en" | "ja" | "ko" | "zh";
1450
- message: string;
1451
- }[] | undefined;
1452
- style?: string | undefined;
1453
- initialValue?: string | undefined;
1454
- hidden?: string | undefined;
1455
- disabled?: string | undefined;
1456
- validation?: readonly Readonly<{
1457
- expression: string;
1458
- message: string;
1459
- }>[] | undefined;
1460
- hideLabel?: boolean | undefined;
1461
- } | {
1462
- id: string;
1463
- type: "slot";
1464
- style?: string | undefined;
1465
- } | {
1466
- id: string;
1467
- type: "empty";
1468
- style?: string | undefined;
1469
- })[];
62
+ fields: readonly import("./schema.js").Field[];
1470
63
  groups: readonly Readonly<{
1471
64
  id: string;
1472
- fields: readonly ({
1473
- id: string;
1474
- type: "string";
1475
- path: string;
1476
- title: readonly {
1477
- locale: "en" | "ja" | "ko" | "zh";
1478
- message: string;
1479
- }[];
1480
- labelStyle?: string | undefined;
1481
- contentStyle?: string | undefined;
1482
- required?: boolean | undefined;
1483
- icon?: string | undefined;
1484
- style?: string | undefined;
1485
- discardEmptyString?: boolean | undefined;
1486
- initialValue?: string | undefined;
1487
- maxLength?: string | undefined;
1488
- hidden?: string | undefined;
1489
- disabled?: string | undefined;
1490
- validation?: readonly Readonly<{
1491
- expression: string;
1492
- message: string;
1493
- }>[] | undefined;
1494
- hideLabel?: boolean | undefined;
1495
- } | {
1496
- id: string;
1497
- type: "textarea";
1498
- path: string;
1499
- title: readonly {
1500
- locale: "en" | "ja" | "ko" | "zh";
1501
- message: string;
1502
- }[];
1503
- labelStyle?: string | undefined;
1504
- contentStyle?: string | undefined;
1505
- required?: boolean | undefined;
1506
- icon?: string | undefined;
1507
- style?: string | undefined;
1508
- discardEmptyString?: boolean | undefined;
1509
- initialValue?: string | undefined;
1510
- maxLength?: string | undefined;
1511
- hidden?: string | undefined;
1512
- disabled?: string | undefined;
1513
- validation?: readonly Readonly<{
1514
- expression: string;
1515
- message: string;
1516
- }>[] | undefined;
1517
- hideLabel?: boolean | undefined;
1518
- } | {
1519
- id: string;
1520
- type: "number";
1521
- path: string;
1522
- title: readonly {
1523
- locale: "en" | "ja" | "ko" | "zh";
1524
- message: string;
1525
- }[];
1526
- labelStyle?: string | undefined;
1527
- contentStyle?: string | undefined;
1528
- required?: boolean | undefined;
1529
- icon?: string | undefined;
1530
- style?: string | undefined;
1531
- initialValue?: string | undefined;
1532
- min?: string | undefined;
1533
- max?: string | undefined;
1534
- step?: string | undefined;
1535
- hidden?: string | undefined;
1536
- disabled?: string | undefined;
1537
- validation?: readonly Readonly<{
1538
- expression: string;
1539
- message: string;
1540
- }>[] | undefined;
1541
- hideLabel?: boolean | undefined;
1542
- } | {
1543
- locale: readonly {
1544
- locale: "en" | "ja" | "ko" | "zh";
1545
- message: string;
1546
- }[];
1547
- id: string;
1548
- type: "markdown";
1549
- title: readonly {
1550
- locale: "en" | "ja" | "ko" | "zh";
1551
- message: string;
1552
- }[];
1553
- labelStyle?: string | undefined;
1554
- contentStyle?: string | undefined;
1555
- style?: string | undefined;
1556
- hidden?: string | undefined;
1557
- hideLabel?: boolean | undefined;
1558
- } | {
1559
- options: string;
1560
- label: string;
1561
- value: string;
1562
- key: string;
1563
- id: string;
1564
- type: "select";
1565
- path: string;
1566
- title: readonly {
1567
- locale: "en" | "ja" | "ko" | "zh";
1568
- message: string;
1569
- }[];
1570
- labelStyle?: string | undefined;
1571
- contentStyle?: string | undefined;
1572
- required?: boolean | undefined;
1573
- icon?: string | undefined;
1574
- style?: string | undefined;
1575
- initialValue?: string | undefined;
1576
- hidden?: string | undefined;
1577
- disabled?: string | undefined;
1578
- validation?: readonly Readonly<{
1579
- expression: string;
1580
- message: string;
1581
- }>[] | undefined;
1582
- hideLabel?: boolean | undefined;
1583
- } | {
1584
- options: string;
1585
- label: string;
1586
- value: string;
1587
- key: string;
1588
- id: string;
1589
- type: "radio";
1590
- path: string;
1591
- title: readonly {
1592
- locale: "en" | "ja" | "ko" | "zh";
1593
- message: string;
1594
- }[];
1595
- labelStyle?: string | undefined;
1596
- contentStyle?: string | undefined;
1597
- required?: boolean | undefined;
1598
- icon?: string | undefined;
1599
- style?: string | undefined;
1600
- initialValue?: string | undefined;
1601
- hidden?: string | undefined;
1602
- disabled?: string | undefined;
1603
- validation?: readonly Readonly<{
1604
- expression: string;
1605
- message: string;
1606
- }>[] | undefined;
1607
- hideLabel?: boolean | undefined;
1608
- } | {
1609
- mode: "month" | "year" | "date";
1610
- value: string;
1611
- id: string;
1612
- type: "calendar";
1613
- path: string;
1614
- title: readonly {
1615
- locale: "en" | "ja" | "ko" | "zh";
1616
- message: string;
1617
- }[];
1618
- labelStyle?: string | undefined;
1619
- contentStyle?: string | undefined;
1620
- required?: boolean | undefined;
1621
- icon?: string | undefined;
1622
- style?: string | undefined;
1623
- display?: string | undefined;
1624
- initialValue?: string | undefined;
1625
- disableDate?: string | undefined;
1626
- hidden?: string | undefined;
1627
- disabled?: string | undefined;
1628
- validation?: readonly Readonly<{
1629
- expression: string;
1630
- message: string;
1631
- }>[] | undefined;
1632
- hideLabel?: boolean | undefined;
1633
- } | {
1634
- id: string;
1635
- type: "upload";
1636
- path: string;
1637
- title: readonly {
1638
- locale: "en" | "ja" | "ko" | "zh";
1639
- message: string;
1640
- }[];
1641
- labelStyle?: string | undefined;
1642
- contentStyle?: string | undefined;
1643
- required?: boolean | undefined;
1644
- icon?: string | undefined;
1645
- accept?: readonly string[] | undefined;
1646
- description?: readonly {
1647
- locale: "en" | "ja" | "ko" | "zh";
1648
- message: string;
1649
- }[] | undefined;
1650
- maxCount?: string | undefined;
1651
- template?: string | undefined;
1652
- templateName?: readonly {
1653
- locale: "en" | "ja" | "ko" | "zh";
1654
- message: string;
1655
- }[] | undefined;
1656
- style?: string | undefined;
1657
- initialValue?: string | undefined;
1658
- hidden?: string | undefined;
1659
- disabled?: string | undefined;
1660
- validation?: readonly Readonly<{
1661
- expression: string;
1662
- message: string;
1663
- }>[] | undefined;
1664
- hideLabel?: boolean | undefined;
1665
- } | {
1666
- id: string;
1667
- type: "slot";
1668
- style?: string | undefined;
1669
- } | {
1670
- id: string;
1671
- type: "empty";
1672
- style?: string | undefined;
1673
- })[];
65
+ fields: readonly import("./schema.js").Field[];
1674
66
  style?: string | undefined;
1675
67
  }>[];
1676
68
  kind: string;