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.
@@ -173,50 +173,41 @@ declare const BkTableColumn: {
173
173
  queueStack: (_: any, fn: any) => any;
174
174
  };
175
175
  column: {
176
- field: string | Function;
177
- label: string | Function;
178
- render?: string | Function | import("vue").Slot;
179
- width?: string | number;
180
- minWidth?: string | number;
181
- columnKey?: string;
182
- showOverflowTooltip?: boolean | {
176
+ field: any;
177
+ render: any;
178
+ fixed: boolean | "left" | "right";
179
+ sort: string | boolean | {
180
+ sortFn: any;
181
+ sortScope: (object | "all" | "current" | (() => "all" | "current") | ((props: Record<string, unknown>) => "all" | "current")) & ("all" | "current");
182
+ value: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
183
+ };
184
+ filter: string | boolean | {
185
+ list: any[] | (object & (() => any[]));
186
+ filterFn: any;
187
+ match: "full" | "fuzzy";
188
+ checked: any[] | (object & (() => any[]));
189
+ filterScope: (object | "all" | "current" | (() => "all" | "current") | ((props: Record<string, unknown>) => "all" | "current")) & ("all" | "current");
190
+ btnSave: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
191
+ btnReset: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
192
+ };
193
+ type: "none" | "selection" | "index" | "expand";
194
+ label: any;
195
+ width: string | number;
196
+ minWidth: string | number;
197
+ className: any;
198
+ align: "" | "left" | "center" | "right";
199
+ index: number;
200
+ columnKey: string;
201
+ showOverflowTooltip: boolean | {
183
202
  content: string | Function;
184
203
  disabled?: boolean;
185
204
  watchCellResize?: boolean;
186
205
  mode?: "auto" | "static";
187
206
  };
188
- type?: string;
189
- fixed?: string | boolean;
190
- resizable?: boolean;
191
- sort?: string | boolean | {
192
- sortFn?: Function;
193
- sortScope?: string;
194
- value?: string;
195
- };
196
- filter?: string | boolean | {
197
- list?: any;
198
- filterFn?: Function;
199
- };
200
- colspan?: Function | {
201
- toString: (radix?: number) => string;
202
- toFixed: (fractionDigits?: number) => string;
203
- toExponential: (fractionDigits?: number) => string;
204
- toPrecision: (precision?: number) => string;
205
- valueOf: () => number;
206
- toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
207
- };
208
- rowspan?: Function | {
209
- toString: (radix?: number) => string;
210
- toFixed: (fractionDigits?: number) => string;
211
- toExponential: (fractionDigits?: number) => string;
212
- toPrecision: (precision?: number) => string;
213
- valueOf: () => number;
214
- toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
215
- };
216
- className?: string | Function;
217
- align?: string;
218
- prop?: string | Function;
219
- index?: number;
207
+ resizable: boolean;
208
+ colspan: any;
209
+ rowspan: any;
210
+ prop: any;
220
211
  };
221
212
  }, unknown, {}, {
222
213
  updateColumnDefine(unmounted?: boolean): void;
@@ -334,50 +325,41 @@ declare const BkTableColumn: {
334
325
  queueStack: (_: any, fn: any) => any;
335
326
  };
336
327
  column: {
337
- field: string | Function;
338
- label: string | Function;
339
- render?: string | Function | import("vue").Slot;
340
- width?: string | number;
341
- minWidth?: string | number;
342
- columnKey?: string;
343
- showOverflowTooltip?: boolean | {
328
+ field: any;
329
+ render: any;
330
+ fixed: boolean | "left" | "right";
331
+ sort: string | boolean | {
332
+ sortFn: any;
333
+ sortScope: (object | "all" | "current" | (() => "all" | "current") | ((props: Record<string, unknown>) => "all" | "current")) & ("all" | "current");
334
+ value: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
335
+ };
336
+ filter: string | boolean | {
337
+ list: any[] | (object & (() => any[]));
338
+ filterFn: any;
339
+ match: "full" | "fuzzy";
340
+ checked: any[] | (object & (() => any[]));
341
+ filterScope: (object | "all" | "current" | (() => "all" | "current") | ((props: Record<string, unknown>) => "all" | "current")) & ("all" | "current");
342
+ btnSave: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
343
+ btnReset: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
344
+ };
345
+ type: "none" | "selection" | "index" | "expand";
346
+ label: any;
347
+ width: string | number;
348
+ minWidth: string | number;
349
+ className: any;
350
+ align: "" | "left" | "center" | "right";
351
+ index: number;
352
+ columnKey: string;
353
+ showOverflowTooltip: boolean | {
344
354
  content: string | Function;
345
355
  disabled?: boolean;
346
356
  watchCellResize?: boolean;
347
357
  mode?: "auto" | "static";
348
358
  };
349
- type?: string;
350
- fixed?: string | boolean;
351
- resizable?: boolean;
352
- sort?: string | boolean | {
353
- sortFn?: Function;
354
- sortScope?: string;
355
- value?: string;
356
- };
357
- filter?: string | boolean | {
358
- list?: any;
359
- filterFn?: Function;
360
- };
361
- colspan?: Function | {
362
- toString: (radix?: number) => string;
363
- toFixed: (fractionDigits?: number) => string;
364
- toExponential: (fractionDigits?: number) => string;
365
- toPrecision: (precision?: number) => string;
366
- valueOf: () => number;
367
- toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
368
- };
369
- rowspan?: Function | {
370
- toString: (radix?: number) => string;
371
- toFixed: (fractionDigits?: number) => string;
372
- toExponential: (fractionDigits?: number) => string;
373
- toPrecision: (precision?: number) => string;
374
- valueOf: () => number;
375
- toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
376
- };
377
- className?: string | Function;
378
- align?: string;
379
- prop?: string | Function;
380
- index?: number;
359
+ resizable: boolean;
360
+ colspan: any;
361
+ rowspan: any;
362
+ prop: any;
381
363
  };
382
364
  }> & {} & {} & {
383
365
  updateColumnDefine(unmounted?: boolean): void;
@@ -458,50 +440,41 @@ declare const BkTableColumn: {
458
440
  queueStack: (_: any, fn: any) => any;
459
441
  };
460
442
  column: {
461
- field: string | Function;
462
- label: string | Function;
463
- render?: string | Function | import("vue").Slot;
464
- width?: string | number;
465
- minWidth?: string | number;
466
- columnKey?: string;
467
- showOverflowTooltip?: boolean | {
443
+ field: any;
444
+ render: any;
445
+ fixed: boolean | "left" | "right";
446
+ sort: string | boolean | {
447
+ sortFn: any;
448
+ sortScope: (object | "all" | "current" | (() => "all" | "current") | ((props: Record<string, unknown>) => "all" | "current")) & ("all" | "current");
449
+ value: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
450
+ };
451
+ filter: string | boolean | {
452
+ list: any[] | (object & (() => any[]));
453
+ filterFn: any;
454
+ match: "full" | "fuzzy";
455
+ checked: any[] | (object & (() => any[]));
456
+ filterScope: (object | "all" | "current" | (() => "all" | "current") | ((props: Record<string, unknown>) => "all" | "current")) & ("all" | "current");
457
+ btnSave: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
458
+ btnReset: (string | boolean | object | (() => string | boolean) | ((props: Record<string, unknown>) => string | boolean)) & (string | boolean);
459
+ };
460
+ type: "none" | "selection" | "index" | "expand";
461
+ label: any;
462
+ width: string | number;
463
+ minWidth: string | number;
464
+ className: any;
465
+ align: "" | "left" | "center" | "right";
466
+ index: number;
467
+ columnKey: string;
468
+ showOverflowTooltip: boolean | {
468
469
  content: string | Function;
469
470
  disabled?: boolean;
470
471
  watchCellResize?: boolean;
471
472
  mode?: "auto" | "static";
472
473
  };
473
- type?: string;
474
- fixed?: string | boolean;
475
- resizable?: boolean;
476
- sort?: string | boolean | {
477
- sortFn?: Function;
478
- sortScope?: string;
479
- value?: string;
480
- };
481
- filter?: string | boolean | {
482
- list?: any;
483
- filterFn?: Function;
484
- };
485
- colspan?: Function | {
486
- toString: (radix?: number) => string;
487
- toFixed: (fractionDigits?: number) => string;
488
- toExponential: (fractionDigits?: number) => string;
489
- toPrecision: (precision?: number) => string;
490
- valueOf: () => number;
491
- toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
492
- };
493
- rowspan?: Function | {
494
- toString: (radix?: number) => string;
495
- toFixed: (fractionDigits?: number) => string;
496
- toExponential: (fractionDigits?: number) => string;
497
- toPrecision: (precision?: number) => string;
498
- valueOf: () => number;
499
- toLocaleString: (locales?: string | string[], options?: Intl.NumberFormatOptions) => string;
500
- };
501
- className?: string | Function;
502
- align?: string;
503
- prop?: string | Function;
504
- index?: number;
474
+ resizable: boolean;
475
+ colspan: any;
476
+ rowspan: any;
477
+ prop: any;
505
478
  };
506
479
  }, unknown, {}, {
507
480
  updateColumnDefine(unmounted?: boolean): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bkui-vue",
3
- "version": "0.0.1-beta.443",
3
+ "version": "0.0.1-beta.444",
4
4
  "workspaces": {
5
5
  "packages": [
6
6
  "packages/!(**.bak)*",