sprintify-ui 0.0.10 → 0.0.12

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 (103) hide show
  1. package/dist/sprintify-ui.es.js +5174 -6624
  2. package/dist/style.css +1 -1
  3. package/dist/tailwindcss/index.js +23 -0
  4. package/dist/types/src/components/BaseAutocomplete.vue.d.ts +0 -1
  5. package/dist/types/src/components/BaseAutocompleteFetch.vue.d.ts +0 -1
  6. package/dist/types/src/components/BaseBelongsTo.vue.d.ts +13 -3
  7. package/dist/types/src/components/BaseCharacterCounter.vue.d.ts +143 -0
  8. package/dist/types/src/components/BaseDataTable.vue.d.ts +95 -64
  9. package/dist/types/src/components/BaseDialog.vue.d.ts +8 -8
  10. package/dist/types/src/components/BaseFilePicker.vue.d.ts +3 -3
  11. package/dist/types/src/components/BaseInput.vue.d.ts +39 -5
  12. package/dist/types/src/components/BaseLoadingCover.vue.d.ts +84 -12
  13. package/dist/types/src/components/BaseMenuItem.vue.d.ts +4 -4
  14. package/dist/types/src/components/BaseModalCenter.vue.d.ts +8 -8
  15. package/dist/types/src/components/BaseModalSide.vue.d.ts +8 -8
  16. package/dist/types/src/components/BaseNavbarItemContent.vue.d.ts +4 -4
  17. package/dist/types/src/components/BasePagination.vue.d.ts +105 -13
  18. package/dist/types/src/components/BasePaginationSimple.vue.d.ts +2 -2
  19. package/dist/types/src/components/BaseSelect.vue.d.ts +130 -26
  20. package/dist/types/src/components/BaseSwitch.vue.d.ts +15 -8
  21. package/dist/types/src/components/BaseTabItem.vue.d.ts +26 -4
  22. package/dist/types/src/components/BaseTableColumn.vue.d.ts +4 -4
  23. package/dist/types/src/components/BaseTextareaAutoresize.vue.d.ts +175 -21
  24. package/dist/types/src/components/index.d.ts +24 -1
  25. package/dist/types/src/index.d.ts +4 -0
  26. package/dist/types/src/svg/BaseEmptyState.vue.d.ts +2 -0
  27. package/dist/types/src/{components/BaseSpinner.vue.d.ts → svg/BaseSpinnerLarge.vue.d.ts} +0 -0
  28. package/dist/types/src/svg/BaseSpinnerSmall.vue.d.ts +44 -0
  29. package/dist/types/src/types/types.d.ts +1 -1
  30. package/package.json +4 -2
  31. package/src/components/BaseAutocomplete.stories.js +7 -4
  32. package/src/components/BaseAutocomplete.vue +44 -15
  33. package/src/components/BaseAutocompleteFetch.stories.js +6 -3
  34. package/src/components/BaseAutocompleteFetch.vue +8 -3
  35. package/src/components/BaseBelongsTo.stories.js +9 -4
  36. package/src/components/BaseBelongsTo.vue +1 -0
  37. package/src/components/BaseCard.vue +1 -1
  38. package/src/components/BaseCharacterCounter.stories.js +30 -0
  39. package/src/components/BaseCharacterCounter.vue +60 -0
  40. package/src/components/BaseDataIterator.stories.js +102 -3
  41. package/src/components/BaseDataIterator.vue +75 -49
  42. package/src/components/BaseDataTable.stories.js +149 -2
  43. package/src/components/BaseDataTable.vue +34 -28
  44. package/src/components/BaseDataTableToggleColumns.vue +1 -1
  45. package/src/components/BaseDateSelect.vue +6 -2
  46. package/src/components/BaseDescriptionListItem.vue +40 -4
  47. package/src/components/BaseDialog.stories.js +51 -0
  48. package/src/components/BaseDialog.vue +13 -7
  49. package/src/components/BaseFilePicker.stories.js +51 -0
  50. package/src/components/BaseFilePicker.vue +6 -6
  51. package/src/components/BaseFileUploader.stories.js +80 -0
  52. package/src/components/BaseFileUploader.vue +16 -3
  53. package/src/components/BaseInput.stories.js +46 -0
  54. package/src/components/BaseInput.vue +10 -2
  55. package/src/components/BaseInputLabel.stories.js +31 -0
  56. package/src/components/BaseInputLabel.vue +1 -1
  57. package/src/components/BaseLoadingCover.stories.js +55 -0
  58. package/src/components/BaseLoadingCover.vue +27 -17
  59. package/src/components/BaseMenu.stories.js +125 -0
  60. package/src/components/BaseModalCenter.stories.js +61 -0
  61. package/src/components/BaseModalCenter.vue +2 -2
  62. package/src/components/BaseModalSide.stories.js +55 -0
  63. package/src/components/BaseModalSide.vue +2 -2
  64. package/src/components/BaseNavbar.stories.js +150 -0
  65. package/src/components/BaseNavbar.vue +3 -0
  66. package/src/components/BaseNavbarItem.vue +1 -0
  67. package/src/components/BaseNavbarItemContent.vue +3 -0
  68. package/src/components/BasePagination.stories.js +32 -0
  69. package/src/components/BasePagination.vue +126 -40
  70. package/src/components/BasePaginationSimple.vue +3 -3
  71. package/src/components/BasePanel.stories.js +56 -0
  72. package/src/components/BasePassword.stories.js +36 -0
  73. package/src/components/BasePassword.vue +11 -5
  74. package/src/components/BaseProcessRing.stories.js +27 -0
  75. package/src/components/BaseReadMore.stories.js +30 -0
  76. package/src/components/BaseReadMore.vue +1 -1
  77. package/src/components/BaseSelect.stories.js +67 -0
  78. package/src/components/BaseSelect.vue +144 -44
  79. package/src/components/BaseSideNavigation.stories.js +55 -0
  80. package/src/components/BaseSideNavigation.vue +7 -2
  81. package/src/components/BaseSideNavigationItem.vue +11 -3
  82. package/src/components/BaseSkeleton.stories.js +36 -0
  83. package/src/components/BaseSwitch.stories.js +101 -0
  84. package/src/components/BaseSwitch.vue +90 -12
  85. package/src/components/BaseSystemAlert.stories.js +63 -0
  86. package/src/components/BaseTabItem.vue +19 -6
  87. package/src/components/BaseTable.vue +42 -29
  88. package/src/components/BaseTableColumn.vue +2 -2
  89. package/src/components/BaseTabs.stories.js +54 -0
  90. package/src/components/BaseTabs.vue +3 -3
  91. package/src/components/BaseTextarea.stories.js +35 -0
  92. package/src/components/BaseTextarea.vue +1 -1
  93. package/src/components/BaseTextareaAutoresize.stories.js +49 -0
  94. package/src/components/BaseTextareaAutoresize.vue +83 -87
  95. package/src/components/index.ts +46 -0
  96. package/src/lang/en.json +1 -0
  97. package/src/lang/fr.json +1 -0
  98. package/src/svg/BaseEmptyState.vue +34 -0
  99. package/src/{components/BaseSpinner.vue → svg/BaseSpinnerLarge.vue} +0 -0
  100. package/src/svg/BaseSpinnerSmall.vue +9 -0
  101. package/src/types/types.ts +1 -1
  102. package/dist/types/src/components/BaseWordCount.vue.d.ts +0 -31
  103. package/src/components/BaseWordCount.vue +0 -36
