bkui-vue 1.0.3-beta.68.dialog.1 → 1.0.3-beta.68.dialog.3
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 +50 -50
- package/dist/index.esm.js +8131 -8136
- package/dist/index.umd.js +50 -50
- package/lib/dialog/index.js +21 -31
- package/lib/radio/index.d.ts +29 -0
- package/lib/radio/index.js +36 -20
- package/lib/radio/radio-button.d.ts +10 -0
- package/lib/radio/radio-group.d.ts +10 -0
- package/lib/radio/radio.d.ts +10 -0
- package/lib/shared/index.js +3 -0
- package/lib/table/components/table-column.d.ts +3 -119
- package/lib/table/const.d.ts +3 -3
- package/lib/table/index.d.ts +1 -105
- package/lib/table/index.js +17624 -561
- package/lib/table/plugins/use-active-columns.d.ts +2 -2
- package/lib/table/plugins/use-column-template.d.ts +7 -0
- package/lib/table/use-column.d.ts +9 -10
- package/lib/table/use-common.d.ts +1 -1
- package/lib/table-column/index.d.ts +3 -293
- package/lib/table-column/index.js +18 -280
- package/lib/tree/constant.d.ts +3 -1
- package/lib/tree/index.d.ts +21 -0
- package/lib/tree/index.js +17540 -23
- package/lib/tree/props.d.ts +10 -0
- package/lib/tree/tree.d.ts +17 -2
- package/lib/tree/use-intersection-observer.d.ts +27 -0
- package/lib/tree/use-node-attribute.d.ts +9 -0
- package/lib/virtual-render/index.js +11 -5
- package/package.json +1 -1
package/lib/table/index.d.ts
CHANGED
@@ -1347,24 +1347,7 @@ declare const BkTable: {
|
|
1347
1347
|
} & {
|
1348
1348
|
default: number;
|
1349
1349
|
};
|
1350
|
-
uniqueId: import("vue-types").VueTypeValidableDef<{
|
1351
|
-
[key: string]: any;
|
1352
|
-
}> & {
|
1353
|
-
default: () => {
|
1354
|
-
[key: string]: any;
|
1355
|
-
};
|
1356
|
-
} & {
|
1357
|
-
default: () => {
|
1358
|
-
[key: string]: any;
|
1359
|
-
};
|
1360
|
-
};
|
1361
1350
|
}, {
|
1362
|
-
isIndexPropChanged: import("vue").Ref<boolean>;
|
1363
|
-
setIsIndexChanged: (val: boolean) => void;
|
1364
|
-
initColumns: (_col: import("./props").Column | import("./props").Column[], _rm?: boolean) => void;
|
1365
|
-
bkTableCache: {
|
1366
|
-
queueStack: (_: any, fn: any) => any;
|
1367
|
-
};
|
1368
1351
|
column: {
|
1369
1352
|
fixed?: boolean | "right" | "left";
|
1370
1353
|
resizable?: boolean;
|
@@ -1403,9 +1386,6 @@ declare const BkTable: {
|
|
1403
1386
|
(locales?: Intl.LocalesArgument, options?: Intl.NumberFormatOptions): string;
|
1404
1387
|
};
|
1405
1388
|
};
|
1406
|
-
uniqueId?: {
|
1407
|
-
[key: string]: any;
|
1408
|
-
};
|
1409
1389
|
render?: import("./props").RenderFunctionString;
|
1410
1390
|
sort?: string | boolean | {
|
1411
1391
|
sortFn?: Function;
|
@@ -1440,77 +1420,7 @@ declare const BkTable: {
|
|
1440
1420
|
field: import("./props").LabelFunctionString;
|
1441
1421
|
prop?: import("./props").LabelFunctionString;
|
1442
1422
|
};
|
1443
|
-
}, unknown, {}, {
|
1444
|
-
updateColumnDefine(unmounted?: boolean): void;
|
1445
|
-
copyProps(props: Partial<ExtractPropTypes<{
|
1446
|
-
label: import("vue-types").VueTypeDef<import("./props").LabelFunctionString>;
|
1447
|
-
field: import("vue-types").VueTypeDef<import("./props").LabelFunctionString>;
|
1448
|
-
render: import("vue-types").VueTypeDef<import("./props").RenderFunctionString>;
|
1449
|
-
width: import("vue-types").VueTypeDef<string | number>;
|
1450
|
-
minWidth: import("vue-types").VueTypeDef<string | number> & {
|
1451
|
-
default: string | number;
|
1452
|
-
};
|
1453
|
-
columnKey: import("vue-types").VueTypeValidableDef<string> & {
|
1454
|
-
default: string;
|
1455
|
-
} & {
|
1456
|
-
default: string;
|
1457
|
-
};
|
1458
|
-
showOverflowTooltip: import("vue-types").VueTypeDef<import("./props").IOverflowTooltipProp>;
|
1459
|
-
type: import("vue-types").VueTypeDef<"index" | "selection" | "expand" | "__COL_TYPE_NONE">;
|
1460
|
-
resizable: import("vue-types").VueTypeValidableDef<boolean> & {
|
1461
|
-
default: boolean;
|
1462
|
-
} & {
|
1463
|
-
default: boolean;
|
1464
|
-
};
|
1465
|
-
fixed: import("vue-types").VueTypeDef<boolean | "right" | "left"> & {
|
1466
|
-
default: boolean | "right" | "left";
|
1467
|
-
};
|
1468
|
-
sort: import("vue-types").VueTypeDef<import("./props").ISortPropShape>;
|
1469
|
-
filter: import("vue-types").VueTypeDef<import("./props").IFilterPropShape>;
|
1470
|
-
colspan: import("vue-types").VueTypeDef<import("./props").SpanFunctionString> & {
|
1471
|
-
default: (({ column, colIndex, row, rowIndex }: {
|
1472
|
-
column: any;
|
1473
|
-
colIndex: any;
|
1474
|
-
row: any;
|
1475
|
-
rowIndex: any;
|
1476
|
-
}) => number) | (() => Number);
|
1477
|
-
};
|
1478
|
-
rowspan: import("vue-types").VueTypeDef<import("./props").SpanFunctionString> & {
|
1479
|
-
default: (({ column, colIndex, row, rowIndex }: {
|
1480
|
-
column: any;
|
1481
|
-
colIndex: any;
|
1482
|
-
row: any;
|
1483
|
-
rowIndex: any;
|
1484
|
-
}) => number) | (() => Number);
|
1485
|
-
};
|
1486
|
-
align: import("vue-types").VueTypeDef<"" | "right" | "left" | "center">;
|
1487
|
-
className: import("vue-types").VueTypeDef<import("./props").RowClassFunctionString>;
|
1488
|
-
prop: import("vue-types").VueTypeDef<import("./props").LabelFunctionString>;
|
1489
|
-
index: import("vue-types").VueTypeValidableDef<number> & {
|
1490
|
-
default: number;
|
1491
|
-
} & {
|
1492
|
-
default: number;
|
1493
|
-
};
|
1494
|
-
uniqueId: import("vue-types").VueTypeValidableDef<{
|
1495
|
-
[key: string]: any;
|
1496
|
-
}> & {
|
1497
|
-
default: () => {
|
1498
|
-
[key: string]: any;
|
1499
|
-
};
|
1500
|
-
} & {
|
1501
|
-
default: () => {
|
1502
|
-
[key: string]: any;
|
1503
|
-
};
|
1504
|
-
};
|
1505
|
-
}>> | {
|
1506
|
-
[key: string]: any;
|
1507
|
-
}): {};
|
1508
|
-
rsolveIndexedColumn(): boolean;
|
1509
|
-
setNodeUid(): void;
|
1510
|
-
getNodeCtxUid(ctx: any): any;
|
1511
|
-
updateColumnDefineByParent(): void;
|
1512
|
-
unmountColumn(): void;
|
1513
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
1423
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
|
1514
1424
|
label: import("vue-types").VueTypeDef<import("./props").LabelFunctionString>;
|
1515
1425
|
field: import("vue-types").VueTypeDef<import("./props").LabelFunctionString>;
|
1516
1426
|
render: import("vue-types").VueTypeDef<import("./props").RenderFunctionString>;
|
@@ -1559,17 +1469,6 @@ declare const BkTable: {
|
|
1559
1469
|
} & {
|
1560
1470
|
default: number;
|
1561
1471
|
};
|
1562
|
-
uniqueId: import("vue-types").VueTypeValidableDef<{
|
1563
|
-
[key: string]: any;
|
1564
|
-
}> & {
|
1565
|
-
default: () => {
|
1566
|
-
[key: string]: any;
|
1567
|
-
};
|
1568
|
-
} & {
|
1569
|
-
default: () => {
|
1570
|
-
[key: string]: any;
|
1571
|
-
};
|
1572
|
-
};
|
1573
1472
|
}>>, {
|
1574
1473
|
fixed: boolean | "right" | "left";
|
1575
1474
|
resizable: boolean;
|
@@ -1578,9 +1477,6 @@ declare const BkTable: {
|
|
1578
1477
|
columnKey: string;
|
1579
1478
|
colspan: import("./props").SpanFunctionString;
|
1580
1479
|
rowspan: import("./props").SpanFunctionString;
|
1581
|
-
uniqueId: {
|
1582
|
-
[key: string]: any;
|
1583
|
-
};
|
1584
1480
|
}, {}>;
|
1585
1481
|
}>;
|
1586
1482
|
export default BkTable;
|