@shwfed/nuxt 0.11.30 → 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 +271 -13
- 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
|
@@ -17,6 +17,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
17
17
|
locale: "en" | "ja" | "ko" | "zh";
|
|
18
18
|
message: string;
|
|
19
19
|
}[];
|
|
20
|
+
labelStyle?: string | undefined;
|
|
21
|
+
contentStyle?: string | undefined;
|
|
20
22
|
required?: boolean | undefined;
|
|
21
23
|
icon?: string | undefined;
|
|
22
24
|
style?: string | undefined;
|
|
@@ -37,6 +39,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
37
39
|
locale: "en" | "ja" | "ko" | "zh";
|
|
38
40
|
message: string;
|
|
39
41
|
}[];
|
|
42
|
+
labelStyle?: string | undefined;
|
|
43
|
+
contentStyle?: string | undefined;
|
|
40
44
|
required?: boolean | undefined;
|
|
41
45
|
icon?: string | undefined;
|
|
42
46
|
style?: string | undefined;
|
|
@@ -57,6 +61,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
57
61
|
locale: "en" | "ja" | "ko" | "zh";
|
|
58
62
|
message: string;
|
|
59
63
|
}[];
|
|
64
|
+
labelStyle?: string | undefined;
|
|
65
|
+
contentStyle?: string | undefined;
|
|
60
66
|
required?: boolean | undefined;
|
|
61
67
|
icon?: string | undefined;
|
|
62
68
|
style?: string | undefined;
|
|
@@ -82,6 +88,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
82
88
|
label: string;
|
|
83
89
|
value: string;
|
|
84
90
|
key: string;
|
|
91
|
+
labelStyle?: string | undefined;
|
|
92
|
+
contentStyle?: string | undefined;
|
|
85
93
|
required?: boolean | undefined;
|
|
86
94
|
icon?: string | undefined;
|
|
87
95
|
style?: string | undefined;
|
|
@@ -102,6 +110,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
102
110
|
}[];
|
|
103
111
|
mode: "month" | "year" | "date";
|
|
104
112
|
value: string;
|
|
113
|
+
labelStyle?: string | undefined;
|
|
114
|
+
contentStyle?: string | undefined;
|
|
105
115
|
required?: boolean | undefined;
|
|
106
116
|
icon?: string | undefined;
|
|
107
117
|
style?: string | undefined;
|
|
@@ -114,6 +124,32 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
114
124
|
expression: string;
|
|
115
125
|
message: string;
|
|
116
126
|
}>[] | undefined;
|
|
127
|
+
} | {
|
|
128
|
+
id: string;
|
|
129
|
+
type: "upload";
|
|
130
|
+
path: string;
|
|
131
|
+
title: readonly {
|
|
132
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
133
|
+
message: string;
|
|
134
|
+
}[];
|
|
135
|
+
labelStyle?: string | undefined;
|
|
136
|
+
contentStyle?: string | undefined;
|
|
137
|
+
required?: boolean | undefined;
|
|
138
|
+
icon?: string | undefined;
|
|
139
|
+
accept?: readonly string[] | undefined;
|
|
140
|
+
description?: readonly {
|
|
141
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
142
|
+
message: string;
|
|
143
|
+
}[] | undefined;
|
|
144
|
+
maxCount?: string | undefined;
|
|
145
|
+
style?: string | undefined;
|
|
146
|
+
initialValue?: string | undefined;
|
|
147
|
+
hidden?: string | undefined;
|
|
148
|
+
disabled?: string | undefined;
|
|
149
|
+
validation?: readonly Readonly<{
|
|
150
|
+
expression: string;
|
|
151
|
+
message: string;
|
|
152
|
+
}>[] | undefined;
|
|
117
153
|
} | {
|
|
118
154
|
id: string;
|
|
119
155
|
type: "slot";
|
|
@@ -125,7 +161,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
125
161
|
})[];
|
|
126
162
|
kind: string;
|
|
127
163
|
compatibilityDate: string;
|
|
128
|
-
orientation?: "vertical" | "horizontal" | "floating" | undefined;
|
|
164
|
+
orientation?: "vertical" | "horizontal" | "floating" | "contents" | undefined;
|
|
165
|
+
bordered?: boolean | undefined;
|
|
129
166
|
style?: string | undefined;
|
|
130
167
|
}>) => any;
|
|
131
168
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
@@ -139,6 +176,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
139
176
|
locale: "en" | "ja" | "ko" | "zh";
|
|
140
177
|
message: string;
|
|
141
178
|
}[];
|
|
179
|
+
labelStyle?: string | undefined;
|
|
180
|
+
contentStyle?: string | undefined;
|
|
142
181
|
required?: boolean | undefined;
|
|
143
182
|
icon?: string | undefined;
|
|
144
183
|
style?: string | undefined;
|
|
@@ -159,6 +198,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
159
198
|
locale: "en" | "ja" | "ko" | "zh";
|
|
160
199
|
message: string;
|
|
161
200
|
}[];
|
|
201
|
+
labelStyle?: string | undefined;
|
|
202
|
+
contentStyle?: string | undefined;
|
|
162
203
|
required?: boolean | undefined;
|
|
163
204
|
icon?: string | undefined;
|
|
164
205
|
style?: string | undefined;
|
|
@@ -179,6 +220,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
179
220
|
locale: "en" | "ja" | "ko" | "zh";
|
|
180
221
|
message: string;
|
|
181
222
|
}[];
|
|
223
|
+
labelStyle?: string | undefined;
|
|
224
|
+
contentStyle?: string | undefined;
|
|
182
225
|
required?: boolean | undefined;
|
|
183
226
|
icon?: string | undefined;
|
|
184
227
|
style?: string | undefined;
|
|
@@ -204,6 +247,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
204
247
|
label: string;
|
|
205
248
|
value: string;
|
|
206
249
|
key: string;
|
|
250
|
+
labelStyle?: string | undefined;
|
|
251
|
+
contentStyle?: string | undefined;
|
|
207
252
|
required?: boolean | undefined;
|
|
208
253
|
icon?: string | undefined;
|
|
209
254
|
style?: string | undefined;
|
|
@@ -224,6 +269,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
224
269
|
}[];
|
|
225
270
|
mode: "month" | "year" | "date";
|
|
226
271
|
value: string;
|
|
272
|
+
labelStyle?: string | undefined;
|
|
273
|
+
contentStyle?: string | undefined;
|
|
227
274
|
required?: boolean | undefined;
|
|
228
275
|
icon?: string | undefined;
|
|
229
276
|
style?: string | undefined;
|
|
@@ -236,6 +283,32 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
236
283
|
expression: string;
|
|
237
284
|
message: string;
|
|
238
285
|
}>[] | undefined;
|
|
286
|
+
} | {
|
|
287
|
+
id: string;
|
|
288
|
+
type: "upload";
|
|
289
|
+
path: string;
|
|
290
|
+
title: readonly {
|
|
291
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
292
|
+
message: string;
|
|
293
|
+
}[];
|
|
294
|
+
labelStyle?: string | undefined;
|
|
295
|
+
contentStyle?: string | undefined;
|
|
296
|
+
required?: boolean | undefined;
|
|
297
|
+
icon?: string | undefined;
|
|
298
|
+
accept?: readonly string[] | undefined;
|
|
299
|
+
description?: readonly {
|
|
300
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
301
|
+
message: string;
|
|
302
|
+
}[] | undefined;
|
|
303
|
+
maxCount?: string | undefined;
|
|
304
|
+
style?: string | undefined;
|
|
305
|
+
initialValue?: string | undefined;
|
|
306
|
+
hidden?: string | undefined;
|
|
307
|
+
disabled?: string | undefined;
|
|
308
|
+
validation?: readonly Readonly<{
|
|
309
|
+
expression: string;
|
|
310
|
+
message: string;
|
|
311
|
+
}>[] | undefined;
|
|
239
312
|
} | {
|
|
240
313
|
id: string;
|
|
241
314
|
type: "slot";
|
|
@@ -247,7 +320,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
247
320
|
})[];
|
|
248
321
|
kind: string;
|
|
249
322
|
compatibilityDate: string;
|
|
250
|
-
orientation?: "vertical" | "horizontal" | "floating" | undefined;
|
|
323
|
+
orientation?: "vertical" | "horizontal" | "floating" | "contents" | undefined;
|
|
324
|
+
bordered?: boolean | undefined;
|
|
251
325
|
style?: string | undefined;
|
|
252
326
|
}>) => any) | undefined;
|
|
253
327
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|