@shwfed/nuxt 0.11.49 → 0.11.51

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