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
@@ -173,50 +173,41 @@ declare const BkTableColumn: {
|
|
173
173
|
queueStack: (_: any, fn: any) => any;
|
174
174
|
};
|
175
175
|
column: {
|
176
|
-
field:
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
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
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
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:
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
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
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
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:
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
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
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
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;
|