bkui-vue 1.0.3-beta.68 → 1.0.3-beta.68.dialog.2

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.
Files changed (102) hide show
  1. package/dist/index.cjs.js +70 -70
  2. package/dist/index.esm.js +20267 -19318
  3. package/dist/index.umd.js +67 -67
  4. package/dist/style.css +1 -1
  5. package/dist/style.variable.css +1 -1
  6. package/lib/components.d.ts +1 -0
  7. package/lib/components.js +1 -0
  8. package/lib/dialog/dialog.css +139 -84
  9. package/lib/dialog/dialog.d.ts +32 -133
  10. package/lib/dialog/dialog.less +9 -76
  11. package/lib/dialog/dialog.variable.css +139 -84
  12. package/lib/dialog/index.d.ts +84 -314
  13. package/lib/dialog/index.js +197 -221
  14. package/lib/dialog/props.d.ts +8 -48
  15. package/lib/info-box/index.d.ts +2 -2
  16. package/lib/info-box/index.js +328 -173
  17. package/lib/info-box/info-box.css +63 -7
  18. package/lib/info-box/info-box.d.ts +18 -16
  19. package/lib/info-box/info-box.less +76 -14
  20. package/lib/info-box/info-box.variable.css +63 -7
  21. package/lib/info-box/render-component.d.ts +4 -0
  22. package/lib/input/index.js +2 -1
  23. package/lib/modal/hooks.d.ts +1 -1
  24. package/lib/modal/index.d.ts +16 -350
  25. package/lib/modal/index.js +218 -703
  26. package/lib/modal/mask.d.ts +6 -0
  27. package/lib/modal/modal.css +135 -32
  28. package/lib/modal/modal.d.ts +6 -134
  29. package/lib/modal/modal.less +88 -29
  30. package/lib/modal/modal.variable.css +135 -32
  31. package/lib/modal/props.mixin.d.ts +2 -53
  32. package/lib/overflow-title/index.js +46 -52
  33. package/lib/pop-confirm/index.js +5 -8
  34. package/lib/radio/index.d.ts +15 -0
  35. package/lib/radio/index.js +21 -13
  36. package/lib/radio/radio.d.ts +10 -0
  37. package/lib/scrollbar/index.d.ts +15 -0
  38. package/lib/scrollbar/index.js +18763 -0
  39. package/lib/scrollbar/scrollbar-core/can-use-dom.d.ts +2 -0
  40. package/lib/scrollbar/scrollbar-core/helpers.d.ts +5 -0
  41. package/lib/scrollbar/scrollbar-core/index.d.ts +241 -0
  42. package/lib/scrollbar/scrollbar-core/mouse-wheel.d.ts +5 -0
  43. package/lib/scrollbar/scrollbar-core/scrollbar-width.d.ts +1 -0
  44. package/lib/scrollbar/scrollbar.css +75 -0
  45. package/lib/scrollbar/scrollbar.less +94 -0
  46. package/lib/scrollbar/scrollbar.variable.css +204 -0
  47. package/lib/shared/index.d.ts +0 -1
  48. package/lib/shared/index.js +1 -48
  49. package/lib/sideslider/index.d.ts +31 -222
  50. package/lib/sideslider/index.js +65 -40
  51. package/lib/sideslider/sideslider.css +17 -86
  52. package/lib/sideslider/sideslider.d.ts +14 -105
  53. package/lib/sideslider/sideslider.less +27 -107
  54. package/lib/sideslider/sideslider.variable.css +17 -86
  55. package/lib/slider/index.d.ts +19 -0
  56. package/lib/slider/index.js +45 -5
  57. package/lib/slider/slider.css +14 -0
  58. package/lib/slider/slider.d.ts +9 -0
  59. package/lib/slider/slider.less +15 -0
  60. package/lib/slider/slider.variable.css +14 -0
  61. package/lib/table/components/table-cell.d.ts +3 -2
  62. package/lib/table/components/table-column.d.ts +2 -2
  63. package/lib/table/const.d.ts +1 -1
  64. package/lib/table/index.d.ts +25 -2
  65. package/lib/table/index.js +237 -85
  66. package/lib/table/plugins/head-filter.css +8 -4
  67. package/lib/table/plugins/head-filter.less +6 -3
  68. package/lib/table/plugins/head-filter.variable.css +8 -4
  69. package/lib/table/plugins/use-fixed-column.d.ts +1 -1
  70. package/lib/table/plugins/use-pagination.d.ts +3 -1
  71. package/lib/table/plugins/use-shift-key.d.ts +11 -0
  72. package/lib/table/props.d.ts +11 -3
  73. package/lib/table/table.css +106 -46
  74. package/lib/table/table.d.ts +11 -0
  75. package/lib/table/table.less +43 -58
  76. package/lib/table/table.variable.css +106 -46
  77. package/lib/table/use-attributes.d.ts +2 -1
  78. package/lib/table/use-column.d.ts +6 -6
  79. package/lib/table/use-render.d.ts +1 -1
  80. package/lib/table-column/index.d.ts +6 -6
  81. package/lib/table-column/index.js +6 -2
  82. package/lib/tree/constant.d.ts +3 -1
  83. package/lib/tree/index.d.ts +44 -0
  84. package/lib/tree/index.js +17548 -25
  85. package/lib/tree/props.d.ts +18 -0
  86. package/lib/tree/tree.css +76 -2
  87. package/lib/tree/tree.d.ts +28 -2
  88. package/lib/tree/tree.variable.css +76 -2
  89. package/lib/tree/use-intersection-observer.d.ts +27 -0
  90. package/lib/tree/use-node-attribute.d.ts +9 -0
  91. package/lib/virtual-render/index.d.ts +27 -0
  92. package/lib/virtual-render/index.js +295 -80
  93. package/lib/virtual-render/props.d.ts +16 -0
  94. package/lib/virtual-render/use-fix-top.d.ts +2 -7
  95. package/lib/virtual-render/use-scrollbar.d.ts +24 -0
  96. package/lib/virtual-render/v-virtual-render.d.ts +2 -1
  97. package/lib/virtual-render/virtual-render.css +76 -2
  98. package/lib/virtual-render/virtual-render.d.ts +13 -0
  99. package/lib/virtual-render/virtual-render.less +3 -3
  100. package/lib/virtual-render/virtual-render.variable.css +76 -2
  101. package/package.json +1 -1
  102. package/lib/shared/mask.d.ts +0 -11
