cnhis-design-vue 3.1.57-beta.13 → 3.1.57-beta.15

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.
@@ -310,29 +310,6 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
310
310
  autofocus?: string | undefined;
311
311
  autoselect?: boolean | undefined;
312
312
  defaultValue?: string | number | object | any[] | {
313
- exec: (string: string) => RegExpExecArray | null;
314
- test: (string: string) => boolean;
315
- readonly source: string;
316
- readonly global: boolean;
317
- readonly ignoreCase: boolean;
318
- readonly multiline: boolean;
319
- lastIndex: number;
320
- compile: (pattern: string, flags?: string | undefined) => RegExp;
321
- readonly flags: string;
322
- readonly sticky: boolean;
323
- readonly unicode: boolean;
324
- readonly dotAll: boolean;
325
- [Symbol.match]: (string: string) => RegExpMatchArray | null;
326
- [Symbol.replace]: {
327
- (string: string, replaceValue: string): string;
328
- (string: string, replacer: (substring: string, ...args: any[]) => string): string;
329
- };
330
- [Symbol.search]: (string: string) => number;
331
- [Symbol.split]: (string: string, limit?: number | undefined) => string[];
332
- [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
333
- } | ((params: {
334
- column: import("vxe-table").VxeTableDefines.ColumnInfo;
335
- }) => any) | {
336
313
  toString: () => string;
337
314
  toDateString: () => string;
338
315
  toTimeString: () => string;
@@ -394,7 +371,30 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
394
371
  (hint: "number"): number;
395
372
  (hint: string): string | number;
396
373
  };
397
- } | null | undefined;
374
+ } | {
375
+ exec: (string: string) => RegExpExecArray | null;
376
+ test: (string: string) => boolean;
377
+ readonly source: string;
378
+ readonly global: boolean;
379
+ readonly ignoreCase: boolean;
380
+ readonly multiline: boolean;
381
+ lastIndex: number;
382
+ compile: (pattern: string, flags?: string | undefined) => RegExp;
383
+ readonly flags: string;
384
+ readonly sticky: boolean;
385
+ readonly unicode: boolean;
386
+ readonly dotAll: boolean;
387
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
388
+ [Symbol.replace]: {
389
+ (string: string, replaceValue: string): string;
390
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
391
+ };
392
+ [Symbol.search]: (string: string) => number;
393
+ [Symbol.split]: (string: string, limit?: number | undefined) => string[];
394
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
395
+ } | ((params: {
396
+ column: import("vxe-table").VxeTableDefines.ColumnInfo;
397
+ }) => any) | null | undefined;
398
398
  immediate?: boolean | undefined;
399
399
  content?: string | undefined;
400
400
  placeholder?: string | undefined;
@@ -613,29 +613,6 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
613
613
  autofocus?: string | undefined;
614
614
  autoselect?: boolean | undefined;
615
615
  defaultValue?: string | number | object | any[] | {
616
- exec: (string: string) => RegExpExecArray | null;
617
- test: (string: string) => boolean;
618
- readonly source: string;
619
- readonly global: boolean;
620
- readonly ignoreCase: boolean;
621
- readonly multiline: boolean;
622
- lastIndex: number;
623
- compile: (pattern: string, flags?: string | undefined) => RegExp;
624
- readonly flags: string;
625
- readonly sticky: boolean;
626
- readonly unicode: boolean;
627
- readonly dotAll: boolean;
628
- [Symbol.match]: (string: string) => RegExpMatchArray | null;
629
- [Symbol.replace]: {
630
- (string: string, replaceValue: string): string;
631
- (string: string, replacer: (substring: string, ...args: any[]) => string): string;
632
- };
633
- [Symbol.search]: (string: string) => number;
634
- [Symbol.split]: (string: string, limit?: number | undefined) => string[];
635
- [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
636
- } | ((params: {
637
- column: import("vxe-table").VxeTableDefines.ColumnInfo;
638
- }) => any) | {
639
616
  toString: () => string;
640
617
  toDateString: () => string;
641
618
  toTimeString: () => string;
@@ -697,7 +674,30 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
697
674
  (hint: "number"): number;
698
675
  (hint: string): string | number;
699
676
  };
700
- } | null | undefined;
677
+ } | {
678
+ exec: (string: string) => RegExpExecArray | null;
679
+ test: (string: string) => boolean;
680
+ readonly source: string;
681
+ readonly global: boolean;
682
+ readonly ignoreCase: boolean;
683
+ readonly multiline: boolean;
684
+ lastIndex: number;
685
+ compile: (pattern: string, flags?: string | undefined) => RegExp;
686
+ readonly flags: string;
687
+ readonly sticky: boolean;
688
+ readonly unicode: boolean;
689
+ readonly dotAll: boolean;
690
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
691
+ [Symbol.replace]: {
692
+ (string: string, replaceValue: string): string;
693
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
694
+ };
695
+ [Symbol.search]: (string: string) => number;
696
+ [Symbol.split]: (string: string, limit?: number | undefined) => string[];
697
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
698
+ } | ((params: {
699
+ column: import("vxe-table").VxeTableDefines.ColumnInfo;
700
+ }) => any) | null | undefined;
701
701
  immediate?: boolean | undefined;
