@v1nt1248/3nclient-lib 0.0.38 → 0.0.39

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 (34) hide show
  1. package/dist/components/ui3n-badge-simple.vue.d.ts +4 -1
  2. package/dist/components/ui3n-badge.vue.d.ts +4 -1
  3. package/dist/components/ui3n-button.vue.d.ts +4 -1
  4. package/dist/components/ui3n-checkbox.vue.d.ts +6 -3
  5. package/dist/components/ui3n-chip.vue.d.ts +5 -2
  6. package/dist/components/ui3n-dialog.vue.d.ts +1 -1
  7. package/dist/components/ui3n-drop-files.vue.d.ts +1 -1
  8. package/dist/components/ui3n-emoji.vue.d.ts +4 -1
  9. package/dist/components/ui3n-icon.vue.d.ts +1 -1
  10. package/dist/components/ui3n-input.vue.d.ts +1 -1
  11. package/dist/components/ui3n-list.vue.d.ts +6 -3
  12. package/dist/components/ui3n-menu.vue.d.ts +5 -2
  13. package/dist/components/ui3n-notification.vue.d.ts +1 -1
  14. package/dist/components/ui3n-table-sort-icon.vue.d.ts +1 -1
  15. package/dist/components/ui3n-table.vue.d.ts +1 -1
  16. package/dist/components/ui3n-tabs.vue.d.ts +4 -1
  17. package/dist/components/ui3n-text.vue.d.ts +2 -2
  18. package/dist/components/ui3n-virtual-scroll.vue.d.ts +6 -3
  19. package/dist/stories/Ui3nBadge.stories.d.ts +60 -96
  20. package/dist/stories/Ui3nButton.stories.d.ts +77 -113
  21. package/dist/stories/Ui3nCheckbox.stories.d.ts +100 -140
  22. package/dist/stories/Ui3nChip.stories.d.ts +300 -420
  23. package/dist/stories/Ui3nDialog.stories.d.ts +1 -1
  24. package/dist/stories/Ui3nDropFiles.stories.d.ts +32 -67
  25. package/dist/stories/Ui3nEmoji.stories.d.ts +1 -1
  26. package/dist/stories/Ui3nIcon.stories.d.ts +1 -1
  27. package/dist/stories/Ui3nInput.stories.d.ts +6 -6
  28. package/dist/stories/Ui3nList.stories.d.ts +3 -3
  29. package/dist/stories/Ui3nTabs.stories.d.ts +91 -130
  30. package/dist/style.css +1 -1
  31. package/dist/ui-3n-lib.js +2706 -2716
  32. package/package.json +38 -37
  33. package/src/components/ui3n-button.vue +7 -4
  34. package/src/components/ui3n-dialog.vue +12 -2
@@ -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;
@@ -8,143 +8,15 @@ export declare const Change_Color: StoryObj<typeof meta>;
8
8
  export declare const Indeterminate: StoryObj<typeof meta>;
9
9
  export declare const Disabled: StoryObj<typeof meta>;
