cleek 2.11.33 → 2.11.35

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 (53) hide show
  1. package/dist/main.cjs.js +1 -1
  2. package/dist/main.css +1 -1
  3. package/dist/main.es.js +1982 -2391
  4. package/dist/types/cleek-options/cleek-options.types.d.ts +1 -1
  5. package/dist/types/cleek-options/default-cleek-options.d.ts +0 -1
  6. package/dist/types/components/ck-button.vue.d.ts +17 -41
  7. package/dist/types/components/ck-card.vue.d.ts +17 -27
  8. package/dist/types/components/ck-checkbox.vue.d.ts +26 -61
  9. package/dist/types/components/ck-chip.vue.d.ts +16 -32
  10. package/dist/types/components/ck-circle.vue.d.ts +16 -26
  11. package/dist/types/components/ck-div.vue.d.ts +16 -23
  12. package/dist/types/components/ck-dropdown/ck-dropdown.vue.d.ts +22 -23
  13. package/dist/types/components/ck-dropdown-button.vue.d.ts +7 -17
  14. package/dist/types/components/ck-icon.vue.d.ts +7 -26
  15. package/dist/types/components/ck-img.vue.d.ts +6 -30
  16. package/dist/types/components/ck-input/ck-input-date.vue.d.ts +9 -30
  17. package/dist/types/components/ck-input/ck-input-time.vue.d.ts +7 -23
  18. package/dist/types/components/ck-input.vue.d.ts +57 -234
  19. package/dist/types/components/ck-label.vue.d.ts +13 -20
  20. package/dist/types/components/ck-navbar/ck-navbar.vue.d.ts +12 -19
  21. package/dist/types/components/ck-notify/components/CkConfirm.vue.d.ts +1 -1
  22. package/dist/types/components/ck-popup.vue.d.ts +50 -157
  23. package/dist/types/components/ck-radio.vue.d.ts +8 -25
  24. package/dist/types/components/ck-select.vue.d.ts +52 -243
  25. package/dist/types/components/ck-sidebar.vue.d.ts +30 -69
  26. package/dist/types/components/ck-switch-options.vue.d.ts +27 -115
  27. package/dist/types/components/ck-switch.vue.d.ts +35 -102
  28. package/dist/types/components/ck-table/ck-pagination/ck-pagination.vue.d.ts +6 -25
  29. package/dist/types/components/ck-table/ck-table.vue.d.ts +60 -182
  30. package/dist/types/components/ck-table/ck-td.vue.d.ts +12 -27
  31. package/dist/types/components/ck-table/ck-th.vue.d.ts +12 -20
  32. package/dist/types/components/ck-table/ck-tr.vue.d.ts +9 -3
  33. package/dist/types/components/ck-table/inner-components/ck-table__columns-manager-btn.vue.d.ts +3 -14
  34. package/dist/types/components/ck-table/inner-components/ck-table__columns-manager.vue.d.ts +6 -19
  35. package/dist/types/components/ck-table/inner-components/ck-table__header-items.vue.d.ts +25 -58
  36. package/dist/types/components/ck-table/inner-components/ck-table__items-per-page.vue.d.ts +3 -16
  37. package/dist/types/components/ck-table/inner-components/ck-table__pagination.vue.d.ts +7 -23
  38. package/dist/types/components/ck-table/loading-and-no-results-text/LoadingAndNoResultsText.vue.d.ts +3 -16
  39. package/dist/types/components/ck-tabs/ck-tab.vue.d.ts +12 -18
  40. package/dist/types/components/ck-tabs/ck-tabs.vue.d.ts +19 -19
  41. package/dist/types/components/ck-textarea.vue.d.ts +14 -42
  42. package/dist/types/components/ck-tile-picker.vue.d.ts +33 -85
  43. package/dist/types/components/ck-toggle/ck-toggle.vue.d.ts +16 -27
  44. package/dist/types/components/ck-toggle-group/ck-toggle-group.vue.d.ts +28 -65
  45. package/dist/types/components/showers/ck-datetime-shower.vue.d.ts +5 -20
  46. package/dist/types/components/showers/ck-time-shower.vue.d.ts +3 -14
  47. package/dist/types/composables/use-scroll-listener.composable.d.ts +0 -1
  48. package/dist/types/main.d.ts +0 -1
  49. package/dist/types/types/table.d.ts +0 -1
  50. package/dist/types/utils/date-helpers.d.ts +6 -0
  51. package/dist/types/utils/global-hooks.d.ts +0 -1
  52. package/dist/types/utils/string-helpers.d.ts +3 -0
  53. package/package.json +79 -85
