小程序初始提交
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
import type { ClTreeItem, PassThroughProps } from "../../types";
|
||||
import type { ClIconProps } from "../cl-icon/props";
|
||||
|
||||
export type ClTreeItemPassThrough = {
|
||||
item?: PassThroughProps;
|
||||
itemChecked?: PassThroughProps;
|
||||
itemWrapper?: PassThroughProps;
|
||||
expand?: PassThroughProps;
|
||||
expandIcon?: ClIconProps;
|
||||
checkbox?: PassThroughProps;
|
||||
checkedIcon?: ClIconProps;
|
||||
halfCheckedIcon?: ClIconProps;
|
||||
uncheckedIcon?: ClIconProps;
|
||||
label?: PassThroughProps;
|
||||
};
|
||||
|
||||
export type ClTreeItemProps = {
|
||||
className?: string;
|
||||
pt?: ClTreeItemPassThrough;
|
||||
item?: ClTreeItem;
|
||||
level?: number;
|
||||
};
|
||||
Reference in New Issue
Block a user