bkui-vue 0.0.1-beta.443 → 0.0.1-beta.444
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 +17 -17
- package/dist/index.esm.js +17 -3
- package/dist/index.umd.js +17 -17
- package/lib/search-select/index.d.ts +47 -3
- package/lib/search-select/index.js +1 -1
- package/lib/search-select/input.d.ts +2 -0
- package/lib/search-select/search-select.d.ts +17 -1
- package/lib/search-select/selected.d.ts +2 -0
- package/lib/table/components/table-column.d.ts +30 -39
- package/lib/table/index.d.ts +90 -117
- package/lib/table/index.js +1 -1
- package/lib/table/props.d.ts +1 -0
- package/lib/table-column/index.d.ts +90 -117
- package/package.json +1 -1
package/lib/table/index.d.ts
CHANGED
@@ -1016,50 +1016,41 @@ declare const BkColumn: {
|
|
1016
1016
|
queueStack: (_: any, fn: any) => any;
|
1017
1017
|
};
|
1018
1018
|
column: {
|
1019
|
-
field:
|
1020
|
-
|
1021
|
-
|
1022
|
-
|
1023
|
-
|
1024
|
-
|
1025
|
-
|
1019
|
+
field: any;
|
1020
|
+
render: any;
|
1021
|
+
fixed: boolean | "left" | "right";
|
1022
|
+
sort: string | boolean | {
|
1023
|
+
sortFn: any;
|
1024
|
+
sortScope: (object | "all" | "current" | (() => "all" | "current") | ((props: Record<string, unknown>) => "all" | "current")) & ("all" | "current");
|
1025
|
+
value: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
|
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 | {
|
1026
1045
|
content: string | Function;
|
1027
1046
|
disabled?: boolean;
|
1028
1047
|
watchCellResize?: boolean;
|
1029
1048
|
mode?: "auto" | "static";
|
1030
1049
|
};
|
1031
|
-
|
1032
|
-
|
1033
|
-
|
1034
|
-
|
1035
|
-
sortFn?: Function;
|
1036
|
-
sortScope?: string;
|
1037
|
-
value?: string;
|
1038
|
-
};
|
1039
|
-
filter?: string | boolean | {
|
1040
|
-
list?: any;
|
1041
|
-
filterFn?: Function;
|
1042
|
-
};
|
1043
|
-
colspan?: Function | {
|
1044
|
-
toString: (radix?: number) => string;
|
1045
|
-
toFixed: (fractionDigits?: number) => string;
|
1046
|
-
toExponential: (fractionDigits?: number) => string;
|
1047
|
-
toPrecision: (precision?: number) => string;
|
1048
|
-
valueOf: () => number;
|
1049
|
-
toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
|
1050
|
-
};
|
1051
|
-
rowspan?: Function | {
|
1052
|
-
toString: (radix?: number) => string;
|
1053
|
-
toFixed: (fractionDigits?: number) => string;
|
1054
|
-
toExponential: (fractionDigits?: number) => string;
|
1055
|
-
toPrecision: (precision?: number) => string;
|
1056
|
-
valueOf: () => number;
|
1057
|
-
toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
|
1058
|
-
};
|
1059
|
-
className?: string | Function;
|
1060
|
-
align?: string;
|
1061
|
-
prop?: string | Function;
|
1062
|
-
index?: number;
|
1050
|
+
resizable: boolean;
|
1051
|
+
colspan: any;
|
1052
|
+
rowspan: any;
|
1053
|
+
prop: any;
|
1063
1054
|
};
|
1064
1055
|
}, unknown, {}, {
|
1065
1056
|
updateColumnDefine(unmounted?: boolean): void;
|
@@ -1177,50 +1168,41 @@ declare const BkColumn: {
|
|
1177
1168
|
queueStack: (_: any, fn: any) => any;
|
1178
1169
|
};
|
1179
1170
|
column: {
|
1180
|
-
field:
|
1181
|
-
|
1182
|
-
|
1183
|
-
|
1184
|
-
|
1185
|
-
|
1186
|
-
|
1171
|
+
field: any;
|
1172
|
+
render: any;
|
1173
|
+
fixed: boolean | "left" | "right";
|
1174
|
+
sort: string | boolean | {
|
1175
|
+
sortFn: any;
|
1176
|
+
sortScope: (object | "all" | "current" | (() => "all" | "current") | ((props: Record<string, unknown>) => "all" | "current")) & ("all" | "current");
|
1177
|
+
value: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
|
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 | {
|
1187
1197
|
content: string | Function;
|
1188
1198
|
disabled?: boolean;
|
1189
1199
|
watchCellResize?: boolean;
|
1190
1200
|
mode?: "auto" | "static";
|
1191
1201
|
};
|
1192
|
-
|
1193
|
-
|
1194
|
-
|
1195
|
-
|
1196
|
-
sortFn?: Function;
|
1197
|
-
sortScope?: string;
|
1198
|
-
value?: string;
|
1199
|
-
};
|
1200
|
-
filter?: string | boolean | {
|
1201
|
-
list?: any;
|
1202
|
-
filterFn?: Function;
|
1203
|
-
};
|
1204
|
-
colspan?: Function | {
|
1205
|
-
toString: (radix?: number) => string;
|
1206
|
-
toFixed: (fractionDigits?: number) => string;
|
1207
|
-
toExponential: (fractionDigits?: number) => string;
|
1208
|
-
toPrecision: (precision?: number) => string;
|
1209
|
-
valueOf: () => number;
|
1210
|
-
toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
|
1211
|
-
};
|
1212
|
-
rowspan?: Function | {
|
1213
|
-
toString: (radix?: number) => string;
|
1214
|
-
toFixed: (fractionDigits?: number) => string;
|
1215
|
-
toExponential: (fractionDigits?: number) => string;
|
1216
|
-
toPrecision: (precision?: number) => string;
|
1217
|
-
valueOf: () => number;
|
1218
|
-
toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
|
1219
|
-
};
|
1220
|
-
className?: string | Function;
|
1221
|
-
align?: string;
|
1222
|
-
prop?: string | Function;
|
1223
|
-
index?: number;
|
1202
|
+
resizable: boolean;
|
1203
|
+
colspan: any;
|
1204
|
+
rowspan: any;
|
1205
|
+
prop: any;
|
1224
1206
|
};
|
1225
1207
|
}> & {} & {} & {
|
1226
1208
|
updateColumnDefine(unmounted?: boolean): void;
|
@@ -1301,50 +1283,41 @@ declare const BkColumn: {
|
|
1301
1283
|
queueStack: (_: any, fn: any) => any;
|
1302
1284
|
};
|
1303
1285
|
column: {
|
1304
|
-
field:
|
1305
|
-
|
1306
|
-
|
1307
|
-
|
1308
|
-
|
1309
|
-
|
1310
|
-
|
1286
|
+
field: any;
|
1287
|
+
render: any;
|
1288
|
+
fixed: boolean | "left" | "right";
|
1289
|
+
sort: string | boolean | {
|
1290
|
+
sortFn: any;
|
1291
|
+
sortScope: (object | "all" | "current" | (() => "all" | "current") | ((props: Record<string, unknown>) => "all" | "current")) & ("all" | "current");
|
1292
|
+
value: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
|
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 | {
|
1311
1312
|
content: string | Function;
|
1312
1313
|
disabled?: boolean;
|
1313
1314
|
watchCellResize?: boolean;
|
1314
1315
|
mode?: "auto" | "static";
|
1315
1316
|
};
|
1316
|
-
|
1317
|
-
|
1318
|
-
|
1319
|
-
|
1320
|
-
sortFn?: Function;
|
1321
|
-
sortScope?: string;
|
1322
|
-
value?: string;
|
1323
|
-
};
|
1324
|
-
filter?: string | boolean | {
|
1325
|
-
list?: any;
|
1326
|
-
filterFn?: Function;
|
1327
|
-
};
|
1328
|
-
colspan?: Function | {
|
1329
|
-
toString: (radix?: number) => string;
|
1330
|
-
toFixed: (fractionDigits?: number) => string;
|
1331
|
-
toExponential: (fractionDigits?: number) => string;
|
1332
|
-
toPrecision: (precision?: number) => string;
|
1333
|
-
valueOf: () => number;
|
1334
|
-
toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
|
1335
|
-
};
|
1336
|
-
rowspan?: Function | {
|
1337
|
-
toString: (radix?: number) => string;
|
1338
|
-
toFixed: (fractionDigits?: number) => string;
|
1339
|
-
toExponential: (fractionDigits?: number) => string;
|
1340
|
-
toPrecision: (precision?: number) => string;
|
1341
|
-
valueOf: () => number;
|
1342
|
-
toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
|
1343
|
-
};
|
1344
|
-
className?: string | Function;
|
1345
|
-
align?: string;
|
1346
|
-
prop?: string | Function;
|
1347
|
-
index?: number;
|
1317
|
+
resizable: boolean;
|
1318
|
+
colspan: any;
|
1319
|
+
rowspan: any;
|
1320
|
+
prop: any;
|
1348
1321
|
};
|
1349
1322
|
}, unknown, {}, {
|
1350
1323
|
updateColumnDefine(unmounted?: boolean): void;
|