@porsche-design-system/components-react 3.6.0-rc.2 → 3.6.1-rc.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
|
@@ -14,6 +14,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
14
14
|
|
|
15
15
|
### [Unreleased]
|
|
16
16
|
|
|
17
|
+
### [3.6.1-rc.0] - 2023-08-29
|
|
18
|
+
|
|
19
|
+
#### Fixed
|
|
20
|
+
|
|
21
|
+
- Overlapping issues of `Accordion` contents when positioned outside of content area
|
|
22
|
+
([#2746](https://github.com/porsche-design-system/porsche-design-system/pull/2746))
|
|
23
|
+
- Backwards compatibility with previous versions of Porsche Design System
|
|
24
|
+
([#2752](https://github.com/porsche-design-system/porsche-design-system/pull/2752))
|
|
25
|
+
|
|
26
|
+
### [3.6.0] - 2023-08-28
|
|
27
|
+
|
|
17
28
|
### [3.6.0-rc.2] - 2023-08-28
|
|
18
29
|
|
|
19
30
|
#### Fixed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@porsche-design-system/components-react",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.1-rc.0",
|
|
4
4
|
"description": "Porsche Design System is a component library designed to help developers create the best experience for software or services distributed by Dr. Ing. h.c. F. Porsche AG.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"porsche",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"license": "SEE LICENSE IN LICENSE",
|
|
18
18
|
"homepage": "https://designsystem.porsche.com",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@porsche-design-system/components-js": "3.6.
|
|
20
|
+
"@porsche-design-system/components-js": "3.6.1-rc.0"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"react": ">=17.0.0 <19.0.0",
|
|
@@ -4068,12 +4068,18 @@ const getComponentCss$Z = (size, compact, open, theme) => {
|
|
|
4068
4068
|
transition: `grid-template-rows ${transitionDuration} ease-out, visibility 0s linear ${transitionDuration}`,
|
|
4069
4069
|
}),
|
|
4070
4070
|
'& div': {
|
|
4071
|
-
overflow: 'hidden',
|
|
4071
|
+
overflow: open ? 'visible' : 'hidden',
|
|
4072
|
+
// Fix overflow issues for overlapping content (e.g. select dropdown)
|
|
4073
|
+
animation: open ? `$overflow ${transitionDuration}` : 'none',
|
|
4072
4074
|
// Necessary to make focus outlines fully visible
|
|
4073
4075
|
padding: '4px',
|
|
4074
4076
|
margin: '-4px',
|
|
4075
4077
|
},
|
|
4076
4078
|
},
|
|
4079
|
+
'@keyframes overflow': {
|
|
4080
|
+
from: { overflow: 'hidden' },
|
|
4081
|
+
to: { overflow: 'hidden' },
|
|
4082
|
+
},
|
|
4077
4083
|
});
|
|
4078
4084
|
};
|
|
4079
4085
|
|
|
@@ -4066,12 +4066,18 @@ const getComponentCss$Z = (size, compact, open, theme) => {
|
|
|
4066
4066
|
transition: `grid-template-rows ${transitionDuration} ease-out, visibility 0s linear ${transitionDuration}`,
|
|
4067
4067
|
}),
|
|
4068
4068
|
'& div': {
|
|
4069
|
-
overflow: 'hidden',
|
|
4069
|
+
overflow: open ? 'visible' : 'hidden',
|
|
4070
|
+
// Fix overflow issues for overlapping content (e.g. select dropdown)
|
|
4071
|
+
animation: open ? `$overflow ${transitionDuration}` : 'none',
|
|
4070
4072
|
// Necessary to make focus outlines fully visible
|
|
4071
4073
|
padding: '4px',
|
|
4072
4074
|
margin: '-4px',
|
|
4073
4075
|
},
|
|
4074
4076
|
},
|
|
4077
|
+
'@keyframes overflow': {
|
|
4078
|
+
from: { overflow: 'hidden' },
|
|
4079
|
+
to: { overflow: 'hidden' },
|
|
4080
|
+
},
|
|
4075
4081
|
});
|
|
4076
4082
|
};
|
|
4077
4083
|
|