@@ -1,8 +1,7 @@
1
1
  import { Align, AlignVertical, Color, Icon, WidthBreaks } from '../../cleek-options/cleek-options.types';
2
2
  import { IconPack } from '@fortawesome/fontawesome-svg-core';
3
-
4
3
  type DateString = null | string;
5
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
4
+ type __VLS_Props = {
6
5
  modelValue: DateString;
7
6
  label?: string;
8
7
  optional?: boolean;
@@ -16,34 +15,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
16
15
  widthBreaks?: WidthBreaks;
17
16
  group?: Align;
18
17
  groupVertical?: AlignVertical;
19
- }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
20
- change: (value: string) => void;
21
- "update:modelValue": (modelValue: string) => void;
22
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
23
- modelValue: DateString;
24
- label?: string;
25
- optional?: boolean;
26
- disabled?: boolean;
27
- clearable?: boolean;
28
- clearValue?: DateString;
29
- icon?: Icon;
30
- iconRight?: Icon;
31
- iconPack?: IconPack;
32
- iconColor?: Color;
33
- widthBreaks?: WidthBreaks;
34
- group?: Align;
35
- groupVertical?: AlignVertical;
36
- }>>> & Readonly<{
18
+ };
19
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
20
+ change: (value: string) => any;
21
+ "update:modelValue": (modelValue: string) => any;
22
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
37
23
  onChange?: (value: string) => any;
38
24
  "onUpdate:modelValue"?: (modelValue: string) => any;
39
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
25
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
26
+ refInput: HTMLInputElement;
27
+ }, any>;
40
28
  export default _default;
41
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
42
- type __VLS_TypePropsToRuntimeProps<T> = {
43
- [K in keyof T]-?: {} extends Pick<T, K> ? {
44
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
45
- } : {
46
- type: import('vue').PropType<T[K]>;
47
- required: true;
48
- };
49
- };
@@ -1,34 +1,18 @@
1
1
  import { Align, AlignVertical, WidthBreaks } from '../../cleek-options/cleek-options.types';
2
-
3
2
  type numberTime = number | undefined;
4
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
3
+ type __VLS_Props = {
5
4
  modelValue: numberTime;
6
5
  label?: string;
7
6
  disabled?: boolean;
8
7
  widthBreaks?: WidthBreaks;
9
8
  group?: Align;
10
9
  groupVertical?: AlignVertical;
11
- }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
12
- "update:modelValue": (value: number) => void;
13
- change: (value: number) => void;
14
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
15
- modelValue: numberTime;
16
- label?: string;
17
- disabled?: boolean;
18
- widthBreaks?: WidthBreaks;
19
- group?: Align;
20
- groupVertical?: AlignVertical;
21
- }>>> & Readonly<{
10
+ };
11
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
12
+ change: (value: number) => any;
13
+ "update:modelValue": (value: number) => any;
14
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
22
15
  onChange?: (value: number) => any;
23
16
  "onUpdate:modelValue"?: (value: number) => any;
24
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
17
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
25
18
  export default _default;
26
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
27
- type __VLS_TypePropsToRuntimeProps<T> = {
28
- [K in keyof T]-?: {} extends Pick<T, K> ? {
29
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
30
- } : {
31
- type: import('vue').PropType<T[K]>;
32
- required: true;
33
- };
34
- };
@@ -1,252 +1,75 @@
1
- import { Align, AlignVertical, Icon, IconPack, InputType, Layout, WidthBreaks } from '../cleek-options/cleek-options.types';
2
-
1
+ import { Align, AlignVertical, Color, Icon, IconPack, InputType, Layout, SizeInCSS, WidthBreaks } from '../cleek-options/cleek-options.types';
3
2
  type Value = string | number;
