@kengic/vue 0.9.2 → 0.9.3
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/index.css +1 -1
- package/dist/kengic-vue.js +796 -788
- package/dist/src/components/KgTable/KgTable.d.ts +6 -0
- package/package.json +1 -1
@@ -7,6 +7,8 @@ export declare const getProps: () => {
|
|
7
7
|
type: PropType<boolean>;
|
8
8
|
default: undefined;
|
9
9
|
};
|
10
|
+
/** 是否禁用某行的勾选框. */
|
11
|
+
kgCheckboxDisabled: PropType<(row: any) => boolean>;
|
10
12
|
/** 设置行的样式类名. */
|
11
13
|
kgRowClassName: PropType<RowClassName<any>>;
|
12
14
|
};
|
@@ -17,6 +19,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
17
19
|
type: PropType<boolean>;
|
18
20
|
default: undefined;
|
19
21
|
};
|
22
|
+
/** 是否禁用某行的勾选框. */
|
23
|
+
kgCheckboxDisabled: PropType<(row: any) => boolean>;
|
20
24
|
/** 设置行的样式类名. */
|
21
25
|
kgRowClassName: PropType<RowClassName<any>>;
|
22
26
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
@@ -25,6 +29,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
25
29
|
type: PropType<boolean>;
|
26
30
|
default: undefined;
|
27
31
|
};
|
32
|
+
/** 是否禁用某行的勾选框. */
|
33
|
+
kgCheckboxDisabled: PropType<(row: any) => boolean>;
|
28
34
|
/** 设置行的样式类名. */
|
29
35
|
kgRowClassName: PropType<RowClassName<any>>;
|
30
36
|
}>>, {
|