@v1nt1248/3nclient-lib 0.0.41 → 0.0.42

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 (53) hide show
  1. package/README.md +2 -2
  2. package/dist/components/index.d.ts +20 -37
  3. package/dist/components/ui3n-badge-simple.vue.d.ts +1 -1
  4. package/dist/components/ui3n-badge.vue.d.ts +1 -1
  5. package/dist/components/ui3n-breadcrumb.vue.d.ts +1 -1
  6. package/dist/components/ui3n-breadcrumbs.vue.d.ts +1 -1
  7. package/dist/components/ui3n-button.vue.d.ts +1 -1
  8. package/dist/components/ui3n-checkbox.vue.d.ts +1 -1
  9. package/dist/components/ui3n-chip.vue.d.ts +1 -1
  10. package/dist/components/ui3n-dialog.vue.d.ts +3 -2
  11. package/dist/components/ui3n-drop-files.vue.d.ts +1 -1
  12. package/dist/components/ui3n-emoji.vue.d.ts +1 -1
  13. package/dist/components/ui3n-icon.vue.d.ts +1 -1
  14. package/dist/components/ui3n-input.vue.d.ts +1 -1
  15. package/dist/components/ui3n-list.vue.d.ts +4 -4
  16. package/dist/components/ui3n-menu.vue.d.ts +1 -1
  17. package/dist/components/ui3n-notification.vue.d.ts +3 -2
  18. package/dist/components/ui3n-table-sort-icon.vue.d.ts +1 -1
  19. package/dist/components/ui3n-table.vue.d.ts +3 -2
  20. package/dist/components/ui3n-tabs.vue.d.ts +1 -1
  21. package/dist/components/ui3n-text.vue.d.ts +1 -1
  22. package/dist/components/ui3n-virtual-scroll.vue.d.ts +4 -4
  23. package/dist/directives/index.d.ts +3 -2
  24. package/dist/directives/ui3n-click-outside.d.ts +2 -1
  25. package/dist/directives/ui3n-html.d.ts +1 -0
  26. package/dist/index.d.ts +24 -24
  27. package/dist/plugins/dialogs.d.ts +3 -3
  28. package/dist/plugins/i18n.d.ts +2 -2
  29. package/dist/plugins/icons.d.ts +1 -0
  30. package/dist/plugins/index.d.ts +9 -12
  31. package/dist/plugins/notifications.d.ts +2 -2
  32. package/dist/plugins/store-dialogs.d.ts +2 -1
  33. package/dist/plugins/store-notifications.d.ts +2 -1
  34. package/dist/plugins/store-vue-bus.d.ts +2 -1
  35. package/dist/plugins/vue-bus.d.ts +3 -3
  36. package/dist/tools/sqlite-on-3nstorage/index.d.ts +2 -1
  37. package/dist/tools/ui.helpers.d.ts +1 -0
  38. package/dist/ui-3n-lib.js +1149 -1136
  39. package/package.json +3 -2
  40. package/dist/stories/Ui3nBadge.stories.d.ts +0 -124
  41. package/dist/stories/Ui3nBreadcrumbs.stories.d.ts +0 -252
  42. package/dist/stories/Ui3nButton.stories.d.ts +0 -152
  43. package/dist/stories/Ui3nCheckbox.stories.d.ts +0 -186
  44. package/dist/stories/Ui3nChip.stories.d.ts +0 -562
  45. package/dist/stories/Ui3nDialog.stories.d.ts +0 -41
  46. package/dist/stories/Ui3nDropFiles.stories.d.ts +0 -73
  47. package/dist/stories/Ui3nEmoji.stories.d.ts +0 -39
  48. package/dist/stories/Ui3nIcon.stories.d.ts +0 -80
  49. package/dist/stories/Ui3nInput.stories.d.ts +0 -456
  50. package/dist/stories/Ui3nList.stories.d.ts +0 -54
  51. package/dist/stories/Ui3nTabs.stories.d.ts +0 -177
  52. package/dist/stories/data/data-to-list.d.ts +0 -8
  53. package/dist/stories/data/icons.d.ts +0 -1
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@v1nt1248/3nclient-lib",
3
3
  "license": "AGPL-3.0-or-later",