10
10
  export declare const With_Label: StoryFn<{
11
- new (...args: any[]): {
12
- $: import("vue").ComponentInternalInstance;
13
- $data: {};
14
- $props: Partial<{
15
- color: string;
16
- disabled: boolean;
17
- modelValue: string | number | boolean;
18
- checkedValue: string | number | boolean;
19
- uncheckedValue: string | number | boolean;
20
- size: string | number;
21
- indeterminate: boolean;
22
- }> & Omit<{
23
- readonly color: string;
24
- readonly disabled: boolean;
25
- readonly modelValue: string | number | boolean;
26
- readonly checkedValue: string | number | boolean;
27
- readonly uncheckedValue: string | number | boolean;
28
- readonly size: string | number;
29
- readonly indeterminate: boolean;
30
- onChange?: ((value: string | number | boolean) => any) | undefined;
31
- "onUpdate:modelValue"?: ((value: string | number | boolean) => any) | undefined;
32
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
33
- color: {
34
- type: import("vue").PropType<string>;
35
- default: string;
36
- };
37
- disabled: {
38
- type: import("vue").PropType<boolean>;
39
- default: boolean;
40
- };
41
- modelValue: {
42
- type: import("vue").PropType<string | number | boolean>;
43
- required: true;
44
- default: boolean;
45
- };
46
- checkedValue: {
47
- type: import("vue").PropType<string | number | boolean>;
48
- default: boolean;
49
- };
50
- uncheckedValue: {
51
- type: import("vue").PropType<string | number | boolean>;
52
- default: boolean;
53
- };
54
- size: {
55
- type: import("vue").PropType<string | number>;
56
- default: string;
57
- };
58
- indeterminate: {
59
- type: import("vue").PropType<boolean>;
60
- default: boolean;
61
- };
62
- }>> & {
63
- onChange?: ((value: string | number | boolean) => any) | undefined;
64
- "onUpdate:modelValue"?: ((value: string | number | boolean) => any) | undefined;
65
- }, "color" | "disabled" | "modelValue" | "checkedValue" | "uncheckedValue" | "size" | "indeterminate">;
66
- $attrs: {
67
- [x: string]: unknown;
68
- };
69
- $refs: {
70
- [x: string]: unknown;
71
- };
72
- $slots: Readonly<{
73
- [name: string]: import("vue").Slot<any> | undefined;
74
- }>;
75
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
76
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
77
- $emit: ((event: "change", value: string | number | boolean) => void) & ((event: "update:modelValue", value: string | number | boolean) => void);
78
- $el: any;
79
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
80
- color: {
81
- type: import("vue").PropType<string>;
82
- default: string;
83
- };
84
- disabled: {
85
- type: import("vue").PropType<boolean>;
86
- default: boolean;
87
- };
88
- modelValue: {
89
- type: import("vue").PropType<string | number | boolean>;
90
- required: true;
91
- default: boolean;
92
- };
93
- checkedValue: {
94
- type: import("vue").PropType<string | number | boolean>;
95
- default: boolean;
96
- };
97
- uncheckedValue: {
98
- type: import("vue").PropType<string | number | boolean>;
99
- default: boolean;
100
- };
101
- size: {
102
- type: import("vue").PropType<string | number>;
103
- default: string;
104
- };
105
- indeterminate: {
106
- type: import("vue").PropType<boolean>;
107
- default: boolean;
108
- };
109
- }>> & {
110
- onChange?: ((value: string | number | boolean) => any) | undefined;
111
- "onUpdate:modelValue"?: ((value: string | number | boolean) => any) | undefined;
112
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
113
- change: (value: string | number | boolean) => void;
114
- "update:modelValue": (value: string | number | boolean) => void;
115
- }, string, {
116
- color: string;
117
- disabled: boolean;
118
- modelValue: string | number | boolean;
119
- checkedValue: string | number | boolean;
120
- uncheckedValue: string | number | boolean;
121
- size: string | number;
122
- indeterminate: boolean;
123
- }, {}, string, {}> & {
124
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
125
- created?: ((() => void) | (() => void)[]) | undefined;
126
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
127
- mounted?: ((() => void) | (() => void)[]) | undefined;
128
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
129
- updated?: ((() => void) | (() => void)[]) | undefined;
130
- activated?: ((() => void) | (() => void)[]) | undefined;
131
- deactivated?: ((() => void) | (() => void)[]) | undefined;
132
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
133
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
134
- destroyed?: ((() => void) | (() => void)[]) | undefined;
135
- unmounted?: ((() => void) | (() => void)[]) | undefined;
136
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
137
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
138
- 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;
139
- };
140
- $forceUpdate: () => void;
141
- $nextTick: typeof import("vue").nextTick;
142
- $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;
143
- } & Readonly<import("vue").ExtractPropTypes<{
11
+ new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
144
12
  color: {
145
13
  type: import("vue").PropType<string>;
146
14
  default: string;
147
15
  };
16
+ size: {
17
+ type: import("vue").PropType<string | number>;
18
+ default: string;
19
+ };
148
20
  disabled: {
149
21
  type: import("vue").PropType<boolean>;
150
22
  default: boolean;
@@ -162,10 +34,90 @@ export declare const With_Label: StoryFn<{
162
34
  type: import("vue").PropType<string | number | boolean>;
163
35
  default: boolean;
164
36
  };
37
+ indeterminate: {
38
+ type: import("vue").PropType<boolean>;
39
+ default: boolean;
40
+ };
41
+ }>> & {
42
+ onChange?: ((value: string | number | boolean) => any) | undefined;
43
+ "onUpdate:modelValue"?: ((value: string | number | boolean) => any) | undefined;
44
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
45
+ change: (value: string | number | boolean) => void;
46
+ "update:modelValue": (value: string | number | boolean) => void;
47
+ }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
48
+ color: {
49
+ type: import("vue").PropType<string>;
50
+ default: string;
51
+ };
52
+ size: {
53
+ type: import("vue").PropType<string | number>;
54
+ default: string;
55
+ };
56
+ disabled: {
57
+ type: import("vue").PropType<boolean>;
58
+ default: boolean;
59
+ };
60
+ modelValue: {
61
+ type: import("vue").PropType<string | number | boolean>;
62
+ required: true;
63
+ default: boolean;
64
+ };
65
+ checkedValue: {
66
+ type: import("vue").PropType<string | number | boolean>;
67
+ default: boolean;
68
+ };
69
+ uncheckedValue: {
70
+ type: import("vue").PropType<string | number | boolean>;
71
+ default: boolean;
72
+ };
73
+ indeterminate: {
74
+ type: import("vue").PropType<boolean>;
75
+ default: boolean;
76
+ };
77
+ }>> & {
78
+ onChange?: ((value: string | number | boolean) => any) | undefined;
79
+ "onUpdate:modelValue"?: ((value: string | number | boolean) => any) | undefined;
80
+ }, {
81
+ color: string;
82
+ size: string | number;
83
+ disabled: boolean;
84
+ modelValue: string | number | boolean;
85
+ checkedValue: string | number | boolean;
86
+ uncheckedValue: string | number | boolean;
87
+ indeterminate: boolean;
88
+ }, true, {}, {}, {
89
+ P: {};
90
+ B: {};
91
+ D: {};
92
+ C: {};
93
+ M: {};
94
+ Defaults: {};
95
+ }, Readonly<import("vue").ExtractPropTypes<{
96
+ color: {
97
+ type: import("vue").PropType<string>;
98
+ default: string;
99
+ };
165
100
  size: {
166
101
  type: import("vue").PropType<string | number>;
167
102
  default: string;
168
103
  };
104
+ disabled: {
105
+ type: import("vue").PropType<boolean>;
106
+ default: boolean;
107
+ };
108
+ modelValue: {
109
+ type: import("vue").PropType<string | number | boolean>;
110
+ required: true;
111
+ default: boolean;
112
+ };
113
+ checkedValue: {
114
+ type: import("vue").PropType<string | number | boolean>;
115
+ default: boolean;
116
+ };
117
+ uncheckedValue: {
118
+ type: import("vue").PropType<string | number | boolean>;
119
+ default: boolean;
120
+ };
169
121
  indeterminate: {
170
122
  type: import("vue").PropType<boolean>;
171
123
  default: boolean;
@@ -173,7 +125,15 @@ export declare const With_Label: StoryFn<{
173
125
  }>> & {
174
126
  onChange?: ((value: string | number | boolean) => any) | undefined;
175
127
  "onUpdate:modelValue"?: ((value: string | number | boolean) => any) | undefined;
176
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
128
+ }, {}, {}, {}, {}, {
129
+ color: string;
130
+ size: string | number;
131
+ disabled: boolean;
132
+ modelValue: string | number | boolean;
133
+ checkedValue: string | number | boolean;
134
+ uncheckedValue: string | number | boolean;
135
+ indeterminate: boolean;
136
+ }>;
177
137
  __isFragment?: undefined;
178
138
  __isTeleport?: undefined;
179
139
  __isSuspense?: undefined;
@@ -182,6 +142,10 @@ export declare const With_Label: StoryFn<{
182
142
  type: import("vue").PropType<string>;
183
143
  default: string;
184
144
  };
145
+ size: {
146
+ type: import("vue").PropType<string | number>;
147
+ default: string;
148
+ };
185
149
  disabled: {
186
150
  type: import("vue").PropType<boolean>;
187
151
  default: boolean;
@@ -199,10 +163,6 @@ export declare const With_Label: StoryFn<{
199
163
  type: import("vue").PropType<string | number | boolean>;
200
164
  default: boolean;
201
165
  };
202
- size: {
203
- type: import("vue").PropType<string | number>;
204
- default: string;
205
- };
206
166
  indeterminate: {
207
167
  type: import("vue").PropType<boolean>;
208
168
  default: boolean;
@@ -215,12 +175,12 @@ export declare const With_Label: StoryFn<{
215
175
  "update:modelValue": (value: string | number | boolean) => void;
216
176
  }, string, {
217
177
  color: string;
178
+ size: string | number;
218
179
  disabled: boolean;
219
180
  modelValue: string | number | boolean;
220
181
  checkedValue: string | number | boolean;
221
182
  uncheckedValue: string | number | boolean;
222
- size: string | number;
223
183
  indeterminate: boolean;
224
184
  }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
225
- $slots: Readonly<import("../components/ui3n-checkbox.vue").Ui3nCheckboxSlots>;
185
+ $slots: Readonly<import("../components/ui3n-checkbox.vue").Ui3nCheckboxSlots> & import("../components/ui3n-checkbox.vue").Ui3nCheckboxSlots;
226
186
  })>;