bkui-vue 0.0.1-beta.445 → 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 +200 -62
- package/dist/index.umd.js +31 -31
- 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/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.d.ts +5 -9
- package/lib/table/components/table-column.d.ts +85 -0
- package/lib/table/index.d.ts +255 -0
- package/lib/table/index.js +1 -1
- package/lib/table/props.d.ts +1 -0
- package/lib/table-column/index.d.ts +255 -0
- package/lib/table-column/index.js +1 -1
- package/package.json +1 -1
@@ -115,6 +115,91 @@ declare const _default: import("vue").DefineComponent<{
|
|
115
115
|
valueOf: () => number;
|
116
116
|
toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
|
117
117
|
};
|
118
|
+
textAlign?: {
|
119
|
+
[x: number]: string;
|
120
|
+
toString: () => string;
|
121
|
+
charAt: (pos: number) => string;
|
122
|
+
charCodeAt: (index: number) => number;
|
123
|
+
concat: (...strings: string[]) => string;
|
124
|
+
indexOf: (searchString: string, position?: number) => number;
|
125
|
+
lastIndexOf: (searchString: string, position?: number) => number;
|
126
|
+
localeCompare: {
|
127
|
+
(that: string): number;
|
128
|
+
(that: string, locales?: string | string[], options?: Intl.CollatorOptions): number;
|
129
|
+
};
|
130
|
+
match: {
|
131
|
+
(regexp: string | RegExp): RegExpMatchArray;
|
132
|
+
(matcher: {
|
133
|
+
[Symbol.match](string: string): RegExpMatchArray;
|
134
|
+
}): RegExpMatchArray;
|
135
|
+
};
|
136
|
+
replace: {
|
137
|
+
(searchValue: string | RegExp, replaceValue: string): string;
|
138
|
+
(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string;
|
139
|
+
(searchValue: {
|
140
|
+
[Symbol.replace](string: string, replaceValue: string): string;
|
141
|
+
}, replaceValue: string): string;
|
142
|
+
(searchValue: {
|
143
|
+
[Symbol.replace](string: string, replacer: (substring: string, ...args: any[]) => string): string;
|
144
|
+
}, replacer: (substring: string, ...args: any[]) => string): string;
|
145
|
+
};
|
146
|
+
search: {
|
147
|
+
(regexp: string | RegExp): number;
|
148
|
+
(searcher: {
|
149
|
+
[Symbol.search](string: string): number;
|
150
|
+
}): number;
|
151
|
+
};
|
152
|
+
slice: (start?: number, end?: number) => string;
|
153
|
+
split: {
|
154
|
+
(separator: string | RegExp, limit?: number): string[];
|
155
|
+
(splitter: {
|
156
|
+
[Symbol.split](string: string, limit?: number): string[];
|
157
|
+
}, limit?: number): string[];
|
158
|
+
};
|
159
|
+
substring: (start: number, end?: number) => string;
|
160
|
+
toLowerCase: () => string;
|
161
|
+
toLocaleLowerCase: (locales?: string | string[]) => string;
|
162
|
+
toUpperCase: () => string;
|
163
|
+
toLocaleUpperCase: (locales?: string | string[]) => string;
|
164
|
+
trim: () => string;
|
165
|
+
readonly length: number;
|
166
|
+
substr: (from: number, length?: number) => string;
|
167
|
+
valueOf: () => string;
|
168
|
+
codePointAt: (pos: number) => number;
|
169
|
+
includes: (searchString: string, position?: number) => boolean;
|
170
|
+
endsWith: (searchString: string, endPosition?: number) => boolean;
|
171
|
+
normalize: {
|
172
|
+
(form: "NFC" | "NFD" | "NFKC" | "NFKD"): string;
|
173
|
+
(form?: string): string;
|
174
|
+
};
|
175
|
+
repeat: (count: number) => string;
|
176
|
+
startsWith: (searchString: string, position?: number) => boolean;
|
177
|
+
anchor: (name: string) => string;
|
178
|
+
big: () => string;
|
179
|
+
blink: () => string;
|
180
|
+
bold: () => string;
|
181
|
+
fixed: () => string;
|
182
|
+
fontcolor: (color: string) => string;
|
183
|
+
fontsize: {
|
184
|
+
(size: number): string;
|
185
|
+
(size: string): string;
|
186
|
+
};
|
187
|
+
italics: () => string;
|
188
|
+
link: (url: string) => string;
|
189
|
+
small: () => string;
|
190
|
+
strike: () => string;
|
191
|
+
sub: () => string;
|
192
|
+
sup: () => string;
|
193
|
+
padStart: (maxLength: number, fillString?: string) => string;
|
194
|
+
padEnd: (maxLength: number, fillString?: string) => string;
|
195
|
+
trimEnd: () => string;
|
196
|
+
trimStart: () => string;
|
197
|
+
trimLeft: () => string;
|
198
|
+
trimRight: () => string;
|
199
|
+
matchAll: (regexp: RegExp) => IterableIterator<RegExpMatchArray>;
|
200
|
+
[Symbol.iterator]: () => IterableIterator<string>;
|
201
|
+
at: (index: number) => string;
|
202
|
+
};
|
118
203
|
className?: string | Function;
|
119
204
|
align?: string;
|
120
205
|
prop?: string | Function;
|
package/lib/table/index.d.ts
CHANGED
@@ -1057,6 +1057,91 @@ declare const BkColumn: {
|
|
1057
1057
|
valueOf: () => number;
|
1058
1058
|
toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
|
1059
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
|
+
};
|
1060
1145
|
className?: string | Function;
|
1061
1146
|
align?: string;
|
1062
1147
|
prop?: string | Function;
|
@@ -1219,6 +1304,91 @@ declare const BkColumn: {
|
|
1219
1304
|
valueOf: () => number;
|
1220
1305
|
toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
|
1221
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
|
+
};
|
1222
1392
|
className?: string | Function;
|
1223
1393
|
align?: string;
|
1224
1394
|
prop?: string | Function;
|
@@ -1344,6 +1514,91 @@ declare const BkColumn: {
|
|
1344
1514
|
valueOf: () => number;
|
1345
1515
|
toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
|
1346
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
|
+
};
|
1347
1602
|
className?: string | Function;
|
1348
1603
|
align?: string;
|
1349
1604
|
prop?: string | Function;
|