@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,14 +2,44 @@ 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
|
-
|
|
5
|
+
new (...args: any[]): {
|
|
6
|
+
$: import("vue").ComponentInternalInstance;
|
|
7
|
+
$data: {};
|
|
8
|
+
$props: Partial<{}> & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, never>;
|
|
9
|
+
$attrs: {
|
|
10
|
+
[x: string]: unknown;
|
|
11
|
+
};
|
|
12
|
+
$refs: {
|
|
13
|
+
[x: string]: unknown;
|
|
14
|
+
};
|
|
15
|
+
$slots: Readonly<{
|
|
16
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
17
|
+
}>;
|
|
18
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
19
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
20
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
21
|
+
$el: any;
|
|
22
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
|
23
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
24
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
25
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
26
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
27
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
28
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
29
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
30
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
31
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
32
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
33
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
34
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
35
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
36
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
37
|
+
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;
|
|
38
|
+
};
|
|
39
|
+
$forceUpdate: () => void;
|
|
40
|
+
$nextTick: typeof import("vue").nextTick;
|
|
41
|
+
$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;
|
|
42
|
+
} & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
13
43
|
__isFragment?: undefined;
|
|
14
44
|
__isTeleport?: undefined;
|
|
15
45
|
__isSuspense?: undefined;
|
|
@@ -2,14 +2,44 @@ 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
|
-
|
|
5
|
+
new (...args: any[]): {
|
|
6
|
+
$: import("vue").ComponentInternalInstance;
|
|
7
|
+
$data: {};
|
|
8
|
+
$props: Partial<{}> & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, never>;
|
|
9
|
+
$attrs: {
|
|
10
|
+
[x: string]: unknown;
|
|
11
|
+
};
|
|
12
|
+
$refs: {
|
|
13
|
+
[x: string]: unknown;
|
|
14
|
+
};
|
|
15
|
+
$slots: Readonly<{
|
|
16
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
17
|
+
}>;
|
|
18
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
19
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
20
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
21
|
+
$el: any;
|
|
22
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
|
23
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
24
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
25
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
26
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
27
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
28
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
29
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
30
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
31
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
32
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
33
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
34
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
35
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
36
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
37
|
+
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;
|
|
38
|
+
};
|
|
39
|
+
$forceUpdate: () => void;
|
|
40
|
+
$nextTick: typeof import("vue").nextTick;
|
|
41
|
+
$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;
|
|
42
|
+
} & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
13
43
|
__isFragment?: undefined;
|
|
14
44
|
__isTeleport?: undefined;
|
|
15
45
|
__isSuspense?: undefined;
|
|
@@ -2,7 +2,122 @@ import type { StoryObj } from "@storybook/vue3";
|
|
|
2
2
|
declare const meta: {
|
|
3
3
|
title: string;
|
|
4
4
|
component: {
|
|
5
|
-
new (...args: any[]):
|
|
5
|
+
new (...args: any[]): {
|
|
6
|
+
$: import("vue").ComponentInternalInstance;
|
|
7
|
+
$data: {};
|
|
8
|
+
$props: Partial<{
|
|
9
|
+
size: "small" | "medium";
|
|
10
|
+
color: "blue" | "gray";
|
|
11
|
+
disabled: boolean;
|
|
12
|
+
errorMessage: string;
|
|
13
|
+
checked: boolean;
|
|
14
|
+
showError: boolean;
|
|
15
|
+
}> & Omit<{
|
|
16
|
+
readonly size: "small" | "medium";
|
|
17
|
+
readonly color: "blue" | "gray";
|
|
18
|
+
readonly disabled: boolean;
|
|
19
|
+
readonly errorMessage: string;
|
|
20
|
+
readonly checked: boolean;
|
|
21
|
+
readonly showError: boolean;
|
|
22
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
23
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
24
|
+
size: {
|
|
25
|
+
type: import("vue").PropType<"small" | "medium">;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
color: {
|
|
29
|
+
type: import("vue").PropType<"blue" | "gray">;
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
32
|
+
disabled: {
|
|
33
|
+
type: import("vue").PropType<boolean>;
|
|
34
|
+
default: boolean;
|
|
35
|
+
};
|
|
36
|
+
errorMessage: {
|
|
37
|
+
type: import("vue").PropType<string>;
|
|
38
|
+
default: string;
|
|
39
|
+
};
|
|
40
|
+
checked: {
|
|
41
|
+
type: import("vue").PropType<boolean>;
|
|
42
|
+
default: boolean;
|
|
43
|
+
};
|
|
44
|
+
showError: {
|
|
45
|
+
type: import("vue").PropType<boolean>;
|
|
46
|
+
default: boolean;
|
|
47
|
+
};
|
|
48
|
+
}>> & {
|
|
49
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
50
|
+
}, "size" | "color" | "disabled" | "errorMessage" | "checked" | "showError">;
|
|
51
|
+
$attrs: {
|
|
52
|
+
[x: string]: unknown;
|
|
53
|
+
};
|
|
54
|
+
$refs: {
|
|
55
|
+
[x: string]: unknown;
|
|
56
|
+
};
|
|
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: "change", ...args: any[]) => void;
|
|
63
|
+
$el: any;
|
|
64
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
65
|
+
size: {
|
|
66
|
+
type: import("vue").PropType<"small" | "medium">;
|
|
67
|
+
default: string;
|
|
68
|
+
};
|
|
69
|
+
color: {
|
|
70
|
+
type: import("vue").PropType<"blue" | "gray">;
|
|
71
|
+
default: string;
|
|
72
|
+
};
|
|
73
|
+
disabled: {
|
|
74
|
+
type: import("vue").PropType<boolean>;
|
|
75
|
+
default: boolean;
|
|
76
|
+
};
|
|
77
|
+
errorMessage: {
|
|
78
|
+
type: import("vue").PropType<string>;
|
|
79
|
+
default: string;
|
|
80
|
+
};
|
|
81
|
+
checked: {
|
|
82
|
+
type: import("vue").PropType<boolean>;
|
|
83
|
+
default: boolean;
|
|
84
|
+
};
|
|
85
|
+
showError: {
|
|
86
|
+
type: import("vue").PropType<boolean>;
|
|
87
|
+
default: boolean;
|
|
88
|
+
};
|
|
89
|
+
}>> & {
|
|
90
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
91
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
92
|
+
change: (...args: any[]) => void;
|
|
93
|
+
}, string, {
|
|
94
|
+
size: "small" | "medium";
|
|
95
|
+
color: "blue" | "gray";
|
|
96
|
+
disabled: boolean;
|
|
97
|
+
errorMessage: string;
|
|
98
|
+
checked: boolean;
|
|
99
|
+
showError: boolean;
|
|
100
|
+
}, {}, string, {}> & {
|
|
101
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
102
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
103
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
104
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
105
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
106
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
107
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
108
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
109
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
110
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
111
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
112
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
113
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
114
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
115
|
+
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;
|
|
116
|
+
};
|
|
117
|
+
$forceUpdate: () => void;
|
|
118
|
+
$nextTick: typeof import("vue").nextTick;
|
|
119
|
+
$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;
|
|
120
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
6
121
|
size: {
|
|
7
122
|
type: import("vue").PropType<"small" | "medium">;
|
|
8
123
|
default: string;
|
|
@@ -29,84 +144,7 @@ declare const meta: {
|
|
|
29
144
|
};
|
|
30
145
|
}>> & {
|
|
31
146
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
32
|
-
}
|
|
33
|
-
change: (...args: any[]) => void;
|
|
34
|
-
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
35
|
-
size: {
|
|
36
|
-
type: import("vue").PropType<"small" | "medium">;
|
|
37
|
-
default: string;
|
|
38
|
-
};
|
|
39
|
-
color: {
|
|
40
|
-
type: import("vue").PropType<"blue" | "gray">;
|
|
41
|
-
default: string;
|
|
42
|
-
};
|
|
43
|
-
disabled: {
|
|
44
|
-
type: import("vue").PropType<boolean>;
|
|
45
|
-
default: boolean;
|
|
46
|
-
};
|
|
47
|
-
errorMessage: {
|
|
48
|
-
type: import("vue").PropType<string>;
|
|
49
|
-
default: string;
|
|
50
|
-
};
|
|
51
|
-
checked: {
|
|
52
|
-
type: import("vue").PropType<boolean>;
|
|
53
|
-
default: boolean;
|
|
54
|
-
};
|
|
55
|
-
showError: {
|
|
56
|
-
type: import("vue").PropType<boolean>;
|
|
57
|
-
default: boolean;
|
|
58
|
-
};
|
|
59
|
-
}>> & {
|
|
60
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
61
|
-
}, {
|
|
62
|
-
size: "small" | "medium";
|
|
63
|
-
color: "blue" | "gray";
|
|
64
|
-
disabled: boolean;
|
|
65
|
-
errorMessage: string;
|
|
66
|
-
checked: boolean;
|
|
67
|
-
showError: boolean;
|
|
68
|
-
}, true, {}, {}, {
|
|
69
|
-
P: {};
|
|
70
|
-
B: {};
|
|
71
|
-
D: {};
|
|
72
|
-
C: {};
|
|
73
|
-
M: {};
|
|
74
|
-
Defaults: {};
|
|
75
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
|
76
|
-
size: {
|
|
77
|
-
type: import("vue").PropType<"small" | "medium">;
|
|
78
|
-
default: string;
|
|
79
|
-
};
|
|
80
|
-
color: {
|
|
81
|
-
type: import("vue").PropType<"blue" | "gray">;
|
|
82
|
-
default: string;
|
|
83
|
-
};
|
|
84
|
-
disabled: {
|
|
85
|
-
type: import("vue").PropType<boolean>;
|
|
86
|
-
default: boolean;
|
|
87
|
-
};
|
|
88
|
-
errorMessage: {
|
|
89
|
-
type: import("vue").PropType<string>;
|
|
90
|
-
default: string;
|
|
91
|
-
};
|
|
92
|
-
checked: {
|
|
93
|
-
type: import("vue").PropType<boolean>;
|
|
94
|
-
default: boolean;
|
|
95
|
-
};
|
|
96
|
-
showError: {
|
|
97
|
-
type: import("vue").PropType<boolean>;
|
|
98
|
-
default: boolean;
|
|
99
|
-
};
|
|
100
|
-
}>> & {
|
|
101
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
102
|
-
}, {}, {}, {}, {}, {
|
|
103
|
-
size: "small" | "medium";
|
|
104
|
-
color: "blue" | "gray";
|
|
105
|
-
disabled: boolean;
|
|
106
|
-
errorMessage: string;
|
|
107
|
-
checked: boolean;
|
|
108
|
-
showError: boolean;
|
|
109
|
-
}>;
|
|
147
|
+
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
110
148
|
__isFragment?: undefined;
|
|
111
149
|
__isTeleport?: undefined;
|
|
112
150
|
__isSuspense?: undefined;
|
|
@@ -2,44 +2,82 @@ 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
|
-
|
|
5
|
+
new (...args: any[]): {
|
|
6
|
+
$: import("vue").ComponentInternalInstance;
|
|
7
|
+
$data: {};
|
|
8
|
+
$props: Partial<{
|
|
9
|
+
size: "small" | "medium" | "big";
|
|
10
|
+
cursorStyle: "text" | "default" | "pointer";
|
|
11
|
+
isVisible: boolean;
|
|
12
|
+
}> & Omit<{
|
|
13
|
+
readonly size: "small" | "medium" | "big";
|
|
14
|
+
readonly cursorStyle: "text" | "default" | "pointer";
|
|
15
|
+
readonly isVisible: boolean;
|
|
16
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
+
size: {
|
|
18
|
+
type: import("vue").PropType<"small" | "medium" | "big">;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
cursorStyle: {
|
|
22
|
+
type: import("vue").PropType<"text" | "default" | "pointer">;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
isVisible: {
|
|
26
|
+
type: import("vue").PropType<boolean>;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
}>>, "size" | "cursorStyle" | "isVisible">;
|
|
30
|
+
$attrs: {
|
|
31
|
+
[x: string]: unknown;
|
|
9
32
|
};
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
default: string;
|
|
33
|
+
$refs: {
|
|
34
|
+
[x: string]: unknown;
|
|
13
35
|
};
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
};
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
36
|
+
$slots: Readonly<{
|
|
37
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
38
|
+
}>;
|
|
39
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
40
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
41
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
42
|
+
$el: any;
|
|
43
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
44
|
+
size: {
|
|
45
|
+
type: import("vue").PropType<"small" | "medium" | "big">;
|
|
46
|
+
default: string;
|
|
47
|
+
};
|
|
48
|
+
cursorStyle: {
|
|
49
|
+
type: import("vue").PropType<"text" | "default" | "pointer">;
|
|
50
|
+
default: string;
|
|
51
|
+
};
|
|
52
|
+
isVisible: {
|
|
53
|
+
type: import("vue").PropType<boolean>;
|
|
54
|
+
default: boolean;
|
|
55
|
+
};
|
|
56
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
57
|
+
size: "small" | "medium" | "big";
|
|
58
|
+
cursorStyle: "text" | "default" | "pointer";
|
|
59
|
+
isVisible: boolean;
|
|
60
|
+
}, {}, string, {}> & {
|
|
61
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
62
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
63
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
64
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
65
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
66
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
67
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
68
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
69
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
70
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
71
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
72
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
73
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
74
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
75
|
+
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;
|
|
30
76
|
};
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
}, true, {}, {}, {
|
|
36
|
-
P: {};
|
|
37
|
-
B: {};
|
|
38
|
-
D: {};
|
|
39
|
-
C: {};
|
|
40
|
-
M: {};
|
|
41
|
-
Defaults: {};
|
|
42
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
|
77
|
+
$forceUpdate: () => void;
|
|
78
|
+
$nextTick: typeof import("vue").nextTick;
|
|
79
|
+
$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;
|
|
80
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
43
81
|
size: {
|
|
44
82
|
type: import("vue").PropType<"small" | "medium" | "big">;
|
|
45
83
|
default: string;
|
|
@@ -52,11 +90,7 @@ declare const meta: {
|
|
|
52
90
|
type: import("vue").PropType<boolean>;
|
|
53
91
|
default: boolean;
|
|
54
92
|
};
|
|
55
|
-
}
|
|
56
|
-
size: "small" | "medium" | "big";
|
|
57
|
-
cursorStyle: "text" | "default" | "pointer";
|
|
58
|
-
isVisible: boolean;
|
|
59
|
-
}>;
|
|
93
|
+
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
60
94
|
__isFragment?: undefined;
|
|
61
95
|
__isTeleport?: undefined;
|
|
62
96
|
__isSuspense?: undefined;
|
|
@@ -2,44 +2,82 @@ 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
|
-
|
|
5
|
+
new (...args: any[]): {
|
|
6
|
+
$: import("vue").ComponentInternalInstance;
|
|
7
|
+
$data: {};
|
|
8
|
+
$props: Partial<{
|
|
9
|
+
headline: string;
|
|
10
|
+
hasBorderTop: boolean;
|
|
11
|
+
openAsDefault: boolean;
|
|
12
|
+
}> & Omit<{
|
|
13
|
+
readonly headline: string;
|
|
14
|
+
readonly hasBorderTop: boolean;
|
|
15
|
+
readonly openAsDefault: boolean;
|
|
16
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
+
headline: {
|
|
18
|
+
type: import("vue").PropType<string>;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
hasBorderTop: {
|
|
22
|
+
type: import("vue").PropType<boolean>;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
openAsDefault: {
|
|
26
|
+
type: import("vue").PropType<boolean>;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
}>>, "headline" | "hasBorderTop" | "openAsDefault">;
|
|
30
|
+
$attrs: {
|
|
31
|
+
[x: string]: unknown;
|
|
9
32
|
};
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
default: boolean;
|
|
33
|
+
$refs: {
|
|
34
|
+
[x: string]: unknown;
|
|
13
35
|
};
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
};
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
36
|
+
$slots: Readonly<{
|
|
37
|
+
[name: string]: import("vue").Slot<any> | undefined;
|
|
38
|
+
}>;
|
|
39
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
40
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
41
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
42
|
+
$el: any;
|
|
43
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
44
|
+
headline: {
|
|
45
|
+
type: import("vue").PropType<string>;
|
|
46
|
+
default: string;
|
|
47
|
+
};
|
|
48
|
+
hasBorderTop: {
|
|
49
|
+
type: import("vue").PropType<boolean>;
|
|
50
|
+
default: boolean;
|
|
51
|
+
};
|
|
52
|
+
openAsDefault: {
|
|
53
|
+
type: import("vue").PropType<boolean>;
|
|
54
|
+
default: boolean;
|
|
55
|
+
};
|
|
56
|
+
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
57
|
+
headline: string;
|
|
58
|
+
hasBorderTop: boolean;
|
|
59
|
+
openAsDefault: boolean;
|
|
60
|
+
}, {}, string, {}> & {
|
|
61
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
62
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
63
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
64
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
65
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
66
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
67
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
68
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
69
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
70
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
71
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
72
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
73
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
74
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
75
|
+
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;
|
|
30
76
|
};
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
}, true, {}, {}, {
|
|
36
|
-
P: {};
|
|
37
|
-
B: {};
|
|
38
|
-
D: {};
|
|
39
|
-
C: {};
|
|
40
|
-
M: {};
|
|
41
|
-
Defaults: {};
|
|
42
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
|
77
|
+
$forceUpdate: () => void;
|
|
78
|
+
$nextTick: typeof import("vue").nextTick;
|
|
79
|
+
$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;
|
|
80
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
|
43
81
|
headline: {
|
|
44
82
|
type: import("vue").PropType<string>;
|
|
45
83
|
default: string;
|
|
@@ -52,11 +90,7 @@ declare const meta: {
|
|
|
52
90
|
type: import("vue").PropType<boolean>;
|
|
53
91
|
default: boolean;
|
|
54
92
|
};
|
|
55
|
-
}
|
|
56
|
-
headline: string;
|
|
57
|
-
hasBorderTop: boolean;
|
|
58
|
-
openAsDefault: boolean;
|
|
59
|
-
}>;
|
|
93
|
+
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
60
94
|
__isFragment?: undefined;
|
|
61
95
|
__isTeleport?: undefined;
|
|
62
96
|
__isSuspense?: undefined;
|