3
+ type __VLS_Props = {
4
+ type?: InputType;
5
+ preventAutocomplete?: boolean;
6
+ autocomplete?: string;
7
+ readonly?: boolean;
8
+ disabled?: boolean;
9
+ placeholder?: string;
10
+ plusMinusButtons?: boolean;
11
+ min?: number;
12
+ max?: number;
13
+ suffix?: string;
14
+ label?: string;
15
+ labelAlign?: Align;
16
+ icon?: Icon;
17
+ iconRight?: Icon;
18
+ iconPack?: IconPack;
19
+ iconColor?: Color;
20
+ group?: Align;
21
+ groupVertical?: AlignVertical;
22
+ widthBreaks?: WidthBreaks;
23
+ fontSize?: SizeInCSS;
24
+ size?: 's' | 'm' | 'l' | 'xl';
25
+ hideBorder?: boolean;
26
+ width?: string;
27
+ align?: Align;
28
+ layout?: Layout;
29
+ borderColor?: Color;
30
+ textColor?: Color;
31
+ optional?: boolean;
32
+ autofocus?: boolean;
33
+ capitalize?: boolean;
34
+ toUpperCase?: boolean;
35
+ autoSelect?: boolean;
36
+ delayChangeTime?: number;
37
+ justInteger?: boolean;
38
+ tabindex?: string | number;
39
+ };
4
40
  declare function focus(): void;
5
41
  declare function select(): void;
