bkui-vue 2.0.1-beta.40 → 2.0.1-beta.42

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 (62) hide show
  1. package/dist/index.cjs.js +63 -63
  2. package/dist/index.esm.js +16459 -16370
  3. package/dist/index.umd.js +63 -63
  4. package/dist/style.css +1 -1
  5. package/dist/style.variable.css +1 -1
  6. package/lib/checkbox/index.js +2 -1
  7. package/lib/index.js +1 -1
  8. package/lib/scrollbar/{scrollbar.css → css/scrollbar.css} +90 -75
  9. package/lib/scrollbar/css/scrollbar.less +139 -0
  10. package/lib/scrollbar/{scrollbar.variable.css → css/scrollbar.variable.css} +89 -74
  11. package/lib/scrollbar/handlers/click-rail.d.ts +2 -0
  12. package/lib/scrollbar/handlers/drag-thumb.d.ts +1 -0
  13. package/lib/scrollbar/handlers/keyboard.d.ts +2 -0
  14. package/lib/scrollbar/handlers/mouse-wheel.d.ts +2 -0
  15. package/lib/scrollbar/handlers/touch.d.ts +4 -0
  16. package/lib/scrollbar/helper/class-names.d.ts +21 -0
  17. package/lib/scrollbar/helper/css.d.ts +3 -0
  18. package/lib/scrollbar/helper/dom.d.ts +4 -0
  19. package/lib/scrollbar/helper/event-manager.d.ts +20 -0
  20. package/lib/scrollbar/helper/util.d.ts +11 -0
  21. package/lib/scrollbar/index.d.ts +133 -13
  22. package/lib/scrollbar/index.js +1331 -18489
  23. package/lib/scrollbar/process-scroll-diff.d.ts +1 -0
  24. package/lib/scrollbar/update-geometry.d.ts +8 -0
  25. package/lib/search-select/index.d.ts +12 -6
  26. package/lib/search-select/index.js +33 -10
  27. package/lib/search-select/input.d.ts +2 -1
  28. package/lib/search-select/search-select.d.ts +4 -2
  29. package/lib/search-select/selected.d.ts +4 -2
  30. package/lib/styles/index.d.ts +1 -0
  31. package/lib/table/components/table-cell.d.ts +11 -0
  32. package/lib/table/hooks/use-columns.d.ts +4 -1
  33. package/lib/table/hooks/use-layout.d.ts +1 -0
  34. package/lib/table/hooks/use-settings.d.ts +2 -2
  35. package/lib/table/index.d.ts +23 -0
  36. package/lib/table/index.js +233 -77
  37. package/lib/table/props.d.ts +9 -1
  38. package/lib/table/table.css +126 -109
  39. package/lib/table/table.d.ts +11 -0
  40. package/lib/table/table.less +49 -30
  41. package/lib/table/table.variable.css +126 -109
  42. package/lib/table/utils.d.ts +15 -15
  43. package/lib/table-column/index.js +8 -0
  44. package/lib/tree/index.d.ts +3 -3
  45. package/lib/tree/tree.css +90 -83
  46. package/lib/tree/tree.d.ts +1 -1
  47. package/lib/tree/tree.variable.css +90 -83
  48. package/lib/virtual-render/index.d.ts +0 -23
  49. package/lib/virtual-render/index.js +54 -106
  50. package/lib/virtual-render/props.d.ts +0 -6
  51. package/lib/virtual-render/use-scrollbar.d.ts +3 -17
  52. package/lib/virtual-render/virtual-render.css +89 -82
  53. package/lib/virtual-render/virtual-render.d.ts +0 -11
  54. package/lib/virtual-render/virtual-render.less +2 -11
  55. package/lib/virtual-render/virtual-render.variable.css +89 -82
  56. package/package.json +1 -1
  57. package/lib/scrollbar/scrollbar-core/can-use-dom.d.ts +0 -2
  58. package/lib/scrollbar/scrollbar-core/helpers.d.ts +0 -5
  59. package/lib/scrollbar/scrollbar-core/index.d.ts +0 -242
  60. package/lib/scrollbar/scrollbar-core/mouse-wheel.d.ts +0 -5
  61. package/lib/scrollbar/scrollbar-core/scrollbar-width.d.ts +0 -1
  62. package/lib/scrollbar/scrollbar.less +0 -119
