@solfacil/girassol 0.16.2 → 0.17.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 (35) hide show
  1. package/dist/components.d.ts +1 -0
  2. package/dist/components.json +1 -1
  3. package/dist/girassol.es.js +7424 -6828
  4. package/dist/girassol.umd.js +5 -5
  5. package/dist/style.css +1 -1
  6. package/dist/types/components/date-picker/DatePicker.vue.d.ts +18 -99
  7. package/dist/types/components/file-upload/Download.vue.d.ts +12 -82
  8. package/dist/types/components/file-upload/FileUpload.vue.d.ts +32 -157
  9. package/dist/types/components/file-upload/Upload.vue.d.ts +19 -103
  10. package/dist/types/components/forms/checkbox/checkbox/Checkbox.vue.d.ts +13 -81
  11. package/dist/types/components/forms/inputs/input-core/Input.vue.d.ts +15 -91
  12. package/dist/types/components/forms/inputs/input-password/InputPassword.vue.d.ts +23 -117
  13. package/dist/types/components/forms/inputs/input-textarea/InputTextarea.vue.d.ts +25 -121
  14. package/dist/types/components/forms/radio/radio/Radio.vue.d.ts +12 -78
  15. package/dist/types/components/forms/switch/Switch.vue.d.ts +21 -108
  16. package/dist/types/components/informations/text-value/TextValue.vue.d.ts +3 -3
  17. package/dist/types/components/list/ListItemTextValue.vue.d.ts +4 -4
  18. package/dist/types/components/loader/CircleLoader.vue.d.ts +10 -72
  19. package/dist/types/components/menus/menu/Menu.vue.d.ts +7 -7
  20. package/dist/types/components/{modal → modals/modal}/Modal.vue.d.ts +0 -0
  21. package/dist/types/components/{modal → modals/modal}/index.d.ts +0 -0
  22. package/dist/types/components/{modal → modals/modal}/modal.spec.d.ts +0 -0
  23. package/dist/types/components/{modal → modals/modal}/types.d.ts +0 -0
  24. package/dist/types/components/modals/onboarding/Onboarding.vue.d.ts +69 -0
  25. package/dist/types/components/modals/onboarding/Slider.vue.d.ts +31 -0
  26. package/dist/types/components/modals/onboarding/index.d.ts +2 -0
  27. package/dist/types/components/modals/onboarding/onboading.spec.d.ts +1 -0
  28. package/dist/types/components/modals/onboarding/types.d.ts +12 -0
  29. package/dist/types/components/pagination/Pagination.vue.d.ts +27 -148
  30. package/dist/types/components/search/Search.vue.d.ts +26 -137
  31. package/dist/types/components/steps/Steps.vue.d.ts +14 -84
  32. package/dist/types/components/tabs/TabItem.vue.d.ts +4 -0
  33. package/dist/types/components/tabs/Tabs.vue.d.ts +23 -114
  34. package/dist/types/index.d.ts +1037 -2461
  35. package/package.json +3 -3
@@ -1,139 +1,5 @@
1
1
  import type { Pagination } from './types';
