@v1nt1248/3nclient-lib 0.0.38 → 0.0.40

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 (43) hide show
  1. package/README.md +2 -0
  2. package/dist/components/index.d.ts +5 -1
  3. package/dist/components/ui3n-badge-simple.vue.d.ts +4 -1
  4. package/dist/components/ui3n-badge.vue.d.ts +4 -1
  5. package/dist/components/ui3n-breadcrumb.vue.d.ts +52 -0
  6. package/dist/components/ui3n-breadcrumbs.vue.d.ts +39 -0
  7. package/dist/components/ui3n-button.vue.d.ts +4 -1
  8. package/dist/components/ui3n-checkbox.vue.d.ts +6 -3
  9. package/dist/components/ui3n-chip.vue.d.ts +5 -2
  10. package/dist/components/ui3n-dialog.vue.d.ts +1 -1
  11. package/dist/components/ui3n-drop-files.vue.d.ts +1 -1
  12. package/dist/components/ui3n-emoji.vue.d.ts +4 -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 +6 -3
  16. package/dist/components/ui3n-menu.vue.d.ts +5 -2
  17. package/dist/components/ui3n-notification.vue.d.ts +1 -1
  18. package/dist/components/ui3n-table-sort-icon.vue.d.ts +1 -1
  19. package/dist/components/ui3n-table.vue.d.ts +1 -1
  20. package/dist/components/ui3n-tabs.vue.d.ts +4 -1
  21. package/dist/components/ui3n-text.vue.d.ts +2 -2
  22. package/dist/components/ui3n-virtual-scroll.vue.d.ts +6 -3
  23. package/dist/index.d.ts +4 -0
  24. package/dist/stories/Ui3nBadge.stories.d.ts +60 -96
  25. package/dist/stories/Ui3nBreadcrumbs.stories.d.ts +252 -0
  26. package/dist/stories/Ui3nButton.stories.d.ts +77 -113
  27. package/dist/stories/Ui3nCheckbox.stories.d.ts +100 -140
  28. package/dist/stories/Ui3nChip.stories.d.ts +300 -420
  29. package/dist/stories/Ui3nDialog.stories.d.ts +1 -1
  30. package/dist/stories/Ui3nDropFiles.stories.d.ts +32 -67
  31. package/dist/stories/Ui3nEmoji.stories.d.ts +1 -1
  32. package/dist/stories/Ui3nIcon.stories.d.ts +1 -1
  33. package/dist/stories/Ui3nInput.stories.d.ts +6 -6
  34. package/dist/stories/Ui3nList.stories.d.ts +3 -3
  35. package/dist/stories/Ui3nTabs.stories.d.ts +91 -130
  36. package/dist/style.css +1 -1
  37. package/dist/ui-3n-lib.js +4461 -4401
  38. package/package.json +44 -44
  39. package/src/components/index.ts +10 -0
  40. package/src/components/ui3n-breadcrumb.vue +105 -0
  41. package/src/components/ui3n-breadcrumbs.vue +28 -0
  42. package/src/components/ui3n-button.vue +7 -4
  43. package/src/components/ui3n-dialog.vue +12 -2
@@ -4,104 +4,62 @@ declare const meta: Meta<typeof Ui3nBadge>;
4
4
  export default meta;
5
5
  export declare const Badge_Simple: StoryObj<typeof meta>;
