maz-ui 3.9.0 → 3.10.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 (150) hide show
  1. package/components/MazAvatar.mjs +22 -185
  2. package/components/MazAvatar.umd.js +2 -2
  3. package/components/MazBackdrop.mjs +1 -1
  4. package/components/MazBackdrop.umd.js +1 -1
  5. package/components/MazBadge.mjs +3 -3
  6. package/components/MazBadge.umd.js +2 -2
  7. package/components/MazBottomSheet.mjs +60 -33
  8. package/components/MazBottomSheet.umd.js +2 -2
  9. package/components/MazBtn.mjs +25 -20
  10. package/components/MazBtn.umd.js +2 -2
  11. package/components/MazCard.mjs +255 -231
  12. package/components/MazCard.umd.js +2 -2
  13. package/components/MazCarousel.mjs +93 -38
  14. package/components/MazCarousel.umd.js +2 -2
  15. package/components/MazChart.mjs +43 -25
  16. package/components/MazChart.umd.js +1 -2
  17. package/components/MazCheckbox.mjs +3 -3
  18. package/components/MazCheckbox.umd.js +2 -2
  19. package/components/MazDialog.mjs +61 -34
  20. package/components/MazDialog.umd.js +2 -2
  21. package/components/MazDialogPromise.mjs +75 -58
  22. package/components/MazDialogPromise.umd.js +2 -2
  23. package/components/MazDrawer.mjs +57 -30
  24. package/components/MazDrawer.umd.js +2 -2
  25. package/components/MazDropzone.mjs +4 -4
  26. package/components/MazDropzone.umd.js +2 -2
  27. package/components/MazGallery.mjs +16 -181
  28. package/components/MazGallery.umd.js +2 -2
  29. package/components/MazIcon.mjs +7 -2
  30. package/components/MazIcon.umd.js +2 -2
  31. package/components/MazInput.mjs +46 -40
  32. package/components/MazInput.umd.js +2 -2
  33. package/components/MazInputNumber.mjs +175 -125
  34. package/components/MazInputNumber.umd.js +2 -2
  35. package/components/MazInputPrice.mjs +97 -91
  36. package/components/MazInputPrice.umd.js +2 -2
  37. package/components/MazInputTags.mjs +135 -107
  38. package/components/MazInputTags.umd.js +2 -2
  39. package/components/MazLazyImg.mjs +9 -9
  40. package/components/MazLazyImg.umd.js +2 -2
  41. package/components/MazPhoneNumberInput.mjs +165 -90
  42. package/components/MazPhoneNumberInput.umd.js +2 -2
  43. package/components/MazPicker.mjs +349 -261
  44. package/components/MazPicker.umd.js +2 -2
  45. package/components/MazRadioButtons.mjs +3 -3
  46. package/components/MazRadioButtons.umd.js +2 -2
  47. package/components/MazSelect.mjs +155 -80
  48. package/components/MazSelect.umd.js +2 -2
  49. package/components/MazSlider.mjs +6 -6
  50. package/components/MazSlider.umd.js +2 -2
  51. package/components/MazSpinner.mjs +4 -4
  52. package/components/MazSpinner.umd.js +2 -2
  53. package/components/MazStepper.mjs +16 -11
  54. package/components/MazStepper.umd.js +2 -2
  55. package/components/MazSwitch.mjs +6 -6
  56. package/components/MazSwitch.umd.js +2 -2
  57. package/components/MazTabsBar.mjs +29 -24
  58. package/components/MazTabsBar.umd.js +2 -2
  59. package/components/MazTabsContent.mjs +7 -2
  60. package/components/MazTabsContent.umd.js +2 -2
  61. package/components/MazTabsContentItem.mjs +5 -5
  62. package/components/MazTabsContentItem.umd.js +2 -2
  63. package/components/MazTextarea.mjs +26 -17
  64. package/components/MazTextarea.umd.js +2 -2
  65. package/components/MazTransitionExpand.mjs +3 -3
  66. package/components/MazTransitionExpand.umd.js +2 -2
  67. package/components/assets/check-ac2fdfbb.mjs +31 -0
  68. package/components/assets/eye-ac35bb54.mjs +44 -0
  69. package/components/assets/eye-off-4a5fd13d.mjs +31 -0
  70. package/components/assets/no-photography-7a1e4d68.mjs +36 -0
  71. package/components/assets/pencil-c1aa23f9.mjs +31 -0
  72. package/modules/assets/no-photography-7a1e4d68.mjs +36 -0
  73. package/modules/{maz-ui.mjs → index.mjs} +130 -191
  74. package/modules/index.umd.js +2 -0
  75. package/nuxt/index.ts +130 -0
  76. package/nuxt/runtime/composables/use-toast.ts +8 -0
  77. package/nuxt/runtime/plugins/toaster.ts +26 -0
  78. package/package.json +91 -62
  79. package/tailwindcss/{tailwind.config.js → tailwind.config.ts} +13 -9
  80. package/tailwindcss/tailwind.css +4 -0
  81. package/tailwindcss/utils/colors.ts +20 -0
  82. package/tailwindcss/variables/{breakpoints.js → breakpoints.ts} +1 -1
  83. package/tailwindcss/variables/colors.ts +44 -0
  84. package/tailwindcss/variables/{utilities.js → utilities.ts} +1 -1
  85. package/tailwindcss/variables/{z-indexes.js → z-indexes.ts} +1 -1
  86. package/components/MazAvatar.d.ts +0 -161
  87. package/components/MazBackdrop.d.ts +0 -92
  88. package/components/MazBadge.d.ts +0 -78
  89. package/components/MazBottomSheet.d.ts +0 -41
  90. package/components/MazBtn.d.ts +0 -183
  91. package/components/MazCard.d.ts +0 -199
  92. package/components/MazCarousel.d.ts +0 -29
  93. package/components/MazChart.d.ts +0 -22
  94. package/components/MazCheckbox.d.ts +0 -59
  95. package/components/MazDialog.d.ts +0 -96
  96. package/components/MazDialogPromise/use-maz-dialog-promise.d.ts +0 -30
  97. package/components/MazDialogPromise.d.ts +0 -77
  98. package/components/MazDrawer.d.ts +0 -74
  99. package/components/MazDropzone.d.ts +0 -129
  100. package/components/MazGallery.d.ts +0 -126
  101. package/components/MazIcon.d.ts +0 -65
  102. package/components/MazInput.d.ts +0 -277
  103. package/components/MazInputNumber.d.ts +0 -66
  104. package/components/MazInputPrice.d.ts +0 -74
  105. package/components/MazInputTags.d.ts +0 -95
  106. package/components/MazLazyImg.d.ts +0 -82
  107. package/components/MazPhoneNumberInput/constantes/locales.d.ts +0 -12
  108. package/components/MazPhoneNumberInput/types.d.ts +0 -21
  109. package/components/MazPhoneNumberInput/utils/countries-name-list-by-iso-code.d.ts +0 -2
  110. package/components/MazPhoneNumberInput/utils/index.d.ts +0 -12
  111. package/components/MazPhoneNumberInput.d.ts +0 -254
  112. package/components/MazPicker/MazPickerCalendar.vue.d.ts +0 -136
  113. package/components/MazPicker/MazPickerCalendarMonth/MazPickerCalendarDays.vue.d.ts +0 -21
  114. package/components/MazPicker/MazPickerCalendarMonth/MazPickerCalendarGrid.vue.d.ts +0 -113
  115. package/components/MazPicker/MazPickerCalendarMonth/MazPickerCalendarMonth.vue.d.ts +0 -123
  116. package/components/MazPicker/MazPickerCalendarSwitcher.vue.d.ts +0 -37
  117. package/components/MazPicker/MazPickerContainer.vue.d.ts +0 -211
  118. package/components/MazPicker/MazPickerFooter.vue.d.ts +0 -17
  119. package/components/MazPicker/MazPickerHeader.vue.d.ts +0 -83
  120. package/components/MazPicker/MazPickerMonthSwitcher.vue.d.ts +0 -42
  121. package/components/MazPicker/MazPickerShortcuts.vue.d.ts +0 -61
  122. package/components/MazPicker/MazPickerTime.vue.d.ts +0 -128
  123. package/components/MazPicker/MazPickerYearSwitcher.vue.d.ts +0 -34
  124. package/components/MazPicker/types.d.ts +0 -15
  125. package/components/MazPicker/utils.d.ts +0 -54
  126. package/components/MazPicker.d.ts +0 -312
  127. package/components/MazRadioButtons.d.ts +0 -82
  128. package/components/MazSelect.d.ts +0 -191
  129. package/components/MazSlider/utils.d.ts +0 -15
  130. package/components/MazSlider.d.ts +0 -95
  131. package/components/MazSpinner.d.ts +0 -29
  132. package/components/MazStepper.d.ts +0 -119
  133. package/components/MazSwitch.d.ts +0 -55
  134. package/components/MazTabsBar.d.ts +0 -48
  135. package/components/MazTabsContent.d.ts +0 -26
  136. package/components/MazTabsContentItem.d.ts +0 -24
  137. package/components/MazTextarea/textarea-autogrow.d.ts +0 -9
  138. package/components/MazTextarea.d.ts +0 -124
  139. package/components/MazTransitionExpand.d.ts +0 -14
  140. package/components/assets/no-photography-584c6185.mjs +0 -4
  141. package/components/index.d.ts +0 -33
  142. package/components/index.mjs +0 -35
  143. package/components/types.d.ts +0 -17
  144. package/css/aos.css +0 -1
  145. package/css/main.css +0 -1
  146. package/maz-ui.d.ts +0 -318
  147. package/modules/assets/no-photography-584c6185.mjs +0 -4
  148. package/modules/maz-ui.umd.js +0 -2
  149. package/tailwindcss/utils/colors.js +0 -26
  150. package/tailwindcss/variables/colors.js +0 -44
