@shwfed/nuxt 0.11.36 → 0.11.38

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 (22) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/fields.d.vue.ts +396 -342
  3. package/dist/runtime/components/fields.vue +2 -1
  4. package/dist/runtime/components/fields.vue.d.ts +396 -342
  5. package/dist/runtime/components/modal.vue +2 -2
  6. package/dist/runtime/components/ui/button-configurator/ButtonConfiguratorDialog.vue +3 -3
  7. package/dist/runtime/components/ui/command/CommandDialog.vue +3 -3
  8. package/dist/runtime/components/ui/dialog/DialogScrollContent.d.vue.ts +8 -3
  9. package/dist/runtime/components/ui/dialog/DialogScrollContent.vue +167 -14
  10. package/dist/runtime/components/ui/dialog/DialogScrollContent.vue.d.ts +8 -3
  11. package/dist/runtime/components/ui/fields/Fields.d.vue.ts +846 -350
  12. package/dist/runtime/components/ui/fields/Fields.vue +538 -435
  13. package/dist/runtime/components/ui/fields/Fields.vue.d.ts +846 -350
  14. package/dist/runtime/components/ui/fields/schema.d.ts +3337 -30
  15. package/dist/runtime/components/ui/fields/schema.js +86 -9
  16. package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.d.vue.ts +394 -340
  17. package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue +767 -175
  18. package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue.d.ts +394 -340
  19. package/dist/runtime/components/ui/menu-tabs-configurator/MenuTabsConfiguratorDialog.vue +3 -3
  20. package/dist/runtime/components/ui/table/Table.vue +1 -0
  21. package/dist/runtime/components/ui/table-configurator/TableConfiguratorDialog.vue +3 -3
  22. package/package.json +1 -1
@@ -1,14 +1,16 @@
1
1
  import { Effect } from 'effect';
2
2
  import type { CSSProperties } from 'vue';
3
- export { CalendarFieldC, CURRENT_COMPATIBILITY_DATE, EmptyFieldC, FieldC, FieldsBodyC, FieldsBodyInputC, FieldsConfigC, FieldsConfigInputC, KIND, NumberFieldC, SelectFieldC, SlotFieldC, SUPPORTED_COMPATIBILITY_DATES, StringFieldC, UploadFieldC, ValidationRuleC, createFieldsConfig, validationC, } from './schema.js';
4
- export type { EmptyField, Field, FieldsBody, FieldsBodyInput, FieldsConfig, FieldsConfigInput, SlotField, UploadField, ValidationRule, } from './schema.js';
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';
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;
8
8
  export default _default;
9
9
  declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
