@dpa-id-components/dpa-shared-components 8.10.0 → 8.10.4
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/README.md +2 -0
- package/dist/bookmark-4ff074d8.mjs +19 -0
- package/dist/bookmark-fill-731ae06c.mjs +19 -0
- package/dist/components/DpaEventItem/DpaEventItem.stories.d.ts +556 -391
- package/dist/components/DpaMediaItem/DpaMediaItem.stories.d.ts +99 -63
- package/dist/components/UiBadge/UiBadge.stories.d.ts +121 -83
- package/dist/components/UiButton/UiButton.stories.d.ts +128 -89
- package/dist/components/UiButtonGroup/UiButtonGroup.stories.d.ts +38 -8
- package/dist/components/UiCard/UiCard.stories.d.ts +38 -8
- package/dist/components/UiCheckBox/UiCheckBox.stories.d.ts +117 -79
- package/dist/components/UiChip/UiChip.stories.d.ts +74 -40
- package/dist/components/UiCollapseNavigation/UiCollapseNavigation.stories.d.ts +74 -40
- package/dist/components/UiDatePicker/UiDatePicker.stories.d.ts +808 -636
- package/dist/components/UiDatePicker/UiDatePicker.vue.d.ts +5 -0
- package/dist/components/UiDialog/UiDialog.stories.d.ts +344 -258
- package/dist/components/UiFilterBadge/UiFilterBadge.stories.d.ts +170 -100
- package/dist/components/UiFilterBadgeButton/UiFilterBadgeButton.stories.d.ts +206 -132
- package/dist/components/UiInfoContent/UiInfoContent.stories.d.ts +317 -208
- package/dist/components/UiList/UiList.stories.d.ts +735 -510
- package/dist/components/UiListItem/UiListItem.stories.d.ts +388 -298
- package/dist/components/UiOverlay/UiOverlay.stories.d.ts +94 -30
- package/dist/components/UiOverlayMenu/UiOverlayMenu.stories.d.ts +588 -372
- package/dist/components/UiSearchBar/UiSearchBar.stories.d.ts +533 -370
- package/dist/components/UiSearchInput/UiSearchInput.stories.d.ts +222 -134
- package/dist/components/UiSection/UiSection.stories.d.ts +85 -50
- package/dist/components/UiSectionDivider/UiSectionDivider.stories.d.ts +85 -50
- package/dist/components/UiSnackbar/UiSnackbar.stories.d.ts +215 -139
- package/dist/components/UiTextButton/UiTextButton.stories.d.ts +129 -90
- package/dist/components/UiToggleButton/UiToggleButton.stories.d.ts +125 -86
- package/dist/components/UiTooltip/UiTooltip.stories.d.ts +214 -136
- package/dist/dpa-shared-components.mjs +768 -768
- package/dist/dpa-shared-components.umd.js +4 -4
- package/dist/graphic-90b2d2fc.mjs +20 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/UseBreakpoints.stories.ts +0 -22
- package/dist/UseBreakpoints.vue +0 -12
- package/dist/tailwind/UseBreakpoints.stories.d.ts +0 -10
- package/dist/tailwind/useBreakpoints.d.ts +0 -9
- package/dist/useBreakpoints.ts +0 -19
|
@@ -2,71 +2,119 @@ import type { StoryObj } from "@storybook/vue3";
|
|
|
2
2
|
declare const meta: {
|
|
3
3
|
title: string;
|
|
4
4
|
component: {
|
|
5
|
-
new (...args: any[]):
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
};
|
|
14
|
-
structuredLayout: {
|
|
15
|
-
type: import("vue").PropType<boolean>;
|
|
16
|
-
default: boolean;
|
|
17
|
-
};
|
|
18
|
-
structuredInfo: {
|
|
19
|
-
type: import("vue").PropType<{
|
|
5
|
+
new (...args: any[]): {
|
|
6
|
+
$: import("vue").ComponentInternalInstance;
|
|
7
|
+
$data: {};
|
|
8
|
+
$props: Partial<{
|
|
9
|
+
fixed: boolean;
|
|
10
|
+
position: import("@popperjs/core").Placement;
|
|
11
|
+
structuredLayout: boolean;
|
|
12
|
+
structuredInfo: {
|
|
20
13
|
title: string;
|
|
21
14
|
description: string;
|
|
22
|
-
}[]
|
|
23
|
-
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
15
|
+
}[];
|
|
16
|
+
multilines: boolean;
|
|
17
|
+
}> & Omit<{
|
|
18
|
+
readonly fixed: boolean;
|
|
19
|
+
readonly position: import("@popperjs/core").Placement;
|
|
20
|
+
readonly structuredLayout: boolean;
|
|
21
|
+
readonly structuredInfo: {
|
|
22
|
+
title: string;
|
|
23
|
+
description: string;
|
|
24
|
+
}[];
|
|
25
|
+
readonly multilines: boolean;
|
|
26
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
27
|
+
fixed: {
|
|
28
|
+
type: import("vue").PropType<boolean>;
|
|
29
|
+
default: boolean;
|
|
30
|
+
};
|
|
31
|
+
position: {
|
|
32
|
+
type: import("vue").PropType<import("@popperjs/core").Placement>;
|
|
33
|
+
default: string;
|
|
34
|
+
};
|
|
35
|
+
structuredLayout: {
|
|
36
|
+
type: import("vue").PropType<boolean>;
|
|
37
|
+
default: boolean;
|
|
38
|
+
};
|
|
39
|
+
structuredInfo: {
|
|
40
|
+
type: import("vue").PropType<{
|
|
41
|
+
title: string;
|
|
42
|
+
description: string;
|
|
43
|
+
}[]>;
|
|
44
|
+
default: () => never[];
|
|
45
|
+
};
|
|
46
|
+
multilines: {
|
|
47
|
+
type: import("vue").PropType<boolean>;
|
|
48
|
+
default: boolean;
|
|
49
|
+
};
|
|
50
|
+
}>>, "fixed" | "position" | "structuredLayout" | "structuredInfo" | "multilines">;
|
|
51
|
+
$attrs: {
|
|
52
|
+
[x: string]: unknown;
|
|
37
53
|
};
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
default: boolean;
|
|
54
|
+
$refs: {
|
|
55
|
+
[x: string]: unknown;
|
|
41
56
|
};
|
|
42
|
-
|
|
43
|
-
|
|
57
|
+
$slots: Readonly<{
|
|
58
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
59
|
+
}>;
|
|
60
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
61
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
62
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
63
|
+
$el: any;
|
|
64
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
65
|
+
fixed: {
|
|
66
|
+
type: import("vue").PropType<boolean>;
|
|
67
|
+
default: boolean;
|
|
68
|
+
};
|
|
69
|
+
position: {
|
|
70
|
+
type: import("vue").PropType<import("@popperjs/core").Placement>;
|
|
71
|
+
default: string;
|
|
72
|
+
};
|
|
73
|
+
structuredLayout: {
|
|
74
|
+
type: import("vue").PropType<boolean>;
|
|
75
|
+
default: boolean;
|
|
76
|
+
};
|
|
77
|
+
structuredInfo: {
|
|
78
|
+
type: import("vue").PropType<{
|
|
79
|
+
title: string;
|
|
80
|
+
description: string;
|
|
81
|
+
}[]>;
|
|
82
|
+
default: () => never[];
|
|
83
|
+
};
|
|
84
|
+
multilines: {
|
|
85
|
+
type: import("vue").PropType<boolean>;
|
|
86
|
+
default: boolean;
|
|
87
|
+
};
|
|
88
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
89
|
+
fixed: boolean;
|
|
90
|
+
position: import("@popperjs/core").Placement;
|
|
91
|
+
structuredLayout: boolean;
|
|
92
|
+
structuredInfo: {
|
|
44
93
|
title: string;
|
|
45
94
|
description: string;
|
|
46
|
-
}[]
|
|
47
|
-
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
95
|
+
}[];
|
|
96
|
+
multilines: boolean;
|
|
97
|
+
}, {}, string, {}> & {
|
|
98
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
99
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
100
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
101
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
102
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
103
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
104
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
105
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
106
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
107
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
108
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
109
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
110
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
111
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
112
|
+
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
52
113
|
};
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
structuredInfo: {
|
|
58
|
-
title: string;
|
|
59
|
-
description: string;
|
|
60
|
-
}[];
|
|
61
|
-
multilines: boolean;
|
|
62
|
-
}, true, {}, {}, {
|
|
63
|
-
P: {};
|
|
64
|
-
B: {};
|
|
65
|
-
D: {};
|
|
66
|
-
C: {};
|
|
67
|
-
M: {};
|
|
68
|
-
Defaults: {};
|
|
69
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
|
114
|
+
$forceUpdate: () => void;
|
|
115
|
+
$nextTick: typeof import("vue").nextTick;
|
|
116
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
117
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
70
118
|
fixed: {
|
|
71
119
|
type: import("vue").PropType<boolean>;
|
|
72
120
|
default: boolean;
|
|
@@ -90,16 +138,7 @@ declare const meta: {
|
|
|
90
138
|
type: import("vue").PropType<boolean>;
|
|
91
139
|
default: boolean;
|
|
92
140
|
};
|
|
93
|
-
}
|
|
94
|
-
fixed: boolean;
|
|
95
|
-
position: import("@popperjs/core").Placement;
|
|
96
|
-
structuredLayout: boolean;
|
|
97
|
-
structuredInfo: {
|
|
98
|
-
title: string;
|
|
99
|
-
description: string;
|
|
100
|
-
}[];
|
|
101
|
-
multilines: boolean;
|
|
102
|
-
}>;
|
|
141
|
+
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
103
142
|
__isFragment?: undefined;
|
|
104
143
|
__isTeleport?: undefined;
|
|
105
144
|
__isSuspense?: undefined;
|
|
@@ -175,71 +214,119 @@ declare const meta: {
|
|
|
175
214
|
};
|
|
176
215
|
components: {
|
|
177
216
|
UiTooltip: {
|
|
178
|
-
new (...args: any[]):
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
};
|
|
187
|
-
structuredLayout: {
|
|
188
|
-
type: import("vue").PropType<boolean>;
|
|
189
|
-
default: boolean;
|
|
190
|
-
};
|
|
191
|
-
structuredInfo: {
|
|
192
|
-
type: import("vue").PropType<{
|
|
217
|
+
new (...args: any[]): {
|
|
218
|
+
$: import("vue").ComponentInternalInstance;
|
|
219
|
+
$data: {};
|
|
220
|
+
$props: Partial<{
|
|
221
|
+
fixed: boolean;
|
|
222
|
+
position: import("@popperjs/core").Placement;
|
|
223
|
+
structuredLayout: boolean;
|
|
224
|
+
structuredInfo: {
|
|
193
225
|
title: string;
|
|
194
226
|
description: string;
|
|
195
|
-
}[]
|
|
196
|
-
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
227
|
+
}[];
|
|
228
|
+
multilines: boolean;
|
|
229
|
+
}> & Omit<{
|
|
230
|
+
readonly fixed: boolean;
|
|
231
|
+
readonly position: import("@popperjs/core").Placement;
|
|
232
|
+
readonly structuredLayout: boolean;
|
|
233
|
+
readonly structuredInfo: {
|
|
234
|
+
title: string;
|
|
235
|
+
description: string;
|
|
236
|
+
}[];
|
|
237
|
+
readonly multilines: boolean;
|
|
238
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
239
|
+
fixed: {
|
|
240
|
+
type: import("vue").PropType<boolean>;
|
|
241
|
+
default: boolean;
|
|
242
|
+
};
|
|
243
|
+
position: {
|
|
244
|
+
type: import("vue").PropType<import("@popperjs/core").Placement>;
|
|
245
|
+
default: string;
|
|
246
|
+
};
|
|
247
|
+
structuredLayout: {
|
|
248
|
+
type: import("vue").PropType<boolean>;
|
|
249
|
+
default: boolean;
|
|
250
|
+
};
|
|
251
|
+
structuredInfo: {
|
|
252
|
+
type: import("vue").PropType<{
|
|
253
|
+
title: string;
|
|
254
|
+
description: string;
|
|
255
|
+
}[]>;
|
|
256
|
+
default: () => never[];
|
|
257
|
+
};
|
|
258
|
+
multilines: {
|
|
259
|
+
type: import("vue").PropType<boolean>;
|
|
260
|
+
default: boolean;
|
|
261
|
+
};
|
|
262
|
+
}>>, "fixed" | "position" | "structuredLayout" | "structuredInfo" | "multilines">;
|
|
263
|
+
$attrs: {
|
|
264
|
+
[x: string]: unknown;
|
|
210
265
|
};
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
default: boolean;
|
|
266
|
+
$refs: {
|
|
267
|
+
[x: string]: unknown;
|
|
214
268
|
};
|
|
215
|
-
|
|
216
|
-
|
|
269
|
+
$slots: Readonly<{
|
|
270
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
271
|
+
}>;
|
|
272
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
273
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
274
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
275
|
+
$el: any;
|
|
276
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
277
|
+
fixed: {
|
|
278
|
+
type: import("vue").PropType<boolean>;
|
|
279
|
+
default: boolean;
|
|
280
|
+
};
|
|
281
|
+
position: {
|
|
282
|
+
type: import("vue").PropType<import("@popperjs/core").Placement>;
|
|
283
|
+
default: string;
|
|
284
|
+
};
|
|
285
|
+
structuredLayout: {
|
|
286
|
+
type: import("vue").PropType<boolean>;
|
|
287
|
+
default: boolean;
|
|
288
|
+
};
|
|
289
|
+
structuredInfo: {
|
|
290
|
+
type: import("vue").PropType<{
|
|
291
|
+
title: string;
|
|
292
|
+
description: string;
|
|
293
|
+
}[]>;
|
|
294
|
+
default: () => never[];
|
|
295
|
+
};
|
|
296
|
+
multilines: {
|
|
297
|
+
type: import("vue").PropType<boolean>;
|
|
298
|
+
default: boolean;
|
|
299
|
+
};
|
|
300
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
301
|
+
fixed: boolean;
|
|
302
|
+
position: import("@popperjs/core").Placement;
|
|
303
|
+
structuredLayout: boolean;
|
|
304
|
+
structuredInfo: {
|
|
217
305
|
title: string;
|
|
218
306
|
description: string;
|
|
219
|
-
}[]
|
|
220
|
-
|
|
307
|
+
}[];
|
|
308
|
+
multilines: boolean;
|
|
309
|
+
}, {}, string, {}> & {
|
|
310
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
311
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
312
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
313
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
314
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
315
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
316
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
317
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
318
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
319
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
320
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
321
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
322
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
323
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
324
|
+
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
|
|
221
325
|
};
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
}>>, {
|
|
227
|
-
fixed: boolean;
|
|
228
|
-
position: import("@popperjs/core").Placement;
|
|
229
|
-
structuredLayout: boolean;
|
|
230
|
-
structuredInfo: {
|
|
231
|
-
title: string;
|
|
232
|
-
description: string;
|
|
233
|
-
}[];
|
|
234
|
-
multilines: boolean;
|
|
235
|
-
}, true, {}, {}, {
|
|
236
|
-
P: {};
|
|
237
|
-
B: {};
|
|
238
|
-
D: {};
|
|
239
|
-
C: {};
|
|
240
|
-
M: {};
|
|
241
|
-
Defaults: {};
|
|
242
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
|
326
|
+
$forceUpdate: () => void;
|
|
327
|
+
$nextTick: typeof import("vue").nextTick;
|
|
328
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
329
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
243
330
|
fixed: {
|
|
244
331
|
type: import("vue").PropType<boolean>;
|
|
245
332
|
default: boolean;
|
|
@@ -263,16 +350,7 @@ declare const meta: {
|
|
|
263
350
|
type: import("vue").PropType<boolean>;
|
|
264
351
|
default: boolean;
|
|
265
352
|
};
|
|
266
|
-
}
|
|
267
|
-
fixed: boolean;
|
|
268
|
-
position: import("@popperjs/core").Placement;
|
|
269
|
-
structuredLayout: boolean;
|
|
270
|
-
structuredInfo: {
|
|
271
|
-
title: string;
|
|
272
|
-
description: string;
|
|
273
|
-
}[];
|
|
274
|
-
multilines: boolean;
|
|
275
|
-
}>;
|
|
353
|
+
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
276
354
|
__isFragment?: undefined;
|
|
277
355
|
__isTeleport?: undefined;
|
|
278
356
|
__isSuspense?: undefined;
|