6
6
  export declare const Use_Slot: StoryFn<{
7
- new (...args: any[]): {
8
- $: import("vue").ComponentInternalInstance;
9
- $data: {};
10
- $props: Partial<{
11
- dot: boolean;
12
- value: string | number;
13
- color: string;
14
- textColor: string;
15
- position: "right-top" | "right-bottom" | "left-top" | "left-bottom";
16
- }> & Omit<{
17
- readonly dot: boolean;
18
- readonly value: string | number;
19
- readonly color: string;
20
- readonly textColor: string;
21
- readonly position: "right-top" | "right-bottom" | "left-top" | "left-bottom";
22
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
23
- dot: {
24
- type: import("vue").PropType<boolean>;
25
- default: boolean;
26
- };
27
- value: {
28
- type: import("vue").PropType<string | number>;
29
- default: string;
30
- };
31
- color: {
32
- type: import("vue").PropType<string>;
33
- default: string;
34
- };
35
- textColor: {
36
- type: import("vue").PropType<string>;
37
- default: string;
38
- };
39
- position: {
40
- type: import("vue").PropType<"right-top" | "right-bottom" | "left-top" | "left-bottom">;
41
- default: string;
42
- };
43
- }>>, "dot" | "value" | "color" | "textColor" | "position">;
44
- $attrs: {
45
- [x: string]: unknown;
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;
46
15
  };
47
- $refs: {
48
- [x: string]: unknown;
16
+ color: {
17
+ type: import("vue").PropType<string>;
18
+ default: string;
49
19
  };
50
- $slots: Readonly<{
51
- [name: string]: import("vue").Slot<any> | undefined;
52
- }>;
53
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
54
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
55
- $emit: (event: string, ...args: any[]) => void;
56
- $el: any;
57
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
58
- dot: {
59
- type: import("vue").PropType<boolean>;
60
- default: boolean;
61
- };
62
- value: {
63
- type: import("vue").PropType<string | number>;
64
- default: string;
65
- };
66
- color: {
67
- type: import("vue").PropType<string>;
68
- default: string;
69
- };
70
- textColor: {
71
- type: import("vue").PropType<string>;
72
- default: string;
73
- };
74
- position: {
75
- type: import("vue").PropType<"right-top" | "right-bottom" | "left-top" | "left-bottom">;
76
- default: string;
77
- };
78
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
79
- dot: boolean;
80
- value: string | number;
81
- color: string;
82
- textColor: string;
83
- position: "right-top" | "right-bottom" | "left-top" | "left-bottom";
84
- }, {}, string, {}> & {
85
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
86
- created?: ((() => void) | (() => void)[]) | undefined;
87
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
88
- mounted?: ((() => void) | (() => void)[]) | undefined;
89
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
90
- updated?: ((() => void) | (() => void)[]) | undefined;
91
- activated?: ((() => void) | (() => void)[]) | undefined;
92
- deactivated?: ((() => void) | (() => void)[]) | undefined;
93
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
94
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
95
- destroyed?: ((() => void) | (() => void)[]) | undefined;
96
- unmounted?: ((() => void) | (() => void)[]) | undefined;
97
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
98
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
99
- 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;
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;
100
48
  };
101
- $forceUpdate: () => void;
102
- $nextTick: typeof import("vue").nextTick;
103
- $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;
104
- } & Readonly<import("vue").ExtractPropTypes<{
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<{
105
63
  dot: {
106
64
  type: import("vue").PropType<boolean>;
107
65
  default: boolean;
@@ -122,7 +80,13 @@ export declare const Use_Slot: StoryFn<{
122
80
  type: import("vue").PropType<"right-top" | "right-bottom" | "left-top" | "left-bottom">;
123
81
  default: string;
124
82
  };
125
- }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
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
+ }>;
126
90
  __isFragment?: undefined;
127
91
  __isTeleport?: undefined;
128
92
  __isSuspense?: undefined;
@@ -0,0 +1,252 @@
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
+ })>;
@@ -3,118 +3,7 @@ import Ui3nButton from '../components/ui3n-button.vue';
3
3
  declare const meta: Meta<typeof Ui3nButton>;
4
4
  export default meta;
