@dpa-id-components/dpa-shared-components 12.0.1 → 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.
Files changed (38) hide show
  1. package/dist/components/UiAutocomplete/UiAutocomplete.stories.d.ts +5 -5
  2. package/dist/components/UiAutocomplete/UiAutocomplete.vue.d.ts +5 -5
  3. package/dist/components/UiButtonGroup/UiButtonGroup.stories.d.ts +13 -1
  4. package/dist/components/UiDatePicker/UiDatePicker.stories.d.ts +2689 -33
  5. package/dist/components/UiDatePicker/UiDatePicker.vue.d.ts +28 -28
  6. package/dist/components/UiDialog/UiDialog.stories.d.ts +232 -3
  7. package/dist/components/UiDialog/UiDialog.vue.d.ts +2 -0
  8. package/dist/components/UiFilterBadge/UiFilterBadge.stories.d.ts +97 -18
  9. package/dist/components/UiFilterBadgeButton/UiFilterBadgeButton.stories.d.ts +120 -2
  10. package/dist/components/UiFilterButton/UiFilterButton.stories.d.ts +76 -2
  11. package/dist/components/UiIcon/UiIcon.stories.d.ts +1 -16
  12. package/dist/components/UiIconButton/UiIconButton.stories.d.ts +50 -2
  13. package/dist/components/UiInfoContent/UiInfoContent.stories.d.ts +98 -2
  14. package/dist/components/UiInput/UiInput.stories.d.ts +368 -29
  15. package/dist/components/UiInput/UiInput.vue.d.ts +2 -2
  16. package/dist/components/UiList/UiList.stories.d.ts +2 -281
  17. package/dist/components/UiListItem/UiListItem.stories.d.ts +226 -2
  18. package/dist/components/UiMenu/UiMenu.stories.d.ts +38 -181
  19. package/dist/components/UiMenu/UiMenu.vue.d.ts +2 -2
  20. package/dist/components/UiOverlay/UiOverlay.stories.d.ts +54 -2
  21. package/dist/components/UiOverlayMenu/UiOverlayMenu.stories.d.ts +78 -2
  22. package/dist/components/UiRadioInputGroup/UiRadioInputGroup.stories.d.ts +64 -2
  23. package/dist/components/UiSearchBar/UiSearchBar.stories.d.ts +11 -292
  24. package/dist/components/UiSearchBar/UiSearchBar.vue.d.ts +2 -4
  25. package/dist/components/UiSearchInput/UiSearchInput.stories.d.ts +162 -2
  26. package/dist/components/UiSimpleInput/UiSimpleInput.stories.d.ts +44 -2
  27. package/dist/components/UiSkeletonBox/UiSkeletonBox.stories.d.ts +26 -2
  28. package/dist/components/UiSnackbar/UiSnackbar.stories.d.ts +143 -3
  29. package/dist/components/UiSpinner/UiSpinner.stories.d.ts +20 -2
  30. package/dist/components/UiToggleButton/UiToggleButton.stories.d.ts +11 -5
  31. package/dist/components/UiToggleButton/UiToggleButton.vue.d.ts +4 -2
  32. package/dist/components/UiTooltip/UiTooltip.stories.d.ts +200 -2
  33. package/dist/dpa-shared-components.mjs +5886 -5866
  34. package/dist/dpa-shared-components.umd.js +4 -4
  35. package/dist/style.css +1 -1
  36. package/dist/tailwind/tailwind.config.d.cts +3 -211
  37. package/dist/tailwind.config.cjs +7 -3
  38. package/package.json +4 -4
@@ -35,9 +35,33 @@ declare const meta: {
35
35
  default: string;
36
36
  };
37
37
  };
