@shwfed/nuxt 0.9.2 → 0.10.1
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 +75 -3
- package/dist/runtime/components/fields.vue +2 -0
- package/dist/runtime/components/fields.vue.d.ts +75 -3
- package/dist/runtime/components/ui/field/FieldError.vue +1 -1
- package/dist/runtime/components/ui/field/index.js +1 -1
- package/dist/runtime/components/ui/fields/Fields.d.vue.ts +147 -2
- package/dist/runtime/components/ui/fields/Fields.vue +107 -9
- package/dist/runtime/components/ui/fields/Fields.vue.d.ts +147 -2
- package/dist/runtime/components/ui/fields/schema.d.ts +127 -2
- package/dist/runtime/components/ui/fields/schema.js +37 -1
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.d.vue.ts +70 -0
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue +692 -151
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue.d.ts +70 -0
- package/dist/runtime/components/ui/input-group/index.js +2 -2
- package/package.json +1 -1
|
@@ -10,12 +10,14 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
10
10
|
"update:open": (value: boolean) => any;
|
|
11
11
|
confirm: (args_0: Readonly<{
|
|
12
12
|
fields: readonly ({
|
|
13
|
+
id: string;
|
|
13
14
|
type: "string";
|
|
14
15
|
path: string;
|
|
15
16
|
title: readonly {
|
|
16
17
|
locale: "zh" | "ja" | "en" | "ko";
|
|
17
18
|
message: string;
|
|
18
19
|
}[];
|
|
20
|
+
required?: boolean | undefined;
|
|
19
21
|
icon?: string | undefined;
|
|
20
22
|
style?: string | undefined;
|
|
21
23
|
discardEmptyString?: boolean | undefined;
|
|
@@ -27,12 +29,33 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
27
29
|
message: string;
|
|
28
30
|
}>[] | undefined;
|
|
29
31
|
} | {
|
|
32
|
+
id: string;
|
|
33
|
+
type: "textarea";
|
|
34
|
+
path: string;
|
|
35
|
+
title: readonly {
|
|
36
|
+
locale: "zh" | "ja" | "en" | "ko";
|
|
37
|
+
message: string;
|
|
38
|
+
}[];
|
|
39
|
+
required?: boolean | undefined;
|
|
40
|
+
icon?: string | undefined;
|
|
41
|
+
style?: string | undefined;
|
|
42
|
+
discardEmptyString?: boolean | undefined;
|
|
43
|
+
maxLength?: string | undefined;
|
|
44
|
+
hidden?: string | undefined;
|
|
45
|
+
disabled?: string | undefined;
|
|
46
|
+
validation?: readonly Readonly<{
|
|
47
|
+
expression: string;
|
|
48
|
+
message: string;
|
|
49
|
+
}>[] | undefined;
|
|
50
|
+
} | {
|
|
51
|
+
id: string;
|
|
30
52
|
type: "number";
|
|
31
53
|
path: string;
|
|
32
54
|
title: readonly {
|
|
33
55
|
locale: "zh" | "ja" | "en" | "ko";
|
|
34
56
|
message: string;
|
|
35
57
|
}[];
|
|
58
|
+
required?: boolean | undefined;
|
|
36
59
|
icon?: string | undefined;
|
|
37
60
|
style?: string | undefined;
|
|
38
61
|
min?: string | undefined;
|
|
@@ -45,6 +68,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
45
68
|
message: string;
|
|
46
69
|
}>[] | undefined;
|
|
47
70
|
} | {
|
|
71
|
+
id: string;
|
|
48
72
|
type: "select";
|
|
49
73
|
path: string;
|
|
50
74
|
title: readonly {
|
|
@@ -55,6 +79,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
55
79
|
label: string;
|
|
56
80
|
value: string;
|
|
57
81
|
key: string;
|
|
82
|
+
required?: boolean | undefined;
|
|
58
83
|
icon?: string | undefined;
|
|
59
84
|
style?: string | undefined;
|
|
60
85
|
hidden?: string | undefined;
|
|
@@ -64,6 +89,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
64
89
|
message: string;
|
|
65
90
|
}>[] | undefined;
|
|
66
91
|
} | {
|
|
92
|
+
id: string;
|
|
67
93
|
type: "calendar";
|
|
68
94
|
path: string;
|
|
69
95
|
title: readonly {
|
|
@@ -72,6 +98,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
72
98
|
}[];
|
|
73
99
|
mode: "date" | "month" | "year";
|
|
74
100
|
value: string;
|
|
101
|
+
required?: boolean | undefined;
|
|
75
102
|
icon?: string | undefined;
|
|
76
103
|
style?: string | undefined;
|
|
77
104
|
display?: string | undefined;
|
|
@@ -82,6 +109,14 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
82
109
|
expression: string;
|
|
83
110
|
message: string;
|
|
84
111
|
}>[] | undefined;
|
|
112
|
+
} | {
|
|
113
|
+
id: string;
|
|
114
|
+
type: "slot";
|
|
115
|
+
style?: string | undefined;
|
|
116
|
+
} | {
|
|
117
|
+
id: string;
|
|
118
|
+
type: "empty";
|
|
119
|
+
style?: string | undefined;
|
|
85
120
|
})[];
|
|
86
121
|
orientation?: "vertical" | "horizontal" | "floating" | undefined;
|
|
87
122
|
style?: string | undefined;
|
|
@@ -90,12 +125,14 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
90
125
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
91
126
|
onConfirm?: ((args_0: Readonly<{
|
|
92
127
|
fields: readonly ({
|
|
128
|
+
id: string;
|
|
93
129
|
type: "string";
|
|
94
130
|
path: string;
|
|
95
131
|
title: readonly {
|
|
96
132
|
locale: "zh" | "ja" | "en" | "ko";
|
|
97
133
|
message: string;
|
|
98
134
|
}[];
|
|
135
|
+
required?: boolean | undefined;
|
|
99
136
|
icon?: string | undefined;
|
|
100
137
|
style?: string | undefined;
|
|
101
138
|
discardEmptyString?: boolean | undefined;
|
|
@@ -107,12 +144,33 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
107
144
|
message: string;
|
|
108
145
|
}>[] | undefined;
|
|
109
146
|
} | {
|
|
147
|
+
id: string;
|
|
148
|
+
type: "textarea";
|
|
149
|
+
path: string;
|
|
150
|
+
title: readonly {
|
|
151
|
+
locale: "zh" | "ja" | "en" | "ko";
|
|
152
|
+
message: string;
|
|
153
|
+
}[];
|
|
154
|
+
required?: boolean | undefined;
|
|
155
|
+
icon?: string | undefined;
|
|
156
|
+
style?: string | undefined;
|
|
157
|
+
discardEmptyString?: boolean | undefined;
|
|
158
|
+
maxLength?: string | undefined;
|
|
159
|
+
hidden?: string | undefined;
|
|
160
|
+
disabled?: string | undefined;
|
|
161
|
+
validation?: readonly Readonly<{
|
|
162
|
+
expression: string;
|
|
163
|
+
message: string;
|
|
164
|
+
}>[] | undefined;
|
|
165
|
+
} | {
|
|
166
|
+
id: string;
|
|
110
167
|
type: "number";
|
|
111
168
|
path: string;
|
|
112
169
|
title: readonly {
|
|
113
170
|
locale: "zh" | "ja" | "en" | "ko";
|
|
114
171
|
message: string;
|
|
115
172
|
}[];
|
|
173
|
+
required?: boolean | undefined;
|
|
116
174
|
icon?: string | undefined;
|
|
117
175
|
style?: string | undefined;
|
|
118
176
|
min?: string | undefined;
|
|
@@ -125,6 +183,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
125
183
|
message: string;
|
|
126
184
|
}>[] | undefined;
|
|
127
185
|
} | {
|
|
186
|
+
id: string;
|
|
128
187
|
type: "select";
|
|
129
188
|
path: string;
|
|
130
189
|
title: readonly {
|
|
@@ -135,6 +194,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
135
194
|
label: string;
|
|
136
195
|
value: string;
|
|
137
196
|
key: string;
|
|
197
|
+
required?: boolean | undefined;
|
|
138
198
|
icon?: string | undefined;
|
|
139
199
|
style?: string | undefined;
|
|
140
200
|
hidden?: string | undefined;
|
|
@@ -144,6 +204,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
144
204
|
message: string;
|
|
145
205
|
}>[] | undefined;
|
|
146
206
|
} | {
|
|
207
|
+
id: string;
|
|
147
208
|
type: "calendar";
|
|
148
209
|
path: string;
|
|
149
210
|
title: readonly {
|
|
@@ -152,6 +213,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
152
213
|
}[];
|
|
153
214
|
mode: "date" | "month" | "year";
|
|
154
215
|
value: string;
|
|
216
|
+
required?: boolean | undefined;
|
|
155
217
|
icon?: string | undefined;
|
|
156
218
|
style?: string | undefined;
|
|
157
219
|
display?: string | undefined;
|
|
@@ -162,6 +224,14 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
162
224
|
expression: string;
|
|
163
225
|
message: string;
|
|
164
226
|
}>[] | undefined;
|
|
227
|
+
} | {
|
|
228
|
+
id: string;
|
|
229
|
+
type: "slot";
|
|
230
|
+
style?: string | undefined;
|
|
231
|
+
} | {
|
|
232
|
+
id: string;
|
|
233
|
+
type: "empty";
|
|
234
|
+
style?: string | undefined;
|
|
165
235
|
})[];
|
|
166
236
|
orientation?: "vertical" | "horizontal" | "floating" | undefined;
|
|
167
237
|
style?: string | undefined;
|
|
@@ -15,8 +15,8 @@ export const inputGroupAddonVariants = cva(
|
|
|
15
15
|
align: {
|
|
16
16
|
"inline-start": "order-first pl-3 has-[>button]:ml-[-0.45rem] has-[>kbd]:ml-[-0.35rem]",
|
|
17
17
|
"inline-end": "order-last pr-3 has-[>button]:mr-[-0.45rem] has-[>kbd]:mr-[-0.35rem]",
|
|
18
|
-
"block-start": "order-first w-full justify-start px-3 pt-3 [.border-b]:pb-3 group-has-[>input]/input-group:pt-2.5",
|
|
19
|
-
"block-end": "order-last w-full justify-
|
|
18
|
+
"block-start": "order-first w-full justify-start px-3 pt-3 [.border-b]:pb-3 group-has-[>input]/input-group:pt-2.5 group-has-[>textarea]/input-group:pt-2.5",
|
|
19
|
+
"block-end": "order-last w-full justify-end px-3 pb-3 [.border-t]:pt-3 group-has-[>input]/input-group:pb-2.5 group-has-[>textarea]/input-group:pb-2.5"
|
|
20
20
|
}
|
|
21
21
|
},
|
|
22
22
|
defaultVariants: {
|