Refactor #3922 - For TreeSelect .d.ts
parent
44b74b683a
commit
1a9736c856
|
@ -8,7 +8,7 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
import { InputHTMLAttributes, VNode } from 'vue';
|
import { InputHTMLAttributes, VNode } from 'vue';
|
||||||
import { TreeNode, TreePassThroughOptionType } from '../tree';
|
import { TreeExpandedKeys, TreeNode, TreePassThroughOptionType } from '../tree';
|
||||||
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||||
|
|
||||||
export declare type TreeSelectPassThroughOptionType = TreeSelectPassThroughAttributes | ((options: TreeSelectPassThroughMethodOptions) => TreeSelectPassThroughAttributes) | null | undefined;
|
export declare type TreeSelectPassThroughOptionType = TreeSelectPassThroughAttributes | ((options: TreeSelectPassThroughMethodOptions) => TreeSelectPassThroughAttributes) | null | undefined;
|
||||||
|
@ -93,10 +93,19 @@ export interface TreeSelectPassThroughAttributes {
|
||||||
*/
|
*/
|
||||||
export interface TreeSelectState {
|
export interface TreeSelectState {
|
||||||
/**
|
/**
|
||||||
* Current collapsed state as a boolean.
|
* Current focused state as a boolean.
|
||||||
* @defaultValue false
|
* @defaultValue false
|
||||||
*/
|
*/
|
||||||
d_collapsed: boolean;
|
focused: boolean;
|
||||||
|
/**
|
||||||
|
* Current overlay visible state as a boolean.
|
||||||
|
* @defaultValue false
|
||||||
|
*/
|
||||||
|
overlayVisible: boolean;
|
||||||
|
/**
|
||||||
|
* Current expanded keys state.
|
||||||
|
*/
|
||||||
|
expandedKeys: TreeExpandedKeys;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue