guava-ui 0.2.8 → 0.3.0
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/README.md +16 -0
- package/lib/guava-ui.es.js +4887 -4165
- package/lib/guava-ui.es.js.map +1 -1
- package/lib/guava-ui.umd.js +2 -2
- package/lib/guava-ui.umd.js.map +1 -1
- package/lib/index.css +1 -1
- package/lib/types/index.d.ts +96 -60
- package/package.json +1 -1
package/lib/types/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AllowDropFunction } from 'element-plus/es/components/tree/src/tree.type';
|
|
1
2
|
import { App } from 'vue';
|
|
2
3
|
import { ButtonType } from 'element-plus';
|
|
3
4
|
import { CascaderOption } from 'element-plus';
|
|
@@ -53,13 +54,13 @@ export { confirm_2 as confirm }
|
|
|
53
54
|
export declare const crud: {
|
|
54
55
|
fetchData: (fetch: AsyncFn, data: any) => Promise<any>;
|
|
55
56
|
submit: (fetch: AsyncFn, data: any, hasMsg?: boolean, msg?: string) => Promise<any>;
|
|
56
|
-
fetchTable: (tabNode:
|
|
57
|
-
save: (fmNode: FormInstance, fetch: AsyncFn, check?: boolean, msg?: string) => Promise<
|
|
58
|
-
update: (fmNode: FormInstance, id: number, fetch: Async2Fn, check?: boolean, msg?: string) => Promise<
|
|
57
|
+
fetchTable: (tabNode: TableInstance, fetch: AsyncFn, data: any) => Promise<{}>;
|
|
58
|
+
save: (fmNode: FormInstance, fetch: AsyncFn, check?: boolean, msg?: string) => Promise<false | Recordable<any> | null>;
|
|
59
|
+
update: (fmNode: FormInstance, id: number, fetch: Async2Fn, check?: boolean, msg?: string) => Promise<false | Recordable<any>>;
|
|
59
60
|
search: (fmNode: FormInstance, tabNode: TableInstance, fetch: AsyncFn) => Promise<{}>;
|
|
60
61
|
searchNoFm: (tabNode: any, fetch: AsyncFn, data: any) => Promise<{}>;
|
|
61
62
|
toNewPageSearch: (tabNode: ComponentInternalInstance | null, filterConditions: Recordable<any>, fetch: AsyncFn, pageInfo: PageInfo) => Promise<false | Recordable<any>>;
|
|
62
|
-
insertResult: (searchData: any
|
|
63
|
+
insertResult: (searchData: Recordable<any>, result: any) => boolean | undefined;
|
|
63
64
|
updateResult: (searchData: any, result: any, rownums: number) => boolean;
|
|
64
65
|
removeResult: (searchData: any, index: number) => boolean;
|
|
65
66
|
setEditValue: (formList: FormItem[], rowData: Recordable<any>) => false | undefined;
|
|
@@ -86,6 +87,7 @@ export declare const dateFormatConfig: {
|
|
|
86
87
|
week: {
|
|
87
88
|
placeholder: string;
|
|
88
89
|
dateFormat: string;
|
|
90
|
+
valueFormat: string;
|
|
89
91
|
};
|
|
90
92
|
month: {
|
|
91
93
|
placeholder: string;
|
|
@@ -125,6 +127,8 @@ export declare const generateKey: (num: number) => string;
|
|
|
125
127
|
|
|
126
128
|
export declare const getDomCssProp: (prop: string, dom?: HTMLElement) => string;
|
|
127
129
|
|
|
130
|
+
export declare const getFormModel: (fmNode: FormInstance | null | undefined) => Recordable<any>;
|
|
131
|
+
|
|
128
132
|
export declare const getVNodeName: (vnode: any) => string;
|
|
129
133
|
|
|
130
134
|
export declare const getVNodeText: (vnode: any) => string;
|
|
@@ -358,10 +362,10 @@ onConfirm?: ((...args: any[]) => any) | undefined;
|
|
|
358
362
|
link: boolean;
|
|
359
363
|
size: "" | "small" | "default" | "large";
|
|
360
364
|
type: "" | "default" | "primary" | "success" | "warning" | "danger" | "info" | "text";
|
|
365
|
+
disabled: string | boolean;
|
|
361
366
|
text: string;
|
|
362
367
|
icon: string;
|
|
363
368
|
confirm: string | boolean;
|
|
364
|
-
disabled: string | boolean;
|
|
365
369
|
nativeType: string;
|
|
366
370
|
loading: boolean;
|
|
367
371
|
visible: boolean;
|
|
@@ -559,8 +563,8 @@ size: "" | "small" | "default" | "large";
|
|
|
559
563
|
placeholder: string;
|
|
560
564
|
vref: string;
|
|
561
565
|
id: string;
|
|
562
|
-
trigger: string;
|
|
563
566
|
disabled: boolean;
|
|
567
|
+
trigger: string;
|
|
564
568
|
visible: boolean;
|
|
565
569
|
options: CascaderOption[];
|
|
566
570
|
multiple: boolean;
|
|
@@ -644,8 +648,8 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
644
648
|
value: TCheckboxValueType;
|
|
645
649
|
size: "" | "small" | "default" | "large";
|
|
646
650
|
vref: string;
|
|
647
|
-
label: TCheckboxValueType;
|
|
648
651
|
disabled: boolean;
|
|
652
|
+
label: TCheckboxValueType;
|
|
649
653
|
visible: boolean;
|
|
650
654
|
border: boolean;
|
|
651
655
|
indeterminate: boolean;
|
|
@@ -737,8 +741,8 @@ name: string;
|
|
|
737
741
|
value: TCheckboxButtonValue;
|
|
738
742
|
size: "small" | "default" | "large";
|
|
739
743
|
vref: string;
|
|
740
|
-
label: TCheckboxButtonValue;
|
|
741
744
|
disabled: boolean;
|
|
745
|
+
label: TCheckboxButtonValue;
|
|
742
746
|
visible: boolean;
|
|
743
747
|
border: boolean;
|
|
744
748
|
indeterminate: boolean;
|
|
@@ -812,8 +816,8 @@ value: TCheckboxGroupType;
|
|
|
812
816
|
size: "small" | "default" | "large";
|
|
813
817
|
vref: string;
|
|
814
818
|
max: number;
|
|
815
|
-
label: string;
|
|
816
819
|
disabled: boolean;
|
|
820
|
+
label: string;
|
|
817
821
|
min: number;
|
|
818
822
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
819
823
|
|
|
@@ -970,7 +974,7 @@ default: () => never[];
|
|
|
970
974
|
};
|
|
971
975
|
disabledDate: {
|
|
972
976
|
type: FunctionConstructor;
|
|
973
|
-
default:
|
|
977
|
+
default: undefined;
|
|
974
978
|
};
|
|
975
979
|
editable: {
|
|
976
980
|
type: BooleanConstructor;
|
|
@@ -980,6 +984,10 @@ unlink: {
|
|
|
980
984
|
type: BooleanConstructor;
|
|
981
985
|
default: boolean;
|
|
982
986
|
};
|
|
987
|
+
showWeekNumber: {
|
|
988
|
+
type: BooleanConstructor;
|
|
989
|
+
default: boolean;
|
|
990
|
+
};
|
|
983
991
|
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "focus" | "input" | "pick" | "update:modelValue")[], "blur" | "change" | "focus" | "input" | "pick" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
984
992
|
vref: {
|
|
985
993
|
type: StringConstructor;
|
|
@@ -1047,7 +1055,7 @@ default: () => never[];
|
|
|
1047
1055
|
};
|
|
1048
1056
|
disabledDate: {
|
|
1049
1057
|
type: FunctionConstructor;
|
|
1050
|
-
default:
|
|
1058
|
+
default: undefined;
|
|
1051
1059
|
};
|
|
1052
1060
|
editable: {
|
|
1053
1061
|
type: BooleanConstructor;
|
|
@@ -1057,6 +1065,10 @@ unlink: {
|
|
|
1057
1065
|
type: BooleanConstructor;
|
|
1058
1066
|
default: boolean;
|
|
1059
1067
|
};
|
|
1068
|
+
showWeekNumber: {
|
|
1069
|
+
type: BooleanConstructor;
|
|
1070
|
+
default: boolean;
|
|
1071
|
+
};
|
|
1060
1072
|
}>> & Readonly<{
|
|
1061
1073
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
1062
1074
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
@@ -1084,6 +1096,7 @@ valueFormat: string;
|
|
|
1084
1096
|
rangeSeparator: string;
|
|
1085
1097
|
startPlaceholder: string;
|
|
1086
1098
|
endPlaceholder: string;
|
|
1099
|
+
showWeekNumber: boolean;
|
|
1087
1100
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1088
1101
|
|
|
1089
1102
|
export declare const GvDialog: DefineComponent<ExtractPropTypes< {
|
|
@@ -1318,7 +1331,7 @@ type: NumberConstructor[];
|
|
|
1318
1331
|
required: false;
|
|
1319
1332
|
default: number;
|
|
1320
1333
|
};
|
|
1321
|
-
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("cancel" | "update:visible")[], "cancel" | "update:visible", PublicProps, Readonly<ExtractPropTypes< {
|
|
1334
|
+
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("cancel" | "close" | "resize" | "open" | "update:visible" | "opened" | "closed")[], "cancel" | "close" | "resize" | "open" | "update:visible" | "opened" | "closed", PublicProps, Readonly<ExtractPropTypes< {
|
|
1322
1335
|
visible: {
|
|
1323
1336
|
type: BooleanConstructor;
|
|
1324
1337
|
required: false;
|
|
@@ -1345,7 +1358,12 @@ required: false;
|
|
|
1345
1358
|
default: number;
|
|
1346
1359
|
};
|
|
1347
1360
|
}>> & Readonly<{
|
|
1361
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
1348
1362
|
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
1363
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
1364
|
+
onResize?: ((...args: any[]) => any) | undefined;
|
|
1365
|
+
onOpened?: ((...args: any[]) => any) | undefined;
|
|
1366
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
1349
1367
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
1350
1368
|
}>, {
|
|
1351
1369
|
size: string | number;
|
|
@@ -1507,7 +1525,7 @@ default: string;
|
|
|
1507
1525
|
};
|
|
1508
1526
|
size: {
|
|
1509
1527
|
type: PropType<ComponentSize>;
|
|
1510
|
-
default:
|
|
1528
|
+
default: string;
|
|
1511
1529
|
};
|
|
1512
1530
|
disabled: {
|
|
1513
1531
|
type: BooleanConstructor;
|
|
@@ -1580,7 +1598,7 @@ default: string;
|
|
|
1580
1598
|
};
|
|
1581
1599
|
size: {
|
|
1582
1600
|
type: PropType<ComponentSize>;
|
|
1583
|
-
default:
|
|
1601
|
+
default: string;
|
|
1584
1602
|
};
|
|
1585
1603
|
disabled: {
|
|
1586
1604
|
type: BooleanConstructor;
|
|
@@ -1716,7 +1734,7 @@ position: {
|
|
|
1716
1734
|
type: StringConstructor;
|
|
1717
1735
|
default: undefined;
|
|
1718
1736
|
};
|
|
1719
|
-
}>, JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "focus" | "input" | "keydown" | "update:modelValue")[], "blur" | "change" | "focus" | "input" | "keydown" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
1737
|
+
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "focus" | "input" | "keydown" | "update:modelValue")[], "blur" | "change" | "focus" | "input" | "keydown" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
1720
1738
|
vref: {
|
|
1721
1739
|
type: StringConstructor;
|
|
1722
1740
|
default: string;
|
|
@@ -1797,8 +1815,8 @@ placeholder: string;
|
|
|
1797
1815
|
vref: string;
|
|
1798
1816
|
max: number;
|
|
1799
1817
|
id: string;
|
|
1800
|
-
position: string;
|
|
1801
1818
|
disabled: boolean;
|
|
1819
|
+
position: string;
|
|
1802
1820
|
visible: boolean;
|
|
1803
1821
|
step: number;
|
|
1804
1822
|
min: number;
|
|
@@ -1996,8 +2014,8 @@ name: string;
|
|
|
1996
2014
|
value: TRadioValue;
|
|
1997
2015
|
size: "" | "small" | "default" | "large";
|
|
1998
2016
|
vref: string;
|
|
1999
|
-
label: TRadioValue;
|
|
2000
2017
|
disabled: boolean;
|
|
2018
|
+
label: TRadioValue;
|
|
2001
2019
|
border: boolean;
|
|
2002
2020
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2003
2021
|
|
|
@@ -2050,8 +2068,8 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
2050
2068
|
name: string;
|
|
2051
2069
|
value: string | number | boolean;
|
|
2052
2070
|
vref: string;
|
|
2053
|
-
label: string;
|
|
2054
2071
|
disabled: boolean;
|
|
2072
|
+
label: string;
|
|
2055
2073
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2056
2074
|
|
|
2057
2075
|
export declare const GvRadioGroup: DefineComponent<ExtractPropTypes< {
|
|
@@ -2360,8 +2378,8 @@ size: "" | "small" | "default" | "large";
|
|
|
2360
2378
|
placeholder: string;
|
|
2361
2379
|
vref: string;
|
|
2362
2380
|
id: string;
|
|
2363
|
-
label: string;
|
|
2364
2381
|
disabled: boolean;
|
|
2382
|
+
label: string;
|
|
2365
2383
|
visible: boolean;
|
|
2366
2384
|
multiple: boolean;
|
|
2367
2385
|
modelValue: string | unknown[] | Record<string, unknown>;
|
|
@@ -2859,21 +2877,25 @@ default: boolean;
|
|
|
2859
2877
|
"onTab-click"?: ((...args: any[]) => any) | undefined;
|
|
2860
2878
|
}>, {
|
|
2861
2879
|
name: string;
|
|
2880
|
+
disabled: boolean;
|
|
2862
2881
|
label: string;
|
|
2863
2882
|
maxHeight: string | number;
|
|
2864
|
-
disabled: boolean;
|
|
2865
2883
|
visible: boolean;
|
|
2866
2884
|
autoHeight: boolean;
|
|
2867
2885
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2868
2886
|
|
|
2869
2887
|
export declare const GvTabs: DefineComponent<ExtractPropTypes< {
|
|
2870
2888
|
tabPosition: {
|
|
2871
|
-
type:
|
|
2889
|
+
type: PropType<"left" | "right" | "bottom" | "top">;
|
|
2872
2890
|
default: string;
|
|
2873
2891
|
};
|
|
2874
|
-
|
|
2892
|
+
defaultValue: {
|
|
2875
2893
|
type: PropType<number | string>;
|
|
2876
|
-
default:
|
|
2894
|
+
default: number;
|
|
2895
|
+
};
|
|
2896
|
+
modelValue: {
|
|
2897
|
+
type: PropType<number | string>;
|
|
2898
|
+
default: number;
|
|
2877
2899
|
};
|
|
2878
2900
|
type: {
|
|
2879
2901
|
type: PropType<"card" | "border-card">;
|
|
@@ -2889,12 +2911,16 @@ default: undefined;
|
|
|
2889
2911
|
};
|
|
2890
2912
|
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "tab-click"[], "tab-click", PublicProps, Readonly<ExtractPropTypes< {
|
|
2891
2913
|
tabPosition: {
|
|
2892
|
-
type:
|
|
2914
|
+
type: PropType<"left" | "right" | "bottom" | "top">;
|
|
2893
2915
|
default: string;
|
|
2894
2916
|
};
|
|
2895
|
-
|
|
2917
|
+
defaultValue: {
|
|
2896
2918
|
type: PropType<number | string>;
|
|
2897
|
-
default:
|
|
2919
|
+
default: number;
|
|
2920
|
+
};
|
|
2921
|
+
modelValue: {
|
|
2922
|
+
type: PropType<number | string>;
|
|
2923
|
+
default: number;
|
|
2898
2924
|
};
|
|
2899
2925
|
type: {
|
|
2900
2926
|
type: PropType<"card" | "border-card">;
|
|
@@ -2911,10 +2937,11 @@ default: undefined;
|
|
|
2911
2937
|
}>> & Readonly<{
|
|
2912
2938
|
"onTab-click"?: ((...args: any[]) => any) | undefined;
|
|
2913
2939
|
}>, {
|
|
2914
|
-
value: string | number;
|
|
2915
2940
|
type: "card" | "border-card";
|
|
2941
|
+
modelValue: string | number;
|
|
2916
2942
|
closable: boolean;
|
|
2917
|
-
|
|
2943
|
+
defaultValue: string | number;
|
|
2944
|
+
tabPosition: "right" | "bottom" | "left" | "top";
|
|
2918
2945
|
tabMaxHeight: string | number;
|
|
2919
2946
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2920
2947
|
|
|
@@ -3144,30 +3171,30 @@ type: BooleanConstructor;
|
|
|
3144
3171
|
default: boolean;
|
|
3145
3172
|
};
|
|
3146
3173
|
}>> & Readonly<{
|
|
3147
|
-
|
|
3148
|
-
|
|
3149
|
-
|
|
3150
|
-
|
|
3174
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
3175
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
3176
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
3177
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3151
3178
|
}>, {
|
|
3152
|
-
|
|
3153
|
-
|
|
3154
|
-
|
|
3155
|
-
|
|
3156
|
-
|
|
3157
|
-
|
|
3158
|
-
|
|
3159
|
-
|
|
3160
|
-
|
|
3161
|
-
|
|
3162
|
-
|
|
3163
|
-
|
|
3164
|
-
|
|
3165
|
-
|
|
3166
|
-
|
|
3167
|
-
|
|
3168
|
-
|
|
3169
|
-
|
|
3170
|
-
|
|
3179
|
+
name: string;
|
|
3180
|
+
size: TTimePickerSize;
|
|
3181
|
+
placeholder: string;
|
|
3182
|
+
vref: string;
|
|
3183
|
+
id: string;
|
|
3184
|
+
disabled: boolean;
|
|
3185
|
+
modelValue: TTimePickerType;
|
|
3186
|
+
clearable: boolean;
|
|
3187
|
+
editable: boolean;
|
|
3188
|
+
readonly: boolean;
|
|
3189
|
+
format: string;
|
|
3190
|
+
valueFormat: string;
|
|
3191
|
+
rangeSeparator: string;
|
|
3192
|
+
startPlaceholder: string;
|
|
3193
|
+
endPlaceholder: string;
|
|
3194
|
+
disabledHours: number[];
|
|
3195
|
+
disabledMinutes: number[];
|
|
3196
|
+
disabledSeconds: number[];
|
|
3197
|
+
isRange: boolean;
|
|
3171
3198
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3172
3199
|
|
|
3173
3200
|
export declare const GvTree: DefineComponent<ExtractPropTypes< {
|
|
@@ -3199,6 +3226,10 @@ draggable: {
|
|
|
3199
3226
|
type: BooleanConstructor;
|
|
3200
3227
|
default: boolean;
|
|
3201
3228
|
};
|
|
3229
|
+
allowDrop: {
|
|
3230
|
+
type: PropType<AllowDropFunction>;
|
|
3231
|
+
default: undefined;
|
|
3232
|
+
};
|
|
3202
3233
|
defaultExpandedKeys: {
|
|
3203
3234
|
type: PropType<(string | number)[]>;
|
|
3204
3235
|
default: () => never[];
|
|
@@ -3231,7 +3262,7 @@ renderContent: {
|
|
|
3231
3262
|
type: PropType<RenderContentFunction>;
|
|
3232
3263
|
default: undefined;
|
|
3233
3264
|
};
|
|
3234
|
-
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("check" | "
|
|
3265
|
+
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("check" | "node-click" | "node-expand" | "node-collapse" | "check-change" | "node-drop")[], "check" | "node-click" | "node-expand" | "node-collapse" | "check-change" | "node-drop", PublicProps, Readonly<ExtractPropTypes< {
|
|
3235
3266
|
treeData: {
|
|
3236
3267
|
type: PropType<TreeData[]>;
|
|
3237
3268
|
default: () => never[];
|
|
@@ -3260,6 +3291,10 @@ draggable: {
|
|
|
3260
3291
|
type: BooleanConstructor;
|
|
3261
3292
|
default: boolean;
|
|
3262
3293
|
};
|
|
3294
|
+
allowDrop: {
|
|
3295
|
+
type: PropType<AllowDropFunction>;
|
|
3296
|
+
default: undefined;
|
|
3297
|
+
};
|
|
3263
3298
|
defaultExpandedKeys: {
|
|
3264
3299
|
type: PropType<(string | number)[]>;
|
|
3265
3300
|
default: () => never[];
|
|
@@ -3293,11 +3328,11 @@ type: PropType<RenderContentFunction>;
|
|
|
3293
3328
|
default: undefined;
|
|
3294
3329
|
};
|
|
3295
3330
|
}>> & Readonly<{
|
|
3296
|
-
|
|
3297
|
-
"onCheck-change"?: ((...args: any[]) => any) | undefined;
|
|
3331
|
+
onCheck?: ((...args: any[]) => any) | undefined;
|
|
3298
3332
|
"onNode-click"?: ((...args: any[]) => any) | undefined;
|
|
3333
|
+
"onNode-expand"?: ((...args: any[]) => any) | undefined;
|
|
3299
3334
|
"onNode-collapse"?: ((...args: any[]) => any) | undefined;
|
|
3300
|
-
onCheck?: ((...args: any[]) => any) | undefined;
|
|
3335
|
+
"onCheck-change"?: ((...args: any[]) => any) | undefined;
|
|
3301
3336
|
"onNode-drop"?: ((...args: any[]) => any) | undefined;
|
|
3302
3337
|
}>, {
|
|
3303
3338
|
lazy: boolean;
|
|
@@ -3307,14 +3342,15 @@ defaultExpandAll: boolean;
|
|
|
3307
3342
|
treeProps: TreeOptionProps;
|
|
3308
3343
|
iconClass: string;
|
|
3309
3344
|
checkOnClickNode: boolean;
|
|
3345
|
+
treeData: TreeData[];
|
|
3310
3346
|
nodeKey: string;
|
|
3311
|
-
expandOnClickNode: boolean;
|
|
3312
|
-
defaultCheckedKeys: (string | number)[];
|
|
3313
|
-
defaultExpandedKeys: (string | number)[];
|
|
3314
|
-
renderContent: RenderContentFunction;
|
|
3315
3347
|
showCheckbox: boolean;
|
|
3348
|
+
allowDrop: AllowDropFunction;
|
|
3349
|
+
defaultExpandedKeys: (string | number)[];
|
|
3350
|
+
defaultCheckedKeys: (string | number)[];
|
|
3351
|
+
expandOnClickNode: boolean;
|
|
3316
3352
|
filterNodeMethod: FilterNodeMethodFunction;
|
|
3317
|
-
|
|
3353
|
+
renderContent: RenderContentFunction;
|
|
3318
3354
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3319
3355
|
|
|
3320
3356
|
export declare const hasClass: (ele: HTMLElement, cls: string) => boolean;
|