702
702
  content?: string | undefined;
703
703
  placeholder?: string | undefined;
@@ -1104,29 +1104,6 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
1104
1104
  autofocus?: string | undefined;
1105
1105
  autoselect?: boolean | undefined;
1106
1106
  defaultValue?: string | number | object | any[] | {
1107
- exec: (string: string) => RegExpExecArray | null;
1108
- test: (string: string) => boolean;
1109
- readonly source: string;
1110
- readonly global: boolean;
1111
- readonly ignoreCase: boolean;
1112
- readonly multiline: boolean;
1113
- lastIndex: number;
1114
- compile: (pattern: string, flags?: string | undefined) => RegExp;
1115
- readonly flags: string;
1116
- readonly sticky: boolean;
1117
- readonly unicode: boolean;
1118
- readonly dotAll: boolean;
1119
- [Symbol.match]: (string: string) => RegExpMatchArray | null;
1120
- [Symbol.replace]: {
1121
- (string: string, replaceValue: string): string;
1122
- (string: string, replacer: (substring: string, ...args: any[]) => string): string;
1123
- };
1124
- [Symbol.search]: (string: string) => number;
1125
- [Symbol.split]: (string: string, limit?: number | undefined) => string[];
1126
- [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
1127
- } | ((params: {
1128
- column: import("vxe-table").VxeTableDefines.ColumnInfo;
1129
- }) => any) | {
1130
1107
  toString: () => string;
1131
1108
  toDateString: () => string;
1132
1109
  toTimeString: () => string;
@@ -1188,7 +1165,30 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
1188
1165
  (hint: "number"): number;
1189
1166
  (hint: string): string | number;
1190
1167
  };
1191
- } | null | undefined;
1168
+ } | {
1169
+ exec: (string: string) => RegExpExecArray | null;
1170
+ test: (string: string) => boolean;
1171
+ readonly source: string;
1172
+ readonly global: boolean;
1173
+ readonly ignoreCase: boolean;
1174
+ readonly multiline: boolean;
1175
+ lastIndex: number;
1176
+ compile: (pattern: string, flags?: string | undefined) => RegExp;
1177
+ readonly flags: string;
1178
+ readonly sticky: boolean;
1179
+ readonly unicode: boolean;
1180
+ readonly dotAll: boolean;
1181
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
1182
+ [Symbol.replace]: {
1183
+ (string: string, replaceValue: string): string;
1184
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
1185
+ };
1186
+ [Symbol.search]: (string: string) => number;
1187
+ [Symbol.split]: (string: string, limit?: number | undefined) => string[];
1188
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
1189
+ } | ((params: {
1190
+ column: import("vxe-table").VxeTableDefines.ColumnInfo;
1191
+ }) => any) | null | undefined;
1192
1192
  immediate?: boolean | undefined;
1193
1193
  content?: string | undefined;
1194
1194
  placeholder?: string | undefined;
@@ -1463,29 +1463,6 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
1463
1463
  autofocus?: string | undefined;
1464
1464
  autoselect?: boolean | undefined;