10
10
  config: Effect.Effect<Readonly<{
11
- fields: readonly ({
11
+ kind: string;
12
+ compatibilityDate: string;
13
+ fields?: readonly ({
12
14
  id: string;
13
15
  type: "string";
14
16
  path: string;
@@ -75,6 +77,21 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
75
77
  expression: string;
76
78
  message: string;
77
79
  }>[] | undefined;
80
+ } | {
81
+ id: string;
82
+ type: "markdown";
83
+ title: readonly {
84
+ locale: "en" | "ja" | "ko" | "zh";
85
+ message: string;
86
+ }[];
87
+ locale: readonly {
88
+ locale: "en" | "ja" | "ko" | "zh";
89
+ message: string;
90
+ }[];
91
+ labelStyle?: string | undefined;
92
+ contentStyle?: string | undefined;
93
+ style?: string | undefined;
94
+ hidden?: string | undefined;
78
95
  } | {
79
96
  id: string;
80
97
  type: "select";
@@ -166,6 +183,10 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
166
183
  }[] | undefined;
167
184
  maxCount?: string | undefined;
168
185
  template?: string | undefined;
186
+ templateName?: readonly {
187
+ locale: "en" | "ja" | "ko" | "zh";
188
+ message: string;
189
+ }[] | undefined;
169
190
  style?: string | undefined;
170
191
  initialValue?: string | undefined;
171
192
  hidden?: string | undefined;
@@ -182,9 +203,209 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
182
203
  id: string;
183
204
  type: "empty";
184
205
  style?: string | undefined;
185
- })[];
186
- kind: string;
187
- compatibilityDate: string;
206
+ })[] | undefined;
207
+ groups?: readonly Readonly<{
208
+ id: string;
209
+ fields: readonly ({
210
+ id: string;
211
+ type: "string";
212
+ path: string;
213
+ title: readonly {
214
+ locale: "en" | "ja" | "ko" | "zh";
215
+ message: string;
216
+ }[];
217
+ labelStyle?: string | undefined;
218
+ contentStyle?: string | undefined;
219
+ required?: boolean | undefined;
220
+ icon?: string | undefined;
221
+ style?: string | undefined;
222
+ discardEmptyString?: boolean | undefined;
223
+ initialValue?: string | undefined;
224
+ maxLength?: string | undefined;
225
+ hidden?: string | undefined;
226
+ disabled?: string | undefined;
227
+ validation?: readonly Readonly<{
228
+ expression: string;
229
+ message: string;
230
+ }>[] | undefined;
231
+ } | {
232
+ id: string;
233
+ type: "textarea";
234
+ path: string;
235
+ title: readonly {
236
+ locale: "en" | "ja" | "ko" | "zh";
237
+ message: string;
238
+ }[];
239
+ labelStyle?: string | undefined;
240
+ contentStyle?: string | undefined;
241
+ required?: boolean | undefined;
242
+ icon?: string | undefined;
243
+ style?: string | undefined;
244
+ discardEmptyString?: boolean | undefined;
245
+ initialValue?: string | undefined;
246
+ maxLength?: string | undefined;
247
+ hidden?: string | undefined;
248
+ disabled?: string | undefined;
249
+ validation?: readonly Readonly<{
250
+ expression: string;
251
+ message: string;
252
+ }>[] | undefined;
253
+ } | {
254
+ id: string;
255
+ type: "number";
256
+ path: string;
257
+ title: readonly {
258
+ locale: "en" | "ja" | "ko" | "zh";
259
+ message: string;
260
+ }[];
261
+ labelStyle?: string | undefined;
262
+ contentStyle?: string | undefined;
263
+ required?: boolean | undefined;
264
+ icon?: string | undefined;
265
+ style?: string | undefined;
266
+ initialValue?: string | undefined;
267
+ min?: string | undefined;
268
+ max?: string | undefined;
269
+ step?: string | undefined;
270
+ hidden?: string | undefined;
271
+ disabled?: string | undefined;
272
+ validation?: readonly Readonly<{
273
+ expression: string;
274
+ message: string;
275
+ }>[] | undefined;
276
+ } | {
277
+ id: string;
278
+ type: "markdown";
279
+ title: readonly {
280
+ locale: "en" | "ja" | "ko" | "zh";
281
+ message: string;
282
+ }[];
283
+ locale: readonly {
284
+ locale: "en" | "ja" | "ko" | "zh";
285
+ message: string;
286
+ }[];
287
+ labelStyle?: string | undefined;
288
+ contentStyle?: string | undefined;
289
+ style?: string | undefined;
290
+ hidden?: string | undefined;
291
+ } | {
292
+ id: string;
293
+ type: "select";
294
+ path: string;
295
+ title: readonly {
296
+ locale: "en" | "ja" | "ko" | "zh";
297
+ message: string;
298
+ }[];
299
+ options: string;
300
+ label: string;
301
+ value: string;
302
+ key: string;
303
+ labelStyle?: string | undefined;
304
+ contentStyle?: string | undefined;
305
+ required?: boolean | undefined;
306
+ icon?: string | undefined;
307
+ style?: string | undefined;
308
+ initialValue?: string | undefined;
309
+ hidden?: string | undefined;
310
+ disabled?: string | undefined;
311
+ validation?: readonly Readonly<{
312
+ expression: string;
313
+ message: string;
314
+ }>[] | undefined;
315
+ } | {
316
+ id: string;
317
+ type: "radio";
318
+ path: string;
319
+ title: readonly {
320
+ locale: "en" | "ja" | "ko" | "zh";
321
+ message: string;
322
+ }[];
323
+ options: string;
324
+ label: string;
325
+ value: string;
326
+ key: string;
327
+ labelStyle?: string | undefined;
328
+ contentStyle?: string | undefined;
329
+ required?: boolean | undefined;
330
+ icon?: string | undefined;
331
+ style?: string | undefined;
332
+ initialValue?: string | undefined;
333
+ hidden?: string | undefined;
334
+ disabled?: string | undefined;
335
+ validation?: readonly Readonly<{
336
+ expression: string;
337
+ message: string;
338
+ }>[] | undefined;
339
+ } | {
340
+ id: string;
341
+ type: "calendar";
342
+ path: string;
343
+ title: readonly {
344
+ locale: "en" | "ja" | "ko" | "zh";
345
+ message: string;
346
+ }[];
347
+ mode: "month" | "year" | "date";
348
+ value: string;
349
+ labelStyle?: string | undefined;
350
+ contentStyle?: string | undefined;
351
+ required?: boolean | undefined;
352
+ icon?: string | undefined;
353
+ style?: string | undefined;
354
+ display?: string | undefined;
355
+ initialValue?: string | undefined;
356
+ disableDate?: string | undefined;
357
+ hidden?: string | undefined;
358
+ disabled?: string | undefined;
359
+ validation?: readonly Readonly<{
360
+ expression: string;
361
+ message: string;
362
+ }>[] | undefined;
363
+ } | {
364
+ id: string;
365
+ type: "upload";
366
+ path: string;
367
+ title: readonly {
368
+ locale: "en" | "ja" | "ko" | "zh";
369
+ message: string;
370
+ }[];
371
+ labelStyle?: string | undefined;
372
+ contentStyle?: string | undefined;
373
+ required?: boolean | undefined;
374
+ icon?: string | undefined;
375
+ accept?: readonly string[] | undefined;
376
+ description?: readonly {
377
+ locale: "en" | "ja" | "ko" | "zh";
378
+ message: string;
379
+ }[] | undefined;
380
+ maxCount?: string | undefined;
381
+ template?: string | undefined;
382
+ templateName?: readonly {
383
+ locale: "en" | "ja" | "ko" | "zh";
384
+ message: string;
385
+ }[] | undefined;
386
+ style?: string | undefined;
387
+ initialValue?: string | undefined;
388
+ hidden?: string | undefined;
389
+ disabled?: string | undefined;
390
+ validation?: readonly Readonly<{
391
+ expression: string;
392
+ message: string;
393
+ }>[] | undefined;
394
+ } | {
395
+ id: string;
396
+ type: "slot";
397
+ style?: string | undefined;
398
+ } | {
399
+ id: string;
400
+ type: "empty";
401
+ style?: string | undefined;
402
+ })[];
403
+ title?: readonly {
404
+ locale: "en" | "ja" | "ko" | "zh";
405
+ message: string;
406
+ }[] | undefined;
407
+ style?: string | undefined;
408
+ }>[] | undefined;
188
409
  orientation?: "vertical" | "horizontal" | "floating" | "contents" | undefined;
