@shwfed/nuxt 0.9.2 → 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 +21 -3
- package/dist/runtime/components/fields.vue +1 -0
- package/dist/runtime/components/fields.vue.d.ts +21 -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 +39 -2
- package/dist/runtime/components/ui/fields/Fields.vue +29 -4
- package/dist/runtime/components/ui/fields/Fields.vue.d.ts +39 -2
- package/dist/runtime/components/ui/fields/schema.d.ts +28 -2
- package/dist/runtime/components/ui/fields/schema.js +12 -1
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.d.vue.ts +16 -0
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue +609 -145
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue.d.ts +16 -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,6 +86,10 @@ 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;
|
|
87
95
|
style?: string | undefined;
|
|
@@ -90,6 +98,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
90
98
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
91
99
|
onConfirm?: ((args_0: Readonly<{
|
|
92
100
|
fields: readonly ({
|
|
101
|
+
id: string;
|
|
93
102
|
type: "string";
|
|
94
103
|
path: string;
|
|
95
104
|
title: readonly {
|
|
@@ -107,6 +116,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
107
116
|
message: string;
|
|
108
117
|
}>[] | undefined;
|
|
109
118
|
} | {
|
|
119
|
+
id: string;
|
|
110
120
|
type: "number";
|
|
111
121
|
path: string;
|
|
112
122
|
title: readonly {
|
|
@@ -125,6 +135,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
125
135
|
message: string;
|
|
126
136
|
}>[] | undefined;
|
|
127
137
|
} | {
|
|
138
|
+
id: string;
|
|
128
139
|
type: "select";
|
|
129
140
|
path: string;
|
|
130
141
|
title: readonly {
|
|
@@ -144,6 +155,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
144
155
|
message: string;
|
|
145
156
|
}>[] | undefined;
|
|
146
157
|
} | {
|
|
158
|
+
id: string;
|
|
147
159
|
type: "calendar";
|
|
148
160
|
path: string;
|
|
149
161
|
title: readonly {
|
|
@@ -162,6 +174,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
162
174
|
expression: string;
|
|
163
175
|
message: string;
|
|
164
176
|
}>[] | undefined;
|
|
177
|
+
} | {
|
|
178
|
+
id: string;
|
|
179
|
+
type: "slot";
|
|
180
|
+
style?: string | undefined;
|
|
165
181
|
})[];
|
|
166
182
|
orientation?: "vertical" | "horizontal" | "floating" | undefined;
|
|
167
183
|
style?: string | undefined;
|