38
- render: (args: any) => {
38
+ render: (args: import('@storybook/vue3').ComponentPropsAndSlots<import('vue').DefineComponent<{
39
+ maxWidth?: number;
40
+ minWidth?: number;
41
+ dynamicSize?: boolean;
42
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
43
+ maxWidth?: number;
44
+ minWidth?: number;
45
+ dynamicSize?: boolean;
46
+ }> & Readonly<{}>, {
47
+ maxWidth: number;
48
+ minWidth: number;
49
+ dynamicSize: boolean;
50
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLSpanElement>>) => {
39
51
  setup(this: void): {
40
- args: any;
52
+ args: import('@storybook/vue3').ComponentPropsAndSlots<import('vue').DefineComponent<{
53
+ maxWidth?: number;
54
+ minWidth?: number;
55
+ dynamicSize?: boolean;
56
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
57
+ maxWidth?: number;
58
+ minWidth?: number;
59
+ dynamicSize?: boolean;
60
+ }> & Readonly<{}>, {
61
+ maxWidth: number;
62
+ minWidth: number;
63
+ dynamicSize: boolean;
64
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLSpanElement>>;
41
65
  };
42
66
  components: {
43
67
  UiSkeletonBox: import('vue').DefineComponent<{
@@ -101,10 +101,150 @@ declare const meta: {
101
101
  iconSize: "medium";
102
102
  type: "info";
103
103
  };
104
- render: (args: any) => {
104
+ render: (args: import('@storybook/vue3').ComponentPropsAndSlots<{
105
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
106
+ isShown?: boolean;
107
+ position?: "left" | "right";
108
+ iconName?: (typeof iconNames)[number] | null;
109
+ iconSize?: "small" | "medium" | "large";
110
+ type?: "info" | "error" | "success";
111
+ }> & Readonly<{
112
+ onInput?: ((...args: any[]) => any) | undefined;
113
+ "onAction-click"?: ((...args: any[]) => any) | undefined;
114
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
115
+ input: (...args: any[]) => void;
116
+ "action-click": (...args: any[]) => void;
117
+ }, import('vue').PublicProps, {
118
+ type: "info" | "error" | "success";
119
+ iconName: (typeof iconNames)[number] | null;
120
+ iconSize: "small" | "medium" | "large";
121
+ position: "left" | "right";
122
+ isShown: boolean;
123
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
124
+ actionBtn: HTMLButtonElement;
125
+ }, any, import('vue').ComponentProvideOptions, {
126
+ P: {};
127
+ B: {};
128
+ D: {};
129
+ C: {};
130
+ M: {};
131
+ Defaults: {};
132
+ }, Readonly<{
133
+ isShown?: boolean;
134
+ position?: "left" | "right";
135
+ iconName?: (typeof iconNames)[number] | null;
136
+ iconSize?: "small" | "medium" | "large";
137
+ type?: "info" | "error" | "success";
138
+ }> & Readonly<{
139
+ onInput?: ((...args: any[]) => any) | undefined;
140
+ "onAction-click"?: ((...args: any[]) => any) | undefined;
141
+ }>, {}, {}, {}, {}, {
142
+ type: "info" | "error" | "success";
143
+ iconName: (typeof iconNames)[number] | null;
144
+ iconSize: "small" | "medium" | "large";
145
+ position: "left" | "right";
146
+ isShown: boolean;
147
+ }>;
148
+ __isFragment?: never;
149
+ __isTeleport?: never;
150
+ __isSuspense?: never;
151
+ } & import('vue').ComponentOptionsBase<Readonly<{
152
+ isShown?: boolean;
153
+ position?: "left" | "right";
154
+ iconName?: (typeof iconNames)[number] | null;
155
+ iconSize?: "small" | "medium" | "large";
156
+ type?: "info" | "error" | "success";
157
+ }> & Readonly<{
158
+ onInput?: ((...args: any[]) => any) | undefined;
159
+ "onAction-click"?: ((...args: any[]) => any) | undefined;
160
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
161
+ input: (...args: any[]) => void;
162
+ "action-click": (...args: any[]) => void;
163
+ }, string, {
164
+ type: "info" | "error" | "success";
165
+ iconName: (typeof iconNames)[number] | null;
166
+ iconSize: "small" | "medium" | "large";
167
+ position: "left" | "right";
168
+ isShown: boolean;
169
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
170
+ $slots: {
171
+ default?(_: {}): any;
172
+ action?(_: {}): any;
173
+ };
174
+ })>) => {
105
175
  setup(this: void): {
106
- args: any;
107
- isVisible: import('vue').Ref<any, any>;
176
+ args: import('@storybook/vue3').ComponentPropsAndSlots<{
177
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
178
+ isShown?: boolean;
179
+ position?: "left" | "right";
180
+ iconName?: (typeof iconNames)[number] | null;
181
+ iconSize?: "small" | "medium" | "large";
182
+ type?: "info" | "error" | "success";
183
+ }> & Readonly<{
184
+ onInput?: ((...args: any[]) => any) | undefined;
185
+ "onAction-click"?: ((...args: any[]) => any) | undefined;
186
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
187
+ input: (...args: any[]) => void;
188
+ "action-click": (...args: any[]) => void;
189
+ }, import('vue').PublicProps, {
190
+ type: "info" | "error" | "success";
191
+ iconName: (typeof iconNames)[number] | null;
192
+ iconSize: "small" | "medium" | "large";
193
+ position: "left" | "right";
194
+ isShown: boolean;
195
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
196
+ actionBtn: HTMLButtonElement;
197
+ }, any, import('vue').ComponentProvideOptions, {
198
+ P: {};
199
+ B: {};
200
+ D: {};
201
+ C: {};
202
+ M: {};
203
+ Defaults: {};
204
+ }, Readonly<{
205
+ isShown?: boolean;
206
+ position?: "left" | "right";
207
+ iconName?: (typeof iconNames)[number] | null;
208
+ iconSize?: "small" | "medium" | "large";
209
+ type?: "info" | "error" | "success";
210
+ }> & Readonly<{
211
+ onInput?: ((...args: any[]) => any) | undefined;
212
+ "onAction-click"?: ((...args: any[]) => any) | undefined;
213
+ }>, {}, {}, {}, {}, {
214
+ type: "info" | "error" | "success";
215
+ iconName: (typeof iconNames)[number] | null;
216
+ iconSize: "small" | "medium" | "large";
217
+ position: "left" | "right";
218
+ isShown: boolean;
219
+ }>;
220
+ __isFragment?: never;
221
+ __isTeleport?: never;
222
+ __isSuspense?: never;
223
+ } & import('vue').ComponentOptionsBase<Readonly<{
224
+ isShown?: boolean;
225
+ position?: "left" | "right";
226
+ iconName?: (typeof iconNames)[number] | null;
227
+ iconSize?: "small" | "medium" | "large";
228
+ type?: "info" | "error" | "success";
229
+ }> & Readonly<{
230
+ onInput?: ((...args: any[]) => any) | undefined;
231
+ "onAction-click"?: ((...args: any[]) => any) | undefined;
232
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
233
+ input: (...args: any[]) => void;
234
+ "action-click": (...args: any[]) => void;
235
+ }, string, {
236
+ type: "info" | "error" | "success";
237
+ iconName: (typeof iconNames)[number] | null;
238
+ iconSize: "small" | "medium" | "large";
239
+ position: "left" | "right";
240
+ isShown: boolean;
241
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
242
+ $slots: {
243
+ default?(_: {}): any;
244
+ action?(_: {}): any;
245
+ };
246
+ })>;
247
+ isVisible: import('vue').Ref<boolean | undefined, boolean | undefined>;
108
248
  toggle: () => void;
109
249
  };
110
250
  components: {
@@ -29,7 +29,16 @@ declare const meta: {
29
29
  variant: "spinner";
30
30
  color: "blue";
31
31
  };
32
- render: (args: any) => {
32
+ render: (args: import('@storybook/vue3').ComponentPropsAndSlots<import('vue').DefineComponent<{
33
+ color?: "blue" | "white" | "green";
34
+ variant?: "spinner" | "bubbles";
35
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
36
+ color?: "blue" | "white" | "green";
37
+ variant?: "spinner" | "bubbles";
38
+ }> & Readonly<{}>, {
39
+ color: "blue" | "white" | "green";
40
+ variant: "spinner" | "bubbles";
41
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>>) => {
33
42
  components: {
34
43
  UiSpinner: import('vue').DefineComponent<{
35
44
  color?: "blue" | "white" | "green";
@@ -43,7 +52,16 @@ declare const meta: {
43
52
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
44
53
  };
45
54
  setup(this: void): {
46
- args: any;
55
+ args: import('@storybook/vue3').ComponentPropsAndSlots<import('vue').DefineComponent<{
56
+ color?: "blue" | "white" | "green";
57
+ variant?: "spinner" | "bubbles";
58
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
59
+ color?: "blue" | "white" | "green";
60
+ variant?: "spinner" | "bubbles";
61
+ }> & Readonly<{}>, {
62
+ color: "blue" | "white" | "green";
63
+ variant: "spinner" | "bubbles";
64
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>>;
47
65
  };
48
66
  template: string;
49
67
  };
@@ -9,12 +9,13 @@ declare const meta: {
9
9
  labelSpace?: "default" | "xl";
10
10
  labelTextSize?: "xs" | "sm" | "md" | "lg";
11
11
  labelPosition?: "left" | "right";
12
+ labelVisible?: boolean;
12
13
  color?: "blue" | "green";
13
14
  size?: "small" | "large";
14
15
  }> & Readonly<{
15
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
16
+ "onUpdate:modelValue"?: ((args_0: boolean) => any) | undefined;
16
17
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
17
- "update:modelValue": (...args: any[]) => void;
18
+ "update:modelValue": (args_0: boolean) => any;
18
19
  }, import('vue').PublicProps, {
19
20
  size: "small" | "large";
20
21
  disabled: boolean;
@@ -24,6 +25,7 @@ declare const meta: {
24
25
  labelSpace: "default" | "xl";
25
26
  labelTextSize: "xs" | "sm" | "md" | "lg";
26
27
  labelPosition: "left" | "right";
28
+ labelVisible: boolean;
27
29
  }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
28
30
  P: {};
29
31
  B: {};
@@ -38,10 +40,11 @@ declare const meta: {
38
40
  labelSpace?: "default" | "xl";
39
41
  labelTextSize?: "xs" | "sm" | "md" | "lg";
40
42
  labelPosition?: "left" | "right";
43
+ labelVisible?: boolean;
41
44
  color?: "blue" | "green";
42
45
  size?: "small" | "large";
43
46
  }> & Readonly<{
44
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
47
+ "onUpdate:modelValue"?: ((args_0: boolean) => any) | undefined;
45
48
  }>, {}, {}, {}, {}, {
46
49
  size: "small" | "large";
47
50
  disabled: boolean;
@@ -51,6 +54,7 @@ declare const meta: {
51
54
  labelSpace: "default" | "xl";
52
55
  labelTextSize: "xs" | "sm" | "md" | "lg";
53
56
  labelPosition: "left" | "right";
57
+ labelVisible: boolean;
54
58
  }>;
55
59
  __isFragment?: never;
56
60
  __isTeleport?: never;
@@ -62,12 +66,13 @@ declare const meta: {
62
66
  labelSpace?: "default" | "xl";
63
67
  labelTextSize?: "xs" | "sm" | "md" | "lg";
64
68
  labelPosition?: "left" | "right";
69
+ labelVisible?: boolean;
65
70
  color?: "blue" | "green";
66
71
  size?: "small" | "large";
67
72
  }> & Readonly<{
68
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
73
+ "onUpdate:modelValue"?: ((args_0: boolean) => any) | undefined;
69
74
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
70
- "update:modelValue": (...args: any[]) => void;
75
+ "update:modelValue": (args_0: boolean) => any;
71
76
  }, string, {
72
77
  size: "small" | "large";
73
78
  disabled: boolean;
@@ -77,6 +82,7 @@ declare const meta: {
77
82
  labelSpace: "default" | "xl";
78
83
  labelTextSize: "xs" | "sm" | "md" | "lg";
79
84
  labelPosition: "left" | "right";
85
+ labelVisible: boolean;
80
86
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
81
87
  $slots: {
82
88
  default?(_: {}): any;
@@ -5,6 +5,7 @@ type __VLS_Props = {
5
5
  labelSpace?: "default" | "xl";
6
6
  labelTextSize?: "xs" | "sm" | "md" | "lg";
7
7
  labelPosition?: "left" | "right";
8
+ labelVisible?: boolean;
8
9
  color?: "blue" | "green";
9
10
  size?: "small" | "large";
10
11
  };
@@ -18,9 +19,9 @@ declare function __VLS_template(): {
18
19
  };
19
20
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
20
21
  declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
21
- "update:modelValue": (...args: any[]) => void;
22
+ "update:modelValue": (args_0: boolean) => any;
22
23
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
23
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
24
+ "onUpdate:modelValue"?: ((args_0: boolean) => any) | undefined;
24
25
  }>, {
25
26
  size: "small" | "large";
26
27
  disabled: boolean;
@@ -30,6 +31,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
30
31
  labelSpace: "default" | "xl";
31
32
  labelTextSize: "xs" | "sm" | "md" | "lg";
32
33
  labelPosition: "left" | "right";
34
+ labelVisible: boolean;
33
35
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
34
36
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
35
37
  export default _default;
@@ -128,9 +128,207 @@ declare const meta: {
128
128
  fixed: false;
129
129
  multilines: false;
130
130
  };
131
- render: (args: any) => {
131
+ render: (args: import('@storybook/vue3').ComponentPropsAndSlots<{
132
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
133
+ position?: import('@floating-ui/utils').Placement;
134
+ structuredLayout?: boolean;
135
+ structuredInfo?: {
136
+ title: string;
137
+ description: string;
138
+ }[];
139
+ fixed?: boolean;
140
+ multilines?: boolean;
141
+ tooltipClasses?: string;
142
+ floatingUiOptions?: import('@floating-ui/vue').UseFloatingOptions | null;
143
+ transitionClasses?: Partial<Record<import('@floating-ui/utils').Placement, string>>;
144
+ animate?: boolean;
145
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
146
+ fixed: boolean;
147
+ animate: boolean;
148
+ position: import('@floating-ui/utils').Placement;
149
+ floatingUiOptions: import('@floating-ui/vue').UseFloatingOptions | null;
150
+ structuredLayout: boolean;
151
+ structuredInfo: {
152
+ title: string;
153
+ description: string;
154
+ }[];
155
+ multilines: boolean;
156
+ tooltipClasses: string;
157
+ transitionClasses: Partial<Record<import('@floating-ui/utils').Placement, string>>;
158
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
159
+ activatorElm: HTMLDivElement;
160
+ tooltipElm: HTMLDivElement;
161
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
162
+ P: {};
163
+ B: {};
164
+ D: {};
165
+ C: {};
166
+ M: {};
167
+ Defaults: {};
168
+ }, Readonly<{
169
+ position?: import('@floating-ui/utils').Placement;
170
+ structuredLayout?: boolean;
171
+ structuredInfo?: {
172
+ title: string;
173
+ description: string;
174
+ }[];
175
+ fixed?: boolean;
176
+ multilines?: boolean;
177
+ tooltipClasses?: string;
178
+ floatingUiOptions?: import('@floating-ui/vue').UseFloatingOptions | null;
179
+ transitionClasses?: Partial<Record<import('@floating-ui/utils').Placement, string>>;
180
+ animate?: boolean;
181
+ }> & Readonly<{}>, {}, {}, {}, {}, {
182
+ fixed: boolean;
183
+ animate: boolean;
184
+ position: import('@floating-ui/utils').Placement;
185
+ floatingUiOptions: import('@floating-ui/vue').UseFloatingOptions | null;
186
+ structuredLayout: boolean;
187
+ structuredInfo: {
188
+ title: string;
189
+ description: string;
190
+ }[];
191
+ multilines: boolean;
192
+ tooltipClasses: string;
193
+ transitionClasses: Partial<Record<import('@floating-ui/utils').Placement, string>>;
194
+ }>;
195
+ __isFragment?: never;
196
+ __isTeleport?: never;
197
+ __isSuspense?: never;
198
+ } & import('vue').ComponentOptionsBase<Readonly<{
199
+ position?: import('@floating-ui/utils').Placement;
200
+ structuredLayout?: boolean;
201
+ structuredInfo?: {
202
+ title: string;
203
+ description: string;
204
+ }[];
205
+ fixed?: boolean;
206
+ multilines?: boolean;
207
+ tooltipClasses?: string;
208
+ floatingUiOptions?: import('@floating-ui/vue').UseFloatingOptions | null;
209
+ transitionClasses?: Partial<Record<import('@floating-ui/utils').Placement, string>>;
210
+ animate?: boolean;
211
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
212
+ fixed: boolean;
213
+ animate: boolean;
214
+ position: import('@floating-ui/utils').Placement;
215
+ floatingUiOptions: import('@floating-ui/vue').UseFloatingOptions | null;
216
+ structuredLayout: boolean;
217
+ structuredInfo: {
218
+ title: string;
219
+ description: string;
220
+ }[];
221
+ multilines: boolean;
222
+ tooltipClasses: string;
223
+ transitionClasses: Partial<Record<import('@floating-ui/utils').Placement, string>>;
224
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
225
+ $slots: {
226
+ activator?(_: {}): any;
227
+ default?(_: {}): any;
228
+ default?(_: {}): any;
229
+ };
230
+ })>) => {
132
231
  setup(this: void): {
133
- args: any;
232
+ args: import('@storybook/vue3').ComponentPropsAndSlots<{
233
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
234
+ position?: import('@floating-ui/utils').Placement;
235
+ structuredLayout?: boolean;
236
+ structuredInfo?: {
237
+ title: string;
238
+ description: string;
239
+ }[];
240
+ fixed?: boolean;
241
+ multilines?: boolean;
242
+ tooltipClasses?: string;
243
+ floatingUiOptions?: import('@floating-ui/vue').UseFloatingOptions | null;
244
+ transitionClasses?: Partial<Record<import('@floating-ui/utils').Placement, string>>;
245
+ animate?: boolean;
246
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
247
+ fixed: boolean;
248
+ animate: boolean;
249
+ position: import('@floating-ui/utils').Placement;
250
+ floatingUiOptions: import('@floating-ui/vue').UseFloatingOptions | null;
251
+ structuredLayout: boolean;
252
+ structuredInfo: {
253
+ title: string;
254
+ description: string;
255
+ }[];
256
+ multilines: boolean;
257
+ tooltipClasses: string;
258
+ transitionClasses: Partial<Record<import('@floating-ui/utils').Placement, string>>;
259
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
260
+ activatorElm: HTMLDivElement;
261
+ tooltipElm: HTMLDivElement;
262
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
263
+ P: {};
264
+ B: {};
265
+ D: {};
266
+ C: {};
267
+ M: {};
268
+ Defaults: {};
269
+ }, Readonly<{
270
+ position?: import('@floating-ui/utils').Placement;
271
+ structuredLayout?: boolean;
272
+ structuredInfo?: {
273
+ title: string;
274
+ description: string;
275
+ }[];
276
+ fixed?: boolean;
277
+ multilines?: boolean;
278
+ tooltipClasses?: string;
279
+ floatingUiOptions?: import('@floating-ui/vue').UseFloatingOptions | null;
280
+ transitionClasses?: Partial<Record<import('@floating-ui/utils').Placement, string>>;
281
+ animate?: boolean;
282
+ }> & Readonly<{}>, {}, {}, {}, {}, {
283
+ fixed: boolean;
284
+ animate: boolean;
285
+ position: import('@floating-ui/utils').Placement;
286
+ floatingUiOptions: import('@floating-ui/vue').UseFloatingOptions | null;
287
+ structuredLayout: boolean;
288
+ structuredInfo: {
289
+ title: string;
290
+ description: string;
291
+ }[];
292
+ multilines: boolean;
293
+ tooltipClasses: string;
294
+ transitionClasses: Partial<Record<import('@floating-ui/utils').Placement, string>>;
295
+ }>;
296
+ __isFragment?: never;
297
+ __isTeleport?: never;
298
+ __isSuspense?: never;
299
+ } & import('vue').ComponentOptionsBase<Readonly<{
300
+ position?: import('@floating-ui/utils').Placement;
301
+ structuredLayout?: boolean;
302
+ structuredInfo?: {
303
+ title: string;
304
+ description: string;
305
+ }[];
306
+ fixed?: boolean;
307
+ multilines?: boolean;
308
+ tooltipClasses?: string;
309
+ floatingUiOptions?: import('@floating-ui/vue').UseFloatingOptions | null;
310
+ transitionClasses?: Partial<Record<import('@floating-ui/utils').Placement, string>>;
311
+ animate?: boolean;
312
+ }> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
313
+ fixed: boolean;
314
+ animate: boolean;
315
+ position: import('@floating-ui/utils').Placement;
316
+ floatingUiOptions: import('@floating-ui/vue').UseFloatingOptions | null;
317
+ structuredLayout: boolean;
318
+ structuredInfo: {
319
+ title: string;
320
+ description: string;
321
+ }[];
322
+ multilines: boolean;
323
+ tooltipClasses: string;
324
+ transitionClasses: Partial<Record<import('@floating-ui/utils').Placement, string>>;
325
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
326
+ $slots: {
327
+ activator?(_: {}): any;
328
+ default?(_: {}): any;
329
+ default?(_: {}): any;
330
+ };
331
+ })>;
134
332
  };
135
333
  components: {
136
334
  UiTooltip: {