amis 1.9.0-beta.10 → 1.9.0-beta.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/actions/LinkAction.d.ts +8 -1
- package/lib/actions/LinkAction.js +9 -12
- package/lib/actions/LinkAction.js.map +2 -2
- package/lib/actions/ToastAction.js +2 -1
- package/lib/actions/ToastAction.js.map +2 -2
- package/lib/components/Tree.d.ts +170 -84
- package/lib/components/Tree.js +25 -23
- package/lib/components/Tree.js.map +2 -2
- package/lib/index.js +1 -1
- package/lib/renderers/Action.js +1 -1
- package/lib/renderers/Action.js.map +2 -2
- package/lib/renderers/CRUD.d.ts +1 -0
- package/lib/renderers/CRUD.js +2 -2
- package/lib/renderers/CRUD.js.map +2 -2
- package/lib/renderers/Dialog.js +2 -2
- package/lib/renderers/Dialog.js.map +2 -2
- package/lib/renderers/Drawer.js +2 -2
- package/lib/renderers/Drawer.js.map +2 -2
- package/lib/renderers/Form/InputFile.d.ts +4 -0
- package/lib/renderers/Form/InputFile.js +47 -21
- package/lib/renderers/Form/InputFile.js.map +2 -2
- package/lib/renderers/Form/InputTree.d.ts +9 -1
- package/lib/renderers/Form/InputTree.js +2 -2
- package/lib/renderers/Form/InputTree.js.map +2 -2
- package/lib/renderers/Form/Picker.d.ts +2 -1
- package/lib/renderers/Form/Picker.js +8 -2
- package/lib/renderers/Form/Picker.js.map +2 -2
- package/lib/renderers/Form/index.js +6 -3
- package/lib/renderers/Form/index.js.map +2 -2
- package/lib/renderers/Service.d.ts +2 -0
- package/lib/renderers/Service.js +23 -3
- package/lib/renderers/Service.js.map +2 -2
- package/lib/renderers/Wizard.js +5 -8
- package/lib/renderers/Wizard.js.map +2 -2
- package/lib/themes/ang-ie11.css +27 -15
- package/lib/themes/ang.css +39 -25
- package/lib/themes/ang.css.map +1 -1
- package/lib/themes/antd-ie11.css +27 -15
- package/lib/themes/antd.css +39 -25
- package/lib/themes/antd.css.map +1 -1
- package/lib/themes/cxd-ie11.css +42 -30
- package/lib/themes/cxd.css +44 -26
- package/lib/themes/cxd.css.map +1 -1
- package/lib/themes/dark-ie11.css +27 -15
- package/lib/themes/dark.css +39 -25
- package/lib/themes/dark.css.map +1 -1
- package/lib/themes/default-ie11.css +42 -30
- package/lib/themes/default.css +44 -26
- package/lib/themes/default.css.map +1 -1
- package/package.json +2 -3
- package/schema.json +174 -235
- package/scss/_properties.scss +2 -0
- package/scss/components/form/_tree.scss +41 -46
- package/scss/themes/_cxd-variables.scss +7 -2
- package/sdk/ang-ie11.css +33 -20
- package/sdk/ang.css +45 -30
- package/sdk/antd-ie11.css +33 -20
- package/sdk/antd.css +45 -30
- package/sdk/barcode.js +51 -51
- package/sdk/charts.js +15 -15
- package/sdk/codemirror.js +7 -7
- package/sdk/color-picker.js +65 -65
- package/sdk/cropperjs.js +2 -2
- package/sdk/cxd-ie11.css +48 -35
- package/sdk/cxd.css +50 -31
- package/sdk/dark-ie11.css +33 -20
- package/sdk/dark.css +45 -30
- package/sdk/exceljs.js +1 -1
- package/sdk/markdown.js +69 -69
- package/sdk/papaparse.js +1 -1
- package/sdk/renderers/Form/CityDB.js +1 -1
- package/sdk/rest.js +16 -16
- package/sdk/rich-text.js +62 -62
- package/sdk/sdk-ie11.css +48 -35
- package/sdk/sdk.css +50 -31
- package/sdk/sdk.js +1265 -1293
- package/sdk/thirds/hls.js/hls.js +1 -1
- package/sdk/thirds/mpegts.js/mpegts.js +1 -1
- package/sdk/tinymce.js +57 -57
- package/src/actions/LinkAction.ts +21 -14
- package/src/actions/ToastAction.ts +6 -1
- package/src/components/Tree.tsx +36 -36
- package/src/renderers/Action.tsx +1 -4
- package/src/renderers/CRUD.tsx +4 -6
- package/src/renderers/Dialog.tsx +2 -2
- package/src/renderers/Drawer.tsx +2 -2
- package/src/renderers/Form/InputFile.tsx +27 -15
- package/src/renderers/Form/InputTree.tsx +12 -1
- package/src/renderers/Form/Picker.tsx +13 -3
- package/src/renderers/Form/index.tsx +6 -6
- package/src/renderers/Service.tsx +40 -5
- package/src/renderers/Wizard.tsx +4 -7
package/lib/components/Tree.d.ts
CHANGED
@@ -54,6 +54,7 @@ interface TreeSelectorProps extends ThemeProps, LocaleProps {
|
|
54
54
|
enableNodePath?: boolean;
|
55
55
|
pathSeparator?: string;
|
56
56
|
nodePath: any[];
|
57
|
+
autoCheckChildren: boolean;
|
57
58
|
cascade?: boolean;
|
58
59
|
selfDisabledAffectChildren?: boolean;
|
59
60
|
minLength?: number;
|
@@ -107,6 +108,7 @@ export declare class TreeSelector extends React.Component<TreeSelectorProps, Tre
|
|
107
108
|
hideRoot: boolean;
|
108
109
|
rootLabel: string;
|
109
110
|
rootValue: number;
|
111
|
+
autoCheckChildren: boolean;
|
110
112
|
cascade: boolean;
|
111
113
|
selfDisabledAffectChildren: boolean;
|
112
114
|
rootCreateTip: string;
|
@@ -165,7 +167,7 @@ export declare class TreeSelector extends React.Component<TreeSelectorProps, Tre
|
|
165
167
|
render(): JSX.Element;
|
166
168
|
}
|
167
169
|
declare const _default: {
|
168
|
-
new (props: (Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
170
|
+
new (props: (Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
169
171
|
showIcon: boolean;
|
170
172
|
showOutline: boolean;
|
171
173
|
initiallyOpen: boolean;
|
@@ -187,6 +189,7 @@ declare const _default: {
|
|
187
189
|
hideRoot: boolean;
|
188
190
|
rootLabel: string;
|
189
191
|
rootValue: number;
|
192
|
+
autoCheckChildren: boolean;
|
190
193
|
cascade: boolean;
|
191
194
|
selfDisabledAffectChildren: boolean;
|
192
195
|
rootCreateTip: string;
|
@@ -199,7 +202,7 @@ declare const _default: {
|
|
199
202
|
}, never>> & {
|
200
203
|
locale?: string | undefined;
|
201
204
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
202
|
-
}, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
205
|
+
}, keyof ThemeProps> & import("../theme").ThemeOutterProps) | Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
203
206
|
showIcon: boolean;
|
204
207
|
showOutline: boolean;
|
205
208
|
initiallyOpen: boolean;
|
@@ -221,6 +224,7 @@ declare const _default: {
|
|
221
224
|
hideRoot: boolean;
|
222
225
|
rootLabel: string;
|
223
226
|
rootValue: number;
|
227
|
+
autoCheckChildren: boolean;
|
224
228
|
cascade: boolean;
|
225
229
|
selfDisabledAffectChildren: boolean;
|
226
230
|
rootCreateTip: string;
|
@@ -236,7 +240,7 @@ declare const _default: {
|
|
236
240
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>): {
|
237
241
|
render(): JSX.Element;
|
238
242
|
context: any;
|
239
|
-
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
243
|
+
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
240
244
|
showIcon: boolean;
|
241
245
|
showOutline: boolean;
|
242
246
|
initiallyOpen: boolean;
|
@@ -258,6 +262,7 @@ declare const _default: {
|
|
258
262
|
hideRoot: boolean;
|
259
263
|
rootLabel: string;
|
260
264
|
rootValue: number;
|
265
|
+
autoCheckChildren: boolean;
|
261
266
|
cascade: boolean;
|
262
267
|
selfDisabledAffectChildren: boolean;
|
263
268
|
rootCreateTip: string;
|
@@ -272,7 +277,7 @@ declare const _default: {
|
|
272
277
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
273
278
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
274
279
|
forceUpdate(callback?: (() => void) | undefined): void;
|
275
|
-
readonly props: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
280
|
+
readonly props: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
276
281
|
showIcon: boolean;
|
277
282
|
showOutline: boolean;
|
278
283
|
initiallyOpen: boolean;
|
@@ -294,6 +299,7 @@ declare const _default: {
|
|
294
299
|
hideRoot: boolean;
|
295
300
|
rootLabel: string;
|
296
301
|
rootValue: number;
|
302
|
+
autoCheckChildren: boolean;
|
297
303
|
cascade: boolean;
|
298
304
|
selfDisabledAffectChildren: boolean;
|
299
305
|
rootCreateTip: string;
|
@@ -314,7 +320,7 @@ declare const _default: {
|
|
314
320
|
[key: string]: React.ReactInstance;
|
315
321
|
};
|
316
322
|
componentDidMount?(): void;
|
317
|
-
shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
323
|
+
shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
318
324
|
showIcon: boolean;
|
319
325
|
showOutline: boolean;
|
320
326
|
initiallyOpen: boolean;
|
@@ -336,6 +342,7 @@ declare const _default: {
|
|
336
342
|
hideRoot: boolean;
|
337
343
|
rootLabel: string;
|
338
344
|
rootValue: number;
|
345
|
+
autoCheckChildren: boolean;
|
339
346
|
cascade: boolean;
|
340
347
|
selfDisabledAffectChildren: boolean;
|
341
348
|
rootCreateTip: string;
|
@@ -351,7 +358,7 @@ declare const _default: {
|
|
351
358
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
352
359
|
componentWillUnmount?(): void;
|
353
360
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
354
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
361
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
355
362
|
showIcon: boolean;
|
356
363
|
showOutline: boolean;
|
357
364
|
initiallyOpen: boolean;
|
@@ -373,6 +380,7 @@ declare const _default: {
|
|
373
380
|
hideRoot: boolean;
|
374
381
|
rootLabel: string;
|
375
382
|
rootValue: number;
|
383
|
+
autoCheckChildren: boolean;
|
376
384
|
cascade: boolean;
|
377
385
|
selfDisabledAffectChildren: boolean;
|
378
386
|
rootCreateTip: string;
|
@@ -386,7 +394,7 @@ declare const _default: {
|
|
386
394
|
locale?: string | undefined;
|
387
395
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
388
396
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
|
389
|
-
componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
397
|
+
componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
390
398
|
showIcon: boolean;
|
391
399
|
showOutline: boolean;
|
392
400
|
initiallyOpen: boolean;
|
@@ -408,6 +416,7 @@ declare const _default: {
|
|
408
416
|
hideRoot: boolean;
|
409
417
|
rootLabel: string;
|
410
418
|
rootValue: number;
|
419
|
+
autoCheckChildren: boolean;
|
411
420
|
cascade: boolean;
|
412
421
|
selfDisabledAffectChildren: boolean;
|
413
422
|
rootCreateTip: string;
|
@@ -423,7 +432,7 @@ declare const _default: {
|
|
423
432
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
424
433
|
componentWillMount?(): void;
|
425
434
|
UNSAFE_componentWillMount?(): void;
|
426
|
-
componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
435
|
+
componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
427
436
|
showIcon: boolean;
|
428
437
|
showOutline: boolean;
|
429
438
|
initiallyOpen: boolean;
|
@@ -445,6 +454,7 @@ declare const _default: {
|
|
445
454
|
hideRoot: boolean;
|
446
455
|
rootLabel: string;
|
447
456
|
rootValue: number;
|
457
|
+
autoCheckChildren: boolean;
|
448
458
|
cascade: boolean;
|
449
459
|
selfDisabledAffectChildren: boolean;
|
450
460
|
rootCreateTip: string;
|
@@ -458,7 +468,7 @@ declare const _default: {
|
|
458
468
|
locale?: string | undefined;
|
459
469
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
460
470
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
461
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
471
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
462
472
|
showIcon: boolean;
|
463
473
|
showOutline: boolean;
|
464
474
|
initiallyOpen: boolean;
|
@@ -480,6 +490,7 @@ declare const _default: {
|
|
480
490
|
hideRoot: boolean;
|
481
491
|
rootLabel: string;
|
482
492
|
rootValue: number;
|
493
|
+
autoCheckChildren: boolean;
|
483
494
|
cascade: boolean;
|
484
495
|
selfDisabledAffectChildren: boolean;
|
485
496
|
rootCreateTip: string;
|
@@ -493,7 +504,7 @@ declare const _default: {
|
|
493
504
|
locale?: string | undefined;
|
494
505
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
495
506
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
496
|
-
componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
507
|
+
componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
497
508
|
showIcon: boolean;
|
498
509
|
showOutline: boolean;
|
499
510
|
initiallyOpen: boolean;
|
@@ -515,6 +526,7 @@ declare const _default: {
|
|
515
526
|
hideRoot: boolean;
|
516
527
|
rootLabel: string;
|
517
528
|
rootValue: number;
|
529
|
+
autoCheckChildren: boolean;
|
518
530
|
cascade: boolean;
|
519
531
|
selfDisabledAffectChildren: boolean;
|
520
532
|
rootCreateTip: string;
|
@@ -528,7 +540,7 @@ declare const _default: {
|
|
528
540
|
locale?: string | undefined;
|
529
541
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
530
542
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
531
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
543
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
532
544
|
showIcon: boolean;
|
533
545
|
showOutline: boolean;
|
534
546
|
initiallyOpen: boolean;
|
@@ -550,6 +562,7 @@ declare const _default: {
|
|
550
562
|
hideRoot: boolean;
|
551
563
|
rootLabel: string;
|
552
564
|
rootValue: number;
|
565
|
+
autoCheckChildren: boolean;
|
553
566
|
cascade: boolean;
|
554
567
|
selfDisabledAffectChildren: boolean;
|
555
568
|
rootCreateTip: string;
|
@@ -564,7 +577,7 @@ declare const _default: {
|
|
564
577
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
565
578
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
566
579
|
};
|
567
|
-
new (props: Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
580
|
+
new (props: Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
568
581
|
showIcon: boolean;
|
569
582
|
showOutline: boolean;
|
570
583
|
initiallyOpen: boolean;
|
@@ -586,6 +599,7 @@ declare const _default: {
|
|
586
599
|
hideRoot: boolean;
|
587
600
|
rootLabel: string;
|
588
601
|
rootValue: number;
|
602
|
+
autoCheckChildren: boolean;
|
589
603
|
cascade: boolean;
|
590
604
|
selfDisabledAffectChildren: boolean;
|
591
605
|
rootCreateTip: string;
|
@@ -601,7 +615,7 @@ declare const _default: {
|
|
601
615
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps, context: any): {
|
602
616
|
render(): JSX.Element;
|
603
617
|
context: any;
|
604
|
-
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
618
|
+
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
605
619
|
showIcon: boolean;
|
606
620
|
showOutline: boolean;
|
607
621
|
initiallyOpen: boolean;
|
@@ -623,6 +637,7 @@ declare const _default: {
|
|
623
637
|
hideRoot: boolean;
|
624
638
|
rootLabel: string;
|
625
639
|
rootValue: number;
|
640
|
+
autoCheckChildren: boolean;
|
626
641
|
cascade: boolean;
|
627
642
|
selfDisabledAffectChildren: boolean;
|
628
643
|
rootCreateTip: string;
|
@@ -637,7 +652,7 @@ declare const _default: {
|
|
637
652
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
638
653
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
639
654
|
forceUpdate(callback?: (() => void) | undefined): void;
|
640
|
-
readonly props: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
655
|
+
readonly props: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
641
656
|
showIcon: boolean;
|
642
657
|
showOutline: boolean;
|
643
658
|
initiallyOpen: boolean;
|
@@ -659,6 +674,7 @@ declare const _default: {
|
|
659
674
|
hideRoot: boolean;
|
660
675
|
rootLabel: string;
|
661
676
|
rootValue: number;
|
677
|
+
autoCheckChildren: boolean;
|
662
678
|
cascade: boolean;
|
663
679
|
selfDisabledAffectChildren: boolean;
|
664
680
|
rootCreateTip: string;
|
@@ -679,7 +695,7 @@ declare const _default: {
|
|
679
695
|
[key: string]: React.ReactInstance;
|
680
696
|
};
|
681
697
|
componentDidMount?(): void;
|
682
|
-
shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
698
|
+
shouldComponentUpdate?(nextProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
683
699
|
showIcon: boolean;
|
684
700
|
showOutline: boolean;
|
685
701
|
initiallyOpen: boolean;
|
@@ -701,6 +717,7 @@ declare const _default: {
|
|
701
717
|
hideRoot: boolean;
|
702
718
|
rootLabel: string;
|
703
719
|
rootValue: number;
|
720
|
+
autoCheckChildren: boolean;
|
704
721
|
cascade: boolean;
|
705
722
|
selfDisabledAffectChildren: boolean;
|
706
723
|
rootCreateTip: string;
|
@@ -716,7 +733,7 @@ declare const _default: {
|
|
716
733
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): boolean;
|
717
734
|
componentWillUnmount?(): void;
|
718
735
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
719
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
736
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
720
737
|
showIcon: boolean;
|
721
738
|
showOutline: boolean;
|
722
739
|
initiallyOpen: boolean;
|
@@ -738,6 +755,7 @@ declare const _default: {
|
|
738
755
|
hideRoot: boolean;
|
739
756
|
rootLabel: string;
|
740
757
|
rootValue: number;
|
758
|
+
autoCheckChildren: boolean;
|
741
759
|
cascade: boolean;
|
742
760
|
selfDisabledAffectChildren: boolean;
|
743
761
|
rootCreateTip: string;
|
@@ -751,7 +769,7 @@ declare const _default: {
|
|
751
769
|
locale?: string | undefined;
|
752
770
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
753
771
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>): any;
|
754
|
-
componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
772
|
+
componentDidUpdate?(prevProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
755
773
|
showIcon: boolean;
|
756
774
|
showOutline: boolean;
|
757
775
|
initiallyOpen: boolean;
|
@@ -773,6 +791,7 @@ declare const _default: {
|
|
773
791
|
hideRoot: boolean;
|
774
792
|
rootLabel: string;
|
775
793
|
rootValue: number;
|
794
|
+
autoCheckChildren: boolean;
|
776
795
|
cascade: boolean;
|
777
796
|
selfDisabledAffectChildren: boolean;
|
778
797
|
rootCreateTip: string;
|
@@ -788,7 +807,7 @@ declare const _default: {
|
|
788
807
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, prevState: Readonly<{}>, snapshot?: any): void;
|
789
808
|
componentWillMount?(): void;
|
790
809
|
UNSAFE_componentWillMount?(): void;
|
791
|
-
componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
810
|
+
componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
792
811
|
showIcon: boolean;
|
793
812
|
showOutline: boolean;
|
794
813
|
initiallyOpen: boolean;
|
@@ -810,6 +829,7 @@ declare const _default: {
|
|
810
829
|
hideRoot: boolean;
|
811
830
|
rootLabel: string;
|
812
831
|
rootValue: number;
|
832
|
+
autoCheckChildren: boolean;
|
813
833
|
cascade: boolean;
|
814
834
|
selfDisabledAffectChildren: boolean;
|
815
835
|
rootCreateTip: string;
|
@@ -823,7 +843,7 @@ declare const _default: {
|
|
823
843
|
locale?: string | undefined;
|
824
844
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
825
845
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
826
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
846
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
827
847
|
showIcon: boolean;
|
828
848
|
showOutline: boolean;
|
829
849
|
initiallyOpen: boolean;
|
@@ -845,6 +865,7 @@ declare const _default: {
|
|
845
865
|
hideRoot: boolean;
|
846
866
|
rootLabel: string;
|
847
867
|
rootValue: number;
|
868
|
+
autoCheckChildren: boolean;
|
848
869
|
cascade: boolean;
|
849
870
|
selfDisabledAffectChildren: boolean;
|
850
871
|
rootCreateTip: string;
|
@@ -858,7 +879,7 @@ declare const _default: {
|
|
858
879
|
locale?: string | undefined;
|
859
880
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
860
881
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextContext: any): void;
|
861
|
-
componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
882
|
+
componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
862
883
|
showIcon: boolean;
|
863
884
|
showOutline: boolean;
|
864
885
|
initiallyOpen: boolean;
|
@@ -880,6 +901,7 @@ declare const _default: {
|
|
880
901
|
hideRoot: boolean;
|
881
902
|
rootLabel: string;
|
882
903
|
rootValue: number;
|
904
|
+
autoCheckChildren: boolean;
|
883
905
|
cascade: boolean;
|
884
906
|
selfDisabledAffectChildren: boolean;
|
885
907
|
rootCreateTip: string;
|
@@ -893,7 +915,7 @@ declare const _default: {
|
|
893
915
|
locale?: string | undefined;
|
894
916
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
895
917
|
}, keyof ThemeProps> & import("../theme").ThemeOutterProps>, nextState: Readonly<{}>, nextContext: any): void;
|
896
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
918
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Omit<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
897
919
|
showIcon: boolean;
|
898
920
|
showOutline: boolean;
|
899
921
|
initiallyOpen: boolean;
|
@@ -915,6 +937,7 @@ declare const _default: {
|
|
915
937
|
hideRoot: boolean;
|
916
938
|
rootLabel: string;
|
917
939
|
rootValue: number;
|
940
|
+
autoCheckChildren: boolean;
|
918
941
|
cascade: boolean;
|
919
942
|
selfDisabledAffectChildren: boolean;
|
920
943
|
rootCreateTip: string;
|
@@ -932,7 +955,7 @@ declare const _default: {
|
|
932
955
|
displayName: string;
|
933
956
|
contextType: React.Context<string>;
|
934
957
|
ComposedComponent: React.ComponentType<{
|
935
|
-
new (props: (Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
958
|
+
new (props: (Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
936
959
|
showIcon: boolean;
|
937
960
|
showOutline: boolean;
|
938
961
|
initiallyOpen: boolean;
|
@@ -954,6 +977,7 @@ declare const _default: {
|
|
954
977
|
hideRoot: boolean;
|
955
978
|
rootLabel: string;
|
956
979
|
rootValue: number;
|
980
|
+
autoCheckChildren: boolean;
|
957
981
|
cascade: boolean;
|
958
982
|
selfDisabledAffectChildren: boolean;
|
959
983
|
rootCreateTip: string;
|
@@ -966,7 +990,7 @@ declare const _default: {
|
|
966
990
|
}, never>> & {
|
967
991
|
locale?: string | undefined;
|
968
992
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
969
|
-
}) | Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
993
|
+
}) | Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
970
994
|
showIcon: boolean;
|
971
995
|
showOutline: boolean;
|
972
996
|
initiallyOpen: boolean;
|
@@ -988,6 +1012,7 @@ declare const _default: {
|
|
988
1012
|
hideRoot: boolean;
|
989
1013
|
rootLabel: string;
|
990
1014
|
rootValue: number;
|
1015
|
+
autoCheckChildren: boolean;
|
991
1016
|
cascade: boolean;
|
992
1017
|
selfDisabledAffectChildren: boolean;
|
993
1018
|
rootCreateTip: string;
|
@@ -1003,7 +1028,7 @@ declare const _default: {
|
|
1003
1028
|
}>): {
|
1004
1029
|
render(): JSX.Element;
|
1005
1030
|
context: any;
|
1006
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1031
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1007
1032
|
showIcon: boolean;
|
1008
1033
|
showOutline: boolean;
|
1009
1034
|
initiallyOpen: boolean;
|
@@ -1025,6 +1050,7 @@ declare const _default: {
|
|
1025
1050
|
hideRoot: boolean;
|
1026
1051
|
rootLabel: string;
|
1027
1052
|
rootValue: number;
|
1053
|
+
autoCheckChildren: boolean;
|
1028
1054
|
cascade: boolean;
|
1029
1055
|
selfDisabledAffectChildren: boolean;
|
1030
1056
|
rootCreateTip: string;
|
@@ -1039,7 +1065,7 @@ declare const _default: {
|
|
1039
1065
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1040
1066
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
1041
1067
|
forceUpdate(callback?: (() => void) | undefined): void;
|
1042
|
-
readonly props: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1068
|
+
readonly props: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1043
1069
|
showIcon: boolean;
|
1044
1070
|
showOutline: boolean;
|
1045
1071
|
initiallyOpen: boolean;
|
@@ -1061,6 +1087,7 @@ declare const _default: {
|
|
1061
1087
|
hideRoot: boolean;
|
1062
1088
|
rootLabel: string;
|
1063
1089
|
rootValue: number;
|
1090
|
+
autoCheckChildren: boolean;
|
1064
1091
|
cascade: boolean;
|
1065
1092
|
selfDisabledAffectChildren: boolean;
|
1066
1093
|
rootCreateTip: string;
|
@@ -1081,7 +1108,7 @@ declare const _default: {
|
|
1081
1108
|
[key: string]: React.ReactInstance;
|
1082
1109
|
};
|
1083
1110
|
componentDidMount?(): void;
|
1084
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1111
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1085
1112
|
showIcon: boolean;
|
1086
1113
|
showOutline: boolean;
|
1087
1114
|
initiallyOpen: boolean;
|
@@ -1103,6 +1130,7 @@ declare const _default: {
|
|
1103
1130
|
hideRoot: boolean;
|
1104
1131
|
rootLabel: string;
|
1105
1132
|
rootValue: number;
|
1133
|
+
autoCheckChildren: boolean;
|
1106
1134
|
cascade: boolean;
|
1107
1135
|
selfDisabledAffectChildren: boolean;
|
1108
1136
|
rootCreateTip: string;
|
@@ -1118,7 +1146,7 @@ declare const _default: {
|
|
1118
1146
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
1119
1147
|
componentWillUnmount?(): void;
|
1120
1148
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
1121
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1149
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1122
1150
|
showIcon: boolean;
|
1123
1151
|
showOutline: boolean;
|
1124
1152
|
initiallyOpen: boolean;
|
@@ -1140,6 +1168,7 @@ declare const _default: {
|
|
1140
1168
|
hideRoot: boolean;
|
1141
1169
|
rootLabel: string;
|
1142
1170
|
rootValue: number;
|
1171
|
+
autoCheckChildren: boolean;
|
1143
1172
|
cascade: boolean;
|
1144
1173
|
selfDisabledAffectChildren: boolean;
|
1145
1174
|
rootCreateTip: string;
|
@@ -1153,7 +1182,7 @@ declare const _default: {
|
|
1153
1182
|
locale?: string | undefined;
|
1154
1183
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1155
1184
|
}>, prevState: Readonly<{}>): any;
|
1156
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1185
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1157
1186
|
showIcon: boolean;
|
1158
1187
|
showOutline: boolean;
|
1159
1188
|
initiallyOpen: boolean;
|
@@ -1175,6 +1204,7 @@ declare const _default: {
|
|
1175
1204
|
hideRoot: boolean;
|
1176
1205
|
rootLabel: string;
|
1177
1206
|
rootValue: number;
|
1207
|
+
autoCheckChildren: boolean;
|
1178
1208
|
cascade: boolean;
|
1179
1209
|
selfDisabledAffectChildren: boolean;
|
1180
1210
|
rootCreateTip: string;
|
@@ -1190,7 +1220,7 @@ declare const _default: {
|
|
1190
1220
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
1191
1221
|
componentWillMount?(): void;
|
1192
1222
|
UNSAFE_componentWillMount?(): void;
|
1193
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1223
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1194
1224
|
showIcon: boolean;
|
1195
1225
|
showOutline: boolean;
|
1196
1226
|
initiallyOpen: boolean;
|
@@ -1212,6 +1242,7 @@ declare const _default: {
|
|
1212
1242
|
hideRoot: boolean;
|
1213
1243
|
rootLabel: string;
|
1214
1244
|
rootValue: number;
|
1245
|
+
autoCheckChildren: boolean;
|
1215
1246
|
cascade: boolean;
|
1216
1247
|
selfDisabledAffectChildren: boolean;
|
1217
1248
|
rootCreateTip: string;
|
@@ -1225,7 +1256,7 @@ declare const _default: {
|
|
1225
1256
|
locale?: string | undefined;
|
1226
1257
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1227
1258
|
}>, nextContext: any): void;
|
1228
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1259
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1229
1260
|
showIcon: boolean;
|
1230
1261
|
showOutline: boolean;
|
1231
1262
|
initiallyOpen: boolean;
|
@@ -1247,6 +1278,7 @@ declare const _default: {
|
|
1247
1278
|
hideRoot: boolean;
|
1248
1279
|
rootLabel: string;
|
1249
1280
|
rootValue: number;
|
1281
|
+
autoCheckChildren: boolean;
|
1250
1282
|
cascade: boolean;
|
1251
1283
|
selfDisabledAffectChildren: boolean;
|
1252
1284
|
rootCreateTip: string;
|
@@ -1260,7 +1292,7 @@ declare const _default: {
|
|
1260
1292
|
locale?: string | undefined;
|
1261
1293
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1262
1294
|
}>, nextContext: any): void;
|
1263
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1295
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1264
1296
|
showIcon: boolean;
|
1265
1297
|
showOutline: boolean;
|
1266
1298
|
initiallyOpen: boolean;
|
@@ -1282,6 +1314,7 @@ declare const _default: {
|
|
1282
1314
|
hideRoot: boolean;
|
1283
1315
|
rootLabel: string;
|
1284
1316
|
rootValue: number;
|
1317
|
+
autoCheckChildren: boolean;
|
1285
1318
|
cascade: boolean;
|
1286
1319
|
selfDisabledAffectChildren: boolean;
|
1287
1320
|
rootCreateTip: string;
|
@@ -1295,7 +1328,7 @@ declare const _default: {
|
|
1295
1328
|
locale?: string | undefined;
|
1296
1329
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1297
1330
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
1298
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1331
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1299
1332
|
showIcon: boolean;
|
1300
1333
|
showOutline: boolean;
|
1301
1334
|
initiallyOpen: boolean;
|
@@ -1317,6 +1350,7 @@ declare const _default: {
|
|
1317
1350
|
hideRoot: boolean;
|
1318
1351
|
rootLabel: string;
|
1319
1352
|
rootValue: number;
|
1353
|
+
autoCheckChildren: boolean;
|
1320
1354
|
cascade: boolean;
|
1321
1355
|
selfDisabledAffectChildren: boolean;
|
1322
1356
|
rootCreateTip: string;
|
@@ -1331,7 +1365,7 @@ declare const _default: {
|
|
1331
1365
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1332
1366
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
1333
1367
|
};
|
1334
|
-
new (props: Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1368
|
+
new (props: Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1335
1369
|
showIcon: boolean;
|
1336
1370
|
showOutline: boolean;
|
1337
1371
|
initiallyOpen: boolean;
|
@@ -1353,6 +1387,7 @@ declare const _default: {
|
|
1353
1387
|
hideRoot: boolean;
|
1354
1388
|
rootLabel: string;
|
1355
1389
|
rootValue: number;
|
1390
|
+
autoCheckChildren: boolean;
|
1356
1391
|
cascade: boolean;
|
1357
1392
|
selfDisabledAffectChildren: boolean;
|
1358
1393
|
rootCreateTip: string;
|
@@ -1368,7 +1403,7 @@ declare const _default: {
|
|
1368
1403
|
}, context: any): {
|
1369
1404
|
render(): JSX.Element;
|
1370
1405
|
context: any;
|
1371
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1406
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1372
1407
|
showIcon: boolean;
|
1373
1408
|
showOutline: boolean;
|
1374
1409
|
initiallyOpen: boolean;
|
@@ -1390,6 +1425,7 @@ declare const _default: {
|
|
1390
1425
|
hideRoot: boolean;
|
1391
1426
|
rootLabel: string;
|
1392
1427
|
rootValue: number;
|
1428
|
+
autoCheckChildren: boolean;
|
1393
1429
|
cascade: boolean;
|
1394
1430
|
selfDisabledAffectChildren: boolean;
|
1395
1431
|
rootCreateTip: string;
|
@@ -1404,7 +1440,7 @@ declare const _default: {
|
|
1404
1440
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1405
1441
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
1406
1442
|
forceUpdate(callback?: (() => void) | undefined): void;
|
1407
|
-
readonly props: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1443
|
+
readonly props: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1408
1444
|
showIcon: boolean;
|
1409
1445
|
showOutline: boolean;
|
1410
1446
|
initiallyOpen: boolean;
|
@@ -1426,6 +1462,7 @@ declare const _default: {
|
|
1426
1462
|
hideRoot: boolean;
|
1427
1463
|
rootLabel: string;
|
1428
1464
|
rootValue: number;
|
1465
|
+
autoCheckChildren: boolean;
|
1429
1466
|
cascade: boolean;
|
1430
1467
|
selfDisabledAffectChildren: boolean;
|
1431
1468
|
rootCreateTip: string;
|
@@ -1446,7 +1483,7 @@ declare const _default: {
|
|
1446
1483
|
[key: string]: React.ReactInstance;
|
1447
1484
|
};
|
1448
1485
|
componentDidMount?(): void;
|
1449
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1486
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1450
1487
|
showIcon: boolean;
|
1451
1488
|
showOutline: boolean;
|
1452
1489
|
initiallyOpen: boolean;
|
@@ -1468,6 +1505,7 @@ declare const _default: {
|
|
1468
1505
|
hideRoot: boolean;
|
1469
1506
|
rootLabel: string;
|
1470
1507
|
rootValue: number;
|
1508
|
+
autoCheckChildren: boolean;
|
1471
1509
|
cascade: boolean;
|
1472
1510
|
selfDisabledAffectChildren: boolean;
|
1473
1511
|
rootCreateTip: string;
|
@@ -1483,7 +1521,7 @@ declare const _default: {
|
|
1483
1521
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
1484
1522
|
componentWillUnmount?(): void;
|
1485
1523
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
1486
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1524
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1487
1525
|
showIcon: boolean;
|
1488
1526
|
showOutline: boolean;
|
1489
1527
|
initiallyOpen: boolean;
|
@@ -1505,6 +1543,7 @@ declare const _default: {
|
|
1505
1543
|
hideRoot: boolean;
|
1506
1544
|
rootLabel: string;
|
1507
1545
|
rootValue: number;
|
1546
|
+
autoCheckChildren: boolean;
|
1508
1547
|
cascade: boolean;
|
1509
1548
|
selfDisabledAffectChildren: boolean;
|
1510
1549
|
rootCreateTip: string;
|
@@ -1518,7 +1557,7 @@ declare const _default: {
|
|
1518
1557
|
locale?: string | undefined;
|
1519
1558
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1520
1559
|
}>, prevState: Readonly<{}>): any;
|
1521
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1560
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1522
1561
|
showIcon: boolean;
|
1523
1562
|
showOutline: boolean;
|
1524
1563
|
initiallyOpen: boolean;
|
@@ -1540,6 +1579,7 @@ declare const _default: {
|
|
1540
1579
|
hideRoot: boolean;
|
1541
1580
|
rootLabel: string;
|
1542
1581
|
rootValue: number;
|
1582
|
+
autoCheckChildren: boolean;
|
1543
1583
|
cascade: boolean;
|
1544
1584
|
selfDisabledAffectChildren: boolean;
|
1545
1585
|
rootCreateTip: string;
|
@@ -1555,7 +1595,7 @@ declare const _default: {
|
|
1555
1595
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
1556
1596
|
componentWillMount?(): void;
|
1557
1597
|
UNSAFE_componentWillMount?(): void;
|
1558
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1598
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1559
1599
|
showIcon: boolean;
|
1560
1600
|
showOutline: boolean;
|
1561
1601
|
initiallyOpen: boolean;
|
@@ -1577,6 +1617,7 @@ declare const _default: {
|
|
1577
1617
|
hideRoot: boolean;
|
1578
1618
|
rootLabel: string;
|
1579
1619
|
rootValue: number;
|
1620
|
+
autoCheckChildren: boolean;
|
1580
1621
|
cascade: boolean;
|
1581
1622
|
selfDisabledAffectChildren: boolean;
|
1582
1623
|
rootCreateTip: string;
|
@@ -1590,7 +1631,7 @@ declare const _default: {
|
|
1590
1631
|
locale?: string | undefined;
|
1591
1632
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1592
1633
|
}>, nextContext: any): void;
|
1593
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1634
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1594
1635
|
showIcon: boolean;
|
1595
1636
|
showOutline: boolean;
|
1596
1637
|
initiallyOpen: boolean;
|
@@ -1612,6 +1653,7 @@ declare const _default: {
|
|
1612
1653
|
hideRoot: boolean;
|
1613
1654
|
rootLabel: string;
|
1614
1655
|
rootValue: number;
|
1656
|
+
autoCheckChildren: boolean;
|
1615
1657
|
cascade: boolean;
|
1616
1658
|
selfDisabledAffectChildren: boolean;
|
1617
1659
|
rootCreateTip: string;
|
@@ -1625,7 +1667,7 @@ declare const _default: {
|
|
1625
1667
|
locale?: string | undefined;
|
1626
1668
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1627
1669
|
}>, nextContext: any): void;
|
1628
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1670
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1629
1671
|
showIcon: boolean;
|
1630
1672
|
showOutline: boolean;
|
1631
1673
|
initiallyOpen: boolean;
|
@@ -1647,6 +1689,7 @@ declare const _default: {
|
|
1647
1689
|
hideRoot: boolean;
|
1648
1690
|
rootLabel: string;
|
1649
1691
|
rootValue: number;
|
1692
|
+
autoCheckChildren: boolean;
|
1650
1693
|
cascade: boolean;
|
1651
1694
|
selfDisabledAffectChildren: boolean;
|
1652
1695
|
rootCreateTip: string;
|
@@ -1660,7 +1703,7 @@ declare const _default: {
|
|
1660
1703
|
locale?: string | undefined;
|
1661
1704
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1662
1705
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
1663
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1706
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1664
1707
|
showIcon: boolean;
|
1665
1708
|
showOutline: boolean;
|
1666
1709
|
initiallyOpen: boolean;
|
@@ -1682,6 +1725,7 @@ declare const _default: {
|
|
1682
1725
|
hideRoot: boolean;
|
1683
1726
|
rootLabel: string;
|
1684
1727
|
rootValue: number;
|
1728
|
+
autoCheckChildren: boolean;
|
1685
1729
|
cascade: boolean;
|
1686
1730
|
selfDisabledAffectChildren: boolean;
|
1687
1731
|
rootCreateTip: string;
|
@@ -1703,7 +1747,7 @@ declare const _default: {
|
|
1703
1747
|
ComposedComponent: typeof TreeSelector;
|
1704
1748
|
}>;
|
1705
1749
|
} & import("hoist-non-react-statics").NonReactStatics<{
|
1706
|
-
new (props: (Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1750
|
+
new (props: (Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1707
1751
|
showIcon: boolean;
|
1708
1752
|
showOutline: boolean;
|
1709
1753
|
initiallyOpen: boolean;
|
@@ -1725,6 +1769,7 @@ declare const _default: {
|
|
1725
1769
|
hideRoot: boolean;
|
1726
1770
|
rootLabel: string;
|
1727
1771
|
rootValue: number;
|
1772
|
+
autoCheckChildren: boolean;
|
1728
1773
|
cascade: boolean;
|
1729
1774
|
selfDisabledAffectChildren: boolean;
|
1730
1775
|
rootCreateTip: string;
|
@@ -1737,7 +1782,7 @@ declare const _default: {
|
|
1737
1782
|
}, never>> & {
|
1738
1783
|
locale?: string | undefined;
|
1739
1784
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1740
|
-
}) | Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1785
|
+
}) | Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1741
1786
|
showIcon: boolean;
|
1742
1787
|
showOutline: boolean;
|
1743
1788
|
initiallyOpen: boolean;
|
@@ -1759,6 +1804,7 @@ declare const _default: {
|
|
1759
1804
|
hideRoot: boolean;
|
1760
1805
|
rootLabel: string;
|
1761
1806
|
rootValue: number;
|
1807
|
+
autoCheckChildren: boolean;
|
1762
1808
|
cascade: boolean;
|
1763
1809
|
selfDisabledAffectChildren: boolean;
|
1764
1810
|
rootCreateTip: string;
|
@@ -1774,7 +1820,7 @@ declare const _default: {
|
|
1774
1820
|
}>): {
|
1775
1821
|
render(): JSX.Element;
|
1776
1822
|
context: any;
|
1777
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1823
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1778
1824
|
showIcon: boolean;
|
1779
1825
|
showOutline: boolean;
|
1780
1826
|
initiallyOpen: boolean;
|
@@ -1796,6 +1842,7 @@ declare const _default: {
|
|
1796
1842
|
hideRoot: boolean;
|
1797
1843
|
rootLabel: string;
|
1798
1844
|
rootValue: number;
|
1845
|
+
autoCheckChildren: boolean;
|
1799
1846
|
cascade: boolean;
|
1800
1847
|
selfDisabledAffectChildren: boolean;
|
1801
1848
|
rootCreateTip: string;
|
@@ -1810,7 +1857,7 @@ declare const _default: {
|
|
1810
1857
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1811
1858
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
1812
1859
|
forceUpdate(callback?: (() => void) | undefined): void;
|
1813
|
-
readonly props: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1860
|
+
readonly props: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1814
1861
|
showIcon: boolean;
|
1815
1862
|
showOutline: boolean;
|
1816
1863
|
initiallyOpen: boolean;
|
@@ -1832,6 +1879,7 @@ declare const _default: {
|
|
1832
1879
|
hideRoot: boolean;
|
1833
1880
|
rootLabel: string;
|
1834
1881
|
rootValue: number;
|
1882
|
+
autoCheckChildren: boolean;
|
1835
1883
|
cascade: boolean;
|
1836
1884
|
selfDisabledAffectChildren: boolean;
|
1837
1885
|
rootCreateTip: string;
|
@@ -1852,7 +1900,7 @@ declare const _default: {
|
|
1852
1900
|
[key: string]: React.ReactInstance;
|
1853
1901
|
};
|
1854
1902
|
componentDidMount?(): void;
|
1855
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1903
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1856
1904
|
showIcon: boolean;
|
1857
1905
|
showOutline: boolean;
|
1858
1906
|
initiallyOpen: boolean;
|
@@ -1874,6 +1922,7 @@ declare const _default: {
|
|
1874
1922
|
hideRoot: boolean;
|
1875
1923
|
rootLabel: string;
|
1876
1924
|
rootValue: number;
|
1925
|
+
autoCheckChildren: boolean;
|
1877
1926
|
cascade: boolean;
|
1878
1927
|
selfDisabledAffectChildren: boolean;
|
1879
1928
|
rootCreateTip: string;
|
@@ -1889,7 +1938,7 @@ declare const _default: {
|
|
1889
1938
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
1890
1939
|
componentWillUnmount?(): void;
|
1891
1940
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
1892
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1941
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1893
1942
|
showIcon: boolean;
|
1894
1943
|
showOutline: boolean;
|
1895
1944
|
initiallyOpen: boolean;
|
@@ -1911,6 +1960,7 @@ declare const _default: {
|
|
1911
1960
|
hideRoot: boolean;
|
1912
1961
|
rootLabel: string;
|
1913
1962
|
rootValue: number;
|
1963
|
+
autoCheckChildren: boolean;
|
1914
1964
|
cascade: boolean;
|
1915
1965
|
selfDisabledAffectChildren: boolean;
|
1916
1966
|
rootCreateTip: string;
|
@@ -1924,7 +1974,7 @@ declare const _default: {
|
|
1924
1974
|
locale?: string | undefined;
|
1925
1975
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1926
1976
|
}>, prevState: Readonly<{}>): any;
|
1927
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1977
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1928
1978
|
showIcon: boolean;
|
1929
1979
|
showOutline: boolean;
|
1930
1980
|
initiallyOpen: boolean;
|
@@ -1946,6 +1996,7 @@ declare const _default: {
|
|
1946
1996
|
hideRoot: boolean;
|
1947
1997
|
rootLabel: string;
|
1948
1998
|
rootValue: number;
|
1999
|
+
autoCheckChildren: boolean;
|
1949
2000
|
cascade: boolean;
|
1950
2001
|
selfDisabledAffectChildren: boolean;
|
1951
2002
|
rootCreateTip: string;
|
@@ -1961,7 +2012,7 @@ declare const _default: {
|
|
1961
2012
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
1962
2013
|
componentWillMount?(): void;
|
1963
2014
|
UNSAFE_componentWillMount?(): void;
|
1964
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2015
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
1965
2016
|
showIcon: boolean;
|
1966
2017
|
showOutline: boolean;
|
1967
2018
|
initiallyOpen: boolean;
|
@@ -1983,6 +2034,7 @@ declare const _default: {
|
|
1983
2034
|
hideRoot: boolean;
|
1984
2035
|
rootLabel: string;
|
1985
2036
|
rootValue: number;
|
2037
|
+
autoCheckChildren: boolean;
|
1986
2038
|
cascade: boolean;
|
1987
2039
|
selfDisabledAffectChildren: boolean;
|
1988
2040
|
rootCreateTip: string;
|
@@ -1996,7 +2048,7 @@ declare const _default: {
|
|
1996
2048
|
locale?: string | undefined;
|
1997
2049
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
1998
2050
|
}>, nextContext: any): void;
|
1999
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2051
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2000
2052
|
showIcon: boolean;
|
2001
2053
|
showOutline: boolean;
|
2002
2054
|
initiallyOpen: boolean;
|
@@ -2018,6 +2070,7 @@ declare const _default: {
|
|
2018
2070
|
hideRoot: boolean;
|
2019
2071
|
rootLabel: string;
|
2020
2072
|
rootValue: number;
|
2073
|
+
autoCheckChildren: boolean;
|
2021
2074
|
cascade: boolean;
|
2022
2075
|
selfDisabledAffectChildren: boolean;
|
2023
2076
|
rootCreateTip: string;
|
@@ -2031,7 +2084,7 @@ declare const _default: {
|
|
2031
2084
|
locale?: string | undefined;
|
2032
2085
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
2033
2086
|
}>, nextContext: any): void;
|
2034
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2087
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2035
2088
|
showIcon: boolean;
|
2036
2089
|
showOutline: boolean;
|
2037
2090
|
initiallyOpen: boolean;
|
@@ -2053,6 +2106,7 @@ declare const _default: {
|
|
2053
2106
|
hideRoot: boolean;
|
2054
2107
|
rootLabel: string;
|
2055
2108
|
rootValue: number;
|
2109
|
+
autoCheckChildren: boolean;
|
2056
2110
|
cascade: boolean;
|
2057
2111
|
selfDisabledAffectChildren: boolean;
|
2058
2112
|
rootCreateTip: string;
|
@@ -2066,7 +2120,7 @@ declare const _default: {
|
|
2066
2120
|
locale?: string | undefined;
|
2067
2121
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
2068
2122
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
2069
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2123
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2070
2124
|
showIcon: boolean;
|
2071
2125
|
showOutline: boolean;
|
2072
2126
|
initiallyOpen: boolean;
|
@@ -2088,6 +2142,7 @@ declare const _default: {
|
|
2088
2142
|
hideRoot: boolean;
|
2089
2143
|
rootLabel: string;
|
2090
2144
|
rootValue: number;
|
2145
|
+
autoCheckChildren: boolean;
|
2091
2146
|
cascade: boolean;
|
2092
2147
|
selfDisabledAffectChildren: boolean;
|
2093
2148
|
rootCreateTip: string;
|
@@ -2102,7 +2157,7 @@ declare const _default: {
|
|
2102
2157
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
2103
2158
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
2104
2159
|
};
|
2105
|
-
new (props: Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2160
|
+
new (props: Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2106
2161
|
showIcon: boolean;
|
2107
2162
|
showOutline: boolean;
|
2108
2163
|
initiallyOpen: boolean;
|
@@ -2124,6 +2179,7 @@ declare const _default: {
|
|
2124
2179
|
hideRoot: boolean;
|
2125
2180
|
rootLabel: string;
|
2126
2181
|
rootValue: number;
|
2182
|
+
autoCheckChildren: boolean;
|
2127
2183
|
cascade: boolean;
|
2128
2184
|
selfDisabledAffectChildren: boolean;
|
2129
2185
|
rootCreateTip: string;
|
@@ -2139,7 +2195,7 @@ declare const _default: {
|
|
2139
2195
|
}, context: any): {
|
2140
2196
|
render(): JSX.Element;
|
2141
2197
|
context: any;
|
2142
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2198
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2143
2199
|
showIcon: boolean;
|
2144
2200
|
showOutline: boolean;
|
2145
2201
|
initiallyOpen: boolean;
|
@@ -2161,6 +2217,7 @@ declare const _default: {
|
|
2161
2217
|
hideRoot: boolean;
|
2162
2218
|
rootLabel: string;
|
2163
2219
|
rootValue: number;
|
2220
|
+
autoCheckChildren: boolean;
|
2164
2221
|
cascade: boolean;
|
2165
2222
|
selfDisabledAffectChildren: boolean;
|
2166
2223
|
rootCreateTip: string;
|
@@ -2175,7 +2232,7 @@ declare const _default: {
|
|
2175
2232
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
2176
2233
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
2177
2234
|
forceUpdate(callback?: (() => void) | undefined): void;
|
2178
|
-
readonly props: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2235
|
+
readonly props: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2179
2236
|
showIcon: boolean;
|
2180
2237
|
showOutline: boolean;
|
2181
2238
|
initiallyOpen: boolean;
|
@@ -2197,6 +2254,7 @@ declare const _default: {
|
|
2197
2254
|
hideRoot: boolean;
|
2198
2255
|
rootLabel: string;
|
2199
2256
|
rootValue: number;
|
2257
|
+
autoCheckChildren: boolean;
|
2200
2258
|
cascade: boolean;
|
2201
2259
|
selfDisabledAffectChildren: boolean;
|
2202
2260
|
rootCreateTip: string;
|
@@ -2217,7 +2275,7 @@ declare const _default: {
|
|
2217
2275
|
[key: string]: React.ReactInstance;
|
2218
2276
|
};
|
2219
2277
|
componentDidMount?(): void;
|
2220
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2278
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2221
2279
|
showIcon: boolean;
|
2222
2280
|
showOutline: boolean;
|
2223
2281
|
initiallyOpen: boolean;
|
@@ -2239,6 +2297,7 @@ declare const _default: {
|
|
2239
2297
|
hideRoot: boolean;
|
2240
2298
|
rootLabel: string;
|
2241
2299
|
rootValue: number;
|
2300
|
+
autoCheckChildren: boolean;
|
2242
2301
|
cascade: boolean;
|
2243
2302
|
selfDisabledAffectChildren: boolean;
|
2244
2303
|
rootCreateTip: string;
|
@@ -2254,7 +2313,7 @@ declare const _default: {
|
|
2254
2313
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
2255
2314
|
componentWillUnmount?(): void;
|
2256
2315
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
2257
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2316
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2258
2317
|
showIcon: boolean;
|
2259
2318
|
showOutline: boolean;
|
2260
2319
|
initiallyOpen: boolean;
|
@@ -2276,6 +2335,7 @@ declare const _default: {
|
|
2276
2335
|
hideRoot: boolean;
|
2277
2336
|
rootLabel: string;
|
2278
2337
|
rootValue: number;
|
2338
|
+
autoCheckChildren: boolean;
|
2279
2339
|
cascade: boolean;
|
2280
2340
|
selfDisabledAffectChildren: boolean;
|
2281
2341
|
rootCreateTip: string;
|
@@ -2289,7 +2349,7 @@ declare const _default: {
|
|
2289
2349
|
locale?: string | undefined;
|
2290
2350
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
2291
2351
|
}>, prevState: Readonly<{}>): any;
|
2292
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2352
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2293
2353
|
showIcon: boolean;
|
2294
2354
|
showOutline: boolean;
|
2295
2355
|
initiallyOpen: boolean;
|
@@ -2311,6 +2371,7 @@ declare const _default: {
|
|
2311
2371
|
hideRoot: boolean;
|
2312
2372
|
rootLabel: string;
|
2313
2373
|
rootValue: number;
|
2374
|
+
autoCheckChildren: boolean;
|
2314
2375
|
cascade: boolean;
|
2315
2376
|
selfDisabledAffectChildren: boolean;
|
2316
2377
|
rootCreateTip: string;
|
@@ -2326,7 +2387,7 @@ declare const _default: {
|
|
2326
2387
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
2327
2388
|
componentWillMount?(): void;
|
2328
2389
|
UNSAFE_componentWillMount?(): void;
|
2329
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2390
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2330
2391
|
showIcon: boolean;
|
2331
2392
|
showOutline: boolean;
|
2332
2393
|
initiallyOpen: boolean;
|
@@ -2348,6 +2409,7 @@ declare const _default: {
|
|
2348
2409
|
hideRoot: boolean;
|
2349
2410
|
rootLabel: string;
|
2350
2411
|
rootValue: number;
|
2412
|
+
autoCheckChildren: boolean;
|
2351
2413
|
cascade: boolean;
|
2352
2414
|
selfDisabledAffectChildren: boolean;
|
2353
2415
|
rootCreateTip: string;
|
@@ -2361,7 +2423,7 @@ declare const _default: {
|
|
2361
2423
|
locale?: string | undefined;
|
2362
2424
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
2363
2425
|
}>, nextContext: any): void;
|
2364
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2426
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2365
2427
|
showIcon: boolean;
|
2366
2428
|
showOutline: boolean;
|
2367
2429
|
initiallyOpen: boolean;
|
@@ -2383,6 +2445,7 @@ declare const _default: {
|
|
2383
2445
|
hideRoot: boolean;
|
2384
2446
|
rootLabel: string;
|
2385
2447
|
rootValue: number;
|
2448
|
+
autoCheckChildren: boolean;
|
2386
2449
|
cascade: boolean;
|
2387
2450
|
selfDisabledAffectChildren: boolean;
|
2388
2451
|
rootCreateTip: string;
|
@@ -2396,7 +2459,7 @@ declare const _default: {
|
|
2396
2459
|
locale?: string | undefined;
|
2397
2460
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
2398
2461
|
}>, nextContext: any): void;
|
2399
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2462
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2400
2463
|
showIcon: boolean;
|
2401
2464
|
showOutline: boolean;
|
2402
2465
|
initiallyOpen: boolean;
|
@@ -2418,6 +2481,7 @@ declare const _default: {
|
|
2418
2481
|
hideRoot: boolean;
|
2419
2482
|
rootLabel: string;
|
2420
2483
|
rootValue: number;
|
2484
|
+
autoCheckChildren: boolean;
|
2421
2485
|
cascade: boolean;
|
2422
2486
|
selfDisabledAffectChildren: boolean;
|
2423
2487
|
rootCreateTip: string;
|
@@ -2431,7 +2495,7 @@ declare const _default: {
|
|
2431
2495
|
locale?: string | undefined;
|
2432
2496
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
2433
2497
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
2434
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2498
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2435
2499
|
showIcon: boolean;
|
2436
2500
|
showOutline: boolean;
|
2437
2501
|
initiallyOpen: boolean;
|
@@ -2453,6 +2517,7 @@ declare const _default: {
|
|
2453
2517
|
hideRoot: boolean;
|
2454
2518
|
rootLabel: string;
|
2455
2519
|
rootValue: number;
|
2520
|
+
autoCheckChildren: boolean;
|
2456
2521
|
cascade: boolean;
|
2457
2522
|
selfDisabledAffectChildren: boolean;
|
2458
2523
|
rootCreateTip: string;
|
@@ -2474,7 +2539,7 @@ declare const _default: {
|
|
2474
2539
|
ComposedComponent: typeof TreeSelector;
|
2475
2540
|
}, {}> & {
|
2476
2541
|
ComposedComponent: {
|
2477
|
-
new (props: (Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2542
|
+
new (props: (Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2478
2543
|
showIcon: boolean;
|
2479
2544
|
showOutline: boolean;
|
2480
2545
|
initiallyOpen: boolean;
|
@@ -2496,6 +2561,7 @@ declare const _default: {
|
|
2496
2561
|
hideRoot: boolean;
|
2497
2562
|
rootLabel: string;
|
2498
2563
|
rootValue: number;
|
2564
|
+
autoCheckChildren: boolean;
|
2499
2565
|
cascade: boolean;
|
2500
2566
|
selfDisabledAffectChildren: boolean;
|
2501
2567
|
rootCreateTip: string;
|
@@ -2508,7 +2574,7 @@ declare const _default: {
|
|
2508
2574
|
}, never>> & {
|
2509
2575
|
locale?: string | undefined;
|
2510
2576
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
2511
|
-
}) | Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2577
|
+
}) | Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2512
2578
|
showIcon: boolean;
|
2513
2579
|
showOutline: boolean;
|
2514
2580
|
initiallyOpen: boolean;
|
@@ -2530,6 +2596,7 @@ declare const _default: {
|
|
2530
2596
|
hideRoot: boolean;
|
2531
2597
|
rootLabel: string;
|
2532
2598
|
rootValue: number;
|
2599
|
+
autoCheckChildren: boolean;
|
2533
2600
|
cascade: boolean;
|
2534
2601
|
selfDisabledAffectChildren: boolean;
|
2535
2602
|
rootCreateTip: string;
|
@@ -2545,7 +2612,7 @@ declare const _default: {
|
|
2545
2612
|
}>): {
|
2546
2613
|
render(): JSX.Element;
|
2547
2614
|
context: any;
|
2548
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2615
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2549
2616
|
showIcon: boolean;
|
2550
2617
|
showOutline: boolean;
|
2551
2618
|
initiallyOpen: boolean;
|
@@ -2567,6 +2634,7 @@ declare const _default: {
|
|
2567
2634
|
hideRoot: boolean;
|
2568
2635
|
rootLabel: string;
|
2569
2636
|
rootValue: number;
|
2637
|
+
autoCheckChildren: boolean;
|
2570
2638
|
cascade: boolean;
|
2571
2639
|
selfDisabledAffectChildren: boolean;
|
2572
2640
|
rootCreateTip: string;
|
@@ -2581,7 +2649,7 @@ declare const _default: {
|
|
2581
2649
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
2582
2650
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
2583
2651
|
forceUpdate(callback?: (() => void) | undefined): void;
|
2584
|
-
readonly props: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2652
|
+
readonly props: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2585
2653
|
showIcon: boolean;
|
2586
2654
|
showOutline: boolean;
|
2587
2655
|
initiallyOpen: boolean;
|
@@ -2603,6 +2671,7 @@ declare const _default: {
|
|
2603
2671
|
hideRoot: boolean;
|
2604
2672
|
rootLabel: string;
|
2605
2673
|
rootValue: number;
|
2674
|
+
autoCheckChildren: boolean;
|
2606
2675
|
cascade: boolean;
|
2607
2676
|
selfDisabledAffectChildren: boolean;
|
2608
2677
|
rootCreateTip: string;
|
@@ -2623,7 +2692,7 @@ declare const _default: {
|
|
2623
2692
|
[key: string]: React.ReactInstance;
|
2624
2693
|
};
|
2625
2694
|
componentDidMount?(): void;
|
2626
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2695
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2627
2696
|
showIcon: boolean;
|
2628
2697
|
showOutline: boolean;
|
2629
2698
|
initiallyOpen: boolean;
|
@@ -2645,6 +2714,7 @@ declare const _default: {
|
|
2645
2714
|
hideRoot: boolean;
|
2646
2715
|
rootLabel: string;
|
2647
2716
|
rootValue: number;
|
2717
|
+
autoCheckChildren: boolean;
|
2648
2718
|
cascade: boolean;
|
2649
2719
|
selfDisabledAffectChildren: boolean;
|
2650
2720
|
rootCreateTip: string;
|
@@ -2660,7 +2730,7 @@ declare const _default: {
|
|
2660
2730
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
2661
2731
|
componentWillUnmount?(): void;
|
2662
2732
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
2663
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2733
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2664
2734
|
showIcon: boolean;
|
2665
2735
|
showOutline: boolean;
|
2666
2736
|
initiallyOpen: boolean;
|
@@ -2682,6 +2752,7 @@ declare const _default: {
|
|
2682
2752
|
hideRoot: boolean;
|
2683
2753
|
rootLabel: string;
|
2684
2754
|
rootValue: number;
|
2755
|
+
autoCheckChildren: boolean;
|
2685
2756
|
cascade: boolean;
|
2686
2757
|
selfDisabledAffectChildren: boolean;
|
2687
2758
|
rootCreateTip: string;
|
@@ -2695,7 +2766,7 @@ declare const _default: {
|
|
2695
2766
|
locale?: string | undefined;
|
2696
2767
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
2697
2768
|
}>, prevState: Readonly<{}>): any;
|
2698
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2769
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2699
2770
|
showIcon: boolean;
|
2700
2771
|
showOutline: boolean;
|
2701
2772
|
initiallyOpen: boolean;
|
@@ -2717,6 +2788,7 @@ declare const _default: {
|
|
2717
2788
|
hideRoot: boolean;
|
2718
2789
|
rootLabel: string;
|
2719
2790
|
rootValue: number;
|
2791
|
+
autoCheckChildren: boolean;
|
2720
2792
|
cascade: boolean;
|
2721
2793
|
selfDisabledAffectChildren: boolean;
|
2722
2794
|
rootCreateTip: string;
|
@@ -2732,7 +2804,7 @@ declare const _default: {
|
|
2732
2804
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
2733
2805
|
componentWillMount?(): void;
|
2734
2806
|
UNSAFE_componentWillMount?(): void;
|
2735
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2807
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2736
2808
|
showIcon: boolean;
|
2737
2809
|
showOutline: boolean;
|
2738
2810
|
initiallyOpen: boolean;
|
@@ -2754,6 +2826,7 @@ declare const _default: {
|
|
2754
2826
|
hideRoot: boolean;
|
2755
2827
|
rootLabel: string;
|
2756
2828
|
rootValue: number;
|
2829
|
+
autoCheckChildren: boolean;
|
2757
2830
|
cascade: boolean;
|
2758
2831
|
selfDisabledAffectChildren: boolean;
|
2759
2832
|
rootCreateTip: string;
|
@@ -2767,7 +2840,7 @@ declare const _default: {
|
|
2767
2840
|
locale?: string | undefined;
|
2768
2841
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
2769
2842
|
}>, nextContext: any): void;
|
2770
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2843
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2771
2844
|
showIcon: boolean;
|
2772
2845
|
showOutline: boolean;
|
2773
2846
|
initiallyOpen: boolean;
|
@@ -2789,6 +2862,7 @@ declare const _default: {
|
|
2789
2862
|
hideRoot: boolean;
|
2790
2863
|
rootLabel: string;
|
2791
2864
|
rootValue: number;
|
2865
|
+
autoCheckChildren: boolean;
|
2792
2866
|
cascade: boolean;
|
2793
2867
|
selfDisabledAffectChildren: boolean;
|
2794
2868
|
rootCreateTip: string;
|
@@ -2802,7 +2876,7 @@ declare const _default: {
|
|
2802
2876
|
locale?: string | undefined;
|
2803
2877
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
2804
2878
|
}>, nextContext: any): void;
|
2805
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2879
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2806
2880
|
showIcon: boolean;
|
2807
2881
|
showOutline: boolean;
|
2808
2882
|
initiallyOpen: boolean;
|
@@ -2824,6 +2898,7 @@ declare const _default: {
|
|
2824
2898
|
hideRoot: boolean;
|
2825
2899
|
rootLabel: string;
|
2826
2900
|
rootValue: number;
|
2901
|
+
autoCheckChildren: boolean;
|
2827
2902
|
cascade: boolean;
|
2828
2903
|
selfDisabledAffectChildren: boolean;
|
2829
2904
|
rootCreateTip: string;
|
@@ -2837,7 +2912,7 @@ declare const _default: {
|
|
2837
2912
|
locale?: string | undefined;
|
2838
2913
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
2839
2914
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
2840
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2915
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2841
2916
|
showIcon: boolean;
|
2842
2917
|
showOutline: boolean;
|
2843
2918
|
initiallyOpen: boolean;
|
@@ -2859,6 +2934,7 @@ declare const _default: {
|
|
2859
2934
|
hideRoot: boolean;
|
2860
2935
|
rootLabel: string;
|
2861
2936
|
rootValue: number;
|
2937
|
+
autoCheckChildren: boolean;
|
2862
2938
|
cascade: boolean;
|
2863
2939
|
selfDisabledAffectChildren: boolean;
|
2864
2940
|
rootCreateTip: string;
|
@@ -2873,7 +2949,7 @@ declare const _default: {
|
|
2873
2949
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
2874
2950
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
2875
2951
|
};
|
2876
|
-
new (props: Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2952
|
+
new (props: Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2877
2953
|
showIcon: boolean;
|
2878
2954
|
showOutline: boolean;
|
2879
2955
|
initiallyOpen: boolean;
|
@@ -2895,6 +2971,7 @@ declare const _default: {
|
|
2895
2971
|
hideRoot: boolean;
|
2896
2972
|
rootLabel: string;
|
2897
2973
|
rootValue: number;
|
2974
|
+
autoCheckChildren: boolean;
|
2898
2975
|
cascade: boolean;
|
2899
2976
|
selfDisabledAffectChildren: boolean;
|
2900
2977
|
rootCreateTip: string;
|
@@ -2910,7 +2987,7 @@ declare const _default: {
|
|
2910
2987
|
}, context: any): {
|
2911
2988
|
render(): JSX.Element;
|
2912
2989
|
context: any;
|
2913
|
-
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2990
|
+
setState<K_1 extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2914
2991
|
showIcon: boolean;
|
2915
2992
|
showOutline: boolean;
|
2916
2993
|
initiallyOpen: boolean;
|
@@ -2932,6 +3009,7 @@ declare const _default: {
|
|
2932
3009
|
hideRoot: boolean;
|
2933
3010
|
rootLabel: string;
|
2934
3011
|
rootValue: number;
|
3012
|
+
autoCheckChildren: boolean;
|
2935
3013
|
cascade: boolean;
|
2936
3014
|
selfDisabledAffectChildren: boolean;
|
2937
3015
|
rootCreateTip: string;
|
@@ -2946,7 +3024,7 @@ declare const _default: {
|
|
2946
3024
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
2947
3025
|
}>) => {} | Pick<{}, K_1> | null) | Pick<{}, K_1> | null, callback?: (() => void) | undefined): void;
|
2948
3026
|
forceUpdate(callback?: (() => void) | undefined): void;
|
2949
|
-
readonly props: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
3027
|
+
readonly props: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2950
3028
|
showIcon: boolean;
|
2951
3029
|
showOutline: boolean;
|
2952
3030
|
initiallyOpen: boolean;
|
@@ -2968,6 +3046,7 @@ declare const _default: {
|
|
2968
3046
|
hideRoot: boolean;
|
2969
3047
|
rootLabel: string;
|
2970
3048
|
rootValue: number;
|
3049
|
+
autoCheckChildren: boolean;
|
2971
3050
|
cascade: boolean;
|
2972
3051
|
selfDisabledAffectChildren: boolean;
|
2973
3052
|
rootCreateTip: string;
|
@@ -2988,7 +3067,7 @@ declare const _default: {
|
|
2988
3067
|
[key: string]: React.ReactInstance;
|
2989
3068
|
};
|
2990
3069
|
componentDidMount?(): void;
|
2991
|
-
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
3070
|
+
shouldComponentUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
2992
3071
|
showIcon: boolean;
|
2993
3072
|
showOutline: boolean;
|
2994
3073
|
initiallyOpen: boolean;
|
@@ -3010,6 +3089,7 @@ declare const _default: {
|
|
3010
3089
|
hideRoot: boolean;
|
3011
3090
|
rootLabel: string;
|
3012
3091
|
rootValue: number;
|
3092
|
+
autoCheckChildren: boolean;
|
3013
3093
|
cascade: boolean;
|
3014
3094
|
selfDisabledAffectChildren: boolean;
|
3015
3095
|
rootCreateTip: string;
|
@@ -3025,7 +3105,7 @@ declare const _default: {
|
|
3025
3105
|
}>, nextState: Readonly<{}>, nextContext: any): boolean;
|
3026
3106
|
componentWillUnmount?(): void;
|
3027
3107
|
componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
|
3028
|
-
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
3108
|
+
getSnapshotBeforeUpdate?(prevProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
3029
3109
|
showIcon: boolean;
|
3030
3110
|
showOutline: boolean;
|
3031
3111
|
initiallyOpen: boolean;
|
@@ -3047,6 +3127,7 @@ declare const _default: {
|
|
3047
3127
|
hideRoot: boolean;
|
3048
3128
|
rootLabel: string;
|
3049
3129
|
rootValue: number;
|
3130
|
+
autoCheckChildren: boolean;
|
3050
3131
|
cascade: boolean;
|
3051
3132
|
selfDisabledAffectChildren: boolean;
|
3052
3133
|
rootCreateTip: string;
|
@@ -3060,7 +3141,7 @@ declare const _default: {
|
|
3060
3141
|
locale?: string | undefined;
|
3061
3142
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
3062
3143
|
}>, prevState: Readonly<{}>): any;
|
3063
|
-
componentDidUpdate?(prevProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
3144
|
+
componentDidUpdate?(prevProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
3064
3145
|
showIcon: boolean;
|
3065
3146
|
showOutline: boolean;
|
3066
3147
|
initiallyOpen: boolean;
|
@@ -3082,6 +3163,7 @@ declare const _default: {
|
|
3082
3163
|
hideRoot: boolean;
|
3083
3164
|
rootLabel: string;
|
3084
3165
|
rootValue: number;
|
3166
|
+
autoCheckChildren: boolean;
|
3085
3167
|
cascade: boolean;
|
3086
3168
|
selfDisabledAffectChildren: boolean;
|
3087
3169
|
rootCreateTip: string;
|
@@ -3097,7 +3179,7 @@ declare const _default: {
|
|
3097
3179
|
}>, prevState: Readonly<{}>, snapshot?: any): void;
|
3098
3180
|
componentWillMount?(): void;
|
3099
3181
|
UNSAFE_componentWillMount?(): void;
|
3100
|
-
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
3182
|
+
componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
3101
3183
|
showIcon: boolean;
|
3102
3184
|
showOutline: boolean;
|
3103
3185
|
initiallyOpen: boolean;
|
@@ -3119,6 +3201,7 @@ declare const _default: {
|
|
3119
3201
|
hideRoot: boolean;
|
3120
3202
|
rootLabel: string;
|
3121
3203
|
rootValue: number;
|
3204
|
+
autoCheckChildren: boolean;
|
3122
3205
|
cascade: boolean;
|
3123
3206
|
selfDisabledAffectChildren: boolean;
|
3124
3207
|
rootCreateTip: string;
|
@@ -3132,7 +3215,7 @@ declare const _default: {
|
|
3132
3215
|
locale?: string | undefined;
|
3133
3216
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
3134
3217
|
}>, nextContext: any): void;
|
3135
|
-
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
3218
|
+
UNSAFE_componentWillReceiveProps?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
3136
3219
|
showIcon: boolean;
|
3137
3220
|
showOutline: boolean;
|
3138
3221
|
initiallyOpen: boolean;
|
@@ -3154,6 +3237,7 @@ declare const _default: {
|
|
3154
3237
|
hideRoot: boolean;
|
3155
3238
|
rootLabel: string;
|
3156
3239
|
rootValue: number;
|
3240
|
+
autoCheckChildren: boolean;
|
3157
3241
|
cascade: boolean;
|
3158
3242
|
selfDisabledAffectChildren: boolean;
|
3159
3243
|
rootCreateTip: string;
|
@@ -3167,7 +3251,7 @@ declare const _default: {
|
|
3167
3251
|
locale?: string | undefined;
|
3168
3252
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
3169
3253
|
}>, nextContext: any): void;
|
3170
|
-
componentWillUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
3254
|
+
componentWillUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
3171
3255
|
showIcon: boolean;
|
3172
3256
|
showOutline: boolean;
|
3173
3257
|
initiallyOpen: boolean;
|
@@ -3189,6 +3273,7 @@ declare const _default: {
|
|
3189
3273
|
hideRoot: boolean;
|
3190
3274
|
rootLabel: string;
|
3191
3275
|
rootValue: number;
|
3276
|
+
autoCheckChildren: boolean;
|
3192
3277
|
cascade: boolean;
|
3193
3278
|
selfDisabledAffectChildren: boolean;
|
3194
3279
|
rootCreateTip: string;
|
@@ -3202,7 +3287,7 @@ declare const _default: {
|
|
3202
3287
|
locale?: string | undefined;
|
3203
3288
|
translate?: ((str: string, ...args: any[]) => string) | undefined;
|
3204
3289
|
}>, nextState: Readonly<{}>, nextContext: any): void;
|
3205
|
-
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
3290
|
+
UNSAFE_componentWillUpdate?(nextProps: Readonly<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "classPrefix" | "classnames" | "className" | "theme" | "value" | "maxLength" | "minLength" | "onEdit" | "onAdd" | "onDelete" | "options" | "placeholder" | "draggable" | "onChange" | "itemClassName" | "removable" | "creatable" | "editable" | "onRef" | "onlyLeaf" | "rootCreatable" | "onDeferLoad" | "highlightTxt" | "bultinCUD" | "onExpandTree" | "onMove"> & Partial<Pick<Omit<TreeSelectorProps, keyof LocaleProps>, "disabled" | "multiple" | "showIcon" | "delimiter" | "valueField" | "labelField" | "joinValues" | "extractValue" | "hideRoot" | "rootLabel" | "rootValue" | "cascade" | "withChildren" | "onlyChildren" | "enableNodePath" | "pathSeparator" | "autoCheckChildren" | "showOutline" | "unfoldedField" | "foldedField" | "initiallyOpen" | "unfoldedLevel" | "showRadio" | "iconField" | "disabledField" | "nodePath" | "selfDisabledAffectChildren" | "rootCreateTip" | "createTip" | "editTip" | "removeTip">> & Partial<Pick<{
|
3206
3291
|
showIcon: boolean;
|
3207
3292
|
showOutline: boolean;
|
3208
3293
|
initiallyOpen: boolean;
|
@@ -3224,6 +3309,7 @@ declare const _default: {
|
|
3224
3309
|
hideRoot: boolean;
|
3225
3310
|
rootLabel: string;
|
3226
3311
|
rootValue: number;
|
3312
|
+
autoCheckChildren: boolean;
|
3227
3313
|
cascade: boolean;
|
3228
3314
|
selfDisabledAffectChildren: boolean;
|
3229
3315
|
rootCreateTip: string;
|