@porsche-design-system/components-vue 3.23.0-rc.0 → 3.24.0-rc.0

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,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0),
14
14
 
15
15
  ### [Unreleased]
16
16
 
17
+ ### [3.24.0-rc.0] - 2025-01-07
18
+
19
+ #### Added
20
+
21
+ - Styles: support for `vanilla-extract` available under
22
+ `import { … } from '@porsche-design-system/components-{js|angular|react|vue}/styles/vanilla-extract';`
23
+ ([#3666](https://github.com/porsche-design-system/porsche-design-system/pull/3666))
24
+
25
+ #### Changed
26
+
27
+ - React: updated peer dependency to `>=19.0.0 <20.0.0`
28
+
29
+ ### [3.23.0] - 2024-12-12
30
+
17
31
  ### [3.23.0-rc.0] - 2024-12-12
18
32
 
19
33
  #### Changed
@@ -0,0 +1 @@
1
+ export * from '@porsche-design-system/components-js/styles/vanilla-extract';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@porsche-design-system/components-vue",
3
- "version": "3.23.0-rc.0",
3
+ "version": "3.24.0-rc.0",
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.23.0-rc.0"
20
+ "@porsche-design-system/components-js": "3.24.0-rc.0"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "ag-grid-enterprise": ">= 32.0.0 <33.0.0",
@@ -57,6 +57,11 @@
57
57
  "import": "./styles/esm/index.mjs",
58
58
  "default": "./styles/cjs/index.cjs"
59
59
  },
60
+ "./styles/vanilla-extract": {
61
+ "types": "./styles/vanilla-extract/esm/vanilla-extract/index.d.ts",
62
+ "import": "./styles/vanilla-extract/esm/vanilla-extract/index.mjs",
63
+ "default": "./styles/vanilla-extract/cjs/vanilla-extract/index.cjs"
64
+ },
60
65
  "./ag-grid/*.css": "./ag-grid/*.css",
61
66
  "./testing": {
62
67
  "types": "./testing/index.d.ts",
@@ -0,0 +1,12 @@
1
+ 'use strict';
2
+
3
+ var vanillaExtract = require('@porsche-design-system/components-js/styles/vanilla-extract');
4
+
5
+
6
+
7
+ Object.keys(vanillaExtract).forEach(function (k) {
8
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
9
+ enumerable: true,
10
+ get: function () { return vanillaExtract[k]; }
11
+ });
12
+ });
@@ -0,0 +1 @@
1
+ export * from '@porsche-design-system/components-js/styles/vanilla-extract';
@@ -0,0 +1 @@
1
+ export * from '@porsche-design-system/components-js/styles/vanilla-extract';