bkui-vue 0.0.1-beta.444 → 0.0.1-beta.446
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/dist/index.cjs.js +32 -32
- package/dist/index.esm.js +215 -66
- package/dist/index.umd.js +32 -32
- package/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/dialog/dialog.d.ts +5 -9
- package/lib/dialog/index.d.ts +11 -19
- package/lib/dialog/props.d.ts +2 -4
- package/lib/modal/index.d.ts +24 -23
- package/lib/modal/index.js +1 -1
- package/lib/modal/modal.d.ts +7 -9
- package/lib/modal/props.mixin.d.ts +2 -4
- package/lib/plugin-popover/index.js +1 -1
- package/lib/popover/index.js +1 -1
- package/lib/popover/utils.d.ts +5 -0
- package/lib/search-select/search-select.css +4 -1
- package/lib/search-select/search-select.less +5 -1
- package/lib/search-select/search-select.variable.css +4 -1
- package/lib/select/index.d.ts +11 -5
- package/lib/select/index.js +1 -1
- package/lib/select/option.d.ts +8 -2
- package/lib/select/select.d.ts +1 -1
- package/lib/shared/index.js +1 -1
- package/lib/shared/mask-manager.d.ts +7 -3
- package/lib/shared/pop-manager.d.ts +3 -1
- package/lib/sideslider/index.d.ts +11 -19
- package/lib/sideslider/sideslider.css +4 -3
- package/lib/sideslider/sideslider.d.ts +5 -9
- package/lib/sideslider/sideslider.less +4 -3
- package/lib/sideslider/sideslider.variable.css +4 -3
- package/lib/table/components/table-column.d.ts +125 -30
- package/lib/table/index.d.ts +375 -90
- package/lib/table/index.js +1 -1
- package/lib/table/props.d.ts +2 -1
- package/lib/table-column/index.d.ts +375 -90
- package/lib/table-column/index.js +1 -1
- package/package.json +1 -1
package/lib/table/index.d.ts
CHANGED
@@ -1016,41 +1016,136 @@ declare const BkColumn: {
|
|
1016
1016
|
queueStack: (_: any, fn: any) => any;
|
1017
1017
|
};
|
1018
1018
|
column: {
|
1019
|
-
field:
|
1020
|
-
|
1021
|
-
|
1022
|
-
|
1023
|
-
|
1024
|
-
|
1025
|
-
|
1026
|
-
};
|
1027
|
-
filter: string | boolean | {
|
1028
|
-
list: any[] | (object & (() => any[]));
|
1029
|
-
filterFn: any;
|
1030
|
-
match: "full" | "fuzzy";
|
1031
|
-
checked: any[] | (object & (() => any[]));
|
1032
|
-
filterScope: (object | "all" | "current" | (() => "all" | "current") | ((props: Record<string, unknown>) => "all" | "current")) & ("all" | "current");
|
1033
|
-
btnSave: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
|
1034
|
-
btnReset: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
|
1035
|
-
};
|
1036
|
-
type: "none" | "selection" | "index" | "expand";
|
1037
|
-
label: any;
|
1038
|
-
width: string | number;
|
1039
|
-
minWidth: string | number;
|
1040
|
-
className: any;
|
1041
|
-
align: "" | "left" | "center" | "right";
|
1042
|
-
index: number;
|
1043
|
-
columnKey: string;
|
1044
|
-
showOverflowTooltip: boolean | {
|
1019
|
+
field: string | Function;
|
1020
|
+
label: string | Function;
|
1021
|
+
render?: string | Function | import("vue").Slot;
|
1022
|
+
width?: string | number;
|
1023
|
+
minWidth?: string | number;
|
1024
|
+
columnKey?: string;
|
1025
|
+
showOverflowTooltip?: boolean | {
|
1045
1026
|
content: string | Function;
|
1046
1027
|
disabled?: boolean;
|
1047
1028
|
watchCellResize?: boolean;
|
1048
1029
|
mode?: "auto" | "static";
|
1049
1030
|
};
|
1050
|
-
|
1051
|
-
|
1052
|
-
|
1053
|
-
|
1031
|
+
type?: string;
|
1032
|
+
fixed?: string | boolean;
|
1033
|
+
resizable?: boolean;
|
1034
|
+
sort?: string | boolean | {
|
1035
|
+
sortFn?: Function;
|
1036
|
+
sortScope?: string;
|
1037
|
+
value?: string;
|
1038
|
+
};
|
1039
|
+
filter?: string | boolean | {
|
1040
|
+
list?: any;
|
1041
|
+
filterFn?: Function;
|
1042
|
+
checked?: any;
|
1043
|
+
};
|
1044
|
+
colspan?: Function | {
|
1045
|
+
toString: (radix?: number) => string;
|
1046
|
+
toFixed: (fractionDigits?: number) => string;
|
1047
|
+
toExponential: (fractionDigits?: number) => string;
|
1048
|
+
toPrecision: (precision?: number) => string;
|
1049
|
+
valueOf: () => number;
|
1050
|
+
toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
|
1051
|
+
};
|
1052
|
+
rowspan?: Function | {
|
1053
|
+
toString: (radix?: number) => string;
|
1054
|
+
toFixed: (fractionDigits?: number) => string;
|
1055
|
+
toExponential: (fractionDigits?: number) => string;
|
1056
|
+
toPrecision: (precision?: number) => string;
|
1057
|
+
valueOf: () => number;
|
1058
|
+
toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
|
1059
|
+
};
|
1060
|
+
textAlign?: {
|
1061
|
+
[x: number]: string;
|
1062
|
+
toString: () => string;
|
1063
|
+
charAt: (pos: number) => string;
|
1064
|
+
charCodeAt: (index: number) => number;
|
1065
|
+
concat: (...strings: string[]) => string;
|
1066
|
+
indexOf: (searchString: string, position?: number) => number;
|
1067
|
+
lastIndexOf: (searchString: string, position?: number) => number;
|
1068
|
+
localeCompare: {
|
1069
|
+
(that: string): number;
|
1070
|
+
(that: string, locales?: string | string[], options?: Intl.CollatorOptions): number;
|
1071
|
+
};
|
1072
|
+
match: {
|
1073
|
+
(regexp: string | RegExp): RegExpMatchArray;
|
1074
|
+
(matcher: {
|
1075
|
+
[Symbol.match](string: string): RegExpMatchArray;
|
1076
|
+
}): RegExpMatchArray;
|
1077
|
+
};
|
1078
|
+
replace: {
|
1079
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
1080
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
1081
|
+
(searchValue: {
|
1082
|
+
[Symbol.replace](string: string, replaceValue: string): string;
|
1083
|
+
}, replaceValue: string): string;
|
1084
|
+
(searchValue: {
|
1085
|
+
[Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
|
1086
|
+
}, replacer: (substring: string, ...args: any[]) => string): string;
|
1087
|
+
};
|
1088
|
+
search: {
|
1089
|
+
(regexp: string | RegExp): number;
|
1090
|
+
(searcher: {
|
1091
|
+
[Symbol.search](string: string): number;
|
1092
|
+
}): number;
|
1093
|
+
};
|
1094
|
+
slice: (start?: number, end?: number) => string;
|
1095
|
+
split: {
|
1096
|
+
(separator: string | RegExp, limit?: number): string[];
|
1097
|
+
(splitter: {
|
1098
|
+
[Symbol.split](string: string, limit?: number): string[];
|
1099
|
+
}, limit?: number): string[];
|
1100
|
+
};
|
1101
|
+
substring: (start: number, end?: number) => string;
|
1102
|
+
toLowerCase: () => string;
|
1103
|
+
toLocaleLowerCase: (locales?: string | string[]) => string;
|
1104
|
+
toUpperCase: () => string;
|
1105
|
+
toLocaleUpperCase: (locales?: string | string[]) => string;
|
1106
|
+
trim: () => string;
|
1107
|
+
readonly length: number;
|
1108
|
+
substr: (from: number, length?: number) => string;
|
1109
|
+
valueOf: () => string;
|
1110
|
+
codePointAt: (pos: number) => number;
|
1111
|
+
includes: (searchString: string, position?: number) => boolean;
|
1112
|
+
endsWith: (searchString: string, endPosition?: number) => boolean;
|
1113
|
+
normalize: {
|
1114
|
+
(form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
|
1115
|
+
(form?: string): string;
|
1116
|
+
};
|
1117
|
+
repeat: (count: number) => string;
|
1118
|
+
startsWith: (searchString: string, position?: number) => boolean;
|
1119
|
+
anchor: (name: string) => string;
|
1120
|
+
big: () => string;
|
1121
|
+
blink: () => string;
|
1122
|
+
bold: () => string;
|
1123
|
+
fixed: () => string;
|
1124
|
+
fontcolor: (color: string) => string;
|
1125
|
+
fontsize: {
|
1126
|
+
(size: number): string;
|
1127
|
+
(size: string): string;
|
1128
|
+
};
|
1129
|
+
italics: () => string;
|
1130
|
+
link: (url: string) => string;
|
1131
|
+
small: () => string;
|
1132
|
+
strike: () => string;
|
1133
|
+
sub: () => string;
|
1134
|
+
sup: () => string;
|
1135
|
+
padStart: (maxLength: number, fillString?: string) => string;
|
1136
|
+
padEnd: (maxLength: number, fillString?: string) => string;
|
1137
|
+
trimEnd: () => string;
|
1138
|
+
trimStart: () => string;
|
1139
|
+
trimLeft: () => string;
|
1140
|
+
trimRight: () => string;
|
1141
|
+
matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
|
1142
|
+
[Symbol.iterator]: () => IterableIterator<string>;
|
1143
|
+
at: (index: number) => string;
|
1144
|
+
};
|
1145
|
+
className?: string | Function;
|
1146
|
+
align?: string;
|
1147
|
+
prop?: string | Function;
|
1148
|
+
index?: number;
|
1054
1149
|
};
|
1055
1150
|
}, unknown, {}, {
|
1056
1151
|
updateColumnDefine(unmounted?: boolean): void;
|
@@ -1168,41 +1263,136 @@ declare const BkColumn: {
|
|
1168
1263
|
queueStack: (_: any, fn: any) => any;
|
1169
1264
|
};
|
1170
1265
|
column: {
|
1171
|
-
field:
|
1172
|
-
|
1173
|
-
|
1174
|
-
|
1175
|
-
|
1176
|
-
|
1177
|
-
|
1178
|
-
};
|
1179
|
-
filter: string | boolean | {
|
1180
|
-
list: any[] | (object & (() => any[]));
|
1181
|
-
filterFn: any;
|
1182
|
-
match: "full" | "fuzzy";
|
1183
|
-
checked: any[] | (object & (() => any[]));
|
1184
|
-
filterScope: (object | "all" | "current" | (() => "all" | "current") | ((props: Record<string, unknown>) => "all" | "current")) & ("all" | "current");
|
1185
|
-
btnSave: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
|
1186
|
-
btnReset: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
|
1187
|
-
};
|
1188
|
-
type: "none" | "selection" | "index" | "expand";
|
1189
|
-
label: any;
|
1190
|
-
width: string | number;
|
1191
|
-
minWidth: string | number;
|
1192
|
-
className: any;
|
1193
|
-
align: "" | "left" | "center" | "right";
|
1194
|
-
index: number;
|
1195
|
-
columnKey: string;
|
1196
|
-
showOverflowTooltip: boolean | {
|
1266
|
+
field: string | Function;
|
1267
|
+
label: string | Function;
|
1268
|
+
render?: string | Function | import("vue").Slot;
|
1269
|
+
width?: string | number;
|
1270
|
+
minWidth?: string | number;
|
1271
|
+
columnKey?: string;
|
1272
|
+
showOverflowTooltip?: boolean | {
|
1197
1273
|
content: string | Function;
|
1198
1274
|
disabled?: boolean;
|
1199
1275
|
watchCellResize?: boolean;
|
1200
1276
|
mode?: "auto" | "static";
|
1201
1277
|
};
|
1202
|
-
|
1203
|
-
|
1204
|
-
|
1205
|
-
|
1278
|
+
type?: string;
|
1279
|
+
fixed?: string | boolean;
|
1280
|
+
resizable?: boolean;
|
1281
|
+
sort?: string | boolean | {
|
1282
|
+
sortFn?: Function;
|
1283
|
+
sortScope?: string;
|
1284
|
+
value?: string;
|
1285
|
+
};
|
1286
|
+
filter?: string | boolean | {
|
1287
|
+
list?: any;
|
1288
|
+
filterFn?: Function;
|
1289
|
+
checked?: any;
|
1290
|
+
};
|
1291
|
+
colspan?: Function | {
|
1292
|
+
toString: (radix?: number) => string;
|
1293
|
+
toFixed: (fractionDigits?: number) => string;
|
1294
|
+
toExponential: (fractionDigits?: number) => string;
|
1295
|
+
toPrecision: (precision?: number) => string;
|
1296
|
+
valueOf: () => number;
|
1297
|
+
toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
|
1298
|
+
};
|
1299
|
+
rowspan?: Function | {
|
1300
|
+
toString: (radix?: number) => string;
|
1301
|
+
toFixed: (fractionDigits?: number) => string;
|
1302
|
+
toExponential: (fractionDigits?: number) => string;
|
1303
|
+
toPrecision: (precision?: number) => string;
|
1304
|
+
valueOf: () => number;
|
1305
|
+
toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
|
1306
|
+
};
|
1307
|
+
textAlign?: {
|
1308
|
+
[x: number]: string;
|
1309
|
+
toString: () => string;
|
1310
|
+
charAt: (pos: number) => string;
|
1311
|
+
charCodeAt: (index: number) => number;
|
1312
|
+
concat: (...strings: string[]) => string;
|
1313
|
+
indexOf: (searchString: string, position?: number) => number;
|
1314
|
+
lastIndexOf: (searchString: string, position?: number) => number;
|
1315
|
+
localeCompare: {
|
1316
|
+
(that: string): number;
|
1317
|
+
(that: string, locales?: string | string[], options?: Intl.CollatorOptions): number;
|
1318
|
+
};
|
1319
|
+
match: {
|
1320
|
+
(regexp: string | RegExp): RegExpMatchArray;
|
1321
|
+
(matcher: {
|
1322
|
+
[Symbol.match](string: string): RegExpMatchArray;
|
1323
|
+
}): RegExpMatchArray;
|
1324
|
+
};
|
1325
|
+
replace: {
|
1326
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
1327
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
1328
|
+
(searchValue: {
|
1329
|
+
[Symbol.replace](string: string, replaceValue: string): string;
|
1330
|
+
}, replaceValue: string): string;
|
1331
|
+
(searchValue: {
|
1332
|
+
[Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
|
1333
|
+
}, replacer: (substring: string, ...args: any[]) => string): string;
|
1334
|
+
};
|
1335
|
+
search: {
|
1336
|
+
(regexp: string | RegExp): number;
|
1337
|
+
(searcher: {
|
1338
|
+
[Symbol.search](string: string): number;
|
1339
|
+
}): number;
|
1340
|
+
};
|
1341
|
+
slice: (start?: number, end?: number) => string;
|
1342
|
+
split: {
|
1343
|
+
(separator: string | RegExp, limit?: number): string[];
|
1344
|
+
(splitter: {
|
1345
|
+
[Symbol.split](string: string, limit?: number): string[];
|
1346
|
+
}, limit?: number): string[];
|
1347
|
+
};
|
1348
|
+
substring: (start: number, end?: number) => string;
|
1349
|
+
toLowerCase: () => string;
|
1350
|
+
toLocaleLowerCase: (locales?: string | string[]) => string;
|
1351
|
+
toUpperCase: () => string;
|
1352
|
+
toLocaleUpperCase: (locales?: string | string[]) => string;
|
1353
|
+
trim: () => string;
|
1354
|
+
readonly length: number;
|
1355
|
+
substr: (from: number, length?: number) => string;
|
1356
|
+
valueOf: () => string;
|
1357
|
+
codePointAt: (pos: number) => number;
|
1358
|
+
includes: (searchString: string, position?: number) => boolean;
|
1359
|
+
endsWith: (searchString: string, endPosition?: number) => boolean;
|
1360
|
+
normalize: {
|
1361
|
+
(form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
|
1362
|
+
(form?: string): string;
|
1363
|
+
};
|
1364
|
+
repeat: (count: number) => string;
|
1365
|
+
startsWith: (searchString: string, position?: number) => boolean;
|
1366
|
+
anchor: (name: string) => string;
|
1367
|
+
big: () => string;
|
1368
|
+
blink: () => string;
|
1369
|
+
bold: () => string;
|
1370
|
+
fixed: () => string;
|
1371
|
+
fontcolor: (color: string) => string;
|
1372
|
+
fontsize: {
|
1373
|
+
(size: number): string;
|
1374
|
+
(size: string): string;
|
1375
|
+
};
|
1376
|
+
italics: () => string;
|
1377
|
+
link: (url: string) => string;
|
1378
|
+
small: () => string;
|
1379
|
+
strike: () => string;
|
1380
|
+
sub: () => string;
|
1381
|
+
sup: () => string;
|
1382
|
+
padStart: (maxLength: number, fillString?: string) => string;
|
1383
|
+
padEnd: (maxLength: number, fillString?: string) => string;
|
1384
|
+
trimEnd: () => string;
|
1385
|
+
trimStart: () => string;
|
1386
|
+
trimLeft: () => string;
|
1387
|
+
trimRight: () => string;
|
1388
|
+
matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
|
1389
|
+
[Symbol.iterator]: () => IterableIterator<string>;
|
1390
|
+
at: (index: number) => string;
|
1391
|
+
};
|
1392
|
+
className?: string | Function;
|
1393
|
+
align?: string;
|
1394
|
+
prop?: string | Function;
|
1395
|
+
index?: number;
|
1206
1396
|
};
|
1207
1397
|
}> & {} & {} & {
|
1208
1398
|
updateColumnDefine(unmounted?: boolean): void;
|
@@ -1283,41 +1473,136 @@ declare const BkColumn: {
|
|
1283
1473
|
queueStack: (_: any, fn: any) => any;
|
1284
1474
|
};
|
1285
1475
|
column: {
|
1286
|
-
field:
|
1287
|
-
|
1288
|
-
|
1289
|
-
|
1290
|
-
|
1291
|
-
|
1292
|
-
|
1293
|
-
};
|
1294
|
-
filter: string | boolean | {
|
1295
|
-
list: any[] | (object & (() => any[]));
|
1296
|
-
filterFn: any;
|
1297
|
-
match: "full" | "fuzzy";
|
1298
|
-
checked: any[] | (object & (() => any[]));
|
1299
|
-
filterScope: (object | "all" | "current" | (() => "all" | "current") | ((props: Record<string, unknown>) => "all" | "current")) & ("all" | "current");
|
1300
|
-
btnSave: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
|
1301
|
-
btnReset: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
|
1302
|
-
};
|
1303
|
-
type: "none" | "selection" | "index" | "expand";
|
1304
|
-
label: any;
|
1305
|
-
width: string | number;
|
1306
|
-
minWidth: string | number;
|
1307
|
-
className: any;
|
1308
|
-
align: "" | "left" | "center" | "right";
|
1309
|
-
index: number;
|
1310
|
-
columnKey: string;
|
1311
|
-
showOverflowTooltip: boolean | {
|
1476
|
+
field: string | Function;
|
1477
|
+
label: string | Function;
|
1478
|
+
render?: string | Function | import("vue").Slot;
|
1479
|
+
width?: string | number;
|
1480
|
+
minWidth?: string | number;
|
1481
|
+
columnKey?: string;
|
1482
|
+
showOverflowTooltip?: boolean | {
|
1312
1483
|
content: string | Function;
|
1313
1484
|
disabled?: boolean;
|
1314
1485
|
watchCellResize?: boolean;
|
1315
1486
|
mode?: "auto" | "static";
|
1316
1487
|
};
|
1317
|
-
|
1318
|
-
|
1319
|
-
|
1320
|
-
|
1488
|
+
type?: string;
|
1489
|
+
fixed?: string | boolean;
|
1490
|
+
resizable?: boolean;
|
1491
|
+
sort?: string | boolean | {
|
1492
|
+
sortFn?: Function;
|
1493
|
+
sortScope?: string;
|
1494
|
+
value?: string;
|
1495
|
+
};
|
1496
|
+
filter?: string | boolean | {
|
1497
|
+
list?: any;
|
1498
|
+
filterFn?: Function;
|
1499
|
+
checked?: any;
|
1500
|
+
};
|
1501
|
+
colspan?: Function | {
|
1502
|
+
toString: (radix?: number) => string;
|
1503
|
+
toFixed: (fractionDigits?: number) => string;
|
1504
|
+
toExponential: (fractionDigits?: number) => string;
|
1505
|
+
toPrecision: (precision?: number) => string;
|
1506
|
+
valueOf: () => number;
|
1507
|
+
toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
|
1508
|
+
};
|
1509
|
+
rowspan?: Function | {
|
1510
|
+
toString: (radix?: number) => string;
|
1511
|
+
toFixed: (fractionDigits?: number) => string;
|
1512
|
+
toExponential: (fractionDigits?: number) => string;
|
1513
|
+
toPrecision: (precision?: number) => string;
|
1514
|
+
valueOf: () => number;
|
1515
|
+
toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
|
1516
|
+
};
|
1517
|
+
textAlign?: {
|
1518
|
+
[x: number]: string;
|
1519
|
+
toString: () => string;
|
1520
|
+
charAt: (pos: number) => string;
|
1521
|
+
charCodeAt: (index: number) => number;
|
1522
|
+
concat: (...strings: string[]) => string;
|
1523
|
+
indexOf: (searchString: string, position?: number) => number;
|
1524
|
+
lastIndexOf: (searchString: string, position?: number) => number;
|
1525
|
+
localeCompare: {
|
1526
|
+
(that: string): number;
|
1527
|
+
(that: string, locales?: string | string[], options?: Intl.CollatorOptions): number;
|
1528
|
+
};
|
1529
|
+
match: {
|
1530
|
+
(regexp: string | RegExp): RegExpMatchArray;
|
1531
|
+
(matcher: {
|
1532
|
+
[Symbol.match](string: string): RegExpMatchArray;
|
1533
|
+
}): RegExpMatchArray;
|
1534
|
+
};
|
1535
|
+
replace: {
|
1536
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
1537
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
1538
|
+
(searchValue: {
|
1539
|
+
[Symbol.replace](string: string, replaceValue: string): string;
|
1540
|
+
}, replaceValue: string): string;
|
1541
|
+
(searchValue: {
|
1542
|
+
[Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
|
1543
|
+
}, replacer: (substring: string, ...args: any[]) => string): string;
|
1544
|
+
};
|
1545
|
+
search: {
|
1546
|
+
(regexp: string | RegExp): number;
|
1547
|
+
(searcher: {
|
1548
|
+
[Symbol.search](string: string): number;
|
1549
|
+
}): number;
|
1550
|
+
};
|
1551
|
+
slice: (start?: number, end?: number) => string;
|
1552
|
+
split: {
|
1553
|
+
(separator: string | RegExp, limit?: number): string[];
|
1554
|
+
(splitter: {
|
1555
|
+
[Symbol.split](string: string, limit?: number): string[];
|
1556
|
+
}, limit?: number): string[];
|
1557
|
+
};
|
1558
|
+
substring: (start: number, end?: number) => string;
|
1559
|
+
toLowerCase: () => string;
|
1560
|
+
toLocaleLowerCase: (locales?: string | string[]) => string;
|
1561
|
+
toUpperCase: () => string;
|
1562
|
+
toLocaleUpperCase: (locales?: string | string[]) => string;
|
1563
|
+
trim: () => string;
|
1564
|
+
readonly length: number;
|
1565
|
+
substr: (from: number, length?: number) => string;
|
1566
|
+
valueOf: () => string;
|
1567
|
+
codePointAt: (pos: number) => number;
|
1568
|
+
includes: (searchString: string, position?: number) => boolean;
|
1569
|
+
endsWith: (searchString: string, endPosition?: number) => boolean;
|
1570
|
+
normalize: {
|
1571
|
+
(form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
|
1572
|
+
(form?: string): string;
|
1573
|
+
};
|
1574
|
+
repeat: (count: number) => string;
|
1575
|
+
startsWith: (searchString: string, position?: number) => boolean;
|
1576
|
+
anchor: (name: string) => string;
|
1577
|
+
big: () => string;
|
1578
|
+
blink: () => string;
|
1579
|
+
bold: () => string;
|
1580
|
+
fixed: () => string;
|
1581
|
+
fontcolor: (color: string) => string;
|
1582
|
+
fontsize: {
|
1583
|
+
(size: number): string;
|
1584
|
+
(size: string): string;
|
1585
|
+
};
|
1586
|
+
italics: () => string;
|
1587
|
+
link: (url: string) => string;
|
1588
|
+
small: () => string;
|
1589
|
+
strike: () => string;
|
1590
|
+
sub: () => string;
|
1591
|
+
sup: () => string;
|
1592
|
+
padStart: (maxLength: number, fillString?: string) => string;
|
1593
|
+
padEnd: (maxLength: number, fillString?: string) => string;
|
1594
|
+
trimEnd: () => string;
|
1595
|
+
trimStart: () => string;
|
1596
|
+
trimLeft: () => string;
|
1597
|
+
trimRight: () => string;
|
1598
|
+
matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
|
1599
|
+
[Symbol.iterator]: () => IterableIterator<string>;
|
1600
|
+
at: (index: number) => string;
|
1601
|
+
};
|
1602
|
+
className?: string | Function;
|
1603
|
+
align?: string;
|
1604
|
+
prop?: string | Function;
|
1605
|
+
index?: number;
|
1321
1606
|
};
|
1322
1607
|
}, unknown, {}, {
|
1323
1608
|
updateColumnDefine(unmounted?: boolean): void;
|