@blueking/ediatable 0.0.1-beta.6 → 0.0.1-beta.8
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/package.json +1 -1
- package/typings/components/date-time-picker-column.vue.d.ts +4 -2
- package/typings/components/fixed-column.vue.d.ts +6 -4
- package/typings/components/head-column.vue.d.ts +14 -8
- package/typings/components/input-column.vue.d.ts +6 -4
- package/typings/components/tag-input-column.vue.d.ts +6 -4
- package/vue2/index.es.min.js +1300 -8631
- package/vue2/index.iife.min.js +5544 -12959
- package/vue2/index.umd.min.js +1340 -8742
- package/vue2/vue2.css +6 -77
- package/vue3/index.es.min.js +27 -11
- package/vue3/index.iife.min.js +1340 -8742
- package/vue3/index.umd.min.js +29 -10
- package/vue3/vue3.css +3 -0
- package/typings/components/date-time-picker.vue.d.ts +0 -63
- package/typings/components/input.vue.d.ts +0 -77
- package/typings/components/operation.vue.d.ts +0 -48
- package/typings/components/select.vue.d.ts +0 -65
- package/typings/components/tag-input.vue.d.ts +0 -60
- package/typings/ediatable.vue.d.ts +0 -20
package/package.json
CHANGED
|
@@ -13,7 +13,8 @@ declare let __VLS_typeProps: Props;
|
|
|
13
13
|
type __VLS_PublicProps = {
|
|
14
14
|
modelValue?: ValueType;
|
|
15
15
|
} & typeof __VLS_typeProps;
|
|
16
|
-
declare
|
|
16
|
+
declare function __VLS_template(): Readonly<Slots> & Slots;
|
|
17
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<__VLS_PublicProps>, {
|
|
17
18
|
placeholder: string;
|
|
18
19
|
rules: undefined;
|
|
19
20
|
type: undefined;
|
|
@@ -36,7 +37,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
36
37
|
placeholder: string;
|
|
37
38
|
rules: Rules;
|
|
38
39
|
disabled: boolean;
|
|
39
|
-
}, {}
|
|
40
|
+
}, {}>;
|
|
41
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
40
42
|
export default _default;
|
|
41
43
|
|
|
42
44
|
type __VLS_WithDefaults<P, D> = {
|
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
interface Props {
|
|
2
2
|
fixed?: 'right' | 'left';
|
|
3
3
|
}
|
|
4
|
-
declare
|
|
4
|
+
declare function __VLS_template(): {
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
5
8
|
fixed: string;
|
|
6
9
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
7
10
|
fixed: string;
|
|
8
11
|
}>>>, {
|
|
9
12
|
fixed: "right" | "left";
|
|
10
|
-
}, {}
|
|
11
|
-
|
|
12
|
-
}>;
|
|
13
|
+
}, {}>;
|
|
14
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
13
15
|
export default _default;
|
|
14
16
|
type __VLS_WithDefaults<P, D> = {
|
|
15
17
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
@@ -6,14 +6,23 @@ export interface Props {
|
|
|
6
6
|
required?: boolean;
|
|
7
7
|
width?: number;
|
|
8
8
|
renderAppend?: () => JSX.Element;
|
|
9
|
+
memo?: string;
|
|
9
10
|
}
|
|
10
|
-
declare
|
|
11
|
+
declare function __VLS_template(): Readonly<{
|
|
12
|
+
default: any;
|
|
13
|
+
append: any;
|
|
14
|
+
}> & {
|
|
15
|
+
default: any;
|
|
16
|
+
append: any;
|
|
17
|
+
};
|
|
18
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
11
19
|
width: undefined;
|
|
12
20
|
required: boolean;
|
|
13
21
|
minWidth: undefined;
|
|
14
22
|
maxWidth: undefined;
|
|
15
23
|
fixed: undefined;
|
|
16
24
|
renderAppend: undefined;
|
|
25
|
+
memo: undefined;
|
|
17
26
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
18
27
|
width: undefined;
|
|
19
28
|
required: boolean;
|
|
@@ -21,6 +30,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
21
30
|
maxWidth: undefined;
|
|
22
31
|
fixed: undefined;
|
|
23
32
|
renderAppend: undefined;
|
|
33
|
+
memo: undefined;
|
|
24
34
|
}>>>, {
|
|
25
35
|
minWidth: number;
|
|
26
36
|
width: number;
|
|
@@ -28,13 +38,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
28
38
|
maxWidth: number;
|
|
29
39
|
required: boolean;
|
|
30
40
|
renderAppend: () => JSX.Element;
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
}> & {
|
|
35
|
-
default: any;
|
|
36
|
-
append: any;
|
|
37
|
-
}>;
|
|
41
|
+
memo: string;
|
|
42
|
+
}, {}>;
|
|
43
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
38
44
|
export default _default;
|
|
39
45
|
type __VLS_WithDefaults<P, D> = {
|
|
40
46
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
@@ -13,7 +13,10 @@ declare let __VLS_typeProps: Props;
|
|
|
13
13
|
type __VLS_PublicProps = {
|
|
14
14
|
modelValue?: string | number;
|
|
15
15
|
} & typeof __VLS_typeProps;
|
|
16
|
-
declare
|
|
16
|
+
declare function __VLS_template(): {
|
|
17
|
+
blur?(_: {}): any;
|
|
18
|
+
};
|
|
19
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<__VLS_PublicProps>, {
|
|
17
20
|
placeholder: string;
|
|
18
21
|
rules: undefined;
|
|
19
22
|
disabled: boolean;
|
|
@@ -49,9 +52,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
49
52
|
max: number;
|
|
50
53
|
isShowBlur: boolean;
|
|
51
54
|
precision: number;
|
|
52
|
-
}, {}
|
|
53
|
-
|
|
54
|
-
}>;
|
|
55
|
+
}, {}>;
|
|
56
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
55
57
|
export default _default;
|
|
56
58
|
type __VLS_WithDefaults<P, D> = {
|
|
57
59
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
@@ -9,7 +9,10 @@ declare let __VLS_typeProps: Props;
|
|
|
9
9
|
type __VLS_PublicProps = {
|
|
10
10
|
modelValue?: string[];
|
|
11
11
|
} & typeof __VLS_typeProps;
|
|
12
|
-
declare
|
|
12
|
+
declare function __VLS_template(): {
|
|
13
|
+
tip?(_: {}): any;
|
|
14
|
+
};
|
|
15
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<__VLS_PublicProps>, {
|
|
13
16
|
placeholder: string;
|
|
14
17
|
single: boolean;
|
|
15
18
|
rules: undefined;
|
|
@@ -32,9 +35,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
32
35
|
rules: Rules;
|
|
33
36
|
single: boolean;
|
|
34
37
|
showTip: boolean;
|
|
35
|
-
}, {}
|
|
36
|
-
|
|
37
|
-
}>;
|
|
38
|
+
}, {}>;
|
|
39
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
38
40
|
export default _default;
|
|
39
41
|
type __VLS_WithDefaults<P, D> = {
|
|
40
42
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|