@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,8 +1,8 @@
1
1
  import { Effect } from 'effect';
2
2
  import { type FieldsConfigInput } from './ui/fields/Fields.vue.js';
3
3
  import type { FieldsSlotProps } from './ui/fields/slot-props.js';
4
- export { CalendarFieldC, EmptyFieldC, FieldC, FieldsBodyC, FieldsBodyInputC, FieldsConfigC, FieldsConfigInputC, NumberFieldC, SelectFieldC, SlotFieldC, StringFieldC, UploadFieldC, CURRENT_COMPATIBILITY_DATE, KIND, SUPPORTED_COMPATIBILITY_DATES, createFieldsConfig, } from './ui/fields/Fields.vue.js';
5
- export type { EmptyField, Field, FieldsBody, FieldsBodyInput, FieldsConfig, FieldsConfigInput, SlotField, UploadField, } from './ui/fields/Fields.vue.js';
4
+ export { CalendarFieldC, EmptyFieldC, FieldC, FieldGroupC, FieldsBodyC, FieldsBodyInputC, FieldsConfigC, FieldsConfigInputC, NumberFieldC, SelectFieldC, SlotFieldC, StringFieldC, UploadFieldC, CURRENT_COMPATIBILITY_DATE, KIND, SUPPORTED_COMPATIBILITY_DATES, createFieldsConfig, } from './ui/fields/Fields.vue.js';
5
+ export type { EmptyField, Field, FieldGroup, FieldsBody, FieldsBodyInput, FieldsConfig, FieldsConfigInput, SlotField, UploadField, } from './ui/fields/Fields.vue.js';
6
6
  export type { FieldsInstance } from './fields-instance.js';
7
7
  export type { FieldsSlotProps } from './ui/fields/slot-props.js';
8
8
  declare const _default: typeof __VLS_export;
@@ -14,181 +14,208 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
14
14
  }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
15
15
  "update:modelValue": (value: Record<string, unknown>) => any;
