@@ -30,7 +30,6 @@ export declare const DEFAULT_TREE_DROP_PROPS: {
30
30
transfer : boolean ;
31
31
dropdownWidthFixed : boolean ;
32
32
searchPlaceholder : string ;
33
- /** 处理树数据更新 */
34
33
showCheckAll : boolean ;
35
34
showCheckedButton : boolean ;
36
35
checkedButtonText : string ;
@@ -76,7 +75,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
76
75
transfer : boolean ;
77
76
dropdownWidthFixed : boolean ;
78
77
searchPlaceholder : string ;
79
- /** 处理树数据更新 */
80
78
showCheckAll : boolean ;
81
79
showCheckedButton : boolean ;
82
80
checkedButtonText : string ;
@@ -114,6 +112,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
114
112
renderNodeAmount : number ;
115
113
bufferNodeAmount : number ;
116
114
} > , {
115
+ search : ( keyword1 ?: string | undefined ) => Promise < void > ;
116
+ filter : ( keyword : string , filterMethod ?: import ( "../store/tree-store.js" ) . FilterFunctionType | undefined ) => void ;
117
117
setData : ( data : import ( "../types" ) . AnyPropsArrayType ) => void ;
118
118
setChecked : ( key : TreeNodeKeyType , value : boolean ) => void ;
119
119
setCheckedKeys : ( keys : TreeNodeKeyType [ ] , value : boolean ) => void ;
@@ -141,15 +141,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
141
141
append : ( insertedNode : TreeNodeKeyType | import ( "../store/tree-node.js" ) . ITreeNodeOptions , parentKey : TreeNodeKeyType ) => TreeNode | null ;
142
142
prepend : ( insertedNode : TreeNodeKeyType | import ( "../store/tree-node.js" ) . ITreeNodeOptions , parentKey : TreeNodeKeyType ) => TreeNode | null ;
143
143
remove : ( removedKey : TreeNodeKeyType ) => TreeNode | null ;
144
- filter : ( keyword : string , filterMethod ?: import ( "../store/tree-store.js" ) . FilterFunctionType | undefined ) => void ;
145
144
showCheckedNodes : ( showUnloadCheckedNodes ?: boolean | undefined ) => void ;
146
145
loadRootNodes : ( ) => Promise < void > ;
147
146
updateNode : ( key : TreeNodeKeyType , newNode : import ( "../store/tree-node.js" ) . ITreeNodeOptions ) => void ;
148
147
updateNodes : ( newNodes : import ( "../store/tree-node.js" ) . ITreeNodeOptions [ ] ) => void ;
149
- scrollTo : ( key : TreeNodeKeyType , verticalPosition ?: number | "bottom " | "top " | "center " ) => void ;
148
+ scrollTo : ( key : TreeNodeKeyType , verticalPosition ?: number | "top " | "center " | "bottom " ) => void ;
150
149
clearKeyword : ( ) => void ;
151
150
getKeyword : ( ) => string ;
152
- search : ( keyword1 ?: string | undefined ) => Promise < void > ;
153
151
} , unknown , { } , { } , import ( "vue" ) . ComponentOptionsMixin , import ( "vue" ) . ComponentOptionsMixin , {
154
152
[ x : string ] : ( ...args : any [ ] ) => void ;
155
153
} , string , import ( "vue" ) . PublicProps , Readonly < import ( "vue" ) . ExtractPropTypes < __VLS_WithDefaults < __VLS_TypePropsToOption < TreeDropProps > , {
@@ -160,7 +158,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
160
158
transfer : boolean ;
161
159
dropdownWidthFixed : boolean ;
162
160
searchPlaceholder : string ;
163
- /** 处理树数据更新 */
164
161
showCheckAll : boolean ;
165
162
showCheckedButton : boolean ;
166
163
checkedButtonText : string ;
@@ -198,31 +195,31 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
198
195
renderNodeAmount : number ;
199
196
bufferNodeAmount : number ;
200
197
} > > > , {
201
- keyField : string ;
202
- ignoreMode: "none" | "parents" | "children" ;
203
- filteredNodeCheckable: boolean ;
204
- cascade: boolean ;
205
- defaultExpandAll: boolean ;
206
- expandOnFilter: boolean ;
207
- titleField: string ;
208
- checkable: boolean ;
209
- selectable: boolean ;
210
- unselectOnClick: boolean ;
211
- disableAll: boolean ;
212
- draggable: boolean ;
213
- droppable: boolean ;
214
- nodeIndent: number ;
215
198
data : import ( "../types" ) . AnyPropsArrayType ;
216
199
emptyText: string ;
200
+ selectable: boolean ;
201
+ checkable: boolean ;
217
202
separator: string ;
203
+ ignoreMode: "none" | "parents" | "children" ;
204
+ titleField: string ;
205
+ keyField: string ;
218
206
showUnloadCheckedNodes: boolean ;
219
207
unloadDataList: import ( "../types" ) . AnyPropsArrayType ;
208
+ filteredNodeCheckable: boolean ;
209
+ cascade: boolean ;
220
210
enableLeafOnly: boolean ;
211
+ disableAll: boolean ;
212
+ defaultExpandAll: boolean ;
221
213
defaultExpandedKeys: TreeNodeKeyType [ ] ;
222
214
expandedKeys: TreeNodeKeyType [ ] ;
215
+ draggable: boolean ;
216
+ droppable: boolean ;
223
217
beforeDropMethod: ( dragKey : TreeNodeKeyType , dropKey : TreeNodeKeyType , hoverPart : import ( "../constants" ) . dragHoverPartEnum ) => boolean ;
224
218
autoLoad: boolean ;
219
+ expandOnFilter: boolean ;
220
+ unselectOnClick: boolean ;
225
221
loading: boolean ;
222
+ nodeIndent: number ;
226
223
renderNodeAmount: number ;
227
224
nodeMinHeight: number ;
228
225
bufferNodeAmount: number ;
@@ -238,7 +235,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
238
235
dropHeight: number ;
239
236
dropDisabled: boolean ;
240
237
clearable: boolean ;
241
- placement: "bottom-start " | "bottom-end " | "bottom" | "top-start " | "top-end " | "top" ;
238
+ placement: "top " | "bottom" | "bottom-start " | "bottom-end " | "top-start " | "top-end " ;
242
239
transfer: boolean ;
243
240
dropdownWidthFixed: boolean ;
244
241
} , { } > , Partial < Record < NonNullable < string | number > , ( _ : any ) => any > > & {
0 commit comments