@porsche-design-system/components-vue 3.15.0-rc.5 → 3.15.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +22 -3
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -14,20 +14,39 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0),
14
14
 
15
15
  ### [Unreleased]
16
16
 
17
+ ### [3.15.1] - 2024-05-23
18
+
19
+ #### Fixed
20
+
21
+ - `Banner`: Fixed position on mobile ([#3307](https://github.com/porsche-design-system/porsche-design-system/pull/3307))
22
+
23
+ ### [3.15.0] - 2024-05-16
24
+
17
25
  ### [3.15.0-rc.5] - 2024-05-16
18
26
 
19
27
  #### Added
20
28
 
21
29
  - `Button Pure`: Prop `underline` to show an underline for the label
22
30
  ([#3212](https://github.com/porsche-design-system/porsche-design-system/pull/3212))
23
-
31
+ - Partials: Added new option `globalStyles` to `getInitialStyles` to disable global reset styles.
32
+ ([#3213](https://github.com/porsche-design-system/porsche-design-system/pull/3213))
33
+
24
34
  #### Changed
25
35
 
26
- - Banner: Refactor Banner to use native `popover`
36
+ - `Banner`: Refactor Banner to use native `popover`
27
37
  ([#3196](https://github.com/porsche-design-system/porsche-design-system/pull/3196))
38
+ - Partials: `getInitialStyles` only contain hydration visibility and global styles. All other styles are handled by
39
+ constructable stylesheets at component level.
40
+ ([#3213](https://github.com/porsche-design-system/porsche-design-system/pull/3213))
41
+ - `Table`: Removed slotted image style `verticalAlign: 'middle'` from initialStyles
42
+ ([#3213](https://github.com/porsche-design-system/porsche-design-system/pull/3213))
43
+ - `Tabs Bar`: Removed sibling tabpanel focus style from initialStyles
44
+ ([#3213](https://github.com/porsche-design-system/porsche-design-system/pull/3213))
28
45
 
29
46
  #### Fixed
30
47
 
48
+ - `Carousel`: Accessible name of carousel region wrapper
49
+ ([#3220](https://github.com/porsche-design-system/porsche-design-system/pull/3220))
31
50
  - `aria` property now supports escaped single quotes inside JSON strings, e.g.
32
51
  `aria="{ 'aria-label': 'You can\'t do that? yes you can!' }"`
33
52
  ([#3217](https://github.com/porsche-design-system/porsche-design-system/pull/3217))
@@ -95,7 +114,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0),
95
114
  - `Model Signature`: Enabling the use of hex colors, CSS gradients, CSS image and video masks. In addition, the size was
96
115
  slightly adjusted. ([#3153](https://github.com/porsche-design-system/porsche-design-system/pull/3153))
97
116
 
98
- ### Fixed
117
+ #### Fixed
99
118
 
100
119
  - `Modal`: Missing box-shadow on sticky footer when slotted content changes
101
120
  ([#3154](https://github.com/porsche-design-system/porsche-design-system/pull/3154))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@porsche-design-system/components-vue",
3
- "version": "3.15.0-rc.5",
3
+ "version": "3.15.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.15.0-rc.5"
20
+ "@porsche-design-system/components-js": "3.15.1"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "vue": ">=3.0.0 <4.0.0"