@@ -145,111 +145,118 @@
145
145
  .bk-F-scroll-y::-webkit-scrollbar-thumb {
146
146
  border-radius: 4px;
147
147
  }
148
- .bk-scrollbar-wrapper {
149
- position: relative;
150
- overflow: hidden;
148
+ .bk-scrollbar {
149
+ overflow: hidden !important;
150
+ overflow-anchor: none;
151
+ touch-action: auto;
152
+ /*
153
+ * Scrollbar rail styles
154
+ */
155
+ /*
156
+ * Scrollbar thumb styles
157
+ */
158
+ }
159
+ .bk-scrollbar.bk--active-x > .bk__rail-x,
160
+ .bk-scrollbar.bk--active-y > .bk__rail-y {
161
+ display: block;
151
162
  }
152
- .bk-scrollbar-wrapper .bk-scrollbar-content-el {
153
- display: inline-flex;
154
- flex-direction: column;
155
- width: 100%;
163
+ .bk-scrollbar .bk__rail-x:hover,
164
+ .bk-scrollbar .bk__rail-y:hover,
165
+ .bk-scrollbar .bk__rail-x:focus,
166
+ .bk-scrollbar .bk__rail-y:focus,
167
+ .bk-scrollbar .bk__rail-x.bk--clicking,
168
+ .bk-scrollbar .bk__rail-y.bk--clicking {
169
+ background-color: #f0f1f5;
156
170
  }
157
- .bk-scrollbar-wrapper .bk-scrollbar-track {
158
- z-index: 1;
171
+ .bk-scrollbar .bk__rail-x {
172
+ display: none;
173
+ opacity: 0;
174
+ transition: background-color 0.2s linear, opacity 0.2s linear;
175
+ height: 10px;
176
+ bottom: 0px;
159
177
  position: absolute;
160
- right: 0;
161
- bottom: 0;
162
- pointer-events: none;
163
- overflow: hidden;
164
- }
165
- .bk-scrollbar-wrapper .bk-scrollbar-track.track-small.bk-scrollbar-vertical {
166
- width: 6px;
167
- }
168
- .bk-scrollbar-wrapper .bk-scrollbar-track.track-small.bk-scrollbar-vertical.bk-scrollbar-hover {
169
- width: 8px;
170
178
  }
171
- .bk-scrollbar-wrapper .bk-scrollbar-track.track-small.bk-scrollbar-horizontal {
172
- height: 6px;
173
- }
174
- .bk-scrollbar-wrapper .bk-scrollbar-track.track-small.bk-scrollbar-horizontal.bk-scrollbar-hover {
179
+ .bk-scrollbar .bk__rail-x.bk-size-small {
175
180
  height: 8px;
176
181
  }
177
- .bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-hover {
178
- background-color: #f0f1f5;
179
- cursor: pointer;
182
+ .bk-scrollbar .bk__rail-x.bk-size-small .bk__thumb-x {
183
+ height: 6px;
180
184
  }
181
- .bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-hover .bk-scrollbar::before {
182
- background-color: #979ba5;
185
+ .bk-scrollbar .bk__rail-y {
186
+ display: none;
187
+ opacity: 0;
188
+ transition: background-color 0.2s linear, opacity 0.2s linear;
189
+ width: 10px;
190
+ right: 0px;
191
+ position: absolute;
192
+ margin-right: 2px;
183
193
  }
184
- .bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-vertical {
185
- top: 0;
194
+ .bk-scrollbar .bk__rail-y.bk-size-small {
186
195
  width: 8px;
187
- transform: translate(var(--scroll-offset-x), var(--scroll-offset-y));
188
196
  }
189
- .bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-vertical.bk-scrollbar-hover {
190
- width: 10px;
197
+ .bk-scrollbar .bk__rail-y.bk-size-small .bk__thumb-y {
198
+ width: 6px;
191
199
  }
192
- .bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-horizontal {
193
- left: 0;
200
+ .bk-scrollbar:hover > .bk__rail-x,
201
+ .bk-scrollbar:hover > .bk__rail-y,
202
+ .bk-scrollbar.bk--focus > .bk__rail-x,
203
+ .bk-scrollbar.bk--focus > .bk__rail-y,
204
+ .bk-scrollbar.bk--scrolling-x > .bk__rail-x,
205
+ .bk-scrollbar.bk--scrolling-y > .bk__rail-y {
206
+ opacity: 0.9;
207
+ }
208
+ .bk-scrollbar .bk__thumb-x {
209
+ background-color: #dcdee5;
210
+ border-radius: 8px;
211
+ transition: background-color 0.2s linear, height 0.2s ease-in-out;
194
212
  height: 8px;
195
- transform: translate(var(--scroll-offset-x), var(--scroll-offset-y));
213
+ bottom: 0px;
214
+ position: absolute;
196
215
  }
197
- .bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-horizontal.bk-scrollbar-hover {
216
+ .bk-scrollbar .bk__thumb-y {
217
+ background-color: #dcdee5;
218
+ border-radius: 8px;
219
+ transition: background-color 0.2s linear, width 0.2s ease-in-out;
220
+ width: 8px;
221
+ right: 0px;
222
+ position: absolute;
223
+ }
224
+ .bk-scrollbar .bk__rail-x:hover > .bk__thumb-x,
225
+ .bk-scrollbar .bk__rail-x:focus > .bk__thumb-x,
226
+ .bk-scrollbar .bk__rail-x.bk--clicking .bk__thumb-x {
227
+ background-color: #979ba5;
198
228
  height: 10px;
199
229
  }
200
- .bk-scrollbar-wrapper .bk-scrollbar-track.bk-scrollbar-horizontal.bk-scrollbar {
201
- right: auto;
202
- left: 0;
203
- top: 0;
204
- bottom: 0;
205
- min-height: 0;
206
- min-width: 8px;
207
- width: auto;
230
+ .bk-scrollbar .bk__rail-y:hover > .bk__thumb-y,
231
+ .bk-scrollbar .bk__rail-y:focus > .bk__thumb-y,
232
+ .bk-scrollbar .bk__rail-y.bk--clicking .bk__thumb-y {
233
+ background-color: #979ba5;
234
+ width: 10px;
208
235
  }
209
- .bk-scrollbar-wrapper .bk-scrollbar-dragging {
210
- pointer-events: none;
211
- -webkit-touch-callout: none;
212
- -webkit-user-select: none;
213
- -khtml-user-select: none;
214
- -moz-user-select: none;
215
- -ms-user-select: none;
216
- user-select: none;
236
+ .bk-scrollbar .bk-size-small > .bk__thumb-x,
237
+ .bk-scrollbar .bk-size-small > .bk__thumb-x,
238
+ .bk-scrollbar .bk-size-small.bk--clicking .bk__thumb-x {
239
+ height: 8px;
217
240
  }
218
- .bk-scrollbar-wrapper .bk-scrollbar {
219
- position: absolute;
220
- left: 0;
221
- right: 0;
222
- top: 0;
223
- bottom: 0;
241
+ .bk-scrollbar .bk-size-small:hover > .bk__thumb-y,
242
+ .bk-scrollbar .bk-size-small:focus > .bk__thumb-y,
243
+ .bk-scrollbar .bk-size-small.bk--clicking .bk__thumb-y {
244
+ width: 8px;
224
245
  }
225
- .bk-scrollbar-wrapper .bk-scrollbar::before {
226
- position: absolute;
227
- content: '';
228
- background: #dcdee5;
229
- border-radius: 6px;
230
- left: 0;
231
- right: 0;
232
- top: 0;
233
- bottom: 0;
234
- opacity: 0;
235
- transition: opacity 0.2s 0.9s linear;
246
+ /* MS supports */
247
+ @supports (-ms-overflow-style: none) {
248
+ .bk-scrollbar {
249
+ overflow: auto !important;
250
+ }
236
251
  }
237
- .bk-scrollbar-wrapper .bk-scrollbar.bk-scrollbar-visible::before {
238
- opacity: 0.9;
239
- transition-delay: 0s;
240
- transition-duration: 0s;
252
+ @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
253
+ .bk-scrollbar {
254
+ overflow: auto !important;
255
+ }
241
256
  }
242
257
  .bk-virtual-render {
243
258
  position: relative;
244
259
  }
245
- .bk-virtual-render .bk-virtual-content {
246
- position: absolute;
247
- top: 0;
248
- bottom: 0;
249
- left: 0;
250
- width: 100%;
251
- height: 100%;
252
- }
253
260
  .bk-virtual-render .bk-virtual-section {
254
261
  width: 1px;
255
262
  background: transparent;
@@ -1251,7 +1258,7 @@
1251
1258
  overflow: hidden;
1252
1259
  }
1253
1260
  .bk-table .bk-table-body .prepend-row {
1254
- transform: translate3d(var(--translate-x), 0, 0);
1261
+ transform: translate(var(--translate-x), 0);
1255
1262
  }
1256
1263
  .bk-table .bk-table-body .resize-column {
1257
1264
  position: absolute;
@@ -1260,7 +1267,7 @@
1260
1267
  left: 0;
1261
1268
  width: 1px;
1262
1269
  background-color: #3785ff;
1263
- transform: translate3d(var(--drag-offset-x), var(--translate-y), 0);
1270
+ transform: translate(var(--drag-offset-x), var(--translate-y));
1264
1271
  }
1265
1272
  .bk-table .bk-table-body-content.bk-stripe table tbody tr:nth-child(even) td {
1266
1273
  background-color: var(--table-strip-color);
@@ -1429,23 +1436,29 @@
1429
1436
  font-weight: 400;
1430
1437
  background-color: var(--background-color);
1431
1438
  }
1432
- .bk-table .bk-table-head table thead th.col-resize-hover::after,
1433
- .bk-table .bk-table-body table thead th.col-resize-hover::after {
1439
+ .bk-table .bk-table-head table thead th.col-pointer-hover.poiner-right::after,
1440
+ .bk-table .bk-table-body table thead th.col-pointer-hover.poiner-right::after {
1441
+ content: '';
1434
1442
  position: absolute;
1435
1443
  top: 0;
1436
- right: 0;
1437
1444
  bottom: 0;
1438
- z-index: 1;
1439
- width: 6px;
1440
- pointer-events: none;
1445
+ right: 0;
1446
+ width: 3px;
1441
1447
  background-color: #3785ff;
1442
- content: '';
1443
- transform: translateX(50%);
1444
- cursor: col-resize;
1448
+ transform: translateX(1px);
1449
+ pointer-events: none;
1445
1450
  }
1446
- .bk-table .bk-table-head table thead th.col-resize-hover .cell,
1447
- .bk-table .bk-table-body table thead th.col-resize-hover .cell {
1448
- cursor: col-resize;
1451
+ .bk-table .bk-table-head table thead th.col-pointer-hover.poiner-left::after,
1452
+ .bk-table .bk-table-body table thead th.col-pointer-hover.poiner-left::after {
1453
+ content: '';
1454
+ position: absolute;
1455
+ top: 0;
1456
+ bottom: 0;
1457
+ left: 0;
1458
+ width: 3px;
1459
+ transform: translateX(-1px);
1460
+ background-color: #3785ff;
1461
+ pointer-events: none;
1449
1462
  }
1450
1463
  .bk-table .bk-table-head table thead th .cell,
1451
1464
  .bk-table .bk-table-body table thead th .cell {
@@ -1454,17 +1467,21 @@
1454
1467
  height: calc(var(--row-height) - 2px);
1455
1468
  color: var(--table-head-font-color);
1456
1469
  }
1457
- .bk-table .bk-table-head table thead th.active,
1458
- .bk-table .bk-table-body table thead th.active,
1459
- .bk-table .bk-table-head table thead th:hover,
1460
- .bk-table .bk-table-body table thead th:hover {
1461
- cursor: pointer;
1462
- background: var(--table-row-active-bg-color);
1470
+ .bk-table .bk-table-head table thead th .cell.cell-resize,
1471
+ .bk-table .bk-table-body table thead th .cell.cell-resize {
1472
+ cursor: col-resize;
1463
1473
  }
1464
1474
  .bk-table .bk-table-head table thead th.column_fixed,
1465
1475
  .bk-table .bk-table-body table thead th.column_fixed {
1466
1476
  transform: translateX(var(--translate-x));
1467
1477
  }
1478
+ .bk-table .bk-table-head table:not(.col-resize-hover) thead th.active,
1479
+ .bk-table .bk-table-body table:not(.col-resize-hover) thead th.active,
1480
+ .bk-table .bk-table-head table:not(.col-resize-hover) thead th:hover,
1481
+ .bk-table .bk-table-body table:not(.col-resize-hover) thead th:hover {
1482
+ cursor: pointer;
1483
+ background: var(--table-row-active-bg-color);
1484
+ }
1468
1485
  .bk-table .bk-table-head table tbody tr td,
1469
1486
  .bk-table .bk-table-body table tbody tr td {
1470
1487
  background-color: #fff;
@@ -1504,6 +1521,7 @@
1504
1521
  overflow: hidden;
1505
1522
  background-color: var(--background-color);
1506
1523
  height: var(--row-height);
1524
+ min-height: var(--row-height);
1507
1525
  }
1508
1526
  .bk-table .bk-table-head.has-group .is-head-group {
1509
1527
  border-bottom: 1px solid var(--table-border-color);
@@ -1522,16 +1540,14 @@
1522
1540
  z-index: 1;
1523
1541
  width: 6px;
1524
1542
  background-color: #3785ff;
1525
- transform: translate3d(var(--drag-offset-h-x), 0, 0);
1526
- }
1527
- .bk-table .bk-table-head .col-resize-drag:hover {
1528
- cursor: ew-resize !important;
1543
+ transform: translate(var(--drag-offset-h-x), 0);
1544
+ pointer-events: none;
1529
1545
  }
1530
1546
  .bk-table .bk-table-head .bk-table-fixed {
1531
- transform: translate3d(0, 0, 0);
1547
+ transform: translate(0, 0);
1532
1548
  }
1533
1549
  .bk-table .bk-table-head thead {
1534
- transform: translate3d(var(--translate-x-1), 0, 0);
1550
+ transform: translate(var(--translate-x-1), 0);
1535
1551
  }
1536
1552
  .bk-table .bk-table-head .table-head-settings {
1537
1553
  position: absolute;
@@ -1558,6 +1574,7 @@
1558
1574
  display: flex;
1559
1575
  width: 100%;
1560
1576
  height: var(--footer-height);
1577
+ min-height: var(--footer-height);
1561
1578
  align-items: center;
1562
1579
  padding: 0 16px 0 22px;
1563
1580
  }
@@ -1628,7 +1645,7 @@
1628
1645
  bottom: 0;
1629
1646
  left: 0;
1630
1647
  pointer-events: none;
1631
- transform: translate3d(var(--translate-x), var(--translate-y), 0);
1648
+ transform: translate(var(--translate-x), var(--translate-y));
1632
1649
  }
1633
1650
  .bk-table .bk-table-fixed .column_fixed_right {
1634
1651
  box-shadow: var(--shadow-right);
@@ -143,6 +143,11 @@ declare const _default: import("vue").DefineComponent<{
143
143
  } & {
144
144
  default: boolean;
145
145
  };
146
+ intersectionObserver: import("vue-types").VueTypeValidableDef<boolean> & {
147
+ default: boolean;
148
+ } & {
149
+ default: boolean;
150
+ };
146
151
  align: import("vue-types").VueTypeDef<"" | "left" | "right" | "center">;
147
152
  headerAlign: import("vue-types").VueTypeDef<"" | "left" | "right" | "center">;
148
153
  prependStyle: import("vue-types").VueTypeDef<import("vue").CSSProperties> & {
@@ -315,6 +320,11 @@ declare const _default: import("vue").DefineComponent<{
315
320
  } & {
316
321
  default: boolean;
317
322
  };
323
+ intersectionObserver: import("vue-types").VueTypeValidableDef<boolean> & {
324
+ default: boolean;
325
+ } & {
326
+ default: boolean;
327
+ };
318
328
  align: import("vue-types").VueTypeDef<"" | "left" | "right" | "center">;
319
329
  headerAlign: import("vue-types").VueTypeDef<"" | "left" | "right" | "center">;
320
330
  prependStyle: import("vue-types").VueTypeDef<import("vue").CSSProperties> & {
@@ -383,6 +393,7 @@ declare const _default: import("vue").DefineComponent<{
383
393
  defaultSort: import("./props").ISortOption;
384
394
  isRowSelectEnable: any;
385
395
  observerResize: boolean;
396
+ intersectionObserver: boolean;
386
397
  prependStyle: import("vue").CSSProperties;
387
398
  isFlex: boolean;
388
399
  rowDraggable: any;
@@ -41,7 +41,7 @@
41
41
  }
42
42
 
43
43
  .prepend-row {
44
- transform: translate3d(var(--translate-x), 0, 0);
44
+ transform: translate(var(--translate-x), 0);
45
45
  }
46
46
 
47
47
  .resize-column {
@@ -51,7 +51,7 @@
51
51
  left: 0;
52
52
  width: 1px;
53
53
  background-color: #3785ff;
54
- transform: translate3d(var(--drag-offset-x), var(--translate-y), 0);
54
+ transform: translate(var(--drag-offset-x), var(--translate-y));
55
55
  }
56
56
  }
57
57
 
@@ -215,23 +215,32 @@
215
215
  font-weight: 400;
216
216
  background-color: var(--background-color);
217
217
 
218
- &.col-resize-hover {
219
- &::after {
220
- position: absolute;
221
- top: 0;
222
- right: 0;
223
- bottom: 0;
224
- z-index: 1;
225
- width: 6px;
226
- pointer-events: none;
227
- background-color: #3785ff;
228
- content: '';
229
- transform: translateX(50%);
230
- cursor: col-resize;
218
+ &.col-pointer-hover {
219
+ &.poiner-right {
220
+ &::after {
221
+ content: '';
222
+ position: absolute;
223
+ top: 0;
224
+ bottom: 0;
225
+ right: 0;
226
+ width: 3px;
227
+ background-color: #3785ff;
228
+ transform: translateX(1px);
229
+ pointer-events: none;
230
+ }
231
231
  }
232
-
233
- .cell {
234
- cursor: col-resize;
232
+ &.poiner-left {
233
+ &::after {
234
+ content: '';
235
+ position: absolute;
236
+ top: 0;
237
+ bottom: 0;
238
+ left: 0;
239
+ width: 3px;
240
+ transform: translateX(-1px);
241
+ background-color: #3785ff;
242
+ pointer-events: none;
243
+ }
235
244
  }
236
245
  }
237
246
 
@@ -240,12 +249,10 @@
240
249
  align-items: center;
241
250
  height: calc(var(--row-height) - 2px);
242
251
  color: @table-head-font-color;
243
- }
244
252
 
245
- &.active,
246
- &:hover {
247
- cursor: pointer;
248
- background: @table-row-active-bg-color;
253
+ &.cell-resize {
254
+ cursor: col-resize;
255
+ }
249
256
  }
250
257
 
251
258
  &.column_fixed {
@@ -254,6 +261,18 @@
254
261
  }
255
262
  }
256
263
 
264
+ &:not(.col-resize-hover) {
265
+ thead {
266
+ th {
267
+ &.active,
268
+ &:hover {
269
+ cursor: pointer;
270
+ background: @table-row-active-bg-color;
271
+ }
272
+ }
273
+ }
274
+ }
275
+
257
276
  tbody {
258
277
  tr {
259
278
  td {
@@ -308,6 +327,7 @@
308
327
  overflow: hidden;
309
328
  background-color: var(--background-color);
310
329
  height: var(--row-height);
330
+ min-height: var(--row-height);
311
331
 
312
332
  &.has-group {
313
333
  .is-head-group {
@@ -331,18 +351,16 @@
331
351
  z-index: 1;
332
352
  width: 6px;
333
353
  background-color: #3785ff;
334
- transform: translate3d(var(--drag-offset-h-x), 0, 0);
335
- &:hover {
336
- cursor: ew-resize !important;
337
- }
354
+ transform: translate(var(--drag-offset-h-x), 0);
355
+ pointer-events: none;
338
356
  }
339
357
 
340
358
  .@{bk-prefix}-table-fixed {
341
- transform: translate3d(0, 0, 0);
359
+ transform: translate(0, 0);
342
360
  }
343
361
 
344
362
  thead {
345
- transform: translate3d(var(--translate-x-1), 0, 0);
363
+ transform: translate(var(--translate-x-1), 0);
346
364
  }
347
365
 
348
366
  .table-head-settings {
@@ -374,6 +392,7 @@
374
392
  display: flex;
375
393
  width: 100%;
376
394
  height: var(--footer-height);
395
+ min-height: var(--footer-height);
377
396
  align-items: center;
378
397
  padding: 0 16px 0 22px;
379
398
 
@@ -485,7 +504,7 @@
485
504
  bottom: 0;
486
505
  left: 0;
487
506
  pointer-events: none;
488
- transform: translate3d(var(--translate-x), var(--translate-y), 0);
507
+ transform: translate(var(--translate-x), var(--translate-y));
489
508
 
490
509
  .column_fixed_right {
491
510
  box-shadow: var(--shadow-right);