@ghentcdh/json-forms-vue 1.1.1 → 2.0.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/composables/useFormEvents.d.ts +4 -2
- package/composables/useHttpClient.d.ts +12 -0
- package/forms/FormComponent.properties.d.ts +16 -0
- package/forms/FormComponent.vue.d.ts +28 -1
- package/forms/errorMode.d.ts +1 -0
- package/forms/modal/FormModal.properties.d.ts +11 -0
- package/forms/modal/FormModal.vue.d.ts +83 -5
- package/forms/modal/FormModalService.d.ts +29 -1
- package/forms/renderers/array/ArrayRenderers.d.ts +1 -1
- package/forms/renderers/controls/{composable/UseControlBinding.d.ts → composables/useControlBinding.d.ts} +8 -1
- package/forms/renderers/controls/{composable/UseFetchOption.d.ts → composables/useFetchOption.d.ts} +4 -3
- package/forms/renderers/controls/composables/useReadonlyBinding.d.ts +135 -0
- package/forms/renderers/controls/{composable/UseSelectBinding.d.ts → composables/useSelectBinding.d.ts} +6 -0
- package/forms/renderers/controls/index.d.ts +2 -2
- package/forms/renderers/controls/readonly/ControlReadonlyRenderer.vue.d.ts +7 -0
- package/forms/renderers/controls/readonly/ReadonlyLabel.vue.d.ts +254 -0
- package/forms/renderers/controls/readonly/__tests__/formatDate.spec.d.ts +1 -0
- package/forms/renderers/controls/readonly/constants.d.ts +2 -0
- package/forms/renderers/controls/readonly/displayValue/BooleanValue.vue.d.ts +46 -0
- package/forms/renderers/controls/readonly/displayValue/DateValue.vue.d.ts +46 -0
- package/forms/renderers/controls/readonly/displayValue/LinkValue.vue.d.ts +46 -0
- package/forms/renderers/controls/readonly/displayValue/MarkdownValue.vue.d.ts +46 -0
- package/forms/renderers/controls/readonly/displayValue/NotSetValue.vue.d.ts +46 -0
- package/forms/renderers/controls/readonly/displayValue/NumberValue.vue.d.ts +46 -0
- package/forms/renderers/controls/readonly/displayValue/ObjectValue.vue.d.ts +46 -0
- package/forms/renderers/controls/readonly/displayValue/StringValue.vue.d.ts +46 -0
- package/forms/renderers/controls/readonly/displayValue/ViewDetailValue.vue.d.ts +46 -0
- package/forms/renderers/controls/readonly/displayValue/displayValue.properties.d.ts +23 -0
- package/forms/renderers/controls/readonly/displayValue/formatDate.d.ts +25 -0
- package/forms/renderers/controls/readonly/displayValue/index.d.ts +1 -0
- package/forms/renderers/{layout/LayoutRenders.d.ts → controls/readonly/index.d.ts} +4 -4
- package/forms/renderers/controls/readonly/useDisplayValue.d.ts +1 -0
- package/forms/renderers/controls/{composable/resource.d.ts → resource.d.ts} +88 -13
- package/forms/renderers/index.d.ts +42 -2
- package/forms/{renderes.d.ts → renderers/layout/LayoutRenderers.d.ts} +9 -8
- package/forms/renderers/layout/ReadOnlyLayoutRenderer.vue.d.ts +7 -0
- package/http-client.d.ts +14 -0
- package/index.d.ts +15 -8
- package/index.js +1702 -1077
- package/package.json +14 -22
- package/repository/{crud.repository.d.ts → CrudRepository.d.ts} +9 -7
- package/repository/index.d.ts +1 -1
- package/table/TableComponent.properties.d.ts +49 -0
- package/table/TableComponent.vue.d.ts +92 -0
- package/table/TableToolbar.vue.d.ts +36 -0
- package/table/cells/index.d.ts +10 -0
- package/table/filter/{table-filter.vue.d.ts → FilterRowInput.vue.d.ts} +11 -7
- package/table/filter/TableFilter.vue.d.ts +16 -0
- package/table/index.d.ts +6 -2
- package/testers/__tests__/jsonforms-testers.spec.d.ts +1 -0
- package/testers/__tests__/tester.spec.d.ts +1 -0
- package/testers/jsonforms-testers.d.ts +27 -0
- package/testers/tester.d.ts +16 -0
- package/view/modal/ViewModal.properties.d.ts +82 -0
- package/{forms/FormWithActions.vue.d.ts → view/modal/ViewModal.vue.d.ts} +150 -51
- package/form.store.d.ts +0 -8
- package/forms/FormWithActions.properties.d.ts +0 -52
- package/forms/FormWithTable.properties.d.ts +0 -65
- package/forms/FormWithTable.vue.d.ts +0 -90
- package/renderes/tester.d.ts +0 -11
- package/table/table.component.properties.d.ts +0 -34
- package/table/table.component.vue.d.ts +0 -60
- package/table/table.store.d.ts +0 -29
- /package/forms/renderers/controls/{composable/UseInput.d.ts → composables/useInput.d.ts} +0 -0
- /package/forms/{renderer-registry.d.ts → renderers/registry.d.ts} +0 -0
|
@@ -0,0 +1,254 @@
|
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<{}>;
|
|
3
|
+
slots: {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
refs: {};
|
|
7
|
+
rootEl: any;
|
|
8
|
+
};
|
|
9
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
11
|
+
id: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
default: undefined;
|
|
14
|
+
};
|
|
15
|
+
placeholder: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
default: undefined;
|
|
18
|
+
};
|
|
19
|
+
description: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: undefined;
|
|
22
|
+
};
|
|
23
|
+
errors: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: undefined;
|
|
26
|
+
};
|
|
27
|
+
label: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
default: undefined;
|
|
30
|
+
};
|
|
31
|
+
visible: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
required: {
|
|
36
|
+
type: BooleanConstructor;
|
|
37
|
+
default: boolean;
|
|
38
|
+
};
|
|
39
|
+
enabled: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
default: boolean;
|
|
42
|
+
};
|
|
43
|
+
isFocused: {
|
|
44
|
+
type: BooleanConstructor;
|
|
45
|
+
default: boolean;
|
|
46
|
+
};
|
|
47
|
+
isTouched: {
|
|
48
|
+
type: BooleanConstructor;
|
|
49
|
+
default: boolean;
|
|
50
|
+
};
|
|
51
|
+
hideLabel: {
|
|
52
|
+
type: BooleanConstructor;
|
|
53
|
+
default: boolean;
|
|
54
|
+
};
|
|
55
|
+
styles: {
|
|
56
|
+
type: import('vue').PropType<import('../../../../../../../ui/src/index.ts').MyStyles>;
|
|
57
|
+
default: () => {
|
|
58
|
+
readonly group: {
|
|
59
|
+
readonly root: "group";
|
|
60
|
+
readonly label: "text-primary text-lg font-bold";
|
|
61
|
+
readonly item: "group-item";
|
|
62
|
+
};
|
|
63
|
+
readonly verticalLayout: {
|
|
64
|
+
readonly root: "flex flex-col gap-x-2";
|
|
65
|
+
readonly item: "w-full";
|
|
66
|
+
};
|
|
67
|
+
readonly horizontalLayout: {
|
|
68
|
+
readonly root: "flex flex-row gap-x-2";
|
|
69
|
+
readonly item: "w-full";
|
|
70
|
+
};
|
|
71
|
+
readonly arrayList: {
|
|
72
|
+
readonly root: "fieldset";
|
|
73
|
+
readonly legend: "fieldset-legend text-xl capitalize";
|
|
74
|
+
};
|
|
75
|
+
readonly control: {
|
|
76
|
+
readonly root: "fieldset";
|
|
77
|
+
readonly wrapper: "fieldset";
|
|
78
|
+
readonly label: "fieldset-legend";
|
|
79
|
+
readonly error: "";
|
|
80
|
+
readonly input: "input";
|
|
81
|
+
readonly textarea: "textarea h-32";
|
|
82
|
+
readonly checkbox: "checkbox";
|
|
83
|
+
readonly select: "input pr-14";
|
|
84
|
+
readonly description: "form-control--description label text-xs text-gray-500";
|
|
85
|
+
};
|
|
86
|
+
readonly fixedArrayList: {
|
|
87
|
+
readonly root: "flex flex-row gap-x-2";
|
|
88
|
+
readonly item: "w-full";
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
width: {
|
|
93
|
+
type: StringConstructor;
|
|
94
|
+
default: string;
|
|
95
|
+
};
|
|
96
|
+
size: {
|
|
97
|
+
type: StringConstructor;
|
|
98
|
+
default: undefined;
|
|
99
|
+
};
|
|
100
|
+
hideErrors: {
|
|
101
|
+
type: BooleanConstructor;
|
|
102
|
+
default: boolean;
|
|
103
|
+
};
|
|
104
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
105
|
+
id: {
|
|
106
|
+
type: StringConstructor;
|
|
107
|
+
default: undefined;
|
|
108
|
+
};
|
|
109
|
+
placeholder: {
|
|
110
|
+
type: StringConstructor;
|
|
111
|
+
default: undefined;
|
|
112
|
+
};
|
|
113
|
+
description: {
|
|
114
|
+
type: StringConstructor;
|
|
115
|
+
default: undefined;
|
|
116
|
+
};
|
|
117
|
+
errors: {
|
|
118
|
+
type: StringConstructor;
|
|
119
|
+
default: undefined;
|
|
120
|
+
};
|
|
121
|
+
label: {
|
|
122
|
+
type: StringConstructor;
|
|
123
|
+
default: undefined;
|
|
124
|
+
};
|
|
125
|
+
visible: {
|
|
126
|
+
type: BooleanConstructor;
|
|
127
|
+
default: boolean;
|
|
128
|
+
};
|
|
129
|
+
required: {
|
|
130
|
+
type: BooleanConstructor;
|
|
131
|
+
default: boolean;
|
|
132
|
+
};
|
|
133
|
+
enabled: {
|
|
134
|
+
type: BooleanConstructor;
|
|
135
|
+
default: boolean;
|
|
136
|
+
};
|
|
137
|
+
isFocused: {
|
|
138
|
+
type: BooleanConstructor;
|
|
139
|
+
default: boolean;
|
|
140
|
+
};
|
|
141
|
+
isTouched: {
|
|
142
|
+
type: BooleanConstructor;
|
|
143
|
+
default: boolean;
|
|
144
|
+
};
|
|
145
|
+
hideLabel: {
|
|
146
|
+
type: BooleanConstructor;
|
|
147
|
+
default: boolean;
|
|
148
|
+
};
|
|
149
|
+
styles: {
|
|
150
|
+
type: import('vue').PropType<import('../../../../../../../ui/src/index.ts').MyStyles>;
|
|
151
|
+
default: () => {
|
|
152
|
+
readonly group: {
|
|
153
|
+
readonly root: "group";
|
|
154
|
+
readonly label: "text-primary text-lg font-bold";
|
|
155
|
+
readonly item: "group-item";
|
|
156
|
+
};
|
|
157
|
+
readonly verticalLayout: {
|
|
158
|
+
readonly root: "flex flex-col gap-x-2";
|
|
159
|
+
readonly item: "w-full";
|
|
160
|
+
};
|
|
161
|
+
readonly horizontalLayout: {
|
|
162
|
+
readonly root: "flex flex-row gap-x-2";
|
|
163
|
+
readonly item: "w-full";
|
|
164
|
+
};
|
|
165
|
+
readonly arrayList: {
|
|
166
|
+
readonly root: "fieldset";
|
|
167
|
+
readonly legend: "fieldset-legend text-xl capitalize";
|
|
168
|
+
};
|
|
169
|
+
readonly control: {
|
|
170
|
+
readonly root: "fieldset";
|
|
171
|
+
readonly wrapper: "fieldset";
|
|
172
|
+
readonly label: "fieldset-legend";
|
|
173
|
+
readonly error: "";
|
|
174
|
+
readonly input: "input";
|
|
175
|
+
readonly textarea: "textarea h-32";
|
|
176
|
+
readonly checkbox: "checkbox";
|
|
177
|
+
readonly select: "input pr-14";
|
|
178
|
+
readonly description: "form-control--description label text-xs text-gray-500";
|
|
179
|
+
};
|
|
180
|
+
readonly fixedArrayList: {
|
|
181
|
+
readonly root: "flex flex-row gap-x-2";
|
|
182
|
+
readonly item: "w-full";
|
|
183
|
+
};
|
|
184
|
+
};
|
|
185
|
+
};
|
|
186
|
+
width: {
|
|
187
|
+
type: StringConstructor;
|
|
188
|
+
default: string;
|
|
189
|
+
};
|
|
190
|
+
size: {
|
|
191
|
+
type: StringConstructor;
|
|
192
|
+
default: undefined;
|
|
193
|
+
};
|
|
194
|
+
hideErrors: {
|
|
195
|
+
type: BooleanConstructor;
|
|
196
|
+
default: boolean;
|
|
197
|
+
};
|
|
198
|
+
}>> & Readonly<{}>, {
|
|
199
|
+
size: string;
|
|
200
|
+
label: string;
|
|
201
|
+
required: boolean;
|
|
202
|
+
id: string;
|
|
203
|
+
placeholder: string;
|
|
204
|
+
width: string;
|
|
205
|
+
styles: {
|
|
206
|
+
readonly group: {
|
|
207
|
+
readonly root: "group";
|
|
208
|
+
readonly label: "text-primary text-lg font-bold";
|
|
209
|
+
readonly item: "group-item";
|
|
210
|
+
};
|
|
211
|
+
readonly verticalLayout: {
|
|
212
|
+
readonly root: "flex flex-col gap-x-2";
|
|
213
|
+
readonly item: "w-full";
|
|
214
|
+
};
|
|
215
|
+
readonly horizontalLayout: {
|
|
216
|
+
readonly root: "flex flex-row gap-x-2";
|
|
217
|
+
readonly item: "w-full";
|
|
218
|
+
};
|
|
219
|
+
readonly arrayList: {
|
|
220
|
+
readonly root: "fieldset";
|
|
221
|
+
readonly legend: "fieldset-legend text-xl capitalize";
|
|
222
|
+
};
|
|
223
|
+
readonly control: {
|
|
224
|
+
readonly root: "fieldset";
|
|
225
|
+
readonly wrapper: "fieldset";
|
|
226
|
+
readonly label: "fieldset-legend";
|
|
227
|
+
readonly error: "";
|
|
228
|
+
readonly input: "input";
|
|
229
|
+
readonly textarea: "textarea h-32";
|
|
230
|
+
readonly checkbox: "checkbox";
|
|
231
|
+
readonly select: "input pr-14";
|
|
232
|
+
readonly description: "form-control--description label text-xs text-gray-500";
|
|
233
|
+
};
|
|
234
|
+
readonly fixedArrayList: {
|
|
235
|
+
readonly root: "flex flex-row gap-x-2";
|
|
236
|
+
readonly item: "w-full";
|
|
237
|
+
};
|
|
238
|
+
};
|
|
239
|
+
hideLabel: boolean;
|
|
240
|
+
visible: boolean;
|
|
241
|
+
errors: string;
|
|
242
|
+
isTouched: boolean;
|
|
243
|
+
description: string;
|
|
244
|
+
enabled: boolean;
|
|
245
|
+
isFocused: boolean;
|
|
246
|
+
hideErrors: boolean;
|
|
247
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
248
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
249
|
+
export default _default;
|
|
250
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
251
|
+
new (): {
|
|
252
|
+
$slots: S;
|
|
253
|
+
};
|
|
254
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
direction: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
path: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
displayValue: {
|
|
11
|
+
type: import('vue').PropType<unknown>;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
options: {
|
|
15
|
+
type: ObjectConstructor;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
value: {
|
|
19
|
+
type: import('vue').PropType<unknown>;
|
|
20
|
+
required: true;
|
|
21
|
+
};
|
|
22
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
23
|
+
direction: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
path: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
required: true;
|
|
30
|
+
};
|
|
31
|
+
displayValue: {
|
|
32
|
+
type: import('vue').PropType<unknown>;
|
|
33
|
+
required: true;
|
|
34
|
+
};
|
|
35
|
+
options: {
|
|
36
|
+
type: ObjectConstructor;
|
|
37
|
+
required: true;
|
|
38
|
+
};
|
|
39
|
+
value: {
|
|
40
|
+
type: import('vue').PropType<unknown>;
|
|
41
|
+
required: true;
|
|
42
|
+
};
|
|
43
|
+
}>> & Readonly<{}>, {
|
|
44
|
+
direction: string;
|
|
45
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
46
|
+
export default _default;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
direction: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
path: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
displayValue: {
|
|
11
|
+
type: import('vue').PropType<unknown>;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
options: {
|
|
15
|
+
type: ObjectConstructor;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
value: {
|
|
19
|
+
type: import('vue').PropType<unknown>;
|
|
20
|
+
required: true;
|
|
21
|
+
};
|
|
22
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
23
|
+
direction: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
path: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
required: true;
|
|
30
|
+
};
|
|
31
|
+
displayValue: {
|
|
32
|
+
type: import('vue').PropType<unknown>;
|
|
33
|
+
required: true;
|
|
34
|
+
};
|
|
35
|
+
options: {
|
|
36
|
+
type: ObjectConstructor;
|
|
37
|
+
required: true;
|
|
38
|
+
};
|
|
39
|
+
value: {
|
|
40
|
+
type: import('vue').PropType<unknown>;
|
|
41
|
+
required: true;
|
|
42
|
+
};
|
|
43
|
+
}>> & Readonly<{}>, {
|
|
44
|
+
direction: string;
|
|
45
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLParagraphElement>;
|
|
46
|
+
export default _default;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
direction: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
path: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
displayValue: {
|
|
11
|
+
type: import('vue').PropType<unknown>;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
options: {
|
|
15
|
+
type: ObjectConstructor;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
value: {
|
|
19
|
+
type: import('vue').PropType<unknown>;
|
|
20
|
+
required: true;
|
|
21
|
+
};
|
|
22
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
23
|
+
direction: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
path: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
required: true;
|
|
30
|
+
};
|
|
31
|
+
displayValue: {
|
|
32
|
+
type: import('vue').PropType<unknown>;
|
|
33
|
+
required: true;
|
|
34
|
+
};
|
|
35
|
+
options: {
|
|
36
|
+
type: ObjectConstructor;
|
|
37
|
+
required: true;
|
|
38
|
+
};
|
|
39
|
+
value: {
|
|
40
|
+
type: import('vue').PropType<unknown>;
|
|
41
|
+
required: true;
|
|
42
|
+
};
|
|
43
|
+
}>> & Readonly<{}>, {
|
|
44
|
+
direction: string;
|
|
45
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLAnchorElement>;
|
|
46
|
+
export default _default;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
direction: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
path: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
displayValue: {
|
|
11
|
+
type: import('vue').PropType<unknown>;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
options: {
|
|
15
|
+
type: ObjectConstructor;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
value: {
|
|
19
|
+
type: import('vue').PropType<unknown>;
|
|
20
|
+
required: true;
|
|
21
|
+
};
|
|
22
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
23
|
+
direction: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
path: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
required: true;
|
|
30
|
+
};
|
|
31
|
+
displayValue: {
|
|
32
|
+
type: import('vue').PropType<unknown>;
|
|
33
|
+
required: true;
|
|
34
|
+
};
|
|
35
|
+
options: {
|
|
36
|
+
type: ObjectConstructor;
|
|
37
|
+
required: true;
|
|
38
|
+
};
|
|
39
|
+
value: {
|
|
40
|
+
type: import('vue').PropType<unknown>;
|
|
41
|
+
required: true;
|
|
42
|
+
};
|
|
43
|
+
}>> & Readonly<{}>, {
|
|
44
|
+
direction: string;
|
|
45
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
46
|
+
export default _default;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
direction: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
path: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
displayValue: {
|
|
11
|
+
type: import('vue').PropType<unknown>;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
options: {
|
|
15
|
+
type: ObjectConstructor;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
value: {
|
|
19
|
+
type: import('vue').PropType<unknown>;
|
|
20
|
+
required: true;
|
|
21
|
+
};
|
|
22
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
23
|
+
direction: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
path: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
required: true;
|
|
30
|
+
};
|
|
31
|
+
displayValue: {
|
|
32
|
+
type: import('vue').PropType<unknown>;
|
|
33
|
+
required: true;
|
|
34
|
+
};
|
|
35
|
+
options: {
|
|
36
|
+
type: ObjectConstructor;
|
|
37
|
+
required: true;
|
|
38
|
+
};
|
|
39
|
+
value: {
|
|
40
|
+
type: import('vue').PropType<unknown>;
|
|
41
|
+
required: true;
|
|
42
|
+
};
|
|
43
|
+
}>> & Readonly<{}>, {
|
|
44
|
+
direction: string;
|
|
45
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLParagraphElement>;
|
|
46
|
+
export default _default;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
direction: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
path: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
displayValue: {
|
|
11
|
+
type: import('vue').PropType<unknown>;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
options: {
|
|
15
|
+
type: ObjectConstructor;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
value: {
|
|
19
|
+
type: import('vue').PropType<unknown>;
|
|
20
|
+
required: true;
|
|
21
|
+
};
|
|
22
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
23
|
+
direction: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
path: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
required: true;
|
|
30
|
+
};
|
|
31
|
+
displayValue: {
|
|
32
|
+
type: import('vue').PropType<unknown>;
|
|
33
|
+
required: true;
|
|
34
|
+
};
|
|
35
|
+
options: {
|
|
36
|
+
type: ObjectConstructor;
|
|
37
|
+
required: true;
|
|
38
|
+
};
|
|
39
|
+
value: {
|
|
40
|
+
type: import('vue').PropType<unknown>;
|
|
41
|
+
required: true;
|
|
42
|
+
};
|
|
43
|
+
}>> & Readonly<{}>, {
|
|
44
|
+
direction: string;
|
|
45
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
46
|
+
export default _default;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
direction: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
path: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
displayValue: {
|
|
11
|
+
type: import('vue').PropType<unknown>;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
options: {
|
|
15
|
+
type: ObjectConstructor;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
value: {
|
|
19
|
+
type: import('vue').PropType<unknown>;
|
|
20
|
+
required: true;
|
|
21
|
+
};
|
|
22
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
23
|
+
direction: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
path: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
required: true;
|
|
30
|
+
};
|
|
31
|
+
displayValue: {
|
|
32
|
+
type: import('vue').PropType<unknown>;
|
|
33
|
+
required: true;
|
|
34
|
+
};
|
|
35
|
+
options: {
|
|
36
|
+
type: ObjectConstructor;
|
|
37
|
+
required: true;
|
|
38
|
+
};
|
|
39
|
+
value: {
|
|
40
|
+
type: import('vue').PropType<unknown>;
|
|
41
|
+
required: true;
|
|
42
|
+
};
|
|
43
|
+
}>> & Readonly<{}>, {
|
|
44
|
+
direction: string;
|
|
45
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLPreElement>;
|
|
46
|
+
export default _default;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
direction: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
path: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
displayValue: {
|
|
11
|
+
type: import('vue').PropType<unknown>;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
options: {
|
|
15
|
+
type: ObjectConstructor;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
value: {
|
|
19
|
+
type: import('vue').PropType<unknown>;
|
|
20
|
+
required: true;
|
|
21
|
+
};
|
|
22
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
23
|
+
direction: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
path: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
required: true;
|
|
30
|
+
};
|
|
31
|
+
displayValue: {
|
|
32
|
+
type: import('vue').PropType<unknown>;
|
|
33
|
+
required: true;
|
|
34
|
+
};
|
|
35
|
+
options: {
|
|
36
|
+
type: ObjectConstructor;
|
|
37
|
+
required: true;
|
|
38
|
+
};
|
|
39
|
+
value: {
|
|
40
|
+
type: import('vue').PropType<unknown>;
|
|
41
|
+
required: true;
|
|
42
|
+
};
|
|
43
|
+
}>> & Readonly<{}>, {
|
|
44
|
+
direction: string;
|
|
45
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
46
|
+
export default _default;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
direction: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
path: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
displayValue: {
|
|
11
|
+
type: import('vue').PropType<unknown>;
|
|
12
|
+
required: true;
|
|
13
|
+
};
|
|
14
|
+
options: {
|
|
15
|
+
type: ObjectConstructor;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
value: {
|
|
19
|
+
type: import('vue').PropType<unknown>;
|
|
20
|
+
required: true;
|
|
21
|
+
};
|
|
22
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
23
|
+
direction: {
|
|
24
|
+
type: StringConstructor;
|
|
25
|
+
default: string;
|
|
26
|
+
};
|
|
27
|
+
path: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
required: true;
|
|
30
|
+
};
|
|
31
|
+
displayValue: {
|
|
32
|
+
type: import('vue').PropType<unknown>;
|
|
33
|
+
required: true;
|
|
34
|
+
};
|
|
35
|
+
options: {
|
|
36
|
+
type: ObjectConstructor;
|
|
37
|
+
required: true;
|
|
38
|
+
};
|
|
39
|
+
value: {
|
|
40
|
+
type: import('vue').PropType<unknown>;
|
|
41
|
+
required: true;
|
|
42
|
+
};
|
|
43
|
+
}>> & Readonly<{}>, {
|
|
44
|
+
direction: string;
|
|
45
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
46
|
+
export default _default;
|