6
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
7
- modelValue: {
8
- required: true;
9
- type: import('vue').PropType<Value>;
10
- };
11
- label: {
12
- type: import('vue').PropType<string>;
13
- };
14
- layout: {
15
- type: import('vue').PropType<Layout>;
16
- };
17
- borderColor: {
18
- type: import('vue').PropType<string>;
19
- };
20
- type: {
21
- type: import('vue').PropType<InputType>;
22
- default: string;
23
- };
24
- textColor: {
25
- type: import('vue').PropType<string>;
26
- };
27
- fontSize: {
28
- type: import('vue').PropType<string>;
29
- };
30
- size: {
31
- type: import('vue').PropType<"s" | "m" | "l" | "xl">;
32
- default: string;
33
- };
34
- group: {
35
- type: import('vue').PropType<Align>;
36
- };
37
- groupVertical: {
38
- type: import('vue').PropType<AlignVertical>;
39
- };
40
- widthBreaks: {
41
- type: import('vue').PropType<WidthBreaks>;
42
- };
43
- width: {
44
- type: import('vue').PropType<string>;
45
- };
46
- icon: {
47
- type: import('vue').PropType<Icon>;
48
- };
49
- iconPack: {
50
- type: import('vue').PropType<IconPack>;
51
- };
52
- toUpperCase: {
53
- type: import('vue').PropType<boolean>;
54
- };
55
- disabled: {
56
- type: import('vue').PropType<boolean>;
57
- };
58
- max: {
59
- type: import('vue').PropType<number>;
60
- };
61
- placeholder: {
62
- type: import('vue').PropType<string>;
63
- };
64
- tabindex: {
65
- type: import('vue').PropType<string | number>;
66
- };
67
- align: {
68
- type: import('vue').PropType<Align>;
69
- };
70
- iconRight: {
71
- type: import('vue').PropType<Icon>;
72
- };
73
- labelAlign: {
74
- type: import('vue').PropType<Align>;
75
- };
76
- preventAutocomplete: {
77
- type: import('vue').PropType<boolean>;
78
- };
79
- readonly: {
80
- type: import('vue').PropType<boolean>;
81
- };
82
- plusMinusButtons: {
83
- type: import('vue').PropType<boolean>;
84
- };
85
- min: {
86
- type: import('vue').PropType<number>;
87
- };
88
- suffix: {
89
- type: import('vue').PropType<string>;
90
- };
91
- iconColor: {
92
- type: import('vue').PropType<string>;
93
- };
94
- hideBorder: {
95
- type: import('vue').PropType<boolean>;
96
- };
97
- optional: {
98
- type: import('vue').PropType<boolean>;
99
- };
100
- autofocus: {
101
- type: import('vue').PropType<boolean>;
102
- };
103
- capitalize: {
104
- type: import('vue').PropType<boolean>;
105
- };
106
- autoSelect: {
107
- type: import('vue').PropType<boolean>;
108
- };
109
- delayChangeTime: {
110
- type: import('vue').PropType<number>;
111
- default: number;
112
- };
113
- justInteger: {
114
- type: import('vue').PropType<boolean>;
115
- };
116
- }>, {
42
+ type __VLS_PublicProps = {
43
+ modelValue: Value;
44
+ } & __VLS_Props;
45
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
117
46
  focus: typeof focus;
118
47
  select: typeof select;
119
48
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
120
- input: (value: Value) => void;
121
- click: (event: Event) => void;
122
- blur: (event: Event) => void;
123
- change: (value: Value) => void;
124
- focus: (event: Event) => void;
125
- inputDelayed: (value: Value) => void;
126
- changeDelayed: (value: Value) => void;
127
- rightIconClick: (event: Event) => void;
128
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
129
- modelValue: {
130
- required: true;
131
- type: import('vue').PropType<Value>;
132
- };
133
- label: {
134
- type: import('vue').PropType<string>;
135
- };
136
- layout: {
137
- type: import('vue').PropType<Layout>;
138
- };
139
- borderColor: {
140
- type: import('vue').PropType<string>;
141
- };
142
- type: {
143
- type: import('vue').PropType<InputType>;
144
- default: string;
145
- };
146
- textColor: {
147
- type: import('vue').PropType<string>;
148
- };
149
- fontSize: {
150
- type: import('vue').PropType<string>;
151
- };
152
- size: {
153
- type: import('vue').PropType<"s" | "m" | "l" | "xl">;
154
- default: string;
155
- };
156
- group: {
157
- type: import('vue').PropType<Align>;
158
- };
159
- groupVertical: {
160
- type: import('vue').PropType<AlignVertical>;
161
- };
162
- widthBreaks: {
163
- type: import('vue').PropType<WidthBreaks>;
164
- };
165
- width: {
166
- type: import('vue').PropType<string>;
167
- };
168
- icon: {
169
- type: import('vue').PropType<Icon>;
170
- };
171
- iconPack: {
172
- type: import('vue').PropType<IconPack>;
173
- };
174
- toUpperCase: {
175
- type: import('vue').PropType<boolean>;
176
- };
177
- disabled: {
178
- type: import('vue').PropType<boolean>;
179
- };
180
- max: {
181
- type: import('vue').PropType<number>;
182
- };
183
- placeholder: {
184
- type: import('vue').PropType<string>;
185
- };
186
- tabindex: {
187
- type: import('vue').PropType<string | number>;
188
- };
189
- align: {
190
- type: import('vue').PropType<Align>;
191
- };
192
- iconRight: {
193
- type: import('vue').PropType<Icon>;
194
- };
195
- labelAlign: {
196
- type: import('vue').PropType<Align>;
197
- };
198
- preventAutocomplete: {
199
- type: import('vue').PropType<boolean>;
200
- };
201
- readonly: {
202
- type: import('vue').PropType<boolean>;
203
- };
204
- plusMinusButtons: {
205
- type: import('vue').PropType<boolean>;
206
- };
207
- min: {
208
- type: import('vue').PropType<number>;
209
- };
210
- suffix: {
211
- type: import('vue').PropType<string>;
212
- };
213
- iconColor: {
214
- type: import('vue').PropType<string>;
215
- };
216
- hideBorder: {
217
- type: import('vue').PropType<boolean>;
218
- };
219
- optional: {
220
- type: import('vue').PropType<boolean>;
221
- };
222
- autofocus: {
223
- type: import('vue').PropType<boolean>;
224
- };
225
- capitalize: {
226
- type: import('vue').PropType<boolean>;
227
- };
228
- autoSelect: {
229
- type: import('vue').PropType<boolean>;
230
- };
231
- delayChangeTime: {
232
- type: import('vue').PropType<number>;
233
- default: number;
234
- };
235
- justInteger: {
236
- type: import('vue').PropType<boolean>;
237
- };
238
- }>> & Readonly<{
49
+ focus: (event: Event) => any;
50
+ input: (value: Value) => any;
51
+ click: (event: Event) => any;
52
+ blur: (event: Event) => any;
53
+ change: (value: Value) => any;
54
+ inputDelayed: (value: Value) => any;
55
+ changeDelayed: (value: Value) => any;
56
+ rightIconClick: (event: Event) => any;
57
+ "update:modelValue": (value: Value) => any;
58
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
59
+ onFocus?: (event: Event) => any;
239
60
  onInput?: (value: Value) => any;
240
61
  onClick?: (event: Event) => any;
241
62
  onBlur?: (event: Event) => any;
242
63
  onChange?: (value: Value) => any;
243
- onFocus?: (event: Event) => any;
244
64
  onInputDelayed?: (value: Value) => any;
245
65
  onChangeDelayed?: (value: Value) => any;
246
66
  onRightIconClick?: (event: Event) => any;
67
+ "onUpdate:modelValue"?: (value: Value) => any;
247
68
  }>, {
248
69
  type: InputType;
249
70
  size: "s" | "m" | "l" | "xl";
250
71
  delayChangeTime: number;
251
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
72
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
73
+ inputRef: HTMLInputElement;
74
+ }, HTMLDivElement>;
252
75
  export default _default;
