td-stylekit 28.15.0 → 28.16.0
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [28.16.0](https://github.com/treasure-data/td-stylekit/compare/v28.15.1...v28.16.0) (2023-02-13)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **SECU-10072:** Update CodeQL actions to v2 and enable Dependabot for GitHub Actions ([#1422](https://github.com/treasure-data/td-stylekit/issues/1422)) ([76a9fb0](https://github.com/treasure-data/td-stylekit/commit/76a9fb0))
|
|
7
|
+
|
|
8
|
+
## [28.15.1](https://github.com/treasure-data/td-stylekit/compare/v28.15.0...v28.15.1) (2023-02-08)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **CON-12139:** Avoid using shorthand styles in grid component ([#1419](https://github.com/treasure-data/td-stylekit/issues/1419)) ([e1b08a9](https://github.com/treasure-data/td-stylekit/commit/e1b08a9))
|
|
14
|
+
|
|
1
15
|
# [28.15.0](https://github.com/treasure-data/td-stylekit/compare/v28.14.1...v28.15.0) (2023-02-07)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -507,7 +507,9 @@ var ScrollableTable = /*#__PURE__*/function (_PureComponent) {
|
|
|
507
507
|
scrollbarWidth: scrollbarWidth,
|
|
508
508
|
scrollToRow: scrollToIndex,
|
|
509
509
|
style: _objectSpread(_objectSpread({}, gridStyle), {}, {
|
|
510
|
-
|
|
510
|
+
// Avoid using shorthand to make conflicts during rerendering
|
|
511
|
+
overflowX: 'auto',
|
|
512
|
+
overflowY: 'auto'
|
|
511
513
|
})
|
|
512
514
|
}))]
|
|
513
515
|
});
|
|
@@ -568,7 +570,8 @@ var ScrollableTable = /*#__PURE__*/function (_PureComponent) {
|
|
|
568
570
|
scrollbarWidth: scrollbarWidth,
|
|
569
571
|
scrollToRow: scrollToIndex,
|
|
570
572
|
style: _objectSpread(_objectSpread({}, gridStyle), {}, {
|
|
571
|
-
|
|
573
|
+
overflowX: 'auto',
|
|
574
|
+
overflowY: 'auto'
|
|
572
575
|
})
|
|
573
576
|
}))]
|
|
574
577
|
});
|