@velkymx/vibeui 0.2.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 (71) hide show
  1. package/README.md +592 -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.css +1 -1
  69. package/dist/vibeui.es.js +1936 -704
  70. package/dist/vibeui.umd.js +1 -1
  71. package/package.json +14 -4
@@ -0,0 +1,176 @@
1
+ import { ValidationState, ValidationRule, ValidatorFunction, Size } from '../types';
2
+ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
3
+ modelValue: {
4
+ type: NumberConstructor;
5
+ default: number;
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
+ readonly: {
20
+ type: BooleanConstructor;
21
+ default: boolean;
22
+ };
23
+ required: {
24
+ type: BooleanConstructor;
25
+ default: boolean;
26
+ };
27
+ min: {
28
+ type: NumberConstructor;
29
+ default: undefined;
30
+ };
31
+ max: {
32
+ type: NumberConstructor;
33
+ default: undefined;
34
+ };
35
+ step: {
36
+ type: NumberConstructor;
37
+ default: number;
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
+ wrap: {
64
+ type: BooleanConstructor;
65
+ default: boolean;
66
+ };
67
+ vertical: {
68
+ type: BooleanConstructor;
69
+ default: boolean;
70
+ };
71
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
72
+ "update:modelValue": (...args: any[]) => void;
73
+ blur: (...args: any[]) => void;
74
+ change: (...args: any[]) => void;
75
+ focus: (...args: any[]) => void;
76
+ input: (...args: any[]) => void;
77
+ validate: (...args: any[]) => void;
78
+ increment: (...args: any[]) => void;
79
+ decrement: (...args: any[]) => void;
80
+ }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
81
+ modelValue: {
82
+ type: NumberConstructor;
83
+ default: number;
84
+ };
85
+ id: {
86
+ type: StringConstructor;
87
+ required: true;
88
+ };
89
+ label: {
90
+ type: StringConstructor;
91
+ default: undefined;
92
+ };
93
+ disabled: {
94
+ type: BooleanConstructor;
95
+ default: boolean;
96
+ };
97
+ readonly: {
98
+ type: BooleanConstructor;
99
+ default: boolean;
100
+ };
101
+ required: {
102
+ type: BooleanConstructor;
103
+ default: boolean;
104
+ };
105
+ min: {
106
+ type: NumberConstructor;
107
+ default: undefined;
108
+ };
109
+ max: {
110
+ type: NumberConstructor;
111
+ default: undefined;
112
+ };
113
+ step: {
114
+ type: NumberConstructor;
115
+ default: number;
116
+ };
117
+ size: {
118
+ type: () => Size;
119
+ default: undefined;
120
+ };
121
+ validationState: {
122
+ type: () => ValidationState;
123
+ default: null;
124
+ };
125
+ validationMessage: {
126
+ type: StringConstructor;
127
+ default: undefined;
128
+ };
129
+ validationRules: {
130
+ type: () => ValidationRule[] | ValidatorFunction | undefined;
131
+ default: undefined;
132
+ };
133
+ validateOn: {
134
+ type: () => "input" | "blur" | "change";
135
+ default: string;
136
+ };
137
+ helpText: {
138
+ type: StringConstructor;
139
+ default: undefined;
140
+ };
141
+ wrap: {
142
+ type: BooleanConstructor;
143
+ default: boolean;
144
+ };
145
+ vertical: {
146
+ type: BooleanConstructor;
147
+ default: boolean;
148
+ };
149
+ }>> & Readonly<{
150
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
151
+ onBlur?: ((...args: any[]) => any) | undefined;
152
+ onChange?: ((...args: any[]) => any) | undefined;
153
+ onFocus?: ((...args: any[]) => any) | undefined;
154
+ onInput?: ((...args: any[]) => any) | undefined;
155
+ onValidate?: ((...args: any[]) => any) | undefined;
156
+ onIncrement?: ((...args: any[]) => any) | undefined;
157
+ onDecrement?: ((...args: any[]) => any) | undefined;
158
+ }>, {
159
+ modelValue: number;
160
+ required: boolean;
161
+ label: string;
162
+ size: Size;
163
+ disabled: boolean;
164
+ vertical: boolean;
165
+ step: number;
166
+ max: number;
167
+ wrap: boolean;
168
+ readonly: boolean;
169
+ validationState: ValidationState;
170
+ validationMessage: string;
171
+ validationRules: ValidatorFunction | ValidationRule[] | undefined;
172
+ validateOn: "blur" | "change" | "input";
173
+ helpText: string;
174
+ min: number;
175
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
176
+ export default _default;
@@ -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;