maz-ui 3.11.4 → 3.12.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 (63) hide show
  1. package/components/MazAvatar.d.ts +154 -0
  2. package/components/MazBackdrop.d.ts +91 -0
  3. package/components/MazBadge.d.ts +73 -0
  4. package/components/MazBottomSheet.d.ts +36 -0
  5. package/components/MazBtn.d.ts +195 -0
  6. package/components/MazCard.d.ts +194 -0
  7. package/components/MazCarousel.d.ts +24 -0
  8. package/components/MazChart.d.ts +95 -0
  9. package/components/MazCheckbox.d.ts +52 -0
  10. package/components/MazDialog.d.ts +91 -0
  11. package/components/MazDialogPromise/use-maz-dialog-promise.d.ts +30 -0
  12. package/components/MazDialogPromise.d.ts +72 -0
  13. package/components/MazDrawer.d.ts +69 -0
  14. package/components/MazDropzone.d.ts +128 -0
  15. package/components/MazGallery.d.ts +125 -0
  16. package/components/MazIcon.d.ts +64 -0
  17. package/components/MazInput.d.ts +271 -0
  18. package/components/MazInputNumber.d.ts +65 -0
  19. package/components/MazInputPrice.d.ts +69 -0
  20. package/components/MazInputTags.d.ts +92 -0
  21. package/components/MazLazyImg.d.ts +77 -0
  22. package/components/MazPhoneNumberInput/constantes/locales.d.ts +12 -0
  23. package/components/MazPhoneNumberInput/types.d.ts +21 -0
  24. package/components/MazPhoneNumberInput/utils/countries-name-list-by-iso-code.d.ts +2 -0
  25. package/components/MazPhoneNumberInput/utils/index.d.ts +12 -0
  26. package/components/MazPhoneNumberInput.d.ts +251 -0
  27. package/components/MazPicker/MazPickerCalendar.vue.d.ts +135 -0
  28. package/components/MazPicker/MazPickerCalendarMonth/MazPickerCalendarDays.vue.d.ts +20 -0
  29. package/components/MazPicker/MazPickerCalendarMonth/MazPickerCalendarGrid.vue.d.ts +112 -0
  30. package/components/MazPicker/MazPickerCalendarMonth/MazPickerCalendarMonth.vue.d.ts +122 -0
  31. package/components/MazPicker/MazPickerCalendarSwitcher.vue.d.ts +36 -0
  32. package/components/MazPicker/MazPickerContainer.vue.d.ts +210 -0
  33. package/components/MazPicker/MazPickerFooter.vue.d.ts +16 -0
  34. package/components/MazPicker/MazPickerHeader.vue.d.ts +82 -0
  35. package/components/MazPicker/MazPickerMonthSwitcher.vue.d.ts +41 -0
  36. package/components/MazPicker/MazPickerShortcuts.vue.d.ts +60 -0
  37. package/components/MazPicker/MazPickerTime.vue.d.ts +127 -0
  38. package/components/MazPicker/MazPickerYearSwitcher.vue.d.ts +33 -0
  39. package/components/MazPicker/types.d.ts +15 -0
  40. package/components/MazPicker/utils.d.ts +54 -0
  41. package/components/MazPicker.d.ts +309 -0
  42. package/components/MazRadioButtons.d.ts +77 -0
  43. package/components/MazSelect.d.ts +184 -0
  44. package/components/MazSlider/utils.d.ts +15 -0
  45. package/components/MazSlider.d.ts +92 -0
  46. package/components/MazSpinner.d.ts +26 -0
  47. package/components/MazStepper.d.ts +112 -0
  48. package/components/MazSwitch.d.ts +54 -0
  49. package/components/MazTabs.d.ts +28 -0
  50. package/components/MazTabsBar.d.ts +55 -0
  51. package/components/MazTabsContent.d.ts +9 -0
  52. package/components/MazTabsContentItem.d.ts +19 -0
  53. package/components/MazTextarea/textarea-autogrow.d.ts +9 -0
  54. package/components/MazTextarea.d.ts +121 -0
  55. package/components/MazTransitionExpand.d.ts +9 -0
  56. package/components/component-list.d.ts +1 -0
  57. package/components/index.d.ts +35 -0
  58. package/components/types.d.ts +17 -0
  59. package/nuxt/index.ts +49 -21
  60. package/package.json +10 -7
  61. package/tailwindcss/tailwind.config.ts +2 -2
  62. package/types/nuxt/index.d.ts +12 -8
  63. package/types/tailwindcss/tailwind.config.d.ts +75 -1
