-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathindex.ts
80 lines (73 loc) · 1.49 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
//#region ignoreMode
export enum ignoreEnum {
none = 'none',
parents = 'parents',
children = 'children'
}
//#endregion ignoreMode
//#region API
// Tree API
export const TREE_API_METHODS = [
'setData',
'setChecked',
'setCheckedKeys',
'checkAll',
'clearChecked',
'setSelected',
'clearSelected',
'setExpand',
'setExpandKeys',
'setExpandAll',
'getCheckedNodes',
'getCheckedKeys',
'getIndeterminateNodes',
'getSelectedNode',
'getSelectedKey',
'getExpandNodes',
'getExpandKeys',
'getCurrentVisibleNodes',
'getNode',
'getTreeData',
'getFlatData',
'getNodesCount',
'insertBefore',
'insertAfter',
'append',
'prepend',
'remove',
'filter',
'showCheckedNodes',
'loadRootNodes',
'updateNode',
'updateNodes',
'scrollTo'
] as const
export const TREE_SEARCH_API_METHODS = [...TREE_API_METHODS, 'clearKeyword', 'getKeyword', 'search'] as const
export enum placementEnum {
'bottom-start' = 'bottom-start',
'bottom-end' = 'bottom-end',
'bottom' = 'bottom',
'top-start' = 'top-start',
'top-end' = 'top-end',
'top' = 'top'
}
//#region Scroll position
export enum verticalPositionEnum {
top = 'top',
center = 'center',
bottom = 'bottom'
}
export type VerticalPositionType = keyof typeof verticalPositionEnum
//#endregion Scroll position
//#region Drag
export enum dragHoverPartEnum {
before = 'before',
body = 'body',
after = 'after'
}
//#endregion Drag
export enum showLineType {
// dotted = 'dotted',
dashed = 'dashed',
solid = 'solid',
}