@porsche-design-system/components-react 3.19.0-rc.2 → 3.19.0-rc.3

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,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0),
14
14
 
15
15
  ### [Unreleased]
16
16
 
17
+ #### Fixed
18
+
19
+ - Partials: Replace meta tag `apple-mobile-web-app-capable` with `mobile-web-app-capable` in `getMetaTagsAndIconLinks`
20
+ partial. ([#3519](https://github.com/porsche-design-system/porsche-design-system/pull/3519))
21
+
22
+ ### [3.19.0-rc.3] - 2024-10-02
23
+
24
+ #### Fixed
25
+
26
+ - `Carousel`: remove gradient styles for carousel if `gradientColor` is not defined
27
+ ([#3518](https://github.com/porsche-design-system/porsche-design-system/pull/3518))
28
+
17
29
  ### [3.19.0-rc.2] - 2024-10-01
18
30
 
19
31
  #### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@porsche-design-system/components-react",
3
- "version": "3.19.0-rc.2",
3
+ "version": "3.19.0-rc.3",
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.19.0-rc.2"
20
+ "@porsche-design-system/components-js": "3.19.0-rc.3"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "react": ">=18.0.0 <19.0.0",
@@ -5095,16 +5095,19 @@ const getComponentCss$12 = (gradientColor, hasHeading, hasDescription, hasContro
5095
5095
  WebkitUserSelect: 'none',
5096
5096
  WebkitTouchCallout: 'none',
5097
5097
  },
5098
- '&::before, &::after': {
5099
- content: '""',
5100
- position: 'absolute',
5101
- zIndex: 1,
5102
- top: 0,
5103
- height: '100%',
5104
- width: `var(${cssVariableGradientColorWidth}, 33%)`,
5105
- },
5106
- '&::before': getGradientStyles('right'),
5107
- '&::after': getGradientStyles('left'),
5098
+ ...(gradientColor &&
5099
+ gradientColor !== 'none' && {
5100
+ '&::before, &::after': {
5101
+ content: '""',
5102
+ position: 'absolute',
5103
+ zIndex: 1,
5104
+ top: 0,
5105
+ height: '100%',
5106
+ width: `var(${cssVariableGradientColorWidth}, 33%)`,
5107
+ },
5108
+ '&::before': getGradientStyles('right'),
5109
+ '&::after': getGradientStyles('left'),
5110
+ }),
5108
5111
  },
5109
5112
  '&__list': {
5110
5113
  ...backfaceVisibilityJssStyle,
@@ -5093,16 +5093,19 @@ const getComponentCss$12 = (gradientColor, hasHeading, hasDescription, hasContro
5093
5093
  WebkitUserSelect: 'none',
5094
5094
  WebkitTouchCallout: 'none',
5095
5095
  },
5096
- '&::before, &::after': {
5097
- content: '""',
5098
- position: 'absolute',
5099
- zIndex: 1,
5100
- top: 0,
5101
- height: '100%',
5102
- width: `var(${cssVariableGradientColorWidth}, 33%)`,
5103
- },
5104
- '&::before': getGradientStyles('right'),
5105
- '&::after': getGradientStyles('left'),
5096
+ ...(gradientColor &&
5097
+ gradientColor !== 'none' && {
5098
+ '&::before, &::after': {
5099
+ content: '""',
5100
+ position: 'absolute',
5101
+ zIndex: 1,
5102
+ top: 0,
5103
+ height: '100%',
5104
+ width: `var(${cssVariableGradientColorWidth}, 33%)`,
5105
+ },
5106
+ '&::before': getGradientStyles('right'),
5107
+ '&::after': getGradientStyles('left'),
5108
+ }),
5106
5109
  },
5107
5110
  '&__list': {
5108
5111
  ...backfaceVisibilityJssStyle,