@velkymx/vibeui 0.3.0 → 0.4.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 (70) hide show
  1. package/README.md +362 -1
  2. package/dist/App.vue.d.ts +2 -0
  3. package/dist/components/HelloWorld.vue.d.ts +5 -0
  4. package/dist/components/VibeAccordion.vue.d.ts +51 -0
  5. package/dist/components/VibeAccordionItem.vue.d.ts +57 -0
  6. package/dist/components/VibeAlert.vue.d.ts +61 -0
  7. package/dist/components/VibeBadge.vue.d.ts +52 -0
  8. package/dist/components/VibeBreadcrumb.vue.d.ts +43 -0
  9. package/dist/components/VibeBreadcrumbItem.vue.d.ts +51 -0
  10. package/dist/components/VibeButton.vue.d.ts +99 -0
  11. package/dist/components/VibeButtonGroup.vue.d.ts +61 -0
  12. package/dist/components/VibeCard.vue.d.ts +126 -0
  13. package/dist/components/VibeCardBody.vue.d.ts +34 -0
  14. package/dist/components/VibeCardFooter.vue.d.ts +34 -0
  15. package/dist/components/VibeCardHeader.vue.d.ts +34 -0
  16. package/dist/components/VibeCardImg.vue.d.ts +44 -0
  17. package/dist/components/VibeCardText.vue.d.ts +33 -0
  18. package/dist/components/VibeCardTitle.vue.d.ts +33 -0
  19. package/dist/components/VibeCarousel.vue.d.ts +137 -0
  20. package/dist/components/VibeCarouselSlide.vue.d.ts +80 -0
  21. package/dist/components/VibeCloseButton.vue.d.ts +38 -0
  22. package/dist/components/VibeCol.vue.d.ts +206 -0
  23. package/dist/components/VibeCollapse.vue.d.ts +70 -0
  24. package/dist/components/VibeContainer.vue.d.ts +44 -0
  25. package/dist/components/VibeDataTable.vue.d.ts +261 -0
  26. package/dist/components/VibeDropdown.vue.d.ts +96 -0
  27. package/dist/components/VibeDropdownItem.vue.d.ts +81 -0
  28. package/dist/components/VibeFormCheckbox.vue.d.ts +134 -0
  29. package/dist/components/VibeFormDatepicker.vue.d.ts +154 -0
  30. package/dist/components/VibeFormGroup.vue.d.ts +112 -0
  31. package/dist/components/VibeFormInput.vue.d.ts +154 -0
  32. package/dist/components/VibeFormRadio.vue.d.ts +132 -0
  33. package/dist/components/VibeFormSelect.vue.d.ts +167 -0
  34. package/dist/components/VibeFormSpinbutton.vue.d.ts +176 -0
  35. package/dist/components/VibeFormSwitch.vue.d.ts +107 -0
  36. package/dist/components/VibeFormTextarea.vue.d.ts +163 -0
  37. package/dist/components/VibeFormWysiwyg.vue.d.ts +156 -0
  38. package/dist/components/VibeIcon.vue.d.ts +83 -0
  39. package/dist/components/VibeListGroup.vue.d.ts +63 -0
  40. package/dist/components/VibeListGroupItem.vue.d.ts +90 -0
  41. package/dist/components/VibeModal.vue.d.ts +126 -0
  42. package/dist/components/VibeNav.vue.d.ts +81 -0
  43. package/dist/components/VibeNavItem.vue.d.ts +80 -0
  44. package/dist/components/VibeNavbar.vue.d.ts +71 -0
  45. package/dist/components/VibeNavbarBrand.vue.d.ts +42 -0
  46. package/dist/components/VibeNavbarNav.vue.d.ts +36 -0
  47. package/dist/components/VibeNavbarToggle.vue.d.ts +26 -0
  48. package/dist/components/VibeOffcanvas.vue.d.ts +89 -0
  49. package/dist/components/VibePagination.vue.d.ts +72 -0
  50. package/dist/components/VibePaginationItem.vue.d.ts +62 -0
  51. package/dist/components/VibePlaceholder.vue.d.ts +70 -0
  52. package/dist/components/VibePopover.vue.d.ts +69 -0
  53. package/dist/components/VibeProgress.vue.d.ts +33 -0
  54. package/dist/components/VibeProgressBar.vue.d.ts +88 -0
  55. package/dist/components/VibeRow.vue.d.ts +269 -0
  56. package/dist/components/VibeScrollspy.vue.d.ts +71 -0
  57. package/dist/components/VibeSpinner.vue.d.ts +55 -0
  58. package/dist/components/VibeTabContent.vue.d.ts +44 -0
  59. package/dist/components/VibeTabPane.vue.d.ts +70 -0
  60. package/dist/components/VibeToast.vue.d.ts +90 -0
  61. package/dist/components/VibeTooltip.vue.d.ts +60 -0
  62. package/dist/components/index.d.ts +63 -0
  63. package/dist/composables/useFormValidation.d.ts +26 -0
  64. package/dist/index.d.ts +3 -0
  65. package/dist/main.d.ts +0 -0
  66. package/dist/types/index.d.ts +2 -0
  67. package/dist/types.d.ts +100 -0
  68. package/dist/vibeui.es.js +1262 -1018
  69. package/dist/vibeui.umd.js +1 -1
  70. package/package.json +9 -4
