@shwfed/nuxt 0.10.0 → 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 +56 -2
- package/dist/runtime/components/fields.vue +1 -0
- package/dist/runtime/components/fields.vue.d.ts +56 -2
- package/dist/runtime/components/ui/fields/Fields.d.vue.ts +110 -2
- package/dist/runtime/components/ui/fields/Fields.vue +81 -8
- package/dist/runtime/components/ui/fields/Fields.vue.d.ts +110 -2
- package/dist/runtime/components/ui/fields/schema.d.ts +99 -0
- package/dist/runtime/components/ui/fields/schema.js +26 -1
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.d.vue.ts +54 -0
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue +110 -33
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue.d.ts +54 -0
- package/dist/runtime/components/ui/input-group/index.js +2 -2
- package/package.json +1 -1
|
@@ -17,6 +17,26 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
17
17
|
locale: "zh" | "ja" | "en" | "ko";
|
|
18
18
|
message: string;
|
|
19
19
|
}[];
|
|
20
|
+
required?: boolean | undefined;
|
|
21
|
+
icon?: string | undefined;
|
|
22
|
+
style?: string | undefined;
|
|
23
|
+
discardEmptyString?: boolean | undefined;
|
|
24
|
+
maxLength?: string | undefined;
|
|
25
|
+
hidden?: string | undefined;
|
|
26
|
+
disabled?: string | undefined;
|
|
27
|
+
validation?: readonly Readonly<{
|
|
28
|
+
expression: string;
|
|
29
|
+
message: string;
|
|
30
|
+
}>[] | undefined;
|
|
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;
|
|
20
40
|
icon?: string | undefined;
|
|
21
41
|
style?: string | undefined;
|
|
22
42
|
discardEmptyString?: boolean | undefined;
|
|
@@ -35,6 +55,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
35
55
|
locale: "zh" | "ja" | "en" | "ko";
|
|
36
56
|
message: string;
|
|
37
57
|
}[];
|
|
58
|
+
required?: boolean | undefined;
|
|
38
59
|
icon?: string | undefined;
|
|
39
60
|
style?: string | undefined;
|
|
40
61
|
min?: string | undefined;
|
|
@@ -58,6 +79,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
58
79
|
label: string;
|
|
59
80
|
value: string;
|
|
60
81
|
key: string;
|
|
82
|
+
required?: boolean | undefined;
|
|
61
83
|
icon?: string | undefined;
|
|
62
84
|
style?: string | undefined;
|
|
63
85
|
hidden?: string | undefined;
|
|
@@ -76,6 +98,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
76
98
|
}[];
|
|
77
99
|
mode: "date" | "month" | "year";
|
|
78
100
|
value: string;
|
|
101
|
+
required?: boolean | undefined;
|
|
79
102
|
icon?: string | undefined;
|
|
80
103
|
style?: string | undefined;
|
|
81
104
|
display?: string | undefined;
|
|
@@ -90,6 +113,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
90
113
|
id: string;
|
|
91
114
|
type: "slot";
|
|
92
115
|
style?: string | undefined;
|
|
116
|
+
} | {
|
|
117
|
+
id: string;
|
|
118
|
+
type: "empty";
|
|
119
|
+
style?: string | undefined;
|
|
93
120
|
})[];
|
|
94
121
|
orientation?: "vertical" | "horizontal" | "floating" | undefined;
|
|
95
122
|
style?: string | undefined;
|
|
@@ -105,6 +132,26 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
105
132
|
locale: "zh" | "ja" | "en" | "ko";
|
|
106
133
|
message: string;
|
|
107
134
|
}[];
|
|
135
|
+
required?: boolean | undefined;
|
|
136
|
+
icon?: string | undefined;
|
|
137
|
+
style?: string | undefined;
|
|
138
|
+
discardEmptyString?: boolean | undefined;
|
|
139
|
+
maxLength?: string | undefined;
|
|
140
|
+
hidden?: string | undefined;
|
|
141
|
+
disabled?: string | undefined;
|
|
142
|
+
validation?: readonly Readonly<{
|
|
143
|
+
expression: string;
|
|
144
|
+
message: string;
|
|
145
|
+
}>[] | undefined;
|
|
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;
|
|
108
155
|
icon?: string | undefined;
|
|
109
156
|
style?: string | undefined;
|
|
110
157
|
discardEmptyString?: boolean | undefined;
|
|
@@ -123,6 +170,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
123
170
|
locale: "zh" | "ja" | "en" | "ko";
|
|
124
171
|
message: string;
|
|
125
172
|
}[];
|
|
173
|
+
required?: boolean | undefined;
|
|
126
174
|
icon?: string | undefined;
|
|
127
175
|
style?: string | undefined;
|
|
128
176
|
min?: string | undefined;
|
|
@@ -146,6 +194,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
146
194
|
label: string;
|
|
147
195
|
value: string;
|
|
148
196
|
key: string;
|
|
197
|
+
required?: boolean | undefined;
|
|
149
198
|
icon?: string | undefined;
|
|
150
199
|
style?: string | undefined;
|
|
151
200
|
hidden?: string | undefined;
|
|
@@ -164,6 +213,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
164
213
|
}[];
|
|
165
214
|
mode: "date" | "month" | "year";
|
|
166
215
|
value: string;
|
|
216
|
+
required?: boolean | undefined;
|
|
167
217
|
icon?: string | undefined;
|
|
168
218
|
style?: string | undefined;
|
|
169
219
|
display?: string | undefined;
|
|
@@ -178,6 +228,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
178
228
|
id: string;
|
|
179
229
|
type: "slot";
|
|
180
230
|
style?: string | undefined;
|
|
231
|
+
} | {
|
|
232
|
+
id: string;
|
|
233
|
+
type: "empty";
|
|
234
|
+
style?: string | undefined;
|
|
181
235
|
})[];
|
|
182
236
|
orientation?: "vertical" | "horizontal" | "floating" | undefined;
|
|
183
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: {
|