@porsche-design-system/components-vue 3.15.0 → 3.15.2

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