@@ -0,0 +1,107 @@
1
+ import { ValidationState, ValidationRule, ValidatorFunction } from '../types';
2
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3
+ modelValue: {
4
+ type: BooleanConstructor;
5
+ default: boolean;
6
+ };
7
+ id: {
8
+ type: StringConstructor;
9
+ required: true;
10
+ };
11
+ label: {
12
+ type: StringConstructor;
13
+ default: undefined;
14
+ };
15
+ disabled: {
16
+ type: BooleanConstructor;
17
+ default: boolean;
18
+ };
19
+ required: {
20
+ type: BooleanConstructor;
21
+ default: boolean;
22
+ };
23
+ validationState: {
24
+ type: () => ValidationState;
25
+ default: null;
26
+ };
27
+ validationMessage: {
28
+ type: StringConstructor;
29
+ default: undefined;
30
+ };
31
+ validationRules: {
32
+ type: () => ValidationRule[] | ValidatorFunction | undefined;
33
+ default: undefined;
34
+ };
35
+ validateOn: {
36
+ type: () => "change" | "blur";
37
+ default: string;
38
+ };
39
+ helpText: {
40
+ type: StringConstructor;
41
+ default: undefined;
42
+ };
43
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
44
+ "update:modelValue": (...args: any[]) => void;
45
+ blur: (...args: any[]) => void;
46
+ change: (...args: any[]) => void;
47
+ focus: (...args: any[]) => void;
48
+ validate: (...args: any[]) => void;
49
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
50
+ modelValue: {
51
+ type: BooleanConstructor;
52
+ default: boolean;
53
+ };
54
+ id: {
55
+ type: StringConstructor;
56
+ required: true;
57
+ };
58
+ label: {
59
+ type: StringConstructor;
60
+ default: undefined;
61
+ };
62
+ disabled: {
63
+ type: BooleanConstructor;
64
+ default: boolean;
65
+ };
66
+ required: {
67
+ type: BooleanConstructor;
68
+ default: boolean;
69
+ };
70
+ validationState: {
71
+ type: () => ValidationState;
72
+ default: null;
73
+ };
74
+ validationMessage: {
75
+ type: StringConstructor;
76
+ default: undefined;
77
+ };
78
+ validationRules: {
79
+ type: () => ValidationRule[] | ValidatorFunction | undefined;
80
+ default: undefined;
81
+ };
82
+ validateOn: {
83
+ type: () => "change" | "blur";
84
+ default: string;
85
+ };
86
+ helpText: {
87
+ type: StringConstructor;
88
+ default: undefined;
89
+ };
90
+ }>> & Readonly<{
91
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
92
+ onBlur?: ((...args: any[]) => any) | undefined;
93
+ onChange?: ((...args: any[]) => any) | undefined;
94
+ onFocus?: ((...args: any[]) => any) | undefined;
95
+ onValidate?: ((...args: any[]) => any) | undefined;
96
+ }>, {
97
+ modelValue: boolean;
98
+ required: boolean;
99
+ label: string;
100
+ disabled: boolean;
101
+ validationState: ValidationState;
102
+ validationMessage: string;
103
+ validationRules: ValidatorFunction | ValidationRule[] | undefined;
104
+ validateOn: "blur" | "change";
105
+ helpText: string;
106
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
107
+ export default _default;
@@ -0,0 +1,163 @@
1
+ import { ValidationState, ValidationRule, ValidatorFunction, Size } from '../types';
2
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3
+ modelValue: {
4
+ type: StringConstructor;
5
+ default: string;
6
+ };
7
+ id: {
8
+ type: StringConstructor;
9
+ required: true;
10
+ };
11
+ label: {
12
+ type: StringConstructor;
13
+ default: undefined;
14
+ };
15
+ placeholder: {
16
+ type: StringConstructor;
17
+ default: undefined;
18
+ };
19
+ disabled: {
20
+ type: BooleanConstructor;
21
+ default: boolean;
22
+ };
23
+ readonly: {
24
+ type: BooleanConstructor;
25
+ default: boolean;
26
+ };
27
+ required: {
28
+ type: BooleanConstructor;
29
+ default: boolean;
30
+ };
31
+ rows: {
32
+ type: NumberConstructor;
33
+ default: number;
34
+ };
35
+ maxlength: {
36
+ type: NumberConstructor;
37
+ default: undefined;
38
+ };
39
+ size: {
40
+ type: () => Size;
41
+ default: undefined;
42
+ };
43
+ validationState: {
44
+ type: () => ValidationState;
45
+ default: null;
46
+ };
47
+ validationMessage: {
48
+ type: StringConstructor;
49
+ default: undefined;
50
+ };
51
+ validationRules: {
52
+ type: () => ValidationRule[] | ValidatorFunction | undefined;
53
+ default: undefined;
54
+ };
55
+ validateOn: {
56
+ type: () => "input" | "blur" | "change";
57
+ default: string;
58
+ };
59
+ helpText: {
60
+ type: StringConstructor;
61
+ default: undefined;
62
+ };
63
+ showCharCount: {
64
+ type: BooleanConstructor;
65
+ default: boolean;
66
+ };
67
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
68
+ "update:modelValue": (...args: any[]) => void;
69
+ blur: (...args: any[]) => void;
70
+ change: (...args: any[]) => void;
71
+ focus: (...args: any[]) => void;
72
+ input: (...args: any[]) => void;
73
+ validate: (...args: any[]) => void;
74
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
75
+ modelValue: {
76
+ type: StringConstructor;
77
+ default: string;
78
+ };
79
+ id: {
80
+ type: StringConstructor;
81
+ required: true;
82
+ };
83
+ label: {
84
+ type: StringConstructor;
85
+ default: undefined;
86
+ };
87
+ placeholder: {
88
+ type: StringConstructor;
89
+ default: undefined;
90
+ };
91
+ disabled: {
92
+ type: BooleanConstructor;
93
+ default: boolean;
94
+ };
95
+ readonly: {
96
+ type: BooleanConstructor;
97
+ default: boolean;
98
+ };
99
+ required: {
100
+ type: BooleanConstructor;
101
+ default: boolean;
102
+ };
103
+ rows: {
104
+ type: NumberConstructor;
105
+ default: number;
106
+ };
107
+ maxlength: {
108
+ type: NumberConstructor;
109
+ default: undefined;
110
+ };
111
+ size: {
112
+ type: () => Size;
113
+ default: undefined;
114
+ };
115
+ validationState: {
116
+ type: () => ValidationState;
117
+ default: null;
118
+ };
119
+ validationMessage: {
120
+ type: StringConstructor;
121
+ default: undefined;
122
+ };
123
+ validationRules: {
124
+ type: () => ValidationRule[] | ValidatorFunction | undefined;
125
+ default: undefined;
126
+ };
127
+ validateOn: {
128
+ type: () => "input" | "blur" | "change";
129
+ default: string;
130
+ };
131
+ helpText: {
132
+ type: StringConstructor;
133
+ default: undefined;
134
+ };
135
+ showCharCount: {
136
+ type: BooleanConstructor;
137
+ default: boolean;
138
+ };
139
+ }>> & Readonly<{
140
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
141
+ onBlur?: ((...args: any[]) => any) | undefined;
142
+ onChange?: ((...args: any[]) => any) | undefined;
143
+ onFocus?: ((...args: any[]) => any) | undefined;
144
+ onInput?: ((...args: any[]) => any) | undefined;
145
+ onValidate?: ((...args: any[]) => any) | undefined;
146
+ }>, {
147
+ modelValue: string;
148
+ required: boolean;
149
+ label: string;
150
+ size: Size;
151
+ disabled: boolean;
152
+ placeholder: string;
153
+ readonly: boolean;
154
+ validationState: ValidationState;
155
+ validationMessage: string;
156
+ validationRules: ValidatorFunction | ValidationRule[] | undefined;
157
+ validateOn: "blur" | "change" | "input";
158
+ helpText: string;
159
+ rows: number;
160
+ maxlength: number;
161
+ showCharCount: boolean;
162
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
163
+ export default _default;
@@ -0,0 +1,156 @@
1
+ import { ValidationState, ValidationRule, ValidatorFunction } from '../types';
2
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3
+ modelValue: {
4
+ type: StringConstructor;
5
+ default: string;
6
+ };
7
+ id: {
8
+ type: StringConstructor;
9
+ required: true;
10
+ };
11
+ label: {
12
+ type: StringConstructor;
13
+ default: undefined;
14
+ };
15
+ placeholder: {
16
+ type: StringConstructor;
17
+ default: string;
18
+ };
19
+ disabled: {
20
+ type: BooleanConstructor;
21
+ default: boolean;
22
+ };
23
+ readonly: {
24
+ type: BooleanConstructor;
25
+ default: boolean;
26
+ };
27
+ required: {
28
+ type: BooleanConstructor;
29
+ default: boolean;
30
+ };
31
+ theme: {
32
+ type: () => "snow" | "bubble";
33
+ default: string;
34
+ };
35
+ toolbar: {
36
+ type: (StringConstructor | BooleanConstructor | ArrayConstructor)[];
37
+ default: undefined;
38
+ };
39
+ validationState: {
40
+ type: () => ValidationState;
41
+ default: null;
42
+ };
43
+ validationMessage: {
44
+ type: StringConstructor;
45
+ default: undefined;
46
+ };
47
+ validationRules: {
48
+ type: () => ValidationRule[] | ValidatorFunction | undefined;
49
+ default: undefined;
50
+ };
51
+ validateOn: {
52
+ type: () => "change" | "blur";
53
+ default: string;
54
+ };
55
+ helpText: {
56
+ type: StringConstructor;
57
+ default: undefined;
58
+ };
59
+ height: {
60
+ type: StringConstructor;
61
+ default: string;
62
+ };
63
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
64
+ "update:modelValue": (...args: any[]) => void;
65
+ blur: (...args: any[]) => void;
66
+ change: (...args: any[]) => void;
67
+ focus: (...args: any[]) => void;
68
+ validate: (...args: any[]) => void;
69
+ ready: (...args: any[]) => void;
70
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
71
+ modelValue: {
72
+ type: StringConstructor;
73
+ default: string;
74
+ };
75
+ id: {
76
+ type: StringConstructor;
77
+ required: true;
78
+ };
79
+ label: {
80
+ type: StringConstructor;
81
+ default: undefined;
82
+ };
83
+ placeholder: {
84
+ type: StringConstructor;
85
+ default: string;
86
+ };
87
+ disabled: {
88
+ type: BooleanConstructor;
89
+ default: boolean;
90
+ };
91
+ readonly: {
92
+ type: BooleanConstructor;
93
+ default: boolean;
94
+ };
95
+ required: {
96
+ type: BooleanConstructor;
97
+ default: boolean;
98
+ };
99
+ theme: {
100
+ type: () => "snow" | "bubble";
101
+ default: string;
102
+ };
103
+ toolbar: {
104
+ type: (StringConstructor | BooleanConstructor | ArrayConstructor)[];
105
+ default: undefined;
106
+ };
107
+ validationState: {
108
+ type: () => ValidationState;
109
+ default: null;
110
+ };
111
+ validationMessage: {
112
+ type: StringConstructor;
113
+ default: undefined;
114
+ };
115
+ validationRules: {
116
+ type: () => ValidationRule[] | ValidatorFunction | undefined;
117
+ default: undefined;
118
+ };
119
+ validateOn: {
120
+ type: () => "change" | "blur";
121
+ default: string;
122
+ };
123
+ helpText: {
124
+ type: StringConstructor;
125
+ default: undefined;
126
+ };
127
+ height: {
128
+ type: StringConstructor;
129
+ default: string;
130
+ };
131
+ }>> & Readonly<{
132
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
133
+ onBlur?: ((...args: any[]) => any) | undefined;
134
+ onChange?: ((...args: any[]) => any) | undefined;
135
+ onFocus?: ((...args: any[]) => any) | undefined;
136
+ onValidate?: ((...args: any[]) => any) | undefined;
137
+ onReady?: ((...args: any[]) => any) | undefined;
138
+ }>, {
139
+ modelValue: string;
140
+ required: boolean;
141
+ label: string;
142
+ disabled: boolean;
143
+ placeholder: string;
144
+ height: string;
145
+ readonly: boolean;
146
+ validationState: ValidationState;
147
+ validationMessage: string;
148
+ validationRules: ValidatorFunction | ValidationRule[] | undefined;
149
+ validateOn: "blur" | "change";
150
+ helpText: string;
151
+ theme: "snow" | "bubble";
152
+ toolbar: string | boolean | unknown[];
153
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
154
+ editorContainer: HTMLDivElement;
155
+ }, HTMLDivElement>;
156
+ export default _default;
@@ -0,0 +1,83 @@
1
+ import { PropType } from 'vue';
2
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3
+ icon: {
4
+ type: StringConstructor;
5
+ required: true;
6
+ };
7
+ size: {
8
+ type: PropType<"sm" | "lg" | "1x" | "2x" | "3x" | "4x" | "5x">;
9
+ default: undefined;
10
+ };
11
+ fontSize: {
12
+ type: StringConstructor;
13
+ default: undefined;
14
+ };
15
+ color: {
16
+ type: StringConstructor;
17
+ default: undefined;
18
+ };
19
+ customClass: {
20
+ type: StringConstructor;
21
+ default: undefined;
22
+ };
23
+ flipH: {
24
+ type: BooleanConstructor;
25
+ default: boolean;
26
+ };
27
+ flipV: {
28
+ type: BooleanConstructor;
29
+ default: boolean;
30
+ };
31
+ rotate: {
32
+ type: PropType<90 | 180 | 270>;
33
+ default: undefined;
34
+ };
35
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
36
+ "component-error": (...args: any[]) => void;
37
+ click: (...args: any[]) => void;
38
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
39
+ icon: {
40
+ type: StringConstructor;
41
+ required: true;
42
+ };
43
+ size: {
44
+ type: PropType<"sm" | "lg" | "1x" | "2x" | "3x" | "4x" | "5x">;
45
+ default: undefined;
46
+ };
47
+ fontSize: {
48
+ type: StringConstructor;
49
+ default: undefined;
50
+ };
51
+ color: {
52
+ type: StringConstructor;
53
+ default: undefined;
54
+ };
55
+ customClass: {
56
+ type: StringConstructor;
57
+ default: undefined;
58
+ };
59
+ flipH: {
60
+ type: BooleanConstructor;
61
+ default: boolean;
62
+ };
63
+ flipV: {
64
+ type: BooleanConstructor;
65
+ default: boolean;
66
+ };
67
+ rotate: {
68
+ type: PropType<90 | 180 | 270>;
69
+ default: undefined;
70
+ };
71
+ }>> & Readonly<{
72
+ "onComponent-error"?: ((...args: any[]) => any) | undefined;
73
+ onClick?: ((...args: any[]) => any) | undefined;
74
+ }>, {
75
+ color: string;
76
+ size: "sm" | "lg" | "1x" | "2x" | "3x" | "4x" | "5x";
77
+ fontSize: string;
78
+ customClass: string;
79
+ flipH: boolean;
80
+ flipV: boolean;
81
+ rotate: 90 | 180 | 270;
82
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLElement>;
83
+ export default _default;
@@ -0,0 +1,63 @@
1
+ import { Tag, ListGroupItem } from '../types';
2
+ declare function __VLS_template(): any;
3
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
4
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
5
+ flush: {
6
+ type: BooleanConstructor;
7
+ default: boolean;
8
+ };
9
+ horizontal: {
10
+ type: (StringConstructor | BooleanConstructor)[];
11
+ default: boolean;
12
+ };
13
+ numbered: {
14
+ type: BooleanConstructor;
15
+ default: boolean;
16
+ };
17
+ tag: {
18
+ type: () => Tag | "ul" | "ol";
19
+ default: string;
20
+ };
21
+ items: {
22
+ type: () => ListGroupItem[];
23
+ default: undefined;
24
+ };
25
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
26
+ "component-error": (...args: any[]) => void;
27
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
28
+ flush: {
29
+ type: BooleanConstructor;
30
+ default: boolean;
31
+ };
32
+ horizontal: {
33
+ type: (StringConstructor | BooleanConstructor)[];
34
+ default: boolean;
35
+ };
36
+ numbered: {
37
+ type: BooleanConstructor;
38
+ default: boolean;
39
+ };
40
+ tag: {
41
+ type: () => Tag | "ul" | "ol";
42
+ default: string;
43
+ };
44
+ items: {
45
+ type: () => ListGroupItem[];
46
+ default: undefined;
47
+ };
48
+ }>> & Readonly<{
49
+ "onComponent-error"?: ((...args: any[]) => any) | undefined;
50
+ }>, {
51
+ tag: "ol" | "ul" | Tag;
52
+ items: ListGroupItem[];
53
+ flush: boolean;
54
+ horizontal: string | boolean;
55
+ numbered: boolean;
56
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
57
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
58
+ export default _default;
59
+ type __VLS_WithTemplateSlots<T, S> = T & {
60
+ new (): {
61
+ $slots: S;
62
+ };
63
+ };
@@ -0,0 +1,90 @@
1
+ import { Variant } from '../types';
2
+ declare function __VLS_template(): {
3
+ attrs: Partial<{}>;
4
+ slots: {
5
+ default?(_: {}): any;
6
+ };
7
+ refs: {};
8
+ rootEl: any;
9
+ };
10
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
+ declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
12
+ active: {
13
+ type: BooleanConstructor;
14
+ default: boolean;
15
+ };
16
+ disabled: {
17
+ type: BooleanConstructor;
18
+ default: boolean;
19
+ };
20
+ variant: {
21
+ type: () => Variant;
22
+ default: undefined;
23
+ };
24
+ href: {
25
+ type: StringConstructor;
26
+ default: undefined;
27
+ };
28
+ to: {
29
+ type: (StringConstructor | ObjectConstructor)[];
30
+ default: undefined;
31
+ };
32
+ tag: {
33
+ type: StringConstructor;
34
+ default: string;
35
+ };
36
+ action: {
37
+ type: BooleanConstructor;
38
+ default: boolean;
39
+ };
40
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
41
+ "component-error": (...args: any[]) => void;
42
+ click: (...args: any[]) => void;
43
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
44
+ active: {
45
+ type: BooleanConstructor;
46
+ default: boolean;
47
+ };
48
+ disabled: {
49
+ type: BooleanConstructor;
50
+ default: boolean;
51
+ };
52
+ variant: {
53
+ type: () => Variant;
54
+ default: undefined;
55
+ };
56
+ href: {
57
+ type: StringConstructor;
58
+ default: undefined;
59
+ };
60
+ to: {
61
+ type: (StringConstructor | ObjectConstructor)[];
62
+ default: undefined;
63
+ };
64
+ tag: {
65
+ type: StringConstructor;
66
+ default: string;
67
+ };
68
+ action: {
69
+ type: BooleanConstructor;
70
+ default: boolean;
71
+ };
72
+ }>> & Readonly<{
73
+ "onComponent-error"?: ((...args: any[]) => any) | undefined;
74
+ onClick?: ((...args: any[]) => any) | undefined;
75
+ }>, {
76
+ variant: Variant;
77
+ tag: string;
78
+ disabled: boolean;
79
+ href: string;
80
+ to: string | Record<string, any>;
81
+ active: boolean;
82
+ action: boolean;
83
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
84
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
85
+ export default _default;
86
+ type __VLS_WithTemplateSlots<T, S> = T & {
87
+ new (): {
88
+ $slots: S;
89
+ };
90
+ };