@porsche-design-system/components-angular 3.26.0 → 3.27.0-rc.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.
package/CHANGELOG.md CHANGED
@@ -14,6 +14,38 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0),
14
14
 
15
15
  ### [Unreleased]
16
16
 
17
+ ### [3.27.0-rc.1] - 2025-02-17
18
+
19
+ #### Changed
20
+
21
+ - **Breaking Change** `AG Grid`: Updated from v32 to v33, which introduced a new Theming API. AG Grid migrated from a
22
+ CSS-based theming approach to a JavaScript object-based theming system. As a result, our custom theme also had to be
23
+ adjusted accordingly. ([#3740](https://github.com/porsche-design-system/porsche-design-system/pull/3740))
24
+
25
+ #### Fixed
26
+
27
+ - Styles: `vanilla-extract` returns `getMediaQueryMax`, `getMediaQueryMin`, `getMediaQueryMinMax` & `getSkeletonStyle`
28
+ in wrong format ([#3753](https://github.com/porsche-design-system/porsche-design-system/pull/3753))
29
+
30
+ ### [3.27.0-rc.0] - 2025-02-13
31
+
32
+ #### Added
33
+
34
+ - `@font-face` supports Thai language
35
+ ([#3750](https://github.com/porsche-design-system/porsche-design-system/pull/3750))
36
+ - Partials: `getFontLinks` supports preloading `thai` subset
37
+ ([#3750](https://github.com/porsche-design-system/porsche-design-system/pull/3750))
38
+
39
+ #### Changed
40
+
41
+ - `Popover`: gets rendered on `#top-layer` which enables it to be shown correctly even when used e.g. within a scroll
42
+ container ([#3732](https://github.com/porsche-design-system/porsche-design-system/pull/3732))
43
+
44
+ #### Removed
45
+
46
+ - `Popover`: default styling for slotted anchors
47
+ ([#3732](https://github.com/porsche-design-system/porsche-design-system/pull/3732))
48
+
17
49
  ### [3.26.0] - 2025-02-07
18
50
 
19
51
  ### [3.26.0-rc.0] - 2025-02-06
@@ -0,0 +1,12 @@
1
+ 'use strict';
2
+
3
+ var agGrid = require('@porsche-design-system/components-js/ag-grid');
4
+
5
+
6
+
7
+ Object.keys(agGrid).forEach(function (k) {
8
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
9
+ enumerable: true,
10
+ get: function () { return agGrid[k]; }
11
+ });
12
+ });
@@ -0,0 +1 @@
1
+ export * from '@porsche-design-system/components-js/ag-grid';
@@ -0,0 +1 @@
1
+ export * from '@porsche-design-system/components-js/ag-grid';
@@ -0,0 +1,6 @@
1
+ {
2
+ "main": "cjs/index.cjs",
3
+ "module": "esm/index.mjs",
4
+ "types": "esm/index.d.ts",
5
+ "sideEffects": false
6
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@porsche-design-system/components-angular",
3
- "version": "3.26.0",
3
+ "version": "3.27.0-rc.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,13 +17,13 @@
17
17
  "license": "SEE LICENSE IN LICENSE",
18
18
  "homepage": "https://designsystem.porsche.com",
19
19
  "dependencies": {
20
- "@porsche-design-system/components-js": "3.26.0"
20
+ "@porsche-design-system/components-js": "3.27.0-rc.1"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "@angular/common": ">=19.0.0 <20.0.0",
24
24
  "@angular/core": ">=19.0.0 <20.0.0",
25
- "ag-grid-angular": ">= 32.0.0 <33.0.0",
26
- "ag-grid-enterprise": ">= 32.0.0 <33.0.0",
25
+ "ag-grid-angular": ">= 33.0.0 <34.0.0",
26
+ "ag-grid-enterprise": ">= 33.0.0 <34.0.0",
27
27
  "rxjs": "^6.5.3 || ^7.4.0"
28
28
  },
29
29
  "peerDependenciesMeta": {
@@ -55,7 +55,11 @@
55
55
  "import": "./styles/vanilla-extract/esm/vanilla-extract/index.mjs",
56
56
  "default": "./styles/vanilla-extract/cjs/vanilla-extract/index.cjs"
57
57
  },
58
- "./ag-grid/*.css": "./ag-grid/*.css",
58
+ "./ag-grid": {
59
+ "types": "./ag-grid/esm/index.d.ts",
60
+ "import": "./ag-grid/esm/index.mjs",
61
+ "default": "./ag-grid/cjs/index.cjs"
62
+ },
59
63
  "./testing": {
60
64
  "types": "./testing/index.d.ts",
61
65
  "default": "./testing/index.cjs"