@@ -7,23 +7,32 @@ declare const _default: {
7
7
  required: boolean;
8
8
  type: string;
9
9
  name: string;
10
+ modelValue: string | number | null;
10
11
  placeholder: string;
11
12
  disabled: boolean;
12
13
  autocomplete: boolean;
14
+ step: number;
13
15
  preventSubmit: boolean;
14
16
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
15
17
  modelValue: {
16
- required: true;
18
+ default: string;
17
19
  type: PropType<string | number | null>;
18
20
  };
19
21
  type: {
20
22
  type: StringConstructor;
21
23
  default: string;
22
24
  };
25
+ step: {
26
+ default: undefined;
27
+ type: NumberConstructor;
28
+ };
23
29
  autocomplete: {
24
30
  default: boolean;
25
31
  type: BooleanConstructor;
26
32
  };
33
+ /**
34
+ * Prevents submit when pressing 'Enter' while the input is focused.
35
+ */
27
36
  preventSubmit: {
28
37
  default: boolean;
29
38
  type: BooleanConstructor;
@@ -46,7 +55,7 @@ declare const _default: {
46
55
  };
47
56
  }>> & {
48
57
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
49
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "required" | "type" | "name" | "placeholder" | "disabled" | "autocomplete" | "preventSubmit">;
58
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "required" | "type" | "name" | "modelValue" | "placeholder" | "disabled" | "autocomplete" | "step" | "preventSubmit">;
50
59
  $attrs: {
51
60
  [x: string]: unknown;
52
61
  };
@@ -62,17 +71,24 @@ declare const _default: {
62
71
  $el: any;
63
72
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
64
73
  modelValue: {
65
- required: true;
74
+ default: string;
66
75
  type: PropType<string | number | null>;
67
76
  };
68
77
  type: {
69
78
  type: StringConstructor;
70
79
  default: string;
71
80
  };
81
+ step: {
82
+ default: undefined;
83
+ type: NumberConstructor;
84
+ };
72
85
  autocomplete: {
73
86
  default: boolean;
74
87
  type: BooleanConstructor;
75
88
  };
89
+ /**
90
+ * Prevents submit when pressing 'Enter' while the input is focused.
91
+ */
76
92
  preventSubmit: {
77
93
  default: boolean;
78
94
  type: BooleanConstructor;
@@ -99,9 +115,11 @@ declare const _default: {
99
115
  required: boolean;
100
116
  type: string;
101
117
  name: string;
118
+ modelValue: string | number | null;
102
119
  placeholder: string;
103
120
  disabled: boolean;
104
121
  autocomplete: boolean;
122
+ step: number;
105
123
  preventSubmit: boolean;
106
124
  }, {}, string> & {
107
125
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
@@ -125,17 +143,24 @@ declare const _default: {
125
143
  $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;
126
144
  } & Readonly<import("vue").ExtractPropTypes<{
127
145
  modelValue: {
128
- required: true;
146
+ default: string;
129
147
  type: PropType<string | number | null>;
130
148
  };
131
149
  type: {
132
150
  type: StringConstructor;
133
151
  default: string;
134
152
  };
153
+ step: {
154
+ default: undefined;
155
+ type: NumberConstructor;
156
+ };
135
157
  autocomplete: {
136
158
  default: boolean;
137
159
  type: BooleanConstructor;
138
160
  };
161
+ /**
162
+ * Prevents submit when pressing 'Enter' while the input is focused.
163
+ */
139
164
  preventSubmit: {
140
165
  default: boolean;
141
166
  type: BooleanConstructor;
@@ -164,17 +189,24 @@ declare const _default: {
164
189
  __isSuspense?: undefined;
165
190
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
166
191
  modelValue: {
167
- required: true;
192
+ default: string;
168
193
  type: PropType<string | number | null>;
169
194
  };
170
195
  type: {
171
196
  type: StringConstructor;
172
197
  default: string;
173
198
  };
199
+ step: {
200
+ default: undefined;
201
+ type: NumberConstructor;
202
+ };
174
203
  autocomplete: {
175
204
  default: boolean;
176
205
  type: BooleanConstructor;
177
206
  };
207
+ /**
208
+ * Prevents submit when pressing 'Enter' while the input is focused.
209
+ */
178
210
  preventSubmit: {
179
211
  default: boolean;
180
212
  type: BooleanConstructor;
@@ -201,9 +233,11 @@ declare const _default: {
201
233
  required: boolean;
202
234
  type: string;
203
235
  name: string;
236
+ modelValue: string | number | null;
204
237
  placeholder: string;
205
238
  disabled: boolean;
206
239
  autocomplete: boolean;
240
+ step: number;
207
241
  preventSubmit: boolean;
208
242
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
209
243
  export default _default;
@@ -5,37 +5,55 @@ declare const _default: {
5
5
  $data: {};
6
6
  $props: Partial<{
7
7
  iconClass: string;
8
- icon: "line" | "spinner";
9
8
  duration: string;
10
9
  delay: number;
11
10
  modelValue: boolean;
11
+ size: "sm" | "lg";
12
12
  backdropClass: string;
13
13
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
14
+ /**
15
+ * Show/Hide the loading cover
16
+ */
14
17
  modelValue: {
15
18
  default: boolean;
16
19
  type: BooleanConstructor;
17
20
  };
21
+ /**
22
+ * Classes added to the backdrop
23
+ */
18
24
  backdropClass: {
19
25
  default: string;
20
26
  type: StringConstructor;
21
27
  };
28
+ /**
29
+ * Classes added to the spinner icon
30
+ */
22
31
  iconClass: {
23
32
  default: string;
24
33
  type: StringConstructor;
25
34
  };
26
- icon: {
35
+ /**
36
+ * Change the type of spinner. 'sm' for a small spinner. 'lg' for a large spinner.
37
+ */
38
+ size: {
27
39
  default: string;
28
- type: PropType<"line" | "spinner">;
40
+ type: PropType<"sm" | "lg">;
29
41
  };
42
+ /**
43
+ * Transition duration class.
44
+ */
30
45
  duration: {
31
46
  default: string;
32
47
  type: StringConstructor;
33
48
  };
49
+ /**
50
+ * Delay before showing the loading cover. This delay is used to avoid unnecessary showing the spinner for a fraction of second when the loading time is too short.
51
+ */
34
52
  delay: {
35
53
  default: number;
36
54
  type: NumberConstructor;
37
55
  };
38
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "iconClass" | "icon" | "duration" | "delay" | "modelValue" | "backdropClass">;
56
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "iconClass" | "duration" | "delay" | "modelValue" | "size" | "backdropClass">;
39
57
  $attrs: {
40
58
  [x: string]: unknown;
41
59
  };
@@ -50,36 +68,54 @@ declare const _default: {
50
68
  $emit: (event: string, ...args: any[]) => void;
51
69
  $el: any;
52
70
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
71
+ /**
72
+ * Show/Hide the loading cover
73
+ */
53
74
  modelValue: {
54
75
  default: boolean;
55
76
  type: BooleanConstructor;
56
77
  };
78
+ /**
79
+ * Classes added to the backdrop
80
+ */
57
81
  backdropClass: {
58
82
  default: string;
59
83
  type: StringConstructor;
60
84
  };
85
+ /**
86
+ * Classes added to the spinner icon
87
+ */
61
88
  iconClass: {
62
89
  default: string;
63
90
  type: StringConstructor;
64
91
  };
65
- icon: {
92
+ /**
93
+ * Change the type of spinner. 'sm' for a small spinner. 'lg' for a large spinner.
94
+ */
95
+ size: {
66
96
  default: string;
67
- type: PropType<"line" | "spinner">;
97
+ type: PropType<"sm" | "lg">;
68
98
  };
99
+ /**
100
+ * Transition duration class.
101
+ */
69
102
  duration: {
70
103
  default: string;
71
104
  type: StringConstructor;
72
105
  };
106
+ /**
107
+ * Delay before showing the loading cover. This delay is used to avoid unnecessary showing the spinner for a fraction of second when the loading time is too short.
108
+ */
73
109
  delay: {
74
110
  default: number;
75
111
  type: NumberConstructor;
76
112
  };
77
113
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
78
114
  iconClass: string;
79
- icon: "line" | "spinner";
80
115
  duration: string;
81
116
  delay: number;
82
117
  modelValue: boolean;
118
+ size: "sm" | "lg";
83
119
  backdropClass: string;
84
120
  }, {}, string> & {
85
121
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
@@ -102,26 +138,44 @@ declare const _default: {
102
138
  $nextTick: typeof import("vue").nextTick;
103
139
  $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;
104
140
  } & Readonly<import("vue").ExtractPropTypes<{
141
+ /**
142
+ * Show/Hide the loading cover
143
+ */
105
144
  modelValue: {
106
145
  default: boolean;
107
146
  type: BooleanConstructor;
108
147
  };
148
+ /**
149
+ * Classes added to the backdrop
150
+ */
109
151
  backdropClass: {
110
152
  default: string;
111
153
  type: StringConstructor;
112
154
  };
155
+ /**
156
+ * Classes added to the spinner icon
157
+ */
113
158
  iconClass: {
114
159
  default: string;
115
160
  type: StringConstructor;
116
161
  };
117
- icon: {
162
+ /**
163
+ * Change the type of spinner. 'sm' for a small spinner. 'lg' for a large spinner.
164
+ */
165
+ size: {
118
166
  default: string;
119
- type: PropType<"line" | "spinner">;
167
+ type: PropType<"sm" | "lg">;
120
168
  };
169
+ /**
170
+ * Transition duration class.
171
+ */
121
172
  duration: {
122
173
  default: string;
123
174
  type: StringConstructor;
124
175
  };
176
+ /**
177
+ * Delay before showing the loading cover. This delay is used to avoid unnecessary showing the spinner for a fraction of second when the loading time is too short.
178
+ */
125
179
  delay: {
126
180
  default: number;
127
181
  type: NumberConstructor;
@@ -131,36 +185,54 @@ declare const _default: {
131
185
  __isTeleport?: undefined;
132
186
  __isSuspense?: undefined;
133
187
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
188
+ /**
189
+ * Show/Hide the loading cover
190
+ */
134
191
  modelValue: {
135
192
  default: boolean;
136
193
  type: BooleanConstructor;
137
194
  };
195
+ /**
196
+ * Classes added to the backdrop
197
+ */
138
198
  backdropClass: {
139
199
  default: string;
140
200
  type: StringConstructor;
141
201
  };
202
+ /**
203
+ * Classes added to the spinner icon
204
+ */
142
205
  iconClass: {
143
206
  default: string;
144
207
  type: StringConstructor;
145
208
  };
146
- icon: {
209
+ /**
210
+ * Change the type of spinner. 'sm' for a small spinner. 'lg' for a large spinner.
211
+ */
212
+ size: {
147
213
  default: string;
148
- type: PropType<"line" | "spinner">;
214
+ type: PropType<"sm" | "lg">;
149
215
  };
216
+ /**
217
+ * Transition duration class.
218
+ */
150
219
  duration: {
151
220
  default: string;
152
221
  type: StringConstructor;
153
222
  };
223
+ /**
224
+ * Delay before showing the loading cover. This delay is used to avoid unnecessary showing the spinner for a fraction of second when the loading time is too short.
225
+ */
154
226
  delay: {
155
227
  default: number;
156
228
  type: NumberConstructor;
157
229
  };
158
230
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
159
231
  iconClass: string;
160
- icon: "line" | "spinner";
161
232
  duration: string;
162
233
  delay: number;
163
234
  modelValue: boolean;
235
+ size: "sm" | "lg";
164
236
  backdropClass: string;
165
237
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
166
238
  export default _default;
@@ -4,9 +4,9 @@ declare const _default: {
4
4
  $: import("vue").ComponentInternalInstance;
5
5
  $data: {};
6
6
  $props: Partial<{
7
- label: string;
8
7
  color: "success" | "danger" | "warning" | "dark" | "light";
9
8
  icon: string;
9
+ label: string;
10
10
  count: number;
11
11
  active: boolean;
12
12
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
@@ -30,7 +30,7 @@ declare const _default: {
30
30
  default: string;
31
31
  type: PropType<"success" | "danger" | "warning" | "dark" | "light">;
32
32
  };
33
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "color" | "icon" | "count" | "active">;
33
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "color" | "icon" | "label" | "count" | "active">;
34
34
  $attrs: {
35
35
  [x: string]: unknown;
36
36
  };
@@ -66,9 +66,9 @@ declare const _default: {
66
66
  type: PropType<"success" | "danger" | "warning" | "dark" | "light">;
67
67
  };
68
68
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
69
- label: string;
70
69
  color: "success" | "danger" | "warning" | "dark" | "light";
71
70
  icon: string;
71
+ label: string;
72
72
  count: number;
73
73
  active: boolean;
74
74
  }, {}, string> & {
@@ -138,9 +138,9 @@ declare const _default: {
138
138
  type: PropType<"success" | "danger" | "warning" | "dark" | "light">;
139
139
  };
140
140
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
141
- label: string;
142
141
  color: "success" | "danger" | "warning" | "dark" | "light";
143
142
  icon: string;
143
+ label: string;
144
144
  count: number;
145
145
  active: boolean;
146
146
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
@@ -4,7 +4,7 @@ declare const _default: {
4
4
  $data: {};
5
5
  $props: Partial<{
6
6
  modelValue: boolean;
7
- modalOverlayClasses: string;
7
+ backdropClass: string;
8
8
  closeOnOutsideClick: boolean;
9
9
  verticalAlign: string;
10
10
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
@@ -16,7 +16,7 @@ declare const _default: {
16
16
  default: string;
17
17
  type: StringConstructor;
18
18
  };
19
- modalOverlayClasses: {
19
+ backdropClass: {
20
20
  default: string;
21
21
  type: StringConstructor;
22
22
  };
@@ -26,7 +26,7 @@ declare const _default: {
26
26
  };
27
27
  }>> & {
28
28
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
29
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "modalOverlayClasses" | "closeOnOutsideClick" | "verticalAlign">;
29
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "backdropClass" | "closeOnOutsideClick" | "verticalAlign">;
30
30
  $attrs: {
31
31
  [x: string]: unknown;
32
32
  };
@@ -49,7 +49,7 @@ declare const _default: {
49
49
  default: string;
50
50
  type: StringConstructor;
51
51
  };
52
- modalOverlayClasses: {
52
+ backdropClass: {
53
53
  default: string;
54
54
  type: StringConstructor;
55
55
  };
@@ -61,7 +61,7 @@ declare const _default: {
61
61
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
62
62
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], string, {
63
63
  modelValue: boolean;
64
- modalOverlayClasses: string;
64
+ backdropClass: string;
65
65
  closeOnOutsideClick: boolean;
66
66
  verticalAlign: string;
67
67
  }, {}, string> & {
@@ -93,7 +93,7 @@ declare const _default: {
93
93
  default: string;
94
94
  type: StringConstructor;
95
95
  };
96
- modalOverlayClasses: {
96
+ backdropClass: {
97
97
  default: string;
98
98
  type: StringConstructor;
99
99
  };
@@ -116,7 +116,7 @@ declare const _default: {
116
116
  default: string;
117
117
  type: StringConstructor;
118
118
  };
119
- modalOverlayClasses: {
119
+ backdropClass: {
120
120
  default: string;
121
121
  type: StringConstructor;
122
122
  };
@@ -128,7 +128,7 @@ declare const _default: {
128
128
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
129
129
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", {
130
130
  modelValue: boolean;
131
- modalOverlayClasses: string;
131
+ backdropClass: string;
132
132
  closeOnOutsideClick: boolean;
133
133
  verticalAlign: string;
134
134
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
@@ -5,7 +5,7 @@ declare const _default: {
5
5
  $props: Partial<{
6
6
  modelValue: boolean;
7
7
  maxWidth: string;
8
- modalOverlayClasses: string;
8
+ backdropClass: string;
9
9
  closeOnOutsideClick: boolean;
10
10
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
11
11
  modelValue: {
@@ -16,7 +16,7 @@ declare const _default: {
16
16
  default: string;
17
17
  type: StringConstructor;
18
18
  };
19
- modalOverlayClasses: {
19
+ backdropClass: {
20
20
  default: string;
21
21
  type: StringConstructor;
22
22
  };
@@ -26,7 +26,7 @@ declare const _default: {
26
26
  };
27
27
  }>> & {
28
28
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
29
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "maxWidth" | "modalOverlayClasses" | "closeOnOutsideClick">;
29
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "maxWidth" | "backdropClass" | "closeOnOutsideClick">;
30
30
  $attrs: {
31
31
  [x: string]: unknown;
32
32
  };
@@ -49,7 +49,7 @@ declare const _default: {
49
49
  default: string;
50
50
  type: StringConstructor;
51
51
  };
52
- modalOverlayClasses: {
52
+ backdropClass: {
53
53
  default: string;
54
54
  type: StringConstructor;
55
55
  };
@@ -62,7 +62,7 @@ declare const _default: {
62
62
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], string, {
63
63
  modelValue: boolean;
64
64
  maxWidth: string;
65
- modalOverlayClasses: string;
65
+ backdropClass: string;
66
66
  closeOnOutsideClick: boolean;
67
67
  }, {}, string> & {
68
68
  beforeCreate?: ((() => void) | (() => void)[]) | undefined;
@@ -93,7 +93,7 @@ declare const _default: {
93
93
  default: string;
94
94
  type: StringConstructor;
95
95
  };
96
- modalOverlayClasses: {
96
+ backdropClass: {
97
97
  default: string;
98
98
  type: StringConstructor;
99
99
  };
@@ -116,7 +116,7 @@ declare const _default: {
116
116
  default: string;
117
117
  type: StringConstructor;
118
118
  };
119
- modalOverlayClasses: {
119
+ backdropClass: {
120
120
  default: string;
121
121
  type: StringConstructor;
122
122
  };
@@ -129,7 +129,7 @@ declare const _default: {
129
129
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", {
130
130
  modelValue: boolean;
131
131
  maxWidth: string;
132
- modalOverlayClasses: string;
132
+ backdropClass: string;
133
133
  closeOnOutsideClick: boolean;
134
134
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
135
135
  $slots: {
@@ -3,8 +3,8 @@ declare const _default: {
3
3
  $: import("vue").ComponentInternalInstance;
4
4
  $data: {};
5
5
  $props: Partial<{
6
- label: string;
7
6
  icon: string;
7
+ label: string;
8
8
  count: number;
9
9
  active: boolean;
10
10
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
@@ -24,7 +24,7 @@ declare const _default: {
24
24
  default: undefined;
25
25
  type: NumberConstructor;
26
26
  };
27
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "label" | "icon" | "count" | "active">;
27
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "icon" | "label" | "count" | "active">;
28
28
  $attrs: {
29
29
  [x: string]: unknown;
30
30
  };
@@ -56,8 +56,8 @@ declare const _default: {
56
56
  type: NumberConstructor;
57
57
  };
58
58
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
59
- label: string;
60
59
  icon: string;
60
+ label: string;
61
61
  count: number;
62
62
  active: boolean;
63
63
  }, {}, string> & {
@@ -119,8 +119,8 @@ declare const _default: {
119
119
  type: NumberConstructor;
120
120
  };
121
121
  }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
122
- label: string;
123
122
  icon: string;
123
+ label: string;
124
124
  count: number;
125
125
  active: boolean;
126
126
  }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;