1465
1465
  defaultValue?: string | number | object | any[] | {
1466
- exec: (string: string) => RegExpExecArray | null;
1467
- test: (string: string) => boolean;
1468
- readonly source: string;
1469
- readonly global: boolean;
1470
- readonly ignoreCase: boolean;
1471
- readonly multiline: boolean;
1472
- lastIndex: number;
1473
- compile: (pattern: string, flags?: string | undefined) => RegExp;
1474
- readonly flags: string;
1475
- readonly sticky: boolean;
1476
- readonly unicode: boolean;
1477
- readonly dotAll: boolean;
1478
- [Symbol.match]: (string: string) => RegExpMatchArray | null;
1479
- [Symbol.replace]: {
1480
- (string: string, replaceValue: string): string;
1481
- (string: string, replacer: (substring: string, ...args: any[]) => string): string;
1482
- };
1483
- [Symbol.search]: (string: string) => number;
1484
- [Symbol.split]: (string: string, limit?: number | undefined) => string[];
1485
- [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
1486
- } | ((params: {
1487
- column: import("vxe-table").VxeTableDefines.ColumnInfo;
1488
- }) => any) | {
1489
1466
  toString: () => string;
1490
1467
  toDateString: () => string;
1491
1468
  toTimeString: () => string;
@@ -1547,7 +1524,30 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
1547
1524
  (hint: "number"): number;
1548
1525
  (hint: string): string | number;
1549
1526
  };
1550
- } | null | undefined;
1527
+ } | {
1528
+ exec: (string: string) => RegExpExecArray | null;
1529
+ test: (string: string) => boolean;
1530
+ readonly source: string;
1531
+ readonly global: boolean;
1532
+ readonly ignoreCase: boolean;
1533
+ readonly multiline: boolean;
1534
+ lastIndex: number;
1535
+ compile: (pattern: string, flags?: string | undefined) => RegExp;
1536
+ readonly flags: string;
1537
+ readonly sticky: boolean;
1538
+ readonly unicode: boolean;
1539
+ readonly dotAll: boolean;
1540
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
1541
+ [Symbol.replace]: {
1542
+ (string: string, replaceValue: string): string;
1543
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
1544
+ };
1545
+ [Symbol.search]: (string: string) => number;
1546
+ [Symbol.split]: (string: string, limit?: number | undefined) => string[];
1547
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
1548
+ } | ((params: {
1549
+ column: import("vxe-table").VxeTableDefines.ColumnInfo;
1550
+ }) => any) | null | undefined;
1551
1551
  immediate?: boolean | undefined;
1552
1552
  content?: string | undefined;
1553
1553
  placeholder?: string | undefined;
@@ -2363,29 +2363,6 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
2363
2363
  autofocus?: string | undefined;
2364
2364
  autoselect?: boolean | undefined;
2365
2365
  defaultValue?: string | number | object | any[] | {
2366
- exec: (string: string) => RegExpExecArray | null;
2367
- test: (string: string) => boolean;
2368
- readonly source: string;
2369
- readonly global: boolean;
2370
- readonly ignoreCase: boolean;
2371
- readonly multiline: boolean;
2372
- lastIndex: number;
2373
- compile: (pattern: string, flags?: string | undefined) => RegExp;
2374
- readonly flags: string;
2375
- readonly sticky: boolean;
2376
- readonly unicode: boolean;
2377
- readonly dotAll: boolean;
2378
- [Symbol.match]: (string: string) => RegExpMatchArray | null;
2379
- [Symbol.replace]: {
2380
- (string: string, replaceValue: string): string;
2381
- (string: string, replacer: (substring: string, ...args: any[]) => string): string;
2382
- };
2383
- [Symbol.search]: (string: string) => number;
2384
- [Symbol.split]: (string: string, limit?: number | undefined) => string[];
2385
- [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2386
- } | ((params: {
2387
- column: import("vxe-table").VxeTableDefines.ColumnInfo;
2388
- }) => any) | {
2389
2366
  toString: () => string;
2390
2367
  toDateString: () => string;
2391
2368
  toTimeString: () => string;
@@ -2447,7 +2424,30 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
2447
2424
  (hint: "number"): number;
2448
2425
  (hint: string): string | number;
2449
2426
  };
2450
- } | null | undefined;
2427
+ } | {
2428
+ exec: (string: string) => RegExpExecArray | null;
2429
+ test: (string: string) => boolean;
2430
+ readonly source: string;
2431
+ readonly global: boolean;
2432
+ readonly ignoreCase: boolean;
2433
+ readonly multiline: boolean;
2434
+ lastIndex: number;
2435
+ compile: (pattern: string, flags?: string | undefined) => RegExp;
2436
+ readonly flags: string;
2437
+ readonly sticky: boolean;
2438
+ readonly unicode: boolean;
2439
+ readonly dotAll: boolean;
2440
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
2441
+ [Symbol.replace]: {
2442
+ (string: string, replaceValue: string): string;
2443
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
2444
+ };
2445
+ [Symbol.search]: (string: string) => number;
2446
+ [Symbol.split]: (string: string, limit?: number | undefined) => string[];
2447
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2448
+ } | ((params: {
2449
+ column: import("vxe-table").VxeTableDefines.ColumnInfo;
2450
+ }) => any) | null | undefined;
2451
2451
  immediate?: boolean | undefined;
