cnhis-design-vue 3.1.22-beta.5 → 3.1.22-beta.8
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/es/components/fabric-chart/index.d.ts +1 -0
- package/es/components/fabric-chart/src/FabricChart.js +3 -2
- package/es/components/fabric-chart/src/FabricChart.vue.d.ts +1 -0
- package/es/components/fabric-chart/src/hooks/useCenter.d.ts +1 -0
- package/es/components/fabric-chart/src/hooks/useCenter2.js +15 -3
- package/es/components/fabric-chart/src/hooks/useLeft.d.ts +1 -1
- package/es/components/fabric-chart/src/hooks/useLeft2.js +7 -5
- package/es/components/fabric-chart/src/interface.d.ts +2 -0
- package/es/components/iho-table/index.d.ts +453 -348
- package/es/components/iho-table/index2.js +1 -0
- package/es/components/iho-table/src/IhoTable.js +23 -8
- package/es/components/iho-table/src/IhoTable.vue.d.ts +454 -348
- package/es/components/iho-table/src/components/IhoTableColumn.d.ts +2 -2
- package/es/components/iho-table/src/components/IhoTableColumn.js +22 -3
- package/es/components/iho-table/src/hooks/tapHooks/index.d.ts +4 -1
- package/es/components/iho-table/src/hooks/tapHooks/index2.js +3 -2
- package/es/components/iho-table/src/hooks/tapHooks/useEventHooks.d.ts +59 -59
- package/es/components/iho-table/src/hooks/tapHooks/useEventHooks2.js +59 -59
- package/es/components/iho-table/src/plugins/rendererPlugins/inputs/inputRendererPlugins.js +5 -0
- package/es/components/iho-table/src/types/index.d.ts +4 -2
- package/es/components/iho-table/src/types/pluginType.d.ts +63 -62
- package/package.json +2 -2
- package/es/components/form-render/src/components/index.d.ts +0 -0
- package/es/components/form-render/src/components/index.js +0 -1
|
@@ -12,7 +12,7 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
12
12
|
required: true;
|
|
13
13
|
};
|
|
14
14
|
tableData: {
|
|
15
|
-
type: import("vue").PropType<import("../../../es/shared/types").AnyObject>;
|
|
15
|
+
type: import("vue").PropType<import("../../../es/shared/types").AnyObject[]>;
|
|
16
16
|
default: () => never[];
|
|
17
17
|
};
|
|
18
18
|
}, {
|
|
@@ -25,7 +25,7 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
25
25
|
required: true;
|
|
26
26
|
};
|
|
27
27
|
tableData: {
|
|
28
|
-
type: import("vue").PropType<import("../../../es/shared/types").AnyObject>;
|
|
28
|
+
type: import("vue").PropType<import("../../../es/shared/types").AnyObject[]>;
|
|
29
29
|
default: () => never[];
|
|
30
30
|
};
|
|
31
31
|
}>> & {
|
|
@@ -33,6 +33,7 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
33
33
|
onSettingClick?: ((...args: any[]) => any) | undefined;
|
|
34
34
|
}>>;
|
|
35
35
|
emits: (event: "formChange" | "settingClick", ...args: any[]) => void;
|
|
36
|
+
vxeTableRef: import("vue").Ref<import("vxe-table").VxeTableInstance | undefined>;
|
|
36
37
|
hooks: Readonly<{
|
|
37
38
|
configHooks: import("../../../es/components/iho-table/src/types").AbstractConfigHooks;
|
|
38
39
|
fieldHooks: import("../../../es/components/iho-table/src/types").AbstractFieldHooks;
|
|
@@ -42,6 +43,7 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
42
43
|
[x: string]: unknown;
|
|
43
44
|
showSeq?: boolean | undefined;
|
|
44
45
|
selectType?: "checkbox" | "radio" | null | undefined;
|
|
46
|
+
groupSetting?: {} | undefined;
|
|
45
47
|
size?: import("vxe-table").SizeType | undefined;
|
|
46
48
|
id?: string | undefined;
|
|
47
49
|
data?: any[] | undefined;
|
|
@@ -202,9 +204,7 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
202
204
|
} | undefined;
|
|
203
205
|
autofocus?: string | undefined;
|
|
204
206
|
autoselect?: boolean | undefined;
|
|
205
|
-
defaultValue?: string | number | object | any[] |
|
|
206
|
-
column: import("vxe-table").VxeTableDefines.ColumnInfo;
|
|
207
|
-
}) => any) | {
|
|
207
|
+
defaultValue?: string | number | object | any[] | {
|
|
208
208
|
exec: (string: string) => RegExpExecArray | null;
|
|
209
209
|
test: (string: string) => boolean;
|
|
210
210
|
readonly source: string;
|
|
@@ -225,7 +225,9 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
225
225
|
[Symbol.search]: (string: string) => number;
|
|
226
226
|
[Symbol.split]: (string: string, limit?: number | undefined) => string[];
|
|
227
227
|
[Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
|
|
228
|
-
} | {
|
|
228
|
+
} | ((params: {
|
|
229
|
+
column: import("vxe-table").VxeTableDefines.ColumnInfo;
|
|
230
|
+
}) => any) | {
|
|
229
231
|
toString: () => string;
|
|
230
232
|
toDateString: () => string;
|
|
231
233
|
toTimeString: () => string;
|
|
@@ -525,9 +527,7 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
525
527
|
} | undefined;
|
|
526
528
|
autofocus?: string | undefined;
|
|
527
529
|
autoselect?: boolean | undefined;
|
|
528
|
-
defaultValue?: string | number | object | any[] |
|
|
529
|
-
column: import("vxe-table").VxeTableDefines.ColumnInfo;
|
|
530
|
-
}) => any) | {
|
|
530
|
+
defaultValue?: string | number | object | any[] | {
|
|
531
531
|
exec: (string: string) => RegExpExecArray | null;
|
|
532
532
|
test: (string: string) => boolean;
|
|
533
533
|
readonly source: string;
|
|
@@ -548,7 +548,9 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
548
548
|
[Symbol.search]: (string: string) => number;
|
|
549
549
|
[Symbol.split]: (string: string, limit?: number | undefined) => string[];
|
|
550
550
|
[Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
|
|
551
|
-
} | {
|
|
551
|
+
} | ((params: {
|
|
552
|
+
column: import("vxe-table").VxeTableDefines.ColumnInfo;
|
|
553
|
+
}) => any) | {
|
|
552
554
|
toString: () => string;
|
|
553
555
|
toDateString: () => string;
|
|
554
556
|
toTimeString: () => string;
|
|
@@ -1007,9 +1009,7 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1007
1009
|
} | undefined;
|
|
1008
1010
|
autofocus?: string | undefined;
|
|
1009
1011
|
autoselect?: boolean | undefined;
|
|
1010
|
-
defaultValue?: string | number | object | any[] |
|
|
1011
|
-
column: import("vxe-table").VxeTableDefines.ColumnInfo;
|
|
1012
|
-
}) => any) | {
|
|
1012
|
+
defaultValue?: string | number | object | any[] | {
|
|
1013
1013
|
exec: (string: string) => RegExpExecArray | null;
|
|
1014
1014
|
test: (string: string) => boolean;
|
|
1015
1015
|
readonly source: string;
|
|
@@ -1030,7 +1030,9 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1030
1030
|
[Symbol.search]: (string: string) => number;
|
|
1031
1031
|
[Symbol.split]: (string: string, limit?: number | undefined) => string[];
|
|
1032
1032
|
[Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
|
|
1033
|
-
} | {
|
|
1033
|
+
} | ((params: {
|
|
1034
|
+
column: import("vxe-table").VxeTableDefines.ColumnInfo;
|
|
1035
|
+
}) => any) | {
|
|
1034
1036
|
toString: () => string;
|
|
1035
1037
|
toDateString: () => string;
|
|
1036
1038
|
toTimeString: () => string;
|
|
@@ -1386,9 +1388,7 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1386
1388
|
} | undefined;
|
|
1387
1389
|
autofocus?: string | undefined;
|
|
1388
1390
|
autoselect?: boolean | undefined;
|
|
1389
|
-
defaultValue?: string | number | object | any[] |
|
|
1390
|
-
column: import("vxe-table").VxeTableDefines.ColumnInfo;
|
|
1391
|
-
}) => any) | {
|
|
1391
|
+
defaultValue?: string | number | object | any[] | {
|
|
1392
1392
|
exec: (string: string) => RegExpExecArray | null;
|
|
1393
1393
|
test: (string: string) => boolean;
|
|
1394
1394
|
readonly source: string;
|
|
@@ -1409,7 +1409,9 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1409
1409
|
[Symbol.search]: (string: string) => number;
|
|
1410
1410
|
[Symbol.split]: (string: string, limit?: number | undefined) => string[];
|
|
1411
1411
|
[Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
|
|
1412
|
-
} | {
|
|
1412
|
+
} | ((params: {
|
|
1413
|
+
column: import("vxe-table").VxeTableDefines.ColumnInfo;
|
|
1414
|
+
}) => any) | {
|
|
1413
1415
|
toString: () => string;
|
|
1414
1416
|
toDateString: () => string;
|
|
1415
1417
|
toTimeString: () => string;
|
|
@@ -2018,6 +2020,7 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2018
2020
|
} | undefined;
|
|
2019
2021
|
params?: any;
|
|
2020
2022
|
}>;
|
|
2023
|
+
updateConfigRef: (config?: import("../../../es/components/iho-table/src/types").IhoTableConfig | undefined) => void;
|
|
2021
2024
|
fieldListRef: import("vue").Ref<{
|
|
2022
2025
|
[x: string]: unknown;
|
|
2023
2026
|
property?: string | undefined;
|
|
@@ -2144,9 +2147,7 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2144
2147
|
} | undefined;
|
|
2145
2148
|
autofocus?: string | undefined;
|
|
2146
2149
|
autoselect?: boolean | undefined;
|
|
2147
|
-
defaultValue?: string | number | object | any[] |
|
|
2148
|
-
column: import("vxe-table").VxeTableDefines.ColumnInfo;
|
|
2149
|
-
}) => any) | {
|
|
2150
|
+
defaultValue?: string | number | object | any[] | {
|
|
2150
2151
|
exec: (string: string) => RegExpExecArray | null;
|
|
2151
2152
|
test: (string: string) => boolean;
|
|
2152
2153
|
readonly source: string;
|
|
@@ -2167,7 +2168,9 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2167
2168
|
[Symbol.search]: (string: string) => number;
|
|
2168
2169
|
[Symbol.split]: (string: string, limit?: number | undefined) => string[];
|
|
2169
2170
|
[Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
|
|
2170
|
-
} | {
|
|
2171
|
+
} | ((params: {
|
|
2172
|
+
column: import("vxe-table").VxeTableDefines.ColumnInfo;
|
|
2173
|
+
}) => any) | {
|
|
2171
2174
|
toString: () => string;
|
|
2172
2175
|
toDateString: () => string;
|
|
2173
2176
|
toTimeString: () => string;
|
|
@@ -2322,323 +2325,423 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2322
2325
|
value: any;
|
|
2323
2326
|
} | undefined;
|
|
2324
2327
|
children?: {
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2328
|
+
[x: number]: {
|
|
2329
|
+
[x: string]: unknown;
|
|
2330
|
+
property: string;
|
|
2331
|
+
type: "checkbox" | "radio" | "seq" | "expand" | "html" | null;
|
|
2332
|
+
field: string;
|
|
2333
|
+
title: string;
|
|
2334
|
+
width: string | number;
|
|
2335
|
+
minWidth: string | number;
|
|
2336
|
+
resizable: boolean;
|
|
2337
|
+
fixed: "left" | "right" | null;
|
|
2338
|
+
align: "left" | "center" | "right" | null;
|
|
2339
|
+
headerAlign: "left" | "center" | "right" | null;
|
|
2340
|
+
footerAlign: "left" | "center" | "right" | null;
|
|
2341
|
+
showOverflow: boolean | "title" | "ellipsis" | "tooltip" | null;
|
|
2342
|
+
showHeaderOverflow: boolean | "title" | "ellipsis" | "tooltip" | null;
|
|
2343
|
+
showFooterOverflow: boolean | "title" | "ellipsis" | "tooltip" | null;
|
|
2344
|
+
className: import("vxe-table").VxeColumnPropTypes.ClassName & (import("vxe-table").VxeColumnPropTypes.ClassName | undefined);
|
|
2345
|
+
headerClassName: import("vxe-table").VxeColumnPropTypes.HeaderClassName & (import("vxe-table").VxeColumnPropTypes.HeaderClassName | undefined);
|
|
2346
|
+
footerClassName: import("vxe-table").VxeColumnPropTypes.FooterClassName & (import("vxe-table").VxeColumnPropTypes.FooterClassName | undefined);
|
|
2347
|
+
formatter: import("vxe-table").VxeColumnPropTypes.Formatter & (import("vxe-table").VxeColumnPropTypes.Formatter | undefined);
|
|
2348
|
+
sortable: boolean;
|
|
2349
|
+
sortBy: import("vxe-table").VxeColumnPropTypes.SortBy & (import("vxe-table").VxeColumnPropTypes.SortBy | undefined);
|
|
2350
|
+
sortType: "string" | "number" | null;
|
|
2351
|
+
filters: {
|
|
2352
|
+
label?: string | number | undefined;
|
|
2353
|
+
value?: any;
|
|
2354
|
+
data?: any;
|
|
2355
|
+
resetValue?: any;
|
|
2356
|
+
checked?: boolean | undefined;
|
|
2357
|
+
}[];
|
|
2358
|
+
filterMultiple: boolean;
|
|
2359
|
+
filterMethod: import("vxe-table").VxeColumnPropTypes.FilterMethod;
|
|
2360
|
+
filterRender: {
|
|
2361
|
+
options?: any[] | undefined;
|
|
2362
|
+
optionProps?: {
|
|
2363
|
+
value?: string | undefined;
|
|
2364
|
+
label?: string | undefined;
|
|
2365
|
+
key?: string | undefined;
|
|
2366
|
+
} | undefined;
|
|
2367
|
+
optionGroups?: any[] | undefined;
|
|
2368
|
+
optionGroupProps?: {
|
|
2369
|
+
options?: string | undefined;
|
|
2370
|
+
label?: string | undefined;
|
|
2371
|
+
key?: string | undefined;
|
|
2372
|
+
} | undefined;
|
|
2373
|
+
content?: string | undefined;
|
|
2374
|
+
name?: string | undefined;
|
|
2375
|
+
props?: {
|
|
2376
|
+
[key: string]: any;
|
|
2377
|
+
} | undefined;
|
|
2378
|
+
attrs?: {
|
|
2379
|
+
[key: string]: any;
|
|
2380
|
+
} | undefined;
|
|
2381
|
+
events?: {
|
|
2382
|
+
[key: string]: Function;
|
|
2383
|
+
} | undefined;
|
|
2384
|
+
children?: any[] | undefined;
|
|
2385
|
+
cellType?: "string" | "number" | undefined;
|
|
2386
|
+
};
|
|
2387
|
+
treeNode: boolean;
|
|
2388
|
+
visible: boolean;
|
|
2389
|
+
exportMethod: import("vxe-table").VxeColumnPropTypes.ExportMethod;
|
|
2390
|
+
footerExportMethod: import("vxe-table").VxeColumnPropTypes.FooterExportMethod;
|
|
2391
|
+
titleHelp: {
|
|
2392
|
+
useHTML?: boolean | undefined;
|
|
2393
|
+
content?: import("vxe-table").VxeTooltipPropTypes.Content | undefined;
|
|
2394
|
+
enterable?: boolean | undefined;
|
|
2395
|
+
theme?: string | undefined;
|
|
2396
|
+
icon?: string | undefined;
|
|
2397
|
+
message?: string | undefined;
|
|
2398
|
+
};
|
|
2399
|
+
titlePrefix: {
|
|
2400
|
+
useHTML?: boolean | undefined;
|
|
2401
|
+
content?: import("vxe-table").VxeTooltipPropTypes.Content | undefined;
|
|
2402
|
+
enterable?: boolean | undefined;
|
|
2403
|
+
theme?: string | undefined;
|
|
2404
|
+
icon?: string | undefined;
|
|
2405
|
+
message?: string | undefined;
|
|
2406
|
+
};
|
|
2407
|
+
cellType: "string" | "number" | "auto";
|
|
2408
|
+
cellRender: {
|
|
2409
|
+
events?: {
|
|
2410
|
+
[key: string]: (cellParams: import("vxe-table").VxeColumnPropTypes.DefaultSlotParams, ...args: any[]) => any;
|
|
2411
|
+
} | undefined;
|
|
2412
|
+
options?: any[] | undefined;
|
|
2413
|
+
optionProps?: {
|
|
2414
|
+
value?: string | undefined;
|
|
2415
|
+
label?: string | undefined;
|
|
2416
|
+
key?: string | undefined;
|
|
2417
|
+
} | undefined;
|
|
2418
|
+
optionGroups?: any[] | undefined;
|
|
2419
|
+
optionGroupProps?: {
|
|
2420
|
+
options?: string | undefined;
|
|
2421
|
+
label?: string | undefined;
|
|
2422
|
+
key?: string | undefined;
|
|
2423
|
+
} | undefined;
|
|
2424
|
+
content?: string | undefined;
|
|
2425
|
+
name?: string | undefined;
|
|
2426
|
+
props?: {
|
|
2427
|
+
[key: string]: any;
|
|
2428
|
+
} | undefined;
|
|
2429
|
+
attrs?: {
|
|
2430
|
+
[key: string]: any;
|
|
2431
|
+
} | undefined;
|
|
2432
|
+
children?: any[] | undefined;
|
|
2433
|
+
cellType?: "string" | "number" | undefined;
|
|
2434
|
+
};
|
|
2435
|
+
editRender: {
|
|
2436
|
+
events?: {
|
|
2437
|
+
[key: string]: (cellParams: import("vxe-table").VxeColumnPropTypes.EditSlotParams, ...args: any[]) => any;
|
|
2438
|
+
} | undefined;
|
|
2439
|
+
enabled?: boolean | undefined;
|
|
2440
|
+
options?: any[] | undefined;
|
|
2441
|
+
optionProps?: {
|
|
2442
|
+
value?: string | undefined;
|
|
2443
|
+
label?: string | undefined;
|
|
2444
|
+
key?: string | undefined;
|
|
2445
|
+
} | undefined;
|
|
2446
|
+
optionGroups?: any[] | undefined;
|
|
2447
|
+
optionGroupProps?: {
|
|
2448
|
+
options?: string | undefined;
|
|
2449
|
+
label?: string | undefined;
|
|
2450
|
+
key?: string | undefined;
|
|
2451
|
+
} | undefined;
|
|
2452
|
+
autofocus?: string | undefined;
|
|
2453
|
+
autoselect?: boolean | undefined;
|
|
2454
|
+
defaultValue?: string | number | object | any[] | {
|
|
2455
|
+
exec: (string: string) => RegExpExecArray | null;
|
|
2456
|
+
test: (string: string) => boolean;
|
|
2457
|
+
readonly source: string;
|
|
2458
|
+
readonly global: boolean;
|
|
2459
|
+
readonly ignoreCase: boolean;
|
|
2460
|
+
readonly multiline: boolean;
|
|
2461
|
+
lastIndex: number;
|
|
2462
|
+
compile: (pattern: string, flags?: string | undefined) => RegExp;
|
|
2463
|
+
readonly flags: string;
|
|
2464
|
+
readonly sticky: boolean;
|
|
2465
|
+
readonly unicode: boolean;
|
|
2466
|
+
readonly dotAll: boolean;
|
|
2467
|
+
[Symbol.match]: (string: string) => RegExpMatchArray | null;
|
|
2468
|
+
[Symbol.replace]: {
|
|
2469
|
+
(string: string, replaceValue: string): string;
|
|
2470
|
+
(string: string, replacer: (substring: string, ...args: any[]) => string): string;
|
|
2471
|
+
};
|
|
2472
|
+
[Symbol.search]: (string: string) => number;
|
|
2473
|
+
[Symbol.split]: (string: string, limit?: number | undefined) => string[];
|
|
2474
|
+
[Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
|
|
2475
|
+
} | ((params: {
|
|
2476
|
+
column: import("vxe-table").VxeTableDefines.ColumnInfo;
|
|
2477
|
+
}) => any) | {
|
|
2478
|
+
toString: () => string;
|
|
2479
|
+
toDateString: () => string;
|
|
2480
|
+
toTimeString: () => string;
|
|
2481
|
+
toLocaleString: {
|
|
2482
|
+
(): string;
|
|
2483
|
+
(locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
|
|
2484
|
+
(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
|
|
2485
|
+
};
|
|
2486
|
+
toLocaleDateString: {
|
|
2487
|
+
(): string;
|
|
2488
|
+
(locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
|
|
2489
|
+
(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
|
|
2490
|
+
};
|
|
2491
|
+
toLocaleTimeString: {
|
|
2492
|
+
(): string;
|
|
2493
|
+
(locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
|
|
2494
|
+
(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
|
|
2495
|
+
};
|
|
2496
|
+
valueOf: () => number;
|
|
2497
|
+
getTime: () => number;
|
|
2498
|
+
getFullYear: () => number;
|
|
2499
|
+
getUTCFullYear: () => number;
|
|
2500
|
+
getMonth: () => number;
|
|
2501
|
+
getUTCMonth: () => number;
|
|
2502
|
+
getDate: () => number;
|
|
2503
|
+
getUTCDate: () => number;
|
|
2504
|
+
getDay: () => number;
|
|
2505
|
+
getUTCDay: () => number;
|
|
2506
|
+
getHours: () => number;
|
|
2507
|
+
getUTCHours: () => number;
|
|
2508
|
+
getMinutes: () => number;
|
|
2509
|
+
getUTCMinutes: () => number;
|
|
2510
|
+
getSeconds: () => number;
|
|
2511
|
+
getUTCSeconds: () => number;
|
|
2512
|
+
getMilliseconds: () => number;
|
|
2513
|
+
getUTCMilliseconds: () => number;
|
|
2514
|
+
getTimezoneOffset: () => number;
|
|
2515
|
+
setTime: (time: number) => number;
|
|
2516
|
+
setMilliseconds: (ms: number) => number;
|
|
2517
|
+
setUTCMilliseconds: (ms: number) => number;
|
|
2518
|
+
setSeconds: (sec: number, ms?: number | undefined) => number;
|
|
2519
|
+
setUTCSeconds: (sec: number, ms?: number | undefined) => number;
|
|
2520
|
+
setMinutes: (min: number, sec?: number | undefined, ms?: number | undefined) => number;
|
|
2521
|
+
setUTCMinutes: (min: number, sec?: number | undefined, ms?: number | undefined) => number;
|
|
2522
|
+
setHours: (hours: number, min?: number | undefined, sec?: number | undefined, ms?: number | undefined) => number;
|
|
2523
|
+
setUTCHours: (hours: number, min?: number | undefined, sec?: number | undefined, ms?: number | undefined) => number;
|
|
2524
|
+
setDate: (date: number) => number;
|
|
2525
|
+
setUTCDate: (date: number) => number;
|
|
2526
|
+
setMonth: (month: number, date?: number | undefined) => number;
|
|
2527
|
+
setUTCMonth: (month: number, date?: number | undefined) => number;
|
|
2528
|
+
setFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
2529
|
+
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
2530
|
+
toUTCString: () => string;
|
|
2531
|
+
toISOString: () => string;
|
|
2532
|
+
toJSON: (key?: any) => string;
|
|
2533
|
+
[Symbol.toPrimitive]: {
|
|
2534
|
+
(hint: "default"): string;
|
|
2535
|
+
(hint: "string"): string;
|
|
2536
|
+
(hint: "number"): number;
|
|
2537
|
+
(hint: string): string | number;
|
|
2538
|
+
};
|
|
2539
|
+
} | null | undefined;
|
|
2540
|
+
immediate?: boolean | undefined;
|
|
2541
|
+
content?: string | undefined;
|
|
2542
|
+
placeholder?: string | undefined;
|
|
2543
|
+
name?: string | undefined;
|
|
2544
|
+
props?: {
|
|
2545
|
+
[key: string]: any;
|
|
2546
|
+
} | undefined;
|
|
2547
|
+
attrs?: {
|
|
2548
|
+
[key: string]: any;
|
|
2549
|
+
} | undefined;
|
|
2550
|
+
children?: any[] | undefined;
|
|
2551
|
+
cellType?: "string" | "number" | undefined;
|
|
2552
|
+
};
|
|
2553
|
+
contentRender: {
|
|
2554
|
+
options?: any[] | undefined;
|
|
2555
|
+
optionProps?: {
|
|
2556
|
+
value?: string | undefined;
|
|
2557
|
+
label?: string | undefined;
|
|
2558
|
+
key?: string | undefined;
|
|
2559
|
+
} | undefined;
|
|
2560
|
+
optionGroups?: any[] | undefined;
|
|
2561
|
+
optionGroupProps?: {
|
|
2562
|
+
options?: string | undefined;
|
|
2563
|
+
label?: string | undefined;
|
|
2564
|
+
key?: string | undefined;
|
|
2565
|
+
} | undefined;
|
|
2566
|
+
name?: string | undefined;
|
|
2567
|
+
props?: {
|
|
2568
|
+
[key: string]: any;
|
|
2569
|
+
} | undefined;
|
|
2570
|
+
attrs?: {
|
|
2571
|
+
[key: string]: any;
|
|
2572
|
+
} | undefined;
|
|
2573
|
+
events?: {
|
|
2574
|
+
[key: string]: Function;
|
|
2575
|
+
} | undefined;
|
|
2576
|
+
children?: any[] | undefined;
|
|
2577
|
+
cellType?: "string" | "number" | undefined;
|
|
2578
|
+
};
|
|
2579
|
+
params: any;
|
|
2580
|
+
slots: {
|
|
2581
|
+
title?: string | ((params: import("vxe-table").VxeColumnPropTypes.HeaderSlotParams) => string[] | JSX.Element[] | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2582
|
+
[key: string]: any;
|
|
2583
|
+
}>[]) | null | undefined;
|
|
2584
|
+
radio?: string | ((params: import("vxe-table").VxeColumnPropTypes.DefaultSlotParams) => string[] | JSX.Element[] | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2585
|
+
[key: string]: any;
|
|
2586
|
+
}>[]) | null | undefined;
|
|
2587
|
+
checkbox?: string | ((params: import("vxe-table").VxeColumnPropTypes.DefaultSlotParams) => string[] | JSX.Element[] | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2588
|
+
[key: string]: any;
|
|
2589
|
+
}>[]) | null | undefined;
|
|
2590
|
+
default?: string | ((params: import("vxe-table").VxeColumnPropTypes.DefaultSlotParams) => string[] | JSX.Element[] | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2591
|
+
[key: string]: any;
|
|
2592
|
+
}>[]) | null | undefined;
|
|
2593
|
+
header?: string | ((params: import("vxe-table").VxeColumnPropTypes.HeaderSlotParams) => string[] | JSX.Element[] | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2594
|
+
[key: string]: any;
|
|
2595
|
+
}>[]) | null | undefined;
|
|
2596
|
+
footer?: string | ((params: import("vxe-table").VxeColumnPropTypes.FooterSlotParams) => string[] | JSX.Element[] | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2597
|
+
[key: string]: any;
|
|
2598
|
+
}>[]) | null | undefined;
|
|
2599
|
+
content?: string | ((params: import("vxe-table").VxeColumnPropTypes.ContentSlotParams) => string[] | JSX.Element[] | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2600
|
+
[key: string]: any;
|
|
2601
|
+
}>[]) | null | undefined;
|
|
2602
|
+
filter?: string | ((params: import("vxe-table").VxeColumnPropTypes.FilterSlotParams) => string[] | JSX.Element[] | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2603
|
+
[key: string]: any;
|
|
2604
|
+
}>[]) | null | undefined;
|
|
2605
|
+
edit?: string | ((params: import("vxe-table").VxeColumnPropTypes.EditSlotParams) => string[] | JSX.Element[] | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2606
|
+
[key: string]: any;
|
|
2607
|
+
}>[]) | null | undefined;
|
|
2608
|
+
icon?: string | ((params: import("vxe-table").VxeColumnPropTypes.IconSlotParams) => string[] | JSX.Element[] | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2609
|
+
[key: string]: any;
|
|
2610
|
+
}>[]) | null | undefined;
|
|
2611
|
+
};
|
|
2612
|
+
id: string;
|
|
2613
|
+
parentId: string;
|
|
2614
|
+
level: number;
|
|
2615
|
+
rowSpan: number;
|
|
2616
|
+
colSpan: number;
|
|
2617
|
+
halfVisible: boolean;
|
|
2618
|
+
defaultVisible: any;
|
|
2619
|
+
checked: boolean;
|
|
2620
|
+
halfChecked: boolean;
|
|
2621
|
+
disabled: boolean;
|
|
2622
|
+
order: "desc" | "asc" | null;
|
|
2623
|
+
sortTime: number;
|
|
2624
|
+
renderWidth: number;
|
|
2625
|
+
renderHeight: number;
|
|
2626
|
+
resizeWidth: number;
|
|
2627
|
+
model: {
|
|
2628
|
+
update: boolean;
|
|
2629
|
+
value: any;
|
|
2630
|
+
};
|
|
2631
|
+
children: any;
|
|
2632
|
+
renderHeader: (params: import("vxe-table").VxeTableDefines.CellRenderHeaderParams) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2633
|
+
[key: string]: any;
|
|
2634
|
+
}>[];
|
|
2635
|
+
renderCell: (params: import("vxe-table").VxeTableDefines.CellRenderCellParams) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2636
|
+
[key: string]: any;
|
|
2637
|
+
}>[];
|
|
2638
|
+
renderData: (params: import("vxe-table").VxeTableDefines.CellRenderDataParams) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2371
2639
|
[key: string]: any;
|
|
2372
|
-
}
|
|
2373
|
-
|
|
2640
|
+
}>[];
|
|
2641
|
+
renderFooter: (params: import("vxe-table").VxeTableDefines.CellRenderFooterParams) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2374
2642
|
[key: string]: any;
|
|
2375
|
-
}
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
} | undefined;
|
|
2379
|
-
children?: any[] | undefined;
|
|
2380
|
-
cellType?: "string" | "number" | undefined;
|
|
2643
|
+
}>[];
|
|
2644
|
+
getTitle: () => string;
|
|
2645
|
+
getKey: () => string;
|
|
2381
2646
|
};
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2647
|
+
length: number;
|
|
2648
|
+
toString: (() => string) & (() => string);
|
|
2649
|
+
toLocaleString: (() => string) & (() => string);
|
|
2650
|
+
pop: (() => import("vxe-table").VxeTableDefines.ColumnInfo | undefined) & (() => import("../../../es/components/iho-table/src/types").IhoTableFieldItem | undefined);
|
|
2651
|
+
push: ((...items: import("vxe-table").VxeTableDefines.ColumnInfo[]) => number) & ((...items: import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]) => number);
|
|
2652
|
+
concat: {
|
|
2653
|
+
(...items: ConcatArray<import("vxe-table").VxeTableDefines.ColumnInfo>[]): import("vxe-table").VxeTableDefines.ColumnInfo[];
|
|
2654
|
+
(...items: (import("vxe-table").VxeTableDefines.ColumnInfo | ConcatArray<import("vxe-table").VxeTableDefines.ColumnInfo>)[]): import("vxe-table").VxeTableDefines.ColumnInfo[];
|
|
2655
|
+
} & {
|
|
2656
|
+
(...items: ConcatArray<import("../../../es/components/iho-table/src/types").IhoTableFieldItem>[]): import("../../../es/components/iho-table/src/types").IhoTableFieldItem[];
|
|
2657
|
+
(...items: (import("../../../es/components/iho-table/src/types").IhoTableFieldItem | ConcatArray<import("../../../es/components/iho-table/src/types").IhoTableFieldItem>)[]): import("../../../es/components/iho-table/src/types").IhoTableFieldItem[];
|
|
2393
2658
|
};
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2659
|
+
join: ((separator?: string | undefined) => string) & ((separator?: string | undefined) => string);
|
|
2660
|
+
reverse: (() => import("vxe-table").VxeTableDefines.ColumnInfo[]) & (() => import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]);
|
|
2661
|
+
shift: (() => import("vxe-table").VxeTableDefines.ColumnInfo | undefined) & (() => import("../../../es/components/iho-table/src/types").IhoTableFieldItem | undefined);
|
|
2662
|
+
slice: ((start?: number | undefined, end?: number | undefined) => import("vxe-table").VxeTableDefines.ColumnInfo[]) & ((start?: number | undefined, end?: number | undefined) => import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]);
|
|
2663
|
+
sort: ((compareFn?: ((a: import("vxe-table").VxeTableDefines.ColumnInfo, b: import("vxe-table").VxeTableDefines.ColumnInfo) => number) | undefined) => import("vxe-table").VxeTableDefines.ColumnInfo[] & import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]) & ((compareFn?: ((a: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, b: import("../../../es/components/iho-table/src/types").IhoTableFieldItem) => number) | undefined) => import("vxe-table").VxeTableDefines.ColumnInfo[] & import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]);
|
|
2664
|
+
splice: {
|
|
2665
|
+
(start: number, deleteCount?: number | undefined): import("vxe-table").VxeTableDefines.ColumnInfo[];
|
|
2666
|
+
(start: number, deleteCount: number, ...items: import("vxe-table").VxeTableDefines.ColumnInfo[]): import("vxe-table").VxeTableDefines.ColumnInfo[];
|
|
2667
|
+
} & {
|
|
2668
|
+
(start: number, deleteCount?: number | undefined): import("../../../es/components/iho-table/src/types").IhoTableFieldItem[];
|
|
2669
|
+
(start: number, deleteCount: number, ...items: import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]): import("../../../es/components/iho-table/src/types").IhoTableFieldItem[];
|
|
2401
2670
|
};
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
key?: string | undefined;
|
|
2412
|
-
} | undefined;
|
|
2413
|
-
optionGroups?: any[] | undefined;
|
|
2414
|
-
optionGroupProps?: {
|
|
2415
|
-
options?: string | undefined;
|
|
2416
|
-
label?: string | undefined;
|
|
2417
|
-
key?: string | undefined;
|
|
2418
|
-
} | undefined;
|
|
2419
|
-
content?: string | undefined;
|
|
2420
|
-
name?: string | undefined;
|
|
2421
|
-
props?: {
|
|
2422
|
-
[key: string]: any;
|
|
2423
|
-
} | undefined;
|
|
2424
|
-
attrs?: {
|
|
2425
|
-
[key: string]: any;
|
|
2426
|
-
} | undefined;
|
|
2427
|
-
children?: any[] | undefined;
|
|
2428
|
-
cellType?: "string" | "number" | undefined;
|
|
2671
|
+
unshift: ((...items: import("vxe-table").VxeTableDefines.ColumnInfo[]) => number) & ((...items: import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]) => number);
|
|
2672
|
+
indexOf: ((searchElement: import("vxe-table").VxeTableDefines.ColumnInfo, fromIndex?: number | undefined) => number) & ((searchElement: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, fromIndex?: number | undefined) => number);
|
|
2673
|
+
lastIndexOf: ((searchElement: import("vxe-table").VxeTableDefines.ColumnInfo, fromIndex?: number | undefined) => number) & ((searchElement: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, fromIndex?: number | undefined) => number);
|
|
2674
|
+
every: {
|
|
2675
|
+
<S extends import("vxe-table").VxeTableDefines.ColumnInfo>(predicate: (value: import("vxe-table").VxeTableDefines.ColumnInfo, index: number, array: import("vxe-table").VxeTableDefines.ColumnInfo[]) => value is S, thisArg?: any): this is S[];
|
|
2676
|
+
(predicate: (value: import("vxe-table").VxeTableDefines.ColumnInfo, index: number, array: import("vxe-table").VxeTableDefines.ColumnInfo[]) => unknown, thisArg?: any): boolean;
|
|
2677
|
+
} & {
|
|
2678
|
+
<S_1 extends import("../../../es/components/iho-table/src/types").IhoTableFieldItem>(predicate: (value: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, index: number, array: import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]) => value is S_1, thisArg?: any): this is S_1[];
|
|
2679
|
+
(predicate: (value: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, index: number, array: import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]) => unknown, thisArg?: any): boolean;
|
|
2429
2680
|
};
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
key?: string | undefined;
|
|
2440
|
-
} | undefined;
|
|
2441
|
-
optionGroups?: any[] | undefined;
|
|
2442
|
-
optionGroupProps?: {
|
|
2443
|
-
options?: string | undefined;
|
|
2444
|
-
label?: string | undefined;
|
|
2445
|
-
key?: string | undefined;
|
|
2446
|
-
} | undefined;
|
|
2447
|
-
autofocus?: string | undefined;
|
|
2448
|
-
autoselect?: boolean | undefined;
|
|
2449
|
-
defaultValue?: string | number | object | any[] | ((params: {
|
|
2450
|
-
column: import("vxe-table").VxeTableDefines.ColumnInfo;
|
|
2451
|
-
}) => any) | {
|
|
2452
|
-
exec: (string: string) => RegExpExecArray | null;
|
|
2453
|
-
test: (string: string) => boolean;
|
|
2454
|
-
readonly source: string;
|
|
2455
|
-
readonly global: boolean;
|
|
2456
|
-
readonly ignoreCase: boolean;
|
|
2457
|
-
readonly multiline: boolean;
|
|
2458
|
-
lastIndex: number;
|
|
2459
|
-
compile: (pattern: string, flags?: string | undefined) => RegExp;
|
|
2460
|
-
readonly flags: string;
|
|
2461
|
-
readonly sticky: boolean;
|
|
2462
|
-
readonly unicode: boolean;
|
|
2463
|
-
readonly dotAll: boolean;
|
|
2464
|
-
[Symbol.match]: (string: string) => RegExpMatchArray | null;
|
|
2465
|
-
[Symbol.replace]: {
|
|
2466
|
-
(string: string, replaceValue: string): string;
|
|
2467
|
-
(string: string, replacer: (substring: string, ...args: any[]) => string): string;
|
|
2468
|
-
};
|
|
2469
|
-
[Symbol.search]: (string: string) => number;
|
|
2470
|
-
[Symbol.split]: (string: string, limit?: number | undefined) => string[];
|
|
2471
|
-
[Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
|
|
2472
|
-
} | {
|
|
2473
|
-
toString: () => string;
|
|
2474
|
-
toDateString: () => string;
|
|
2475
|
-
toTimeString: () => string;
|
|
2476
|
-
toLocaleString: {
|
|
2477
|
-
(): string;
|
|
2478
|
-
(locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
|
|
2479
|
-
(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
|
|
2480
|
-
};
|
|
2481
|
-
toLocaleDateString: {
|
|
2482
|
-
(): string;
|
|
2483
|
-
(locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
|
|
2484
|
-
(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
|
|
2485
|
-
};
|
|
2486
|
-
toLocaleTimeString: {
|
|
2487
|
-
(): string;
|
|
2488
|
-
(locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
|
|
2489
|
-
(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
|
|
2490
|
-
};
|
|
2491
|
-
valueOf: () => number;
|
|
2492
|
-
getTime: () => number;
|
|
2493
|
-
getFullYear: () => number;
|
|
2494
|
-
getUTCFullYear: () => number;
|
|
2495
|
-
getMonth: () => number;
|
|
2496
|
-
getUTCMonth: () => number;
|
|
2497
|
-
getDate: () => number;
|
|
2498
|
-
getUTCDate: () => number;
|
|
2499
|
-
getDay: () => number;
|
|
2500
|
-
getUTCDay: () => number;
|
|
2501
|
-
getHours: () => number;
|
|
2502
|
-
getUTCHours: () => number;
|
|
2503
|
-
getMinutes: () => number;
|
|
2504
|
-
getUTCMinutes: () => number;
|
|
2505
|
-
getSeconds: () => number;
|
|
2506
|
-
getUTCSeconds: () => number;
|
|
2507
|
-
getMilliseconds: () => number;
|
|
2508
|
-
getUTCMilliseconds: () => number;
|
|
2509
|
-
getTimezoneOffset: () => number;
|
|
2510
|
-
setTime: (time: number) => number;
|
|
2511
|
-
setMilliseconds: (ms: number) => number;
|
|
2512
|
-
setUTCMilliseconds: (ms: number) => number;
|
|
2513
|
-
setSeconds: (sec: number, ms?: number | undefined) => number;
|
|
2514
|
-
setUTCSeconds: (sec: number, ms?: number | undefined) => number;
|
|
2515
|
-
setMinutes: (min: number, sec?: number | undefined, ms?: number | undefined) => number;
|
|
2516
|
-
setUTCMinutes: (min: number, sec?: number | undefined, ms?: number | undefined) => number;
|
|
2517
|
-
setHours: (hours: number, min?: number | undefined, sec?: number | undefined, ms?: number | undefined) => number;
|
|
2518
|
-
setUTCHours: (hours: number, min?: number | undefined, sec?: number | undefined, ms?: number | undefined) => number;
|
|
2519
|
-
setDate: (date: number) => number;
|
|
2520
|
-
setUTCDate: (date: number) => number;
|
|
2521
|
-
setMonth: (month: number, date?: number | undefined) => number;
|
|
2522
|
-
setUTCMonth: (month: number, date?: number | undefined) => number;
|
|
2523
|
-
setFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
2524
|
-
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
2525
|
-
toUTCString: () => string;
|
|
2526
|
-
toISOString: () => string;
|
|
2527
|
-
toJSON: (key?: any) => string;
|
|
2528
|
-
[Symbol.toPrimitive]: {
|
|
2529
|
-
(hint: "default"): string;
|
|
2530
|
-
(hint: "string"): string;
|
|
2531
|
-
(hint: "number"): number;
|
|
2532
|
-
(hint: string): string | number;
|
|
2533
|
-
};
|
|
2534
|
-
} | null | undefined;
|
|
2535
|
-
immediate?: boolean | undefined;
|
|
2536
|
-
content?: string | undefined;
|
|
2537
|
-
placeholder?: string | undefined;
|
|
2538
|
-
name?: string | undefined;
|
|
2539
|
-
props?: {
|
|
2540
|
-
[key: string]: any;
|
|
2541
|
-
} | undefined;
|
|
2542
|
-
attrs?: {
|
|
2543
|
-
[key: string]: any;
|
|
2544
|
-
} | undefined;
|
|
2545
|
-
children?: any[] | undefined;
|
|
2546
|
-
cellType?: "string" | "number" | undefined;
|
|
2681
|
+
some: ((predicate: (value: import("vxe-table").VxeTableDefines.ColumnInfo, index: number, array: import("vxe-table").VxeTableDefines.ColumnInfo[]) => unknown, thisArg?: any) => boolean) & ((predicate: (value: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, index: number, array: import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]) => unknown, thisArg?: any) => boolean);
|
|
2682
|
+
forEach: ((callbackfn: (value: import("vxe-table").VxeTableDefines.ColumnInfo, index: number, array: import("vxe-table").VxeTableDefines.ColumnInfo[]) => void, thisArg?: any) => void) & ((callbackfn: (value: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, index: number, array: import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]) => void, thisArg?: any) => void);
|
|
2683
|
+
map: (<U>(callbackfn: (value: import("vxe-table").VxeTableDefines.ColumnInfo, index: number, array: import("vxe-table").VxeTableDefines.ColumnInfo[]) => U, thisArg?: any) => U[]) & (<U_1>(callbackfn: (value: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, index: number, array: import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]) => U_1, thisArg?: any) => U_1[]);
|
|
2684
|
+
filter: {
|
|
2685
|
+
<S_2 extends import("vxe-table").VxeTableDefines.ColumnInfo>(predicate: (value: import("vxe-table").VxeTableDefines.ColumnInfo, index: number, array: import("vxe-table").VxeTableDefines.ColumnInfo[]) => value is S_2, thisArg?: any): S_2[];
|
|
2686
|
+
(predicate: (value: import("vxe-table").VxeTableDefines.ColumnInfo, index: number, array: import("vxe-table").VxeTableDefines.ColumnInfo[]) => unknown, thisArg?: any): import("vxe-table").VxeTableDefines.ColumnInfo[];
|
|
2687
|
+
} & {
|
|
2688
|
+
<S_3 extends import("../../../es/components/iho-table/src/types").IhoTableFieldItem>(predicate: (value: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, index: number, array: import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]) => value is S_3, thisArg?: any): S_3[];
|
|
2689
|
+
(predicate: (value: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, index: number, array: import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]) => unknown, thisArg?: any): import("../../../es/components/iho-table/src/types").IhoTableFieldItem[];
|
|
2547
2690
|
};
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
optionGroupProps?: {
|
|
2557
|
-
options?: string | undefined;
|
|
2558
|
-
label?: string | undefined;
|
|
2559
|
-
key?: string | undefined;
|
|
2560
|
-
} | undefined;
|
|
2561
|
-
name?: string | undefined;
|
|
2562
|
-
props?: {
|
|
2563
|
-
[key: string]: any;
|
|
2564
|
-
} | undefined;
|
|
2565
|
-
attrs?: {
|
|
2566
|
-
[key: string]: any;
|
|
2567
|
-
} | undefined;
|
|
2568
|
-
events?: {
|
|
2569
|
-
[key: string]: Function;
|
|
2570
|
-
} | undefined;
|
|
2571
|
-
children?: any[] | undefined;
|
|
2572
|
-
cellType?: "string" | "number" | undefined;
|
|
2691
|
+
reduce: {
|
|
2692
|
+
(callbackfn: (previousValue: import("vxe-table").VxeTableDefines.ColumnInfo, currentValue: import("vxe-table").VxeTableDefines.ColumnInfo, currentIndex: number, array: import("vxe-table").VxeTableDefines.ColumnInfo[]) => import("vxe-table").VxeTableDefines.ColumnInfo): import("vxe-table").VxeTableDefines.ColumnInfo;
|
|
2693
|
+
(callbackfn: (previousValue: import("vxe-table").VxeTableDefines.ColumnInfo, currentValue: import("vxe-table").VxeTableDefines.ColumnInfo, currentIndex: number, array: import("vxe-table").VxeTableDefines.ColumnInfo[]) => import("vxe-table").VxeTableDefines.ColumnInfo, initialValue: import("vxe-table").VxeTableDefines.ColumnInfo): import("vxe-table").VxeTableDefines.ColumnInfo;
|
|
2694
|
+
<U_2>(callbackfn: (previousValue: U_2, currentValue: import("vxe-table").VxeTableDefines.ColumnInfo, currentIndex: number, array: import("vxe-table").VxeTableDefines.ColumnInfo[]) => U_2, initialValue: U_2): U_2;
|
|
2695
|
+
} & {
|
|
2696
|
+
(callbackfn: (previousValue: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, currentValue: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, currentIndex: number, array: import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]) => import("../../../es/components/iho-table/src/types").IhoTableFieldItem): import("../../../es/components/iho-table/src/types").IhoTableFieldItem;
|
|
2697
|
+
(callbackfn: (previousValue: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, currentValue: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, currentIndex: number, array: import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]) => import("../../../es/components/iho-table/src/types").IhoTableFieldItem, initialValue: import("../../../es/components/iho-table/src/types").IhoTableFieldItem): import("../../../es/components/iho-table/src/types").IhoTableFieldItem;
|
|
2698
|
+
<U_3>(callbackfn: (previousValue: U_3, currentValue: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, currentIndex: number, array: import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]) => U_3, initialValue: U_3): U_3;
|
|
2573
2699
|
};
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
checkbox?: string | ((params: import("vxe-table").VxeColumnPropTypes.DefaultSlotParams) => string[] | JSX.Element[] | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2583
|
-
[key: string]: any;
|
|
2584
|
-
}>[]) | null | undefined;
|
|
2585
|
-
default?: string | ((params: import("vxe-table").VxeColumnPropTypes.DefaultSlotParams) => string[] | JSX.Element[] | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2586
|
-
[key: string]: any;
|
|
2587
|
-
}>[]) | null | undefined;
|
|
2588
|
-
header?: string | ((params: import("vxe-table").VxeColumnPropTypes.HeaderSlotParams) => string[] | JSX.Element[] | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2589
|
-
[key: string]: any;
|
|
2590
|
-
}>[]) | null | undefined;
|
|
2591
|
-
footer?: string | ((params: import("vxe-table").VxeColumnPropTypes.FooterSlotParams) => string[] | JSX.Element[] | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2592
|
-
[key: string]: any;
|
|
2593
|
-
}>[]) | null | undefined;
|
|
2594
|
-
content?: string | ((params: import("vxe-table").VxeColumnPropTypes.ContentSlotParams) => string[] | JSX.Element[] | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2595
|
-
[key: string]: any;
|
|
2596
|
-
}>[]) | null | undefined;
|
|
2597
|
-
filter?: string | ((params: import("vxe-table").VxeColumnPropTypes.FilterSlotParams) => string[] | JSX.Element[] | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2598
|
-
[key: string]: any;
|
|
2599
|
-
}>[]) | null | undefined;
|
|
2600
|
-
edit?: string | ((params: import("vxe-table").VxeColumnPropTypes.EditSlotParams) => string[] | JSX.Element[] | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2601
|
-
[key: string]: any;
|
|
2602
|
-
}>[]) | null | undefined;
|
|
2603
|
-
icon?: string | ((params: import("vxe-table").VxeColumnPropTypes.IconSlotParams) => string[] | JSX.Element[] | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2604
|
-
[key: string]: any;
|
|
2605
|
-
}>[]) | null | undefined;
|
|
2700
|
+
reduceRight: {
|
|
2701
|
+
(callbackfn: (previousValue: import("vxe-table").VxeTableDefines.ColumnInfo, currentValue: import("vxe-table").VxeTableDefines.ColumnInfo, currentIndex: number, array: import("vxe-table").VxeTableDefines.ColumnInfo[]) => import("vxe-table").VxeTableDefines.ColumnInfo): import("vxe-table").VxeTableDefines.ColumnInfo;
|
|
2702
|
+
(callbackfn: (previousValue: import("vxe-table").VxeTableDefines.ColumnInfo, currentValue: import("vxe-table").VxeTableDefines.ColumnInfo, currentIndex: number, array: import("vxe-table").VxeTableDefines.ColumnInfo[]) => import("vxe-table").VxeTableDefines.ColumnInfo, initialValue: import("vxe-table").VxeTableDefines.ColumnInfo): import("vxe-table").VxeTableDefines.ColumnInfo;
|
|
2703
|
+
<U_4>(callbackfn: (previousValue: U_4, currentValue: import("vxe-table").VxeTableDefines.ColumnInfo, currentIndex: number, array: import("vxe-table").VxeTableDefines.ColumnInfo[]) => U_4, initialValue: U_4): U_4;
|
|
2704
|
+
} & {
|
|
2705
|
+
(callbackfn: (previousValue: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, currentValue: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, currentIndex: number, array: import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]) => import("../../../es/components/iho-table/src/types").IhoTableFieldItem): import("../../../es/components/iho-table/src/types").IhoTableFieldItem;
|
|
2706
|
+
(callbackfn: (previousValue: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, currentValue: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, currentIndex: number, array: import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]) => import("../../../es/components/iho-table/src/types").IhoTableFieldItem, initialValue: import("../../../es/components/iho-table/src/types").IhoTableFieldItem): import("../../../es/components/iho-table/src/types").IhoTableFieldItem;
|
|
2707
|
+
<U_5>(callbackfn: (previousValue: U_5, currentValue: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, currentIndex: number, array: import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]) => U_5, initialValue: U_5): U_5;
|
|
2606
2708
|
};
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
defaultVisible: any;
|
|
2614
|
-
checked: boolean;
|
|
2615
|
-
halfChecked: boolean;
|
|
2616
|
-
disabled: boolean;
|
|
2617
|
-
order: import("vxe-table").VxeTablePropTypes.SortOrder;
|
|
2618
|
-
sortTime: number;
|
|
2619
|
-
renderWidth: number;
|
|
2620
|
-
renderHeight: number;
|
|
2621
|
-
resizeWidth: number;
|
|
2622
|
-
model: {
|
|
2623
|
-
update: boolean;
|
|
2624
|
-
value: any;
|
|
2709
|
+
find: {
|
|
2710
|
+
<S_4 extends import("vxe-table").VxeTableDefines.ColumnInfo>(predicate: (this: void, value: import("vxe-table").VxeTableDefines.ColumnInfo, index: number, obj: import("vxe-table").VxeTableDefines.ColumnInfo[]) => value is S_4, thisArg?: any): S_4 | undefined;
|
|
2711
|
+
(predicate: (value: import("vxe-table").VxeTableDefines.ColumnInfo, index: number, obj: import("vxe-table").VxeTableDefines.ColumnInfo[]) => unknown, thisArg?: any): import("vxe-table").VxeTableDefines.ColumnInfo | undefined;
|
|
2712
|
+
} & {
|
|
2713
|
+
<S_5 extends import("../../../es/components/iho-table/src/types").IhoTableFieldItem>(predicate: (this: void, value: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, index: number, obj: import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]) => value is S_5, thisArg?: any): S_5 | undefined;
|
|
2714
|
+
(predicate: (value: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, index: number, obj: import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]) => unknown, thisArg?: any): import("../../../es/components/iho-table/src/types").IhoTableFieldItem | undefined;
|
|
2625
2715
|
};
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
|
|
2636
|
-
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2716
|
+
findIndex: ((predicate: (value: import("vxe-table").VxeTableDefines.ColumnInfo, index: number, obj: import("vxe-table").VxeTableDefines.ColumnInfo[]) => unknown, thisArg?: any) => number) & ((predicate: (value: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, index: number, obj: import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]) => unknown, thisArg?: any) => number);
|
|
2717
|
+
fill: ((value: import("vxe-table").VxeTableDefines.ColumnInfo, start?: number | undefined, end?: number | undefined) => import("vxe-table").VxeTableDefines.ColumnInfo[] & import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]) & ((value: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, start?: number | undefined, end?: number | undefined) => import("vxe-table").VxeTableDefines.ColumnInfo[] & import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]);
|
|
2718
|
+
copyWithin: ((target: number, start: number, end?: number | undefined) => import("vxe-table").VxeTableDefines.ColumnInfo[] & import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]) & ((target: number, start: number, end?: number | undefined) => import("vxe-table").VxeTableDefines.ColumnInfo[] & import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]);
|
|
2719
|
+
entries: (() => IterableIterator<[number, import("vxe-table").VxeTableDefines.ColumnInfo]>) & (() => IterableIterator<[number, import("../../../es/components/iho-table/src/types").IhoTableFieldItem]>);
|
|
2720
|
+
keys: (() => IterableIterator<number>) & (() => IterableIterator<number>);
|
|
2721
|
+
values: (() => IterableIterator<import("vxe-table").VxeTableDefines.ColumnInfo>) & (() => IterableIterator<import("../../../es/components/iho-table/src/types").IhoTableFieldItem>);
|
|
2722
|
+
includes: ((searchElement: import("vxe-table").VxeTableDefines.ColumnInfo, fromIndex?: number | undefined) => boolean) & ((searchElement: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, fromIndex?: number | undefined) => boolean);
|
|
2723
|
+
flatMap: (<U_6, This = undefined>(callback: (this: This, value: import("vxe-table").VxeTableDefines.ColumnInfo, index: number, array: import("vxe-table").VxeTableDefines.ColumnInfo[]) => U_6 | readonly U_6[], thisArg?: This | undefined) => U_6[]) & (<U_7, This_1 = undefined>(callback: (this: This_1, value: import("../../../es/components/iho-table/src/types").IhoTableFieldItem, index: number, array: import("../../../es/components/iho-table/src/types").IhoTableFieldItem[]) => U_7 | readonly U_7[], thisArg?: This_1 | undefined) => U_7[]);
|
|
2724
|
+
flat: (<A, D extends number = 1>(this: A, depth?: D | undefined) => FlatArray<A, D>[]) & (<A_1, D_1 extends number = 1>(this: A_1, depth?: D_1 | undefined) => FlatArray<A_1, D_1>[]);
|
|
2725
|
+
[Symbol.iterator]: (() => IterableIterator<import("vxe-table").VxeTableDefines.ColumnInfo>) & (() => IterableIterator<import("../../../es/components/iho-table/src/types").IhoTableFieldItem>);
|
|
2726
|
+
[Symbol.unscopables]: (() => {
|
|
2727
|
+
copyWithin: boolean;
|
|
2728
|
+
entries: boolean;
|
|
2729
|
+
fill: boolean;
|
|
2730
|
+
find: boolean;
|
|
2731
|
+
findIndex: boolean;
|
|
2732
|
+
keys: boolean;
|
|
2733
|
+
values: boolean;
|
|
2734
|
+
}) & (() => {
|
|
2735
|
+
copyWithin: boolean;
|
|
2736
|
+
entries: boolean;
|
|
2737
|
+
fill: boolean;
|
|
2738
|
+
find: boolean;
|
|
2739
|
+
findIndex: boolean;
|
|
2740
|
+
keys: boolean;
|
|
2741
|
+
values: boolean;
|
|
2742
|
+
});
|
|
2743
|
+
at: ((index: number) => import("vxe-table").VxeTableDefines.ColumnInfo | undefined) & ((index: number) => import("../../../es/components/iho-table/src/types").IhoTableFieldItem | undefined);
|
|
2744
|
+
} | undefined;
|
|
2642
2745
|
renderHeader?: ((params: import("vxe-table").VxeTableDefines.CellRenderHeaderParams) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2643
2746
|
[key: string]: any;
|
|
2644
2747
|
}>[]) | undefined;
|
|
@@ -2654,7 +2757,8 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2654
2757
|
getTitle?: (() => string) | undefined;
|
|
2655
2758
|
getKey?: (() => string) | undefined;
|
|
2656
2759
|
}[]>;
|
|
2657
|
-
|
|
2760
|
+
updateFieldListRef: (fieldList?: import("../../../es/components/iho-table/src/types").LowCodeTableFieldItem[] | undefined, config?: import("../../../es/components/iho-table/src/types").IhoTableConfig | undefined) => void;
|
|
2761
|
+
eventHookHandler: Record<keyof import("vxe-table").VxeTableEventProps, any>;
|
|
2658
2762
|
bindProperties: import("vue").ComputedRef<{
|
|
2659
2763
|
onCopy: any;
|
|
2660
2764
|
onCut: any;
|
|
@@ -2717,6 +2821,7 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2717
2821
|
onActiveCellChangeEnd: any;
|
|
2718
2822
|
showSeq?: boolean | undefined;
|
|
2719
2823
|
selectType?: "checkbox" | "radio" | null | undefined;
|
|
2824
|
+
groupSetting?: {} | undefined;
|
|
2720
2825
|
size?: import("vxe-table").SizeType | undefined;
|
|
2721
2826
|
id?: string | undefined;
|
|
2722
2827
|
data?: any[] | undefined;
|
|
@@ -2877,9 +2982,7 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2877
2982
|
} | undefined;
|
|
2878
2983
|
autofocus?: string | undefined;
|
|
2879
2984
|
autoselect?: boolean | undefined;
|
|
2880
|
-
defaultValue?: string | number | object | any[] |
|
|
2881
|
-
column: import("vxe-table").VxeTableDefines.ColumnInfo;
|
|
2882
|
-
}) => any) | {
|
|
2985
|
+
defaultValue?: string | number | object | any[] | {
|
|
2883
2986
|
exec: (string: string) => RegExpExecArray | null;
|
|
2884
2987
|
test: (string: string) => boolean;
|
|
2885
2988
|
readonly source: string;
|
|
@@ -2900,7 +3003,9 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2900
3003
|
[Symbol.search]: (string: string) => number;
|
|
2901
3004
|
[Symbol.split]: (string: string, limit?: number | undefined) => string[];
|
|
2902
3005
|
[Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
|
|
2903
|
-
} | {
|
|
3006
|
+
} | ((params: {
|
|
3007
|
+
column: import("vxe-table").VxeTableDefines.ColumnInfo;
|
|
3008
|
+
}) => any) | {
|
|
2904
3009
|
toString: () => string;
|
|
2905
3010
|
toDateString: () => string;
|
|
2906
3011
|
toTimeString: () => string;
|
|
@@ -3200,9 +3305,7 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3200
3305
|
} | undefined;
|
|
3201
3306
|
autofocus?: string | undefined;
|
|
3202
3307
|
autoselect?: boolean | undefined;
|
|
3203
|
-
defaultValue?: string | number | object | any[] |
|
|
3204
|
-
column: import("vxe-table").VxeTableDefines.ColumnInfo;
|
|
3205
|
-
}) => any) | {
|
|
3308
|
+
defaultValue?: string | number | object | any[] | {
|
|
3206
3309
|
exec: (string: string) => RegExpExecArray | null;
|
|
3207
3310
|
test: (string: string) => boolean;
|
|
3208
3311
|
readonly source: string;
|
|
@@ -3223,7 +3326,9 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3223
3326
|
[Symbol.search]: (string: string) => number;
|
|
3224
3327
|
[Symbol.split]: (string: string, limit?: number | undefined) => string[];
|
|
3225
3328
|
[Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
|
|
3226
|
-
} | {
|
|
3329
|
+
} | ((params: {
|
|
3330
|
+
column: import("vxe-table").VxeTableDefines.ColumnInfo;
|
|
3331
|
+
}) => any) | {
|
|
3227
3332
|
toString: () => string;
|
|
3228
3333
|
toDateString: () => string;
|
|
3229
3334
|
toTimeString: () => string;
|
|
@@ -3682,9 +3787,7 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3682
3787
|
} | undefined;
|
|
3683
3788
|
autofocus?: string | undefined;
|
|
3684
3789
|
autoselect?: boolean | undefined;
|
|
3685
|
-
defaultValue?: string | number | object | any[] |
|
|
3686
|
-
column: import("vxe-table").VxeTableDefines.ColumnInfo;
|
|
3687
|
-
}) => any) | {
|
|
3790
|
+
defaultValue?: string | number | object | any[] | {
|
|
3688
3791
|
exec: (string: string) => RegExpExecArray | null;
|
|
3689
3792
|
test: (string: string) => boolean;
|
|
3690
3793
|
readonly source: string;
|
|
@@ -3705,7 +3808,9 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3705
3808
|
[Symbol.search]: (string: string) => number;
|
|
3706
3809
|
[Symbol.split]: (string: string, limit?: number | undefined) => string[];
|
|
3707
3810
|
[Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
|
|
3708
|
-
} | {
|
|
3811
|
+
} | ((params: {
|
|
3812
|
+
column: import("vxe-table").VxeTableDefines.ColumnInfo;
|
|
3813
|
+
}) => any) | {
|
|
3709
3814
|
toString: () => string;
|
|
3710
3815
|
toDateString: () => string;
|
|
3711
3816
|
toTimeString: () => string;
|
|
@@ -4061,9 +4166,7 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4061
4166
|
} | undefined;
|
|
4062
4167
|
autofocus?: string | undefined;
|
|
4063
4168
|
autoselect?: boolean | undefined;
|
|
4064
|
-
defaultValue?: string | number | object | any[] |
|
|
4065
|
-
column: import("vxe-table").VxeTableDefines.ColumnInfo;
|
|
4066
|
-
}) => any) | {
|
|
4169
|
+
defaultValue?: string | number | object | any[] | {
|
|
4067
4170
|
exec: (string: string) => RegExpExecArray | null;
|
|
4068
4171
|
test: (string: string) => boolean;
|
|
4069
4172
|
readonly source: string;
|
|
@@ -4084,7 +4187,9 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4084
4187
|
[Symbol.search]: (string: string) => number;
|
|
4085
4188
|
[Symbol.split]: (string: string, limit?: number | undefined) => string[];
|
|
4086
4189
|
[Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
|
|
4087
|
-
} | {
|
|
4190
|
+
} | ((params: {
|
|
4191
|
+
column: import("vxe-table").VxeTableDefines.ColumnInfo;
|
|
4192
|
+
}) => any) | {
|
|
4088
4193
|
toString: () => string;
|
|
4089
4194
|
toDateString: () => string;
|
|
4090
4195
|
toTimeString: () => string;
|
|
@@ -4713,13 +4818,13 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4713
4818
|
required: true;
|
|
4714
4819
|
};
|
|
4715
4820
|
tableData: {
|
|
4716
|
-
type: import("vue").PropType<import("../../../es/shared/types").AnyObject>;
|
|
4821
|
+
type: import("vue").PropType<import("../../../es/shared/types").AnyObject[]>;
|
|
4717
4822
|
default: () => never[];
|
|
4718
4823
|
};
|
|
4719
4824
|
}>> & {
|
|
4720
4825
|
onFormChange?: ((...args: any[]) => any) | undefined;
|
|
4721
4826
|
onSettingClick?: ((...args: any[]) => any) | undefined;
|
|
4722
4827
|
}, {
|
|
4723
|
-
tableData: import("../../../es/shared/types").AnyObject;
|
|
4828
|
+
tableData: import("../../../es/shared/types").AnyObject[];
|
|
4724
4829
|
}>>;
|
|
4725
4830
|
export default IhoTable;
|