@@ -144,11 +144,85 @@
144
144
  .bk-F-scroll-y::-webkit-scrollbar-thumb {
145
145
  border-radius: 4px;
146
146
  }
147
+ .bk-scrollbar-wrapper {
148
+ position: relative;
149
+ overflow: hidden;
150
+ }
151
+ .bk-scrollbar-wrapper .bk-scrollbar-content-el {
152
+ display: inline-flex;
153
+ flex-direction: column;
154
+ width: 100%;
155
+ }
156
+ .bk-scrollbar-wrapper .bk-scrollbar-track {
157
+ z-index: 1;
158
+ position: absolute;
159
+ right: 0;
160
+ bottom: 0;
161
+ pointer-events: none;
162
+ overflow: hidden;
163
+ }
164
+ .bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-hover {
165
+ background-color: #F0F1F5;
166
+ cursor: pointer;
167
+ }
168
+ .bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-hover .bk-scrollbar::before {
169
+ background-color: #979BA5;
170
+ }
171
+ .bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-vertical {
172
+ top: 0;
173
+ width: 8px;
174
+ transform: translate(var(--scroll-offset-x), var(--scroll-offset-y));
175
+ }
176
+ .bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-horizontal {
177
+ left: 0;
178
+ height: 8px;
179
+ transform: translate(var(--scroll-offset-x), var(--scroll-offset-y));
180
+ }
181
+ .bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-horizontal.bk-scrollbar {
182
+ right: auto;
183
+ left: 0;
184
+ top: 0;
185
+ bottom: 0;
186
+ min-height: 0;
187
+ min-width: 8px;
188
+ width: auto;
189
+ }
190
+ .bk-scrollbar-wrapper .bk-scrollbar-dragging {
191
+ pointer-events: none;
192
+ -webkit-touch-callout: none;
193
+ -webkit-user-select: none;
194
+ -khtml-user-select: none;
195
+ -moz-user-select: none;
196
+ -ms-user-select: none;
197
+ user-select: none;
198
+ }
199
+ .bk-scrollbar-wrapper .bk-scrollbar {
200
+ position: absolute;
201
+ left: 0;
202
+ right: 0;
203
+ min-height: 8px;
204
+ }
205
+ .bk-scrollbar-wrapper .bk-scrollbar::before {
206
+ position: absolute;
207
+ content: '';
208
+ background: #DCDEE5;
209
+ border-radius: 6px;
210
+ left: 1px;
211
+ right: 1px;
212
+ top: 1px;
213
+ bottom: 1px;
214
+ opacity: 0;
215
+ transition: opacity 0.2s 0.9s linear;
216
+ }
217
+ .bk-scrollbar-wrapper .bk-scrollbar.bk-scrollbar-visible::before {
218
+ opacity: 0.9;
219
+ transition-delay: 0s;
220
+ transition-duration: 0s;
221
+ }
147
222
  .bk-virtual-render {
148
223
  position: relative;
149
224
  }
