@porsche-design-system/components-react 3.0.0-alpha.6 → 3.0.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 +56 -23
- package/esm/lib/components/checkbox-wrapper.wrapper.js +3 -3
- package/lib/components/checkbox-wrapper.wrapper.d.ts +8 -0
- package/lib/components/checkbox-wrapper.wrapper.js +3 -3
- package/lib/types.d.ts +11 -2
- package/package.json +2 -2
- package/ssr/components/dist/styles/esm/styles-entry.js +232 -193
- package/ssr/components/dist/utils/esm/utils-entry.js +45 -76
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/components/checkbox-wrapper.wrapper.js +4 -4
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/accordion.js +1 -2
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/checkbox-wrapper.js +62 -2
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/crest.js +2 -1
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/link-tile-model-signature.js +1 -1
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/model-signature.js +1 -1
- package/ssr/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/text-field-wrapper.js +1 -1
- package/ssr/esm/components/dist/styles/esm/styles-entry.js +232 -193
- package/ssr/esm/components/dist/utils/esm/utils-entry.js +43 -76
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/components/checkbox-wrapper.wrapper.js +4 -4
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/accordion.js +1 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/checkbox-wrapper.js +62 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/crest.js +3 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/link-tile-model-signature.js +1 -1
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/model-signature.js +2 -2
- package/ssr/esm/components-react/projects/react-ssr-wrapper/src/lib/dsr-components/text-field-wrapper.js +1 -1
- package/ssr/lib/components/checkbox-wrapper.wrapper.d.ts +8 -0
- package/ssr/lib/types.d.ts +11 -2
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,36 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
9
9
|
|
|
10
10
|
### [Unreleased]
|
|
11
11
|
|
|
12
|
+
### [3.0.0-rc.1] - 2023-04-19
|
|
13
|
+
|
|
14
|
+
#### Added
|
|
15
|
+
|
|
16
|
+
- Prop `name` for `Icon` supports `push-pin`, `push-pin-off`, `qr`, `pin-filled`, `shopping-cart-filled`,
|
|
17
|
+
`shopping-bag-filled`, `logo-apple-podcast`, `logo-spotify` and `user-filled`
|
|
18
|
+
([#2471](https://github.com/porsche-design-system/porsche-design-system/pull/2471)).
|
|
19
|
+
- **[EXPERIMENTAL]** Prop `loading` for `Checkbox Wrapper`
|
|
20
|
+
([#2483](https://github.com/porsche-design-system/porsche-design-system/pull/2483))
|
|
21
|
+
|
|
22
|
+
#### Fixed
|
|
23
|
+
|
|
24
|
+
- `Wordmark`, `Crest` and `Model Signature` respect parent width/height
|
|
25
|
+
([#2479](https://github.com/porsche-design-system/porsche-design-system/pull/2479))
|
|
26
|
+
- `Button Tile`, `Link Tile` and `Link Tile Model Signature` are using correct border radius of
|
|
27
|
+
`pds-border-radius-large` ([#2473](https://github.com/porsche-design-system/porsche-design-system/pull/2473))
|
|
28
|
+
- `Text Field Wrapper` with `input type="search"` has better accessibility for clear button
|
|
29
|
+
([#2476](https://github.com/porsche-design-system/porsche-design-system/pull/2476))
|
|
30
|
+
- `Accordion` layout shift with nested accordions
|
|
31
|
+
([#2465](https://github.com/porsche-design-system/porsche-design-system/pull/2465))
|
|
32
|
+
- Color Contrast issues and rendering in Windows High Contrast Mode
|
|
33
|
+
([#2420](https://github.com/porsche-design-system/porsche-design-system/pull/2420))
|
|
34
|
+
|
|
35
|
+
### [3.0.0-rc.0] - 2023-04-11
|
|
36
|
+
|
|
37
|
+
#### Fixed
|
|
38
|
+
|
|
39
|
+
- Styles: `borderRadiusLarge` and `pds-border-radius-large` are exposing correct value
|
|
40
|
+
([#2463](https://github.com/porsche-design-system/porsche-design-system/pull/2463))
|
|
41
|
+
|
|
12
42
|
### [3.0.0-alpha.6] - 2023-04-06
|
|
13
43
|
|
|
14
44
|
#### Added
|
|
@@ -43,7 +73,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
43
73
|
|
|
44
74
|
```diff
|
|
45
75
|
- <PAccordion onAccordionChange={(e: CustomEvent<AccordionChangeEvent>) => {}} />
|
|
46
|
-
+ <PAccordion onUpdate={(e: CustomEvent<
|
|
76
|
+
+ <PAccordion onUpdate={(e: CustomEvent<AccordionUpdateEvent>) => {}} />
|
|
47
77
|
```
|
|
48
78
|
|
|
49
79
|
##### Banner:
|
|
@@ -82,7 +112,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
82
112
|
+ <PPagination onUpdate={(e: CustomEvent<PaginationUpdateEvent>) => {}} />
|
|
83
113
|
```
|
|
84
114
|
|
|
85
|
-
|
|
115
|
+
##### Segmented Control:
|
|
86
116
|
|
|
87
117
|
- Event `segmentedControlChange` is deprecated, use `update` event instead.
|
|
88
118
|
|
|
@@ -91,7 +121,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
91
121
|
+ <PSegmentedControl onUpdate={(e: CustomEvent<SegmentedControlUpdateEvent>) => {}} />
|
|
92
122
|
```
|
|
93
123
|
|
|
94
|
-
|
|
124
|
+
##### Stepper Horizontal:
|
|
95
125
|
|
|
96
126
|
- Event `stepChange` is deprecated, use `update` event instead.
|
|
97
127
|
|
|
@@ -100,7 +130,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
100
130
|
+ <PStepperHorizontal onUpdate={(e: CustomEvent<StepperHorizontalUpdateEvent>) => {}} />
|
|
101
131
|
```
|
|
102
132
|
|
|
103
|
-
|
|
133
|
+
##### Switch:
|
|
104
134
|
|
|
105
135
|
- Event `switchChange` is deprecated, use `update` event instead.
|
|
106
136
|
|
|
@@ -109,7 +139,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
109
139
|
+ <PSwitch onUpdate={(e: CustomEvent<SwitchUpdateEvent>) => {}} />
|
|
110
140
|
```
|
|
111
141
|
|
|
112
|
-
|
|
142
|
+
##### Table:
|
|
113
143
|
|
|
114
144
|
- Event `sortingChange` is deprecated, use `update` event instead.
|
|
115
145
|
|
|
@@ -142,6 +172,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
142
172
|
|
|
143
173
|
- `Wordmark` ([#2418](https://github.com/porsche-design-system/porsche-design-system/pull/2418))
|
|
144
174
|
- `Crest` ([#2437](https://github.com/porsche-design-system/porsche-design-system/pull/2437))
|
|
175
|
+
|
|
176
|
+
#### Changed
|
|
177
|
+
|
|
145
178
|
- Styles: changed color values of `theme[Light|Dark]ContrastMedium` and `theme[Light|Dark]Notification[*]` color tokens
|
|
146
179
|
of `Styles` subpackage ([#2436](https://github.com/porsche-design-system/porsche-design-system/pull/2436))
|
|
147
180
|
|
|
@@ -193,9 +226,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
193
226
|
|
|
194
227
|
- `Banner`: CSS variable `--p-banner-position-type`
|
|
195
228
|
([#2422](https://github.com/porsche-design-system/porsche-design-system/pull/2422))
|
|
196
|
-
- `gridSafeZone`, `gridSafeZoneBase`, `gridSafeZoneXXL` and `pds-grid-safe-zone-base`, `pds-grid-safe-zone-xxl`
|
|
229
|
+
- Styles: `gridSafeZone`, `gridSafeZoneBase`, `gridSafeZoneXXL` and `pds-grid-safe-zone-base`, `pds-grid-safe-zone-xxl`
|
|
197
230
|
([#2422](https://github.com/porsche-design-system/porsche-design-system/pull/2422))
|
|
198
|
-
- `gridWidth`, `gridWidthMin`, `gridWidthMax` and `pds-grid-width-min`, `pds-grid-width-max`
|
|
231
|
+
- Styles: `gridWidth`, `gridWidthMin`, `gridWidthMax` and `pds-grid-width-min`, `pds-grid-width-max`
|
|
199
232
|
([#2422](https://github.com/porsche-design-system/porsche-design-system/pull/2422))
|
|
200
233
|
|
|
201
234
|
#### 🤖 Property deprecations 🤖
|
|
@@ -239,7 +272,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
239
272
|
+ <PAccordion onChange={(e: CustomEvent<AccordionChangeEvent>) => {}} />
|
|
240
273
|
```
|
|
241
274
|
|
|
242
|
-
|
|
275
|
+
##### Banner:
|
|
243
276
|
|
|
244
277
|
- Named `slot="title"` is deprecated, use `heading` prop or `slot="heading"` instead.
|
|
245
278
|
|
|
@@ -297,7 +330,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
297
330
|
+ <p-link-tile weight="semi-bold"></p-link-tile>
|
|
298
331
|
```
|
|
299
332
|
|
|
300
|
-
|
|
333
|
+
##### Modal:
|
|
301
334
|
|
|
302
335
|
- Prop `disableCloseButton` is deprecated, use `dismissButton` instead.
|
|
303
336
|
- Event `close` is deprecated, use `dismiss` event instead.
|
|
@@ -336,7 +369,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
336
369
|
+ <p-scroller align-scroll-indicator="top"></p-scroller>
|
|
337
370
|
```
|
|
338
371
|
|
|
339
|
-
|
|
372
|
+
##### Segmented Control:
|
|
340
373
|
|
|
341
374
|
- Event `segmentedControlChange` is deprecated, use `change` event instead.
|
|
342
375
|
|
|
@@ -345,7 +378,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
345
378
|
+ <PSegmentedControl onChange={(e: CustomEvent<SegmentedControlChangeEvent>) => {}} />
|
|
346
379
|
```
|
|
347
380
|
|
|
348
|
-
|
|
381
|
+
##### Stepper Horizontal:
|
|
349
382
|
|
|
350
383
|
- Event `stepChange` is deprecated, use `change` event instead.
|
|
351
384
|
|
|
@@ -354,7 +387,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
354
387
|
+ <PStepperHorizontal onChange={(e: CustomEvent<StepperHorizontalChangeEvent>) => {}} />
|
|
355
388
|
```
|
|
356
389
|
|
|
357
|
-
|
|
390
|
+
##### Switch:
|
|
358
391
|
|
|
359
392
|
- Event `switchChange` is deprecated, use `change` event instead.
|
|
360
393
|
|
|
@@ -363,7 +396,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
363
396
|
+ <PSwitch onChange={(e: CustomEvent<SwitchChangeEvent>) => {}} />
|
|
364
397
|
```
|
|
365
398
|
|
|
366
|
-
|
|
399
|
+
##### Table:
|
|
367
400
|
|
|
368
401
|
- Event `sortingChange` is deprecated, use `change` event instead.
|
|
369
402
|
|
|
@@ -427,9 +460,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
427
460
|
- Prop `showCharacterCount` is deprecated, use `showCounter` instead.
|
|
428
461
|
|
|
429
462
|
```diff
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
463
|
+
- <p-text-field-wrapper show-character-count="false">
|
|
464
|
+
+ <p-text-field-wrapper show-counter="false">
|
|
465
|
+
<input type="text" maxlength="20" />
|
|
433
466
|
</p-text-field-wrapper>
|
|
434
467
|
```
|
|
435
468
|
|
|
@@ -438,9 +471,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
438
471
|
- Prop `showCharacterCount` is deprecated, use `showCounter` instead.
|
|
439
472
|
|
|
440
473
|
```diff
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
474
|
+
- <p-textarea-wrapper show-character-count="false">
|
|
475
|
+
+ <p-textarea-wrapper show-counter="false">
|
|
476
|
+
<textarea maxlength="80"></textarea>
|
|
444
477
|
</p-textarea-wrapper>
|
|
445
478
|
```
|
|
446
479
|
|
|
@@ -478,10 +511,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
478
511
|
- `Pagination` emits `change` and deprecated `pageChange` event
|
|
479
512
|
- `Segmented Control` emits `change` and deprecated `segmentedControlChange` event
|
|
480
513
|
- `Stepper Horizontal` emits `change` and deprecated `stepChange` event
|
|
481
|
-
- `Switch` emits `change`and deprecated `switchChange` event
|
|
482
|
-
- `Table` emits `change`and deprecated `sortingChange` event
|
|
483
|
-
- `Tabs` emits `change`and deprecated `tabChange` event
|
|
484
|
-
- `Tabs Bar` emits `change`and deprecated `tabChange` event
|
|
514
|
+
- `Switch` emits `change` and deprecated `switchChange` event
|
|
515
|
+
- `Table` emits `change` and deprecated `sortingChange` event
|
|
516
|
+
- `Tabs` emits `change` and deprecated `tabChange` event
|
|
517
|
+
- `Tabs Bar` emits `change` and deprecated `tabChange` event
|
|
485
518
|
- Props have consistent names across components and deprecated old props
|
|
486
519
|
- `Carousel` got `pagination` prop and deprecated `disablePagination` prop
|
|
487
520
|
- `Divider` got `direction` prop and deprecated `orientation` prop
|
|
@@ -3,13 +3,13 @@ import { forwardRef, useRef } from 'react';
|
|
|
3
3
|
import { usePrefix, useBrowserLayoutEffect, useMergedClass } from '../../hooks.js';
|
|
4
4
|
import { syncRef } from '../../utils.js';
|
|
5
5
|
|
|
6
|
-
const PCheckboxWrapper = forwardRef(({ hideLabel = false, label = '', message = '', state = 'none', theme = 'light', className, ...rest }, ref) => {
|
|
6
|
+
const PCheckboxWrapper = forwardRef(({ hideLabel = false, label = '', loading = false, message = '', state = 'none', theme = 'light', className, ...rest }, ref) => {
|
|
7
7
|
const elementRef = useRef();
|
|
8
8
|
const WebComponentTag = usePrefix('p-checkbox-wrapper');
|
|
9
|
-
const propsToSync = [hideLabel, label, message, state, theme];
|
|
9
|
+
const propsToSync = [hideLabel, label, loading, message, state, theme];
|
|
10
10
|
useBrowserLayoutEffect(() => {
|
|
11
11
|
const { current } = elementRef;
|
|
12
|
-
['hideLabel', 'label', 'message', 'state', 'theme'].forEach((propName, i) => (current[propName] = propsToSync[i]));
|
|
12
|
+
['hideLabel', 'label', 'loading', 'message', 'state', 'theme'].forEach((propName, i) => (current[propName] = propsToSync[i]));
|
|
13
13
|
}, propsToSync);
|
|
14
14
|
const props = {
|
|
15
15
|
...rest,
|
|
@@ -9,6 +9,10 @@ export type PCheckboxWrapperProps = Omit<HTMLAttributes<{}>, 'color' | 'onChange
|
|
|
9
9
|
* The label text.
|
|
10
10
|
*/
|
|
11
11
|
label?: string;
|
|
12
|
+
/**
|
|
13
|
+
* Disables the checkbox and shows a loading indicator.
|
|
14
|
+
*/
|
|
15
|
+
loading?: boolean;
|
|
12
16
|
/**
|
|
13
17
|
* The message styled depending on validation state.
|
|
14
18
|
*/
|
|
@@ -31,6 +35,10 @@ export declare const PCheckboxWrapper: import("react").ForwardRefExoticComponent
|
|
|
31
35
|
* The label text.
|
|
32
36
|
*/
|
|
33
37
|
label?: string;
|
|
38
|
+
/**
|
|
39
|
+
* Disables the checkbox and shows a loading indicator.
|
|
40
|
+
*/
|
|
41
|
+
loading?: boolean;
|
|
34
42
|
/**
|
|
35
43
|
* The message styled depending on validation state.
|
|
36
44
|
*/
|
|
@@ -5,13 +5,13 @@ var react = require('react');
|
|
|
5
5
|
var hooks = require('../../hooks.js');
|
|
6
6
|
var utils = require('../../utils.js');
|
|
7
7
|
|
|
8
|
-
const PCheckboxWrapper = react.forwardRef(({ hideLabel = false, label = '', message = '', state = 'none', theme = 'light', className, ...rest }, ref) => {
|
|
8
|
+
const PCheckboxWrapper = react.forwardRef(({ hideLabel = false, label = '', loading = false, message = '', state = 'none', theme = 'light', className, ...rest }, ref) => {
|
|
9
9
|
const elementRef = react.useRef();
|
|
10
10
|
const WebComponentTag = hooks.usePrefix('p-checkbox-wrapper');
|
|
11
|
-
const propsToSync = [hideLabel, label, message, state, theme];
|
|
11
|
+
const propsToSync = [hideLabel, label, loading, message, state, theme];
|
|
12
12
|
hooks.useBrowserLayoutEffect(() => {
|
|
13
13
|
const { current } = elementRef;
|
|
14
|
-
['hideLabel', 'label', 'message', 'state', 'theme'].forEach((propName, i) => (current[propName] = propsToSync[i]));
|
|
14
|
+
['hideLabel', 'label', 'loading', 'message', 'state', 'theme'].forEach((propName, i) => (current[propName] = propsToSync[i]));
|
|
15
15
|
}, propsToSync);
|
|
16
16
|
const props = {
|
|
17
17
|
...rest,
|
package/lib/types.d.ts
CHANGED
|
@@ -79,6 +79,7 @@ declare const ICON_NAMES: readonly [
|
|
|
79
79
|
"locate",
|
|
80
80
|
"lock",
|
|
81
81
|
"lock-open",
|
|
82
|
+
"logo-apple-podcast",
|
|
82
83
|
"logo-baidu",
|
|
83
84
|
"logo-delicious",
|
|
84
85
|
"logo-digg",
|
|
@@ -98,6 +99,7 @@ declare const ICON_NAMES: readonly [
|
|
|
98
99
|
"logo-reddit",
|
|
99
100
|
"logo-skyrock",
|
|
100
101
|
"logo-sohu",
|
|
102
|
+
"logo-spotify",
|
|
101
103
|
"logo-tecent",
|
|
102
104
|
"logo-telegram",
|
|
103
105
|
"logo-tiktok",
|
|
@@ -126,12 +128,16 @@ declare const ICON_NAMES: readonly [
|
|
|
126
128
|
"pause",
|
|
127
129
|
"phone",
|
|
128
130
|
"pin",
|
|
131
|
+
"pin-filled",
|
|
129
132
|
"play",
|
|
130
133
|
"plug",
|
|
131
134
|
"plus",
|
|
132
135
|
"preheating",
|
|
133
136
|
"printer",
|
|
134
137
|
"purchase",
|
|
138
|
+
"push-pin",
|
|
139
|
+
"push-pin-off",
|
|
140
|
+
"qr",
|
|
135
141
|
"question",
|
|
136
142
|
"racing-flag",
|
|
137
143
|
"refresh",
|
|
@@ -145,7 +151,9 @@ declare const ICON_NAMES: readonly [
|
|
|
145
151
|
"send",
|
|
146
152
|
"share",
|
|
147
153
|
"shopping-bag",
|
|
154
|
+
"shopping-bag-filled",
|
|
148
155
|
"shopping-cart",
|
|
156
|
+
"shopping-cart-filled",
|
|
149
157
|
"sidelights",
|
|
150
158
|
"snowflake",
|
|
151
159
|
"sort",
|
|
@@ -163,6 +171,7 @@ declare const ICON_NAMES: readonly [
|
|
|
163
171
|
"truck",
|
|
164
172
|
"upload",
|
|
165
173
|
"user",
|
|
174
|
+
"user-filled",
|
|
166
175
|
"user-group",
|
|
167
176
|
"user-manual",
|
|
168
177
|
"video",
|
|
@@ -897,7 +906,7 @@ declare const MODEL_SIGNATURE_SIZES: readonly [
|
|
|
897
906
|
"small",
|
|
898
907
|
"inherit"
|
|
899
908
|
];
|
|
900
|
-
export declare type ModelSignatureSize = typeof MODEL_SIGNATURE_SIZES[number];
|
|
909
|
+
export declare type ModelSignatureSize = (typeof MODEL_SIGNATURE_SIZES)[number];
|
|
901
910
|
export declare type ModelSignatureModel = keyof typeof MODEL_SIGNATURES_MANIFEST;
|
|
902
911
|
declare const MODEL_SIGNATURE_COLORS: readonly [
|
|
903
912
|
"primary",
|
|
@@ -906,7 +915,7 @@ declare const MODEL_SIGNATURE_COLORS: readonly [
|
|
|
906
915
|
"contrast-high",
|
|
907
916
|
"inherit"
|
|
908
917
|
];
|
|
909
|
-
export declare type ModelSignatureColor = typeof MODEL_SIGNATURE_COLORS[number];
|
|
918
|
+
export declare type ModelSignatureColor = (typeof MODEL_SIGNATURE_COLORS)[number];
|
|
910
919
|
export declare type LinkTileModelSignatureModel = ModelSignatureModel;
|
|
911
920
|
declare const LINK_TILE_MODEL_SIGNATURE_HEADING_TAGS: readonly [
|
|
912
921
|
"h2",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@porsche-design-system/components-react",
|
|
3
|
-
"version": "3.0.0-
|
|
3
|
+
"version": "3.0.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,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.0.0-
|
|
20
|
+
"@porsche-design-system/components-js": "3.0.0-rc.1"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"react": ">=17.0.0 <19.0.0",
|