@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.
- package/dist/module.json +1 -1
- package/dist/runtime/components/fields.d.vue.ts +396 -350
- package/dist/runtime/components/fields.vue +2 -1
- package/dist/runtime/components/fields.vue.d.ts +396 -350
- package/dist/runtime/components/ui/fields/Fields.d.vue.ts +838 -358
- package/dist/runtime/components/ui/fields/Fields.vue +520 -435
- package/dist/runtime/components/ui/fields/Fields.vue.d.ts +838 -358
- package/dist/runtime/components/ui/fields/schema.d.ts +3283 -30
- package/dist/runtime/components/ui/fields/schema.js +85 -9
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.d.vue.ts +394 -348
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue +734 -172
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue.d.ts +394 -348
- package/dist/runtime/components/ui/table/Table.vue +1 -0
- 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
|
-
|
|
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";
|
|
@@ -186,9 +203,209 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
186
203
|
id: string;
|
|
187
204
|
type: "empty";
|
|
188
205
|
style?: string | undefined;
|
|
189
|
-
})[];
|
|
190
|
-
|
|
191
|
-
|
|
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;
|
|
192
409
|
orientation?: "vertical" | "horizontal" | "floating" | "contents" | undefined;
|
|
193
410
|
bordered?: boolean | undefined;
|
|
194
411
|
style?: string | undefined;
|
|
@@ -200,185 +417,208 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
200
417
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
201
418
|
"update:modelValue": (value: Record<string, unknown>) => any;
|
|
202
419
|
"update:config": (args_0: Readonly<{
|
|
203
|
-
|
|
204
|
-
id: string;
|
|
205
|
-
type: "string";
|
|
206
|
-
path: string;
|
|
207
|
-
title: readonly {
|
|
208
|
-
locale: "en" | "ja" | "ko" | "zh";
|
|
209
|
-
message: string;
|
|
210
|
-
}[];
|
|
211
|
-
labelStyle?: string | undefined;
|
|
212
|
-
contentStyle?: string | undefined;
|
|
213
|
-
required?: boolean | undefined;
|
|
214
|
-
icon?: string | undefined;
|
|
215
|
-
style?: string | undefined;
|
|
216
|
-
discardEmptyString?: boolean | undefined;
|
|
217
|
-
initialValue?: string | undefined;
|
|
218
|
-
maxLength?: string | undefined;
|
|
219
|
-
hidden?: string | undefined;
|
|
220
|
-
disabled?: string | undefined;
|
|
221
|
-
validation?: readonly Readonly<{
|
|
222
|
-
expression: string;
|
|
223
|
-
message: string;
|
|
224
|
-
}>[] | undefined;
|
|
225
|
-
} | {
|
|
226
|
-
id: string;
|
|
227
|
-
type: "textarea";
|
|
228
|
-
path: string;
|
|
229
|
-
title: readonly {
|
|
230
|
-
locale: "en" | "ja" | "ko" | "zh";
|
|
231
|
-
message: string;
|
|
232
|
-
}[];
|
|
233
|
-
labelStyle?: string | undefined;
|
|
234
|
-
contentStyle?: string | undefined;
|
|
235
|
-
required?: boolean | undefined;
|
|
236
|
-
icon?: string | undefined;
|
|
237
|
-
style?: string | undefined;
|
|
238
|
-
discardEmptyString?: boolean | undefined;
|
|
239
|
-
initialValue?: string | undefined;
|
|
240
|
-
maxLength?: string | undefined;
|
|
241
|
-
hidden?: string | undefined;
|
|
242
|
-
disabled?: string | undefined;
|
|
243
|
-
validation?: readonly Readonly<{
|
|
244
|
-
expression: string;
|
|
245
|
-
message: string;
|
|
246
|
-
}>[] | undefined;
|
|
247
|
-
} | {
|
|
248
|
-
id: string;
|
|
249
|
-
type: "number";
|
|
250
|
-
path: string;
|
|
251
|
-
title: readonly {
|
|
252
|
-
locale: "en" | "ja" | "ko" | "zh";
|
|
253
|
-
message: string;
|
|
254
|
-
}[];
|
|
255
|
-
labelStyle?: string | undefined;
|
|
256
|
-
contentStyle?: string | undefined;
|
|
257
|
-
required?: boolean | undefined;
|
|
258
|
-
icon?: string | undefined;
|
|
259
|
-
style?: string | undefined;
|
|
260
|
-
initialValue?: string | undefined;
|
|
261
|
-
min?: string | undefined;
|
|
262
|
-
max?: string | undefined;
|
|
263
|
-
step?: string | undefined;
|
|
264
|
-
hidden?: string | undefined;
|
|
265
|
-
disabled?: string | undefined;
|
|
266
|
-
validation?: readonly Readonly<{
|
|
267
|
-
expression: string;
|
|
268
|
-
message: string;
|
|
269
|
-
}>[] | undefined;
|
|
270
|
-
} | {
|
|
271
|
-
id: string;
|
|
272
|
-
type: "select";
|
|
273
|
-
path: string;
|
|
274
|
-
title: readonly {
|
|
275
|
-
locale: "en" | "ja" | "ko" | "zh";
|
|
276
|
-
message: string;
|
|
277
|
-
}[];
|
|
278
|
-
options: string;
|
|
279
|
-
label: string;
|
|
280
|
-
value: string;
|
|
281
|
-
key: string;
|
|
282
|
-
labelStyle?: string | undefined;
|
|
283
|
-
contentStyle?: string | undefined;
|
|
284
|
-
required?: boolean | undefined;
|
|
285
|
-
icon?: string | undefined;
|
|
286
|
-
style?: string | undefined;
|
|
287
|
-
initialValue?: string | undefined;
|
|
288
|
-
hidden?: string | undefined;
|
|
289
|
-
disabled?: string | undefined;
|
|
290
|
-
validation?: readonly Readonly<{
|
|
291
|
-
expression: string;
|
|
292
|
-
message: string;
|
|
293
|
-
}>[] | undefined;
|
|
294
|
-
} | {
|
|
420
|
+
groups: readonly Readonly<{
|
|
295
421
|
id: string;
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
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 {
|
|
362
617
|
locale: "en" | "ja" | "ko" | "zh";
|
|
363
618
|
message: string;
|
|
364
619
|
}[] | undefined;
|
|
365
620
|
style?: string | undefined;
|
|
366
|
-
|
|
367
|
-
hidden?: string | undefined;
|
|
368
|
-
disabled?: string | undefined;
|
|
369
|
-
validation?: readonly Readonly<{
|
|
370
|
-
expression: string;
|
|
371
|
-
message: string;
|
|
372
|
-
}>[] | undefined;
|
|
373
|
-
} | {
|
|
374
|
-
id: string;
|
|
375
|
-
type: "slot";
|
|
376
|
-
style?: string | undefined;
|
|
377
|
-
} | {
|
|
378
|
-
id: string;
|
|
379
|
-
type: "empty";
|
|
380
|
-
style?: string | undefined;
|
|
381
|
-
})[];
|
|
621
|
+
}>[];
|
|
382
622
|
kind: string;
|
|
383
623
|
compatibilityDate: string;
|
|
384
624
|
orientation?: "vertical" | "horizontal" | "floating" | "contents" | undefined;
|
|
@@ -388,7 +628,9 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
388
628
|
"initial-value-ready": () => any;
|
|
389
629
|
}, string, import("vue").PublicProps, Readonly<{
|
|
390
630
|
config: Effect.Effect<Readonly<{
|
|
391
|
-
|
|
631
|
+
kind: string;
|
|
632
|
+
compatibilityDate: string;
|
|
633
|
+
fields?: readonly ({
|
|
392
634
|
id: string;
|
|
393
635
|
type: "string";
|
|
394
636
|
path: string;
|
|
@@ -455,6 +697,21 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
455
697
|
expression: string;
|
|
456
698
|
message: string;
|
|
457
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;
|
|
458
715
|
} | {
|
|
459
716
|
id: string;
|
|
460
717
|
type: "select";
|
|
@@ -566,9 +823,209 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
566
823
|
id: string;
|
|
567
824
|
type: "empty";
|
|
568
825
|
style?: string | undefined;
|
|
569
|
-
})[];
|
|
570
|
-
|
|
571
|
-
|
|
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;
|
|
572
1029
|
orientation?: "vertical" | "horizontal" | "floating" | "contents" | undefined;
|
|
573
1030
|
bordered?: boolean | undefined;
|
|
574
1031
|
style?: string | undefined;
|
|
@@ -578,185 +1035,208 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
578
1035
|
}> & Readonly<{
|
|
579
1036
|
"onUpdate:modelValue"?: ((value: Record<string, unknown>) => any) | undefined;
|
|
580
1037
|
"onUpdate:config"?: ((args_0: Readonly<{
|
|
581
|
-
|
|
582
|
-
id: string;
|
|
583
|
-
type: "string";
|
|
584
|
-
path: string;
|
|
585
|
-
title: readonly {
|
|
586
|
-
locale: "en" | "ja" | "ko" | "zh";
|
|
587
|
-
message: string;
|
|
588
|
-
}[];
|
|
589
|
-
labelStyle?: string | undefined;
|
|
590
|
-
contentStyle?: string | undefined;
|
|
591
|
-
required?: boolean | undefined;
|
|
592
|
-
icon?: string | undefined;
|
|
593
|
-
style?: string | undefined;
|
|
594
|
-
discardEmptyString?: boolean | undefined;
|
|
595
|
-
initialValue?: string | undefined;
|
|
596
|
-
maxLength?: string | undefined;
|
|
597
|
-
hidden?: string | undefined;
|
|
598
|
-
disabled?: string | undefined;
|
|
599
|
-
validation?: readonly Readonly<{
|
|
600
|
-
expression: string;
|
|
601
|
-
message: string;
|
|
602
|
-
}>[] | undefined;
|
|
603
|
-
} | {
|
|
604
|
-
id: string;
|
|
605
|
-
type: "textarea";
|
|
606
|
-
path: string;
|
|
607
|
-
title: readonly {
|
|
608
|
-
locale: "en" | "ja" | "ko" | "zh";
|
|
609
|
-
message: string;
|
|
610
|
-
}[];
|
|
611
|
-
labelStyle?: string | undefined;
|
|
612
|
-
contentStyle?: string | undefined;
|
|
613
|
-
required?: boolean | undefined;
|
|
614
|
-
icon?: string | undefined;
|
|
615
|
-
style?: string | undefined;
|
|
616
|
-
discardEmptyString?: boolean | undefined;
|
|
617
|
-
initialValue?: string | undefined;
|
|
618
|
-
maxLength?: string | undefined;
|
|
619
|
-
hidden?: string | undefined;
|
|
620
|
-
disabled?: string | undefined;
|
|
621
|
-
validation?: readonly Readonly<{
|
|
622
|
-
expression: string;
|
|
623
|
-
message: string;
|
|
624
|
-
}>[] | undefined;
|
|
625
|
-
} | {
|
|
626
|
-
id: string;
|
|
627
|
-
type: "number";
|
|
628
|
-
path: string;
|
|
629
|
-
title: readonly {
|
|
630
|
-
locale: "en" | "ja" | "ko" | "zh";
|
|
631
|
-
message: string;
|
|
632
|
-
}[];
|
|
633
|
-
labelStyle?: string | undefined;
|
|
634
|
-
contentStyle?: string | undefined;
|
|
635
|
-
required?: boolean | undefined;
|
|
636
|
-
icon?: string | undefined;
|
|
637
|
-
style?: string | undefined;
|
|
638
|
-
initialValue?: string | undefined;
|
|
639
|
-
min?: string | undefined;
|
|
640
|
-
max?: string | undefined;
|
|
641
|
-
step?: string | undefined;
|
|
642
|
-
hidden?: string | undefined;
|
|
643
|
-
disabled?: string | undefined;
|
|
644
|
-
validation?: readonly Readonly<{
|
|
645
|
-
expression: string;
|
|
646
|
-
message: string;
|
|
647
|
-
}>[] | undefined;
|
|
648
|
-
} | {
|
|
649
|
-
id: string;
|
|
650
|
-
type: "select";
|
|
651
|
-
path: string;
|
|
652
|
-
title: readonly {
|
|
653
|
-
locale: "en" | "ja" | "ko" | "zh";
|
|
654
|
-
message: string;
|
|
655
|
-
}[];
|
|
656
|
-
options: string;
|
|
657
|
-
label: string;
|
|
658
|
-
value: string;
|
|
659
|
-
key: string;
|
|
660
|
-
labelStyle?: string | undefined;
|
|
661
|
-
contentStyle?: string | undefined;
|
|
662
|
-
required?: boolean | undefined;
|
|
663
|
-
icon?: string | undefined;
|
|
664
|
-
style?: string | undefined;
|
|
665
|
-
initialValue?: string | undefined;
|
|
666
|
-
hidden?: string | undefined;
|
|
667
|
-
disabled?: string | undefined;
|
|
668
|
-
validation?: readonly Readonly<{
|
|
669
|
-
expression: string;
|
|
670
|
-
message: string;
|
|
671
|
-
}>[] | undefined;
|
|
672
|
-
} | {
|
|
1038
|
+
groups: readonly Readonly<{
|
|
673
1039
|
id: string;
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
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 {
|
|
740
1235
|
locale: "en" | "ja" | "ko" | "zh";
|
|
741
1236
|
message: string;
|
|
742
1237
|
}[] | undefined;
|
|
743
1238
|
style?: string | undefined;
|
|
744
|
-
|
|
745
|
-
hidden?: string | undefined;
|
|
746
|
-
disabled?: string | undefined;
|
|
747
|
-
validation?: readonly Readonly<{
|
|
748
|
-
expression: string;
|
|
749
|
-
message: string;
|
|
750
|
-
}>[] | undefined;
|
|
751
|
-
} | {
|
|
752
|
-
id: string;
|
|
753
|
-
type: "slot";
|
|
754
|
-
style?: string | undefined;
|
|
755
|
-
} | {
|
|
756
|
-
id: string;
|
|
757
|
-
type: "empty";
|
|
758
|
-
style?: string | undefined;
|
|
759
|
-
})[];
|
|
1239
|
+
}>[];
|
|
760
1240
|
kind: string;
|
|
761
1241
|
compatibilityDate: string;
|
|
762
1242
|
orientation?: "vertical" | "horizontal" | "floating" | "contents" | undefined;
|