2452
2452
  content?: string | undefined;
2453
2453
  placeholder?: string | undefined;
@@ -2827,29 +2827,6 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
2827
2827
  autofocus?: string | undefined;
2828
2828
  autoselect?: boolean | undefined;
2829
2829
  defaultValue?: string | number | object | any[] | {
2830
- exec: (string: string) => RegExpExecArray | null;
2831
- test: (string: string) => boolean;
2832
- readonly source: string;
2833
- readonly global: boolean;
2834
- readonly ignoreCase: boolean;
2835
- readonly multiline: boolean;
2836
- lastIndex: number;
2837
- compile: (pattern: string, flags?: string | undefined) => RegExp;
2838
- readonly flags: string;
2839
- readonly sticky: boolean;
2840
- readonly unicode: boolean;
2841
- readonly dotAll: boolean;
2842
- [Symbol.match]: (string: string) => RegExpMatchArray | null;
2843
- [Symbol.replace]: {
2844
- (string: string, replaceValue: string): string;
2845
- (string: string, replacer: (substring: string, ...args: any[]) => string): string;
2846
- };
2847
- [Symbol.search]: (string: string) => number;
2848
- [Symbol.split]: (string: string, limit?: number | undefined) => string[];
2849
- [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2850
- } | ((params: {
2851
- column: import("vxe-table").VxeTableDefines.ColumnInfo;
2852
- }) => any) | {
2853
2830
  toString: () => string;
2854
2831
  toDateString: () => string;
2855
2832
  toTimeString: () => string;
@@ -2911,7 +2888,30 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
2911
2888
  (hint: "number"): number;
2912
2889
  (hint: string): string | number;
2913
2890
  };
2914
- } | null | undefined;
2891
+ } | {
2892
+ exec: (string: string) => RegExpExecArray | null;
2893
+ test: (string: string) => boolean;
2894
+ readonly source: string;
2895
+ readonly global: boolean;
2896
+ readonly ignoreCase: boolean;
2897
+ readonly multiline: boolean;
2898
+ lastIndex: number;
2899
+ compile: (pattern: string, flags?: string | undefined) => RegExp;
2900
+ readonly flags: string;
2901
+ readonly sticky: boolean;
2902
+ readonly unicode: boolean;
2903
+ readonly dotAll: boolean;
2904
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
2905
+ [Symbol.replace]: {
2906
+ (string: string, replaceValue: string): string;
2907
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
2908
+ };
2909
+ [Symbol.search]: (string: string) => number;
2910
+ [Symbol.split]: (string: string, limit?: number | undefined) => string[];
2911
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
2912
+ } | ((params: {
2913
+ column: import("vxe-table").VxeTableDefines.ColumnInfo;
2914
+ }) => any) | null | undefined;
2915
2915
  immediate?: boolean | undefined;
2916
2916
  content?: string | undefined;
2917
2917
  placeholder?: string | undefined;
@@ -3130,29 +3130,6 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
3130
3130
  autofocus?: string | undefined;
3131
3131
  autoselect?: boolean | undefined;
