@shwfed/nuxt 0.9.1 → 0.10.0
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 +23 -3
- package/dist/runtime/components/fields.vue +1 -0
- package/dist/runtime/components/fields.vue.d.ts +23 -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 +43 -2
- package/dist/runtime/components/ui/fields/Fields.vue +51 -11
- package/dist/runtime/components/ui/fields/Fields.vue.d.ts +43 -2
- package/dist/runtime/components/ui/fields/schema.d.ts +30 -2
- package/dist/runtime/components/ui/fields/schema.js +16 -1
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.d.vue.ts +18 -0
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue +667 -151
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue.d.ts +18 -0
- package/package.json +1 -1
|
@@ -10,6 +10,7 @@ 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 {
|
|
@@ -27,6 +28,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
27
28
|
message: string;
|
|
28
29
|
}>[] | undefined;
|
|
29
30
|
} | {
|
|
31
|
+
id: string;
|
|
30
32
|
type: "number";
|
|
31
33
|
path: string;
|
|
32
34
|
title: readonly {
|
|
@@ -45,6 +47,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
45
47
|
message: string;
|
|
46
48
|
}>[] | undefined;
|
|
47
49
|
} | {
|
|
50
|
+
id: string;
|
|
48
51
|
type: "select";
|
|
49
52
|
path: string;
|
|
50
53
|
title: readonly {
|
|
@@ -64,6 +67,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
64
67
|
message: string;
|
|
65
68
|
}>[] | undefined;
|
|
66
69
|
} | {
|
|
70
|
+
id: string;
|
|
67
71
|
type: "calendar";
|
|
68
72
|
path: string;
|
|
69
73
|
title: readonly {
|
|
@@ -82,13 +86,19 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
82
86
|
expression: string;
|
|
83
87
|
message: string;
|
|
84
88
|
}>[] | undefined;
|
|
89
|
+
} | {
|
|
90
|
+
id: string;
|
|
91
|
+
type: "slot";
|
|
92
|
+
style?: string | undefined;
|
|
85
93
|
})[];
|
|
86
94
|
orientation?: "vertical" | "horizontal" | "floating" | undefined;
|
|
95
|
+
style?: string | undefined;
|
|
87
96
|
}>) => any;
|
|
88
97
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
89
98
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
90
99
|
onConfirm?: ((args_0: Readonly<{
|
|
91
100
|
fields: readonly ({
|
|
101
|
+
id: string;
|
|
92
102
|
type: "string";
|
|
93
103
|
path: string;
|
|
94
104
|
title: readonly {
|
|
@@ -106,6 +116,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
106
116
|
message: string;
|
|
107
117
|
}>[] | undefined;
|
|
108
118
|
} | {
|
|
119
|
+
id: string;
|
|
109
120
|
type: "number";
|
|
110
121
|
path: string;
|
|
111
122
|
title: readonly {
|
|
@@ -124,6 +135,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
124
135
|
message: string;
|
|
125
136
|
}>[] | undefined;
|
|
126
137
|
} | {
|
|
138
|
+
id: string;
|
|
127
139
|
type: "select";
|
|
128
140
|
path: string;
|
|
129
141
|
title: readonly {
|
|
@@ -143,6 +155,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
143
155
|
message: string;
|
|
144
156
|
}>[] | undefined;
|
|
145
157
|
} | {
|
|
158
|
+
id: string;
|
|
146
159
|
type: "calendar";
|
|
147
160
|
path: string;
|
|
148
161
|
title: readonly {
|
|
@@ -161,8 +174,13 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
161
174
|
expression: string;
|
|
162
175
|
message: string;
|
|
163
176
|
}>[] | undefined;
|
|
177
|
+
} | {
|
|
178
|
+
id: string;
|
|
179
|
+
type: "slot";
|
|
180
|
+
style?: string | undefined;
|
|
164
181
|
})[];
|
|
165
182
|
orientation?: "vertical" | "horizontal" | "floating" | undefined;
|
|
183
|
+
style?: string | undefined;
|
|
166
184
|
}>) => any) | undefined;
|
|
167
185
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
168
186
|
declare const _default: typeof __VLS_export;
|