@porsche-design-system/components-vue 3.29.0-rc.3 → 3.29.0-rc.5
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 +37 -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/PopoverWrapper.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/CheckboxWrapperWrapper.vue.d.ts +1 -0
- package/esm/lib/components/FieldsetWrapper.vue.d.ts +5 -1
- package/esm/lib/components/FieldsetWrapper.vue.mjs +5 -4
- package/esm/lib/components/FieldsetWrapperWrapper.vue.d.ts +1 -1
- 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/PopoverWrapper.vue.d.ts +1 -12
- package/esm/lib/components/PopoverWrapper.vue.mjs +12 -16
- package/esm/lib/components/ScrollerWrapper.vue.d.ts +2 -3
- package/esm/lib/components/ScrollerWrapper.vue.mjs +10 -10
- package/esm/lib/components/SelectWrapperWrapper.vue.d.ts +1 -0
- 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/TextFieldWrapperWrapper.vue.d.ts +1 -0
- package/esm/lib/components/TextareaWrapper.vue.d.ts +1 -1
- package/esm/lib/components/TextareaWrapperWrapper.vue.d.ts +1 -0
- 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 +6 -2
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.5",
|
|
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,11 +17,12 @@
|
|
|
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.5"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"ag-grid-enterprise": ">= 33.0.0 <35.0.0",
|
|
24
24
|
"ag-grid-vue3": ">= 33.0.0 <35.0.0",
|
|
25
|
+
"tailwindcss": ">= 4.0.0 <5.0.0",
|
|
25
26
|
"vue": ">=3.0.0 <4.0.0"
|
|
26
27
|
},
|
|
27
28
|
"peerDependenciesMeta": {
|
|
@@ -30,6 +31,9 @@
|
|
|
30
31
|
},
|
|
31
32
|
"ag-grid-vue3": {
|
|
32
33
|
"optional": true
|
|
34
|
+
},
|
|
35
|
+
"tailwindcss": {
|
|
36
|
+
"optional": true
|
|
33
37
|
}
|
|
34
38
|
},
|
|
35
39
|
"main": "cjs/public-api.cjs",
|