@porsche-design-system/components-vue 3.29.0-rc.3 → 3.29.0-rc.4
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 +25 -0
- package/cjs/lib/components/FieldsetWrapper.vue.cjs +1 -1
- package/cjs/lib/components/FlagWrapper.vue.cjs +1 -0
- package/cjs/lib/components/FlagWrapper.vue2.cjs +1 -0
- package/cjs/lib/components/InputDateWrapper.vue.cjs +1 -0
- package/cjs/lib/components/InputDateWrapper.vue2.cjs +1 -0
- package/cjs/lib/components/InputTelWrapper.vue.cjs +1 -0
- package/cjs/lib/components/InputTelWrapper.vue2.cjs +1 -0
- package/cjs/lib/components/InputTimeWrapper.vue.cjs +1 -0
- package/cjs/lib/components/InputTimeWrapper.vue2.cjs +1 -0
- package/cjs/lib/components/InputUrlWrapper.vue.cjs +1 -0
- package/cjs/lib/components/InputUrlWrapper.vue2.cjs +1 -0
- package/cjs/lib/components/MultiSelectWrapper.vue.cjs +1 -1
- package/cjs/lib/components/ScrollerWrapper.vue.cjs +1 -1
- package/cjs/lib/components/TabsBarWrapper.vue.cjs +1 -1
- package/cjs/lib/components/TabsWrapper.vue.cjs +1 -1
- package/cjs/public-api.cjs +1 -1
- package/esm/lib/components/FieldsetWrapper.vue.d.ts +5 -1
- package/esm/lib/components/FieldsetWrapper.vue.mjs +5 -4
- package/esm/lib/components/FlagWrapper.vue.d.ts +20 -0
- package/esm/lib/components/FlagWrapper.vue.mjs +20 -0
- package/esm/lib/components/FlagWrapper.vue2.mjs +4 -0
- package/esm/lib/components/InputDateWrapper.vue.d.ts +108 -0
- package/esm/lib/components/InputDateWrapper.vue.mjs +45 -0
- package/esm/lib/components/InputDateWrapper.vue2.mjs +4 -0
- package/esm/lib/components/InputEmailWrapper.vue.d.ts +2 -2
- package/esm/lib/components/InputNumberWrapper.vue.d.ts +2 -2
- package/esm/lib/components/InputPasswordWrapper.vue.d.ts +2 -2
- package/esm/lib/components/InputSearchWrapper.vue.d.ts +1 -1
- package/esm/lib/components/InputTelWrapper.vue.d.ts +117 -0
- package/esm/lib/components/InputTelWrapper.vue.mjs +47 -0
- package/esm/lib/components/InputTelWrapper.vue2.mjs +4 -0
- package/esm/lib/components/InputTextWrapper.vue.d.ts +1 -1
- package/esm/lib/components/InputTimeWrapper.vue.d.ts +108 -0
- package/esm/lib/components/InputTimeWrapper.vue.mjs +45 -0
- package/esm/lib/components/InputTimeWrapper.vue2.mjs +4 -0
- package/esm/lib/components/InputUrlWrapper.vue.d.ts +117 -0
- package/esm/lib/components/InputUrlWrapper.vue.mjs +47 -0
- package/esm/lib/components/InputUrlWrapper.vue2.mjs +4 -0
- package/esm/lib/components/MultiSelectWrapper.vue.d.ts +5 -0
- package/esm/lib/components/MultiSelectWrapper.vue.mjs +7 -6
- package/esm/lib/components/ScrollerWrapper.vue.d.ts +2 -3
- package/esm/lib/components/ScrollerWrapper.vue.mjs +10 -10
- package/esm/lib/components/TabsBarWrapper.vue.d.ts +2 -3
- package/esm/lib/components/TabsBarWrapper.vue.mjs +10 -10
- package/esm/lib/components/TabsWrapper.vue.d.ts +1 -2
- package/esm/lib/components/TabsWrapper.vue.mjs +7 -7
- package/esm/lib/components/TextareaWrapper.vue.d.ts +1 -1
- package/esm/lib/components/index.d.ts +5 -0
- package/esm/lib/types.d.ts +149 -14
- package/esm/public-api.mjs +150 -140
- package/package.json +2 -2
|
@@ -17,6 +17,7 @@ export { default as PDrilldownItem } from './DrilldownItemWrapper.vue';
|
|
|
17
17
|
export { default as PDrilldownLink } from './DrilldownLinkWrapper.vue';
|
|
18
18
|
export { default as PFieldset } from './FieldsetWrapper.vue';
|
|
19
19
|
export { default as PFieldsetWrapper } from './FieldsetWrapperWrapper.vue';
|
|
20
|
+
export { default as PFlag } from './FlagWrapper.vue';
|
|
20
21
|
export { default as PFlex } from './FlexWrapper.vue';
|
|
21
22
|
export { default as PFlexItem } from './FlexItemWrapper.vue';
|
|
22
23
|
export { default as PFlyout } from './FlyoutWrapper.vue';
|
|
@@ -26,11 +27,15 @@ export { default as PHeading } from './HeadingWrapper.vue';
|
|
|
26
27
|
export { default as PHeadline } from './HeadlineWrapper.vue';
|
|
27
28
|
export { default as PIcon } from './IconWrapper.vue';
|
|
28
29
|
export { default as PInlineNotification } from './InlineNotificationWrapper.vue';
|
|
30
|
+
export { default as PInputDate } from './InputDateWrapper.vue';
|
|
29
31
|
export { default as PInputEmail } from './InputEmailWrapper.vue';
|
|
30
32
|
export { default as PInputNumber } from './InputNumberWrapper.vue';
|
|
31
33
|
export { default as PInputPassword } from './InputPasswordWrapper.vue';
|
|
32
34
|
export { default as PInputSearch } from './InputSearchWrapper.vue';
|
|
35
|
+
export { default as PInputTel } from './InputTelWrapper.vue';
|
|
33
36
|
export { default as PInputText } from './InputTextWrapper.vue';
|
|
37
|
+
export { default as PInputTime } from './InputTimeWrapper.vue';
|
|
38
|
+
export { default as PInputUrl } from './InputUrlWrapper.vue';
|
|
34
39
|
export { default as PLink } from './LinkWrapper.vue';
|
|
35
40
|
export { default as PLinkPure } from './LinkPureWrapper.vue';
|
|
36
41
|
export { default as PLinkSocial } from './LinkSocialWrapper.vue';
|
package/esm/lib/types.d.ts
CHANGED
|
@@ -493,6 +493,116 @@ declare const ICON_NAMES: readonly [
|
|
|
493
493
|
"zoom-out"
|
|
494
494
|
];
|
|
495
495
|
export type IconName = typeof ICON_NAMES[number];
|
|
496
|
+
declare const FLAG_NAMES: readonly [
|
|
497
|
+
"ae",
|
|
498
|
+
"am",
|
|
499
|
+
"ar",
|
|
500
|
+
"at",
|
|
501
|
+
"au",
|
|
502
|
+
"az",
|
|
503
|
+
"ba",
|
|
504
|
+
"be",
|
|
505
|
+
"bg",
|
|
506
|
+
"bh",
|
|
507
|
+
"bn",
|
|
508
|
+
"bo",
|
|
509
|
+
"br",
|
|
510
|
+
"by",
|
|
511
|
+
"ca",
|
|
512
|
+
"ch",
|
|
513
|
+
"cl",
|
|
514
|
+
"cn",
|
|
515
|
+
"co",
|
|
516
|
+
"cr",
|
|
517
|
+
"cw",
|
|
518
|
+
"cy",
|
|
519
|
+
"cz",
|
|
520
|
+
"de",
|
|
521
|
+
"dk",
|
|
522
|
+
"do",
|
|
523
|
+
"dz",
|
|
524
|
+
"ec",
|
|
525
|
+
"ee",
|
|
526
|
+
"eg",
|
|
527
|
+
"es",
|
|
528
|
+
"fi",
|
|
529
|
+
"fr",
|
|
530
|
+
"gb",
|
|
531
|
+
"ge",
|
|
532
|
+
"gh",
|
|
533
|
+
"gr",
|
|
534
|
+
"gt",
|
|
535
|
+
"hk",
|
|
536
|
+
"hn",
|
|
537
|
+
"hr",
|
|
538
|
+
"ht",
|
|
539
|
+
"hu",
|
|
540
|
+
"id",
|
|
541
|
+
"ie",
|
|
542
|
+
"il",
|
|
543
|
+
"in",
|
|
544
|
+
"is",
|
|
545
|
+
"it",
|
|
546
|
+
"jm",
|
|
547
|
+
"jo",
|
|
548
|
+
"jp",
|
|
549
|
+
"ke",
|
|
550
|
+
"kh",
|
|
551
|
+
"kr",
|
|
552
|
+
"kw",
|
|
553
|
+
"kz",
|
|
554
|
+
"lb",
|
|
555
|
+
"lk",
|
|
556
|
+
"lt",
|
|
557
|
+
"lu",
|
|
558
|
+
"lv",
|
|
559
|
+
"ma",
|
|
560
|
+
"md",
|
|
561
|
+
"mk",
|
|
562
|
+
"mn",
|
|
563
|
+
"mo",
|
|
564
|
+
"mq",
|
|
565
|
+
"mt",
|
|
566
|
+
"mu",
|
|
567
|
+
"mx",
|
|
568
|
+
"my",
|
|
569
|
+
"ng",
|
|
570
|
+
"nl",
|
|
571
|
+
"no",
|
|
572
|
+
"nz",
|
|
573
|
+
"om",
|
|
574
|
+
"pa",
|
|
575
|
+
"pe",
|
|
576
|
+
"pf",
|
|
577
|
+
"ph",
|
|
578
|
+
"pk",
|
|
579
|
+
"pl",
|
|
580
|
+
"pr",
|
|
581
|
+
"pt",
|
|
582
|
+
"py",
|
|
583
|
+
"qa",
|
|
584
|
+
"ro",
|
|
585
|
+
"rs",
|
|
586
|
+
"ru",
|
|
587
|
+
"sa",
|
|
588
|
+
"se",
|
|
589
|
+
"sg",
|
|
590
|
+
"si",
|
|
591
|
+
"sk",
|
|
592
|
+
"sv",
|
|
593
|
+
"th",
|
|
594
|
+
"tn",
|
|
595
|
+
"tr",
|
|
596
|
+
"tt",
|
|
597
|
+
"ua",
|
|
598
|
+
"us",
|
|
599
|
+
"uy",
|
|
600
|
+
"uz",
|
|
601
|
+
"ve",
|
|
602
|
+
"vn",
|
|
603
|
+
"za"
|
|
604
|
+
];
|
|
605
|
+
export type FlagName = typeof FLAG_NAMES[number];
|
|
496
606
|
declare const FORM_STATES: readonly [
|
|
497
607
|
"none",
|
|
498
608
|
"error",
|
|
@@ -586,6 +696,7 @@ declare const GRADIENT_COLORS: readonly [
|
|
|
586
696
|
"background-base",
|
|
587
697
|
"background-surface"
|
|
588
698
|
];
|
|
699
|
+
/** @deprecated */
|
|
589
700
|
export type ScrollerGradientColor = (typeof GRADIENT_COLORS)[number];
|
|
590
701
|
export type ScrollerScrollToPosition = {
|
|
591
702
|
scrollPosition: number;
|
|
@@ -598,6 +709,20 @@ declare const SCROLL_INDICATOR_POSITIONS: readonly [
|
|
|
598
709
|
/** @deprecated */
|
|
599
710
|
export type ScrollerScrollIndicatorPosition = (typeof SCROLL_INDICATOR_POSITIONS)[number];
|
|
600
711
|
export type ScrollerAlignScrollIndicator = ScrollerScrollIndicatorPosition;
|
|
712
|
+
export type MultiSelectState = FormState;
|
|
713
|
+
export type MultiSelectDropdownDirection = SelectComponentsDropdownDirection;
|
|
714
|
+
/** @deprecated */
|
|
715
|
+
export type MultiSelectUpdateEvent = {
|
|
716
|
+
name: string;
|
|
717
|
+
value: string[];
|
|
718
|
+
};
|
|
719
|
+
export type MultiSelectUpdateEventDetail = MultiSelectUpdateEvent;
|
|
720
|
+
export type SelectState = FormState;
|
|
721
|
+
export type SelectDropdownDirection = SelectComponentsDropdownDirection;
|
|
722
|
+
export type SelectUpdateEventDetail = {
|
|
723
|
+
name: string;
|
|
724
|
+
value: string;
|
|
725
|
+
};
|
|
601
726
|
declare const SELECT_DROPDOWN_DIRECTIONS: readonly [
|
|
602
727
|
"down",
|
|
603
728
|
"up",
|
|
@@ -702,6 +827,9 @@ export type PorscheDesignSystem = {
|
|
|
702
827
|
};
|
|
703
828
|
};
|
|
704
829
|
export type SelectedAriaAttributes<T extends keyof AriaAttributes> = Pick<AriaAttributes, T>;
|
|
830
|
+
export type SelectedAriaRole<T> = {
|
|
831
|
+
role: Extract<AriaRole, T>;
|
|
832
|
+
};
|
|
705
833
|
declare const ACCORDION_SIZES: readonly [
|
|
706
834
|
"small",
|
|
707
835
|
"medium"
|
|
@@ -881,6 +1009,11 @@ export type FieldsetLabelSize = (typeof FIELDSET_LABEL_SIZES)[number];
|
|
|
881
1009
|
export type FieldsetState = FormState;
|
|
882
1010
|
export type FieldsetWrapperLabelSize = FieldsetLabelSize;
|
|
883
1011
|
export type FieldsetWrapperState = FieldsetState;
|
|
1012
|
+
declare const FLAG_ARIA_ATTRIBUTES: readonly [
|
|
1013
|
+
"aria-label"
|
|
1014
|
+
];
|
|
1015
|
+
export type FlagAriaAttribute = (typeof FLAG_ARIA_ATTRIBUTES)[number];
|
|
1016
|
+
export type FlagSize = TextSize;
|
|
884
1017
|
export type FlexInline = boolean;
|
|
885
1018
|
declare const FLEX_WRAPS: readonly [
|
|
886
1019
|
"nowrap",
|
|
@@ -1090,6 +1223,10 @@ declare const ICON_COLORS: readonly [
|
|
|
1090
1223
|
"state-disabled"
|
|
1091
1224
|
];
|
|
1092
1225
|
export type IconColor = (typeof ICON_COLORS)[number];
|
|
1226
|
+
export type InputDateState = FormState;
|
|
1227
|
+
export type InputDateChangeEventDetail = Event;
|
|
1228
|
+
export type InputDateBlurEventDetail = Event;
|
|
1229
|
+
export type InputDateInputEventDetail = InputEvent;
|
|
1093
1230
|
export type InputEmailState = FormState;
|
|
1094
1231
|
export type InputEmailChangeEventDetail = Event;
|
|
1095
1232
|
export type InputEmailBlurEventDetail = Event;
|
|
@@ -1106,10 +1243,22 @@ export type InputSearchState = FormState;
|
|
|
1106
1243
|
export type InputSearchChangeEventDetail = Event;
|
|
1107
1244
|
export type InputSearchBlurEventDetail = Event;
|
|
1108
1245
|
export type InputSearchInputEventDetail = InputEvent;
|
|
1246
|
+
export type InputTelState = FormState;
|
|
1247
|
+
export type InputTelChangeEventDetail = Event;
|
|
1248
|
+
export type InputTelBlurEventDetail = Event;
|
|
1249
|
+
export type InputTelInputEventDetail = InputEvent;
|
|
1109
1250
|
export type InputTextState = FormState;
|
|
1110
1251
|
export type InputTextChangeEventDetail = Event;
|
|
1111
1252
|
export type InputTextBlurEventDetail = Event;
|
|
1112
1253
|
export type InputTextInputEventDetail = InputEvent;
|
|
1254
|
+
export type InputTimeState = FormState;
|
|
1255
|
+
export type InputTimeChangeEventDetail = Event;
|
|
1256
|
+
export type InputTimeBlurEventDetail = Event;
|
|
1257
|
+
export type InputTimeInputEventDetail = InputEvent;
|
|
1258
|
+
export type InputUrlState = FormState;
|
|
1259
|
+
export type InputUrlChangeEventDetail = Event;
|
|
1260
|
+
export type InputUrlBlurEventDetail = Event;
|
|
1261
|
+
export type InputUrlInputEventDetail = InputEvent;
|
|
1113
1262
|
export type LinkIcon = LinkButtonIconName;
|
|
1114
1263
|
export type LinkPureIcon = LinkButtonIconName;
|
|
1115
1264
|
export type LinkPureAriaAttribute = LinkAriaAttribute;
|
|
@@ -1264,14 +1413,6 @@ declare const MODEL_SIGNATURE_COLORS: readonly [
|
|
|
1264
1413
|
"inherit"
|
|
1265
1414
|
];
|
|
1266
1415
|
export type ModelSignatureColor = (typeof MODEL_SIGNATURE_COLORS)[number];
|
|
1267
|
-
export type MultiSelectState = FormState;
|
|
1268
|
-
export type MultiSelectDropdownDirection = SelectComponentsDropdownDirection;
|
|
1269
|
-
/** @deprecated */
|
|
1270
|
-
export type MultiSelectUpdateEvent = {
|
|
1271
|
-
name: string;
|
|
1272
|
-
value: string[];
|
|
1273
|
-
};
|
|
1274
|
-
export type MultiSelectUpdateEventDetail = MultiSelectUpdateEvent;
|
|
1275
1416
|
declare const PAGINATION_NUMBER_OF_PAGE_LINKS: readonly [
|
|
1276
1417
|
5,
|
|
1277
1418
|
7
|
|
@@ -1335,12 +1476,6 @@ declare const SEGMENTED_CONTROL_ITEM_ARIA_ATTRIBUTES: readonly [
|
|
|
1335
1476
|
"aria-label"
|
|
1336
1477
|
];
|
|
1337
1478
|
export type SegmentedControlItemAriaAttribute = (typeof SEGMENTED_CONTROL_ITEM_ARIA_ATTRIBUTES)[number];
|
|
1338
|
-
export type SelectState = FormState;
|
|
1339
|
-
export type SelectDropdownDirection = SelectComponentsDropdownDirection;
|
|
1340
|
-
export type SelectUpdateEventDetail = {
|
|
1341
|
-
name: string;
|
|
1342
|
-
value: string;
|
|
1343
|
-
};
|
|
1344
1479
|
declare const DROPDOWN_DIRECTIONS: readonly [
|
|
1345
1480
|
"down",
|
|
1346
1481
|
"up",
|
package/esm/public-api.mjs
CHANGED
|
@@ -2,171 +2,181 @@ import { componentsReady as r } from "@porsche-design-system/components-js";
|
|
|
2
2
|
import { default as a } from "./lib/components/AccordionWrapper.vue.mjs";
|
|
3
3
|
import { default as l } from "./lib/components/BannerWrapper.vue.mjs";
|
|
4
4
|
import { default as s } from "./lib/components/ButtonWrapper.vue.mjs";
|
|
5
|
-
import { default as
|
|
5
|
+
import { default as d } from "./lib/components/ButtonGroupWrapper.vue.mjs";
|
|
6
6
|
import { default as x } from "./lib/components/ButtonPureWrapper.vue.mjs";
|
|
7
|
-
import { default as
|
|
7
|
+
import { default as n } from "./lib/components/ButtonTileWrapper.vue.mjs";
|
|
8
8
|
import { default as T } from "./lib/components/CanvasWrapper.vue.mjs";
|
|
9
9
|
import { default as S } from "./lib/components/CarouselWrapper.vue.mjs";
|
|
10
|
-
import { default as
|
|
10
|
+
import { default as g } from "./lib/components/CheckboxWrapper.vue.mjs";
|
|
11
11
|
import { default as C } from "./lib/components/CheckboxWrapperWrapper.vue.mjs";
|
|
12
|
-
import { default as
|
|
12
|
+
import { default as D } from "./lib/components/ContentWrapperWrapper.vue.mjs";
|
|
13
13
|
import { default as L } from "./lib/components/CrestWrapper.vue.mjs";
|
|
14
14
|
import { default as B } from "./lib/components/DisplayWrapper.vue.mjs";
|
|
15
15
|
import { default as w } from "./lib/components/DividerWrapper.vue.mjs";
|
|
16
|
-
import { default as
|
|
16
|
+
import { default as H } from "./lib/components/DrilldownWrapper.vue.mjs";
|
|
17
17
|
import { default as v } from "./lib/components/DrilldownItemWrapper.vue.mjs";
|
|
18
18
|
import { default as G } from "./lib/components/DrilldownLinkWrapper.vue.mjs";
|
|
19
19
|
import { default as z } from "./lib/components/FieldsetWrapper.vue.mjs";
|
|
20
20
|
import { default as j } from "./lib/components/FieldsetWrapperWrapper.vue.mjs";
|
|
21
|
-
import { default as A } from "./lib/components/
|
|
22
|
-
import { default as K } from "./lib/components/
|
|
23
|
-
import { default as
|
|
24
|
-
import { default as V } from "./lib/components/
|
|
25
|
-
import { default as Y } from "./lib/components/
|
|
26
|
-
import { default as _ } from "./lib/components/
|
|
27
|
-
import { default as ee } from "./lib/components/
|
|
28
|
-
import { default as re } from "./lib/components/
|
|
29
|
-
import { default as ae } from "./lib/components/
|
|
30
|
-
import { default as le } from "./lib/components/
|
|
31
|
-
import { default as se } from "./lib/components/
|
|
32
|
-
import { default as
|
|
33
|
-
import { default as xe } from "./lib/components/
|
|
34
|
-
import { default as
|
|
35
|
-
import { default as Te } from "./lib/components/
|
|
36
|
-
import { default as Se } from "./lib/components/
|
|
37
|
-
import { default as
|
|
38
|
-
import { default as Ce } from "./lib/components/
|
|
39
|
-
import { default as
|
|
40
|
-
import { default as Le } from "./lib/components/
|
|
41
|
-
import { default as Be } from "./lib/components/
|
|
42
|
-
import { default as we } from "./lib/components/
|
|
43
|
-
import { default as
|
|
44
|
-
import { default as ve } from "./lib/components/
|
|
45
|
-
import { default as Ge } from "./lib/components/
|
|
46
|
-
import { default as ze } from "./lib/components/
|
|
47
|
-
import { default as je } from "./lib/components/
|
|
48
|
-
import { default as Ae } from "./lib/components/
|
|
49
|
-
import { default as Ke } from "./lib/components/
|
|
50
|
-
import { default as
|
|
51
|
-
import { default as Ve } from "./lib/components/
|
|
52
|
-
import { default as Ye } from "./lib/components/
|
|
53
|
-
import { default as _e } from "./lib/components/
|
|
54
|
-
import { default as et } from "./lib/components/
|
|
55
|
-
import { default as rt } from "./lib/components/
|
|
56
|
-
import { default as at } from "./lib/components/
|
|
57
|
-
import { default as lt } from "./lib/components/
|
|
58
|
-
import { default as st } from "./lib/components/
|
|
59
|
-
import { default as
|
|
60
|
-
import { default as xt } from "./lib/components/
|
|
61
|
-
import { default as
|
|
62
|
-
import { default as Tt } from "./lib/components/
|
|
63
|
-
import { default as St } from "./lib/components/
|
|
64
|
-
import { default as
|
|
65
|
-
import { default as Ct } from "./lib/components/
|
|
66
|
-
import { default as
|
|
67
|
-
import { default as Lt } from "./lib/components/
|
|
68
|
-
import { default as Bt } from "./lib/components/
|
|
69
|
-
import { default as wt } from "./lib/components/
|
|
70
|
-
import { default as
|
|
71
|
-
import { default as vt } from "./lib/components/
|
|
72
|
-
import { default as Gt } from "./lib/components/
|
|
73
|
-
import { default as zt } from "./lib/components/
|
|
74
|
-
import { default as jt } from "./lib/components/
|
|
75
|
-
import { default as At } from "./lib/components/
|
|
76
|
-
import { default as Kt } from "./lib/components/
|
|
77
|
-
import { default as
|
|
78
|
-
import { default as Vt } from "./lib/components/
|
|
79
|
-
import { default as Yt } from "./lib/components/
|
|
80
|
-
import { default as _t } from "./lib/components/
|
|
81
|
-
import { default as er } from "./lib/components/
|
|
82
|
-
import {
|
|
83
|
-
import { default as
|
|
84
|
-
import {
|
|
21
|
+
import { default as A } from "./lib/components/FlagWrapper.vue.mjs";
|
|
22
|
+
import { default as K } from "./lib/components/FlexWrapper.vue.mjs";
|
|
23
|
+
import { default as J } from "./lib/components/FlexItemWrapper.vue.mjs";
|
|
24
|
+
import { default as V } from "./lib/components/FlyoutWrapper.vue.mjs";
|
|
25
|
+
import { default as Y } from "./lib/components/GridWrapper.vue.mjs";
|
|
26
|
+
import { default as _ } from "./lib/components/GridItemWrapper.vue.mjs";
|
|
27
|
+
import { default as ee } from "./lib/components/HeadingWrapper.vue.mjs";
|
|
28
|
+
import { default as re } from "./lib/components/HeadlineWrapper.vue.mjs";
|
|
29
|
+
import { default as ae } from "./lib/components/IconWrapper.vue.mjs";
|
|
30
|
+
import { default as le } from "./lib/components/InlineNotificationWrapper.vue.mjs";
|
|
31
|
+
import { default as se } from "./lib/components/InputDateWrapper.vue.mjs";
|
|
32
|
+
import { default as de } from "./lib/components/InputEmailWrapper.vue.mjs";
|
|
33
|
+
import { default as xe } from "./lib/components/InputNumberWrapper.vue.mjs";
|
|
34
|
+
import { default as ne } from "./lib/components/InputPasswordWrapper.vue.mjs";
|
|
35
|
+
import { default as Te } from "./lib/components/InputSearchWrapper.vue.mjs";
|
|
36
|
+
import { default as Se } from "./lib/components/InputTelWrapper.vue.mjs";
|
|
37
|
+
import { default as ge } from "./lib/components/InputTextWrapper.vue.mjs";
|
|
38
|
+
import { default as Ce } from "./lib/components/InputTimeWrapper.vue.mjs";
|
|
39
|
+
import { default as De } from "./lib/components/InputUrlWrapper.vue.mjs";
|
|
40
|
+
import { default as Le } from "./lib/components/LinkWrapper.vue.mjs";
|
|
41
|
+
import { default as Be } from "./lib/components/LinkPureWrapper.vue.mjs";
|
|
42
|
+
import { default as we } from "./lib/components/LinkSocialWrapper.vue.mjs";
|
|
43
|
+
import { default as He } from "./lib/components/LinkTileWrapper.vue.mjs";
|
|
44
|
+
import { default as ve } from "./lib/components/LinkTileModelSignatureWrapper.vue.mjs";
|
|
45
|
+
import { default as Ge } from "./lib/components/LinkTileProductWrapper.vue.mjs";
|
|
46
|
+
import { default as ze } from "./lib/components/MarqueWrapper.vue.mjs";
|
|
47
|
+
import { default as je } from "./lib/components/ModalWrapper.vue.mjs";
|
|
48
|
+
import { default as Ae } from "./lib/components/ModelSignatureWrapper.vue.mjs";
|
|
49
|
+
import { default as Ke } from "./lib/components/MultiSelectWrapper.vue.mjs";
|
|
50
|
+
import { default as Je } from "./lib/components/MultiSelectOptionWrapper.vue.mjs";
|
|
51
|
+
import { default as Ve } from "./lib/components/OptgroupWrapper.vue.mjs";
|
|
52
|
+
import { default as Ye } from "./lib/components/PaginationWrapper.vue.mjs";
|
|
53
|
+
import { default as _e } from "./lib/components/PinCodeWrapper.vue.mjs";
|
|
54
|
+
import { default as et } from "./lib/components/PopoverWrapper.vue.mjs";
|
|
55
|
+
import { default as rt } from "./lib/components/RadioButtonWrapperWrapper.vue.mjs";
|
|
56
|
+
import { default as at } from "./lib/components/ScrollerWrapper.vue.mjs";
|
|
57
|
+
import { default as lt } from "./lib/components/SegmentedControlWrapper.vue.mjs";
|
|
58
|
+
import { default as st } from "./lib/components/SegmentedControlItemWrapper.vue.mjs";
|
|
59
|
+
import { default as dt } from "./lib/components/SelectWrapper.vue.mjs";
|
|
60
|
+
import { default as xt } from "./lib/components/SelectOptionWrapper.vue.mjs";
|
|
61
|
+
import { default as nt } from "./lib/components/SelectWrapperWrapper.vue.mjs";
|
|
62
|
+
import { default as Tt } from "./lib/components/SheetWrapper.vue.mjs";
|
|
63
|
+
import { default as St } from "./lib/components/SpinnerWrapper.vue.mjs";
|
|
64
|
+
import { default as gt } from "./lib/components/StepperHorizontalWrapper.vue.mjs";
|
|
65
|
+
import { default as Ct } from "./lib/components/StepperHorizontalItemWrapper.vue.mjs";
|
|
66
|
+
import { default as Dt } from "./lib/components/SwitchWrapper.vue.mjs";
|
|
67
|
+
import { default as Lt } from "./lib/components/TableWrapper.vue.mjs";
|
|
68
|
+
import { default as Bt } from "./lib/components/TableBodyWrapper.vue.mjs";
|
|
69
|
+
import { default as wt } from "./lib/components/TableCellWrapper.vue.mjs";
|
|
70
|
+
import { default as Ht } from "./lib/components/TableHeadWrapper.vue.mjs";
|
|
71
|
+
import { default as vt } from "./lib/components/TableHeadCellWrapper.vue.mjs";
|
|
72
|
+
import { default as Gt } from "./lib/components/TableHeadRowWrapper.vue.mjs";
|
|
73
|
+
import { default as zt } from "./lib/components/TableRowWrapper.vue.mjs";
|
|
74
|
+
import { default as jt } from "./lib/components/TabsWrapper.vue.mjs";
|
|
75
|
+
import { default as At } from "./lib/components/TabsBarWrapper.vue.mjs";
|
|
76
|
+
import { default as Kt } from "./lib/components/TabsItemWrapper.vue.mjs";
|
|
77
|
+
import { default as Jt } from "./lib/components/TagWrapper.vue.mjs";
|
|
78
|
+
import { default as Vt } from "./lib/components/TagDismissibleWrapper.vue.mjs";
|
|
79
|
+
import { default as Yt } from "./lib/components/TextWrapper.vue.mjs";
|
|
80
|
+
import { default as _t } from "./lib/components/TextFieldWrapperWrapper.vue.mjs";
|
|
81
|
+
import { default as er } from "./lib/components/TextListWrapper.vue.mjs";
|
|
82
|
+
import { default as rr } from "./lib/components/TextListItemWrapper.vue.mjs";
|
|
83
|
+
import { default as ar } from "./lib/components/TextareaWrapper.vue.mjs";
|
|
84
|
+
import { default as lr } from "./lib/components/TextareaWrapperWrapper.vue.mjs";
|
|
85
|
+
import { default as sr } from "./lib/components/ToastWrapper.vue.mjs";
|
|
86
|
+
import { default as dr } from "./lib/components/WordmarkWrapper.vue.mjs";
|
|
87
|
+
import { themeInjectionKey as xr, useToastManager as Pr } from "./utils.mjs";
|
|
88
|
+
import { default as ir } from "./PorscheDesignSystemProvider.vue.mjs";
|
|
89
|
+
import { createPorscheDesignSystem as cr, usePorscheDesignSystemPlugin as Sr } from "./plugin.mjs";
|
|
85
90
|
export {
|
|
86
91
|
a as PAccordion,
|
|
87
92
|
l as PBanner,
|
|
88
93
|
s as PButton,
|
|
89
|
-
|
|
94
|
+
d as PButtonGroup,
|
|
90
95
|
x as PButtonPure,
|
|
91
|
-
|
|
96
|
+
n as PButtonTile,
|
|
92
97
|
T as PCanvas,
|
|
93
98
|
S as PCarousel,
|
|
94
|
-
|
|
99
|
+
g as PCheckbox,
|
|
95
100
|
C as PCheckboxWrapper,
|
|
96
|
-
|
|
101
|
+
D as PContentWrapper,
|
|
97
102
|
L as PCrest,
|
|
98
103
|
B as PDisplay,
|
|
99
104
|
w as PDivider,
|
|
100
|
-
|
|
105
|
+
H as PDrilldown,
|
|
101
106
|
v as PDrilldownItem,
|
|
102
107
|
G as PDrilldownLink,
|
|
103
108
|
z as PFieldset,
|
|
104
109
|
j as PFieldsetWrapper,
|
|
105
|
-
A as
|
|
106
|
-
K as
|
|
107
|
-
|
|
108
|
-
V as
|
|
109
|
-
Y as
|
|
110
|
-
_ as
|
|
111
|
-
ee as
|
|
112
|
-
re as
|
|
113
|
-
ae as
|
|
114
|
-
le as
|
|
115
|
-
se as
|
|
116
|
-
|
|
117
|
-
xe as
|
|
118
|
-
|
|
119
|
-
Te as
|
|
120
|
-
Se as
|
|
121
|
-
|
|
122
|
-
Ce as
|
|
123
|
-
|
|
124
|
-
Le as
|
|
125
|
-
Be as
|
|
126
|
-
we as
|
|
127
|
-
|
|
128
|
-
ve as
|
|
129
|
-
Ge as
|
|
130
|
-
ze as
|
|
131
|
-
je as
|
|
132
|
-
Ae as
|
|
133
|
-
Ke as
|
|
134
|
-
|
|
135
|
-
Ve as
|
|
136
|
-
Ye as
|
|
137
|
-
_e as
|
|
138
|
-
et as
|
|
139
|
-
rt as
|
|
140
|
-
at as
|
|
141
|
-
lt as
|
|
142
|
-
st as
|
|
143
|
-
|
|
144
|
-
xt as
|
|
145
|
-
|
|
146
|
-
Tt as
|
|
147
|
-
St as
|
|
148
|
-
|
|
149
|
-
Ct as
|
|
150
|
-
|
|
151
|
-
Lt as
|
|
152
|
-
Bt as
|
|
153
|
-
wt as
|
|
154
|
-
|
|
155
|
-
vt as
|
|
156
|
-
Gt as
|
|
157
|
-
zt as
|
|
158
|
-
jt as
|
|
159
|
-
At as
|
|
160
|
-
Kt as
|
|
161
|
-
|
|
162
|
-
Vt as
|
|
163
|
-
Yt as
|
|
164
|
-
_t as
|
|
165
|
-
er as
|
|
166
|
-
|
|
110
|
+
A as PFlag,
|
|
111
|
+
K as PFlex,
|
|
112
|
+
J as PFlexItem,
|
|
113
|
+
V as PFlyout,
|
|
114
|
+
Y as PGrid,
|
|
115
|
+
_ as PGridItem,
|
|
116
|
+
ee as PHeading,
|
|
117
|
+
re as PHeadline,
|
|
118
|
+
ae as PIcon,
|
|
119
|
+
le as PInlineNotification,
|
|
120
|
+
se as PInputDate,
|
|
121
|
+
de as PInputEmail,
|
|
122
|
+
xe as PInputNumber,
|
|
123
|
+
ne as PInputPassword,
|
|
124
|
+
Te as PInputSearch,
|
|
125
|
+
Se as PInputTel,
|
|
126
|
+
ge as PInputText,
|
|
127
|
+
Ce as PInputTime,
|
|
128
|
+
De as PInputUrl,
|
|
129
|
+
Le as PLink,
|
|
130
|
+
Be as PLinkPure,
|
|
131
|
+
we as PLinkSocial,
|
|
132
|
+
He as PLinkTile,
|
|
133
|
+
ve as PLinkTileModelSignature,
|
|
134
|
+
Ge as PLinkTileProduct,
|
|
135
|
+
ze as PMarque,
|
|
136
|
+
je as PModal,
|
|
137
|
+
Ae as PModelSignature,
|
|
138
|
+
Ke as PMultiSelect,
|
|
139
|
+
Je as PMultiSelectOption,
|
|
140
|
+
Ve as POptgroup,
|
|
141
|
+
Ye as PPagination,
|
|
142
|
+
_e as PPinCode,
|
|
143
|
+
et as PPopover,
|
|
144
|
+
rt as PRadioButtonWrapper,
|
|
145
|
+
at as PScroller,
|
|
146
|
+
lt as PSegmentedControl,
|
|
147
|
+
st as PSegmentedControlItem,
|
|
148
|
+
dt as PSelect,
|
|
149
|
+
xt as PSelectOption,
|
|
150
|
+
nt as PSelectWrapper,
|
|
151
|
+
Tt as PSheet,
|
|
152
|
+
St as PSpinner,
|
|
153
|
+
gt as PStepperHorizontal,
|
|
154
|
+
Ct as PStepperHorizontalItem,
|
|
155
|
+
Dt as PSwitch,
|
|
156
|
+
Lt as PTable,
|
|
157
|
+
Bt as PTableBody,
|
|
158
|
+
wt as PTableCell,
|
|
159
|
+
Ht as PTableHead,
|
|
160
|
+
vt as PTableHeadCell,
|
|
161
|
+
Gt as PTableHeadRow,
|
|
162
|
+
zt as PTableRow,
|
|
163
|
+
jt as PTabs,
|
|
164
|
+
At as PTabsBar,
|
|
165
|
+
Kt as PTabsItem,
|
|
166
|
+
Jt as PTag,
|
|
167
|
+
Vt as PTagDismissible,
|
|
168
|
+
Yt as PText,
|
|
169
|
+
_t as PTextFieldWrapper,
|
|
170
|
+
er as PTextList,
|
|
171
|
+
rr as PTextListItem,
|
|
172
|
+
ar as PTextarea,
|
|
173
|
+
lr as PTextareaWrapper,
|
|
174
|
+
sr as PToast,
|
|
175
|
+
dr as PWordmark,
|
|
176
|
+
ir as PorscheDesignSystemProvider,
|
|
167
177
|
r as componentsReady,
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
178
|
+
cr as createPorscheDesignSystem,
|
|
179
|
+
xr as themeInjectionKey,
|
|
180
|
+
Sr as usePorscheDesignSystemPlugin,
|
|
181
|
+
Pr as useToastManager
|
|
172
182
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@porsche-design-system/components-vue",
|
|
3
|
-
"version": "3.29.0-rc.
|
|
3
|
+
"version": "3.29.0-rc.4",
|
|
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.29.0-rc.
|
|
20
|
+
"@porsche-design-system/components-js": "3.29.0-rc.4"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"ag-grid-enterprise": ">= 33.0.0 <35.0.0",
|