4
4
  "author": "v1nt1248",
5
- "version": "0.0.41",
5
+ "version": "0.0.42",
6
6
  "description": "Library for 3NWeb clients",
7
7
  "type": "module",
8
8
  "files": [
@@ -64,6 +64,7 @@
64
64
  "@vitejs/plugin-vue": "^5.0.4",
65
65
  "@vue/compiler-core": "^3.4.21",
66
66
  "@vue/eslint-config-typescript": "^13.0.0",
67
+ "@vue/runtime-core": "^3.4.21",
67
68
  "@vuedx/typescript-plugin-vue": "^0.7.6",
68
69
  "eslint": "^8.57.0",
69
70
  "eslint-plugin-import": "^2.29.1",
@@ -92,5 +93,5 @@
92
93
  "vue": "^3.4.21",
93
94
  "vue-tsc": "^2.0.7"
94
95
  },
95
- "packageManager": "yarn@4.1.1"
96
+ "packageManager": "pnpm@8.15.5"
96
97
  }
@@ -1,124 +0,0 @@
1
- import type { Meta, StoryFn, StoryObj } from '@storybook/vue3';
2
- import Ui3nBadge from '../components/ui3n-badge.vue';
3
- declare const meta: Meta<typeof Ui3nBadge>;
4
- export default meta;
5
- export declare const Badge_Simple: StoryObj<typeof meta>;
6
- export declare const Use_Slot: StoryFn<{
7
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
8
- dot: {
9
- type: import("vue").PropType<boolean>;
10
- default: boolean;
11
- };
12
- value: {
13
- type: import("vue").PropType<string | number>;
14
- default: string;
15
- };
16
- color: {
17
- type: import("vue").PropType<string>;
18
- default: string;
19
- };
20
- textColor: {
21
- type: import("vue").PropType<string>;
22
- default: string;
23
- };
24
- position: {
25
- type: import("vue").PropType<"right-top" | "right-bottom" | "left-top" | "left-bottom">;
26
- default: string;
27
- };
28
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
29
- dot: {
30
- type: import("vue").PropType<boolean>;
31
- default: boolean;
32
- };
33
- value: {
34
- type: import("vue").PropType<string | number>;
35
- default: string;
36
- };
37
- color: {
38
- type: import("vue").PropType<string>;
39
- default: string;
40
- };
41
- textColor: {
42
- type: import("vue").PropType<string>;
43
- default: string;
44
- };
45
- position: {
46
- type: import("vue").PropType<"right-top" | "right-bottom" | "left-top" | "left-bottom">;
47
- default: string;
48
- };
49
- }>>, {
50
- dot: boolean;
51
- value: string | number;
52
- color: string;
53
- textColor: string;
54
- position: "right-top" | "right-bottom" | "left-top" | "left-bottom";
55
- }, true, {}, {}, {
56
- P: {};
57
- B: {};
58
- D: {};
59
- C: {};
60
- M: {};
61
- Defaults: {};
62
- }, Readonly<import("vue").ExtractPropTypes<{
63
- dot: {
64
- type: import("vue").PropType<boolean>;
65
- default: boolean;
66
- };
67
- value: {
68
- type: import("vue").PropType<string | number>;
69
- default: string;
70
- };
71
- color: {
72
- type: import("vue").PropType<string>;
73
- default: string;
74
- };
75
- textColor: {
76
- type: import("vue").PropType<string>;
77
- default: string;
78
- };
79
- position: {
80
- type: import("vue").PropType<"right-top" | "right-bottom" | "left-top" | "left-bottom">;
81
- default: string;
82
- };
83
- }>>, {}, {}, {}, {}, {
84
- dot: boolean;
85
- value: string | number;
86
- color: string;
87
- textColor: string;
88
- position: "right-top" | "right-bottom" | "left-top" | "left-bottom";
89
- }>;
90
- __isFragment?: undefined;
91
- __isTeleport?: undefined;
92
- __isSuspense?: undefined;
93
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
94
- dot: {
95
- type: import("vue").PropType<boolean>;
96
- default: boolean;
97
- };
98
- value: {
99
- type: import("vue").PropType<string | number>;
100
- default: string;
101
- };
102
- color: {
103
- type: import("vue").PropType<string>;
104
- default: string;
105
- };
106
- textColor: {
107
- type: import("vue").PropType<string>;
108
- default: string;
109
- };
110
- position: {
111
- type: import("vue").PropType<"right-top" | "right-bottom" | "left-top" | "left-bottom">;
112
- default: string;
113
- };
114
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
115
- dot: boolean;
116
- value: string | number;
117
- color: string;
118
- textColor: string;
119
- position: "right-top" | "right-bottom" | "left-top" | "left-bottom";
120
- }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
121
- $slots: {
122
- default?(_: {}): any;
123
- };
124
- })>;
@@ -1,252 +0,0 @@
1
- import type { Meta, StoryFn } from '@storybook/vue3';
2
- import Ui3nBreadcrumbs from '../components/ui3n-breadcrumbs.vue';
3
- declare const meta: Meta<typeof Ui3nBreadcrumbs>;
4
- export default meta;
5
- export declare const Default: StoryFn<{
6
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
7
- separator: {
8
- type: import("vue").PropType<string>;
9
- default: string;
10
- };
11
- disabled: {
12
- type: import("vue").PropType<boolean>;
13
- default: boolean;
14
- };
15
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
16
- separator: {
17
- type: import("vue").PropType<string>;
18
- default: string;
19
- };
20
- disabled: {
21
- type: import("vue").PropType<boolean>;
22
- default: boolean;
23
- };
24
- }>>, {
25
- separator: string;
26
- disabled: boolean;
27
- }, true, {}, {}, {
28
- P: {};
29
- B: {};
30
- D: {};
31
- C: {};
32
- M: {};
33
- Defaults: {};
34
- }, Readonly<import("vue").ExtractPropTypes<{
35
- separator: {
36
- type: import("vue").PropType<string>;
37
- default: string;
38
- };
39
- disabled: {
40
- type: import("vue").PropType<boolean>;
41
- default: boolean;
42
- };
43
- }>>, {}, {}, {}, {}, {
44
- separator: string;
45
- disabled: boolean;
46
- }>;
47
- __isFragment?: undefined;
48
- __isTeleport?: undefined;
49
- __isSuspense?: undefined;
50
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
51
- separator: {
52
- type: import("vue").PropType<string>;
53
- default: string;
54
- };
55
- disabled: {
56
- type: import("vue").PropType<boolean>;
57
- default: boolean;
58
- };
59
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
60
- separator: string;
61
- disabled: boolean;
62
- }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
63
- $slots: {
64
- default?(_: {}): any;
65
- };
66
- })>;
67
- export declare const Another_separator: StoryFn<{
68
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
69
- separator: {
70
- type: import("vue").PropType<string>;
71
- default: string;
72
- };
73
- disabled: {
74
- type: import("vue").PropType<boolean>;
75
- default: boolean;
76
- };
77
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
78
- separator: {
79
- type: import("vue").PropType<string>;
80
- default: string;
81
- };
82
- disabled: {
83
- type: import("vue").PropType<boolean>;
84
- default: boolean;
85
- };
86
- }>>, {
87
- separator: string;
88
- disabled: boolean;
89
- }, true, {}, {}, {
90
- P: {};
91
- B: {};
92
- D: {};
93
- C: {};
94
- M: {};
95
- Defaults: {};
96
- }, Readonly<import("vue").ExtractPropTypes<{
97
- separator: {
98
- type: import("vue").PropType<string>;
99
- default: string;
100
- };
101
- disabled: {
102
- type: import("vue").PropType<boolean>;
103
- default: boolean;
104
- };
105
- }>>, {}, {}, {}, {}, {
106
- separator: string;
107
- disabled: boolean;
108
- }>;
109
- __isFragment?: undefined;
110
- __isTeleport?: undefined;
111
- __isSuspense?: undefined;
112
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
113
- separator: {
114
- type: import("vue").PropType<string>;
115
- default: string;
116
- };
117
- disabled: {
118
- type: import("vue").PropType<boolean>;
119
- default: boolean;
120
- };
121
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
122
- separator: string;
123
- disabled: boolean;
124
- }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
125
- $slots: {
126
- default?(_: {}): any;
127
- };
128
- })>;
129
- export declare const Disabled: StoryFn<{
130
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
131
- separator: {
132
- type: import("vue").PropType<string>;
133
- default: string;
134
- };
135
- disabled: {
136
- type: import("vue").PropType<boolean>;
137
- default: boolean;
138
- };
139
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
140
- separator: {
141
- type: import("vue").PropType<string>;
142
- default: string;
143
- };
144
- disabled: {
145
- type: import("vue").PropType<boolean>;
146
- default: boolean;
147
- };
148
- }>>, {
149
- separator: string;
150
- disabled: boolean;
151
- }, true, {}, {}, {
152
- P: {};
153
- B: {};
154
- D: {};
155
- C: {};
156
- M: {};
157
- Defaults: {};
158
- }, Readonly<import("vue").ExtractPropTypes<{
159
- separator: {
160
- type: import("vue").PropType<string>;
161
- default: string;
162
- };
163
- disabled: {
164
- type: import("vue").PropType<boolean>;
165
- default: boolean;
166
- };
167
- }>>, {}, {}, {}, {}, {
168
- separator: string;
169
- disabled: boolean;
170
- }>;
171
- __isFragment?: undefined;
172
- __isTeleport?: undefined;
173
- __isSuspense?: undefined;
174
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
175
- separator: {
176
- type: import("vue").PropType<string>;
177
- default: string;
178
- };
179
- disabled: {
180
- type: import("vue").PropType<boolean>;
181
- default: boolean;
182
- };
183
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
184
- separator: string;
185
- disabled: boolean;
186
- }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
187
- $slots: {
188
- default?(_: {}): any;
189
- };
190
- })>;
191
- export declare const With_separator_slot: StoryFn<{
192
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
193
- separator: {
194
- type: import("vue").PropType<string>;
195
- default: string;
196
- };
197
- disabled: {
198
- type: import("vue").PropType<boolean>;
199
- default: boolean;
200
- };
201
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
202
- separator: {
203
- type: import("vue").PropType<string>;
204
- default: string;
205
- };
206
- disabled: {
207
- type: import("vue").PropType<boolean>;
208
- default: boolean;
209
- };
210
- }>>, {
211
- separator: string;
212
- disabled: boolean;
213
- }, true, {}, {}, {
214
- P: {};
215
- B: {};
216
- D: {};
217
- C: {};
218
- M: {};
219
- Defaults: {};
220
- }, Readonly<import("vue").ExtractPropTypes<{
221
- separator: {
222
- type: import("vue").PropType<string>;
223
- default: string;
224
- };
225
- disabled: {
226
- type: import("vue").PropType<boolean>;
227
- default: boolean;
228
- };
229
- }>>, {}, {}, {}, {}, {
230
- separator: string;
231
- disabled: boolean;
232
- }>;
233
- __isFragment?: undefined;
234
- __isTeleport?: undefined;
235
- __isSuspense?: undefined;
236
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
237
- separator: {
238
- type: import("vue").PropType<string>;
239
- default: string;
240
- };
241
- disabled: {
242
- type: import("vue").PropType<boolean>;
243
- default: boolean;
244
- };
245
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
246
- separator: string;
247
- disabled: boolean;
248
- }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
249
- $slots: {
250
- default?(_: {}): any;
251
- };
252
- })>;
@@ -1,152 +0,0 @@
1
- import type { Meta, StoryObj, StoryFn } from '@storybook/vue3';
2
- import Ui3nButton from '../components/ui3n-button.vue';
3
- declare const meta: Meta<typeof Ui3nButton>;
4
- export default meta;
5
- export declare const WithText: StoryFn<{
6
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
7
- textColor: {
8
- type: import("vue").PropType<string>;
9
- };
10
- color: {
11
- type: import("vue").PropType<string>;
12
- };
13
- round: {
14
- type: import("vue").PropType<boolean>;
15
- };
16
- elevation: {
17
- type: import("vue").PropType<boolean>;
18
- };
19
- icon: {
20
- type: import("vue").PropType<string>;
21
- };
22
- iconSize: {
23
- type: import("vue").PropType<string | number>;
24
- };
25
- iconColor: {
26
- type: import("vue").PropType<string>;
27
- };
28
- disabled: {
29
- type: import("vue").PropType<boolean>;
30
- };
31
- }>> & {
32
- onFocus?: ((value: Event) => any) | undefined;
33
- onBlur?: ((value: Event) => any) | undefined;
34
- onClick?: ((value: Event) => any) | undefined;
35
- onInit?: ((value: HTMLButtonElement) => any) | undefined;
36
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
37
- init: (value: HTMLButtonElement) => void;
38
- click: (value: Event) => void;
39
- focus: (value: Event) => void;
40
- blur: (value: Event) => void;
41
- }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
42
- textColor: {
43
- type: import("vue").PropType<string>;
44
- };
45
- color: {
46
- type: import("vue").PropType<string>;
47
- };
48
- round: {
49
- type: import("vue").PropType<boolean>;
50
- };
51
- elevation: {
52
- type: import("vue").PropType<boolean>;
53
- };
54
- icon: {
55
- type: import("vue").PropType<string>;
56
- };
57
- iconSize: {
58
- type: import("vue").PropType<string | number>;
59
- };
60
- iconColor: {
61
- type: import("vue").PropType<string>;
62
- };
63
- disabled: {
64
- type: import("vue").PropType<boolean>;
65
- };
66
- }>> & {
67
- onFocus?: ((value: Event) => any) | undefined;
68
- onBlur?: ((value: Event) => any) | undefined;
69
- onClick?: ((value: Event) => any) | undefined;
70
- onInit?: ((value: HTMLButtonElement) => any) | undefined;
71
- }, {}, true, {}, {}, {
72
- P: {};
73
- B: {};
74
- D: {};
75
- C: {};
76
- M: {};
77
- Defaults: {};
78
- }, Readonly<import("vue").ExtractPropTypes<{
79
- textColor: {
80
- type: import("vue").PropType<string>;
81
- };
82
- color: {
83
- type: import("vue").PropType<string>;
84
- };
85
- round: {
86
- type: import("vue").PropType<boolean>;
87
- };
88
- elevation: {
89
- type: import("vue").PropType<boolean>;
90
- };
91
- icon: {
92
- type: import("vue").PropType<string>;
93
- };
94
- iconSize: {
95
- type: import("vue").PropType<string | number>;
96
- };
97
- iconColor: {
98
- type: import("vue").PropType<string>;
99
- };
100
- disabled: {
101
- type: import("vue").PropType<boolean>;
102
- };
103
- }>> & {
104
- onFocus?: ((value: Event) => any) | undefined;
105
- onBlur?: ((value: Event) => any) | undefined;
106
- onClick?: ((value: Event) => any) | undefined;
107
- onInit?: ((value: HTMLButtonElement) => any) | undefined;
108
- }, {}, {}, {}, {}, {}>;
109
- __isFragment?: undefined;
110
- __isTeleport?: undefined;
111
- __isSuspense?: undefined;
112
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
113
- textColor: {
114
- type: import("vue").PropType<string>;
115
- };
116
- color: {
117
- type: import("vue").PropType<string>;
118
- };
119
- round: {
120
- type: import("vue").PropType<boolean>;
121
- };
122
- elevation: {
123
- type: import("vue").PropType<boolean>;
124
- };
125
- icon: {
126
- type: import("vue").PropType<string>;
127
- };
128
- iconSize: {
129
- type: import("vue").PropType<string | number>;
130
- };
131
- iconColor: {
132
- type: import("vue").PropType<string>;
133
- };
134
- disabled: {
135
- type: import("vue").PropType<boolean>;
136
- };
137
- }>> & {
138
- onFocus?: ((value: Event) => any) | undefined;
139
- onBlur?: ((value: Event) => any) | undefined;
140
- onClick?: ((value: Event) => any) | undefined;
141
- onInit?: ((value: HTMLButtonElement) => any) | undefined;
142
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
143
- init: (value: HTMLButtonElement) => void;
144
- click: (value: Event) => void;
145
- focus: (value: Event) => void;
146
- blur: (value: Event) => void;
147
- }, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
148
- $slots: {
149
- default?(_: {}): any;
150
- };
151
- })>;
152
- export declare const Round: StoryObj<typeof meta>;