@shwfed/nuxt 0.11.31 → 0.11.33
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 +126 -4
- package/dist/runtime/components/fields.vue +1 -0
- package/dist/runtime/components/fields.vue.d.ts +126 -4
- package/dist/runtime/components/ui/field/index.d.ts +1 -1
- package/dist/runtime/components/ui/field/index.js +6 -0
- package/dist/runtime/components/ui/fields/Fields.d.vue.ts +250 -6
- package/dist/runtime/components/ui/fields/Fields.vue +299 -12
- package/dist/runtime/components/ui/fields/Fields.vue.d.ts +250 -6
- package/dist/runtime/components/ui/fields/schema.d.ts +462 -0
- package/dist/runtime/components/ui/fields/schema.js +54 -7
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.d.vue.ts +124 -2
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue +340 -14
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue.d.ts +124 -2
- package/package.json +2 -1
|
@@ -1,7 +1,7 @@
|
|
|
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, ValidationRuleC, createFieldsConfig, validationC, } from './schema.js';
|
|
4
|
-
export type { EmptyField, Field, FieldsBody, FieldsBodyInput, FieldsConfig, FieldsConfigInput, SlotField, ValidationRule, } from './schema.js';
|
|
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';
|
|
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;
|
|
@@ -16,6 +16,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
16
16
|
locale: "en" | "ja" | "ko" | "zh";
|
|
17
17
|
message: string;
|
|
18
18
|
}[];
|
|
19
|
+
labelStyle?: string | undefined;
|
|
20
|
+
contentStyle?: string | undefined;
|
|
19
21
|
required?: boolean | undefined;
|
|
20
22
|
icon?: string | undefined;
|
|
21
23
|
style?: string | undefined;
|
|
@@ -36,6 +38,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
36
38
|
locale: "en" | "ja" | "ko" | "zh";
|
|
37
39
|
message: string;
|
|
38
40
|
}[];
|
|
41
|
+
labelStyle?: string | undefined;
|
|
42
|
+
contentStyle?: string | undefined;
|
|
39
43
|
required?: boolean | undefined;
|
|
40
44
|
icon?: string | undefined;
|
|
41
45
|
style?: string | undefined;
|
|
@@ -56,6 +60,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
56
60
|
locale: "en" | "ja" | "ko" | "zh";
|
|
57
61
|
message: string;
|
|
58
62
|
}[];
|
|
63
|
+
labelStyle?: string | undefined;
|
|
64
|
+
contentStyle?: string | undefined;
|
|
59
65
|
required?: boolean | undefined;
|
|
60
66
|
icon?: string | undefined;
|
|
61
67
|
style?: string | undefined;
|
|
@@ -81,6 +87,32 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
81
87
|
label: string;
|
|
82
88
|
value: string;
|
|
83
89
|
key: string;
|
|
90
|
+
labelStyle?: string | undefined;
|
|
91
|
+
contentStyle?: string | undefined;
|
|
92
|
+
required?: boolean | undefined;
|
|
93
|
+
icon?: string | undefined;
|
|
94
|
+
style?: string | undefined;
|
|
95
|
+
initialValue?: string | undefined;
|
|
96
|
+
hidden?: string | undefined;
|
|
97
|
+
disabled?: string | undefined;
|
|
98
|
+
validation?: readonly Readonly<{
|
|
99
|
+
expression: string;
|
|
100
|
+
message: string;
|
|
101
|
+
}>[] | undefined;
|
|
102
|
+
} | {
|
|
103
|
+
id: string;
|
|
104
|
+
type: "radio";
|
|
105
|
+
path: string;
|
|
106
|
+
title: readonly {
|
|
107
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
108
|
+
message: string;
|
|
109
|
+
}[];
|
|
110
|
+
options: string;
|
|
111
|
+
label: string;
|
|
112
|
+
value: string;
|
|
113
|
+
key: string;
|
|
114
|
+
labelStyle?: string | undefined;
|
|
115
|
+
contentStyle?: string | undefined;
|
|
84
116
|
required?: boolean | undefined;
|
|
85
117
|
icon?: string | undefined;
|
|
86
118
|
style?: string | undefined;
|
|
@@ -101,6 +133,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
101
133
|
}[];
|
|
102
134
|
mode: "month" | "year" | "date";
|
|
103
135
|
value: string;
|
|
136
|
+
labelStyle?: string | undefined;
|
|
137
|
+
contentStyle?: string | undefined;
|
|
104
138
|
required?: boolean | undefined;
|
|
105
139
|
icon?: string | undefined;
|
|
106
140
|
style?: string | undefined;
|
|
@@ -113,6 +147,32 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
113
147
|
expression: string;
|
|
114
148
|
message: string;
|
|
115
149
|
}>[] | undefined;
|
|
150
|
+
} | {
|
|
151
|
+
id: string;
|
|
152
|
+
type: "upload";
|
|
153
|
+
path: string;
|
|
154
|
+
title: readonly {
|
|
155
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
156
|
+
message: string;
|
|
157
|
+
}[];
|
|
158
|
+
labelStyle?: string | undefined;
|
|
159
|
+
contentStyle?: string | undefined;
|
|
160
|
+
required?: boolean | undefined;
|
|
161
|
+
icon?: string | undefined;
|
|
162
|
+
accept?: readonly string[] | undefined;
|
|
163
|
+
description?: readonly {
|
|
164
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
165
|
+
message: string;
|
|
166
|
+
}[] | undefined;
|
|
167
|
+
maxCount?: string | undefined;
|
|
168
|
+
style?: string | undefined;
|
|
169
|
+
initialValue?: string | undefined;
|
|
170
|
+
hidden?: string | undefined;
|
|
171
|
+
disabled?: string | undefined;
|
|
172
|
+
validation?: readonly Readonly<{
|
|
173
|
+
expression: string;
|
|
174
|
+
message: string;
|
|
175
|
+
}>[] | undefined;
|
|
116
176
|
} | {
|
|
117
177
|
id: string;
|
|
118
178
|
type: "slot";
|
|
@@ -124,7 +184,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
124
184
|
})[];
|
|
125
185
|
kind: string;
|
|
126
186
|
compatibilityDate: string;
|
|
127
|
-
orientation?: "vertical" | "horizontal" | "floating" | undefined;
|
|
187
|
+
orientation?: "vertical" | "horizontal" | "floating" | "contents" | undefined;
|
|
188
|
+
bordered?: boolean | undefined;
|
|
128
189
|
style?: string | undefined;
|
|
129
190
|
}> | undefined>;
|
|
130
191
|
} & {
|
|
@@ -142,6 +203,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
142
203
|
locale: "en" | "ja" | "ko" | "zh";
|
|
143
204
|
message: string;
|
|
144
205
|
}[];
|
|
206
|
+
labelStyle?: string | undefined;
|
|
207
|
+
contentStyle?: string | undefined;
|
|
145
208
|
required?: boolean | undefined;
|
|
146
209
|
icon?: string | undefined;
|
|
147
210
|
style?: string | undefined;
|
|
@@ -162,6 +225,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
162
225
|
locale: "en" | "ja" | "ko" | "zh";
|
|
163
226
|
message: string;
|
|
164
227
|
}[];
|
|
228
|
+
labelStyle?: string | undefined;
|
|
229
|
+
contentStyle?: string | undefined;
|
|
165
230
|
required?: boolean | undefined;
|
|
166
231
|
icon?: string | undefined;
|
|
167
232
|
style?: string | undefined;
|
|
@@ -182,6 +247,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
182
247
|
locale: "en" | "ja" | "ko" | "zh";
|
|
183
248
|
message: string;
|
|
184
249
|
}[];
|
|
250
|
+
labelStyle?: string | undefined;
|
|
251
|
+
contentStyle?: string | undefined;
|
|
185
252
|
required?: boolean | undefined;
|
|
186
253
|
icon?: string | undefined;
|
|
187
254
|
style?: string | undefined;
|
|
@@ -207,6 +274,32 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
207
274
|
label: string;
|
|
208
275
|
value: string;
|
|
209
276
|
key: string;
|
|
277
|
+
labelStyle?: string | undefined;
|
|
278
|
+
contentStyle?: string | undefined;
|
|
279
|
+
required?: boolean | undefined;
|
|
280
|
+
icon?: string | undefined;
|
|
281
|
+
style?: string | undefined;
|
|
282
|
+
initialValue?: string | undefined;
|
|
283
|
+
hidden?: string | undefined;
|
|
284
|
+
disabled?: string | undefined;
|
|
285
|
+
validation?: readonly Readonly<{
|
|
286
|
+
expression: string;
|
|
287
|
+
message: string;
|
|
288
|
+
}>[] | undefined;
|
|
289
|
+
} | {
|
|
290
|
+
id: string;
|
|
291
|
+
type: "radio";
|
|
292
|
+
path: string;
|
|
293
|
+
title: readonly {
|
|
294
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
295
|
+
message: string;
|
|
296
|
+
}[];
|
|
297
|
+
options: string;
|
|
298
|
+
label: string;
|
|
299
|
+
value: string;
|
|
300
|
+
key: string;
|
|
301
|
+
labelStyle?: string | undefined;
|
|
302
|
+
contentStyle?: string | undefined;
|
|
210
303
|
required?: boolean | undefined;
|
|
211
304
|
icon?: string | undefined;
|
|
212
305
|
style?: string | undefined;
|
|
@@ -227,6 +320,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
227
320
|
}[];
|
|
228
321
|
mode: "month" | "year" | "date";
|
|
229
322
|
value: string;
|
|
323
|
+
labelStyle?: string | undefined;
|
|
324
|
+
contentStyle?: string | undefined;
|
|
230
325
|
required?: boolean | undefined;
|
|
231
326
|
icon?: string | undefined;
|
|
232
327
|
style?: string | undefined;
|
|
@@ -239,6 +334,32 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
239
334
|
expression: string;
|
|
240
335
|
message: string;
|
|
241
336
|
}>[] | undefined;
|
|
337
|
+
} | {
|
|
338
|
+
id: string;
|
|
339
|
+
type: "upload";
|
|
340
|
+
path: string;
|
|
341
|
+
title: readonly {
|
|
342
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
343
|
+
message: string;
|
|
344
|
+
}[];
|
|
345
|
+
labelStyle?: string | undefined;
|
|
346
|
+
contentStyle?: string | undefined;
|
|
347
|
+
required?: boolean | undefined;
|
|
348
|
+
icon?: string | undefined;
|
|
349
|
+
accept?: readonly string[] | undefined;
|
|
350
|
+
description?: readonly {
|
|
351
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
352
|
+
message: string;
|
|
353
|
+
}[] | undefined;
|
|
354
|
+
maxCount?: string | undefined;
|
|
355
|
+
style?: string | undefined;
|
|
356
|
+
initialValue?: string | undefined;
|
|
357
|
+
hidden?: string | undefined;
|
|
358
|
+
disabled?: string | undefined;
|
|
359
|
+
validation?: readonly Readonly<{
|
|
360
|
+
expression: string;
|
|
361
|
+
message: string;
|
|
362
|
+
}>[] | undefined;
|
|
242
363
|
} | {
|
|
243
364
|
id: string;
|
|
244
365
|
type: "slot";
|
|
@@ -250,7 +371,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
250
371
|
})[];
|
|
251
372
|
kind: string;
|
|
252
373
|
compatibilityDate: string;
|
|
253
|
-
orientation?: "vertical" | "horizontal" | "floating" | undefined;
|
|
374
|
+
orientation?: "vertical" | "horizontal" | "floating" | "contents" | undefined;
|
|
375
|
+
bordered?: boolean | undefined;
|
|
254
376
|
style?: string | undefined;
|
|
255
377
|
}>) => any;
|
|
256
378
|
"initial-value-ready": () => any;
|
|
@@ -264,6 +386,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
264
386
|
locale: "en" | "ja" | "ko" | "zh";
|
|
265
387
|
message: string;
|
|
266
388
|
}[];
|
|
389
|
+
labelStyle?: string | undefined;
|
|
390
|
+
contentStyle?: string | undefined;
|
|
267
391
|
required?: boolean | undefined;
|
|
268
392
|
icon?: string | undefined;
|
|
269
393
|
style?: string | undefined;
|
|
@@ -284,6 +408,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
284
408
|
locale: "en" | "ja" | "ko" | "zh";
|
|
285
409
|
message: string;
|
|
286
410
|
}[];
|
|
411
|
+
labelStyle?: string | undefined;
|
|
412
|
+
contentStyle?: string | undefined;
|
|
287
413
|
required?: boolean | undefined;
|
|
288
414
|
icon?: string | undefined;
|
|
289
415
|
style?: string | undefined;
|
|
@@ -304,6 +430,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
304
430
|
locale: "en" | "ja" | "ko" | "zh";
|
|
305
431
|
message: string;
|
|
306
432
|
}[];
|
|
433
|
+
labelStyle?: string | undefined;
|
|
434
|
+
contentStyle?: string | undefined;
|
|
307
435
|
required?: boolean | undefined;
|
|
308
436
|
icon?: string | undefined;
|
|
309
437
|
style?: string | undefined;
|
|
@@ -329,6 +457,32 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
329
457
|
label: string;
|
|
330
458
|
value: string;
|
|
331
459
|
key: string;
|
|
460
|
+
labelStyle?: string | undefined;
|
|
461
|
+
contentStyle?: string | undefined;
|
|
462
|
+
required?: boolean | undefined;
|
|
463
|
+
icon?: string | undefined;
|
|
464
|
+
style?: string | undefined;
|
|
465
|
+
initialValue?: string | undefined;
|
|
466
|
+
hidden?: string | undefined;
|
|
467
|
+
disabled?: string | undefined;
|
|
468
|
+
validation?: readonly Readonly<{
|
|
469
|
+
expression: string;
|
|
470
|
+
message: string;
|
|
471
|
+
}>[] | undefined;
|
|
472
|
+
} | {
|
|
473
|
+
id: string;
|
|
474
|
+
type: "radio";
|
|
475
|
+
path: string;
|
|
476
|
+
title: readonly {
|
|
477
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
478
|
+
message: string;
|
|
479
|
+
}[];
|
|
480
|
+
options: string;
|
|
481
|
+
label: string;
|
|
482
|
+
value: string;
|
|
483
|
+
key: string;
|
|
484
|
+
labelStyle?: string | undefined;
|
|
485
|
+
contentStyle?: string | undefined;
|
|
332
486
|
required?: boolean | undefined;
|
|
333
487
|
icon?: string | undefined;
|
|
334
488
|
style?: string | undefined;
|
|
@@ -349,6 +503,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
349
503
|
}[];
|
|
350
504
|
mode: "month" | "year" | "date";
|
|
351
505
|
value: string;
|
|
506
|
+
labelStyle?: string | undefined;
|
|
507
|
+
contentStyle?: string | undefined;
|
|
352
508
|
required?: boolean | undefined;
|
|
353
509
|
icon?: string | undefined;
|
|
354
510
|
style?: string | undefined;
|
|
@@ -361,6 +517,32 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
361
517
|
expression: string;
|
|
362
518
|
message: string;
|
|
363
519
|
}>[] | undefined;
|
|
520
|
+
} | {
|
|
521
|
+
id: string;
|
|
522
|
+
type: "upload";
|
|
523
|
+
path: string;
|
|
524
|
+
title: readonly {
|
|
525
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
526
|
+
message: string;
|
|
527
|
+
}[];
|
|
528
|
+
labelStyle?: string | undefined;
|
|
529
|
+
contentStyle?: string | undefined;
|
|
530
|
+
required?: boolean | undefined;
|
|
531
|
+
icon?: string | undefined;
|
|
532
|
+
accept?: readonly string[] | undefined;
|
|
533
|
+
description?: readonly {
|
|
534
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
535
|
+
message: string;
|
|
536
|
+
}[] | undefined;
|
|
537
|
+
maxCount?: string | undefined;
|
|
538
|
+
style?: string | undefined;
|
|
539
|
+
initialValue?: string | undefined;
|
|
540
|
+
hidden?: string | undefined;
|
|
541
|
+
disabled?: string | undefined;
|
|
542
|
+
validation?: readonly Readonly<{
|
|
543
|
+
expression: string;
|
|
544
|
+
message: string;
|
|
545
|
+
}>[] | undefined;
|
|
364
546
|
} | {
|
|
365
547
|
id: string;
|
|
366
548
|
type: "slot";
|
|
@@ -372,7 +554,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
372
554
|
})[];
|
|
373
555
|
kind: string;
|
|
374
556
|
compatibilityDate: string;
|
|
375
|
-
orientation?: "vertical" | "horizontal" | "floating" | undefined;
|
|
557
|
+
orientation?: "vertical" | "horizontal" | "floating" | "contents" | undefined;
|
|
558
|
+
bordered?: boolean | undefined;
|
|
376
559
|
style?: string | undefined;
|
|
377
560
|
}> | undefined>;
|
|
378
561
|
} & {
|
|
@@ -388,6 +571,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
388
571
|
locale: "en" | "ja" | "ko" | "zh";
|
|
389
572
|
message: string;
|
|
390
573
|
}[];
|
|
574
|
+
labelStyle?: string | undefined;
|
|
575
|
+
contentStyle?: string | undefined;
|
|
391
576
|
required?: boolean | undefined;
|
|
392
577
|
icon?: string | undefined;
|
|
393
578
|
style?: string | undefined;
|
|
@@ -408,6 +593,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
408
593
|
locale: "en" | "ja" | "ko" | "zh";
|
|
409
594
|
message: string;
|
|
410
595
|
}[];
|
|
596
|
+
labelStyle?: string | undefined;
|
|
597
|
+
contentStyle?: string | undefined;
|
|
411
598
|
required?: boolean | undefined;
|
|
412
599
|
icon?: string | undefined;
|
|
413
600
|
style?: string | undefined;
|
|
@@ -428,6 +615,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
428
615
|
locale: "en" | "ja" | "ko" | "zh";
|
|
429
616
|
message: string;
|
|
430
617
|
}[];
|
|
618
|
+
labelStyle?: string | undefined;
|
|
619
|
+
contentStyle?: string | undefined;
|
|
431
620
|
required?: boolean | undefined;
|
|
432
621
|
icon?: string | undefined;
|
|
433
622
|
style?: string | undefined;
|
|
@@ -453,6 +642,32 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
453
642
|
label: string;
|
|
454
643
|
value: string;
|
|
455
644
|
key: string;
|
|
645
|
+
labelStyle?: string | undefined;
|
|
646
|
+
contentStyle?: string | undefined;
|
|
647
|
+
required?: boolean | undefined;
|
|
648
|
+
icon?: string | undefined;
|
|
649
|
+
style?: string | undefined;
|
|
650
|
+
initialValue?: string | undefined;
|
|
651
|
+
hidden?: string | undefined;
|
|
652
|
+
disabled?: string | undefined;
|
|
653
|
+
validation?: readonly Readonly<{
|
|
654
|
+
expression: string;
|
|
655
|
+
message: string;
|
|
656
|
+
}>[] | undefined;
|
|
657
|
+
} | {
|
|
658
|
+
id: string;
|
|
659
|
+
type: "radio";
|
|
660
|
+
path: string;
|
|
661
|
+
title: readonly {
|
|
662
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
663
|
+
message: string;
|
|
664
|
+
}[];
|
|
665
|
+
options: string;
|
|
666
|
+
label: string;
|
|
667
|
+
value: string;
|
|
668
|
+
key: string;
|
|
669
|
+
labelStyle?: string | undefined;
|
|
670
|
+
contentStyle?: string | undefined;
|
|
456
671
|
required?: boolean | undefined;
|
|
457
672
|
icon?: string | undefined;
|
|
458
673
|
style?: string | undefined;
|
|
@@ -473,6 +688,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
473
688
|
}[];
|
|
474
689
|
mode: "month" | "year" | "date";
|
|
475
690
|
value: string;
|
|
691
|
+
labelStyle?: string | undefined;
|
|
692
|
+
contentStyle?: string | undefined;
|
|
476
693
|
required?: boolean | undefined;
|
|
477
694
|
icon?: string | undefined;
|
|
478
695
|
style?: string | undefined;
|
|
@@ -485,6 +702,32 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
485
702
|
expression: string;
|
|
486
703
|
message: string;
|
|
487
704
|
}>[] | undefined;
|
|
705
|
+
} | {
|
|
706
|
+
id: string;
|
|
707
|
+
type: "upload";
|
|
708
|
+
path: string;
|
|
709
|
+
title: readonly {
|
|
710
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
711
|
+
message: string;
|
|
712
|
+
}[];
|
|
713
|
+
labelStyle?: string | undefined;
|
|
714
|
+
contentStyle?: string | undefined;
|
|
715
|
+
required?: boolean | undefined;
|
|
716
|
+
icon?: string | undefined;
|
|
717
|
+
accept?: readonly string[] | undefined;
|
|
718
|
+
description?: readonly {
|
|
719
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
720
|
+
message: string;
|
|
721
|
+
}[] | undefined;
|
|
722
|
+
maxCount?: string | undefined;
|
|
723
|
+
style?: string | undefined;
|
|
724
|
+
initialValue?: string | undefined;
|
|
725
|
+
hidden?: string | undefined;
|
|
726
|
+
disabled?: string | undefined;
|
|
727
|
+
validation?: readonly Readonly<{
|
|
728
|
+
expression: string;
|
|
729
|
+
message: string;
|
|
730
|
+
}>[] | undefined;
|
|
488
731
|
} | {
|
|
489
732
|
id: string;
|
|
490
733
|
type: "slot";
|
|
@@ -496,7 +739,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
496
739
|
})[];
|
|
497
740
|
kind: string;
|
|
498
741
|
compatibilityDate: string;
|
|
499
|
-
orientation?: "vertical" | "horizontal" | "floating" | undefined;
|
|
742
|
+
orientation?: "vertical" | "horizontal" | "floating" | "contents" | undefined;
|
|
743
|
+
bordered?: boolean | undefined;
|
|
500
744
|
style?: string | undefined;
|
|
501
745
|
}>) => any) | undefined;
|
|
502
746
|
"onInitial-value-ready"?: (() => any) | undefined;
|