@uf_lee/leeui 1.0.43 → 1.0.44
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.
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { PropType } from "vue";
|
|
2
|
+
import type { Recordable } from "../../../global";
|
|
3
|
+
import type { TableSchema } from "./types.ts";
|
|
4
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
5
|
+
data: {
|
|
6
|
+
type: PropType<Recordable[]>;
|
|
7
|
+
default: () => never[];
|
|
8
|
+
};
|
|
9
|
+
schema: {
|
|
10
|
+
type: PropType<TableSchema[]>;
|
|
11
|
+
default: () => never[];
|
|
12
|
+
};
|
|
13
|
+
isForm: {
|
|
14
|
+
type: BooleanConstructor;
|
|
15
|
+
default: boolean;
|
|
16
|
+
};
|
|
17
|
+
rules: {
|
|
18
|
+
type: PropType<Recordable>;
|
|
19
|
+
default: () => {};
|
|
20
|
+
};
|
|
21
|
+
selectType: {
|
|
22
|
+
type: PropType<"none" | "multiple" | "single">;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
selectAll: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "register"[], "register", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
30
|
+
data: {
|
|
31
|
+
type: PropType<Recordable[]>;
|
|
32
|
+
default: () => never[];
|
|
33
|
+
};
|
|
34
|
+
schema: {
|
|
35
|
+
type: PropType<TableSchema[]>;
|
|
36
|
+
default: () => never[];
|
|
37
|
+
};
|
|
38
|
+
isForm: {
|
|
39
|
+
type: BooleanConstructor;
|
|
40
|
+
default: boolean;
|
|
41
|
+
};
|
|
42
|
+
rules: {
|
|
43
|
+
type: PropType<Recordable>;
|
|
44
|
+
default: () => {};
|
|
45
|
+
};
|
|
46
|
+
selectType: {
|
|
47
|
+
type: PropType<"none" | "multiple" | "single">;
|
|
48
|
+
default: string;
|
|
49
|
+
};
|
|
50
|
+
selectAll: {
|
|
51
|
+
type: BooleanConstructor;
|
|
52
|
+
default: boolean;
|
|
53
|
+
};
|
|
54
|
+
}>> & Readonly<{
|
|
55
|
+
onRegister?: ((...args: any[]) => any) | undefined;
|
|
56
|
+
}>, {
|
|
57
|
+
data: Recordable[];
|
|
58
|
+
schema: TableSchema[];
|
|
59
|
+
rules: Recordable;
|
|
60
|
+
isForm: boolean;
|
|
61
|
+
selectAll: boolean;
|
|
62
|
+
selectType: "none" | "multiple" | "single";
|
|
63
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
64
|
+
export default _default;
|
|
@@ -18,7 +18,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
18
18
|
type: PropType<Recordable>;
|
|
19
19
|
default: () => {};
|
|
20
20
|
};
|
|
21
|
-
|
|
21
|
+
selectionType: {
|
|
22
|
+
type: PropType<"none" | "multiple" | "single">;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
selectAll: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
29
|
+
rowKey: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
default: string;
|
|
32
|
+
};
|
|
33
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("register" | "getRadioValues" | "selection-change")[], "register" | "getRadioValues" | "selection-change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
22
34
|
data: {
|
|
23
35
|
type: PropType<Recordable[]>;
|
|
24
36
|
default: () => never[];
|
|
@@ -35,12 +47,29 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
35
47
|
type: PropType<Recordable>;
|
|
36
48
|
default: () => {};
|
|
37
49
|
};
|
|
50
|
+
selectionType: {
|
|
51
|
+
type: PropType<"none" | "multiple" | "single">;
|
|
52
|
+
default: string;
|
|
53
|
+
};
|
|
54
|
+
selectAll: {
|
|
55
|
+
type: BooleanConstructor;
|
|
56
|
+
default: boolean;
|
|
57
|
+
};
|
|
58
|
+
rowKey: {
|
|
59
|
+
type: StringConstructor;
|
|
60
|
+
default: string;
|
|
61
|
+
};
|
|
38
62
|
}>> & Readonly<{
|
|
39
63
|
onRegister?: ((...args: any[]) => any) | undefined;
|
|
64
|
+
onGetRadioValues?: ((...args: any[]) => any) | undefined;
|
|
65
|
+
"onSelection-change"?: ((...args: any[]) => any) | undefined;
|
|
40
66
|
}>, {
|
|
41
67
|
data: Recordable[];
|
|
42
68
|
schema: TableSchema[];
|
|
43
69
|
rules: Recordable;
|
|
44
70
|
isForm: boolean;
|
|
71
|
+
selectionType: "none" | "multiple" | "single";
|
|
72
|
+
selectAll: boolean;
|
|
73
|
+
rowKey: string;
|
|
45
74
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
46
75
|
export default _default;
|