cleek 2.10.11 → 2.10.13
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.
- package/LICENSE +21 -21
- package/README.md +66 -66
- package/dist/cleek-styles/clear-app.styl +34 -34
- package/dist/cleek-styles/cleek-classes.styl +6 -6
- package/dist/cleek-styles/cleek-mixins.styl +127 -127
- package/dist/cleek-styles/tiny-tailwind/.custom.styl +8 -8
- package/dist/cleek-styles/tiny-tailwind/align-items.styl +10 -10
- package/dist/cleek-styles/tiny-tailwind/cursor.styl +72 -72
- package/dist/cleek-styles/tiny-tailwind/display.styl +42 -42
- package/dist/cleek-styles/tiny-tailwind/flex-shrink.styl +4 -4
- package/dist/cleek-styles/tiny-tailwind/flex-wrap.styl +6 -6
- package/dist/cleek-styles/tiny-tailwind/font-weight.styl +18 -18
- package/dist/cleek-styles/tiny-tailwind/index.styl +15 -15
- package/dist/cleek-styles/tiny-tailwind/justify-content.styl +12 -12
- package/dist/cleek-styles/tiny-tailwind/margin.styl +576 -576
- package/dist/cleek-styles/tiny-tailwind/padding.styl +576 -576
- package/dist/cleek-styles/tiny-tailwind/position.styl +10 -10
- package/dist/cleek-styles/tiny-tailwind/text-align.styl +8 -8
- package/dist/cleek-styles/tiny-tailwind/whitespace.styl +10 -10
- package/dist/cleek-styles/tiny-tailwind/width.styl +72 -72
- package/dist/main.cjs.js +145 -352
- package/dist/main.css +1 -1
- package/dist/main.es.js +49073 -48855
- package/dist/types/cleek-options/cleek-options.store.d.ts +421 -1
- package/dist/types/components/ck-button.vue.d.ts +4 -4
- package/dist/types/components/ck-card.vue.d.ts +4 -4
- package/dist/types/components/ck-checkbox.vue.d.ts +11 -11
- package/dist/types/components/ck-chip.vue.d.ts +4 -4
- package/dist/types/components/ck-circle.vue.d.ts +4 -4
- package/dist/types/components/ck-div.vue.d.ts +4 -4
- package/dist/types/components/ck-dropdown/ck-dropdown.vue.d.ts +3 -3
- package/dist/types/components/ck-icon.vue.d.ts +4 -4
- package/dist/types/components/ck-img.vue.d.ts +4 -4
- package/dist/types/components/ck-input/ck-input-date.vue.d.ts +4 -4
- package/dist/types/components/ck-input/ck-input-time.vue.d.ts +4 -4
- package/dist/types/components/ck-input.vue.d.ts +22 -22
- package/dist/types/components/ck-label.vue.d.ts +3 -3
- package/dist/types/components/ck-navbar/ck-navbar.vue.d.ts +3 -3
- package/dist/types/components/ck-notify/components/CkAlert.vue.d.ts +4 -4
- package/dist/types/components/ck-notify/components/CkConfirm.vue.d.ts +7 -7
- package/dist/types/components/ck-notify/components/CkNotify.vue.d.ts +6 -6
- package/dist/types/components/ck-popup.vue.d.ts +5 -5
- package/dist/types/components/ck-radio.vue.d.ts +4 -4
- package/dist/types/components/ck-select.vue.d.ts +5 -5
- package/dist/types/components/ck-sidebar.vue.d.ts +3 -3
- package/dist/types/components/ck-switch-options.vue.d.ts +5 -5
- package/dist/types/components/ck-switch.vue.d.ts +4 -4
- package/dist/types/components/ck-table/ck-pagination/ck-pagination.vue.d.ts +4 -4
- package/dist/types/components/ck-table/ck-table.vue.d.ts +4 -4
- package/dist/types/components/ck-table/ck-td.vue.d.ts +3 -3
- package/dist/types/components/ck-table/ck-th.vue.d.ts +3 -3
- package/dist/types/components/ck-table/ck-tr.vue.d.ts +1 -1
- package/dist/types/components/ck-table/inner-components/ck-table__columns-manager.vue.d.ts +4 -4
- package/dist/types/components/ck-table/inner-components/ck-table__header-items.vue.d.ts +4 -4
- package/dist/types/components/ck-table/inner-components/ck-table__pagination.vue.d.ts +4 -4
- package/dist/types/components/ck-table/inner-components/ck-table__title.vue.d.ts +3 -3
- package/dist/types/components/ck-tabs/ck-tab.vue.d.ts +3 -3
- package/dist/types/components/ck-tabs/ck-tabs.vue.d.ts +1 -1
- package/dist/types/components/ck-textarea.vue.d.ts +5 -5
- package/dist/types/components/ck-toggle/ck-toggle.vue.d.ts +4 -4
- package/dist/types/components/showers/ck-datetime-shower.vue.d.ts +4 -4
- package/dist/types/components/showers/ck-time-shower.vue.d.ts +3 -3
- package/dist/types/hooks/rainbow.d.ts +1 -1
- package/dist/types/hooks/windowWidth.d.ts +1 -1
- package/dist/types/resources/floating-vue.config.d.ts +8 -0
- package/dist/types/{package-config.d.ts → resources/package-config.d.ts} +1 -1
- package/package.json +85 -85
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Color, Icon, IconPack, Size, SizeInCSS } from '../cleek-options/cleek-options.types';
|
|
2
2
|
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
4
4
|
icon: Icon;
|
|
5
5
|
iconPack?: IconPack;
|
|
6
6
|
color?: Color;
|
|
@@ -10,7 +10,7 @@ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
10
10
|
rotation?: 90 | 180 | 270 | "90" | "180" | "270";
|
|
11
11
|
spin?: boolean;
|
|
12
12
|
pulse?: boolean;
|
|
13
|
-
}
|
|
13
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
14
14
|
click: (...args: any[]) => void;
|
|
15
15
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
16
16
|
icon: Icon;
|
|
@@ -22,9 +22,9 @@ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
22
22
|
rotation?: 90 | 180 | 270 | "90" | "180" | "270";
|
|
23
23
|
spin?: boolean;
|
|
24
24
|
pulse?: boolean;
|
|
25
|
-
}>>> & {
|
|
25
|
+
}>>> & Readonly<{
|
|
26
26
|
onClick?: (...args: any[]) => any;
|
|
27
|
-
}, {}, {}>;
|
|
27
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
28
28
|
export default _default;
|
|
29
29
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
30
30
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Color, Size, SizeInCSS } from '../cleek-options/cleek-options.types';
|
|
2
2
|
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
4
4
|
src: string;
|
|
5
5
|
alt?: string;
|
|
6
6
|
size?: Size;
|
|
@@ -15,7 +15,7 @@ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
15
15
|
radius?: SizeInCSS;
|
|
16
16
|
static: boolean;
|
|
17
17
|
dynamic: boolean;
|
|
18
|
-
}
|
|
18
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
19
19
|
click: (event: MouseEvent) => void;
|
|
20
20
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
21
21
|
src: string;
|
|
@@ -32,9 +32,9 @@ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
32
32
|
radius?: SizeInCSS;
|
|
33
33
|
static: boolean;
|
|
34
34
|
dynamic: boolean;
|
|
35
|
-
}>>> & {
|
|
35
|
+
}>>> & Readonly<{
|
|
36
36
|
onClick?: (event: MouseEvent) => any;
|
|
37
|
-
}, {}, {}>;
|
|
37
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
38
38
|
export default _default;
|
|
39
39
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
40
40
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -2,7 +2,7 @@ import { Align, AlignVertical, Color, Icon, WidthBreaks } from '../../cleek-opti
|
|
|
2
2
|
import { IconPack } from '@fortawesome/fontawesome-svg-core';
|
|
3
3
|
|
|
4
4
|
type DateString = null | string;
|
|
5
|
-
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
5
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
6
6
|
modelValue: DateString;
|
|
7
7
|
label?: string;
|
|
8
8
|
optional?: boolean;
|
|
@@ -16,7 +16,7 @@ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
16
16
|
widthBreaks?: WidthBreaks;
|
|
17
17
|
group?: Align;
|
|
18
18
|
groupVertical?: AlignVertical;
|
|
19
|
-
}
|
|
19
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
20
20
|
change: (value: string) => void;
|
|
21
21
|
"update:modelValue": (modelValue: string) => void;
|
|
22
22
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
@@ -33,10 +33,10 @@ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
33
33
|
widthBreaks?: WidthBreaks;
|
|
34
34
|
group?: Align;
|
|
35
35
|
groupVertical?: AlignVertical;
|
|
36
|
-
}>>> & {
|
|
36
|
+
}>>> & Readonly<{
|
|
37
37
|
onChange?: (value: string) => any;
|
|
38
38
|
"onUpdate:modelValue"?: (modelValue: string) => any;
|
|
39
|
-
}, {}, {}>;
|
|
39
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
40
40
|
export default _default;
|
|
41
41
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
42
42
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { Align, AlignVertical, WidthBreaks } from '../../cleek-options/cleek-options.types';
|
|
2
2
|
|
|
3
3
|
type numberTime = number | undefined;
|
|
4
|
-
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
5
5
|
modelValue: numberTime;
|
|
6
6
|
label?: string;
|
|
7
7
|
disabled?: boolean;
|
|
8
8
|
widthBreaks?: WidthBreaks;
|
|
9
9
|
group?: Align;
|
|
10
10
|
groupVertical?: AlignVertical;
|
|
11
|
-
}
|
|
11
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
12
12
|
"update:modelValue": (value: number) => void;
|
|
13
13
|
change: (value: number) => void;
|
|
14
14
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
@@ -18,10 +18,10 @@ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
18
18
|
widthBreaks?: WidthBreaks;
|
|
19
19
|
group?: Align;
|
|
20
20
|
groupVertical?: AlignVertical;
|
|
21
|
-
}>>> & {
|
|
21
|
+
}>>> & Readonly<{
|
|
22
22
|
onChange?: (value: number) => any;
|
|
23
23
|
"onUpdate:modelValue"?: (value: number) => any;
|
|
24
|
-
}, {}, {}>;
|
|
24
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
25
25
|
export default _default;
|
|
26
26
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
27
27
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -3,7 +3,7 @@ import { Align, AlignVertical, Icon, IconPack, InputType, Layout, WidthBreaks }
|
|
|
3
3
|
type Value = string | number;
|
|
4
4
|
declare function focus(): void;
|
|
5
5
|
declare function select(): void;
|
|
6
|
-
declare const _default: import('vue').DefineComponent<{
|
|
6
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
7
7
|
modelValue: {
|
|
8
8
|
required: true;
|
|
9
9
|
type: import('vue').PropType<Value>;
|
|
@@ -27,6 +27,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
27
27
|
fontSize: {
|
|
28
28
|
type: import('vue').PropType<string>;
|
|
29
29
|
};
|
|
30
|
+
size: {
|
|
31
|
+
type: import('vue').PropType<"s" | "m" | "l" | "xl">;
|
|
32
|
+
default: string;
|
|
33
|
+
};
|
|
30
34
|
group: {
|
|
31
35
|
type: import('vue').PropType<Align>;
|
|
32
36
|
};
|
|
@@ -45,16 +49,15 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
45
49
|
iconPack: {
|
|
46
50
|
type: import('vue').PropType<IconPack>;
|
|
47
51
|
};
|
|
48
|
-
size: {
|
|
49
|
-
type: import('vue').PropType<"s" | "m" | "l" | "xl">;
|
|
50
|
-
default: string;
|
|
51
|
-
};
|
|
52
52
|
toUpperCase: {
|
|
53
53
|
type: import('vue').PropType<boolean>;
|
|
54
54
|
};
|
|
55
55
|
disabled: {
|
|
56
56
|
type: import('vue').PropType<boolean>;
|
|
57
57
|
};
|
|
58
|
+
max: {
|
|
59
|
+
type: import('vue').PropType<number>;
|
|
60
|
+
};
|
|
58
61
|
align: {
|
|
59
62
|
type: import('vue').PropType<Align>;
|
|
60
63
|
};
|
|
@@ -76,9 +79,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
76
79
|
min: {
|
|
77
80
|
type: import('vue').PropType<number>;
|
|
78
81
|
};
|
|
79
|
-
max: {
|
|
80
|
-
type: import('vue').PropType<number>;
|
|
81
|
-
};
|
|
82
82
|
iconColor: {
|
|
83
83
|
type: import('vue').PropType<string>;
|
|
84
84
|
};
|
|
@@ -104,10 +104,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
104
104
|
justInteger: {
|
|
105
105
|
type: import('vue').PropType<boolean>;
|
|
106
106
|
};
|
|
107
|
-
}
|
|
107
|
+
}>, {
|
|
108
108
|
focus: typeof focus;
|
|
109
109
|
select: typeof select;
|
|
110
|
-
},
|
|
110
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
111
111
|
input: (event: Event) => void;
|
|
112
112
|
click: (event: Event) => void;
|
|
113
113
|
blur: (event: Event) => void;
|
|
@@ -138,6 +138,10 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
138
138
|
fontSize: {
|
|
139
139
|
type: import('vue').PropType<string>;
|
|
140
140
|
};
|
|
141
|
+
size: {
|
|
142
|
+
type: import('vue').PropType<"s" | "m" | "l" | "xl">;
|
|
143
|
+
default: string;
|
|
144
|
+
};
|
|
141
145
|
group: {
|
|
142
146
|
type: import('vue').PropType<Align>;
|
|
143
147
|
};
|
|
@@ -156,16 +160,15 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
156
160
|
iconPack: {
|
|
157
161
|
type: import('vue').PropType<IconPack>;
|
|
158
162
|
};
|
|
159
|
-
size: {
|
|
160
|
-
type: import('vue').PropType<"s" | "m" | "l" | "xl">;
|
|
161
|
-
default: string;
|
|
162
|
-
};
|
|
163
163
|
toUpperCase: {
|
|
164
164
|
type: import('vue').PropType<boolean>;
|
|
165
165
|
};
|
|
166
166
|
disabled: {
|
|
167
167
|
type: import('vue').PropType<boolean>;
|
|
168
168
|
};
|
|
169
|
+
max: {
|
|
170
|
+
type: import('vue').PropType<number>;
|
|
171
|
+
};
|
|
169
172
|
align: {
|
|
170
173
|
type: import('vue').PropType<Align>;
|
|
171
174
|
};
|
|
@@ -187,9 +190,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
187
190
|
min: {
|
|
188
191
|
type: import('vue').PropType<number>;
|
|
189
192
|
};
|
|
190
|
-
max: {
|
|
191
|
-
type: import('vue').PropType<number>;
|
|
192
|
-
};
|
|
193
193
|
iconColor: {
|
|
194
194
|
type: import('vue').PropType<string>;
|
|
195
195
|
};
|
|
@@ -215,16 +215,16 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
215
215
|
justInteger: {
|
|
216
216
|
type: import('vue').PropType<boolean>;
|
|
217
217
|
};
|
|
218
|
-
}>> & {
|
|
218
|
+
}>> & Readonly<{
|
|
219
|
+
onInput?: (event: Event) => any;
|
|
219
220
|
onClick?: (event: Event) => any;
|
|
220
|
-
onFocus?: (event: Event) => any;
|
|
221
221
|
onBlur?: (event: Event) => any;
|
|
222
222
|
onChange?: (value: Value) => any;
|
|
223
|
-
|
|
223
|
+
onFocus?: (event: Event) => any;
|
|
224
224
|
onChangeDelayed?: (value: Value) => any;
|
|
225
|
-
}
|
|
225
|
+
}>, {
|
|
226
226
|
type: InputType;
|
|
227
227
|
size: "s" | "m" | "l" | "xl";
|
|
228
228
|
delayChangeTime: number;
|
|
229
|
-
}, {}>;
|
|
229
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
230
230
|
export default _default;
|
|
@@ -3,15 +3,15 @@ import { Align } from '../cleek-options/cleek-options.types';
|
|
|
3
3
|
declare function __VLS_template(): {
|
|
4
4
|
default?(_: {}): any;
|
|
5
5
|
};
|
|
6
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
6
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
7
7
|
for?: string;
|
|
8
8
|
align: Align;
|
|
9
9
|
size?: "s" | "m" | "l" | "xl";
|
|
10
|
-
}
|
|
10
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
11
11
|
for?: string;
|
|
12
12
|
align: Align;
|
|
13
13
|
size?: "s" | "m" | "l" | "xl";
|
|
14
|
-
}
|
|
14
|
+
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
15
15
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
16
16
|
export default _default;
|
|
17
17
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -3,15 +3,15 @@ import { Color } from '../../cleek-options/cleek-options.types';
|
|
|
3
3
|
declare function __VLS_template(): {
|
|
4
4
|
default?(_: {}): any;
|
|
5
5
|
};
|
|
6
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
6
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
7
7
|
backgroundColor?: Color;
|
|
8
8
|
padding?: string;
|
|
9
9
|
position?: string;
|
|
10
|
-
}
|
|
10
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
11
11
|
backgroundColor?: Color;
|
|
12
12
|
padding?: string;
|
|
13
13
|
position?: string;
|
|
14
|
-
}
|
|
14
|
+
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
15
15
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
16
16
|
export default _default;
|
|
17
17
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{}, {
|
|
2
|
-
title: import('vue').Ref<string>;
|
|
3
|
-
msg: import('vue').Ref<string>;
|
|
4
|
-
acceptText: import('vue').Ref<string>;
|
|
5
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').
|
|
2
|
+
title: import('vue').Ref<string, string>;
|
|
3
|
+
msg: import('vue').Ref<string, string>;
|
|
4
|
+
acceptText: import('vue').Ref<string, string>;
|
|
5
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
6
6
|
export default _default;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{}, {
|
|
2
|
-
title: import('vue').Ref<string>;
|
|
3
|
-
msg: import('vue').Ref<string>;
|
|
4
|
-
acceptText: import('vue').Ref<string>;
|
|
5
|
-
cancelText: import('vue').Ref<string>;
|
|
6
|
-
responseSuccess: import('vue').Ref<() => void>;
|
|
7
|
-
responseFailure: import('vue').Ref<() => void>;
|
|
8
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').
|
|
2
|
+
title: import('vue').Ref<string, string>;
|
|
3
|
+
msg: import('vue').Ref<string, string>;
|
|
4
|
+
acceptText: import('vue').Ref<string, string>;
|
|
5
|
+
cancelText: import('vue').Ref<string, string>;
|
|
6
|
+
responseSuccess: import('vue').Ref<() => void, () => void>;
|
|
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>;
|
|
9
9
|
export default _default;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{}, {
|
|
2
|
-
title: import('vue').Ref<string>;
|
|
3
|
-
text: import('vue').Ref<string>;
|
|
4
|
-
color: import('vue').Ref<string>;
|
|
5
|
-
duration: import('vue').Ref<number>;
|
|
6
|
-
closeCallback: import('vue').Ref<() => void>;
|
|
7
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').
|
|
2
|
+
title: import('vue').Ref<string, string>;
|
|
3
|
+
text: import('vue').Ref<string, string>;
|
|
4
|
+
color: import('vue').Ref<string, string>;
|
|
5
|
+
duration: import('vue').Ref<number, number>;
|
|
6
|
+
closeCallback: import('vue').Ref<() => void, () => void>;
|
|
7
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
8
8
|
export default _default;
|
|
@@ -5,7 +5,7 @@ declare function __VLS_template(): {
|
|
|
5
5
|
default?(_: {}): any;
|
|
6
6
|
footer?(_: {}): any;
|
|
7
7
|
};
|
|
8
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
|
8
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
9
9
|
modelValue: {
|
|
10
10
|
required: true;
|
|
11
11
|
type: import('vue').PropType<boolean>;
|
|
@@ -73,7 +73,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
73
73
|
fontSize: {
|
|
74
74
|
type: import('vue').PropType<string>;
|
|
75
75
|
};
|
|
76
|
-
}
|
|
76
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
77
77
|
cancel: () => void;
|
|
78
78
|
accept: () => void;
|
|
79
79
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -144,10 +144,10 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
144
144
|
fontSize: {
|
|
145
145
|
type: import('vue').PropType<string>;
|
|
146
146
|
};
|
|
147
|
-
}>> & {
|
|
148
|
-
onAccept?: () => any;
|
|
147
|
+
}>> & Readonly<{
|
|
149
148
|
onCancel?: () => any;
|
|
150
|
-
|
|
149
|
+
onAccept?: () => any;
|
|
150
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
151
151
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
152
152
|
export default _default;
|
|
153
153
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -2,7 +2,7 @@ type Option = {
|
|
|
2
2
|
value: any;
|
|
3
3
|
label: string;
|
|
4
4
|
};
|
|
5
|
-
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
5
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
6
6
|
modelValue: string;
|
|
7
7
|
name?: string;
|
|
8
8
|
vertical?: boolean;
|
|
@@ -11,7 +11,7 @@ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
11
11
|
disabled?: boolean;
|
|
12
12
|
value?: any;
|
|
13
13
|
label?: any;
|
|
14
|
-
}
|
|
14
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
15
15
|
"update:modelValue": (value: string) => void;
|
|
16
16
|
change: (event: Event) => void;
|
|
17
17
|
click: (event: Event) => void;
|
|
@@ -24,11 +24,11 @@ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
24
24
|
disabled?: boolean;
|
|
25
25
|
value?: any;
|
|
26
26
|
label?: any;
|
|
27
|
-
}>>> & {
|
|
27
|
+
}>>> & Readonly<{
|
|
28
28
|
onClick?: (event: Event) => any;
|
|
29
29
|
onChange?: (event: Event) => any;
|
|
30
30
|
"onUpdate:modelValue"?: (value: string) => any;
|
|
31
|
-
}, {}, {}>;
|
|
31
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
32
32
|
export default _default;
|
|
33
33
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
34
34
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -2,7 +2,7 @@ import { Align, AlignVertical, Color, Icon, IconPack, Layout, WidthBreaks } from
|
|
|
2
2
|
|
|
3
3
|
type SelectOption = any;
|
|
4
4
|
declare function focus(): void;
|
|
5
|
-
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
5
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
6
6
|
modelValue: any;
|
|
7
7
|
prop?: string;
|
|
8
8
|
reduceValueProp?: string;
|
|
@@ -38,9 +38,9 @@ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
38
38
|
placeholder?: string;
|
|
39
39
|
emptyOptionsMsg?: string;
|
|
40
40
|
backgroundColor?: Color;
|
|
41
|
-
}
|
|
41
|
+
}>>, {
|
|
42
42
|
focus: typeof focus;
|
|
43
|
-
},
|
|
43
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
44
44
|
"update:modelValue": (value: any) => void;
|
|
45
45
|
click: (event: Event) => void;
|
|
46
46
|
change: (event?: Event) => void;
|
|
@@ -80,11 +80,11 @@ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
80
80
|
placeholder?: string;
|
|
81
81
|
emptyOptionsMsg?: string;
|
|
82
82
|
backgroundColor?: Color;
|
|
83
|
-
}>>> & {
|
|
83
|
+
}>>> & Readonly<{
|
|
84
84
|
onClick?: (event: Event) => any;
|
|
85
85
|
onChange?: (event?: Event) => any;
|
|
86
86
|
"onUpdate:modelValue"?: (value: any) => any;
|
|
87
|
-
}, {}, {}>;
|
|
87
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
88
88
|
export default _default;
|
|
89
89
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
90
90
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -3,7 +3,7 @@ declare function __VLS_template(): {
|
|
|
3
3
|
default?(_: {}): any;
|
|
4
4
|
footer?(_: {}): any;
|
|
5
5
|
};
|
|
6
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
|
6
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
7
7
|
modelValue: {
|
|
8
8
|
required: true;
|
|
9
9
|
type: import('vue').PropType<boolean>;
|
|
@@ -32,7 +32,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
32
32
|
isLoading: {
|
|
33
33
|
type: import('vue').PropType<boolean>;
|
|
34
34
|
};
|
|
35
|
-
}
|
|
35
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
36
36
|
modelValue: {
|
|
37
37
|
required: true;
|
|
38
38
|
type: import('vue').PropType<boolean>;
|
|
@@ -61,7 +61,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
61
61
|
isLoading: {
|
|
62
62
|
type: import('vue').PropType<boolean>;
|
|
63
63
|
};
|
|
64
|
-
}
|
|
64
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
65
65
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
66
66
|
export default _default;
|
|
67
67
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Align } from '../cleek-options/cleek-options.types';
|
|
2
2
|
|
|
3
3
|
type Option = boolean | number | object | string;
|
|
4
|
-
declare const _default: import('vue').DefineComponent<{
|
|
4
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
5
5
|
modelValue: {
|
|
6
6
|
required: true;
|
|
7
7
|
type: import('vue').PropType<Option>;
|
|
@@ -37,7 +37,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
37
37
|
sameWidthOptions: {
|
|
38
38
|
type: import('vue').PropType<boolean>;
|
|
39
39
|
};
|
|
40
|
-
}
|
|
40
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
41
41
|
change: (value: Option) => void;
|
|
42
42
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
43
43
|
modelValue: {
|
|
@@ -75,9 +75,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
75
75
|
sameWidthOptions: {
|
|
76
76
|
type: import('vue').PropType<boolean>;
|
|
77
77
|
};
|
|
78
|
-
}>> & {
|
|
78
|
+
}>> & Readonly<{
|
|
79
79
|
onChange?: (value: Option) => any;
|
|
80
|
-
}
|
|
80
|
+
}>, {
|
|
81
81
|
prop: string;
|
|
82
|
-
}, {}>;
|
|
82
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
83
83
|
export default _default;
|
|
@@ -3,7 +3,7 @@ import { Icon, IconPack, Size } from '../cleek-options/cleek-options.types';
|
|
|
3
3
|
declare function __VLS_template(): {
|
|
4
4
|
default?(_: {}): any;
|
|
5
5
|
};
|
|
6
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
|
6
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
7
7
|
modelValue: {
|
|
8
8
|
required: true;
|
|
9
9
|
type: import('vue').PropType<boolean>;
|
|
@@ -29,7 +29,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
29
29
|
iconPack: {
|
|
30
30
|
type: import('vue').PropType<IconPack>;
|
|
31
31
|
};
|
|
32
|
-
}
|
|
32
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
33
33
|
click: () => void;
|
|
34
34
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
35
35
|
modelValue: {
|
|
@@ -57,9 +57,9 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
57
57
|
iconPack: {
|
|
58
58
|
type: import('vue').PropType<IconPack>;
|
|
59
59
|
};
|
|
60
|
-
}>> & {
|
|
60
|
+
}>> & Readonly<{
|
|
61
61
|
onClick?: () => any;
|
|
62
|
-
}, {}, {}>;
|
|
62
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
63
63
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
64
64
|
export default _default;
|
|
65
65
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { Align } from '../../../cleek-options/cleek-options.types';
|
|
2
2
|
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
4
4
|
modelValue: number;
|
|
5
5
|
maxStep: number;
|
|
6
6
|
align?: Align;
|
|
7
|
-
}
|
|
7
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
8
8
|
"update:modelValue": (value: number) => void;
|
|
9
9
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
10
10
|
modelValue: number;
|
|
11
11
|
maxStep: number;
|
|
12
12
|
align?: Align;
|
|
13
|
-
}>>> & {
|
|
13
|
+
}>>> & Readonly<{
|
|
14
14
|
"onUpdate:modelValue"?: (value: number) => any;
|
|
15
|
-
}, {}, {}>;
|
|
15
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
16
16
|
export default _default;
|
|
17
17
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
18
18
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -15,7 +15,7 @@ declare function __VLS_template(): {
|
|
|
15
15
|
footer?(_: {}): any;
|
|
16
16
|
mobile?(_: {}): any;
|
|
17
17
|
};
|
|
18
|
-
declare const __VLS_component: import('vue').DefineComponent<{
|
|
18
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
19
19
|
selectedRows: import('vue').PropType<SelectedRows>;
|
|
20
20
|
rows: {
|
|
21
21
|
type: import('vue').PropType<any[]>;
|
|
@@ -99,7 +99,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
99
99
|
mobileMaxWidth: {
|
|
100
100
|
type: import('vue').PropType<Number>;
|
|
101
101
|
};
|
|
102
|
-
}
|
|
102
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
103
103
|
refreshList: (pageChange: boolean) => void;
|
|
104
104
|
"update:search": (value: string) => void;
|
|
105
105
|
"update:currentPage": (value: number) => void;
|
|
@@ -187,11 +187,11 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
187
187
|
mobileMaxWidth: {
|
|
188
188
|
type: import('vue').PropType<Number>;
|
|
189
189
|
};
|
|
190
|
-
}>> & {
|
|
190
|
+
}>> & Readonly<{
|
|
191
191
|
"onUpdate:search"?: (value: string) => any;
|
|
192
192
|
onRefreshList?: (pageChange: boolean) => any;
|
|
193
193
|
"onUpdate:currentPage"?: (value: number) => any;
|
|
194
|
-
}, {}, {}>;
|
|
194
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
195
195
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
196
196
|
export default _default;
|
|
197
197
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -4,7 +4,7 @@ import { ColumnItem } from '../../types/table';
|
|
|
4
4
|
declare function __VLS_template(): {
|
|
5
5
|
default?(_: {}): any;
|
|
6
6
|
};
|
|
7
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
7
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
8
8
|
col?: ColumnItem;
|
|
9
9
|
nowrap?: boolean;
|
|
10
10
|
block?: boolean;
|
|
@@ -16,7 +16,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRu
|
|
|
16
16
|
minWidth?: string;
|
|
17
17
|
maxWidth?: string;
|
|
18
18
|
maxHeight?: string;
|
|
19
|
-
}
|
|
19
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
20
20
|
col?: ColumnItem;
|
|
21
21
|
nowrap?: boolean;
|
|
22
22
|
block?: boolean;
|
|
@@ -28,7 +28,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRu
|
|
|
28
28
|
minWidth?: string;
|
|
29
29
|
maxWidth?: string;
|
|
30
30
|
maxHeight?: string;
|
|
31
|
-
}
|
|
31
|
+
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
32
32
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
33
33
|
export default _default;
|
|
34
34
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -3,17 +3,17 @@ import { Align, Color } from '../../cleek-options/cleek-options.types';
|
|
|
3
3
|
declare function __VLS_template(): {
|
|
4
4
|
default?(_: {}): any;
|
|
5
5
|
};
|
|
6
|
-
declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
6
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
7
7
|
align: Align;
|
|
8
8
|
minWidth: string;
|
|
9
9
|
textColor?: Color;
|
|
10
10
|
backgroundColor?: Color;
|
|
11
|
-
}
|
|
11
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
12
12
|
align: Align;
|
|
13
13
|
minWidth: string;
|
|
14
14
|
textColor?: Color;
|
|
15
15
|
backgroundColor?: Color;
|
|
16
|
-
}
|
|
16
|
+
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
17
17
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
18
18
|
export default _default;
|
|
19
19
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare function __VLS_template(): {
|
|
2
2
|
default?(_: {}): any;
|
|
3
3
|
};
|
|
4
|
-
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').
|
|
4
|
+
declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
5
5
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
6
6
|
export default _default;
|
|
7
7
|
type __VLS_WithTemplateSlots<T, S> = T & {
|