3132
3132
  defaultValue?: string | number | object | any[] | {
3133
- exec: (string: string) => RegExpExecArray | null;
3134
- test: (string: string) => boolean;
3135
- readonly source: string;
3136
- readonly global: boolean;
3137
- readonly ignoreCase: boolean;
3138
- readonly multiline: boolean;
3139
- lastIndex: number;
3140
- compile: (pattern: string, flags?: string | undefined) => RegExp;
3141
- readonly flags: string;
3142
- readonly sticky: boolean;
3143
- readonly unicode: boolean;
3144
- readonly dotAll: boolean;
3145
- [Symbol.match]: (string: string) => RegExpMatchArray | null;
3146
- [Symbol.replace]: {
3147
- (string: string, replaceValue: string): string;
3148
- (string: string, replacer: (substring: string, ...args: any[]) => string): string;
3149
- };
3150
- [Symbol.search]: (string: string) => number;
3151
- [Symbol.split]: (string: string, limit?: number | undefined) => string[];
3152
- [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
3153
- } | ((params: {
3154
- column: import("vxe-table").VxeTableDefines.ColumnInfo;
3155
- }) => any) | {
3156
3133
  toString: () => string;
3157
3134
  toDateString: () => string;
3158
3135
  toTimeString: () => string;
@@ -3214,7 +3191,30 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
3214
3191
  (hint: "number"): number;
3215
3192
  (hint: string): string | number;
3216
3193
  };
3217
- } | null | undefined;
3194
+ } | {
3195
+ exec: (string: string) => RegExpExecArray | null;
3196
+ test: (string: string) => boolean;
3197
+ readonly source: string;
3198
+ readonly global: boolean;
3199
+ readonly ignoreCase: boolean;
3200
+ readonly multiline: boolean;
3201
+ lastIndex: number;
3202
+ compile: (pattern: string, flags?: string | undefined) => RegExp;
3203
+ readonly flags: string;
3204
+ readonly sticky: boolean;
3205
+ readonly unicode: boolean;
3206
+ readonly dotAll: boolean;
3207
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
3208
+ [Symbol.replace]: {
3209
+ (string: string, replaceValue: string): string;
3210
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
3211
+ };
3212
+ [Symbol.search]: (string: string) => number;
3213
+ [Symbol.split]: (string: string, limit?: number | undefined) => string[];
3214
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
3215
+ } | ((params: {
3216
+ column: import("vxe-table").VxeTableDefines.ColumnInfo;
3217
+ }) => any) | null | undefined;
3218
3218
  immediate?: boolean | undefined;
3219
3219
  content?: string | undefined;
3220
3220
  placeholder?: string | undefined;
@@ -3621,29 +3621,6 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
3621
3621
  autofocus?: string | undefined;
3622
3622
  autoselect?: boolean | undefined;
3623
3623
  defaultValue?: string | number | object | any[] | {
3624
- exec: (string: string) => RegExpExecArray | null;
3625
- test: (string: string) => boolean;
3626
- readonly source: string;
3627
- readonly global: boolean;
3628
- readonly ignoreCase: boolean;
3629
- readonly multiline: boolean;
3630
- lastIndex: number;
3631
- compile: (pattern: string, flags?: string | undefined) => RegExp;
3632
- readonly flags: string;
3633
- readonly sticky: boolean;
3634
- readonly unicode: boolean;
3635
- readonly dotAll: boolean;
3636
- [Symbol.match]: (string: string) => RegExpMatchArray | null;
3637
- [Symbol.replace]: {
3638
- (string: string, replaceValue: string): string;
3639
- (string: string, replacer: (substring: string, ...args: any[]) => string): string;
3640
- };
3641
- [Symbol.search]: (string: string) => number;
3642
- [Symbol.split]: (string: string, limit?: number | undefined) => string[];
3643
- [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
3644
- } | ((params: {
3645
- column: import("vxe-table").VxeTableDefines.ColumnInfo;
3646
- }) => any) | {
3647
3624
  toString: () => string;
3648
3625
  toDateString: () => string;
3649
3626
  toTimeString: () => string;
@@ -3705,7 +3682,30 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
3705
3682
  (hint: "number"): number;
3706
3683
  (hint: string): string | number;
3707
3684
  };
3708
- } | null | undefined;
3685
+ } | {
3686
+ exec: (string: string) => RegExpExecArray | null;
3687
+ test: (string: string) => boolean;
3688
+ readonly source: string;
3689
+ readonly global: boolean;
3690
+ readonly ignoreCase: boolean;
3691
+ readonly multiline: boolean;
3692
+ lastIndex: number;
3693
+ compile: (pattern: string, flags?: string | undefined) => RegExp;
3694
+ readonly flags: string;
3695
+ readonly sticky: boolean;
3696
+ readonly unicode: boolean;
3697
+ readonly dotAll: boolean;
3698
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
3699
+ [Symbol.replace]: {
3700
+ (string: string, replaceValue: string): string;
3701
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
3702
+ };
3703
+ [Symbol.search]: (string: string) => number;
3704
+ [Symbol.split]: (string: string, limit?: number | undefined) => string[];
3705
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
3706
+ } | ((params: {
3707
+ column: import("vxe-table").VxeTableDefines.ColumnInfo;
3708
+ }) => any) | null | undefined;
3709
3709
  immediate?: boolean | undefined;