189
410
  bordered?: boolean | undefined;
190
411
  style?: string | undefined;
@@ -196,181 +417,208 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
196
417
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
197
418
  "update:modelValue": (value: Record<string, unknown>) => any;
198
419
  "update:config": (args_0: Readonly<{
199
- fields: readonly ({
420
+ groups: readonly Readonly<{
200
421
  id: string;
201
- type: "string";
202
- path: string;
203
- title: readonly {
204
- locale: "en" | "ja" | "ko" | "zh";
205
- message: string;
206
- }[];
207
- labelStyle?: string | undefined;
208
- contentStyle?: string | undefined;
209
- required?: boolean | undefined;
210
- icon?: string | undefined;
211
- style?: string | undefined;
212
- discardEmptyString?: boolean | undefined;
213
- initialValue?: string | undefined;
214
- maxLength?: string | undefined;
215
- hidden?: string | undefined;
216
- disabled?: string | undefined;
217
- validation?: readonly Readonly<{
218
- expression: string;
219
- message: string;
220
- }>[] | undefined;
221
- } | {
222
- id: string;
223
- type: "textarea";
224
- path: string;
225
- title: readonly {
226
- locale: "en" | "ja" | "ko" | "zh";
227
- message: string;
228
- }[];
229
- labelStyle?: string | undefined;
230
- contentStyle?: string | undefined;
231
- required?: boolean | undefined;
232
- icon?: string | undefined;
233
- style?: string | undefined;
234
- discardEmptyString?: boolean | undefined;
235
- initialValue?: string | undefined;
236
- maxLength?: string | undefined;
237
- hidden?: string | undefined;
238
- disabled?: string | undefined;
239
- validation?: readonly Readonly<{
240
- expression: string;
241
- message: string;
242
- }>[] | undefined;
243
- } | {
244
- id: string;
245
- type: "number";
246
- path: string;
247
- title: readonly {
248
- locale: "en" | "ja" | "ko" | "zh";
249
- message: string;
250
- }[];
251
- labelStyle?: string | undefined;
252
- contentStyle?: string | undefined;
253
- required?: boolean | undefined;
254
- icon?: string | undefined;
255
- style?: string | undefined;
256
- initialValue?: string | undefined;
257
- min?: string | undefined;
258
- max?: string | undefined;
259
- step?: string | undefined;
260
- hidden?: string | undefined;
261
- disabled?: string | undefined;
262
- validation?: readonly Readonly<{
263
- expression: string;
264
- message: string;
265
- }>[] | undefined;
266
- } | {
267
- id: string;
268
- type: "select";
269
- path: string;
270
- title: readonly {
271
- locale: "en" | "ja" | "ko" | "zh";
272
- message: string;
273
- }[];
274
- options: string;
275
- label: string;
276
- value: string;
277
- key: string;
278
- labelStyle?: string | undefined;
279
- contentStyle?: string | undefined;
280
- required?: boolean | undefined;
281
- icon?: string | undefined;
282
- style?: string | undefined;
283
- initialValue?: string | undefined;
284
- hidden?: string | undefined;
285
- disabled?: string | undefined;
286
- validation?: readonly Readonly<{
287
- expression: string;
288
- message: string;
289
- }>[] | undefined;
290
- } | {
291
- id: string;
292
- type: "radio";
293
- path: string;
294
- title: readonly {
295
- locale: "en" | "ja" | "ko" | "zh";
296
- message: string;
297
- }[];
298
- options: string;
299
- label: string;
300
- value: string;
301
- key: string;
302
- labelStyle?: string | undefined;
303
- contentStyle?: string | undefined;
304
- required?: boolean | undefined;
305
- icon?: string | undefined;
306
- style?: string | undefined;
307
- initialValue?: string | undefined;
308
- hidden?: string | undefined;
309
- disabled?: string | undefined;
310
- validation?: readonly Readonly<{
311
- expression: string;
312
- message: string;
313
- }>[] | undefined;
314
- } | {
315
- id: string;
316
- type: "calendar";
317
- path: string;
318
- title: readonly {
319
- locale: "en" | "ja" | "ko" | "zh";
320
- message: string;
321
- }[];
322
- mode: "month" | "year" | "date";
323
- value: string;
324
- labelStyle?: string | undefined;
325
- contentStyle?: string | undefined;
326
- required?: boolean | undefined;
327
- icon?: string | undefined;
328
- style?: string | undefined;
329
- display?: string | undefined;
330
- initialValue?: string | undefined;
331
- disableDate?: string | undefined;
332
- hidden?: string | undefined;
333
- disabled?: string | undefined;
334
- validation?: readonly Readonly<{
335
- expression: string;
336
- message: string;
337
- }>[] | undefined;
338
- } | {
339
- id: string;
340
- type: "upload";
341
- path: string;
342
- title: readonly {
343
- locale: "en" | "ja" | "ko" | "zh";
344
- message: string;
345
- }[];
346
- labelStyle?: string | undefined;
347
- contentStyle?: string | undefined;
348
- required?: boolean | undefined;
349
- icon?: string | undefined;
350
- accept?: readonly string[] | undefined;
351
- description?: readonly {
422
+ fields: readonly ({
423
+ id: string;
424
+ type: "string";
425
+ path: string;
426
+ title: readonly {
427
+ locale: "en" | "ja" | "ko" | "zh";
428
+ message: string;
429
+ }[];
430
+ labelStyle?: string | undefined;
431
+ contentStyle?: string | undefined;
432
+ required?: boolean | undefined;
433
+ icon?: string | undefined;
434
+ style?: string | undefined;
435
+ discardEmptyString?: boolean | undefined;
436
+ initialValue?: string | undefined;
437
+ maxLength?: string | undefined;
438
+ hidden?: string | undefined;
439
+ disabled?: string | undefined;
440
+ validation?: readonly Readonly<{
441
+ expression: string;
442
+ message: string;
443
+ }>[] | undefined;
444
+ } | {
445
+ id: string;
446
+ type: "textarea";
447
+ path: string;
448
+ title: readonly {
449
+ locale: "en" | "ja" | "ko" | "zh";
450
+ message: string;
451
+ }[];
452
+ labelStyle?: string | undefined;
453
+ contentStyle?: string | undefined;
454
+ required?: boolean | undefined;
455
+ icon?: string | undefined;
456
+ style?: string | undefined;
457
+ discardEmptyString?: boolean | undefined;
458
+ initialValue?: string | undefined;
459
+ maxLength?: string | undefined;
460
+ hidden?: string | undefined;
461
+ disabled?: string | undefined;
462
+ validation?: readonly Readonly<{
463
+ expression: string;
464
+ message: string;
465
+ }>[] | undefined;
466
+ } | {
467
+ id: string;
468
+ type: "number";
469
+ path: string;
470
+ title: readonly {
471
+ locale: "en" | "ja" | "ko" | "zh";
472
+ message: string;
473
+ }[];
474
+ labelStyle?: string | undefined;
475
+ contentStyle?: string | undefined;
476
+ required?: boolean | undefined;
477
+ icon?: string | undefined;
478
+ style?: string | undefined;
479
+ initialValue?: string | undefined;
480
+ min?: string | undefined;
481
+ max?: string | undefined;
482
+ step?: string | undefined;
483
+ hidden?: string | undefined;
484
+ disabled?: string | undefined;
485
+ validation?: readonly Readonly<{
486
+ expression: string;
487
+ message: string;
488
+ }>[] | undefined;
489
+ } | {
490
+ id: string;
491
+ type: "markdown";
492
+ title: readonly {
493
+ locale: "en" | "ja" | "ko" | "zh";
494
+ message: string;
495
+ }[];
496
+ locale: readonly {
497
+ locale: "en" | "ja" | "ko" | "zh";
498
+ message: string;
499
+ }[];
500
+ labelStyle?: string | undefined;
501
+ contentStyle?: string | undefined;
502
+ style?: string | undefined;
503
+ hidden?: string | undefined;
504
+ } | {
505
+ id: string;
506
+ type: "select";
507
+ path: string;
508
+ title: readonly {
509
+ locale: "en" | "ja" | "ko" | "zh";
510
+ message: string;
511
+ }[];
512
+ options: string;
513
+ label: string;
514
+ value: string;
515
+ key: string;
516
+ labelStyle?: string | undefined;
517
+ contentStyle?: string | undefined;
518
+ required?: boolean | undefined;
519
+ icon?: string | undefined;
520
+ style?: string | undefined;
521
+ initialValue?: string | undefined;
522
+ hidden?: string | undefined;
523
+ disabled?: string | undefined;
524
+ validation?: readonly Readonly<{
525
+ expression: string;
526
+ message: string;
527
+ }>[] | undefined;
528
+ } | {
529
+ id: string;
530
+ type: "radio";
531
+ path: string;
532
+ title: readonly {
533
+ locale: "en" | "ja" | "ko" | "zh";
534
+ message: string;
535
+ }[];
536
+ options: string;
537
+ label: string;
538
+ value: string;
539
+ key: string;
540
+ labelStyle?: string | undefined;
541
+ contentStyle?: string | undefined;
542
+ required?: boolean | undefined;
543
+ icon?: string | undefined;
544
+ style?: string | undefined;
545
+ initialValue?: string | undefined;
546
+ hidden?: string | undefined;
547
+ disabled?: string | undefined;
548
+ validation?: readonly Readonly<{
549
+ expression: string;
550
+ message: string;
551
+ }>[] | undefined;
552
+ } | {
553
+ id: string;
554
+ type: "calendar";
555
+ path: string;
556
+ title: readonly {
557
+ locale: "en" | "ja" | "ko" | "zh";
558
+ message: string;
559
+ }[];
560
+ mode: "month" | "year" | "date";
561
+ value: string;
562
+ labelStyle?: string | undefined;
563
+ contentStyle?: string | undefined;
564
+ required?: boolean | undefined;
565
+ icon?: string | undefined;
566
+ style?: string | undefined;
567
+ display?: string | undefined;
568
+ initialValue?: string | undefined;
569
+ disableDate?: string | undefined;
570
+ hidden?: string | undefined;
571
+ disabled?: string | undefined;
572
+ validation?: readonly Readonly<{
573
+ expression: string;
574
+ message: string;
575
+ }>[] | undefined;
576
+ } | {
577
+ id: string;
578
+ type: "upload";
579
+ path: string;
580
+ title: readonly {
581
+ locale: "en" | "ja" | "ko" | "zh";
582
+ message: string;
583
+ }[];
584
+ labelStyle?: string | undefined;
585
+ contentStyle?: string | undefined;
586
+ required?: boolean | undefined;
587
+ icon?: string | undefined;
588
+ accept?: readonly string[] | undefined;
589
+ description?: readonly {
590
+ locale: "en" | "ja" | "ko" | "zh";
591
+ message: string;
592
+ }[] | undefined;
593
+ maxCount?: string | undefined;
594
+ template?: string | undefined;
595
+ templateName?: readonly {
596
+ locale: "en" | "ja" | "ko" | "zh";
597
+ message: string;
598
+ }[] | undefined;
599
+ style?: string | undefined;
600
+ initialValue?: string | undefined;
601
+ hidden?: string | undefined;
602
+ disabled?: string | undefined;
603
+ validation?: readonly Readonly<{
604
+ expression: string;
605
+ message: string;
606
+ }>[] | undefined;
607
+ } | {
608
+ id: string;
609
+ type: "slot";
610
+ style?: string | undefined;
611
+ } | {
612
+ id: string;
613
+ type: "empty";
614
+ style?: string | undefined;
615
+ })[];
616
+ title?: readonly {
352
617
  locale: "en" | "ja" | "ko" | "zh";
353
618
  message: string;
354
619
  }[] | undefined;
355
- maxCount?: string | undefined;
356
- template?: string | undefined;
357
- style?: string | undefined;
358
- initialValue?: string | undefined;
359
- hidden?: string | undefined;
360
- disabled?: string | undefined;
361
- validation?: readonly Readonly<{
362
- expression: string;
363
- message: string;
364
- }>[] | undefined;
365
- } | {
366
- id: string;
367
- type: "slot";
368
- style?: string | undefined;
369
- } | {
370
- id: string;
371
- type: "empty";
372
620
  style?: string | undefined;
373
- })[];
621
+ }>[];
374
622
  kind: string;
375
623
  compatibilityDate: string;
376
624
  orientation?: "vertical" | "horizontal" | "floating" | "contents" | undefined;
@@ -380,7 +628,9 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
380
628
  "initial-value-ready": () => any;
381
629
  }, string, import("vue").PublicProps, Readonly<{
382
630
  config: Effect.Effect<Readonly<{
383
- fields: readonly ({
631
+ kind: string;
632
+ compatibilityDate: string;
633
+ fields?: readonly ({
384
634
  id: string;
385
635
  type: "string";
386
636
  path: string;
@@ -447,6 +697,21 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
447
697
  expression: string;
448
698
  message: string;
449
699
  }>[] | undefined;
700
+ } | {
701
+ id: string;
702
+ type: "markdown";
703
+ title: readonly {
704
+ locale: "en" | "ja" | "ko" | "zh";
705
+ message: string;
706
+ }[];
707
+ locale: readonly {
708
+ locale: "en" | "ja" | "ko" | "zh";
709
+ message: string;
710
+ }[];
711
+ labelStyle?: string | undefined;
712
+ contentStyle?: string | undefined;
713
+ style?: string | undefined;
714
+ hidden?: string | undefined;
450
715
  } | {
451
716
  id: string;
452
717
  type: "select";
@@ -538,6 +803,10 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
538
803
  }[] | undefined;
539
804
  maxCount?: string | undefined;
540
805
  template?: string | undefined;
806
+ templateName?: readonly {
807
+ locale: "en" | "ja" | "ko" | "zh";
808
+ message: string;
809
+ }[] | undefined;
541
810
  style?: string | undefined;
542
811
  initialValue?: string | undefined;
543
812
  hidden?: string | undefined;
@@ -554,9 +823,209 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
554
823
  id: string;
555
824
  type: "empty";
556
825
  style?: string | undefined;
557
- })[];
558
- kind: string;
559
- compatibilityDate: string;
826
+ })[] | undefined;
827
+ groups?: readonly Readonly<{
828
+ id: string;
829
+ fields: readonly ({
830
+ id: string;
831
+ type: "string";
832
+ path: string;
833
+ title: readonly {
834
+ locale: "en" | "ja" | "ko" | "zh";
835
+ message: string;
836
+ }[];
837
+ labelStyle?: string | undefined;
838
+ contentStyle?: string | undefined;
839
+ required?: boolean | undefined;
840
+ icon?: string | undefined;
841
+ style?: string | undefined;
842
+ discardEmptyString?: boolean | undefined;
843
+ initialValue?: string | undefined;
844
+ maxLength?: string | undefined;
845
+ hidden?: string | undefined;
846
+ disabled?: string | undefined;
847
+ validation?: readonly Readonly<{
848
+ expression: string;
849
+ message: string;
850
+ }>[] | undefined;
851
+ } | {
852
+ id: string;
853
+ type: "textarea";
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
+ } | {
874
+ id: string;
875
+ type: "number";
876
+ path: string;
877
+ title: readonly {
878
+ locale: "en" | "ja" | "ko" | "zh";
879
+ message: string;
880
+ }[];
881
+ labelStyle?: string | undefined;
882
+ contentStyle?: string | undefined;
883
+ required?: boolean | undefined;
884
+ icon?: string | undefined;
885
+ style?: string | undefined;
886
+ initialValue?: string | undefined;
887
+ min?: string | undefined;
888
+ max?: string | undefined;
889
+ step?: string | undefined;
890
+ hidden?: string | undefined;
891
+ disabled?: string | undefined;
892
+ validation?: readonly Readonly<{
893
+ expression: string;
894
+ message: string;
895
+ }>[] | undefined;
896
+ } | {
897
+ id: string;
898
+ type: "markdown";
899
+ title: readonly {
900
+ locale: "en" | "ja" | "ko" | "zh";
901
+ message: string;
902
+ }[];
903
+ locale: readonly {
904
+ locale: "en" | "ja" | "ko" | "zh";
905
+ message: string;
906
+ }[];
907
+ labelStyle?: string | undefined;
908
+ contentStyle?: string | undefined;
909
+ style?: string | undefined;
910
+ hidden?: string | undefined;
911
+ } | {
912
+ id: string;
913
+ type: "select";
914
+ path: string;
915
+ title: readonly {
916
+ locale: "en" | "ja" | "ko" | "zh";
917
+ message: string;
918
+ }[];
919
+ options: string;
920
+ label: string;
921
+ value: string;
922
+ key: string;
923
+ labelStyle?: string | undefined;
924
+ contentStyle?: string | undefined;
925
+ required?: boolean | undefined;
926
+ icon?: string | undefined;
927
+ style?: string | undefined;
928
+ initialValue?: string | undefined;
929
+ hidden?: string | undefined;
930
+ disabled?: string | undefined;
931
+ validation?: readonly Readonly<{
932
+ expression: string;
933
+ message: string;
934
+ }>[] | undefined;
935
+ } | {
936
+ id: string;
937
+ type: "radio";
938
+ path: string;
939
+ title: readonly {
940
+ locale: "en" | "ja" | "ko" | "zh";
941
+ message: string;
942
+ }[];
943
+ options: string;
944
+ label: string;
945
+ value: string;
946
+ key: string;
947
+ labelStyle?: string | undefined;
948
+ contentStyle?: string | undefined;
949
+ required?: boolean | undefined;
950
+ icon?: string | undefined;
951
+ style?: string | undefined;
952
+ initialValue?: string | undefined;
953
+ hidden?: string | undefined;
954
+ disabled?: string | undefined;
955
+ validation?: readonly Readonly<{
956
+ expression: string;
957
+ message: string;
958
+ }>[] | undefined;
959
+ } | {
960
+ id: string;
961
+ type: "calendar";
962
+ path: string;
963
+ title: readonly {
964
+ locale: "en" | "ja" | "ko" | "zh";
965
+ message: string;
966
+ }[];
967
+ mode: "month" | "year" | "date";
968
+ value: string;
969
+ labelStyle?: string | undefined;
970
+ contentStyle?: string | undefined;
971
+ required?: boolean | undefined;
972
+ icon?: string | undefined;
973
+ style?: string | undefined;
974
+ display?: string | undefined;
975
+ initialValue?: string | undefined;
976
+ disableDate?: string | undefined;
977
+ hidden?: string | undefined;
978
+ disabled?: string | undefined;
979
+ validation?: readonly Readonly<{
980
+ expression: string;
981
+ message: string;
982
+ }>[] | undefined;
983
+ } | {
984
+ id: string;
985
+ type: "upload";
986
+ path: string;
987
+ title: readonly {
988
+ locale: "en" | "ja" | "ko" | "zh";
989
+ message: string;
990
+ }[];
991
+ labelStyle?: string | undefined;
992
+ contentStyle?: string | undefined;
993
+ required?: boolean | undefined;
994
+ icon?: string | undefined;
995
+ accept?: readonly string[] | undefined;
996
+ description?: readonly {
997
+ locale: "en" | "ja" | "ko" | "zh";
998
+ message: string;
999
+ }[] | undefined;
1000
+ maxCount?: string | undefined;
1001
+ template?: string | undefined;
1002
+ templateName?: readonly {
1003
+ locale: "en" | "ja" | "ko" | "zh";
1004
+ message: string;
1005
+ }[] | undefined;
1006
+ style?: string | undefined;
1007
+ initialValue?: string | undefined;
1008
+ hidden?: string | undefined;
1009
+ disabled?: string | undefined;
1010
+ validation?: readonly Readonly<{
1011
+ expression: string;
1012
+ message: string;
1013
+ }>[] | undefined;
1014
+ } | {
1015
+ id: string;
1016
+ type: "slot";
1017
+ style?: string | undefined;
1018
+ } | {
1019
+ id: string;
1020
+ type: "empty";
1021
+ style?: string | undefined;
1022
+ })[];
1023
+ title?: readonly {
1024
+ locale: "en" | "ja" | "ko" | "zh";
1025
+ message: string;
1026
+ }[] | undefined;
1027
+ style?: string | undefined;
1028
+ }>[] | undefined;
560
1029
  orientation?: "vertical" | "horizontal" | "floating" | "contents" | undefined;
561
1030
  bordered?: boolean | undefined;
562
1031
  style?: string | undefined;
@@ -566,181 +1035,208 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
566
1035
  }> & Readonly<{
567
1036
  "onUpdate:modelValue"?: ((value: Record<string, unknown>) => any) | undefined;
568
1037
  "onUpdate:config"?: ((args_0: Readonly<{
569
- fields: readonly ({
1038
+ groups: readonly Readonly<{
570
1039
  id: string;
571
- type: "string";
572
- path: string;
573
- title: readonly {
574
- locale: "en" | "ja" | "ko" | "zh";
575
- message: string;
576
- }[];
577
- labelStyle?: string | undefined;
578
- contentStyle?: string | undefined;
579
- required?: boolean | undefined;
580
- icon?: string | undefined;
581
- style?: string | undefined;
582
- discardEmptyString?: boolean | undefined;
583
- initialValue?: string | undefined;
584
- maxLength?: string | undefined;
585
- hidden?: string | undefined;
586
- disabled?: string | undefined;
587
- validation?: readonly Readonly<{
588
- expression: string;
589
- message: string;
590
- }>[] | undefined;
591
- } | {
592
- id: string;
593
- type: "textarea";
594
- path: string;
595
- title: readonly {
596
- locale: "en" | "ja" | "ko" | "zh";
597
- message: string;
598
- }[];
599
- labelStyle?: string | undefined;
600
- contentStyle?: string | undefined;
601
- required?: boolean | undefined;
602
- icon?: string | undefined;
603
- style?: string | undefined;
604
- discardEmptyString?: boolean | undefined;
605
- initialValue?: string | undefined;
606
- maxLength?: string | undefined;
607
- hidden?: string | undefined;
608
- disabled?: string | undefined;
609
- validation?: readonly Readonly<{
610
- expression: string;
611
- message: string;
612
- }>[] | undefined;
613
- } | {
614
- id: string;
615
- type: "number";
616
- path: string;
617
- title: readonly {
618
- locale: "en" | "ja" | "ko" | "zh";
619
- message: string;
620
- }[];
621
- labelStyle?: string | undefined;
622
- contentStyle?: string | undefined;
623
- required?: boolean | undefined;
624
- icon?: string | undefined;
625
- style?: string | undefined;
626
- initialValue?: string | undefined;
627
- min?: string | undefined;
628
- max?: string | undefined;
629
- step?: string | undefined;
630
- hidden?: string | undefined;
631
- disabled?: string | undefined;
632
- validation?: readonly Readonly<{
633
- expression: string;
634
- message: string;
635
- }>[] | undefined;
636
- } | {
637
- id: string;
638
- type: "select";
639
- path: string;
640
- title: readonly {
641
- locale: "en" | "ja" | "ko" | "zh";
642
- message: string;
643
- }[];
644
- options: string;
645
- label: string;
646
- value: string;
647
- key: string;
648
- labelStyle?: string | undefined;
649
- contentStyle?: string | undefined;
650
- required?: boolean | undefined;
651
- icon?: string | undefined;
652
- style?: string | undefined;
653
- initialValue?: string | undefined;
654
- hidden?: string | undefined;
655
- disabled?: string | undefined;
656
- validation?: readonly Readonly<{
657
- expression: string;
658
- message: string;
659
- }>[] | undefined;
660
- } | {
661
- id: string;
662
- type: "radio";
663
- path: string;
664
- title: readonly {
665
- locale: "en" | "ja" | "ko" | "zh";
666
- message: string;
667
- }[];
668
- options: string;
669
- label: string;
670
- value: string;
671
- key: string;
672
- labelStyle?: string | undefined;
673
- contentStyle?: string | undefined;
674
- required?: boolean | undefined;
675
- icon?: string | undefined;
676
- style?: string | undefined;
677
- initialValue?: string | undefined;
678
- hidden?: string | undefined;
679
- disabled?: string | undefined;
680
- validation?: readonly Readonly<{
681
- expression: string;
682
- message: string;
683
- }>[] | undefined;
684
- } | {
685
- id: string;
686
- type: "calendar";
687
- path: string;
688
- title: readonly {
689
- locale: "en" | "ja" | "ko" | "zh";
690
- message: string;
691
- }[];
692
- mode: "month" | "year" | "date";
693
- value: string;
694
- labelStyle?: string | undefined;
695
- contentStyle?: string | undefined;
696
- required?: boolean | undefined;
697
- icon?: string | undefined;
698
- style?: string | undefined;
699
- display?: string | undefined;
700
- initialValue?: string | undefined;
701
- disableDate?: string | undefined;
702
- hidden?: string | undefined;
703
- disabled?: string | undefined;
704
- validation?: readonly Readonly<{
705
- expression: string;
706
- message: string;
707
- }>[] | undefined;
708
- } | {
709
- id: string;
710
- type: "upload";
711
- path: string;
712
- title: readonly {
713
- locale: "en" | "ja" | "ko" | "zh";
714
- message: string;
715
- }[];
716
- labelStyle?: string | undefined;
717
- contentStyle?: string | undefined;
718
- required?: boolean | undefined;
719
- icon?: string | undefined;
720
- accept?: readonly string[] | undefined;
721
- description?: readonly {
1040
+ fields: readonly ({
1041
+ id: string;
1042
+ type: "string";
1043
+ path: string;
1044
+ title: readonly {
1045
+ locale: "en" | "ja" | "ko" | "zh";
1046
+ message: string;
1047
+ }[];
1048
+ labelStyle?: string | undefined;
1049
+ contentStyle?: string | undefined;
1050
+ required?: boolean | undefined;
1051
+ icon?: string | undefined;
1052
+ style?: string | undefined;
1053
+ discardEmptyString?: boolean | undefined;
1054
+ initialValue?: string | undefined;
1055
+ maxLength?: string | undefined;
1056
+ hidden?: string | undefined;
1057
+ disabled?: string | undefined;
1058
+ validation?: readonly Readonly<{
1059
+ expression: string;
1060
+ message: string;
1061
+ }>[] | undefined;
1062
+ } | {
1063
+ id: string;
1064
+ type: "textarea";
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
+ style?: string | undefined;
1075
+ discardEmptyString?: boolean | undefined;
1076
+ initialValue?: string | undefined;
1077
+ maxLength?: string | undefined;
1078
+ hidden?: string | undefined;
1079
+ disabled?: string | undefined;
1080
+ validation?: readonly Readonly<{
1081
+ expression: string;
1082
+ message: string;
1083
+ }>[] | undefined;
1084
+ } | {
1085
+ id: string;
1086
+ type: "number";
1087
+ path: string;
1088
+ title: readonly {
1089
+ locale: "en" | "ja" | "ko" | "zh";
1090
+ message: string;
1091
+ }[];
1092
+ labelStyle?: string | undefined;
1093
+ contentStyle?: string | undefined;
1094
+ required?: boolean | undefined;
1095
+ icon?: string | undefined;
1096
+ style?: string | undefined;
1097
+ initialValue?: string | undefined;
1098
+ min?: string | undefined;
1099
+ max?: string | undefined;
1100
+ step?: string | undefined;
1101
+ hidden?: string | undefined;
1102
+ disabled?: string | undefined;
1103
+ validation?: readonly Readonly<{
1104
+ expression: string;
1105
+ message: string;
1106
+ }>[] | undefined;
1107
+ } | {
1108
+ id: string;
1109
+ type: "markdown";
1110
+ title: readonly {
1111
+ locale: "en" | "ja" | "ko" | "zh";
1112
+ message: string;
1113
+ }[];
1114
+ locale: readonly {
1115
+ locale: "en" | "ja" | "ko" | "zh";
1116
+ message: string;
1117
+ }[];
1118
+ labelStyle?: string | undefined;
1119
+ contentStyle?: string | undefined;
1120
+ style?: string | undefined;
1121
+ hidden?: string | undefined;
1122
+ } | {
1123
+ id: string;
1124
+ type: "select";
1125
+ path: string;
1126
+ title: readonly {
1127
+ locale: "en" | "ja" | "ko" | "zh";
1128
+ message: string;
1129
+ }[];
1130
+ options: string;
1131
+ label: string;
1132
+ value: string;
1133
+ key: string;
1134
+ labelStyle?: string | undefined;
1135
+ contentStyle?: string | undefined;
1136
+ required?: boolean | undefined;
1137
+ icon?: string | undefined;
1138
+ style?: string | undefined;
1139
+ initialValue?: string | undefined;
1140
+ hidden?: string | undefined;
1141
+ disabled?: string | undefined;
1142
+ validation?: readonly Readonly<{
1143
+ expression: string;
1144
+ message: string;
1145
+ }>[] | undefined;
1146
+ } | {
1147
+ id: string;
1148
+ type: "radio";
1149
+ path: string;
1150
+ title: readonly {
1151
+ locale: "en" | "ja" | "ko" | "zh";
1152
+ message: string;
1153
+ }[];
1154
+ options: string;
1155
+ label: string;
1156
+ value: string;
1157
+ key: string;
1158
+ labelStyle?: string | undefined;
1159
+ contentStyle?: string | undefined;
1160
+ required?: boolean | undefined;
1161
+ icon?: string | undefined;
1162
+ style?: string | undefined;
1163
+ initialValue?: string | undefined;
1164
+ hidden?: string | undefined;
1165
+ disabled?: string | undefined;
1166
+ validation?: readonly Readonly<{
1167
+ expression: string;
1168
+ message: string;
1169
+ }>[] | undefined;
1170
+ } | {
1171
+ id: string;
1172
+ type: "calendar";
1173
+ path: string;
1174
+ title: readonly {
1175
+ locale: "en" | "ja" | "ko" | "zh";
1176
+ message: string;
1177
+ }[];
1178
+ mode: "month" | "year" | "date";
1179
+ value: string;
1180
+ labelStyle?: string | undefined;
1181
+ contentStyle?: string | undefined;
1182
+ required?: boolean | undefined;
1183
+ icon?: string | undefined;
1184
+ style?: string | undefined;
1185
+ display?: string | undefined;
1186
+ initialValue?: string | undefined;
1187
+ disableDate?: string | undefined;
1188
+ hidden?: string | undefined;
1189
+ disabled?: string | undefined;
1190
+ validation?: readonly Readonly<{
1191
+ expression: string;
1192
+ message: string;
1193
+ }>[] | undefined;
1194
+ } | {
1195
+ id: string;
1196
+ type: "upload";
1197
+ path: string;
1198
+ title: readonly {
1199
+ locale: "en" | "ja" | "ko" | "zh";
1200
+ message: string;
1201
+ }[];
1202
+ labelStyle?: string | undefined;
1203
+ contentStyle?: string | undefined;
1204
+ required?: boolean | undefined;
1205
+ icon?: string | undefined;
1206
+ accept?: readonly string[] | undefined;
1207
+ description?: readonly {
1208
+ locale: "en" | "ja" | "ko" | "zh";
1209
+ message: string;
1210
+ }[] | undefined;
1211
+ maxCount?: string | undefined;
1212
+ template?: string | undefined;
1213
+ templateName?: readonly {
1214
+ locale: "en" | "ja" | "ko" | "zh";
1215
+ message: string;
1216
+ }[] | 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
+ } | {
1226
+ id: string;
1227
+ type: "slot";
1228
+ style?: string | undefined;
1229
+ } | {
1230
+ id: string;
1231
+ type: "empty";
1232
+ style?: string | undefined;
1233
+ })[];
1234
+ title?: readonly {
722
1235
  locale: "en" | "ja" | "ko" | "zh";
723
1236
  message: string;
724
1237
  }[] | undefined;
725
- maxCount?: string | undefined;
726
- template?: string | undefined;
727
- style?: string | undefined;
728
- initialValue?: string | undefined;
729
- hidden?: string | undefined;
730
- disabled?: string | undefined;
731
- validation?: readonly Readonly<{
732
- expression: string;
733
- message: string;
734
- }>[] | undefined;
735
- } | {
736
- id: string;
737
- type: "slot";
738
- style?: string | undefined;
739
- } | {
740
- id: string;
741
- type: "empty";
742
1238
  style?: string | undefined;
743
- })[];
1239
+ }>[];
744
1240
  kind: string;
745
1241
  compatibilityDate: string;
746
1242
  orientation?: "vertical" | "horizontal" | "floating" | "contents" | undefined;