@porsche-design-system/components-react 2.15.0-beta.0 → 2.15.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 +15 -0
- package/esm/public-api.js +1 -1
- package/jsdom-polyfill/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
9
9
|
|
|
10
10
|
### [Unreleased]
|
|
11
11
|
|
|
12
|
+
### [2.15.0] - 2022-08-22
|
|
13
|
+
|
|
14
|
+
### [2.15.0-rc.1] - 2022-08-18
|
|
15
|
+
|
|
16
|
+
#### Changed
|
|
17
|
+
|
|
18
|
+
- Downgraded `@angular` to `v13` to ensure backwards compatibility of `@porsche-design-system/components-angular`
|
|
19
|
+
|
|
20
|
+
### [2.15.0-rc.0] - 2022-08-16
|
|
21
|
+
|
|
22
|
+
#### Fixed
|
|
23
|
+
|
|
24
|
+
- `Popover` visual shadow bug in Safari
|
|
25
|
+
- `Stepper Horizontal Item` bug where pseudo styles of the counter element were overridable
|
|
26
|
+
|
|
12
27
|
### [2.15.0-beta.0] - 2022-08-05
|
|
13
28
|
|
|
14
29
|
#### Fixed
|
package/esm/public-api.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { load } from '@porsche-design-system/components-js';
|
|
2
2
|
export { componentsReady } from '@porsche-design-system/components-js';
|
|
3
3
|
import { jsx } from 'react/jsx-runtime';
|
|
4
|
-
import { createContext, useEffect,
|
|
4
|
+
import { createContext, useEffect, useContext, useRef, useMemo, useLayoutEffect, forwardRef } from 'react';
|
|
5
5
|
|
|
6
6
|
// to warn users about missing PorscheDesignSystemProvider, we set the default values as undefined
|
|
7
7
|
const PorscheDesignSystemContext = createContext({
|