@dpa-id-components/dpa-shared-components 8.9.6 → 8.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/UseBreakpoints.stories.ts +22 -0
- package/dist/UseBreakpoints.vue +12 -0
- package/dist/components/DpaEventItem/DpaEventItem.stories.d.ts +391 -556
- package/dist/components/DpaMediaItem/DpaMediaItem.stories.d.ts +63 -99
- package/dist/components/UiBadge/UiBadge.stories.d.ts +83 -121
- package/dist/components/UiButton/UiButton.stories.d.ts +89 -128
- package/dist/components/UiButtonGroup/UiButtonGroup.stories.d.ts +8 -38
- package/dist/components/UiCard/UiCard.stories.d.ts +8 -38
- package/dist/components/UiCheckBox/UiCheckBox.stories.d.ts +79 -117
- package/dist/components/UiChip/UiChip.stories.d.ts +40 -74
- package/dist/components/UiCollapseNavigation/UiCollapseNavigation.stories.d.ts +40 -74
- package/dist/components/UiDatePicker/UiDatePicker.stories.d.ts +636 -768
- package/dist/components/UiDialog/UiDialog.stories.d.ts +276 -322
- package/dist/components/UiDialog/UiDialog.vue.d.ts +5 -0
- package/dist/components/UiFilterBadge/UiFilterBadge.stories.d.ts +100 -170
- package/dist/components/UiFilterBadgeButton/UiFilterBadgeButton.stories.d.ts +132 -206
- package/dist/components/UiInfoContent/UiInfoContent.stories.d.ts +208 -317
- package/dist/components/UiList/UiList.stories.d.ts +469 -694
- package/dist/components/UiListItem/UiListItem.stories.d.ts +298 -388
- package/dist/components/UiOverlay/UiOverlay.stories.d.ts +30 -94
- package/dist/components/UiOverlayMenu/UiOverlayMenu.stories.d.ts +372 -588
- package/dist/components/UiSearchBar/UiSearchBar.stories.d.ts +370 -533
- package/dist/components/UiSearchInput/UiSearchInput.stories.d.ts +134 -222
- package/dist/components/UiSection/UiSection.stories.d.ts +50 -85
- package/dist/components/UiSectionDivider/UiSectionDivider.stories.d.ts +50 -85
- package/dist/components/UiSnackbar/UiSnackbar.stories.d.ts +139 -215
- package/dist/components/UiTextButton/UiTextButton.stories.d.ts +90 -129
- package/dist/components/UiToggleButton/UiToggleButton.stories.d.ts +86 -125
- package/dist/components/UiTooltip/UiTooltip.stories.d.ts +136 -214
- package/dist/dpa-shared-components.mjs +1565 -1531
- package/dist/dpa-shared-components.umd.js +8 -8
- package/dist/style.css +1 -1
- package/dist/tailwind/UseBreakpoints.stories.d.ts +10 -0
- package/dist/tailwind/useBreakpoints.d.ts +9 -0
- package/dist/useBreakpoints.ts +19 -0
- package/package.json +1 -1
- package/dist/bookmark-4ff074d8.mjs +0 -19
- package/dist/bookmark-fill-731ae06c.mjs +0 -19
- package/dist/graphic-90b2d2fc.mjs +0 -20
|
@@ -2,101 +2,61 @@ 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
|
-
iconSize: "xs" | "small" | "medium" | "large" | "xl";
|
|
11
|
-
iconColor: "white" | "gray";
|
|
12
|
-
iconBackground: "white" | "gray" | "green";
|
|
13
|
-
}> & Omit<{
|
|
14
|
-
readonly iconName: string | null;
|
|
15
|
-
readonly iconSize: "xs" | "small" | "medium" | "large" | "xl";
|
|
16
|
-
readonly iconColor: "white" | "gray";
|
|
17
|
-
readonly iconBackground: "white" | "gray" | "green";
|
|
18
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
-
iconName: {
|
|
20
|
-
type: import("vue").PropType<string | null>;
|
|
21
|
-
required: true;
|
|
22
|
-
default: null;
|
|
23
|
-
};
|
|
24
|
-
iconSize: {
|
|
25
|
-
type: import("vue").PropType<"xs" | "small" | "medium" | "large" | "xl">;
|
|
26
|
-
required: true;
|
|
27
|
-
default: string;
|
|
28
|
-
};
|
|
29
|
-
iconColor: {
|
|
30
|
-
type: import("vue").PropType<"white" | "gray">;
|
|
31
|
-
required: true;
|
|
32
|
-
default: string;
|
|
33
|
-
};
|
|
34
|
-
iconBackground: {
|
|
35
|
-
type: import("vue").PropType<"white" | "gray" | "green">;
|
|
36
|
-
required: true;
|
|
37
|
-
default: string;
|
|
38
|
-
};
|
|
39
|
-
}>>, "iconName" | "iconSize" | "iconColor" | "iconBackground">;
|
|
40
|
-
$attrs: {
|
|
41
|
-
[x: string]: unknown;
|
|
5
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
6
|
+
iconName: {
|
|
7
|
+
type: import("vue").PropType<string | null>;
|
|
8
|
+
required: true;
|
|
9
|
+
default: null;
|
|
42
10
|
};
|
|
43
|
-
|
|
44
|
-
|
|
11
|
+
iconSize: {
|
|
12
|
+
type: import("vue").PropType<"xs" | "small" | "medium" | "large" | "xl">;
|
|
13
|
+
required: true;
|
|
14
|
+
default: string;
|
|
45
15
|
};
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
required: true;
|
|
67
|
-
default: string;
|
|
68
|
-
};
|
|
69
|
-
iconBackground: {
|
|
70
|
-
type: import("vue").PropType<"white" | "gray" | "green">;
|
|
71
|
-
required: true;
|
|
72
|
-
default: string;
|
|
73
|
-
};
|
|
74
|
-
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
75
|
-
iconName: string | null;
|
|
76
|
-
iconSize: "xs" | "small" | "medium" | "large" | "xl";
|
|
77
|
-
iconColor: "white" | "gray";
|
|
78
|
-
iconBackground: "white" | "gray" | "green";
|
|
79
|
-
}, {}, string, {}> & {
|
|
80
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
81
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
82
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
83
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
84
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
85
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
86
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
87
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
88
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
89
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
90
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
91
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
92
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
93
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
94
|
-
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;
|
|
16
|
+
iconColor: {
|
|
17
|
+
type: import("vue").PropType<"white" | "gray">;
|
|
18
|
+
required: true;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
iconBackground: {
|
|
22
|
+
type: import("vue").PropType<"white" | "gray" | "green">;
|
|
23
|
+
required: true;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
26
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
27
|
+
iconName: {
|
|
28
|
+
type: import("vue").PropType<string | null>;
|
|
29
|
+
required: true;
|
|
30
|
+
default: null;
|
|
31
|
+
};
|
|
32
|
+
iconSize: {
|
|
33
|
+
type: import("vue").PropType<"xs" | "small" | "medium" | "large" | "xl">;
|
|
34
|
+
required: true;
|
|
35
|
+
default: string;
|
|
95
36
|
};
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
37
|
+
iconColor: {
|
|
38
|
+
type: import("vue").PropType<"white" | "gray">;
|
|
39
|
+
required: true;
|
|
40
|
+
default: string;
|
|
41
|
+
};
|
|
42
|
+
iconBackground: {
|
|
43
|
+
type: import("vue").PropType<"white" | "gray" | "green">;
|
|
44
|
+
required: true;
|
|
45
|
+
default: string;
|
|
46
|
+
};
|
|
47
|
+
}>>, {
|
|
48
|
+
iconName: string | null;
|
|
49
|
+
iconSize: "xs" | "small" | "medium" | "large" | "xl";
|
|
50
|
+
iconColor: "white" | "gray";
|
|
51
|
+
iconBackground: "white" | "gray" | "green";
|
|
52
|
+
}, true, {}, {}, {
|
|
53
|
+
P: {};
|
|
54
|
+
B: {};
|
|
55
|
+
D: {};
|
|
56
|
+
C: {};
|
|
57
|
+
M: {};
|
|
58
|
+
Defaults: {};
|
|
59
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
100
60
|
iconName: {
|
|
101
61
|
type: import("vue").PropType<string | null>;
|
|
102
62
|
required: true;
|
|
@@ -117,7 +77,12 @@ declare const meta: {
|
|
|
117
77
|
required: true;
|
|
118
78
|
default: string;
|
|
119
79
|
};
|
|
120
|
-
}
|
|
80
|
+
}>>, {}, {}, {}, {}, {
|
|
81
|
+
iconName: string | null;
|
|
82
|
+
iconSize: "xs" | "small" | "medium" | "large" | "xl";
|
|
83
|
+
iconColor: "white" | "gray";
|
|
84
|
+
iconBackground: "white" | "gray" | "green";
|
|
85
|
+
}>;
|
|
121
86
|
__isFragment?: undefined;
|
|
122
87
|
__isTeleport?: undefined;
|
|
123
88
|
__isSuspense?: undefined;
|
|
@@ -184,101 +149,28 @@ declare const meta: {
|
|
|
184
149
|
};
|
|
185
150
|
components: {
|
|
186
151
|
UiInfoContent: {
|
|
187
|
-
new (...args: any[]): {
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
default: string;
|
|
210
|
-
};
|
|
211
|
-
iconColor: {
|
|
212
|
-
type: import("vue").PropType<"white" | "gray">;
|
|
213
|
-
required: true;
|
|
214
|
-
default: string;
|
|
215
|
-
};
|
|
216
|
-
iconBackground: {
|
|
217
|
-
type: import("vue").PropType<"white" | "gray" | "green">;
|
|
218
|
-
required: true;
|
|
219
|
-
default: string;
|
|
220
|
-
};
|
|
221
|
-
}>>, "iconName" | "iconSize" | "iconColor" | "iconBackground">;
|
|
222
|
-
$attrs: {
|
|
223
|
-
[x: string]: unknown;
|
|
224
|
-
};
|
|
225
|
-
$refs: {
|
|
226
|
-
[x: string]: unknown;
|
|
227
|
-
};
|
|
228
|
-
$slots: Readonly<{
|
|
229
|
-
[name: string]: import("vue").Slot<any> | undefined;
|
|
230
|
-
}>;
|
|
231
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
232
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
233
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
234
|
-
$el: any;
|
|
235
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
236
|
-
iconName: {
|
|
237
|
-
type: import("vue").PropType<string | null>;
|
|
238
|
-
required: true;
|
|
239
|
-
default: null;
|
|
240
|
-
};
|
|
241
|
-
iconSize: {
|
|
242
|
-
type: import("vue").PropType<"xs" | "small" | "medium" | "large" | "xl">;
|
|
243
|
-
required: true;
|
|
244
|
-
default: string;
|
|
245
|
-
};
|
|
246
|
-
iconColor: {
|
|
247
|
-
type: import("vue").PropType<"white" | "gray">;
|
|
248
|
-
required: true;
|
|
249
|
-
default: string;
|
|
250
|
-
};
|
|
251
|
-
iconBackground: {
|
|
252
|
-
type: import("vue").PropType<"white" | "gray" | "green">;
|
|
253
|
-
required: true;
|
|
254
|
-
default: string;
|
|
255
|
-
};
|
|
256
|
-
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
257
|
-
iconName: string | null;
|
|
258
|
-
iconSize: "xs" | "small" | "medium" | "large" | "xl";
|
|
259
|
-
iconColor: "white" | "gray";
|
|
260
|
-
iconBackground: "white" | "gray" | "green";
|
|
261
|
-
}, {}, string, {}> & {
|
|
262
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
263
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
264
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
265
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
266
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
267
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
268
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
269
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
270
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
271
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
272
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
273
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
274
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
275
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
276
|
-
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;
|
|
277
|
-
};
|
|
278
|
-
$forceUpdate: () => void;
|
|
279
|
-
$nextTick: typeof import("vue").nextTick;
|
|
280
|
-
$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;
|
|
281
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
152
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
153
|
+
iconName: {
|
|
154
|
+
type: import("vue").PropType<string | null>;
|
|
155
|
+
required: true;
|
|
156
|
+
default: null;
|
|
157
|
+
};
|
|
158
|
+
iconSize: {
|
|
159
|
+
type: import("vue").PropType<"xs" | "small" | "medium" | "large" | "xl">;
|
|
160
|
+
required: true;
|
|
161
|
+
default: string;
|
|
162
|
+
};
|
|
163
|
+
iconColor: {
|
|
164
|
+
type: import("vue").PropType<"white" | "gray">;
|
|
165
|
+
required: true;
|
|
166
|
+
default: string;
|
|
167
|
+
};
|
|
168
|
+
iconBackground: {
|
|
169
|
+
type: import("vue").PropType<"white" | "gray" | "green">;
|
|
170
|
+
required: true;
|
|
171
|
+
default: string;
|
|
172
|
+
};
|
|
173
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
282
174
|
iconName: {
|
|
283
175
|
type: import("vue").PropType<string | null>;
|
|
284
176
|
required: true;
|
|
@@ -299,7 +191,45 @@ declare const meta: {
|
|
|
299
191
|
required: true;
|
|
300
192
|
default: string;
|
|
301
193
|
};
|
|
302
|
-
}
|
|
194
|
+
}>>, {
|
|
195
|
+
iconName: string | null;
|
|
196
|
+
iconSize: "xs" | "small" | "medium" | "large" | "xl";
|
|
197
|
+
iconColor: "white" | "gray";
|
|
198
|
+
iconBackground: "white" | "gray" | "green";
|
|
199
|
+
}, true, {}, {}, {
|
|
200
|
+
P: {};
|
|
201
|
+
B: {};
|
|
202
|
+
D: {};
|
|
203
|
+
C: {};
|
|
204
|
+
M: {};
|
|
205
|
+
Defaults: {};
|
|
206
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
207
|
+
iconName: {
|
|
208
|
+
type: import("vue").PropType<string | null>;
|
|
209
|
+
required: true;
|
|
210
|
+
default: null;
|
|
211
|
+
};
|
|
212
|
+
iconSize: {
|
|
213
|
+
type: import("vue").PropType<"xs" | "small" | "medium" | "large" | "xl">;
|
|
214
|
+
required: true;
|
|
215
|
+
default: string;
|
|
216
|
+
};
|
|
217
|
+
iconColor: {
|
|
218
|
+
type: import("vue").PropType<"white" | "gray">;
|
|
219
|
+
required: true;
|
|
220
|
+
default: string;
|
|
221
|
+
};
|
|
222
|
+
iconBackground: {
|
|
223
|
+
type: import("vue").PropType<"white" | "gray" | "green">;
|
|
224
|
+
required: true;
|
|
225
|
+
default: string;
|
|
226
|
+
};
|
|
227
|
+
}>>, {}, {}, {}, {}, {
|
|
228
|
+
iconName: string | null;
|
|
229
|
+
iconSize: "xs" | "small" | "medium" | "large" | "xl";
|
|
230
|
+
iconColor: "white" | "gray";
|
|
231
|
+
iconBackground: "white" | "gray" | "green";
|
|
232
|
+
}>;
|
|
303
233
|
__isFragment?: undefined;
|
|
304
234
|
__isTeleport?: undefined;
|
|
305
235
|
__isSuspense?: undefined;
|
|
@@ -337,133 +267,86 @@ declare const meta: {
|
|
|
337
267
|
};
|
|
338
268
|
});
|
|
339
269
|
UiButton: {
|
|
340
|
-
new (...args: any[]): {
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
}
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
};
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
default: boolean;
|
|
421
|
-
};
|
|
422
|
-
rounded: {
|
|
423
|
-
type: import("vue").PropType<boolean>;
|
|
424
|
-
default: boolean;
|
|
425
|
-
};
|
|
426
|
-
disabledVariant: {
|
|
427
|
-
type: import("vue").PropType<"primary" | "secondary">;
|
|
428
|
-
default: string;
|
|
429
|
-
};
|
|
430
|
-
href: {
|
|
431
|
-
type: import("vue").PropType<string>;
|
|
432
|
-
default: string;
|
|
433
|
-
};
|
|
434
|
-
}>> & {
|
|
435
|
-
onClick?: (() => any) | undefined;
|
|
436
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
437
|
-
click: () => void;
|
|
438
|
-
}, string, {
|
|
439
|
-
size: "xs" | "small" | "medium" | "large";
|
|
440
|
-
color: "blue" | "white" | "gray" | "transparent" | "light-gray";
|
|
441
|
-
iconName: string | null;
|
|
442
|
-
disabled: boolean;
|
|
443
|
-
rounded: boolean;
|
|
444
|
-
disabledVariant: "primary" | "secondary";
|
|
445
|
-
href: string;
|
|
446
|
-
}, {}, string, {}> & {
|
|
447
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
448
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
449
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
450
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
451
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
452
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
453
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
454
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
455
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
456
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
457
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
458
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
459
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
460
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
461
|
-
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;
|
|
462
|
-
};
|
|
463
|
-
$forceUpdate: () => void;
|
|
464
|
-
$nextTick: typeof import("vue").nextTick;
|
|
465
|
-
$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;
|
|
466
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
270
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
271
|
+
size: {
|
|
272
|
+
type: import("vue").PropType<"xs" | "small" | "medium" | "large">;
|
|
273
|
+
default: string;
|
|
274
|
+
};
|
|
275
|
+
color: {
|
|
276
|
+
type: import("vue").PropType<"blue" | "white" | "gray" | "transparent" | "light-gray">;
|
|
277
|
+
default: string;
|
|
278
|
+
};
|
|
279
|
+
iconName: {
|
|
280
|
+
type: import("vue").PropType<string | null>;
|
|
281
|
+
default: null;
|
|
282
|
+
};
|
|
283
|
+
disabled: {
|
|
284
|
+
type: import("vue").PropType<boolean>;
|
|
285
|
+
default: boolean;
|
|
286
|
+
};
|
|
287
|
+
rounded: {
|
|
288
|
+
type: import("vue").PropType<boolean>;
|
|
289
|
+
default: boolean;
|
|
290
|
+
};
|
|
291
|
+
disabledVariant: {
|
|
292
|
+
type: import("vue").PropType<"primary" | "secondary">;
|
|
293
|
+
default: string;
|
|
294
|
+
};
|
|
295
|
+
href: {
|
|
296
|
+
type: import("vue").PropType<string>;
|
|
297
|
+
default: string;
|
|
298
|
+
};
|
|
299
|
+
}>> & {
|
|
300
|
+
onClick?: (() => any) | undefined;
|
|
301
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
302
|
+
click: () => void;
|
|
303
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
304
|
+
size: {
|
|
305
|
+
type: import("vue").PropType<"xs" | "small" | "medium" | "large">;
|
|
306
|
+
default: string;
|
|
307
|
+
};
|
|
308
|
+
color: {
|
|
309
|
+
type: import("vue").PropType<"blue" | "white" | "gray" | "transparent" | "light-gray">;
|
|
310
|
+
default: string;
|
|
311
|
+
};
|
|
312
|
+
iconName: {
|
|
313
|
+
type: import("vue").PropType<string | null>;
|
|
314
|
+
default: null;
|
|
315
|
+
};
|
|
316
|
+
disabled: {
|
|
317
|
+
type: import("vue").PropType<boolean>;
|
|
318
|
+
default: boolean;
|
|
319
|
+
};
|
|
320
|
+
rounded: {
|
|
321
|
+
type: import("vue").PropType<boolean>;
|
|
322
|
+
default: boolean;
|
|
323
|
+
};
|
|
324
|
+
disabledVariant: {
|
|
325
|
+
type: import("vue").PropType<"primary" | "secondary">;
|
|
326
|
+
default: string;
|
|
327
|
+
};
|
|
328
|
+
href: {
|
|
329
|
+
type: import("vue").PropType<string>;
|
|
330
|
+
default: string;
|
|
331
|
+
};
|
|
332
|
+
}>> & {
|
|
333
|
+
onClick?: (() => any) | undefined;
|
|
334
|
+
}, {
|
|
335
|
+
size: "xs" | "small" | "medium" | "large";
|
|
336
|
+
color: "blue" | "white" | "gray" | "transparent" | "light-gray";
|
|
337
|
+
iconName: string | null;
|
|
338
|
+
disabled: boolean;
|
|
339
|
+
rounded: boolean;
|
|
340
|
+
disabledVariant: "primary" | "secondary";
|
|
341
|
+
href: string;
|
|
342
|
+
}, true, {}, {}, {
|
|
343
|
+
P: {};
|
|
344
|
+
B: {};
|
|
345
|
+
D: {};
|
|
346
|
+
C: {};
|
|
347
|
+
M: {};
|
|
348
|
+
Defaults: {};
|
|
349
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
|
467
350
|
size: {
|
|
468
351
|
type: import("vue").PropType<"xs" | "small" | "medium" | "large">;
|
|
469
352
|
default: string;
|
|
@@ -494,7 +377,15 @@ declare const meta: {
|
|
|
494
377
|
};
|
|
495
378
|
}>> & {
|
|
496
379
|
onClick?: (() => any) | undefined;
|
|
497
|
-
}
|
|
380
|
+
}, {}, {}, {}, {}, {
|
|
381
|
+
size: "xs" | "small" | "medium" | "large";
|
|
382
|
+
color: "blue" | "white" | "gray" | "transparent" | "light-gray";
|
|
383
|
+
iconName: string | null;
|
|
384
|
+
disabled: boolean;
|
|
385
|
+
rounded: boolean;
|
|
386
|
+
disabledVariant: "primary" | "secondary";
|
|
387
|
+
href: string;
|
|
388
|
+
}>;
|
|
498
389
|
__isFragment?: undefined;
|
|
499
390
|
__isTeleport?: undefined;
|
|
500
391
|
__isSuspense?: undefined;
|