16
16
  "update:config": (args_0: Readonly<{
17
- fields: readonly ({
17
+ groups: readonly Readonly<{
18
18
  id: string;
19
- type: "string";
20
- path: string;
21
- title: readonly {
22
- locale: "en" | "ja" | "ko" | "zh";
23
- message: string;
24
- }[];
25
- labelStyle?: string | undefined;
26
- contentStyle?: string | undefined;
27
- required?: boolean | undefined;
28
- icon?: string | undefined;
29
- style?: string | undefined;
30
- discardEmptyString?: boolean | undefined;
31
- initialValue?: string | undefined;
32
- maxLength?: string | undefined;
33
- hidden?: string | undefined;
34
- disabled?: string | undefined;
35
- validation?: readonly Readonly<{
36
- expression: string;
37
- message: string;
38
- }>[] | undefined;
39
- } | {
40
- id: string;
41
- type: "textarea";
42
- path: string;
43
- title: readonly {
44
- locale: "en" | "ja" | "ko" | "zh";
45
- message: string;
46
- }[];
47
- labelStyle?: string | undefined;
48
- contentStyle?: string | undefined;
49
- required?: boolean | undefined;
50
- icon?: string | undefined;
51
- style?: string | undefined;
52
- discardEmptyString?: boolean | undefined;
53
- initialValue?: string | undefined;
54
- maxLength?: string | undefined;
55
- hidden?: string | undefined;
56
- disabled?: string | undefined;
57
- validation?: readonly Readonly<{
58
- expression: string;
59
- message: string;
60
- }>[] | undefined;
61
- } | {
62
- id: string;
63
- type: "number";
64
- path: string;
65
- title: readonly {
66
- locale: "en" | "ja" | "ko" | "zh";
67
- message: string;
68
- }[];
69
- labelStyle?: string | undefined;
70
- contentStyle?: string | undefined;
71
- required?: boolean | undefined;
72
- icon?: string | undefined;
73
- style?: string | undefined;
74
- initialValue?: string | undefined;
75
- min?: string | undefined;
76
- max?: string | undefined;
77
- step?: string | undefined;
78
- hidden?: string | undefined;
79
- disabled?: string | undefined;
80
- validation?: readonly Readonly<{
81
- expression: string;
82
- message: string;
83
- }>[] | undefined;
84
- } | {
85
- id: string;
86
- type: "select";
87
- path: string;
88
- title: readonly {
89
- locale: "en" | "ja" | "ko" | "zh";
90
- message: string;
91
- }[];
92
- options: string;
93
- label: string;
94
- value: string;
95
- key: string;
96
- labelStyle?: string | undefined;
97
- contentStyle?: string | undefined;
98
- required?: boolean | undefined;
99
- icon?: string | undefined;
100
- style?: string | undefined;
101
- initialValue?: string | undefined;
102
- hidden?: string | undefined;
103
- disabled?: string | undefined;
104
- validation?: readonly Readonly<{
105
- expression: string;
106
- message: string;
107
- }>[] | undefined;
108
- } | {
109
- id: string;
110
- type: "radio";
111
- path: string;
112
- title: readonly {
113
- locale: "en" | "ja" | "ko" | "zh";
114
- message: string;
115
- }[];
116
- options: string;
117
- label: string;
118
- value: string;
119
- key: string;
120
- labelStyle?: string | undefined;
121
- contentStyle?: string | undefined;
122
- required?: boolean | undefined;
123
- icon?: string | undefined;
124
- style?: string | undefined;
125
- initialValue?: string | undefined;
126
- hidden?: string | undefined;
127
- disabled?: string | undefined;
128
- validation?: readonly Readonly<{
129
- expression: string;
130
- message: string;
131
- }>[] | undefined;
132
- } | {
133
- id: string;
134
- type: "calendar";
135
- path: string;
136
- title: readonly {
137
- locale: "en" | "ja" | "ko" | "zh";
138
- message: string;
139
- }[];
140
- mode: "month" | "year" | "date";
141
- value: string;
142
- labelStyle?: string | undefined;
143
- contentStyle?: string | undefined;
144
- required?: boolean | undefined;
145
- icon?: string | undefined;
146
- style?: string | undefined;
147
- display?: string | undefined;
148
- initialValue?: string | undefined;
149
- disableDate?: string | undefined;
150
- hidden?: string | undefined;
151
- disabled?: string | undefined;
152
- validation?: readonly Readonly<{
153
- expression: string;
154
- message: string;
155
- }>[] | undefined;
156
- } | {
157
- id: string;
158
- type: "upload";
159
- path: string;
160
- title: readonly {
161
- locale: "en" | "ja" | "ko" | "zh";
162
- message: string;
163
- }[];
164
- labelStyle?: string | undefined;
165
- contentStyle?: string | undefined;
166
- required?: boolean | undefined;
167
- icon?: string | undefined;
168
- accept?: readonly string[] | undefined;
169
- description?: readonly {
19
+ fields: readonly ({
20
+ id: string;
21
+ type: "string";
22
+ path: string;
23
+ title: readonly {
24
+ locale: "en" | "ja" | "ko" | "zh";
25
+ message: string;
26
+ }[];
27
+ labelStyle?: string | undefined;
28
+ contentStyle?: string | undefined;
29
+ required?: boolean | undefined;
30
+ icon?: string | undefined;
31
+ style?: string | undefined;
32
+ discardEmptyString?: boolean | undefined;
33
+ initialValue?: string | undefined;
34
+ maxLength?: string | undefined;
35
+ hidden?: string | undefined;
36
+ disabled?: string | undefined;
37
+ validation?: readonly Readonly<{
38
+ expression: string;
39
+ message: string;
40
+ }>[] | undefined;
41
+ } | {
42
+ id: string;
43
+ type: "textarea";
44
+ path: string;
45
+ title: readonly {
46
+ locale: "en" | "ja" | "ko" | "zh";
47
+ message: string;
48
+ }[];
49
+ labelStyle?: string | undefined;
50
+ contentStyle?: string | undefined;
51
+ required?: boolean | undefined;
52
+ icon?: string | undefined;
53
+ style?: string | undefined;
54
+ discardEmptyString?: boolean | undefined;
55
+ initialValue?: string | undefined;
56
+ maxLength?: string | undefined;
57
+ hidden?: string | undefined;
58
+ disabled?: string | undefined;
59
+ validation?: readonly Readonly<{
60
+ expression: string;
61
+ message: string;
62
+ }>[] | undefined;
63
+ } | {
64
+ id: string;
65
+ type: "number";
66
+ path: string;
67
+ title: readonly {
68
+ locale: "en" | "ja" | "ko" | "zh";
69
+ message: string;
70
+ }[];
71
+ labelStyle?: string | undefined;
72
+ contentStyle?: string | undefined;
73
+ required?: boolean | undefined;
74
+ icon?: string | undefined;
75
+ style?: string | undefined;
76
+ initialValue?: string | undefined;
77
+ min?: string | undefined;
78
+ max?: string | undefined;
79
+ step?: string | undefined;
80
+ hidden?: string | undefined;
81
+ disabled?: string | undefined;
82
+ validation?: readonly Readonly<{
83
+ expression: string;
84
+ message: string;
85
+ }>[] | undefined;
86
+ } | {
87
+ id: string;
88
+ type: "markdown";
89
+ title: readonly {
90
+ locale: "en" | "ja" | "ko" | "zh";
91
+ message: string;
92
+ }[];
93
+ locale: readonly {
94
+ locale: "en" | "ja" | "ko" | "zh";
95
+ message: string;
96
+ }[];
97
+ labelStyle?: string | undefined;
98
+ contentStyle?: string | undefined;
99
+ style?: string | undefined;
100
+ hidden?: string | undefined;
101
+ } | {
102
+ id: string;
103
+ type: "select";
104
+ path: string;
105
+ title: readonly {
106
+ locale: "en" | "ja" | "ko" | "zh";
107
+ message: string;
108
+ }[];
109
+ options: string;
110
+ label: string;
111
+ value: string;
112
+ key: string;
113
+ labelStyle?: string | undefined;
114
+ contentStyle?: string | undefined;
115
+ required?: boolean | undefined;
116
+ icon?: string | undefined;
117
+ style?: string | undefined;
118
+ initialValue?: string | undefined;
119
+ hidden?: string | undefined;
120
+ disabled?: string | undefined;
121
+ validation?: readonly Readonly<{
122
+ expression: string;
123
+ message: string;
124
+ }>[] | undefined;
125
+ } | {
126
+ id: string;
127
+ type: "radio";
128
+ path: string;
129
+ title: readonly {
130
+ locale: "en" | "ja" | "ko" | "zh";
131
+ message: string;
132
+ }[];
133
+ options: string;
134
+ label: string;
135
+ value: string;
136
+ key: string;
137
+ labelStyle?: string | undefined;
138
+ contentStyle?: string | undefined;
139
+ required?: boolean | undefined;
140
+ icon?: string | undefined;
141
+ style?: string | undefined;
142
+ initialValue?: string | undefined;
143
+ hidden?: string | undefined;
144
+ disabled?: string | undefined;
145
+ validation?: readonly Readonly<{
146
+ expression: string;
147
+ message: string;
148
+ }>[] | undefined;
149
+ } | {
150
+ id: string;
151
+ type: "calendar";
152
+ path: string;
153
+ title: readonly {
154
+ locale: "en" | "ja" | "ko" | "zh";
155
+ message: string;
156
+ }[];
157
+ mode: "month" | "year" | "date";
158
+ value: string;
159
+ labelStyle?: string | undefined;
160
+ contentStyle?: string | undefined;
161
+ required?: boolean | undefined;
162
+ icon?: string | undefined;
163
+ style?: string | undefined;
164
+ display?: string | undefined;
165
+ initialValue?: string | undefined;
166
+ disableDate?: string | undefined;
167
+ hidden?: string | undefined;
168
+ disabled?: string | undefined;
169
+ validation?: readonly Readonly<{
170
+ expression: string;
171
+ message: string;
172
+ }>[] | undefined;
173
+ } | {
174
+ id: string;
175
+ type: "upload";
176
+ path: string;
177
+ title: readonly {
178
+ locale: "en" | "ja" | "ko" | "zh";
179
+ message: string;
180
+ }[];
181
+ labelStyle?: string | undefined;
182
+ contentStyle?: string | undefined;
183
+ required?: boolean | undefined;
184
+ icon?: string | undefined;
185
+ accept?: readonly string[] | undefined;
186
+ description?: readonly {
187
+ locale: "en" | "ja" | "ko" | "zh";
188
+ message: string;
189
+ }[] | undefined;
190
+ maxCount?: string | undefined;
191
+ template?: string | undefined;
192
+ templateName?: readonly {
193
+ locale: "en" | "ja" | "ko" | "zh";
194
+ message: string;
195
+ }[] | undefined;
196
+ style?: string | undefined;
197
+ initialValue?: string | undefined;
198
+ hidden?: string | undefined;
199
+ disabled?: string | undefined;
200
+ validation?: readonly Readonly<{
201
+ expression: string;
202
+ message: string;
203
+ }>[] | undefined;
204
+ } | {
205
+ id: string;
206
+ type: "slot";
207
+ style?: string | undefined;
208
+ } | {
209
+ id: string;
210
+ type: "empty";
211
+ style?: string | undefined;
212
+ })[];
213
+ title?: readonly {
170
214
  locale: "en" | "ja" | "ko" | "zh";
171
215
  message: string;
172
216
  }[] | undefined;
173
- maxCount?: string | undefined;
174
- template?: string | undefined;
175
- style?: string | undefined;
176
- initialValue?: string | undefined;
177
- hidden?: string | undefined;
178
- disabled?: string | undefined;
179
- validation?: readonly Readonly<{
180
- expression: string;
181
- message: string;
182
- }>[] | undefined;
183
- } | {
184
- id: string;
185
- type: "slot";
186
- style?: string | undefined;
187
- } | {
188
- id: string;
189
- type: "empty";
190
217
  style?: string | undefined;
191
- })[];
218
+ }>[];
192
219
  kind: string;
193
220
  compatibilityDate: string;
194
221
  orientation?: "vertical" | "horizontal" | "floating" | "contents" | undefined;
@@ -203,181 +230,208 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
203
230
  }> & Readonly<{
204
231
  "onUpdate:modelValue"?: ((value: Record<string, unknown>) => any) | undefined;
205
232
  "onUpdate:config"?: ((args_0: Readonly<{
206
- fields: readonly ({
233
+ groups: readonly Readonly<{
207
234
  id: string;
208
- type: "string";
209
- path: string;
210
- title: readonly {
211
- locale: "en" | "ja" | "ko" | "zh";
212
- message: string;
213
- }[];
214
- labelStyle?: string | undefined;
215
- contentStyle?: string | undefined;
216
- required?: boolean | undefined;
217
- icon?: string | undefined;
218
- style?: string | undefined;
219
- discardEmptyString?: boolean | undefined;
220
- initialValue?: string | undefined;
221
- maxLength?: string | undefined;
222
- hidden?: string | undefined;
223
- disabled?: string | undefined;
224
- validation?: readonly Readonly<{
225
- expression: string;
226
- message: string;
227
- }>[] | undefined;
228
- } | {
229
- id: string;
230
- type: "textarea";
231
- path: string;
232
- title: readonly {
233
- locale: "en" | "ja" | "ko" | "zh";
234
- message: string;
235
- }[];
236
- labelStyle?: string | undefined;
237
- contentStyle?: string | undefined;
238
- required?: boolean | undefined;
239
- icon?: string | undefined;
240
- style?: string | undefined;
241
- discardEmptyString?: boolean | undefined;
242
- initialValue?: string | undefined;
243
- maxLength?: string | undefined;
244
- hidden?: string | undefined;
245
- disabled?: string | undefined;
246
- validation?: readonly Readonly<{
247
- expression: string;
248
- message: string;
249
- }>[] | undefined;
250
- } | {
251
- id: string;
252
- type: "number";
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
- initialValue?: string | undefined;
264
- min?: string | undefined;
265
- max?: string | undefined;
266
- step?: string | undefined;
267
- hidden?: string | undefined;
268
- disabled?: string | undefined;
269
- validation?: readonly Readonly<{
270
- expression: string;
271
- message: string;
272
- }>[] | undefined;
273
- } | {
274
- id: string;
275
- type: "select";
276
- path: string;
277
- title: readonly {
278
- locale: "en" | "ja" | "ko" | "zh";
279
- message: string;
280
- }[];
281
- options: string;
282
- label: string;
283
- value: string;
284
- key: string;
285
- labelStyle?: string | undefined;
286
- contentStyle?: string | undefined;
287
- required?: boolean | undefined;
288
- icon?: string | undefined;
289
- style?: string | undefined;
290
- initialValue?: string | undefined;
291
- hidden?: string | undefined;
292
- disabled?: string | undefined;
293
- validation?: readonly Readonly<{
294
- expression: string;
295
- message: string;
296
- }>[] | undefined;
297
- } | {
298
- id: string;
299
- type: "radio";
300
- path: string;
301
- title: readonly {
302
- locale: "en" | "ja" | "ko" | "zh";
303
- message: string;
304
- }[];
305
- options: string;
306
- label: string;
307
- value: string;
308
- key: string;
309
- labelStyle?: string | undefined;
310
- contentStyle?: string | undefined;
311
- required?: boolean | undefined;
312
- icon?: string | undefined;
313
- style?: string | undefined;
314
- initialValue?: string | undefined;
315
- hidden?: string | undefined;
316
- disabled?: string | undefined;
317
- validation?: readonly Readonly<{
318
- expression: string;
319
- message: string;
320
- }>[] | undefined;
321
- } | {
322
- id: string;
323
- type: "calendar";
324
- path: string;
325
- title: readonly {
326
- locale: "en" | "ja" | "ko" | "zh";
327
- message: string;
328
- }[];
329
- mode: "month" | "year" | "date";
330
- value: string;
331
- labelStyle?: string | undefined;
332
- contentStyle?: string | undefined;
333
- required?: boolean | undefined;
334
- icon?: string | undefined;
335
- style?: string | undefined;
336
- display?: string | undefined;
337
- initialValue?: string | undefined;
338
- disableDate?: string | undefined;
339
- hidden?: string | undefined;
340
- disabled?: string | undefined;
341
- validation?: readonly Readonly<{
342
- expression: string;
343
- message: string;
344
- }>[] | undefined;
345
- } | {
346
- id: string;
347
- type: "upload";
348
- path: string;
349
- title: readonly {
350
- locale: "en" | "ja" | "ko" | "zh";
351
- message: string;
352
- }[];
353
- labelStyle?: string | undefined;
354
- contentStyle?: string | undefined;
355
- required?: boolean | undefined;
356
- icon?: string | undefined;
357
- accept?: readonly string[] | undefined;
358
- description?: readonly {
235
+ fields: readonly ({
236
+ id: string;
237
+ type: "string";
238
+ path: string;
239
+ title: readonly {
240
+ locale: "en" | "ja" | "ko" | "zh";
241
+ message: string;
242
+ }[];
243
+ labelStyle?: string | undefined;
244
+ contentStyle?: string | undefined;
245
+ required?: boolean | undefined;
246
+ icon?: string | undefined;
247
+ style?: string | undefined;
248
+ discardEmptyString?: boolean | undefined;
249
+ initialValue?: string | undefined;
250
+ maxLength?: string | undefined;
251
+ hidden?: string | undefined;
252
+ disabled?: string | undefined;
253
+ validation?: readonly Readonly<{
254
+ expression: string;
255
+ message: string;
256
+ }>[] | undefined;
257
+ } | {
258
+ id: string;
259
+ type: "textarea";
260
+ path: string;
261
+ title: readonly {
262
+ locale: "en" | "ja" | "ko" | "zh";
263
+ message: string;
264
+ }[];
265
+ labelStyle?: string | undefined;
266
+ contentStyle?: string | undefined;
267
+ required?: boolean | undefined;
268
+ icon?: string | undefined;
269
+ style?: string | undefined;
270
+ discardEmptyString?: boolean | undefined;
271
+ initialValue?: string | undefined;
272
+ maxLength?: string | undefined;
273
+ hidden?: string | undefined;
274
+ disabled?: string | undefined;
275
+ validation?: readonly Readonly<{
276
+ expression: string;
277
+ message: string;
278
+ }>[] | undefined;
279
+ } | {
280
+ id: string;
281
+ type: "number";
282
+ path: string;
283
+ title: readonly {
284
+ locale: "en" | "ja" | "ko" | "zh";
285
+ message: string;
286
+ }[];
287
+ labelStyle?: string | undefined;
288
+ contentStyle?: string | undefined;
289
+ required?: boolean | undefined;
290
+ icon?: string | undefined;
291
+ style?: string | undefined;
292
+ initialValue?: string | undefined;
293
+ min?: string | undefined;
294
+ max?: string | undefined;
295
+ step?: string | undefined;
296
+ hidden?: string | undefined;
297
+ disabled?: string | undefined;
298
+ validation?: readonly Readonly<{
299
+ expression: string;
300
+ message: string;
301
+ }>[] | undefined;
302
+ } | {
303
+ id: string;
304
+ type: "markdown";
305
+ title: readonly {
306
+ locale: "en" | "ja" | "ko" | "zh";
307
+ message: string;
308
+ }[];
309
+ locale: readonly {
310
+ locale: "en" | "ja" | "ko" | "zh";
311
+ message: string;
312
+ }[];
313
+ labelStyle?: string | undefined;
314
+ contentStyle?: string | undefined;
315
+ style?: string | undefined;
316
+ hidden?: string | undefined;
317
+ } | {
318
+ id: string;
319
+ type: "select";
320
+ path: string;
321
+ title: readonly {
322
+ locale: "en" | "ja" | "ko" | "zh";
323
+ message: string;
324
+ }[];
325
+ options: string;
326
+ label: string;
327
+ value: string;
328
+ key: string;
329
+ labelStyle?: string | undefined;
330
+ contentStyle?: string | undefined;
331
+ required?: boolean | undefined;
332
+ icon?: string | undefined;
333
+ style?: string | undefined;
334
+ initialValue?: string | undefined;
335
+ hidden?: string | undefined;
336
+ disabled?: string | undefined;
337
+ validation?: readonly Readonly<{
338
+ expression: string;
339
+ message: string;
340
+ }>[] | undefined;
341
+ } | {
342
+ id: string;
343
+ type: "radio";
344
+ path: string;
345
+ title: readonly {
346
+ locale: "en" | "ja" | "ko" | "zh";
347
+ message: string;
348
+ }[];
349
+ options: string;
350
+ label: string;
351
+ value: string;
352
+ key: string;
353
+ labelStyle?: string | undefined;
354
+ contentStyle?: string | undefined;
355
+ required?: boolean | undefined;
356
+ icon?: 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: "calendar";
368
+ path: string;
369
+ title: readonly {
370
+ locale: "en" | "ja" | "ko" | "zh";
371
+ message: string;
372
+ }[];
373
+ mode: "month" | "year" | "date";
374
+ value: string;
375
+ labelStyle?: string | undefined;
376
+ contentStyle?: string | undefined;
377
+ required?: boolean | undefined;
378
+ icon?: string | undefined;
379
+ style?: string | undefined;
380
+ display?: string | undefined;
381
+ initialValue?: string | undefined;
382
+ disableDate?: string | undefined;
383
+ hidden?: string | undefined;
384
+ disabled?: string | undefined;
385
+ validation?: readonly Readonly<{
386
+ expression: string;
387
+ message: string;
388
+ }>[] | undefined;
389
+ } | {
390
+ id: string;
391
+ type: "upload";
392
+ path: string;
393
+ title: readonly {
394
+ locale: "en" | "ja" | "ko" | "zh";
395
+ message: string;
396
+ }[];
397
+ labelStyle?: string | undefined;
398
+ contentStyle?: string | undefined;
399
+ required?: boolean | undefined;
400
+ icon?: string | undefined;
401
+ accept?: readonly string[] | undefined;
402
+ description?: readonly {
403
+ locale: "en" | "ja" | "ko" | "zh";
404
+ message: string;
405
+ }[] | undefined;
406
+ maxCount?: string | undefined;
407
+ template?: string | undefined;
408
+ templateName?: readonly {
409
+ locale: "en" | "ja" | "ko" | "zh";
410
+ message: string;
411
+ }[] | undefined;
412
+ style?: string | undefined;
413
+ initialValue?: string | undefined;
414
+ hidden?: string | undefined;
415
+ disabled?: string | undefined;
416
+ validation?: readonly Readonly<{
417
+ expression: string;
418
+ message: string;
419
+ }>[] | undefined;
420
+ } | {
421
+ id: string;
422
+ type: "slot";
423
+ style?: string | undefined;
424
+ } | {
425
+ id: string;
426
+ type: "empty";
427
+ style?: string | undefined;
428
+ })[];
429
+ title?: readonly {
359
430
  locale: "en" | "ja" | "ko" | "zh";
360
431
  message: string;
361
432
  }[] | undefined;
362
- maxCount?: string | undefined;
363
- template?: 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
- } | {
373
- id: string;
374
- type: "slot";
375
- style?: string | undefined;
376
- } | {
377
- id: string;
378
- type: "empty";
379
433
  style?: string | undefined;
380
- })[];
434
+ }>[];
381
435
  kind: string;
382
436
  compatibilityDate: string;
383
437
  orientation?: "vertical" | "horizontal" | "floating" | "contents" | undefined;