bkui-vue 0.0.1-beta.442 → 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.
@@ -856,6 +856,7 @@ declare const BkColumn: {
856
856
  list: any[] | (object & (() => any[]));
857
857
  filterFn: any;
858
858
  match: "full" | "fuzzy";
859
+ checked: any[] | (object & (() => any[]));
859
860
  filterScope: (object | "all" | "current" | (() => "all" | "current") | ((props: Record<string, unknown>) => "all" | "current")) & ("all" | "current");
860
861
  btnSave: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
861
862
  btnReset: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
@@ -911,6 +912,7 @@ declare const BkColumn: {
911
912
  list: any[] | (object & (() => any[]));
912
913
  filterFn: any;
913
914
  match: "full" | "fuzzy";
915
+ checked: any[] | (object & (() => any[]));
914
916
  filterScope: (object | "all" | "current" | (() => "all" | "current") | ((props: Record<string, unknown>) => "all" | "current")) & ("all" | "current");
915
917
  btnSave: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
916
918
  btnReset: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
@@ -919,6 +921,7 @@ declare const BkColumn: {
919
921
  list: any[] | (object & (() => any[]));
920
922
  filterFn: any;
921
923
  match: "full" | "fuzzy";
924
+ checked: any[] | (object & (() => any[]));
922
925
  filterScope: (object | "all" | "current" | (() => "all" | "current") | ((props: Record<string, unknown>) => "all" | "current")) & ("all" | "current");
923
926
  btnSave: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
924
927
  btnReset: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
@@ -988,6 +991,7 @@ declare const BkColumn: {
988
991
  list: any[] | (object & (() => any[]));
989
992
  filterFn: any;
990
993
  match: "full" | "fuzzy";
994
+ checked: any[] | (object & (() => any[]));
991
995
  filterScope: (object | "all" | "current" | (() => "all" | "current") | ((props: Record<string, unknown>) => "all" | "current")) & ("all" | "current");
992
996
  btnSave: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
993
997
  btnReset: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
@@ -996,6 +1000,7 @@ declare const BkColumn: {
996
1000
  list: any[] | (object & (() => any[]));
997
1001
  filterFn: any;
998
1002
  match: "full" | "fuzzy";
1003
+ checked: any[] | (object & (() => any[]));
999
1004
  filterScope: (object | "all" | "current" | (() => "all" | "current") | ((props: Record<string, unknown>) => "all" | "current")) & ("all" | "current");
1000
1005
  btnSave: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
1001
1006
  btnReset: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
@@ -1011,50 +1016,41 @@ declare const BkColumn: {
1011
1016
  queueStack: (_: any, fn: any) => any;
1012
1017
  };
1013
1018
  column: {
1014
- field: string | Function;
1015
- label: string | Function;
1016
- render?: string | Function | import("vue").Slot;
1017
- width?: string | number;
1018
- minWidth?: string | number;
1019
- columnKey?: string;
1020
- showOverflowTooltip?: boolean | {
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 | {
1021
1045
  content: string | Function;
1022
1046
  disabled?: boolean;
1023
1047
  watchCellResize?: boolean;
1024
1048
  mode?: "auto" | "static";
1025
1049
  };
1026
- type?: string;
1027
- fixed?: string | boolean;
1028
- resizable?: boolean;
1029
- sort?: string | boolean | {
1030
- sortFn?: Function;
1031
- sortScope?: string;
1032
- value?: string;
1033
- };
1034
- filter?: string | boolean | {
1035
- list?: any;
1036
- filterFn?: Function;
1037
- };
1038
- colspan?: Function | {
1039
- toString: (radix?: number) => string;
1040
- toFixed: (fractionDigits?: number) => string;
1041
- toExponential: (fractionDigits?: number) => string;
1042
- toPrecision: (precision?: number) => string;
1043
- valueOf: () => number;
1044
- toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
1045
- };
1046
- rowspan?: Function | {
1047
- toString: (radix?: number) => string;
1048
- toFixed: (fractionDigits?: number) => string;
1049
- toExponential: (fractionDigits?: number) => string;
1050
- toPrecision: (precision?: number) => string;
1051
- valueOf: () => number;
1052
- toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
1053
- };
1054
- className?: string | Function;
1055
- align?: string;
1056
- prop?: string | Function;
1057
- index?: number;
1050
+ resizable: boolean;
1051
+ colspan: any;
1052
+ rowspan: any;
1053
+ prop: any;
1058
1054
  };
1059
1055
  }, unknown, {}, {
1060
1056
  updateColumnDefine(unmounted?: boolean): void;
@@ -1071,6 +1067,7 @@ declare const BkColumn: {
1071
1067
  list: any[] | (object & (() => any[]));
1072
1068
  filterFn: any;
1073
1069
  match: "full" | "fuzzy";
1070
+ checked: any[] | (object & (() => any[]));
1074
1071
  filterScope: (object | "all" | "current" | (() => "all" | "current") | ((props: Record<string, unknown>) => "all" | "current")) & ("all" | "current");
1075
1072
  btnSave: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
1076
1073
  btnReset: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
@@ -1146,6 +1143,7 @@ declare const BkColumn: {
1146
1143
  list: any[] | (object & (() => any[]));
1147
1144
  filterFn: any;
1148
1145
  match: "full" | "fuzzy";
1146
+ checked: any[] | (object & (() => any[]));
1149
1147
  filterScope: (object | "all" | "current" | (() => "all" | "current") | ((props: Record<string, unknown>) => "all" | "current")) & ("all" | "current");
1150
1148
  btnSave: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
1151
1149
  btnReset: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
@@ -1154,6 +1152,7 @@ declare const BkColumn: {
1154
1152
  list: any[] | (object & (() => any[]));
1155
1153
  filterFn: any;
1156
1154
  match: "full" | "fuzzy";
1155
+ checked: any[] | (object & (() => any[]));
1157
1156
  filterScope: (object | "all" | "current" | (() => "all" | "current") | ((props: Record<string, unknown>) => "all" | "current")) & ("all" | "current");
1158
1157
  btnSave: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
1159
1158
  btnReset: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
@@ -1169,50 +1168,41 @@ declare const BkColumn: {
1169
1168
  queueStack: (_: any, fn: any) => any;
1170
1169
  };
1171
1170
  column: {
1172
- field: string | Function;
1173
- label: string | Function;
1174
- render?: string | Function | import("vue").Slot;
1175
- width?: string | number;
1176
- minWidth?: string | number;
1177
- columnKey?: string;
1178
- showOverflowTooltip?: boolean | {
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 | {
1179
1197
  content: string | Function;
1180
1198
  disabled?: boolean;
1181
1199
  watchCellResize?: boolean;
1182
1200
  mode?: "auto" | "static";
1183
1201
  };
1184
- type?: string;
1185
- fixed?: string | boolean;
1186
- resizable?: boolean;
1187
- sort?: string | boolean | {
1188
- sortFn?: Function;
1189
- sortScope?: string;
1190
- value?: string;
1191
- };
1192
- filter?: string | boolean | {
1193
- list?: any;
1194
- filterFn?: Function;
1195
- };
1196
- colspan?: Function | {
1197
- toString: (radix?: number) => string;
1198
- toFixed: (fractionDigits?: number) => string;
1199
- toExponential: (fractionDigits?: number) => string;
1200
- toPrecision: (precision?: number) => string;
1201
- valueOf: () => number;
1202
- toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
1203
- };
1204
- rowspan?: 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
- className?: string | Function;
1213
- align?: string;
1214
- prop?: string | Function;
1215
- index?: number;
1202
+ resizable: boolean;
1203
+ colspan: any;
1204
+ rowspan: any;
1205
+ prop: any;
1216
1206
  };
1217
1207
  }> & {} & {} & {
1218
1208
  updateColumnDefine(unmounted?: boolean): void;
@@ -1268,6 +1258,7 @@ declare const BkColumn: {
1268
1258
  list: any[] | (object & (() => any[]));
1269
1259
  filterFn: any;
1270
1260
  match: "full" | "fuzzy";
1261
+ checked: any[] | (object & (() => any[]));
1271
1262
  filterScope: (object | "all" | "current" | (() => "all" | "current") | ((props: Record<string, unknown>) => "all" | "current")) & ("all" | "current");
1272
1263
  btnSave: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
1273
1264
  btnReset: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
@@ -1276,6 +1267,7 @@ declare const BkColumn: {
1276
1267
  list: any[] | (object & (() => any[]));
1277
1268
  filterFn: any;
1278
1269
  match: "full" | "fuzzy";
1270
+ checked: any[] | (object & (() => any[]));
1279
1271
  filterScope: (object | "all" | "current" | (() => "all" | "current") | ((props: Record<string, unknown>) => "all" | "current")) & ("all" | "current");
1280
1272
  btnSave: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
1281
1273
  btnReset: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
@@ -1291,50 +1283,41 @@ declare const BkColumn: {
1291
1283
  queueStack: (_: any, fn: any) => any;
1292
1284
  };
1293
1285
  column: {
1294
- field: string | Function;
1295
- label: string | Function;
1296
- render?: string | Function | import("vue").Slot;
1297
- width?: string | number;
1298
- minWidth?: string | number;
1299
- columnKey?: string;
1300
- showOverflowTooltip?: boolean | {
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 | {
1301
1312
  content: string | Function;
1302
1313
  disabled?: boolean;
1303
1314
  watchCellResize?: boolean;
1304
1315
  mode?: "auto" | "static";
1305
1316
  };
1306
- type?: string;
1307
- fixed?: string | boolean;
1308
- resizable?: boolean;
1309
- sort?: string | boolean | {
1310
- sortFn?: Function;
1311
- sortScope?: string;
1312
- value?: string;
1313
- };
1314
- filter?: string | boolean | {
1315
- list?: any;
1316
- filterFn?: Function;
1317
- };
1318
- colspan?: Function | {
1319
- toString: (radix?: number) => string;
1320
- toFixed: (fractionDigits?: number) => string;
1321
- toExponential: (fractionDigits?: number) => string;
1322
- toPrecision: (precision?: number) => string;
1323
- valueOf: () => number;
1324
- toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
1325
- };
1326
- rowspan?: Function | {
1327
- toString: (radix?: number) => string;
1328
- toFixed: (fractionDigits?: number) => string;
1329
- toExponential: (fractionDigits?: number) => string;
1330
- toPrecision: (precision?: number) => string;
1331
- valueOf: () => number;
1332
- toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
1333
- };
1334
- className?: string | Function;
1335
- align?: string;
1336
- prop?: string | Function;
1337
- index?: number;
1317
+ resizable: boolean;
1318
+ colspan: any;
1319
+ rowspan: any;
1320
+ prop: any;
1338
1321
  };
1339
1322
  }, unknown, {}, {
1340
1323
  updateColumnDefine(unmounted?: boolean): void;
@@ -1351,6 +1334,7 @@ declare const BkColumn: {
1351
1334
  list: any[] | (object & (() => any[]));
1352
1335
  filterFn: any;
1353
1336
  match: "full" | "fuzzy";
1337
+ checked: any[] | (object & (() => any[]));
1354
1338
  filterScope: (object | "all" | "current" | (() => "all" | "current") | ((props: Record<string, unknown>) => "all" | "current")) & ("all" | "current");
1355
1339
  btnSave: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
1356
1340
  btnReset: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);