cleek 2.9.18 → 2.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.cjs.js +52 -52
- package/dist/main.css +1 -1
- package/dist/main.es.js +6403 -6361
- package/dist/types/components/ck-input/ck-input-date.vue.d.ts +2 -0
- package/dist/types/components/ck-input/ck-input-time.vue.d.ts +2 -0
- package/dist/types/components/ck-toggle/ck-toggle.vue.d.ts +38 -0
- package/dist/types/components/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -6,6 +6,7 @@ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
6
6
|
modelValue: DateString;
|
|
7
7
|
label?: string;
|
|
8
8
|
optional?: boolean;
|
|
9
|
+
disabled?: boolean;
|
|
9
10
|
clearable?: boolean;
|
|
10
11
|
clearValue?: DateString;
|
|
11
12
|
icon?: Icon;
|
|
@@ -22,6 +23,7 @@ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
22
23
|
modelValue: DateString;
|
|
23
24
|
label?: string;
|
|
24
25
|
optional?: boolean;
|
|
26
|
+
disabled?: boolean;
|
|
25
27
|
clearable?: boolean;
|
|
26
28
|
clearValue?: DateString;
|
|
27
29
|
icon?: Icon;
|
|
@@ -4,6 +4,7 @@ type numberTime = number | undefined;
|
|
|
4
4
|
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
5
5
|
modelValue: numberTime;
|
|
6
6
|
label?: string;
|
|
7
|
+
disabled?: boolean;
|
|
7
8
|
widthBreaks?: WidthBreaks;
|
|
8
9
|
group?: Align;
|
|
9
10
|
groupVertical?: AlignVertical;
|
|
@@ -13,6 +14,7 @@ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
13
14
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
14
15
|
modelValue: numberTime;
|
|
15
16
|
label?: string;
|
|
17
|
+
disabled?: boolean;
|
|
16
18
|
widthBreaks?: WidthBreaks;
|
|
17
19
|
group?: Align;
|
|
18
20
|
groupVertical?: AlignVertical;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { Color, Icon, Layout } from '../../types/cleek-options';
|
|
2
|
+
|
|
3
|
+
declare function __VLS_template(): {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
7
|
+
modelValue: boolean;
|
|
8
|
+
color?: Color;
|
|
9
|
+
layout?: Layout;
|
|
10
|
+
icon?: Icon;
|
|
11
|
+
preventAutoUpdate?: boolean;
|
|
12
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13
|
+
"update:modelValue": (value: boolean) => void;
|
|
14
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
15
|
+
modelValue: boolean;
|
|
16
|
+
color?: Color;
|
|
17
|
+
layout?: Layout;
|
|
18
|
+
icon?: Icon;
|
|
19
|
+
preventAutoUpdate?: boolean;
|
|
20
|
+
}>>> & {
|
|
21
|
+
"onUpdate:modelValue"?: (value: boolean) => any;
|
|
22
|
+
}, {}, {}>;
|
|
23
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
24
|
+
export default _default;
|
|
25
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
26
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
27
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
28
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
29
|
+
} : {
|
|
30
|
+
type: import('vue').PropType<T[K]>;
|
|
31
|
+
required: true;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
35
|
+
new (): {
|
|
36
|
+
$slots: S;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
@@ -11,6 +11,7 @@ export { default as CkInputDate } from './ck-input/ck-input-date.vue';
|
|
|
11
11
|
export { default as CkInputTime } from './ck-input/ck-input-time.vue';
|
|
12
12
|
export { default as CkTab } from './ck-tabs/ck-tab.vue';
|
|
13
13
|
export { default as CkTabs } from './ck-tabs/ck-tabs.vue';
|
|
14
|
+
export { default as CkToggle } from './ck-toggle/ck-toggle.vue';
|
|
14
15
|
export { default as CkButton } from './ck-button.vue';
|
|
15
16
|
export { default as CkCard } from './ck-card.vue';
|
|
16
17
|
export { default as CkCheckbox } from './ck-checkbox.vue';
|