3710
3710
  content?: string | undefined;
3711
3711
  placeholder?: string | undefined;
@@ -3980,29 +3980,6 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
3980
3980
  autofocus?: string | undefined;
3981
3981
  autoselect?: boolean | undefined;
3982
3982
  defaultValue?: string | number | object | any[] | {
3983
- exec: (string: string) => RegExpExecArray | null;
3984
- test: (string: string) => boolean;
3985
- readonly source: string;
3986
- readonly global: boolean;
3987
- readonly ignoreCase: boolean;
3988
- readonly multiline: boolean;
3989
- lastIndex: number;
3990
- compile: (pattern: string, flags?: string | undefined) => RegExp;
3991
- readonly flags: string;
3992
- readonly sticky: boolean;
3993
- readonly unicode: boolean;
3994
- readonly dotAll: boolean;
3995
- [Symbol.match]: (string: string) => RegExpMatchArray | null;
3996
- [Symbol.replace]: {
3997
- (string: string, replaceValue: string): string;
3998
- (string: string, replacer: (substring: string, ...args: any[]) => string): string;
3999
- };
4000
- [Symbol.search]: (string: string) => number;
4001
- [Symbol.split]: (string: string, limit?: number | undefined) => string[];
4002
- [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
4003
- } | ((params: {
4004
- column: import("vxe-table").VxeTableDefines.ColumnInfo;
4005
- }) => any) | {
4006
3983
  toString: () => string;
4007
3984
  toDateString: () => string;
4008
3985
  toTimeString: () => string;
@@ -4064,7 +4041,30 @@ declare const IhoTable: SFCWithInstall<import("vue").DefineComponent<{
4064
4041
  (hint: "number"): number;
4065
4042
  (hint: string): string | number;
4066
4043
  };
4067
- } | null | undefined;
4044
+ } | {
4045
+ exec: (string: string) => RegExpExecArray | null;
4046
+ test: (string: string) => boolean;
4047
+ readonly source: string;
4048
+ readonly global: boolean;
4049
+ readonly ignoreCase: boolean;
4050
+ readonly multiline: boolean;
4051
+ lastIndex: number;
4052
+ compile: (pattern: string, flags?: string | undefined) => RegExp;
4053
+ readonly flags: string;
4054
+ readonly sticky: boolean;
4055
+ readonly unicode: boolean;
4056
+ readonly dotAll: boolean;
4057
+ [Symbol.match]: (string: string) => RegExpMatchArray | null;
4058
+ [Symbol.replace]: {
4059
+ (string: string, replaceValue: string): string;
4060
+ (string: string, replacer: (substring: string, ...args: any[]) => string): string;
4061
+ };
4062
+ [Symbol.search]: (string: string) => number;
4063
+ [Symbol.split]: (string: string, limit?: number | undefined) => string[];
4064
+ [Symbol.matchAll]: (str: string) => IterableIterator<RegExpMatchArray>;
4065
+ } | ((params: {
4066
+ column: import("vxe-table").VxeTableDefines.ColumnInfo;
4067
+ }) => any) | null | undefined;
4068
4068
  immediate?: boolean | undefined;
4069
4069
  content?: string | undefined;
4070
4070
  placeholder?: string | undefined;