@@ -1,28 +1,21 @@
1
1
  import { Align } from '../cleek-options/cleek-options.types';
2
-
3
- declare function __VLS_template(): {
4
- default?(_: {}): any;
5
- };
6
- declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
7
- for?: string;
8
- align: Align;
9
- size?: "s" | "m" | "l" | "xl";
10
- }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
2
+ type __VLS_Props = {
11
3
  for?: string;
12
4
  align: Align;
13
- size?: "s" | "m" | "l" | "xl";
14
- }>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
15
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
16
- export default _default;
17
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
18
- type __VLS_TypePropsToRuntimeProps<T> = {
19
- [K in keyof T]-?: {} extends Pick<T, K> ? {
20
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
21
- } : {
22
- type: import('vue').PropType<T[K]>;
23
- required: true;
5
+ size?: 's' | 'm' | 'l' | 'xl';
6
+ };
7
+ declare function __VLS_template(): {
8
+ attrs: Partial<{}>;
9
+ slots: {
10
+ default?(_: {}): any;
24
11
  };
12
+ refs: {};
13
+ rootEl: HTMLLabelElement;
25
14
  };
15
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
16
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLLabelElement>;
17
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
18
+ export default _default;
26
19
  type __VLS_WithTemplateSlots<T, S> = T & {
27
20
  new (): {
28
21
  $slots: S;
@@ -1,28 +1,21 @@
1
1
  import { Color } from '../../cleek-options/cleek-options.types';
2
-
3
- declare function __VLS_template(): {
4
- default?(_: {}): any;
5
- };
6
- declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
7
- backgroundColor?: Color;
8
- padding?: string;
9
- position?: string;
10
- }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
2
+ type __VLS_Props = {
11
3
  backgroundColor?: Color;
12
4
  padding?: string;
13
5
  position?: string;
14
- }>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
15
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
16
- export default _default;
17
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
18
- type __VLS_TypePropsToRuntimeProps<T> = {
19
- [K in keyof T]-?: {} extends Pick<T, K> ? {
20
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
21
- } : {
22
- type: import('vue').PropType<T[K]>;
23
- required: true;
6
+ };
7
+ declare function __VLS_template(): {
8
+ attrs: Partial<{}>;
9
+ slots: {
10
+ default?(_: {}): any;
24
11
  };
12
+ refs: {};
13
+ rootEl: HTMLDivElement;
25
14
  };
15
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
16
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
17
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
18
+ export default _default;
26
19
  type __VLS_WithTemplateSlots<T, S> = T & {
27
20
  new (): {
28
21
  $slots: S;
@@ -5,5 +5,5 @@ declare const _default: import('vue').DefineComponent<{}, {
5
5
  cancelText: import('vue').Ref<string, string>;
6
6
  responseSuccess: import('vue').Ref<() => void, () => void>;
7
7
  responseFailure: import('vue').Ref<() => void, () => void>;
8
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
8
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
9
9
  export default _default;