@shwfed/nuxt 0.11.31 → 0.11.32
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 +78 -4
- package/dist/runtime/components/fields.vue +1 -0
- package/dist/runtime/components/fields.vue.d.ts +78 -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 +154 -6
- package/dist/runtime/components/ui/fields/Fields.vue +267 -12
- package/dist/runtime/components/ui/fields/Fields.vue.d.ts +154 -6
- package/dist/runtime/components/ui/fields/schema.d.ts +287 -0
- package/dist/runtime/components/ui/fields/schema.js +35 -7
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.d.vue.ts +76 -2
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue +320 -5
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue.d.ts +76 -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,8 @@ 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;
|
|
84
92
|
required?: boolean | undefined;
|
|
85
93
|
icon?: string | undefined;
|
|
86
94
|
style?: string | undefined;
|
|
@@ -101,6 +109,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
101
109
|
}[];
|
|
102
110
|
mode: "month" | "year" | "date";
|
|
103
111
|
value: string;
|
|
112
|
+
labelStyle?: string | undefined;
|
|
113
|
+
contentStyle?: string | undefined;
|
|
104
114
|
required?: boolean | undefined;
|
|
105
115
|
icon?: string | undefined;
|
|
106
116
|
style?: string | undefined;
|
|
@@ -113,6 +123,32 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
113
123
|
expression: string;
|
|
114
124
|
message: string;
|
|
115
125
|
}>[] | undefined;
|
|
126
|
+
} | {
|
|
127
|
+
id: string;
|
|
128
|
+
type: "upload";
|
|
129
|
+
path: string;
|
|
130
|
+
title: readonly {
|
|
131
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
132
|
+
message: string;
|
|
133
|
+
}[];
|
|
134
|
+
labelStyle?: string | undefined;
|
|
135
|
+
contentStyle?: string | undefined;
|
|
136
|
+
required?: boolean | undefined;
|
|
137
|
+
icon?: string | undefined;
|
|
138
|
+
accept?: readonly string[] | undefined;
|
|
139
|
+
description?: readonly {
|
|
140
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
141
|
+
message: string;
|
|
142
|
+
}[] | undefined;
|
|
143
|
+
maxCount?: string | undefined;
|
|
144
|
+
style?: string | undefined;
|
|
145
|
+
initialValue?: string | undefined;
|
|
146
|
+
hidden?: string | undefined;
|
|
147
|
+
disabled?: string | undefined;
|
|
148
|
+
validation?: readonly Readonly<{
|
|
149
|
+
expression: string;
|
|
150
|
+
message: string;
|
|
151
|
+
}>[] | undefined;
|
|
116
152
|
} | {
|
|
117
153
|
id: string;
|
|
118
154
|
type: "slot";
|
|
@@ -124,7 +160,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
124
160
|
})[];
|
|
125
161
|
kind: string;
|
|
126
162
|
compatibilityDate: string;
|
|
127
|
-
orientation?: "vertical" | "horizontal" | "floating" | undefined;
|
|
163
|
+
orientation?: "vertical" | "horizontal" | "floating" | "contents" | undefined;
|
|
164
|
+
bordered?: boolean | undefined;
|
|
128
165
|
style?: string | undefined;
|
|
129
166
|
}> | undefined>;
|
|
130
167
|
} & {
|
|
@@ -142,6 +179,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
142
179
|
locale: "en" | "ja" | "ko" | "zh";
|
|
143
180
|
message: string;
|
|
144
181
|
}[];
|
|
182
|
+
labelStyle?: string | undefined;
|
|
183
|
+
contentStyle?: string | undefined;
|
|
145
184
|
required?: boolean | undefined;
|
|
146
185
|
icon?: string | undefined;
|
|
147
186
|
style?: string | undefined;
|
|
@@ -162,6 +201,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
162
201
|
locale: "en" | "ja" | "ko" | "zh";
|
|
163
202
|
message: string;
|
|
164
203
|
}[];
|
|
204
|
+
labelStyle?: string | undefined;
|
|
205
|
+
contentStyle?: string | undefined;
|
|
165
206
|
required?: boolean | undefined;
|
|
166
207
|
icon?: string | undefined;
|
|
167
208
|
style?: string | undefined;
|
|
@@ -182,6 +223,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
182
223
|
locale: "en" | "ja" | "ko" | "zh";
|
|
183
224
|
message: string;
|
|
184
225
|
}[];
|
|
226
|
+
labelStyle?: string | undefined;
|
|
227
|
+
contentStyle?: string | undefined;
|
|
185
228
|
required?: boolean | undefined;
|
|
186
229
|
icon?: string | undefined;
|
|
187
230
|
style?: string | undefined;
|
|
@@ -207,6 +250,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
207
250
|
label: string;
|
|
208
251
|
value: string;
|
|
209
252
|
key: string;
|
|
253
|
+
labelStyle?: string | undefined;
|
|
254
|
+
contentStyle?: string | undefined;
|
|
210
255
|
required?: boolean | undefined;
|
|
211
256
|
icon?: string | undefined;
|
|
212
257
|
style?: string | undefined;
|
|
@@ -227,6 +272,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
227
272
|
}[];
|
|
228
273
|
mode: "month" | "year" | "date";
|
|
229
274
|
value: string;
|
|
275
|
+
labelStyle?: string | undefined;
|
|
276
|
+
contentStyle?: string | undefined;
|
|
230
277
|
required?: boolean | undefined;
|
|
231
278
|
icon?: string | undefined;
|
|
232
279
|
style?: string | undefined;
|
|
@@ -239,6 +286,32 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
239
286
|
expression: string;
|
|
240
287
|
message: string;
|
|
241
288
|
}>[] | undefined;
|
|
289
|
+
} | {
|
|
290
|
+
id: string;
|
|
291
|
+
type: "upload";
|
|
292
|
+
path: string;
|
|
293
|
+
title: readonly {
|
|
294
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
295
|
+
message: string;
|
|
296
|
+
}[];
|
|
297
|
+
labelStyle?: string | undefined;
|
|
298
|
+
contentStyle?: string | undefined;
|
|
299
|
+
required?: boolean | undefined;
|
|
300
|
+
icon?: string | undefined;
|
|
301
|
+
accept?: readonly string[] | undefined;
|
|
302
|
+
description?: readonly {
|
|
303
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
304
|
+
message: string;
|
|
305
|
+
}[] | undefined;
|
|
306
|
+
maxCount?: 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;
|
|
242
315
|
} | {
|
|
243
316
|
id: string;
|
|
244
317
|
type: "slot";
|
|
@@ -250,7 +323,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
250
323
|
})[];
|
|
251
324
|
kind: string;
|
|
252
325
|
compatibilityDate: string;
|
|
253
|
-
orientation?: "vertical" | "horizontal" | "floating" | undefined;
|
|
326
|
+
orientation?: "vertical" | "horizontal" | "floating" | "contents" | undefined;
|
|
327
|
+
bordered?: boolean | undefined;
|
|
254
328
|
style?: string | undefined;
|
|
255
329
|
}>) => any;
|
|
256
330
|
"initial-value-ready": () => any;
|
|
@@ -264,6 +338,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
264
338
|
locale: "en" | "ja" | "ko" | "zh";
|
|
265
339
|
message: string;
|
|
266
340
|
}[];
|
|
341
|
+
labelStyle?: string | undefined;
|
|
342
|
+
contentStyle?: string | undefined;
|
|
267
343
|
required?: boolean | undefined;
|
|
268
344
|
icon?: string | undefined;
|
|
269
345
|
style?: string | undefined;
|
|
@@ -284,6 +360,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
284
360
|
locale: "en" | "ja" | "ko" | "zh";
|
|
285
361
|
message: string;
|
|
286
362
|
}[];
|
|
363
|
+
labelStyle?: string | undefined;
|
|
364
|
+
contentStyle?: string | undefined;
|
|
287
365
|
required?: boolean | undefined;
|
|
288
366
|
icon?: string | undefined;
|
|
289
367
|
style?: string | undefined;
|
|
@@ -304,6 +382,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
304
382
|
locale: "en" | "ja" | "ko" | "zh";
|
|
305
383
|
message: string;
|
|
306
384
|
}[];
|
|
385
|
+
labelStyle?: string | undefined;
|
|
386
|
+
contentStyle?: string | undefined;
|
|
307
387
|
required?: boolean | undefined;
|
|
308
388
|
icon?: string | undefined;
|
|
309
389
|
style?: string | undefined;
|
|
@@ -329,6 +409,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
329
409
|
label: string;
|
|
330
410
|
value: string;
|
|
331
411
|
key: string;
|
|
412
|
+
labelStyle?: string | undefined;
|
|
413
|
+
contentStyle?: string | undefined;
|
|
332
414
|
required?: boolean | undefined;
|
|
333
415
|
icon?: string | undefined;
|
|
334
416
|
style?: string | undefined;
|
|
@@ -349,6 +431,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
349
431
|
}[];
|
|
350
432
|
mode: "month" | "year" | "date";
|
|
351
433
|
value: string;
|
|
434
|
+
labelStyle?: string | undefined;
|
|
435
|
+
contentStyle?: string | undefined;
|
|
352
436
|
required?: boolean | undefined;
|
|
353
437
|
icon?: string | undefined;
|
|
354
438
|
style?: string | undefined;
|
|
@@ -361,6 +445,32 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
361
445
|
expression: string;
|
|
362
446
|
message: string;
|
|
363
447
|
}>[] | undefined;
|
|
448
|
+
} | {
|
|
449
|
+
id: string;
|
|
450
|
+
type: "upload";
|
|
451
|
+
path: string;
|
|
452
|
+
title: readonly {
|
|
453
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
454
|
+
message: string;
|
|
455
|
+
}[];
|
|
456
|
+
labelStyle?: string | undefined;
|
|
457
|
+
contentStyle?: string | undefined;
|
|
458
|
+
required?: boolean | undefined;
|
|
459
|
+
icon?: string | undefined;
|
|
460
|
+
accept?: readonly string[] | undefined;
|
|
461
|
+
description?: readonly {
|
|
462
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
463
|
+
message: string;
|
|
464
|
+
}[] | undefined;
|
|
465
|
+
maxCount?: string | undefined;
|
|
466
|
+
style?: string | undefined;
|
|
467
|
+
initialValue?: string | undefined;
|
|
468
|
+
hidden?: string | undefined;
|
|
469
|
+
disabled?: string | undefined;
|
|
470
|
+
validation?: readonly Readonly<{
|
|
471
|
+
expression: string;
|
|
472
|
+
message: string;
|
|
473
|
+
}>[] | undefined;
|
|
364
474
|
} | {
|
|
365
475
|
id: string;
|
|
366
476
|
type: "slot";
|
|
@@ -372,7 +482,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
372
482
|
})[];
|
|
373
483
|
kind: string;
|
|
374
484
|
compatibilityDate: string;
|
|
375
|
-
orientation?: "vertical" | "horizontal" | "floating" | undefined;
|
|
485
|
+
orientation?: "vertical" | "horizontal" | "floating" | "contents" | undefined;
|
|
486
|
+
bordered?: boolean | undefined;
|
|
376
487
|
style?: string | undefined;
|
|
377
488
|
}> | undefined>;
|
|
378
489
|
} & {
|
|
@@ -388,6 +499,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
388
499
|
locale: "en" | "ja" | "ko" | "zh";
|
|
389
500
|
message: string;
|
|
390
501
|
}[];
|
|
502
|
+
labelStyle?: string | undefined;
|
|
503
|
+
contentStyle?: string | undefined;
|
|
391
504
|
required?: boolean | undefined;
|
|
392
505
|
icon?: string | undefined;
|
|
393
506
|
style?: string | undefined;
|
|
@@ -408,6 +521,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
408
521
|
locale: "en" | "ja" | "ko" | "zh";
|
|
409
522
|
message: string;
|
|
410
523
|
}[];
|
|
524
|
+
labelStyle?: string | undefined;
|
|
525
|
+
contentStyle?: string | undefined;
|
|
411
526
|
required?: boolean | undefined;
|
|
412
527
|
icon?: string | undefined;
|
|
413
528
|
style?: string | undefined;
|
|
@@ -428,6 +543,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
428
543
|
locale: "en" | "ja" | "ko" | "zh";
|
|
429
544
|
message: string;
|
|
430
545
|
}[];
|
|
546
|
+
labelStyle?: string | undefined;
|
|
547
|
+
contentStyle?: string | undefined;
|
|
431
548
|
required?: boolean | undefined;
|
|
432
549
|
icon?: string | undefined;
|
|
433
550
|
style?: string | undefined;
|
|
@@ -453,6 +570,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
453
570
|
label: string;
|
|
454
571
|
value: string;
|
|
455
572
|
key: string;
|
|
573
|
+
labelStyle?: string | undefined;
|
|
574
|
+
contentStyle?: string | undefined;
|
|
456
575
|
required?: boolean | undefined;
|
|
457
576
|
icon?: string | undefined;
|
|
458
577
|
style?: string | undefined;
|
|
@@ -473,6 +592,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
473
592
|
}[];
|
|
474
593
|
mode: "month" | "year" | "date";
|
|
475
594
|
value: string;
|
|
595
|
+
labelStyle?: string | undefined;
|
|
596
|
+
contentStyle?: string | undefined;
|
|
476
597
|
required?: boolean | undefined;
|
|
477
598
|
icon?: string | undefined;
|
|
478
599
|
style?: string | undefined;
|
|
@@ -485,6 +606,32 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
485
606
|
expression: string;
|
|
486
607
|
message: string;
|
|
487
608
|
}>[] | undefined;
|
|
609
|
+
} | {
|
|
610
|
+
id: string;
|
|
611
|
+
type: "upload";
|
|
612
|
+
path: string;
|
|
613
|
+
title: readonly {
|
|
614
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
615
|
+
message: string;
|
|
616
|
+
}[];
|
|
617
|
+
labelStyle?: string | undefined;
|
|
618
|
+
contentStyle?: string | undefined;
|
|
619
|
+
required?: boolean | undefined;
|
|
620
|
+
icon?: string | undefined;
|
|
621
|
+
accept?: readonly string[] | undefined;
|
|
622
|
+
description?: readonly {
|
|
623
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
624
|
+
message: string;
|
|
625
|
+
}[] | undefined;
|
|
626
|
+
maxCount?: string | undefined;
|
|
627
|
+
style?: string | undefined;
|
|
628
|
+
initialValue?: string | undefined;
|
|
629
|
+
hidden?: string | undefined;
|
|
630
|
+
disabled?: string | undefined;
|
|
631
|
+
validation?: readonly Readonly<{
|
|
632
|
+
expression: string;
|
|
633
|
+
message: string;
|
|
634
|
+
}>[] | undefined;
|
|
488
635
|
} | {
|
|
489
636
|
id: string;
|
|
490
637
|
type: "slot";
|
|
@@ -496,7 +643,8 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
|
|
|
496
643
|
})[];
|
|
497
644
|
kind: string;
|
|
498
645
|
compatibilityDate: string;
|
|
499
|
-
orientation?: "vertical" | "horizontal" | "floating" | undefined;
|
|
646
|
+
orientation?: "vertical" | "horizontal" | "floating" | "contents" | undefined;
|
|
647
|
+
bordered?: boolean | undefined;
|
|
500
648
|
style?: string | undefined;
|
|
501
649
|
}>) => any) | undefined;
|
|
502
650
|
"onInitial-value-ready"?: (() => any) | undefined;
|