12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- export declare type SelectSource = 'option' | 'selection' | 'input' | 'clear';
- export declare type Key = string | number;
- export declare type RawValueType = string | number;
- export interface LabelValueType {
- key?: Key;
- value?: RawValueType;
- label?: any;
- /** Only works on `treeCheckStrictly` */
- halfChecked?: boolean;
- }
- export declare type DefaultValueType = RawValueType | RawValueType[] | LabelValueType | LabelValueType[];
- export interface DataNode {
- value?: RawValueType;
- title?: any;
- label?: any;
- key?: Key;
- disabled?: boolean;
- disableCheckbox?: boolean;
- checkable?: boolean;
- selectable?: boolean;
- children?: DataNode[];
- /** Customize data info */
- [prop: string]: any;
- }
- export interface InternalDataEntity {
- key: Key;
- value: RawValueType;
- title?: any;
- checkable: boolean;
- disableCheckbox: boolean;
- disabled: boolean;
- selectable: boolean;
- isLeaf: boolean;
- children?: InternalDataEntity[];
- /** Origin DataNode */
- node: DataNode;
- dataRef: DataNode;
- slots?: Record<string, string>;
- }
- export interface LegacyDataNode extends DataNode {
- props: any;
- }
- export interface TreeDataNode extends DataNode {
- key: Key;
- children?: TreeDataNode[];
- }
- export interface FlattenDataNode {
- data: InternalDataEntity;
- key: Key;
- value: RawValueType;
- level: number;
- parent?: FlattenDataNode;
- }
- export interface SimpleModeConfig {
- id?: Key;
- pId?: Key;
- rootPId?: Key;
- }
- /** @deprecated This is only used for legacy compatible. Not works on new code. */
- export interface LegacyCheckedNode {
- pos: string;
- node: any;
- children?: LegacyCheckedNode[];
- }
- export interface ChangeEventExtra {
- /** @deprecated Please save prev value by control logic instead */
- preValue: LabelValueType[];
- triggerValue: RawValueType;
- /** @deprecated Use `onSelect` or `onDeselect` instead. */
- selected?: boolean;
- /** @deprecated Use `onSelect` or `onDeselect` instead. */
- checked?: boolean;
- /** @deprecated This prop not work as react node anymore. */
- triggerNode: any;
- /** @deprecated This prop not work as react node anymore. */
- allCheckedNodes: LegacyCheckedNode[];
- }
- export interface FieldNames {
- value?: string;
- label?: string;
- children?: string;
- }
|