5
5
  export declare const WithText: StoryFn<{
6
- new (...args: any[]): {
7
- $: import("vue").ComponentInternalInstance;
8
- $data: {};
9
- $props: Partial<{}> & Omit<{
10
- readonly color?: string | undefined;
11
- readonly textColor?: string | undefined;
12
- readonly icon?: string | undefined;
13
- readonly round?: boolean | undefined;
14
- readonly elevation?: boolean | undefined;
15
- readonly iconSize?: string | number | undefined;
16
- readonly iconColor?: string | undefined;
17
- readonly disabled?: boolean | undefined;
18
- onFocus?: ((value: Event) => any) | undefined;
19
- onBlur?: ((value: Event) => any) | undefined;
20
- onClick?: ((value: Event) => any) | undefined;
21
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
22
- textColor: {
23
- type: import("vue").PropType<string>;
24
- };
25
- color: {
26
- type: import("vue").PropType<string>;
27
- };
28
- round: {
29
- type: import("vue").PropType<boolean>;
30
- };
31
- elevation: {
32
- type: import("vue").PropType<boolean>;
33
- };
34
- icon: {
35
- type: import("vue").PropType<string>;
36
- };
37
- iconSize: {
38
- type: import("vue").PropType<string | number>;
39
- };
40
- iconColor: {
41
- type: import("vue").PropType<string>;
42
- };
43
- disabled: {
44
- type: import("vue").PropType<boolean>;
45
- };
46
- }>> & {
47
- onFocus?: ((value: Event) => any) | undefined;
48
- onBlur?: ((value: Event) => any) | undefined;
49
- onClick?: ((value: Event) => any) | undefined;
50
- }, never>;
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: "click", value: Event) => void) & ((event: "focus", value: Event) => void) & ((event: "blur", value: Event) => void);
63
- $el: any;
64
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
65
- textColor: {
66
- type: import("vue").PropType<string>;
67
- };
68
- color: {
69
- type: import("vue").PropType<string>;
70
- };
71
- round: {
72
- type: import("vue").PropType<boolean>;
73
- };
74
- elevation: {
75
- type: import("vue").PropType<boolean>;
76
- };
77
- icon: {
78
- type: import("vue").PropType<string>;
79
- };
80
- iconSize: {
81
- type: import("vue").PropType<string | number>;
82
- };
83
- iconColor: {
84
- type: import("vue").PropType<string>;
85
- };
86
- disabled: {
87
- type: import("vue").PropType<boolean>;
88
- };
89
- }>> & {
90
- onFocus?: ((value: Event) => any) | undefined;
91
- onBlur?: ((value: Event) => any) | undefined;
92
- onClick?: ((value: Event) => any) | undefined;
93
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
94
- click: (value: Event) => void;
95
- focus: (value: Event) => void;
96
- blur: (value: Event) => void;
97
- }, string, {}, {}, string, {}> & {
98
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
99
- created?: ((() => void) | (() => void)[]) | undefined;
100
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
101
- mounted?: ((() => void) | (() => void)[]) | undefined;
102
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
103
- updated?: ((() => void) | (() => void)[]) | undefined;
104
- activated?: ((() => void) | (() => void)[]) | undefined;
105
- deactivated?: ((() => void) | (() => void)[]) | undefined;
106
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
107
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
108
- destroyed?: ((() => void) | (() => void)[]) | undefined;
109
- unmounted?: ((() => void) | (() => void)[]) | undefined;
110
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
111
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
112
- 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;
113
- };
114
- $forceUpdate: () => void;
115
- $nextTick: typeof import("vue").nextTick;
116
- $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;
117
- } & Readonly<import("vue").ExtractPropTypes<{
6
+ new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
118
7
  textColor: {
119
8
  type: import("vue").PropType<string>;
120
9
  };
@@ -143,7 +32,80 @@ export declare const WithText: StoryFn<{
143
32
  onFocus?: ((value: Event) => any) | undefined;
144
33
  onBlur?: ((value: Event) => any) | undefined;
145
34
  onClick?: ((value: Event) => any) | undefined;
146
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
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
+ }, {}, {}, {}, {}, {}>;
147
109
  __isFragment?: undefined;
148
110
  __isTeleport?: undefined;
149
111
  __isSuspense?: undefined;
@@ -176,7 +138,9 @@ export declare const WithText: StoryFn<{
176
138
  onFocus?: ((value: Event) => any) | undefined;
177
139
  onBlur?: ((value: Event) => any) | undefined;
178
140
  onClick?: ((value: Event) => any) | undefined;
141
+ onInit?: ((value: HTMLButtonElement) => any) | undefined;
179
142
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
143
+ init: (value: HTMLButtonElement) => void;
180
144
  click: (value: Event) => void;
181
145
  focus: (value: Event) => void;
182
146
  blur: (value: Event) => void;