@shwfed/nuxt 0.11.37 → 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.
@@ -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,185 +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 {
170
- locale: "en" | "ja" | "ko" | "zh";
171
- message: string;
172
- }[] | undefined;
173
- maxCount?: string | undefined;
174
- template?: string | undefined;
175
- templateName?: 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 {
176
214
  locale: "en" | "ja" | "ko" | "zh";
177
215
  message: string;
178
216
  }[] | undefined;
179
217
  style?: string | undefined;
180
- initialValue?: string | undefined;
181
- hidden?: string | undefined;
182
- disabled?: string | undefined;
183
- validation?: readonly Readonly<{
184
- expression: string;
185
- message: string;
186
- }>[] | undefined;
187
- } | {
188
- id: string;
189
- type: "slot";
190
- style?: string | undefined;
191
- } | {
192
- id: string;
193
- type: "empty";
194
- style?: string | undefined;
195
- })[];
218
+ }>[];
196
219
  kind: string;
197
220
  compatibilityDate: string;
198
221
  orientation?: "vertical" | "horizontal" | "floating" | "contents" | undefined;
@@ -207,185 +230,208 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
207
230
  }> & Readonly<{
208
231
  "onUpdate:modelValue"?: ((value: Record<string, unknown>) => any) | undefined;
209
232
  "onUpdate:config"?: ((args_0: Readonly<{
210
- fields: readonly ({
233
+ groups: readonly Readonly<{
211
234
  id: string;
212
- type: "string";
213
- path: string;
214
- title: readonly {
215
- locale: "en" | "ja" | "ko" | "zh";
216
- message: string;
217
- }[];
218
- labelStyle?: string | undefined;
219
- contentStyle?: string | undefined;
220
- required?: boolean | undefined;
221
- icon?: string | undefined;
222
- style?: string | undefined;
223
- discardEmptyString?: boolean | undefined;
224
- initialValue?: string | undefined;
225
- maxLength?: string | undefined;
226
- hidden?: string | undefined;
227
- disabled?: string | undefined;
228
- validation?: readonly Readonly<{
229
- expression: string;
230
- message: string;
231
- }>[] | undefined;
232
- } | {
233
- id: string;
234
- type: "textarea";
235
- path: string;
236
- title: readonly {
237
- locale: "en" | "ja" | "ko" | "zh";
238
- message: string;
239
- }[];
240
- labelStyle?: string | undefined;
241
- contentStyle?: string | undefined;
242
- required?: boolean | undefined;
243
- icon?: string | undefined;
244
- style?: string | undefined;
245
- discardEmptyString?: boolean | undefined;
246
- initialValue?: string | undefined;
247
- maxLength?: string | undefined;
248
- hidden?: string | undefined;
249
- disabled?: string | undefined;
250
- validation?: readonly Readonly<{
251
- expression: string;
252
- message: string;
253
- }>[] | undefined;
254
- } | {
255
- id: string;
256
- type: "number";
257
- path: string;
258
- title: readonly {
259
- locale: "en" | "ja" | "ko" | "zh";
260
- message: string;
261
- }[];
262
- labelStyle?: string | undefined;
263
- contentStyle?: string | undefined;
264
- required?: boolean | undefined;
265
- icon?: string | undefined;
266
- style?: string | undefined;
267
- initialValue?: string | undefined;
268
- min?: string | undefined;
269
- max?: string | undefined;
270
- step?: string | undefined;
271
- hidden?: string | undefined;
272
- disabled?: string | undefined;
273
- validation?: readonly Readonly<{
274
- expression: string;
275
- message: string;
276
- }>[] | undefined;
277
- } | {
278
- id: string;
279
- type: "select";
280
- path: string;
281
- title: readonly {
282
- locale: "en" | "ja" | "ko" | "zh";
283
- message: string;
284
- }[];
285
- options: string;
286
- label: string;
287
- value: string;
288
- key: string;
289
- labelStyle?: string | undefined;
290
- contentStyle?: string | undefined;
291
- required?: boolean | undefined;
292
- icon?: string | undefined;
293
- style?: string | undefined;
294
- initialValue?: string | undefined;
295
- hidden?: string | undefined;
296
- disabled?: string | undefined;
297
- validation?: readonly Readonly<{
298
- expression: string;
299
- message: string;
300
- }>[] | undefined;
301
- } | {
302
- id: string;
303
- type: "radio";
304
- path: string;
305
- title: readonly {
306
- locale: "en" | "ja" | "ko" | "zh";
307
- message: string;
308
- }[];
309
- options: string;
310
- label: string;
311
- value: string;
312
- key: string;
313
- labelStyle?: string | undefined;
314
- contentStyle?: string | undefined;
315
- required?: boolean | undefined;
316
- icon?: string | undefined;
317
- style?: string | undefined;
318
- initialValue?: string | undefined;
319
- hidden?: string | undefined;
320
- disabled?: string | undefined;
321
- validation?: readonly Readonly<{
322
- expression: string;
323
- message: string;
324
- }>[] | undefined;
325
- } | {
326
- id: string;
327
- type: "calendar";
328
- path: string;
329
- title: readonly {
330
- locale: "en" | "ja" | "ko" | "zh";
331
- message: string;
332
- }[];
333
- mode: "month" | "year" | "date";
334
- value: string;
335
- labelStyle?: string | undefined;
336
- contentStyle?: string | undefined;
337
- required?: boolean | undefined;
338
- icon?: string | undefined;
339
- style?: string | undefined;
340
- display?: string | undefined;
341
- initialValue?: string | undefined;
342
- disableDate?: string | undefined;
343
- hidden?: string | undefined;
344
- disabled?: string | undefined;
345
- validation?: readonly Readonly<{
346
- expression: string;
347
- message: string;
348
- }>[] | undefined;
349
- } | {
350
- id: string;
351
- type: "upload";
352
- path: string;
353
- title: readonly {
354
- locale: "en" | "ja" | "ko" | "zh";
355
- message: string;
356
- }[];
357
- labelStyle?: string | undefined;
358
- contentStyle?: string | undefined;
359
- required?: boolean | undefined;
360
- icon?: string | undefined;
361
- accept?: readonly string[] | undefined;
362
- description?: readonly {
363
- locale: "en" | "ja" | "ko" | "zh";
364
- message: string;
365
- }[] | undefined;
366
- maxCount?: string | undefined;
367
- template?: string | undefined;
368
- templateName?: 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 {
369
430
  locale: "en" | "ja" | "ko" | "zh";
370
431
  message: string;
371
432
  }[] | undefined;
372
433
  style?: string | undefined;
373
- initialValue?: string | undefined;
374
- hidden?: string | undefined;
375
- disabled?: string | undefined;
376
- validation?: readonly Readonly<{
377
- expression: string;
378
- message: string;
379
- }>[] | undefined;
380
- } | {
381
- id: string;
382
- type: "slot";
383
- style?: string | undefined;
384
- } | {
385
- id: string;
386
- type: "empty";
387
- style?: string | undefined;
388
- })[];
434
+ }>[];
389
435
  kind: string;
390
436
  compatibilityDate: string;
391
437
  orientation?: "vertical" | "horizontal" | "floating" | "contents" | undefined;