@appquality/unguess-design-system 3.1.113 → 3.1.114
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 +13 -0
- package/build/index.js +4 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
# v3.1.114 (Mon Oct 07 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- fix: Use isExpanded style for panel container [#421](https://github.com/AppQuality/unguess-design-system/pull/421) ([@d-beezee](https://github.com/d-beezee))
|
|
6
|
+
- fix: Use isExpanded style for panel container [#420](https://github.com/AppQuality/unguess-design-system/pull/420) ([@d-beezee](https://github.com/d-beezee))
|
|
7
|
+
|
|
8
|
+
#### Authors: 1
|
|
9
|
+
|
|
10
|
+
- [@d-beezee](https://github.com/d-beezee)
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
1
14
|
# v3.1.113 (Thu Oct 03 2024)
|
|
2
15
|
|
|
3
16
|
#### 🐛 Bug Fix
|
package/build/index.js
CHANGED
|
@@ -251,7 +251,6 @@ styled.css `
|
|
|
251
251
|
const sidebarNavItemExpanded = styled.css `
|
|
252
252
|
visibility: visible;
|
|
253
253
|
opacity: 1;
|
|
254
|
-
// transition: opacity 0.2s ease;
|
|
255
254
|
`;
|
|
256
255
|
const sidebarNavItemHidden = styled.css `
|
|
257
256
|
visibility: hidden;
|
|
@@ -6394,6 +6393,10 @@ const NavAccordionItem = styled__default["default"](Accordion) `
|
|
|
6394
6393
|
order: 1;
|
|
6395
6394
|
margin: ${({ theme }) => theme.space.xs} 0;
|
|
6396
6395
|
padding-left: 8.5px;
|
|
6396
|
+
.panelContainer {
|
|
6397
|
+
${sidebarNavItemExpanded}
|
|
6398
|
+
${(props) => !props.isExpanded && sidebarNavItemHidden}
|
|
6399
|
+
}
|
|
6397
6400
|
`;
|
|
6398
6401
|
const AccordionItemHeader = styled__default["default"](Accordion.Header) `
|
|
6399
6402
|
> svg {
|