@linzjs/lui 17.23.1 → 17.23.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.
- package/CHANGELOG.md +7 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/lui.esm.js +2 -1
- package/dist/lui.esm.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [17.23.2](https://github.com/linz/lui/compare/v17.23.1...v17.23.2) (2022-11-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* side panel overflow so that consumer can scroll. ([#803](https://github.com/linz/lui/issues/803)) ([0984cf0](https://github.com/linz/lui/commit/0984cf0b7940884c0d0d5a0dae7666937d034301))
|
|
7
|
+
|
|
1
8
|
## [17.23.1](https://github.com/linz/lui/compare/v17.23.0...v17.23.1) (2022-11-23)
|
|
2
9
|
|
|
3
10
|
|
package/dist/index.js
CHANGED
|
@@ -33148,7 +33148,8 @@ var LuiSidePanelContainer = function (props) {
|
|
|
33148
33148
|
transition: 'width 0.2s ease',
|
|
33149
33149
|
boxShadow: '-0.1em 0 0.4em rgba(0, 0, 0, 0.2)',
|
|
33150
33150
|
padding: 0,
|
|
33151
|
-
zIndex: 3
|
|
33151
|
+
zIndex: 3,
|
|
33152
|
+
overflow: 'scroll'
|
|
33152
33153
|
} },
|
|
33153
33154
|
children && (React__default["default"].createElement("button", { type: "button", "data-testid": "close", title: closeBtnTitleAttr, onClick: onClose, style: {
|
|
33154
33155
|
color: '#5e5e61',
|