150
- .bk-virtual-render .bk-virtual-content,
151
- .bk-virtual-render.bk-virtual-content {
225
+ .bk-virtual-render .bk-virtual-content {
152
226
  position: absolute;
153
227
  top: 0;
154
228
  bottom: 0;
@@ -920,10 +994,6 @@
920
994
  max-width: 300px;
921
995
  min-width: 200px;
922
996
  }
923
- .bk-popover.bk-pop2-content.bk-table-head-filter .content-list .content-items {
924
- max-height: 200px;
925
- min-height: 40px;
926
- }
927
997
  .bk-popover.bk-pop2-content.bk-table-head-filter .content-list .content-items .list-item {
928
998
  width: 100%;
929
999
  height: 32px;
@@ -936,11 +1006,19 @@
936
1006
  .bk-popover.bk-pop2-content.bk-table-head-filter .content-list .content-items .list-item:hover {
937
1007
  background: #f0f1f5;
938
1008
  }
1009
+ .bk-popover.bk-pop2-content.bk-table-head-filter .content-list .content-items .list-item label {
1010
+ text-overflow: ellipsis;
1011
+ white-space: nowrap;
1012
+ overflow: hidden;
1013
+ width: 100%;
1014
+ }
939
1015
  .bk-popover.bk-pop2-content.bk-table-head-filter .content-list .content-items .list-item label:hover {
940
1016
  background: #f0f1f5;
941
1017
  }
942
1018
  .bk-popover.bk-pop2-content.bk-table-head-filter .content-list .content-items .list-item .bk-checkbox-label {
943
1019
  white-space: nowrap;
1020
+ text-overflow: ellipsis;
1021
+ overflow: hidden;
944
1022
  }
945
1023
  .bk-popover.bk-pop2-content.bk-table-head-filter .content-list .content-items .list-item .bk-checkbox {
946
1024
  margin-left: 0;
@@ -1126,9 +1204,9 @@
1126
1204
  }
1127
1205
  .bk-table {
1128
1206
  position: relative;
1207
+ width: 100%;
1129
1208
  height: auto;
1130
1209
  overflow: hidden;
1131
- width: 100%;
1132
1210
  }
1133
1211
  .bk-table-flex {
1134
1212
  display: flex;
@@ -1144,19 +1222,9 @@
1144
1222
  }
1145
1223
  .bk-table .bk-table-body {
1146
1224
  position: relative;
1147
- overflow: auto;
1148
- scrollbar-gutter: stable;
1225
+ overflow: hidden;
1149
1226
  border-bottom: 1px solid #dcdee5;
1150
1227
  }
1151
- .bk-table .bk-table-body::-webkit-scrollbar {
1152
- width: 5px;
1153
- height: 6px;
1154
- }
1155
- .bk-table .bk-table-body::-webkit-scrollbar-thumb {
1156
- background: #dcdee5;
1157
- border-radius: 10px;
1158
- box-shadow: inset 0 0 6px rgba(204, 204, 204, 0.3);
1159
- }
1160
1228
  .bk-table .bk-table-body .prepend-row {
1161
1229
  transform: translateX(var(--prepend-left));
1162
1230
  }
@@ -1183,17 +1251,6 @@
1183
1251
  background: white;
1184
1252
  transform: translateZ(0);
1185
1253
  }
1186
- .bk-table .bk-table-head::-webkit-scrollbar,
1187
- .bk-table .bk-table-body::-webkit-scrollbar {
1188
- width: 5px;
1189
- height: 5px;
1190
- }
1191
- .bk-table .bk-table-head::-webkit-scrollbar-thumb,
1192
- .bk-table .bk-table-body::-webkit-scrollbar-thumb {
1193
- background: #ddd;
1194
- border-radius: 20px;
1195
- box-shadow: inset 0 0 6px rgba(204, 204, 204, 0.3);
1196
- }
1197
1254
  .bk-table .bk-table-head.__is-empty,
1198
1255
  .bk-table .bk-table-body.__is-empty {
1199
1256
  display: flex;
@@ -1246,8 +1303,8 @@
1246
1303
  .bk-table .bk-table-body table th .cell .drag-cell,
1247
1304
  .bk-table .bk-table-head table td .cell .drag-cell,
1248
1305
  .bk-table .bk-table-body table td .cell .drag-cell {
1249
- font-size: 14px;
1250
1306
  height: 100%;
1307
+ font-size: 14px;
1251
1308
  }
1252
1309
  .bk-table .bk-table-head table th .cell.has-sort,
1253
1310
  .bk-table .bk-table-body table th .cell.has-sort,
@@ -1372,7 +1429,7 @@
1372
1429
  .bk-table .bk-table-body table thead th .cell {
1373
1430
  display: flex;
1374
1431
  align-items: center;
1375
- height: calc(var(--row-height) - 1px);
1432
+ height: calc(var(--row-height) - 2px);
1376
1433
  color: #313238;
1377
1434
  }
1378
1435
  .bk-table .bk-table-head table thead th.active,
@@ -1389,28 +1446,27 @@
1389
1446
  .bk-table .bk-table-head table tbody tr td,
1390
1447
  .bk-table .bk-table-body table tbody tr td {
1391
1448
  background-color: #fff;
1449
+ border-top: 1px solid transparent;
1450
+ border-bottom: 1px solid transparent;
1451
+ border-right: 1px solid transparent;
1452
+ box-sizing: border-box;
1392
1453
  }
1393
1454
  .bk-table .bk-table-head table tbody tr td.empty-cell,
1394
1455
  .bk-table .bk-table-body table tbody tr td.empty-cell {
1395
1456
  padding-bottom: 30px;
1396
1457
  }
1397
- .bk-table .bk-table-head table tbody tr td.is-last,
1398
- .bk-table .bk-table-body table tbody tr td.is-last {
1399
- border-bottom: none;
1400
- }
1401
1458
  .bk-table .bk-table-head table tbody tr td .cell,
1402
1459
  .bk-table .bk-table-body table tbody tr td .cell {
1403
1460
  display: block;
1404
1461
  width: 100%;
1405
- height: 100%;
1406
- line-height: calc(var(--row-height) - 1px);
1462
+ line-height: calc(var(--row-height) - 2px);
1407
1463
  box-sizing: border-box;
1408
1464
  align-items: center;
1409
1465
  }
1410
1466
  .bk-table .bk-table-head table tbody tr td .cell.drag,
1411
1467
  .bk-table .bk-table-body table tbody tr td .cell.drag {
1412
- cursor: move;
1413
1468
  text-align: center;
1469
+ cursor: move;
1414
1470
  }
1415
1471
  .bk-table .bk-table-head table tbody tr:hover.hover-highlight td:not(.empty-cell),
1416
1472
  .bk-table .bk-table-body table tbody tr:hover.hover-highlight td:not(.empty-cell) {
@@ -1423,7 +1479,6 @@
1423
1479
  .bk-table .bk-table-head {
1424
1480
  position: relative;
1425
1481
  z-index: 2;
1426
- scrollbar-gutter: stable;
1427
1482
  overflow: hidden;
1428
1483
  background-color: var(--background-color);
1429
1484
  }
@@ -1466,6 +1521,7 @@
1466
1521
  width: 100%;
1467
1522
  height: var(--footer-height);
1468
1523
  align-items: center;
1524
+ padding: 0 16px 0 22px;
1469
1525
  }
1470
1526
  .bk-table .bk-table-footer.is-hidden {
1471
1527
  display: none;
@@ -1473,10 +1529,10 @@
1473
1529
  .bk-table.bordered-row .bk-table-head {
1474
1530
  border-bottom: 1px solid #dcdee5;
1475
1531
  }
1476
- .bk-table.bordered-row td {
1477
- border-bottom: 1px solid #dcdee5;
1532
+ .bk-table.bordered-row .bk-table-body tbody tr td {
1533
+ border-bottom-color: #dcdee5;
1478
1534
  }
1479
- .bk-table.bordered-row tr:last-child td {
1535
+ .bk-table.bordered-row .bk-table-body tbody tr:last-child td {
1480
1536
  border-bottom: none;
1481
1537
  }
1482
1538
  .bk-table.bordered-outer {
@@ -1497,14 +1553,18 @@
1497
1553
  .bk-table.bordered-horizontal .__is-empty .bk-table-body-content {
1498
1554
  border-bottom: 1px solid #dcdee5;
1499
1555
  }
1500
- .bk-table.bordered-col th,
1501
- .bk-table.bordered-col td {
1556
+ .bk-table.bordered-col th {
1502
1557
  border-right: 1px solid #dcdee5;
1503
1558
  }
1504
- .bk-table.bordered-col th:last-child,
1505
- .bk-table.bordered-col td:last-child {
1559
+ .bk-table.bordered-col th:last-child {
1506
1560
  border-right: none;
1507
1561
  }
1562
+ .bk-table.bordered-col .bk-table-body tbody tr td {
1563
+ border-right-color: #dcdee5;
1564
+ }
1565
+ .bk-table.bordered-col .bk-table-body tbody tr td:last-child {
1566
+ border-right-color: transparent;
1567
+ }
1508
1568
  .bk-table th,
1509
1569
  .bk-table td {
1510
1570
  border-right: 1px solid transparent;
@@ -21,7 +21,7 @@ export type ITableFormatData = {
21
21
  declare const tableSchemaResponse: (props: TablePropTypes) => {
22
22
  formatColumns: (columns: Column[]) => void;
23
23
  formatDataSchema: (data: any[]) => void;
24
- setRowSelection: (row: any, isSelected: boolean) => void;
24
+ setRowSelection: (row: any, isSelected: boolean, index?: number) => void;
25
25
  setRowExpand: (row: any, isExpand: boolean) => void;
26
26
  setRowIndex: (row: any, index: number) => void;
27
27
  setColumnAttribute: (col: Column, attrName: string, attrValue: string | number | boolean | ((...args: any[]) => boolean | number | void | string)) => void;
@@ -56,6 +56,7 @@ declare const tableSchemaResponse: (props: TablePropTypes) => {
56
56
  localPagination: import("vue").Ref<any>;
57
57
  formatData: ITableFormatData;
58
58
  setIndexData: () => Promise<void>;
59
+ getFilterFnList: () => any[];
59
60
  };
60
61
  export type ITableResponse = ReturnType<typeof tableSchemaResponse>;
61
62
  export default tableSchemaResponse;
@@ -17,8 +17,8 @@ declare const _default: (props: TablePropTypes, targetColumns: ITableColumn[]) =
17
17
  minWidth?: string | number;
18
18
  columnKey?: string;
19
19
  showOverflowTooltip?: boolean | {
20
- content: string | Function;
21
- disabled?: (col: Column, row: any) => boolean;
20
+ content: string | ((col: Column, row: any) => string);
21
+ disabled?: boolean | ((col: Column, row: any) => boolean);
22
22
  watchCellResize?: boolean;
23
23
  mode?: "auto" | "static";
24
24
  popoverOption?: any;
@@ -105,8 +105,8 @@ declare const _default: (props: TablePropTypes, targetColumns: ITableColumn[]) =
105
105
  minWidth?: string | number;
106
106
  columnKey?: string;
107
107
  showOverflowTooltip?: boolean | {
108
- content: string | Function;
109
- disabled?: (col: Column, row: any) => boolean;
108
+ content: string | ((col: Column, row: any) => string);
109
+ disabled?: boolean | ((col: Column, row: any) => boolean);
110
110
  watchCellResize?: boolean;
111
111
  mode?: "auto" | "static";
112
112
  popoverOption?: any;
@@ -193,8 +193,8 @@ declare const _default: (props: TablePropTypes, targetColumns: ITableColumn[]) =
193
193
  minWidth?: string | number;
194
194
  columnKey?: string;
195
195
  showOverflowTooltip?: boolean | {
196
- content: string | Function;
197
- disabled?: (col: Column, row: any) => boolean;
196
+ content: string | ((col: Column, row: any) => string);
197
+ disabled?: boolean | ((col: Column, row: any) => boolean);
198
198
  watchCellResize?: boolean;
199
199
  mode?: "auto" | "static";
200
200
  popoverOption?: any;
@@ -1,7 +1,7 @@
1
1
  import { SetupContext } from 'vue';
2
2
  import { TablePropTypes } from './props';
3
3
  import { ITableResponse } from './use-attributes';
4
- declare const _default: (props: TablePropTypes, context: SetupContext<any>, tableResp: ITableResponse, styleRef: any, head: any, root: any, resetTableHeight: any) => {
4
+ declare const _default: (props: TablePropTypes, context: SetupContext<any>, tableResp: ITableResponse, head: any, root: any, resetTableHeight: any) => {
5
5
  renderTableHeadSchema: () => (string | JSX.Element)[];
6
6
  renderTableBodySchema: (rows: any[]) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
7
7
  [key: string]: any;
@@ -130,8 +130,8 @@ declare const BkTableColumn: {
130
130
  className?: import("../table/props").RowClassFunctionString;
131
131
  align?: "" | "right" | "left" | "center";
132
132
  showOverflowTooltip?: boolean | {
133
- content: string | Function;
134
- disabled?: (col: import("../../bkui-vue").TableIColumn, row: any) => boolean;
133
+ content: string | ((col: import("../../bkui-vue").TableIColumn, row: any) => string);
134
+ disabled?: boolean | ((col: import("../../bkui-vue").TableIColumn, row: any) => boolean);
135
135
  watchCellResize?: boolean;
136
136
  mode?: "auto" | "static";
137
137
  popoverOption?: any;
@@ -420,8 +420,8 @@ declare const BkTableColumn: {
420
420
  className?: import("../table/props").RowClassFunctionString;
421
421
  align?: "" | "right" | "left" | "center";
422
422
  showOverflowTooltip?: boolean | {
423
- content: string | Function;
424
- disabled?: (col: import("../../bkui-vue").TableIColumn, row: any) => boolean;
423
+ content: string | ((col: import("../../bkui-vue").TableIColumn, row: any) => string);
424
+ disabled?: boolean | ((col: import("../../bkui-vue").TableIColumn, row: any) => boolean);
425
425
  watchCellResize?: boolean;
426
426
  mode?: "auto" | "static";
427
427
  popoverOption?: any;
@@ -647,8 +647,8 @@ declare const BkTableColumn: {
647
647
  className?: import("../table/props").RowClassFunctionString;
648
648
  align?: "" | "right" | "left" | "center";
649
649
  showOverflowTooltip?: boolean | {
650
- content: string | Function;
651
- disabled?: (col: import("../../bkui-vue").TableIColumn, row: any) => boolean;
650
+ content: string | ((col: import("../../bkui-vue").TableIColumn, row: any) => string);
651
+ disabled?: boolean | ((col: import("../../bkui-vue").TableIColumn, row: any) => boolean);
652
652
  watchCellResize?: boolean;
653
653
  mode?: "auto" | "static";
654
654
  popoverOption?: any;
@@ -256,7 +256,7 @@ var COLUMN_ATTRIBUTE = {
256
256
  /**
257
257
  * Y 轴滚动条宽度
258
258
  */
259
- var SCROLLY_WIDTH = 6;
259
+ var SCROLLY_WIDTH = 0;
260
260
  /**
261
261
  * 默认行高
262
262
  */
@@ -684,7 +684,11 @@ var tableProps = {
684
684
  /**
685
685
  * 是否支持行拖拽排序
686
686
  */
687
- rowDraggable: shared_namespaceObject.PropTypes.oneOfType([shared_namespaceObject.PropTypes.func, shared_namespaceObject.PropTypes.bool, shared_namespaceObject.PropTypes.object]).def(false)
687
+ rowDraggable: shared_namespaceObject.PropTypes.oneOfType([shared_namespaceObject.PropTypes.func, shared_namespaceObject.PropTypes.bool, shared_namespaceObject.PropTypes.object]).def(false),
688
+ /**
689
+ * 是否支持shift键多行选择
690
+ */
691
+ shiftMultiChecked: shared_namespaceObject.PropTypes.bool.def(false)
688
692
  };
689
693
  ;// CONCATENATED MODULE: ../../packages/table/src/components/table-column.tsx
690
694
 
@@ -6,7 +6,8 @@ export declare enum EVENTS {
6
6
  NODE_DRAG_START = "nodeDragStart",
7
7
  NODE_DRAG_OVER = "nodeDragOver",
8
8
  NODE_DRAG_LEAVE = "nodeDragLeave",
9
- NODE_DROP = "nodeDrop"
9
+ NODE_DROP = "nodeDrop",
10
+ NODE_ENTER_VIEW = "nodeEnterView"
10
11
  }
11
12
  export declare const TreeEmitEventsType: {
12
13
  nodeClick: (..._args: any[]) => boolean;
@@ -17,6 +18,7 @@ export declare const TreeEmitEventsType: {
17
18
  nodeDragOver: (..._args: any[]) => boolean;
18
19
  nodeDragLeave: (..._args: any[]) => boolean;
19
20
  nodeDrop: (..._args: any[]) => boolean;
21
+ nodeEnterView: (..._args: any[]) => boolean;
20
22
  };
21
23
  /**
22
24
  * 节点扩展属性
@@ -115,6 +115,14 @@ declare const BkTree: {
115
115
  } & {
116
116
  default: boolean;
117
117
  };
118
+ checkStrictly: import("vue-types").VueTypeValidableDef<boolean> & {
119
+ default: boolean;
120
+ } & {
121
+ default: boolean;
122
+ };
123
+ intersectionObserver: import("vue-types").VueTypeDef<boolean | import("./props").IIntersectionObserver> & {
124
+ default: boolean | (() => import("./props").IIntersectionObserver);
125
+ };
118
126
  }>> & {
119
127
  onNodeClick?: (...args: any[]) => any;
120
128
  onNodeCollapse?: (...args: any[]) => any;
@@ -124,6 +132,7 @@ declare const BkTree: {
124
132
  onNodeDragOver?: (...args: any[]) => any;
125
133
  onNodeDragLeave?: (...args: any[]) => any;
126
134
  onNodeDrop?: (...args: any[]) => any;
135
+ onNodeEnterView?: (...args: any[]) => any;
127
136
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
128
137
  nodeClick: (..._args: any[]) => boolean;
129
138
  nodeCollapse: (..._args: any[]) => boolean;
@@ -133,6 +142,7 @@ declare const BkTree: {
133
142
  nodeDragOver: (..._args: any[]) => boolean;
134
143
  nodeDragLeave: (..._args: any[]) => boolean;
135
144
  nodeDrop: (..._args: any[]) => boolean;
145
+ nodeEnterView: (..._args: any[]) => boolean;
136
146
  }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
137
147
  data: import("vue-types").VueTypeDef<any[]> & {
138
148
  default: () => any[];
@@ -249,6 +259,14 @@ declare const BkTree: {
249
259
  } & {
250
260
  default: boolean;
251
261
  };
262
+ checkStrictly: import("vue-types").VueTypeValidableDef<boolean> & {
263
+ default: boolean;
264
+ } & {
265
+ default: boolean;
266
+ };
267
+ intersectionObserver: import("vue-types").VueTypeDef<boolean | import("./props").IIntersectionObserver> & {
268
+ default: boolean | (() => import("./props").IIntersectionObserver);
269
+ };
252
270
  }>> & {
253
271
  onNodeClick?: (...args: any[]) => any;
254
272
  onNodeCollapse?: (...args: any[]) => any;
@@ -258,6 +276,7 @@ declare const BkTree: {
258
276
  onNodeDragOver?: (...args: any[]) => any;
259
277
  onNodeDragLeave?: (...args: any[]) => any;
260
278
  onNodeDrop?: (...args: any[]) => any;
279
+ onNodeEnterView?: (...args: any[]) => any;
261
280
  }, {
262
281
  data: any[];
263
282
  height: number;
@@ -285,6 +304,8 @@ declare const BkTree: {
285
304
  expandAll: boolean;
286
305
  nodeContentAction: any;
287
306
  keepSlotData: boolean;
307
+ checkStrictly: boolean;
308
+ intersectionObserver: boolean | import("./props").IIntersectionObserver;
288
309
  }, true, {}, {}, {
289
310
  P: {};
290
311
  B: {};
@@ -408,6 +429,14 @@ declare const BkTree: {
408
429
  } & {
409
430
  default: boolean;
410
431
  };
432
+ checkStrictly: import("vue-types").VueTypeValidableDef<boolean> & {
433
+ default: boolean;
434
+ } & {
435
+ default: boolean;
436
+ };
437
+ intersectionObserver: import("vue-types").VueTypeDef<boolean | import("./props").IIntersectionObserver> & {
438
+ default: boolean | (() => import("./props").IIntersectionObserver);
439
+ };
411
440
  }>> & {
412
441
  onNodeClick?: (...args: any[]) => any;
413
442
  onNodeCollapse?: (...args: any[]) => any;
@@ -417,6 +446,7 @@ declare const BkTree: {
417
446
  onNodeDragOver?: (...args: any[]) => any;
418
447
  onNodeDragLeave?: (...args: any[]) => any;
419
448
  onNodeDrop?: (...args: any[]) => any;
449
+ onNodeEnterView?: (...args: any[]) => any;
420
450
  }, () => JSX.Element, {}, {}, {}, {
421
451
  data: any[];
422
452
  height: number;
@@ -444,6 +474,8 @@ declare const BkTree: {
444
474
  expandAll: boolean;
445
475
  nodeContentAction: any;
446
476
  keepSlotData: boolean;
477
+ checkStrictly: boolean;
478
+ intersectionObserver: boolean | import("./props").IIntersectionObserver;
447
479
  }>;
448
480
  __isFragment?: never;
449
481
  __isTeleport?: never;
@@ -564,6 +596,14 @@ declare const BkTree: {
564
596
  } & {
565
597
  default: boolean;
566
598
  };
599
+ checkStrictly: import("vue-types").VueTypeValidableDef<boolean> & {
600
+ default: boolean;
601
+ } & {
602
+ default: boolean;
603
+ };
604
+ intersectionObserver: import("vue-types").VueTypeDef<boolean | import("./props").IIntersectionObserver> & {
605
+ default: boolean | (() => import("./props").IIntersectionObserver);
606
+ };
567
607
  }>> & {
568
608
  onNodeClick?: (...args: any[]) => any;
569
609
  onNodeCollapse?: (...args: any[]) => any;
@@ -573,6 +613,7 @@ declare const BkTree: {
573
613
  onNodeDragOver?: (...args: any[]) => any;
574
614
  onNodeDragLeave?: (...args: any[]) => any;
575
615
  onNodeDrop?: (...args: any[]) => any;
616
+ onNodeEnterView?: (...args: any[]) => any;
576
617
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
577
618
  nodeClick: (..._args: any[]) => boolean;
578
619
  nodeCollapse: (..._args: any[]) => boolean;
@@ -582,6 +623,7 @@ declare const BkTree: {
582
623
  nodeDragOver: (..._args: any[]) => boolean;
583
624
  nodeDragLeave: (..._args: any[]) => boolean;
584
625
  nodeDrop: (..._args: any[]) => boolean;
626
+ nodeEnterView: (..._args: any[]) => boolean;
585
627
  }, string, {
586
628
  data: any[];
587
629
  height: number;
@@ -609,5 +651,7 @@ declare const BkTree: {
609
651
  expandAll: boolean;
610
652
  nodeContentAction: any;
611
653
  keepSlotData: boolean;
654
+ checkStrictly: boolean;
655
+ intersectionObserver: boolean | import("./props").IIntersectionObserver;
612
656
  }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin<any[]>;
613
657
  export default BkTree;