@@ -0,0 +1,194 @@
1
+ import { type PropType } from 'vue';
2
+ import type { MazGalleryImage } from './types';
3
+ export type { MazGalleryImage } from './types';
4
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
5
+ images: {
6
+ type: PropType<MazGalleryImage[]>;
7
+ default: undefined;
8
+ };
9
+ orientation: {
10
+ type: StringConstructor;
11
+ default: string;
12
+ validator: (value: string) => boolean;
13
+ };
14
+ href: {
15
+ type: StringConstructor;
16
+ default: undefined;
17
+ };
18
+ hrefTarget: {
19
+ type: StringConstructor;
20
+ default: string;
21
+ };
22
+ footerAlign: {
23
+ type: StringConstructor;
24
+ default: string;
25
+ };
26
+ galleryWidth: {
27
+ type: (StringConstructor | NumberConstructor)[];
28
+ default: number;
29
+ };
30
+ galleryHeight: {
31
+ type: (StringConstructor | NumberConstructor)[];
32
+ default: number;
33
+ };
34
+ zoom: {
35
+ type: BooleanConstructor;
36
+ default: boolean;
37
+ };
38
+ elevation: {
39
+ type: BooleanConstructor;
40
+ default: boolean;
41
+ };
42
+ radius: {
43
+ type: BooleanConstructor;
44
+ default: boolean;
45
+ };
46
+ bordered: {
47
+ type: BooleanConstructor;
48
+ default: boolean;
49
+ };
50
+ imagesShowCount: {
51
+ type: NumberConstructor;
52
+ default: number;
53
+ };
54
+ noRemaining: {
55
+ type: BooleanConstructor;
56
+ default: boolean;
57
+ };
58
+ scale: {
59
+ type: BooleanConstructor;
60
+ default: boolean;
61
+ };
62
+ wrapperClass: {
63
+ type: StringConstructor;
64
+ default: undefined;
65
+ };
66
+ noPadding: {
67
+ type: BooleanConstructor;
68
+ default: boolean;
69
+ };
70
+ overflowHidden: {
71
+ type: BooleanConstructor;
72
+ default: boolean;
73
+ };
74
+ collapsable: {
75
+ type: BooleanConstructor;
76
+ default: boolean;
77
+ };
78
+ collapseOpen: {
79
+ type: BooleanConstructor;
80
+ default: boolean;
81
+ };
82
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
83
+ images: {
84
+ type: PropType<MazGalleryImage[]>;
85
+ default: undefined;
86
+ };
87
+ orientation: {
88
+ type: StringConstructor;
89
+ default: string;
90
+ validator: (value: string) => boolean;
91
+ };
92
+ href: {
93
+ type: StringConstructor;
94
+ default: undefined;
95
+ };
96
+ hrefTarget: {
97
+ type: StringConstructor;
98
+ default: string;
99
+ };
100
+ footerAlign: {
101
+ type: StringConstructor;
102
+ default: string;
103
+ };
104
+ galleryWidth: {
105
+ type: (StringConstructor | NumberConstructor)[];
106
+ default: number;
107
+ };
108
+ galleryHeight: {
109
+ type: (StringConstructor | NumberConstructor)[];
110
+ default: number;
111
+ };
112
+ zoom: {
113
+ type: BooleanConstructor;
114
+ default: boolean;
115
+ };
116
+ elevation: {
117
+ type: BooleanConstructor;
118
+ default: boolean;
119
+ };
120
+ radius: {
121
+ type: BooleanConstructor;
122
+ default: boolean;
123
+ };
124
+ bordered: {
125
+ type: BooleanConstructor;
126
+ default: boolean;
127
+ };
128
+ imagesShowCount: {
129
+ type: NumberConstructor;
130
+ default: number;
131
+ };
132
+ noRemaining: {
133
+ type: BooleanConstructor;
134
+ default: boolean;
135
+ };
136
+ scale: {
137
+ type: BooleanConstructor;
138
+ default: boolean;
139
+ };
140
+ wrapperClass: {
141
+ type: StringConstructor;
142
+ default: undefined;
143
+ };
144
+ noPadding: {
145
+ type: BooleanConstructor;
146
+ default: boolean;
147
+ };
148
+ overflowHidden: {
149
+ type: BooleanConstructor;
150
+ default: boolean;
151
+ };
152
+ collapsable: {
153
+ type: BooleanConstructor;
154
+ default: boolean;
155
+ };
156
+ collapseOpen: {
157
+ type: BooleanConstructor;
158
+ default: boolean;
159
+ };
160
+ }>>, {
161
+ elevation: boolean;
162
+ href: string;
163
+ orientation: string;
164
+ radius: boolean;
165
+ scale: boolean;
166
+ bordered: boolean;
167
+ noPadding: boolean;
168
+ images: MazGalleryImage[];
169
+ noRemaining: boolean;
170
+ hrefTarget: string;
171
+ footerAlign: string;
172
+ galleryWidth: string | number;
173
+ galleryHeight: string | number;
174
+ zoom: boolean;
175
+ imagesShowCount: number;
176
+ wrapperClass: string;
177
+ overflowHidden: boolean;
178
+ collapsable: boolean;
179
+ collapseOpen: boolean;
180
+ }, {}>, {
181
+ header?(_: {}): any;
182
+ default?(_: {}): any;
183
+ title?(_: {}): any;
184
+ subtitle?(_: {}): any;
185
+ content?(_: {}): any;
186
+ footer?(_: {}): any;
187
+ actions?(_: {}): any;
188
+ }>;
189
+ export default _default;
190
+ type __VLS_WithTemplateSlots<T, S> = T & {
191
+ new (): {
192
+ $slots: S;
193
+ };
194
+ };
@@ -0,0 +1,24 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
2
+ noScrollBtn: {
3
+ type: BooleanConstructor;
4
+ default: boolean;
5
+ };
6
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
7
+ noScrollBtn: {
8
+ type: BooleanConstructor;
9
+ default: boolean;
10
+ };
11
+ }>>, {
12
+ noScrollBtn: boolean;
13
+ }, {}>, {
14
+ title?(_: {}): any;
15
+ "previous-icon"?(_: {}): any;
16
+ "next-icon"?(_: {}): any;
17
+ default?(_: {}): any;
18
+ }>;
19
+ export default _default;
20
+ type __VLS_WithTemplateSlots<T, S> = T & {
21
+ new (): {
22
+ $slots: S;
23
+ };
24
+ };
@@ -0,0 +1,95 @@
1
+ import { type PropType } from 'vue';
2
+ import type { ChartData } from 'chart.js';
3
+ declare const _default: import("vue").DefineComponent<{
4
+ /**
5
+ * Chart.js chart type
6
+ */
7
+ type: {
8
+ type: PropType<keyof import("chart.js").ChartTypeRegistry>;
9
+ required: true;
10
+ };
11
+ /**
12
+ * The data object that is passed into the Chart.js chart
13
+ * @see https://www.chartjs.org/docs/latest/getting-started/
14
+ */
15
+ data: {
16
+ type: PropType<ChartData<keyof import("chart.js").ChartTypeRegistry, (number | import("chart.js").Point | [number, number] | import("chart.js").BubbleDataPoint | null)[], unknown>>;
17
+ required: true;
18
+ };
19
+ /**
20
+ * The options object that is passed into the Chart.js chart
21
+ * @see https://www.chartjs.org/docs/latest/general/options.html
22
+ */
23
+ options: {
24
+ type: ObjectConstructor;
25
+ default: () => {};
26
+ };
27
+ /**
28
+ * The plugins array that is passed into the Chart.js chart
29
+ * @see https://www.chartjs.org/docs/latest/developers/plugins.html
30
+ */
31
+ plugins: {
32
+ type: ArrayConstructor;
33
+ default: () => never[];
34
+ };
35
+ /**
36
+ * Key name to identificate dataset
37
+ */
38
+ datasetIdKey: {
39
+ type: StringConstructor;
40
+ default: string;
41
+ };
42
+ updateMode: {
43
+ type: PropType<"default" | "reset" | "resize" | "none" | "hide" | "show" | "active">;
44
+ default: undefined;
45
+ };
46
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
47
+ /**
48
+ * Chart.js chart type
49
+ */
50
+ type: {
51
+ type: PropType<keyof import("chart.js").ChartTypeRegistry>;
52
+ required: true;
53
+ };
54
+ /**
55
+ * The data object that is passed into the Chart.js chart
56
+ * @see https://www.chartjs.org/docs/latest/getting-started/
57
+ */
58
+ data: {
59
+ type: PropType<ChartData<keyof import("chart.js").ChartTypeRegistry, (number | import("chart.js").Point | [number, number] | import("chart.js").BubbleDataPoint | null)[], unknown>>;
60
+ required: true;
61
+ };
62
+ /**
63
+ * The options object that is passed into the Chart.js chart
64
+ * @see https://www.chartjs.org/docs/latest/general/options.html
65
+ */
66
+ options: {
67
+ type: ObjectConstructor;
68
+ default: () => {};
69
+ };
70
+ /**
71
+ * The plugins array that is passed into the Chart.js chart
72
+ * @see https://www.chartjs.org/docs/latest/developers/plugins.html
73
+ */
74
+ plugins: {
75
+ type: ArrayConstructor;
76
+ default: () => never[];
77
+ };
78
+ /**
79
+ * Key name to identificate dataset
80
+ */
81
+ datasetIdKey: {
82
+ type: StringConstructor;
83
+ default: string;
84
+ };
85
+ updateMode: {
86
+ type: PropType<"default" | "reset" | "resize" | "none" | "hide" | "show" | "active">;
87
+ default: undefined;
88
+ };
89
+ }>>, {
90
+ options: Record<string, any>;
91
+ plugins: unknown[];
92
+ datasetIdKey: string;
93
+ updateMode: "default" | "reset" | "resize" | "none" | "hide" | "show" | "active";
94
+ }, {}>;
95
+ export default _default;
@@ -0,0 +1,52 @@
1
+ import { type PropType } from 'vue';
2
+ import type { Color } from './types';
3
+ export type { Color } from './types';
4
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
5
+ modelValue: {
6
+ type: BooleanConstructor;
7
+ required: true;
8
+ };
9
+ id: {
10
+ type: StringConstructor;
11
+ default: undefined;
12
+ };
13
+ color: {
14
+ type: PropType<Color>;
15
+ default: string;
16
+ };
17
+ name: {
18
+ type: StringConstructor;
19
+ default: string;
20
+ };
21
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:model-value"[], "update:model-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
22
+ modelValue: {
23
+ type: BooleanConstructor;
24
+ required: true;
25
+ };
26
+ id: {
27
+ type: StringConstructor;
28
+ default: undefined;
29
+ };
30
+ color: {
31
+ type: PropType<Color>;
32
+ default: string;
33
+ };
34
+ name: {
35
+ type: StringConstructor;
36
+ default: string;
37
+ };
38
+ }>> & {
39
+ "onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
40
+ }, {
41
+ id: string;
42
+ color: Color;
43
+ name: string;
44
+ }, {}>, {
45
+ default?(_: {}): any;
46
+ }>;
47
+ export default _default;
48
+ type __VLS_WithTemplateSlots<T, S> = T & {
49
+ new (): {
50
+ $slots: S;
51
+ };
52
+ };
@@ -0,0 +1,91 @@
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
2
+ /** Modal's title in header */
3
+ title: {
4
+ type: StringConstructor;
5
+ default: undefined;
6
+ };
7
+ /** Remove the close button in header */
8
+ noClose: {
9
+ type: BooleanConstructor;
10
+ default: boolean;
11
+ };
12
+ /** Modal's width */
13
+ width: {
14
+ type: StringConstructor;
15
+ default: string;
16
+ };
17
+ /** Modal's max-width */
18
+ maxWidth: {
19
+ type: StringConstructor;
20
+ default: string;
21
+ };
22
+ /** Modal's max-height */
23
+ maxHeight: {
24
+ type: StringConstructor;
25
+ default: string;
26
+ };
27
+ /** Modal's content becomes scrollable - warning: a overflow is applied */
28
+ scrollable: {
29
+ type: BooleanConstructor;
30
+ default: boolean;
31
+ };
32
+ }, {}, 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<{
33
+ /** Modal's title in header */
34
+ title: {
35
+ type: StringConstructor;
36
+ default: undefined;
37
+ };
38
+ /** Remove the close button in header */
39
+ noClose: {
40
+ type: BooleanConstructor;
41
+ default: boolean;
42
+ };
43
+ /** Modal's width */
44
+ width: {
45
+ type: StringConstructor;
46
+ default: string;
47
+ };
48
+ /** Modal's max-width */
49
+ maxWidth: {
50
+ type: StringConstructor;
51
+ default: string;
52
+ };
53
+ /** Modal's max-height */
54
+ maxHeight: {
55
+ type: StringConstructor;
56
+ default: string;
57
+ };
58
+ /** Modal's content becomes scrollable - warning: a overflow is applied */
59
+ scrollable: {
60
+ type: BooleanConstructor;
61
+ default: boolean;
62
+ };
63
+ }>> & {
64
+ onClose?: ((...args: any[]) => any) | undefined;
65
+ onOpen?: ((...args: any[]) => any) | undefined;
66
+ "onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
67
+ }, {
68
+ title: string;
69
+ width: string;
70
+ noClose: boolean;
71
+ maxWidth: string;
72
+ maxHeight: string;
73
+ scrollable: boolean;
74
+ }, {}>, {
75
+ header?(_: {
76
+ close: any;
77
+ }): any;
78
+ title?(_: {}): any;
79
+ default?(_: {
80
+ close: any;
81
+ }): any;
82
+ footer?(_: {
83
+ close: any;
84
+ }): any;
85
+ }>;
86
+ export default _default;
87
+ type __VLS_WithTemplateSlots<T, S> = T & {
88
+ new (): {
89
+ $slots: S;
90
+ };
91
+ };
@@ -0,0 +1,30 @@
1
+ export interface DialogState {
2
+ id: string;
3
+ isActive: boolean;
4
+ resolve: (value: unknown) => void;
5
+ reject?: (reason?: unknown) => void;
6
+ }
7
+ export interface DialogData {
8
+ title: string;
9
+ message: string;
10
+ cancelText?: string;
11
+ confirmText?: string;
12
+ }
13
+ export declare const useMazDialogPromise: () => {
14
+ confirmDialogData: import("vue").Ref<DialogData | undefined>;
15
+ dialogState: import("vue").Ref<{
16
+ id: string;
17
+ isActive: boolean;
18
+ resolve: (value: unknown) => void;
19
+ reject?: ((reason?: unknown) => void) | undefined;
20
+ }[]>;
21
+ showDialogAndWaitChoice: (identifier: string, callback?: () => unknown) => Promise<unknown>;
22
+ removeDialogFromState: (identifier: string) => {
23
+ id: string;
24
+ isActive: boolean;
25
+ resolve: (value: unknown) => void;
26
+ reject?: ((reason?: unknown) => void) | undefined;
27
+ }[];
28
+ rejectDialog: (currentDialog: DialogState, response?: string | boolean) => void;
29
+ resolveDialog: (currentDialog: DialogState, response?: string | boolean) => void;
30
+ };
@@ -0,0 +1,72 @@
1
+ import { type PropType } from 'vue';
2
+ import { type Color, type Size } from './MazBtn.vue';
3
+ import { type DialogData } from './MazDialogPromise/use-maz-dialog-promise';
4
+ export { useMazDialogPromise } from './MazDialogPromise/use-maz-dialog-promise';
5
+ export type { DialogState, DialogData } from './MazDialogPromise/use-maz-dialog-promise';
6
+ export type { Color, Size } from './types';
7
+ export type DialogButton = {
8
+ response?: string | boolean;
9
+ type: 'resolve' | 'reject';
10
+ color?: Color;
11
+ size?: Size;
12
+ text: string;
13
+ outline?: boolean;
14
+ rounded?: boolean;
15
+ disabled?: boolean;
16
+ loading?: boolean;
17
+ block?: boolean;
18
+ };
19
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
20
+ /** Dialog Data - type DialogData */
21
+ data: {
22
+ type: PropType<DialogData>;
23
+ default: undefined;
24
+ };
25
+ /** Uniq identifier */
26
+ identifier: {
27
+ type: StringConstructor;
28
+ required: true;
29
+ };
30
+ /** Custom buttons - type DialogButton[] */
31
+ buttons: {
32
+ type: PropType<DialogButton[]>;
33
+ default: () => never[];
34
+ };
35
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
36
+ /** Dialog Data - type DialogData */
37
+ data: {
38
+ type: PropType<DialogData>;
39
+ default: undefined;
40
+ };
41
+ /** Uniq identifier */
42
+ identifier: {
43
+ type: StringConstructor;
44
+ required: true;
45
+ };
46
+ /** Custom buttons - type DialogButton[] */
47
+ buttons: {
48
+ type: PropType<DialogButton[]>;
49
+ default: () => never[];
50
+ };
51
+ }>>, {
52
+ data: DialogData;
53
+ buttons: DialogButton[];
54
+ }, {}>, {
55
+ title?(_: {}): any;
56
+ default?(_: {
57
+ resolve: (reason?: string | boolean) => void;
58
+ reject: (reason?: string | boolean) => void;
59
+ }): any;
60
+ "footer-button"?(_: {
61
+ resolve: (reason?: string | boolean) => void;
62
+ reject: (reason?: string | boolean) => void;
63
+ }): any;
64
+ "cancel-text"?(_: {}): any;
65
+ "confirm-text"?(_: {}): any;
66
+ }>;
67
+ export default _default;
68
+ type __VLS_WithTemplateSlots<T, S> = T & {
69
+ new (): {
70
+ $slots: S;
71
+ };
72
+ };
@@ -0,0 +1,69 @@
1
+ import type { PropType } from 'vue';
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
3
+ noClose: {
4
+ type: BooleanConstructor;
5
+ default: boolean;
6
+ };
7
+ title: {
8
+ type: StringConstructor;
9
+ default: undefined;
10
+ };
11
+ variant: {
12
+ type: PropType<"top" | "bottom" | "left" | "right">;
13
+ default: string;
14
+ validator: (value: string) => boolean;
15
+ };
16
+ backdropClass: {
17
+ type: StringConstructor;
18
+ default: undefined;
19
+ };
20
+ size: {
21
+ type: StringConstructor;
22
+ default: string;
23
+ };
24
+ }, {}, 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<{
25
+ noClose: {
26
+ type: BooleanConstructor;
27
+ default: boolean;
28
+ };
29
+ title: {
30
+ type: StringConstructor;
31
+ default: undefined;
32
+ };
33
+ variant: {
34
+ type: PropType<"top" | "bottom" | "left" | "right">;
35
+ default: string;
36
+ validator: (value: string) => boolean;
37
+ };
38
+ backdropClass: {
39
+ type: StringConstructor;
40
+ default: undefined;
41
+ };
42
+ size: {
43
+ type: StringConstructor;
44
+ default: string;
45
+ };
46
+ }>> & {
47
+ onClose?: ((...args: any[]) => any) | undefined;
48
+ onOpen?: ((...args: any[]) => any) | undefined;
49
+ "onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
50
+ }, {
51
+ title: string;
52
+ size: string;
53
+ backdropClass: string;
54
+ variant: "top" | "bottom" | "left" | "right";
55
+ noClose: boolean;
56
+ }, {}>, {
57
+ title?(_: {
58
+ close: any;
59
+ }): any;
60
+ default?(_: {
61
+ close: any;
62
+ }): any;
63
+ }>;
64
+ export default _default;
65
+ type __VLS_WithTemplateSlots<T, S> = T & {
66
+ new (): {
67
+ $slots: S;
68
+ };
69
+ };