2
- declare const _default: {
3
- new (...args: any[]): {
4
- $: import("vue").ComponentInternalInstance;
5
- $data: {};
6
- $props: Partial<{
7
- size: "small" | "medium";
8
- openMenuPosition: "top" | "dynamic";
9
- totalPages: Pagination['totalPages'];
10
- current: number;
11
- }> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
12
- id: Pagination['id'];
13
- size?: Pagination['size'];
14
- openMenuPosition?: Pagination['openMenuPosition'];
15
- totalPages: Pagination['totalPages'];
16
- current?: Pagination['current'];
17
- nextPageData?: Pagination['nextPageData'];
18
- previousPageData?: Pagination['previousPageData'];
19
- }>, {
20
- openMenuPosition: string;
21
- size: string;
22
- current: number;
23
- totalPages: number;
24
- }>>> & {
25
- "onUpdate:current"?: ((page: number | undefined) => any) | undefined;
26
- onPage?: ((page: number | undefined) => any) | undefined;
27
- "onPage:next"?: ((value: (Record<string, unknown> & {
28
- page: number;
29
- }) | undefined) => any) | undefined;
30
- "onPage:previous"?: ((value: (Record<string, unknown> & {
31
- page: number;
32
- }) | undefined) => any) | undefined;
33
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "size" | "openMenuPosition" | "totalPages" | "current">;
34
- $attrs: {
35
- [x: string]: unknown;
36
- };
37
- $refs: {
38
- [x: string]: unknown;
39
- };
40
- $slots: Readonly<{
41
- [name: string]: import("vue").Slot | undefined;
42
- }>;
43
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
44
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
45
- $emit: ((event: "update:current", page: number | undefined) => void) & ((event: "page", page: number | undefined) => void) & ((event: "page:next", value: (Record<string, unknown> & {
46
- page: number;
47
- }) | undefined) => void) & ((event: "page:previous", value: (Record<string, unknown> & {
48
- page: number;
49
- }) | undefined) => void);
50
- $el: any;
51
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
52
- id: Pagination['id'];
53
- size?: Pagination['size'];
54
- openMenuPosition?: Pagination['openMenuPosition'];
55
- totalPages: Pagination['totalPages'];
56
- current?: Pagination['current'];
57
- nextPageData?: Pagination['nextPageData'];
58
- previousPageData?: Pagination['previousPageData'];
59
- }>, {
60
- openMenuPosition: string;
61
- size: string;
62
- current: number;
63
- totalPages: number;
64
- }>>> & {
65
- "onUpdate:current"?: ((page: number | undefined) => any) | undefined;
66
- onPage?: ((page: number | undefined) => any) | undefined;
67
- "onPage:next"?: ((value: (Record<string, unknown> & {
68
- page: number;
69
- }) | undefined) => any) | undefined;
70
- "onPage:previous"?: ((value: (Record<string, unknown> & {
71
- page: number;
72
- }) | undefined) => any) | undefined;
73
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
74
- "update:current": (page: number | undefined) => void;
75
- } & {
76
- page: (page: number | undefined) => void;
77
- } & {
78
- "page:next": (value: (Record<string, unknown> & {
79
- page: number;
80
- }) | undefined) => void;
81
- } & {
82
- "page:previous": (value: (Record<string, unknown> & {
83
- page: number;
84
- }) | undefined) => void;
85
- }, string, {
86
- size: "small" | "medium";
87
- openMenuPosition: "top" | "dynamic";
88
- totalPages: Pagination['totalPages'];
89
- current: number;
90
- }, {}, string> & {
91
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
92
- created?: ((() => void) | (() => void)[]) | undefined;
93
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
94
- mounted?: ((() => void) | (() => void)[]) | undefined;
95
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
96
- updated?: ((() => void) | (() => void)[]) | undefined;
97
- activated?: ((() => void) | (() => void)[]) | undefined;
98
- deactivated?: ((() => void) | (() => void)[]) | undefined;
99
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
100
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
101
- destroyed?: ((() => void) | (() => void)[]) | undefined;
102
- unmounted?: ((() => void) | (() => void)[]) | undefined;
103
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
104
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
105
- 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;
106
- };
107
- $forceUpdate: () => void;
108
- $nextTick: typeof import("vue").nextTick;
109
- $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;
110
- } & Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
111
- id: Pagination['id'];
112
- size?: Pagination['size'];
113
- openMenuPosition?: Pagination['openMenuPosition'];
114
- totalPages: Pagination['totalPages'];
115
- current?: Pagination['current'];
116
- nextPageData?: Pagination['nextPageData'];
117
- previousPageData?: Pagination['previousPageData'];
118
- }>, {
119
- openMenuPosition: string;
120
- size: string;
121
- current: number;
122
- totalPages: number;
123
- }>>> & {
124
- "onUpdate:current"?: ((page: number | undefined) => any) | undefined;
125
- onPage?: ((page: number | undefined) => any) | undefined;
126
- "onPage:next"?: ((value: (Record<string, unknown> & {
127
- page: number;
128
- }) | undefined) => any) | undefined;
129
- "onPage:previous"?: ((value: (Record<string, unknown> & {
130
- page: number;
131
- }) | undefined) => any) | undefined;
132
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
133
- __isFragment?: undefined;
134
- __isTeleport?: undefined;
135
- __isSuspense?: undefined;
136
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
137
3
  id: Pagination['id'];
138
4
  size?: Pagination['size'];
139
5
  openMenuPosition?: Pagination['openMenuPosition'];
@@ -146,16 +12,7 @@ declare const _default: {
146
12
  size: string;
147
13
  current: number;
148
14
  totalPages: number;
149
- }>>> & {
150
- "onUpdate:current"?: ((page: number | undefined) => any) | undefined;
151
- onPage?: ((page: number | undefined) => any) | undefined;
152
- "onPage:next"?: ((value: (Record<string, unknown> & {
153
- page: number;
154
- }) | undefined) => any) | undefined;
155
- "onPage:previous"?: ((value: (Record<string, unknown> & {
156
- page: number;
157
- }) | undefined) => any) | undefined;
158
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
15
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
159
16
  "update:current": (page: number | undefined) => void;
160
17
  } & {
161
18
  page: (page: number | undefined) => void;
@@ -167,12 +24,34 @@ declare const _default: {
167
24
  "page:previous": (value: (Record<string, unknown> & {
168
25
  page: number;
169
26
  }) | undefined) => void;
170
- }, string, {
27
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
28
+ id: Pagination['id'];
29
+ size?: Pagination['size'];
30
+ openMenuPosition?: Pagination['openMenuPosition'];
31
+ totalPages: Pagination['totalPages'];
32
+ current?: Pagination['current'];
33
+ nextPageData?: Pagination['nextPageData'];
34
+ previousPageData?: Pagination['previousPageData'];
35
+ }>, {
36
+ openMenuPosition: string;
37
+ size: string;
38
+ current: number;
39
+ totalPages: number;
40
+ }>>> & {
41
+ "onUpdate:current"?: ((page: number | undefined) => any) | undefined;
42
+ onPage?: ((page: number | undefined) => any) | undefined;
43
+ "onPage:next"?: ((value: (Record<string, unknown> & {
44
+ page: number;
45
+ }) | undefined) => any) | undefined;
46
+ "onPage:previous"?: ((value: (Record<string, unknown> & {
47
+ page: number;
48
+ }) | undefined) => any) | undefined;
49
+ }, {
171
50
  size: "small" | "medium";
51
+ current: number;
172
52
  openMenuPosition: "top" | "dynamic";
173
53
  totalPages: Pagination['totalPages'];
174
- current: number;
175
- }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
54
+ }>;
176
55
  export default _default;
177
56
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
178
57
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -1,135 +1,5 @@
1
1
  import type { Search } from './types';
2
- declare const _default: {
3
- new (...args: any[]): {
4
- $: import("vue").ComponentInternalInstance;
5
- $data: {};
6
- $props: Partial<{
7
- modelValue: string;
8
- size: "small" | "medium";
9
- placeholder: string;
10
- loading: boolean;
11
- variant: import("./types").Variants;
12
- ariaLabel: Search['ariaLabel'];
13
- buttonDisabled: boolean;
14
- inputDisabled: boolean;
15
- }> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
16
- id: Search['id'];
17
- size?: Search['size'];
18
- variant?: Search['variant'];
19
- modelValue?: Search['modelValue'];
20
- placeholder?: Search['placeholder'];
21
- ariaLabel: Search['ariaLabel'];
22
- loading?: Search['loading'];
23
- buttonDisabled?: Search['buttonDisabled'];
24
- inputDisabled?: Search['inputDisabled'];
25
- }>, {
26
- modelValue: string;
27
- loading: boolean;
28
- inputDisabled: boolean;
29
- buttonDisabled: boolean;
30
- placeholder: string;
31
- variant: string;
32
- size: string;
33
- ariaLabel: string;
34
- }>>> & {
35
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
36
- onSearch?: ((value: string) => any) | undefined;
37
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "size" | "placeholder" | "loading" | "variant" | "ariaLabel" | "buttonDisabled" | "inputDisabled">;
38
- $attrs: {
39
- [x: string]: unknown;
40
- };
41
- $refs: {
42
- [x: string]: unknown;
43
- };
44
- $slots: Readonly<{
45
- [name: string]: import("vue").Slot | undefined;
46
- }>;
47
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
48
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
49
- $emit: ((event: "search", value: string) => void) & ((event: "update:modelValue", value: string) => void);
50
- $el: any;
51
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
52
- id: Search['id'];
53
- size?: Search['size'];
54
- variant?: Search['variant'];
55
- modelValue?: Search['modelValue'];
56
- placeholder?: Search['placeholder'];
57
- ariaLabel: Search['ariaLabel'];
58
- loading?: Search['loading'];
59
- buttonDisabled?: Search['buttonDisabled'];
60
- inputDisabled?: Search['inputDisabled'];
61
- }>, {
62
- modelValue: string;
63
- loading: boolean;
64
- inputDisabled: boolean;
65
- buttonDisabled: boolean;
66
- placeholder: string;
67
- variant: string;
68
- size: string;
69
- ariaLabel: string;
70
- }>>> & {
71
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
72
- onSearch?: ((value: string) => any) | undefined;
73
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
74
- search: (value: string) => void;
75
- } & {
76
- "update:modelValue": (value: string) => void;
77
- }, string, {
78
- modelValue: string;
79
- size: "small" | "medium";
80
- placeholder: string;
81
- loading: boolean;
82
- variant: import("./types").Variants;
83
- ariaLabel: Search['ariaLabel'];
84
- buttonDisabled: boolean;
85
- inputDisabled: boolean;
86
- }, {}, string> & {
87
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
88
- created?: ((() => void) | (() => void)[]) | undefined;
89
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
90
- mounted?: ((() => void) | (() => void)[]) | undefined;
91
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
92
- updated?: ((() => void) | (() => void)[]) | undefined;
93
- activated?: ((() => void) | (() => void)[]) | undefined;
94
- deactivated?: ((() => void) | (() => void)[]) | undefined;
95
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
96
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
97
- destroyed?: ((() => void) | (() => void)[]) | undefined;
98
- unmounted?: ((() => void) | (() => void)[]) | undefined;
99
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
100
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
101
- 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;
102
- };
103
- $forceUpdate: () => void;
104
- $nextTick: typeof import("vue").nextTick;
105
- $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;
106
- } & Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
107
- id: Search['id'];
108
- size?: Search['size'];
109
- variant?: Search['variant'];
110
- modelValue?: Search['modelValue'];
111
- placeholder?: Search['placeholder'];
112
- ariaLabel: Search['ariaLabel'];
113
- loading?: Search['loading'];
114
- buttonDisabled?: Search['buttonDisabled'];
115
- inputDisabled?: Search['inputDisabled'];
116
- }>, {
117
- modelValue: string;
118
- loading: boolean;
119
- inputDisabled: boolean;
120
- buttonDisabled: boolean;
121
- placeholder: string;
122
- variant: string;
123
- size: string;
124
- ariaLabel: string;
125
- }>>> & {
126
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
127
- onSearch?: ((value: string) => any) | undefined;
128
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
129
- __isFragment?: undefined;
130
- __isTeleport?: undefined;
131
- __isSuspense?: undefined;
132
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
133
3
  id: Search['id'];
134
4
  size?: Search['size'];
135
5
  variant?: Search['variant'];
@@ -148,14 +18,33 @@ declare const _default: {
148
18
  variant: string;
149
19
  size: string;
150
20
  ariaLabel: string;
151
- }>>> & {
152
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
153
- onSearch?: ((value: string) => any) | undefined;
154
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
21
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
155
22
  search: (value: string) => void;
156
23
  } & {
157
24
  "update:modelValue": (value: string) => void;
158
- }, string, {
25
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
26
+ id: Search['id'];
27
+ size?: Search['size'];
28
+ variant?: Search['variant'];
29
+ modelValue?: Search['modelValue'];
30
+ placeholder?: Search['placeholder'];
31
+ ariaLabel: Search['ariaLabel'];
32
+ loading?: Search['loading'];
33
+ buttonDisabled?: Search['buttonDisabled'];
34
+ inputDisabled?: Search['inputDisabled'];
35
+ }>, {
36
+ modelValue: string;
37
+ loading: boolean;
38
+ inputDisabled: boolean;
39
+ buttonDisabled: boolean;
40
+ placeholder: string;
41
+ variant: string;
42
+ size: string;
43
+ ariaLabel: string;
44
+ }>>> & {
45
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
46
+ onSearch?: ((value: string) => any) | undefined;
47
+ }, {
159
48
  modelValue: string;
160
49
  size: "small" | "medium";
161
50
  placeholder: string;
@@ -164,7 +53,7 @@ declare const _default: {
164
53
  ariaLabel: Search['ariaLabel'];
165
54
  buttonDisabled: boolean;
166
55
  inputDisabled: boolean;
167
- }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
56
+ }>;
168
57
  export default _default;
169
58
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
170
59
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -1,86 +1,5 @@
1
1
  import type { Steps } from './types';
2
- declare const _default: {
3
- new (...args: any[]): {
4
- $: import("vue").ComponentInternalInstance;
5
- $data: {};
6
- $props: Partial<{
7
- direction: "row" | "column";
8
- steps: Steps['steps'];
9
- }> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
10
- id: Steps['id'];
11
- steps: Steps['steps'];
12
- direction?: Steps['direction'];
13
- }>, {
14
- direction: string;
15
- steps: () => {
16
- key: string;
17
- text: string;
18
- subtitle: string;
19
- }[];
20
- }>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "direction" | "steps">;
21
- $attrs: {
22
- [x: string]: unknown;
23
- };
24
- $refs: {
25
- [x: string]: unknown;
26
- };
27
- $slots: Readonly<{
28
- [name: string]: import("vue").Slot | undefined;
29
- }>;
30
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
31
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
32
- $emit: (event: string, ...args: any[]) => void;
33
- $el: any;
34
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
35
- id: Steps['id'];
36
- steps: Steps['steps'];
37
- direction?: Steps['direction'];
38
- }>, {
39
- direction: string;
40
- steps: () => {
41
- key: string;
42
- text: string;
43
- subtitle: string;
44
- }[];
45
- }>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
46
- direction: "row" | "column";
47
- steps: Steps['steps'];
48
- }, {}, string> & {
49
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
50
- created?: ((() => void) | (() => void)[]) | undefined;
51
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
52
- mounted?: ((() => void) | (() => void)[]) | undefined;
53
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
54
- updated?: ((() => void) | (() => void)[]) | undefined;
55
- activated?: ((() => void) | (() => void)[]) | undefined;
56
- deactivated?: ((() => void) | (() => void)[]) | undefined;
57
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
58
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
59
- destroyed?: ((() => void) | (() => void)[]) | undefined;
60
- unmounted?: ((() => void) | (() => void)[]) | undefined;
61
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
62
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
63
- 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;
64
- };
65
- $forceUpdate: () => void;
66
- $nextTick: typeof import("vue").nextTick;
67
- $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;
68
- } & Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
69
- id: Steps['id'];
70
- steps: Steps['steps'];
71
- direction?: Steps['direction'];
72
- }>, {
73
- direction: string;
74
- steps: () => {
75
- key: string;
76
- text: string;
77
- subtitle: string;
78
- }[];
79
- }>>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
80
- __isFragment?: undefined;
81
- __isTeleport?: undefined;
82
- __isSuspense?: undefined;
83
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
84
3
  id: Steps['id'];
