@dpa-id-components/dpa-shared-components 12.0.2 → 12.1.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/components/UiAutocomplete/UiAutocomplete.stories.d.ts +5 -5
- package/dist/components/UiAutocomplete/UiAutocomplete.vue.d.ts +5 -5
- package/dist/components/UiButtonGroup/UiButtonGroup.stories.d.ts +13 -1
- package/dist/components/UiDatePicker/UiDatePicker.stories.d.ts +2689 -33
- package/dist/components/UiDatePicker/UiDatePicker.vue.d.ts +28 -28
- package/dist/components/UiDialog/UiDialog.stories.d.ts +214 -2
- package/dist/components/UiFilterBadge/UiFilterBadge.stories.d.ts +97 -18
- package/dist/components/UiFilterBadgeButton/UiFilterBadgeButton.stories.d.ts +120 -2
- package/dist/components/UiFilterButton/UiFilterButton.stories.d.ts +76 -2
- package/dist/components/UiIcon/UiIcon.stories.d.ts +1 -16
- package/dist/components/UiIconButton/UiIconButton.stories.d.ts +50 -2
- package/dist/components/UiInfoContent/UiInfoContent.stories.d.ts +98 -2
- package/dist/components/UiInput/UiInput.stories.d.ts +368 -29
- package/dist/components/UiInput/UiInput.vue.d.ts +2 -2
- package/dist/components/UiList/UiList.stories.d.ts +2 -281
- package/dist/components/UiListItem/UiListItem.stories.d.ts +226 -2
- package/dist/components/UiMenu/UiMenu.stories.d.ts +38 -181
- package/dist/components/UiMenu/UiMenu.vue.d.ts +2 -2
- package/dist/components/UiOverlay/UiOverlay.stories.d.ts +54 -2
- package/dist/components/UiOverlayMenu/UiOverlayMenu.stories.d.ts +78 -2
- package/dist/components/UiRadioInputGroup/UiRadioInputGroup.stories.d.ts +64 -2
- package/dist/components/UiSearchBar/UiSearchBar.stories.d.ts +11 -292
- package/dist/components/UiSearchBar/UiSearchBar.vue.d.ts +2 -4
- package/dist/components/UiSearchInput/UiSearchInput.stories.d.ts +162 -2
- package/dist/components/UiSimpleInput/UiSimpleInput.stories.d.ts +44 -2
- package/dist/components/UiSkeletonBox/UiSkeletonBox.stories.d.ts +26 -2
- package/dist/components/UiSnackbar/UiSnackbar.stories.d.ts +143 -3
- package/dist/components/UiSpinner/UiSpinner.stories.d.ts +20 -2
- package/dist/components/UiToggleButton/UiToggleButton.stories.d.ts +11 -5
- package/dist/components/UiToggleButton/UiToggleButton.vue.d.ts +4 -2
- package/dist/components/UiTooltip/UiTooltip.stories.d.ts +200 -2
- package/dist/dpa-shared-components.mjs +5884 -5869
- package/dist/dpa-shared-components.umd.js +4 -4
- package/dist/style.css +1 -1
- package/dist/tailwind/tailwind.config.d.cts +3 -211
- package/dist/tailwind.config.cjs +7 -3
- package/package.json +4 -4
|
@@ -53,8 +53,8 @@ declare const meta: {
|
|
|
53
53
|
readonly infoText?: string | undefined;
|
|
54
54
|
readonly inputStatus?: "default" | "info" | "readonly" | "warning" | "error" | undefined;
|
|
55
55
|
readonly isUiAutocomplete?: boolean | undefined;
|
|
56
|
-
readonly onFocus?: ((...args: any[]) => any) | undefined;
|
|
57
56
|
readonly onBlur?: ((...args: any[]) => any) | undefined;
|
|
57
|
+
readonly onFocus?: ((...args: any[]) => any) | undefined;
|
|
58
58
|
readonly onInput?: ((...args: any[]) => any) | undefined;
|
|
59
59
|
readonly onKeyup?: ((...args: any[]) => any) | undefined;
|
|
60
60
|
readonly "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -73,7 +73,7 @@ declare const meta: {
|
|
|
73
73
|
$root: import('vue').ComponentPublicInstance | null;
|
|
74
74
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
75
75
|
$host: Element | null;
|
|
76
|
-
$emit: ((event: "
|
|
76
|
+
$emit: ((event: "blur", ...args: any[]) => void) & ((event: "focus", ...args: any[]) => void) & ((event: "input", ...args: any[]) => void) & ((event: "keyup", ...args: any[]) => void) & ((event: "update:modelValue", ...args: any[]) => void);
|
|
77
77
|
$el: any;
|
|
78
78
|
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
79
79
|
id?: string;
|
|
@@ -97,16 +97,16 @@ declare const meta: {
|
|
|
97
97
|
inputStatus?: "default" | "info" | "readonly" | "warning" | "error";
|
|
98
98
|
isUiAutocomplete?: boolean;
|
|
99
99
|
}> & Readonly<{
|
|
100
|
-
onFocus?: ((...args: any[]) => any) | undefined;
|
|
101
100
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
101
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
102
102
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
103
103
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
104
104
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
105
105
|
}>, {
|
|
106
106
|
inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
107
107
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
108
|
-
focus: (...args: any[]) => void;
|
|
109
108
|
blur: (...args: any[]) => void;
|
|
109
|
+
focus: (...args: any[]) => void;
|
|
110
110
|
input: (...args: any[]) => void;
|
|
111
111
|
keyup: (...args: any[]) => void;
|
|
112
112
|
"update:modelValue": (...args: any[]) => void;
|
|
@@ -192,8 +192,8 @@ declare const meta: {
|
|
|
192
192
|
inputStatus?: "default" | "info" | "readonly" | "warning" | "error";
|
|
193
193
|
isUiAutocomplete?: boolean;
|
|
194
194
|
}> & Readonly<{
|
|
195
|
-
onFocus?: ((...args: any[]) => any) | undefined;
|
|
196
195
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
196
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
197
197
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
198
198
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
199
199
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -44,8 +44,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
44
44
|
readonly infoText?: string | undefined;
|
|
45
45
|
readonly inputStatus?: "default" | "info" | "readonly" | "warning" | "error" | undefined;
|
|
46
46
|
readonly isUiAutocomplete?: boolean | undefined;
|
|
47
|
-
readonly onFocus?: ((...args: any[]) => any) | undefined;
|
|
48
47
|
readonly onBlur?: ((...args: any[]) => any) | undefined;
|
|
48
|
+
readonly onFocus?: ((...args: any[]) => any) | undefined;
|
|
49
49
|
readonly onInput?: ((...args: any[]) => any) | undefined;
|
|
50
50
|
readonly onKeyup?: ((...args: any[]) => any) | undefined;
|
|
51
51
|
readonly "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -64,7 +64,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
64
64
|
$root: import('vue').ComponentPublicInstance | null;
|
|
65
65
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
66
66
|
$host: Element | null;
|
|
67
|
-
$emit: ((event: "
|
|
67
|
+
$emit: ((event: "blur", ...args: any[]) => void) & ((event: "focus", ...args: any[]) => void) & ((event: "input", ...args: any[]) => void) & ((event: "keyup", ...args: any[]) => void) & ((event: "update:modelValue", ...args: any[]) => void);
|
|
68
68
|
$el: any;
|
|
69
69
|
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
70
70
|
id?: string;
|
|
@@ -88,16 +88,16 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
88
88
|
inputStatus?: "default" | "info" | "readonly" | "warning" | "error";
|
|
89
89
|
isUiAutocomplete?: boolean;
|
|
90
90
|
}> & Readonly<{
|
|
91
|
-
onFocus?: ((...args: any[]) => any) | undefined;
|
|
92
91
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
92
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
93
93
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
94
94
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
95
95
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
96
96
|
}>, {
|
|
97
97
|
inputRef: import('vue').Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
98
98
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
99
|
-
focus: (...args: any[]) => void;
|
|
100
99
|
blur: (...args: any[]) => void;
|
|
100
|
+
focus: (...args: any[]) => void;
|
|
101
101
|
input: (...args: any[]) => void;
|
|
102
102
|
keyup: (...args: any[]) => void;
|
|
103
103
|
"update:modelValue": (...args: any[]) => void;
|
|
@@ -183,8 +183,8 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
183
183
|
inputStatus?: "default" | "info" | "readonly" | "warning" | "error";
|
|
184
184
|
isUiAutocomplete?: boolean;
|
|
185
185
|
}> & Readonly<{
|
|
186
|
-
onFocus?: ((...args: any[]) => any) | undefined;
|
|
187
186
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
187
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
188
188
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
189
189
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
190
190
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -1,5 +1,17 @@
|
|
|
1
|
+
import { default as UiButtonGroup } from './UiButtonGroup.vue';
|
|
1
2
|
import { StoryObj } from '@storybook/vue3';
|
|
3
|
+
type PropsAndStoryProps = InstanceType<typeof UiButtonGroup> & {
|
|
4
|
+
activeButton: number;
|
|
5
|
+
};
|
|
2
6
|
declare const meta: {
|
|
7
|
+
argTypes: {
|
|
8
|
+
activeButton: {
|
|
9
|
+
control: "number";
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
args: {
|
|
13
|
+
activeButton: number;
|
|
14
|
+
};
|
|
3
15
|
title: string;
|
|
4
16
|
component: {
|
|
5
17
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
@@ -20,5 +32,5 @@ declare const meta: {
|
|
|
20
32
|
});
|
|
21
33
|
};
|
|
22
34
|
export default meta;
|
|
23
|
-
type Story = StoryObj<
|
|
35
|
+
type Story = StoryObj<PropsAndStoryProps>;
|
|
24
36
|
export declare const Default: Story;
|