@wx-design/components 0.8.23 → 0.8.25
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.
|
@@ -1,8 +1,36 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* 单元格-Boolean
|
|
3
3
|
*/
|
|
4
|
-
import { CheckboxProps } from "element-plus";
|
|
5
4
|
import type { SabColumnProps } from "../../../../types/table";
|
|
6
|
-
declare const SabCellBoolean: import("vue").DefineComponent<
|
|
5
|
+
declare const SabCellBoolean: import("vue").DefineComponent<Readonly<{
|
|
6
|
+
onChange?: any;
|
|
7
|
+
disabled?: any;
|
|
8
|
+
modelValue?: any;
|
|
9
|
+
column?: any;
|
|
10
|
+
showType?: any;
|
|
11
|
+
valueTrue?: any;
|
|
12
|
+
valueFalse?: any;
|
|
13
|
+
row?: any;
|
|
14
|
+
}>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<Readonly<{
|
|
15
|
+
onChange?: any;
|
|
16
|
+
disabled?: any;
|
|
17
|
+
modelValue?: any;
|
|
18
|
+
column?: any;
|
|
19
|
+
showType?: any;
|
|
20
|
+
valueTrue?: any;
|
|
21
|
+
valueFalse?: any;
|
|
22
|
+
row?: any;
|
|
23
|
+
}>>> & {
|
|
24
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
25
|
+
}, {
|
|
26
|
+
readonly onChange?: any;
|
|
27
|
+
readonly disabled?: any;
|
|
28
|
+
readonly modelValue?: any;
|
|
29
|
+
readonly column?: any;
|
|
30
|
+
readonly showType?: any;
|
|
31
|
+
readonly valueTrue?: any;
|
|
32
|
+
readonly valueFalse?: any;
|
|
33
|
+
readonly row?: any;
|
|
34
|
+
}, {}>;
|
|
7
35
|
export default SabCellBoolean;
|
|
8
36
|
export declare const config: Partial<SabColumnProps>;
|