@@ -1,161 +0,0 @@
1
- /** __vue_virtual_code_placeholder */
2
- import type { PropType } from 'vue';
3
- import type { Color } from './types';
4
- export type { Color } from './types';
5
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
6
- src: {
7
- type: PropType<string | null | undefined>;
8
- default: undefined;
9
- };
10
- caption: {
11
- type: PropType<string | null | undefined>;
12
- default: undefined;
13
- };
14
- href: {
15
- type: StringConstructor;
16
- default: undefined;
17
- };
18
- to: {
19
- type: ObjectConstructor;
20
- default: undefined;
21
- };
22
- alt: {
23
- type: StringConstructor;
24
- default: string;
25
- };
26
- target: {
27
- type: StringConstructor;
28
- default: string;
29
- };
30
- size: {
31
- type: StringConstructor;
32
- default: undefined;
33
- };
34
- bordered: {
35
- type: BooleanConstructor;
36
- default: boolean;
37
- };
38
- clickable: {
39
- type: BooleanConstructor;
40
- default: boolean;
41
- };
42
- square: {
43
- type: BooleanConstructor;
44
- default: boolean;
45
- };
46
- noElevation: {
47
- type: BooleanConstructor;
48
- default: boolean;
49
- };
50
- showCaption: {
51
- type: BooleanConstructor;
52
- default: boolean;
53
- };
54
- imageHeightFull: {
55
- type: BooleanConstructor;
56
- default: boolean;
57
- };
58
- noLoader: {
59
- type: BooleanConstructor;
60
- default: boolean;
61
- };
62
- buttonColor: {
63
- type: PropType<Color>;
64
- default: string;
65
- validator: (value: Color) => boolean;
66
- };
67
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
68
- src: {
69
- type: PropType<string | null | undefined>;
70
- default: undefined;
71
- };
72
- caption: {
73
- type: PropType<string | null | undefined>;
74
- default: undefined;
75
- };
76
- href: {
77
- type: StringConstructor;
78
- default: undefined;
79
- };
80
- to: {
81
- type: ObjectConstructor;
82
- default: undefined;
83
- };
84
- alt: {
85
- type: StringConstructor;
86
- default: string;
87
- };
88
- target: {
89
- type: StringConstructor;
90
- default: string;
91
- };
92
- size: {
93
- type: StringConstructor;
94
- default: undefined;
95
- };
96
- bordered: {
97
- type: BooleanConstructor;
98
- default: boolean;
99
- };
100
- clickable: {
101
- type: BooleanConstructor;
102
- default: boolean;
103
- };
104
- square: {
105
- type: BooleanConstructor;
106
- default: boolean;
107
- };
108
- noElevation: {
109
- type: BooleanConstructor;
110
- default: boolean;
111
- };
112
- showCaption: {
113
- type: BooleanConstructor;
114
- default: boolean;
115
- };
116
- imageHeightFull: {
117
- type: BooleanConstructor;
118
- default: boolean;
119
- };
120
- noLoader: {
121
- type: BooleanConstructor;
122
- default: boolean;
123
- };
124
- buttonColor: {
125
- type: PropType<Color>;
126
- default: string;
127
- validator: (value: Color) => boolean;
128
- };
129
- }>> & {
130
- onClick?: ((...args: any[]) => any) | undefined;
131
- }, {
132
- src: string | null | undefined;
133
- caption: string | null | undefined;
134
- size: string;
135
- noLoader: boolean;
136
- imageHeightFull: boolean;
137
- target: string;
138
- href: string;
139
- to: Record<string, any>;
140
- alt: string;
141
- bordered: boolean;
142
- clickable: boolean;
143
- square: boolean;
144
- noElevation: boolean;
145
- showCaption: boolean;
146
- buttonColor: Color;
147
- }>, {
148
- "round-text"?(_: {}): any;
149
- icon?(_: {}): any;
150
- caption?(_: {}): any;
151
- }>;
152
- export default _default;
153
- type __VLS_WithTemplateSlots<T, S> = T & {
154
- new (): {
155
- $slots: S;
156
- $props: __VLS_PropsChildren<S>;
157
- };
158
- };
159
- type __VLS_PropsChildren<S> = {
160
- [K in keyof (boolean extends (JSX.ElementChildrenAttribute extends never ? true : false) ? never : JSX.ElementChildrenAttribute)]?: S;
161
- };
@@ -1,92 +0,0 @@
1
- /** __vue_virtual_code_placeholder */
2
- import { type PropType } from 'vue';
3
- declare const _default: import("vue").DefineComponent<{
4
- modelValue: {
5
- type: BooleanConstructor;
6
- default: boolean;
7
- };
8
- teleportSelector: {
9
- type: StringConstructor;
10
- default: string;
11
- };
12
- beforeClose: {
13
- type: PropType<Function>;
14
- default: undefined;
15
- };
16
- persistent: {
17
- type: BooleanConstructor;
18
- default: boolean;
19
- };
20
- noCloseOnEscKey: {
21
- type: BooleanConstructor;
22
- default: boolean;
23
- };
24
- transitionName: {
25
- type: StringConstructor;
26
- default: string;
27
- };
28
- backdropClass: {
29
- type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
30
- default: undefined;
31
- };
32
- backdropContentClass: {
33
- type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
34
- default: undefined;
35
- };
36
- }, {
37
- onBackdropAnimationEnter: () => void;
38
- onBackdropAnimationLeave: () => void;
39
- onBackdropClicked: () => void;
40
- close: () => void;
41
- present: import("vue").Ref<boolean>;
42
- toggleModal: (value: boolean) => Promise<void>;
43
- onKeyPress: (event: KeyboardEvent) => void;
44
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "open" | "before-close" | "update:model-value")[], "close" | "open" | "before-close" | "update:model-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
45
- modelValue: {
46
- type: BooleanConstructor;
47
- default: boolean;
48
- };
49
- teleportSelector: {
50
- type: StringConstructor;
51
- default: string;
52
- };
53
- beforeClose: {
54
- type: PropType<Function>;
55
- default: undefined;
56
- };
57
- persistent: {
58
- type: BooleanConstructor;
59
- default: boolean;
60
- };
61
- noCloseOnEscKey: {
62
- type: BooleanConstructor;
63
- default: boolean;
64
- };
65
- transitionName: {
66
- type: StringConstructor;
67
- default: string;
68
- };
69
- backdropClass: {
70
- type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
71
- default: undefined;
72
- };
73
- backdropContentClass: {
74
- type: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
75
- default: undefined;
76
- };
77
- }>> & {
78
- onClose?: ((...args: any[]) => any) | undefined;
79
- onOpen?: ((...args: any[]) => any) | undefined;
80
- "onBefore-close"?: ((...args: any[]) => any) | undefined;
81
- "onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
82
- }, {
83
- modelValue: boolean;
84
- teleportSelector: string;
85
- beforeClose: Function;
86
- persistent: boolean;
87
- noCloseOnEscKey: boolean;
88
- transitionName: string;
89
- backdropClass: string | unknown[] | Record<string, any>;
90
- backdropContentClass: string | unknown[] | Record<string, any>;
91
- }>;
92
- export default _default;
@@ -1,78 +0,0 @@
1
- /** __vue_virtual_code_placeholder */
2
- import type { PropType } from 'vue';
3
- import type { Color } from './types';
4
- export type BadgeColor = Color | 'gray';
5
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
6
- color: {
7
- type: PropType<BadgeColor>;
8
- default: string;
9
- validator: (value: string) => boolean;
10
- };
11
- size: {
12
- type: StringConstructor;
13
- default: string;
14
- };
15
- nowrap: {
16
- type: BooleanConstructor;
17
- default: boolean;
18
- };
19
- outline: {
20
- type: BooleanConstructor;
21
- default: boolean;
22
- };
23
- pastel: {
24
- type: BooleanConstructor;
25
- default: boolean;
26
- };
27
- roundedSize: {
28
- type: StringConstructor;
29
- default: string;
30
- validator: (value: string) => boolean;
31
- };
32
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
33
- color: {
34
- type: PropType<BadgeColor>;
35
- default: string;
36
- validator: (value: string) => boolean;
37
- };
38
- size: {
39
- type: StringConstructor;
40
- default: string;
41
- };
42
- nowrap: {
43
- type: BooleanConstructor;
44
- default: boolean;
45
- };
46
- outline: {
47
- type: BooleanConstructor;
48
- default: boolean;
49
- };
50
- pastel: {
51
- type: BooleanConstructor;
52
- default: boolean;
53
- };
54
- roundedSize: {
55
- type: StringConstructor;
56
- default: string;
57
- validator: (value: string) => boolean;
58
- };
59
- }>>, {
60
- size: string;
61
- color: BadgeColor;
62
- nowrap: boolean;
63
- outline: boolean;
64
- pastel: boolean;
65
- roundedSize: string;
66
- }>, {
67
- default?(_: {}): any;
68
- }>;
69
- export default _default;
70
- type __VLS_WithTemplateSlots<T, S> = T & {
71
- new (): {
72
- $slots: S;
73
- $props: __VLS_PropsChildren<S>;
74
- };
75
- };
76
- type __VLS_PropsChildren<S> = {
77
- [K in keyof (boolean extends (JSX.ElementChildrenAttribute extends never ? true : false) ? never : JSX.ElementChildrenAttribute)]?: S;
78
- };
@@ -1,41 +0,0 @@
1
- /** __vue_virtual_code_placeholder */
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
3
- noClose: {
4
- type: BooleanConstructor;
5
- default: boolean;
6
- };
7
- noPadding: {
8
- type: BooleanConstructor;
9
- default: boolean;
10
- };
11
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "open" | "update:model-value")[], "close" | "open" | "update:model-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
12
- noClose: {
13
- type: BooleanConstructor;
14
- default: boolean;
15
- };
16
- noPadding: {
17
- type: BooleanConstructor;
18
- default: boolean;
19
- };
20
- }>> & {
21
- onClose?: ((...args: any[]) => any) | undefined;
22
- onOpen?: ((...args: any[]) => any) | undefined;
23
- "onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
24
- }, {
25
- noPadding: boolean;
26
- noClose: boolean;
27
- }>, {
28
- default?(_: {
29
- close: any;
30
- }): any;
31
- }>;
32
- export default _default;
33
- type __VLS_WithTemplateSlots<T, S> = T & {
34
- new (): {
35
- $slots: S;
36
- $props: __VLS_PropsChildren<S>;
37
- };
38
- };
39
- type __VLS_PropsChildren<S> = {
40
- [K in keyof (boolean extends (JSX.ElementChildrenAttribute extends never ? true : false) ? never : JSX.ElementChildrenAttribute)]?: S;
41
- };
@@ -1,183 +0,0 @@
1
- /** __vue_virtual_code_placeholder */
2
- import { type PropType } from 'vue';
3
- import type { Color, Size } from './types';
4
- export type { Color, Size } from './types';
5
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
6
- variant: {
7
- type: StringConstructor;
8
- default: string;
9
- validator: (value: string) => boolean;
10
- };
11
- size: {
12
- type: PropType<Size>;
13
- default: string;
14
- validator: (value: string) => boolean;
15
- };
16
- color: {
17
- type: PropType<Color>;
18
- default: string;
19
- validator: (value: Color) => boolean;
20
- };
21
- type: {
22
- type: StringConstructor;
23
- default: string;
24
- validator: (value: string) => boolean;
25
- };
26
- rounded: {
27
- type: BooleanConstructor;
28
- default: boolean;
29
- };
30
- outline: {
31
- type: BooleanConstructor;
32
- default: boolean;
33
- };
34
- pastel: {
35
- type: BooleanConstructor;
36
- default: boolean;
37
- };
38
- block: {
39
- type: BooleanConstructor;
40
- default: boolean;
41
- };
42
- noUnderline: {
43
- type: BooleanConstructor;
44
- default: boolean;
45
- };
46
- noLeading: {
47
- type: BooleanConstructor;
48
- default: boolean;
49
- };
50
- loading: {
51
- type: BooleanConstructor;
52
- default: boolean;
53
- };
54
- disabled: {
55
- type: BooleanConstructor;
56
- default: boolean;
57
- };
58
- fab: {
59
- type: BooleanConstructor;
60
- default: boolean;
61
- };
62
- leftIcon: {
63
- type: StringConstructor;
64
- default: undefined;
65
- };
66
- rightIcon: {
67
- type: StringConstructor;
68
- default: undefined;
69
- };
70
- noPadding: {
71
- type: BooleanConstructor;
72
- default: boolean;
73
- };
74
- noElevation: {
75
- type: BooleanConstructor;
76
- default: boolean;
77
- };
78
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
79
- variant: {
80
- type: StringConstructor;
81
- default: string;
82
- validator: (value: string) => boolean;
83
- };
84
- size: {
85
- type: PropType<Size>;
86
- default: string;
87
- validator: (value: string) => boolean;
88
- };
89
- color: {
90
- type: PropType<Color>;
91
- default: string;
92
- validator: (value: Color) => boolean;
93
- };
94
- type: {
95
- type: StringConstructor;
96
- default: string;
97
- validator: (value: string) => boolean;
98
- };
99
- rounded: {
100
- type: BooleanConstructor;
101
- default: boolean;
102
- };
103
- outline: {
104
- type: BooleanConstructor;
105
- default: boolean;
106
- };
107
- pastel: {
108
- type: BooleanConstructor;
109
- default: boolean;
110
- };
111
- block: {
112
- type: BooleanConstructor;
113
- default: boolean;
114
- };
115
- noUnderline: {
116
- type: BooleanConstructor;
117
- default: boolean;
118
- };
119
- noLeading: {
120
- type: BooleanConstructor;
121
- default: boolean;
122
- };
123
- loading: {
124
- type: BooleanConstructor;
125
- default: boolean;
126
- };
127
- disabled: {
128
- type: BooleanConstructor;
129
- default: boolean;
130
- };
131
- fab: {
132
- type: BooleanConstructor;
133
- default: boolean;
134
- };
135
- leftIcon: {
136
- type: StringConstructor;
137
- default: undefined;
138
- };
139
- rightIcon: {
140
- type: StringConstructor;
141
- default: undefined;
142
- };
143
- noPadding: {
144
- type: BooleanConstructor;
145
- default: boolean;
146
- };
147
- noElevation: {
148
- type: BooleanConstructor;
149
- default: boolean;
150
- };
151
- }>>, {
152
- disabled: boolean;
153
- size: Size;
154
- color: Color;
155
- type: string;
156
- loading: boolean;
157
- noElevation: boolean;
158
- outline: boolean;
159
- pastel: boolean;
160
- variant: string;
161
- rounded: boolean;
162
- block: boolean;
163
- noUnderline: boolean;
164
- noLeading: boolean;
165
- fab: boolean;
166
- leftIcon: string;
167
- rightIcon: string;
168
- noPadding: boolean;
169
- }>, {
170
- "left-icon"?(_: {}): any;
171
- default?(_: {}): any;
172
- "right-icon"?(_: {}): any;
173
- }>;
174
- export default _default;
175
- type __VLS_WithTemplateSlots<T, S> = T & {
176
- new (): {
177
- $slots: S;
178
- $props: __VLS_PropsChildren<S>;
179
- };
180
- };
181
- type __VLS_PropsChildren<S> = {
182
- [K in keyof (boolean extends (JSX.ElementChildrenAttribute extends never ? true : false) ? never : JSX.ElementChildrenAttribute)]?: S;
183
- };