@porsche-design-system/components-react 3.28.0-rc.0 → 3.28.0-rc.1
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,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0),
|
|
|
14
14
|
|
|
15
15
|
### [Unreleased]
|
|
16
16
|
|
|
17
|
+
### [3.28.0-rc.1] - 2025-04-14
|
|
18
|
+
|
|
19
|
+
#### Fixed
|
|
20
|
+
|
|
21
|
+
- `Drilldown`, `Drilldown Item`: visibility for slotted content (experimental)
|
|
22
|
+
([#3833](https://github.com/porsche-design-system/porsche-design-system/pull/3833))
|
|
23
|
+
|
|
17
24
|
### [3.28.0-rc.0] - 2025-04-11
|
|
18
25
|
|
|
19
26
|
#### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@porsche-design-system/components-react",
|
|
3
|
-
"version": "3.28.0-rc.
|
|
3
|
+
"version": "3.28.0-rc.1",
|
|
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.28.0-rc.
|
|
20
|
+
"@porsche-design-system/components-js": "3.28.0-rc.1"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"ag-grid-community": ">= 33.0.0 <34.0.0",
|
|
@@ -6204,17 +6204,17 @@ const getComponentCss$_ = (isOpen, isPrimary, isSecondaryScrollerVisible, theme)
|
|
|
6204
6204
|
},
|
|
6205
6205
|
...(isSecondaryScrollerVisible && {
|
|
6206
6206
|
'::slotted(*:not([primary],[secondary],[cascade]))': {
|
|
6207
|
-
[mediaQueryMobile]: {
|
|
6207
|
+
[mediaQueryMobile]: addImportantToEachRule({
|
|
6208
6208
|
display: 'none',
|
|
6209
|
-
},
|
|
6209
|
+
}),
|
|
6210
6210
|
},
|
|
6211
|
-
'::slotted(*:not([primary],[cascade]))': {
|
|
6211
|
+
'::slotted(*:not([primary],[cascade]))': addImportantToEachRule({
|
|
6212
6212
|
[mediaQueryDesktop]: {
|
|
6213
6213
|
...(!isPrimary && {
|
|
6214
6214
|
display: 'none',
|
|
6215
6215
|
}),
|
|
6216
6216
|
},
|
|
6217
|
-
},
|
|
6217
|
+
}),
|
|
6218
6218
|
}),
|
|
6219
6219
|
},
|
|
6220
6220
|
drawer: {
|
|
@@ -6464,16 +6464,16 @@ const getComponentCss$Z = (isPrimary, isSecondary, isCascade) => {
|
|
|
6464
6464
|
},
|
|
6465
6465
|
// If cascade we need to hide all children which are not primary or another cascade (e.g. all siblings of the primary or cascade item)
|
|
6466
6466
|
...(isCascade && {
|
|
6467
|
-
'::slotted(*:not([primary],[cascade]))': {
|
|
6467
|
+
'::slotted(*:not([primary],[cascade]))': addImportantToEachRule({
|
|
6468
6468
|
display: 'none',
|
|
6469
|
-
},
|
|
6469
|
+
}),
|
|
6470
6470
|
}),
|
|
6471
6471
|
...(isPrimary && {
|
|
6472
|
-
'::slotted(*:not([secondary]))': {
|
|
6472
|
+
'::slotted(*:not([secondary]))': addImportantToEachRule({
|
|
6473
6473
|
[mediaQueryMobile]: {
|
|
6474
6474
|
display: 'none',
|
|
6475
6475
|
},
|
|
6476
|
-
},
|
|
6476
|
+
}),
|
|
6477
6477
|
}),
|
|
6478
6478
|
'::slotted(*)': {
|
|
6479
6479
|
[cssVariableGridTemplate]: 'auto/auto', // reset css variable to prevent inheritance
|
|
@@ -6202,17 +6202,17 @@ const getComponentCss$_ = (isOpen, isPrimary, isSecondaryScrollerVisible, theme)
|
|
|
6202
6202
|
},
|
|
6203
6203
|
...(isSecondaryScrollerVisible && {
|
|
6204
6204
|
'::slotted(*:not([primary],[secondary],[cascade]))': {
|
|
6205
|
-
[mediaQueryMobile]: {
|
|
6205
|
+
[mediaQueryMobile]: addImportantToEachRule({
|
|
6206
6206
|
display: 'none',
|
|
6207
|
-
},
|
|
6207
|
+
}),
|
|
6208
6208
|
},
|
|
6209
|
-
'::slotted(*:not([primary],[cascade]))': {
|
|
6209
|
+
'::slotted(*:not([primary],[cascade]))': addImportantToEachRule({
|
|
6210
6210
|
[mediaQueryDesktop]: {
|
|
6211
6211
|
...(!isPrimary && {
|
|
6212
6212
|
display: 'none',
|
|
6213
6213
|
}),
|
|
6214
6214
|
},
|
|
6215
|
-
},
|
|
6215
|
+
}),
|
|
6216
6216
|
}),
|
|
6217
6217
|
},
|
|
6218
6218
|
drawer: {
|
|
@@ -6462,16 +6462,16 @@ const getComponentCss$Z = (isPrimary, isSecondary, isCascade) => {
|
|
|
6462
6462
|
},
|
|
6463
6463
|
// If cascade we need to hide all children which are not primary or another cascade (e.g. all siblings of the primary or cascade item)
|
|
6464
6464
|
...(isCascade && {
|
|
6465
|
-
'::slotted(*:not([primary],[cascade]))': {
|
|
6465
|
+
'::slotted(*:not([primary],[cascade]))': addImportantToEachRule({
|
|
6466
6466
|
display: 'none',
|
|
6467
|
-
},
|
|
6467
|
+
}),
|
|
6468
6468
|
}),
|
|
6469
6469
|
...(isPrimary && {
|
|
6470
|
-
'::slotted(*:not([secondary]))': {
|
|
6470
|
+
'::slotted(*:not([secondary]))': addImportantToEachRule({
|
|
6471
6471
|
[mediaQueryMobile]: {
|
|
6472
6472
|
display: 'none',
|
|
6473
6473
|
},
|
|
6474
|
-
},
|
|
6474
|
+
}),
|
|
6475
6475
|
}),
|
|
6476
6476
|
'::slotted(*)': {
|
|
6477
6477
|
[cssVariableGridTemplate]: 'auto/auto', // reset css variable to prevent inheritance
|