85
4
  steps: Steps['steps'];
86
5
  direction?: Steps['direction'];
@@ -91,10 +10,21 @@ declare const _default: {
91
10
  text: string;
92
11
  subtitle: string;
93
12
  }[];
94
- }>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
13
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
14
+ id: Steps['id'];
15
+ steps: Steps['steps'];
16
+ direction?: Steps['direction'];
17
+ }>, {
18
+ direction: string;
19
+ steps: () => {
20
+ key: string;
21
+ text: string;
22
+ subtitle: string;
23
+ }[];
24
+ }>>>, {
95
25
  direction: "row" | "column";
96
26
  steps: Steps['steps'];
97
- }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
27
+ }>;
98
28
  export default _default;
99
29
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
100
30
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -68,6 +68,10 @@ declare const _default: {
68
68
  }>, {}>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
69
69
  $slots: {
70
70
  icon: (_: {}) => any;
71
+ label: (_: {
72
+ label: string | undefined;
73
+ }) => any;
74
+ count: (_: {}) => any;
71
75
  };
72
76
  });
73
77
  export default _default;
@@ -1,112 +1,5 @@
1
1
  import type { TabList, Tabs } from './types';
2
- declare const _default: {
3
- new (...args: any[]): {
4
- $: import("vue").ComponentInternalInstance;
5
- $data: {};
6
- $props: Partial<{
7
- tabList: Tabs['tabList'];
8
- }> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
9
- id: Tabs['id'];
10
- tabList?: TabList[] | undefined;
11
- onlyLine?: Tabs['onlyLine'];
12
- }>, {
13
- tabList: () => ({
14
- label: string;
15
- disabled: boolean;
16
- key: string;
17
- active?: undefined;
18
- } | {
19
- label: string;
20
- active: boolean;
21
- key: string;
22
- disabled?: undefined;
23
- })[];
24
- }>>> & {
25
- "onUpdate:tabList"?: ((tab: TabList[]) => any) | undefined;
26
- "onTabitem:active"?: ((tab: TabList) => any) | undefined;
27
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "tabList">;
28
- $attrs: {
29
- [x: string]: unknown;
30
- };
31
- $refs: {
32
- [x: string]: unknown;
33
- };
34
- $slots: Readonly<{
35
- [name: string]: import("vue").Slot | undefined;
36
- }>;
37
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
38
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
39
- $emit: ((event: "update:tabList", tab: TabList[]) => void) & ((event: "tabitem:active", tab: TabList) => void);
40
- $el: any;
41
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
42
- id: Tabs['id'];
43
- tabList?: TabList[] | undefined;
44
- onlyLine?: Tabs['onlyLine'];
45
- }>, {
46
- tabList: () => ({
47
- label: string;
48
- disabled: boolean;
49
- key: string;
50
- active?: undefined;
51
- } | {
52
- label: string;
53
- active: boolean;
54
- key: string;
55
- disabled?: undefined;
56
- })[];
57
- }>>> & {
58
- "onUpdate:tabList"?: ((tab: TabList[]) => any) | undefined;
59
- "onTabitem:active"?: ((tab: TabList) => any) | undefined;
60
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
61
- "update:tabList": (tab: TabList[]) => void;
62
- } & {
63
- "tabitem:active": (tab: TabList) => void;
64
- }, string, {
65
- tabList: Tabs['tabList'];
66
- }, {}, string> & {
67
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
68
- created?: ((() => void) | (() => void)[]) | undefined;
69
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
70
- mounted?: ((() => void) | (() => void)[]) | undefined;
71
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
72
- updated?: ((() => void) | (() => void)[]) | undefined;
73
- activated?: ((() => void) | (() => void)[]) | undefined;
74
- deactivated?: ((() => void) | (() => void)[]) | undefined;
75
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
76
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
77
- destroyed?: ((() => void) | (() => void)[]) | undefined;
78
- unmounted?: ((() => void) | (() => void)[]) | undefined;
79
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
80
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
81
- 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;
82
- };
83
- $forceUpdate: () => void;
84
- $nextTick: typeof import("vue").nextTick;
85
- $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;
86
- } & Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
87
- id: Tabs['id'];
88
- tabList?: TabList[] | undefined;
89
- onlyLine?: Tabs['onlyLine'];
90
- }>, {
91
- tabList: () => ({
92
- label: string;
93
- disabled: boolean;
94
- key: string;
95
- active?: undefined;
96
- } | {
97
- label: string;
98
- active: boolean;
99
- key: string;
100
- disabled?: undefined;
101
- })[];
102
- }>>> & {
103
- "onUpdate:tabList"?: ((tab: TabList[]) => any) | undefined;
104
- "onTabitem:active"?: ((tab: TabList) => any) | undefined;
105
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
106
- __isFragment?: undefined;
107
- __isTeleport?: undefined;
108
- __isSuspense?: undefined;
109
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
110
3
  id: Tabs['id'];
111
4
  tabList?: TabList[] | undefined;
112
5
  onlyLine?: Tabs['onlyLine'];
@@ -122,16 +15,32 @@ declare const _default: {
122
15
  key: string;
123
16
  disabled?: undefined;
124
17
  })[];
125
- }>>> & {
126
- "onUpdate:tabList"?: ((tab: TabList[]) => any) | undefined;
127
- "onTabitem:active"?: ((tab: TabList) => any) | undefined;
128
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
129
19
  "update:tabList": (tab: TabList[]) => void;
130
20
  } & {
131
21
  "tabitem:active": (tab: TabList) => void;
132
- }, string, {
22
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
23
+ id: Tabs['id'];
24
+ tabList?: TabList[] | undefined;
25
+ onlyLine?: Tabs['onlyLine'];
26
+ }>, {
27
+ tabList: () => ({
28
+ label: string;
29
+ disabled: boolean;
30
+ key: string;
31
+ active?: undefined;
32
+ } | {
33
+ label: string;
34
+ active: boolean;
35
+ key: string;
36
+ disabled?: undefined;
37
+ })[];
38
+ }>>> & {
39
+ "onUpdate:tabList"?: ((tab: TabList[]) => any) | undefined;
40
+ "onTabitem:active"?: ((tab: TabList) => any) | undefined;
41
+ }, {
133
42
  tabList: Tabs['tabList'];
134
- }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
43
+ }>;
135
44
  export default _default;
136
45
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
137
46
  type __VLS_TypePropsToRuntimeProps<T> = {