@porsche-design-system/components-vue 3.15.0-rc.2 → 3.15.0-rc.4
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 +25 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,31 @@ 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.0-rc.4] - 2024-05-06
|
|
18
|
+
|
|
19
|
+
#### Added
|
|
20
|
+
|
|
21
|
+
- Partials: Added new partial `getFontFaceStyles` which returns an inline style containing all font-face definitions.
|
|
22
|
+
([#3188](https://github.com/porsche-design-system/porsche-design-system/pull/3188))
|
|
23
|
+
|
|
24
|
+
#### Changed
|
|
25
|
+
|
|
26
|
+
- Partials: Partial `getFontFaceStylesheet` is deprecated and will be removed with the next major release. Use the
|
|
27
|
+
`getFontFaceStyles` partial instead, which directly returns a `<style>` tag containing all font-face definitions and
|
|
28
|
+
can be used in the same way. ([#3188](https://github.com/porsche-design-system/porsche-design-system/pull/3188))
|
|
29
|
+
|
|
30
|
+
```diff
|
|
31
|
+
- getFontFaceStylesheet()
|
|
32
|
+
+ getFontFaceStyles()
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
### [3.15.0-rc.3] - 2024-04-23
|
|
36
|
+
|
|
37
|
+
#### Fixed
|
|
38
|
+
|
|
39
|
+
- `Pin Code`: Fixed several problems with IME keyboards
|
|
40
|
+
([#3197](https://github.com/porsche-design-system/porsche-design-system/pull/3197))
|
|
41
|
+
|
|
17
42
|
### [3.15.0-rc.2] - 2024-04-22
|
|
18
43
|
|
|
19
44
|
#### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@porsche-design-system/components-vue",
|
|
3
|
-
"version": "3.15.0-rc.
|
|
3
|
+
"version": "3.15.0-rc.4",
|
|
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.
|
|
20
|
+
"@porsche-design-system/components-js": "3.15.0-rc.4"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"vue": ">=3.0.0 <4.0.0"
|