@porsche-design-system/components-vue 2.20.0-rc.1 → 3.0.0-alpha.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 +403 -3
- package/lib/components/AccordionWrapper.vue.d.ts +5 -5
- package/lib/components/BannerWrapper.vue.d.ts +2 -2
- package/lib/components/BannerWrapper.vue.js +9 -9
- package/lib/components/ButtonPureWrapper.vue.d.ts +13 -24
- package/lib/components/ButtonPureWrapper.vue.js +7 -8
- package/lib/components/ButtonWrapper.vue.d.ts +9 -22
- package/lib/components/ButtonWrapper.vue.js +12 -13
- package/lib/components/CheckboxWrapperWrapper.vue.d.ts +12 -1
- package/lib/components/CheckboxWrapperWrapper.vue.js +13 -12
- package/lib/components/ContentWrapperWrapper.vue.d.ts +11 -6
- package/lib/components/DisplayWrapper.vue.d.ts +92 -0
- package/lib/components/DisplayWrapper.vue.js +32 -0
- package/lib/components/DisplayWrapper.vue2.js +4 -0
- package/lib/components/DividerWrapper.vue.d.ts +2 -2
- package/lib/components/FieldsetWrapperWrapper.vue.d.ts +12 -1
- package/lib/components/FieldsetWrapperWrapper.vue.js +11 -10
- package/lib/components/FlexItemWrapper.vue.d.ts +3 -2
- package/lib/components/FlexWrapper.vue.d.ts +1 -0
- package/lib/components/GridItemWrapper.vue.d.ts +5 -4
- package/lib/components/GridWrapper.vue.d.ts +5 -2
- package/lib/components/HeadingWrapper.vue.d.ts +92 -0
- package/lib/components/HeadingWrapper.vue.js +32 -0
- package/lib/components/HeadingWrapper.vue2.js +4 -0
- package/lib/components/HeadlineWrapper.vue.d.ts +8 -7
- package/lib/components/HeadlineWrapper.vue.js +5 -5
- package/lib/components/IconWrapper.vue.d.ts +17 -15
- package/lib/components/IconWrapper.vue.js +7 -7
- package/lib/components/InlineNotificationWrapper.vue.d.ts +4 -4
- package/lib/components/InlineNotificationWrapper.vue.js +7 -7
- package/lib/components/LinkPureWrapper.vue.d.ts +24 -11
- package/lib/components/LinkPureWrapper.vue.js +6 -5
- package/lib/components/LinkSocialWrapper.vue.d.ts +1 -0
- package/lib/components/LinkWrapper.vue.d.ts +9 -9
- package/lib/components/LinkWrapper.vue.js +10 -10
- package/lib/components/PopoverWrapper.vue.d.ts +12 -1
- package/lib/components/PopoverWrapper.vue.js +9 -8
- package/lib/components/RadioButtonWrapperWrapper.vue.d.ts +12 -1
- package/lib/components/RadioButtonWrapperWrapper.vue.js +7 -6
- package/lib/components/ScrollerWrapper.vue.d.ts +4 -4
- package/lib/components/SegmentedControlItemWrapper.vue.d.ts +2 -3
- package/lib/components/SegmentedControlWrapper.vue.d.ts +3 -6
- package/lib/components/SegmentedControlWrapper.vue.js +14 -14
- package/lib/components/SpinnerWrapper.vue.d.ts +6 -6
- package/lib/components/SwitchWrapper.vue.d.ts +4 -17
- package/lib/components/SwitchWrapper.vue.js +7 -8
- package/lib/components/TabsBarWrapper.vue.d.ts +4 -4
- package/lib/components/TabsWrapper.vue.d.ts +4 -4
- package/lib/components/TagDismissibleWrapper.vue.d.ts +14 -3
- package/lib/components/TagDismissibleWrapper.vue.js +13 -12
- package/lib/components/TagWrapper.vue.d.ts +5 -5
- package/lib/components/TextFieldWrapperWrapper.vue.d.ts +12 -1
- package/lib/components/TextFieldWrapperWrapper.vue.js +8 -7
- package/lib/components/TextWrapper.vue.d.ts +9 -9
- package/lib/components/TextWrapper.vue.js +7 -7
- package/lib/components/TextareaWrapperWrapper.vue.d.ts +12 -1
- package/lib/components/TextareaWrapperWrapper.vue.js +10 -9
- package/lib/components/index.d.ts +2 -0
- package/lib/types.d.ts +275 -42
- package/package.json +2 -2
- package/partials/esm/{partials.js → index.js} +0 -0
- package/partials/{partials.d.ts → index.d.ts} +0 -0
- package/partials/{partials.js → index.js} +0 -0
- package/partials/package.json +3 -3
- package/public-api.js +94 -90
- package/styles/esm/index.js +1 -0
- package/styles/index.d.ts +1 -0
- package/styles/index.js +12 -0
- package/styles/package.json +6 -0
- package/styles/scss.scss +1 -0
- package/{testing.d.ts → testing/index.d.ts} +0 -0
- package/testing/{testing.js → index.js} +0 -0
- package/jsdom-polyfill.d.ts +0 -1
- package/testing/package.json +0 -5
- package/testing/testing.d.ts +0 -1
- package/utilities/js/esm/js.js +0 -1
- package/utilities/js/js.d.ts +0 -1
- package/utilities/js/js.js +0 -12
- package/utilities/js/package.json +0 -6
- package/utilities/scss.scss +0 -1
package/lib/types.d.ts
CHANGED
|
@@ -1,4 +1,186 @@
|
|
|
1
|
-
|
|
1
|
+
declare const ICON_NAMES: readonly [
|
|
2
|
+
"360",
|
|
3
|
+
"accessibility",
|
|
4
|
+
"active-cabin-ventilation",
|
|
5
|
+
"add",
|
|
6
|
+
"adjust",
|
|
7
|
+
"arrow-double-down",
|
|
8
|
+
"arrow-double-left",
|
|
9
|
+
"arrow-double-right",
|
|
10
|
+
"arrow-double-up",
|
|
11
|
+
"arrow-down",
|
|
12
|
+
"arrow-first",
|
|
13
|
+
"arrow-head-down",
|
|
14
|
+
"arrow-head-left",
|
|
15
|
+
"arrow-head-right",
|
|
16
|
+
"arrow-head-up",
|
|
17
|
+
"arrow-last",
|
|
18
|
+
"arrow-left",
|
|
19
|
+
"arrow-right",
|
|
20
|
+
"arrow-up",
|
|
21
|
+
"augmented-reality",
|
|
22
|
+
"battery-empty",
|
|
23
|
+
"battery-full",
|
|
24
|
+
"bell",
|
|
25
|
+
"bookmark",
|
|
26
|
+
"broadcast",
|
|
27
|
+
"calculator",
|
|
28
|
+
"calendar",
|
|
29
|
+
"camera",
|
|
30
|
+
"car",
|
|
31
|
+
"car-battery",
|
|
32
|
+
"card",
|
|
33
|
+
"charging-active",
|
|
34
|
+
"charging-state",
|
|
35
|
+
"charging-station",
|
|
36
|
+
"chart",
|
|
37
|
+
"chat",
|
|
38
|
+
"check",
|
|
39
|
+
"city",
|
|
40
|
+
"climate",
|
|
41
|
+
"climate-control",
|
|
42
|
+
"clock",
|
|
43
|
+
"close",
|
|
44
|
+
"closed-caption",
|
|
45
|
+
"co2-emission",
|
|
46
|
+
"compare",
|
|
47
|
+
"configurate",
|
|
48
|
+
"country-road",
|
|
49
|
+
"cubic-capacity",
|
|
50
|
+
"delete",
|
|
51
|
+
"disable",
|
|
52
|
+
"document",
|
|
53
|
+
"download",
|
|
54
|
+
"duration",
|
|
55
|
+
"edit",
|
|
56
|
+
"email",
|
|
57
|
+
"error-filled",
|
|
58
|
+
"exclamation",
|
|
59
|
+
"external",
|
|
60
|
+
"filter",
|
|
61
|
+
"flash",
|
|
62
|
+
"fuel-station",
|
|
63
|
+
"garage",
|
|
64
|
+
"gift",
|
|
65
|
+
"globe",
|
|
66
|
+
"grid",
|
|
67
|
+
"highway",
|
|
68
|
+
"home",
|
|
69
|
+
"horn",
|
|
70
|
+
"image",
|
|
71
|
+
"increase",
|
|
72
|
+
"information",
|
|
73
|
+
"information-filled",
|
|
74
|
+
"key",
|
|
75
|
+
"leaf",
|
|
76
|
+
"leather",
|
|
77
|
+
"light",
|
|
78
|
+
"list",
|
|
79
|
+
"locate",
|
|
80
|
+
"lock",
|
|
81
|
+
"lock-open",
|
|
82
|
+
"logo-baidu",
|
|
83
|
+
"logo-delicious",
|
|
84
|
+
"logo-digg",
|
|
85
|
+
"logo-facebook",
|
|
86
|
+
"logo-foursquare",
|
|
87
|
+
"logo-gmail",
|
|
88
|
+
"logo-google",
|
|
89
|
+
"logo-hatena",
|
|
90
|
+
"logo-instagram",
|
|
91
|
+
"logo-kaixin",
|
|
92
|
+
"logo-kakaotalk",
|
|
93
|
+
"logo-linkedin",
|
|
94
|
+
"logo-naver",
|
|
95
|
+
"logo-pinterest",
|
|
96
|
+
"logo-qq",
|
|
97
|
+
"logo-qq-share",
|
|
98
|
+
"logo-reddit",
|
|
99
|
+
"logo-skyrock",
|
|
100
|
+
"logo-sohu",
|
|
101
|
+
"logo-tecent",
|
|
102
|
+
"logo-telegram",
|
|
103
|
+
"logo-tiktok",
|
|
104
|
+
"logo-tumblr",
|
|
105
|
+
"logo-twitter",
|
|
106
|
+
"logo-viber",
|
|
107
|
+
"logo-vk",
|
|
108
|
+
"logo-wechat",
|
|
109
|
+
"logo-weibo",
|
|
110
|
+
"logo-whatsapp",
|
|
111
|
+
"logo-xing",
|
|
112
|
+
"logo-yahoo",
|
|
113
|
+
"logo-youku",
|
|
114
|
+
"logo-youtube",
|
|
115
|
+
"logout",
|
|
116
|
+
"map",
|
|
117
|
+
"menu-dots-horizontal",
|
|
118
|
+
"menu-dots-vertical",
|
|
119
|
+
"menu-lines",
|
|
120
|
+
"minus",
|
|
121
|
+
"mobile",
|
|
122
|
+
"moon",
|
|
123
|
+
"oil-can",
|
|
124
|
+
"parking-brake",
|
|
125
|
+
"parking-light",
|
|
126
|
+
"pause",
|
|
127
|
+
"phone",
|
|
128
|
+
"pin",
|
|
129
|
+
"play",
|
|
130
|
+
"plug",
|
|
131
|
+
"plus",
|
|
132
|
+
"preheating",
|
|
133
|
+
"printer",
|
|
134
|
+
"purchase",
|
|
135
|
+
"question",
|
|
136
|
+
"racing-flag",
|
|
137
|
+
"refresh",
|
|
138
|
+
"replay",
|
|
139
|
+
"reset",
|
|
140
|
+
"route",
|
|
141
|
+
"rss",
|
|
142
|
+
"save",
|
|
143
|
+
"screen",
|
|
144
|
+
"search",
|
|
145
|
+
"send",
|
|
146
|
+
"share",
|
|
147
|
+
"shopping-bag",
|
|
148
|
+
"shopping-cart",
|
|
149
|
+
"sidelights",
|
|
150
|
+
"snowflake",
|
|
151
|
+
"sort",
|
|
152
|
+
"stack",
|
|
153
|
+
"star",
|
|
154
|
+
"steering-wheel",
|
|
155
|
+
"stopwatch",
|
|
156
|
+
"subtract",
|
|
157
|
+
"success",
|
|
158
|
+
"success-filled",
|
|
159
|
+
"sun",
|
|
160
|
+
"switch",
|
|
161
|
+
"tablet",
|
|
162
|
+
"tachometer",
|
|
163
|
+
"truck",
|
|
164
|
+
"upload",
|
|
165
|
+
"user",
|
|
166
|
+
"user-group",
|
|
167
|
+
"user-manual",
|
|
168
|
+
"video",
|
|
169
|
+
"view",
|
|
170
|
+
"view-off",
|
|
171
|
+
"volume-off",
|
|
172
|
+
"volume-up",
|
|
173
|
+
"warning",
|
|
174
|
+
"warning-filled",
|
|
175
|
+
"weight",
|
|
176
|
+
"wifi",
|
|
177
|
+
"work",
|
|
178
|
+
"wrench",
|
|
179
|
+
"wrenches",
|
|
180
|
+
"zoom-in",
|
|
181
|
+
"zoom-out"
|
|
182
|
+
];
|
|
183
|
+
export type IconName = typeof ICON_NAMES[number];
|
|
2
184
|
declare const FORM_STATES: readonly [
|
|
3
185
|
"none",
|
|
4
186
|
"error",
|
|
@@ -11,7 +193,7 @@ declare const BUTTON_ARIA_ATTRIBUTES: readonly [
|
|
|
11
193
|
"aria-pressed",
|
|
12
194
|
"aria-haspopup"
|
|
13
195
|
];
|
|
14
|
-
export declare type
|
|
196
|
+
export declare type ButtonAriaAttribute = typeof BUTTON_ARIA_ATTRIBUTES[number];
|
|
15
197
|
declare const BREAKPOINTS: readonly [
|
|
16
198
|
"base",
|
|
17
199
|
"xs",
|
|
@@ -46,19 +228,6 @@ declare const THEMES: readonly [
|
|
|
46
228
|
"dark"
|
|
47
229
|
];
|
|
48
230
|
export declare type Theme = typeof THEMES[number];
|
|
49
|
-
declare const THEMES_EXTENDED_ELECTRIC: readonly [
|
|
50
|
-
"light",
|
|
51
|
-
"dark",
|
|
52
|
-
"light-electric"
|
|
53
|
-
];
|
|
54
|
-
export declare type ThemeExtendedElectric = typeof THEMES_EXTENDED_ELECTRIC[number];
|
|
55
|
-
declare const THEMES_EXTENDED_ELECTRIC_DARK: readonly [
|
|
56
|
-
"light",
|
|
57
|
-
"dark",
|
|
58
|
-
"light-electric",
|
|
59
|
-
"dark-electric"
|
|
60
|
-
];
|
|
61
|
-
export declare type ThemeExtendedElectricDark = typeof THEMES_EXTENDED_ELECTRIC_DARK[number];
|
|
62
231
|
declare const ALIGN_LABELS: readonly [
|
|
63
232
|
"left",
|
|
64
233
|
"right"
|
|
@@ -70,18 +239,7 @@ declare const BUTTON_TYPES: readonly [
|
|
|
70
239
|
"reset"
|
|
71
240
|
];
|
|
72
241
|
export declare type ButtonType = typeof BUTTON_TYPES[number];
|
|
73
|
-
declare const
|
|
74
|
-
"large-title",
|
|
75
|
-
"headline-1",
|
|
76
|
-
"headline-2",
|
|
77
|
-
"headline-3",
|
|
78
|
-
"headline-4",
|
|
79
|
-
"headline-5"
|
|
80
|
-
];
|
|
81
|
-
export declare type VariantType = typeof HEADLINE_VARIANTS[number];
|
|
82
|
-
export declare type HeadlineVariantCustom = Exclude<BreakpointCustomizable<TextSize>, TextSize>;
|
|
83
|
-
export declare type HeadlineVariant = VariantType | HeadlineVariantCustom | Extract<TextSize, "inherit">;
|
|
84
|
-
declare const HEADLINE_TAGS: readonly [
|
|
242
|
+
declare const HEADING_TAGS: readonly [
|
|
85
243
|
"h1",
|
|
86
244
|
"h2",
|
|
87
245
|
"h3",
|
|
@@ -89,14 +247,7 @@ declare const HEADLINE_TAGS: readonly [
|
|
|
89
247
|
"h5",
|
|
90
248
|
"h6"
|
|
91
249
|
];
|
|
92
|
-
export declare type
|
|
93
|
-
declare const ICON_SIZES: readonly [
|
|
94
|
-
"small",
|
|
95
|
-
"medium",
|
|
96
|
-
"large",
|
|
97
|
-
"inherit"
|
|
98
|
-
];
|
|
99
|
-
export declare type IconSize = typeof ICON_SIZES[number];
|
|
250
|
+
export declare type HeadingTag = typeof HEADING_TAGS[number];
|
|
100
251
|
declare const LINK_BUTTON_VARIANTS: readonly [
|
|
101
252
|
"primary",
|
|
102
253
|
"secondary",
|
|
@@ -110,14 +261,19 @@ declare const TEXT_ALIGNS: readonly [
|
|
|
110
261
|
];
|
|
111
262
|
export declare type TextAlign = typeof TEXT_ALIGNS[number];
|
|
112
263
|
declare const TEXT_COLORS: readonly [
|
|
264
|
+
"primary",
|
|
113
265
|
"brand",
|
|
114
266
|
"default",
|
|
115
|
-
"
|
|
116
|
-
"neutral-contrast-medium",
|
|
267
|
+
"contrast-low",
|
|
117
268
|
"neutral-contrast-low",
|
|
269
|
+
"contrast-medium",
|
|
270
|
+
"neutral-contrast-medium",
|
|
271
|
+
"contrast-high",
|
|
272
|
+
"neutral-contrast-high",
|
|
118
273
|
"notification-success",
|
|
119
274
|
"notification-warning",
|
|
120
275
|
"notification-error",
|
|
276
|
+
"notification-info",
|
|
121
277
|
"notification-neutral",
|
|
122
278
|
"inherit"
|
|
123
279
|
];
|
|
@@ -135,6 +291,7 @@ declare const TEXT_WEIGHTS: readonly [
|
|
|
135
291
|
"thin",
|
|
136
292
|
"regular",
|
|
137
293
|
"semibold",
|
|
294
|
+
"semi-bold",
|
|
138
295
|
"bold"
|
|
139
296
|
];
|
|
140
297
|
export declare type TextWeight = typeof TEXT_WEIGHTS[number];
|
|
@@ -332,7 +489,7 @@ export declare type AriaAttributes = {
|
|
|
332
489
|
/** Defines the human readable text alternative of aria-valuenow for a range widget. */
|
|
333
490
|
"aria-valuetext"?: string | undefined;
|
|
334
491
|
};
|
|
335
|
-
export type
|
|
492
|
+
export type LinkButtonIconName = IconName | "none";
|
|
336
493
|
export type ButtonVariant = LinkButtonVariant;
|
|
337
494
|
export type LinkVariant = LinkButtonVariant;
|
|
338
495
|
export type SelectedAriaAttributes<T extends keyof AriaAttributes> = Pick<AriaAttributes, T> | string;
|
|
@@ -344,9 +501,11 @@ export declare type AccordionSize = typeof ACCORDION_SIZES[number];
|
|
|
344
501
|
export declare type AccordionChangeEvent = {
|
|
345
502
|
open: boolean;
|
|
346
503
|
};
|
|
504
|
+
export declare type AccordionTag = HeadingTag;
|
|
347
505
|
declare const BANNER_STATES: readonly [
|
|
348
506
|
"error",
|
|
349
507
|
"warning",
|
|
508
|
+
"info",
|
|
350
509
|
"neutral"
|
|
351
510
|
];
|
|
352
511
|
export declare type BannerState = typeof BANNER_STATES[number];
|
|
@@ -372,11 +531,34 @@ declare const CONTENT_WRAPPER_BACKGROUND_COLORS: readonly [
|
|
|
372
531
|
];
|
|
373
532
|
export declare type ContentWrapperBackgroundColor = typeof CONTENT_WRAPPER_BACKGROUND_COLORS[number];
|
|
374
533
|
declare const CONTENT_WRAPPER_WIDTHS: readonly [
|
|
534
|
+
"narrow",
|
|
375
535
|
"basic",
|
|
376
536
|
"extended",
|
|
377
|
-
"fluid"
|
|
537
|
+
"fluid",
|
|
538
|
+
"full"
|
|
378
539
|
];
|
|
379
540
|
export declare type ContentWrapperWidth = typeof CONTENT_WRAPPER_WIDTHS[number];
|
|
541
|
+
declare const DISPLAY_TAGS: readonly [
|
|
542
|
+
"h1",
|
|
543
|
+
"h2",
|
|
544
|
+
"h3",
|
|
545
|
+
"h4",
|
|
546
|
+
"h5",
|
|
547
|
+
"h6"
|
|
548
|
+
];
|
|
549
|
+
export declare type DisplayTag = typeof DISPLAY_TAGS[number];
|
|
550
|
+
declare const DISPLAY_SIZES: readonly [
|
|
551
|
+
"medium",
|
|
552
|
+
"large",
|
|
553
|
+
"inherit"
|
|
554
|
+
];
|
|
555
|
+
export declare type DisplaySize = typeof DISPLAY_SIZES[number];
|
|
556
|
+
declare const DISPLAY_COLORS: readonly [
|
|
557
|
+
"primary",
|
|
558
|
+
"inherit"
|
|
559
|
+
];
|
|
560
|
+
export declare type DisplayColor = typeof DISPLAY_COLORS[number];
|
|
561
|
+
export declare type DisplayAlign = TextAlign;
|
|
380
562
|
declare const DIVIDER_COLORS: readonly [
|
|
381
563
|
"neutral-contrast-high",
|
|
382
564
|
"neutral-contrast-medium",
|
|
@@ -527,13 +709,59 @@ declare const GRID_ITEM_OFFSETS: readonly [
|
|
|
527
709
|
11
|
|
528
710
|
];
|
|
529
711
|
export declare type GridItemOffset = typeof GRID_ITEM_OFFSETS[number];
|
|
712
|
+
declare const HEADING_SIZES: readonly [
|
|
713
|
+
"small",
|
|
714
|
+
"medium",
|
|
715
|
+
"large",
|
|
716
|
+
"x-large",
|
|
717
|
+
"xx-large",
|
|
718
|
+
"xxx-large",
|
|
719
|
+
"inherit"
|
|
720
|
+
];
|
|
721
|
+
export declare type HeadingSize = typeof HEADING_SIZES[number];
|
|
722
|
+
declare const HEADING_COLORS: readonly [
|
|
723
|
+
"primary",
|
|
724
|
+
"inherit"
|
|
725
|
+
];
|
|
726
|
+
export declare type HeadingColor = typeof HEADING_COLORS[number];
|
|
727
|
+
export declare type HeadingAlign = TextAlign;
|
|
728
|
+
declare const HEADLINE_VARIANTS: readonly [
|
|
729
|
+
"large-title",
|
|
730
|
+
"headline-1",
|
|
731
|
+
"headline-2",
|
|
732
|
+
"headline-3",
|
|
733
|
+
"headline-4",
|
|
734
|
+
"headline-5"
|
|
735
|
+
];
|
|
736
|
+
export declare type HeadlineVariantType = typeof HEADLINE_VARIANTS[number];
|
|
737
|
+
export declare type HeadlineVariantCustom = Exclude<BreakpointCustomizable<TextSize>, TextSize>;
|
|
738
|
+
export declare type HeadlineVariant = HeadlineVariantType | HeadlineVariantCustom | Extract<TextSize, "inherit">;
|
|
739
|
+
declare const HEADLINE_TAGS: readonly [
|
|
740
|
+
"h1",
|
|
741
|
+
"h2",
|
|
742
|
+
"h3",
|
|
743
|
+
"h4",
|
|
744
|
+
"h5",
|
|
745
|
+
"h6"
|
|
746
|
+
];
|
|
747
|
+
export declare type HeadlineTag = typeof HEADLINE_TAGS[number];
|
|
748
|
+
declare const HEADLINE_COLORS: readonly [
|
|
749
|
+
"primary",
|
|
750
|
+
"default",
|
|
751
|
+
"inherit"
|
|
752
|
+
];
|
|
753
|
+
export declare type HeadlineColor = typeof HEADLINE_COLORS[number];
|
|
754
|
+
export declare type HeadlineAlign = TextAlign;
|
|
530
755
|
declare const ICON_ARIA_ATTRIBUTES: readonly [
|
|
531
756
|
"aria-label"
|
|
532
757
|
];
|
|
533
758
|
export declare type IconAriaAttribute = typeof ICON_ARIA_ATTRIBUTES[number];
|
|
759
|
+
export declare type IconSize = TextSize;
|
|
760
|
+
export declare type IconColor = TextColor;
|
|
534
761
|
declare const INLINE_NOTIFICATION_STATES: readonly [
|
|
535
762
|
"error",
|
|
536
763
|
"warning",
|
|
764
|
+
"info",
|
|
537
765
|
"neutral",
|
|
538
766
|
"success"
|
|
539
767
|
];
|
|
@@ -662,8 +890,11 @@ export declare type TabGradientColorTheme = GradientColorTheme;
|
|
|
662
890
|
declare const TAG_COLORS: readonly [
|
|
663
891
|
"background-surface",
|
|
664
892
|
"background-default",
|
|
893
|
+
"background-base",
|
|
665
894
|
"neutral-contrast-high",
|
|
895
|
+
"primary",
|
|
666
896
|
"notification-neutral",
|
|
897
|
+
"notification-info",
|
|
667
898
|
"notification-warning",
|
|
668
899
|
"notification-success",
|
|
669
900
|
"notification-error"
|
|
@@ -671,7 +902,8 @@ declare const TAG_COLORS: readonly [
|
|
|
671
902
|
export declare type TagColor = typeof TAG_COLORS[number];
|
|
672
903
|
declare const TAG_DISMISSIBLE_COLORS: readonly [
|
|
673
904
|
"background-surface",
|
|
674
|
-
"background-default"
|
|
905
|
+
"background-default",
|
|
906
|
+
"background-base"
|
|
675
907
|
];
|
|
676
908
|
export declare type TagDismissibleColor = typeof TAG_DISMISSIBLE_COLORS[number];
|
|
677
909
|
declare const TAG_DISMISSIBLE_ARIA_ATTRIBUTES: readonly [
|
|
@@ -706,8 +938,9 @@ declare const ORDER_TYPES: readonly [
|
|
|
706
938
|
];
|
|
707
939
|
export declare type OrderType = typeof ORDER_TYPES[number];
|
|
708
940
|
declare const TOAST_STATES: readonly [
|
|
709
|
-
"
|
|
710
|
-
"success"
|
|
941
|
+
"info",
|
|
942
|
+
"success",
|
|
943
|
+
"neutral"
|
|
711
944
|
];
|
|
712
945
|
export declare type ToastState = typeof TOAST_STATES[number];
|
|
713
946
|
export declare type ToastMessage = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@porsche-design-system/components-vue",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-alpha.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": "
|
|
20
|
+
"@porsche-design-system/components-js": "3.0.0-alpha.0"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"vue": ">=3.0.0 <4.0.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/partials/package.json
CHANGED