@porsche-design-system/components-vue 3.19.0-rc.0 → 3.19.0-rc.2
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 +21 -0
- package/cjs/lib/components/CanvasWrapper.vue.cjs +1 -1
- package/cjs/lib/components/CarouselWrapper.vue.cjs +1 -1
- package/cjs/lib/components/CheckboxWrapper.vue.cjs +1 -0
- package/cjs/lib/components/CheckboxWrapper.vue2.cjs +1 -0
- package/cjs/lib/components/TextareaWrapper.vue.cjs +1 -1
- package/cjs/public-api.cjs +1 -1
- package/esm/lib/components/CanvasWrapper.vue.d.ts +22 -10
- package/esm/lib/components/CanvasWrapper.vue.mjs +15 -15
- package/esm/lib/components/CarouselWrapper.vue.d.ts +7 -0
- package/esm/lib/components/CarouselWrapper.vue.mjs +9 -8
- package/esm/lib/components/CheckboxWrapper.vue.d.ts +125 -0
- package/esm/lib/components/CheckboxWrapper.vue.mjs +40 -0
- package/esm/lib/components/CheckboxWrapper.vue2.mjs +4 -0
- package/esm/lib/components/TextareaWrapper.vue.d.ts +10 -1
- package/esm/lib/components/TextareaWrapper.vue.mjs +16 -11
- package/esm/lib/components/index.d.ts +1 -0
- package/esm/lib/types.d.ts +9 -7
- package/esm/public-api.mjs +137 -135
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -14,12 +14,33 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0),
|
|
|
14
14
|
|
|
15
15
|
### [Unreleased]
|
|
16
16
|
|
|
17
|
+
### [3.19.0-rc.2] - 2024-10-01
|
|
18
|
+
|
|
19
|
+
#### Added
|
|
20
|
+
|
|
21
|
+
- `Carousel`: introduce `trimSpace` prop
|
|
22
|
+
([#3496](https://github.com/porsche-design-system/porsche-design-system/pull/3496))
|
|
23
|
+
- `Checkbox`: ([#3498](https://github.com/porsche-design-system/porsche-design-system/pull/3498))
|
|
24
|
+
|
|
25
|
+
#### Fixed
|
|
26
|
+
|
|
27
|
+
- `Checkbox Wrapper`, `Radio Button Wrapper`: rendering of `checked` state in Blink based Browsers when component is
|
|
28
|
+
rendered in high contrast mode ([#3488](https://github.com/porsche-design-system/porsche-design-system/pull/3488))
|
|
29
|
+
|
|
30
|
+
### [3.19.0-rc.1] - 2024-09-06
|
|
31
|
+
|
|
32
|
+
#### Changed
|
|
33
|
+
|
|
34
|
+
- `Canvas`: Improve UX ([#3494](https://github.com/porsche-design-system/porsche-design-system/pull/3494))
|
|
35
|
+
|
|
17
36
|
### [3.19.0-rc.0] - 2024-09-03
|
|
18
37
|
|
|
19
38
|
#### Added
|
|
20
39
|
|
|
21
40
|
- `componentsReady()`: Introduce optional `readyState` parameter
|
|
22
41
|
([#3460](https://github.com/porsche-design-system/porsche-design-system/pull/3460))
|
|
42
|
+
- `Carousel`: introduce `focusOnCenterSlide` & `gradientColor` props
|
|
43
|
+
([#3488](https://github.com/porsche-design-system/porsche-design-system/pull/3488))
|
|
23
44
|
|
|
24
45
|
#### Changed
|
|
25
46
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";const e=require("vue"),
|
|
1
|
+
"use strict";const e=require("vue"),t=require("../../utils.cjs"),u=e.defineComponent({__name:"CanvasWrapper",props:{sidebarEndIcon:{default:"configurate"},sidebarEndOpen:{type:Boolean,default:!1},sidebarStartIcon:{default:"menu-lines"},sidebarStartOpen:{type:Boolean,default:!1},theme:{}},setup(c){const p=t.usePrefix("p-canvas"),n=c,o=e.ref(),r=e.inject(t.themeInjectionKey),a=()=>t.syncProperties(o,{...n,theme:n.theme||r.value});return e.onMounted(a),e.onUpdated(a),e.watch(r,s=>{t.syncProperties(o,{theme:n.theme||s})}),(s,d)=>(e.openBlock(),e.createBlock(e.resolveDynamicComponent(e.unref(p)),{ref_key:"pdsComponentRef",ref:o},{default:e.withCtx(()=>[e.renderSlot(s.$slots,"default")]),_:3},512))}});module.exports=u;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";const e=require("vue"),t=require("../../utils.cjs"),
|
|
1
|
+
"use strict";const e=require("vue"),t=require("../../utils.cjs"),p=e.defineComponent({__name:"CarouselWrapper",props:{activeSlideIndex:{default:0},alignHeader:{default:"start"},aria:{},description:{},disablePagination:{},focusOnCenterSlide:{type:Boolean,default:!1},gradientColor:{default:"none"},heading:{},headingSize:{default:"x-large"},intl:{},pagination:{default:!0},rewind:{type:Boolean,default:!0},skipLinkTarget:{},slidesPerPage:{default:1},theme:{},trimSpace:{type:Boolean,default:!0},width:{default:"basic"},wrapContent:{type:Boolean}},emits:["carouselChange","update"],setup(l,{emit:d}){const u=t.usePrefix("p-carousel"),a=l,n=e.ref(),r=d,s=e.inject(t.themeInjectionKey),i=()=>t.syncProperties(n,{...a,theme:a.theme||s.value});return e.onMounted(()=>{i(),t.addEventListenerToElementRef(n,"carouselChange",r),t.addEventListenerToElementRef(n,"update",r)}),e.onUpdated(i),e.watch(s,o=>{t.syncProperties(n,{theme:a.theme||o})}),(o,c)=>(e.openBlock(),e.createBlock(e.resolveDynamicComponent(e.unref(u)),{ref_key:"pdsComponentRef",ref:n},{default:e.withCtx(()=>[e.renderSlot(o.$slots,"default")]),_:3},512))}});module.exports=p;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";const e=require("vue"),t=require("../../utils.cjs"),c=e.defineComponent({__name:"CheckboxWrapper",props:{checked:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},form:{},hideLabel:{default:!1},indeterminate:{type:Boolean,default:!1},label:{default:""},loading:{type:Boolean,default:!1},message:{default:""},name:{default:""},required:{type:Boolean,default:!1},state:{default:"none"},theme:{},value:{default:"on"}},emits:["blur","update"],setup(d,{emit:f}){const u=t.usePrefix("p-checkbox"),o=d,n=e.ref(),s=f,l=e.inject(t.themeInjectionKey),r=()=>t.syncProperties(n,{...o,theme:o.theme||l.value});return e.onMounted(()=>{r(),t.addEventListenerToElementRef(n,"blur",s),t.addEventListenerToElementRef(n,"update",s)}),e.onUpdated(r),e.watch(l,a=>{t.syncProperties(n,{theme:o.theme||a})}),(a,p)=>(e.openBlock(),e.createBlock(e.resolveDynamicComponent(e.unref(u)),{ref_key:"pdsComponentRef",ref:n},{default:e.withCtx(()=>[e.renderSlot(a.$slots,"default")]),_:3},512))}});module.exports=c;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";const e=require("./CheckboxWrapper.vue.cjs");module.exports=e;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";const e=require("vue"),t=require("../../utils.cjs"),p=e.defineComponent({__name:"TextareaWrapper",props:{autoComplete:{default:""},description:{default:""},disabled:{type:Boolean,default:!1},form:{},hideLabel:{default:!1},label:{default:""},maxLength:{},message:{default:""},minLength:{},name:{},placeholder:{default:""},readOnly:{type:Boolean,default:!1},required:{type:Boolean,default:!1},resize:{default:"vertical"},rows:{default:7},showCounter:{type:Boolean,default:!0},spellCheck:{type:Boolean},state:{default:"none"},theme:{},value:{default:""},wrap:{default:"soft"}},emits:["blur","change","input"],setup(u,{emit:d}){const f=t.usePrefix("p-textarea"),a=u,n=e.ref(),o=d,
|
|
1
|
+
"use strict";const e=require("vue"),t=require("../../utils.cjs"),p=e.defineComponent({__name:"TextareaWrapper",props:{autoComplete:{default:""},description:{default:""},disabled:{type:Boolean,default:!1},form:{},hideLabel:{default:!1},label:{default:""},maxLength:{},message:{default:""},minLength:{},name:{},placeholder:{default:""},readOnly:{type:Boolean,default:!1},required:{type:Boolean,default:!1},resize:{default:"vertical"},rows:{default:7},showCounter:{type:Boolean,default:!0},spellCheck:{type:Boolean},state:{default:"none"},theme:{},value:{default:""},wrap:{default:"soft"}},emits:["blur","change","input"],setup(u,{emit:d}){const f=t.usePrefix("p-textarea"),a=u,n=e.ref(),o=d,r=e.inject(t.themeInjectionKey),s=()=>t.syncProperties(n,{...a,theme:a.theme||r.value});return e.onMounted(()=>{s(),t.addEventListenerToElementRef(n,"blur",o),t.addEventListenerToElementRef(n,"change",o),t.addEventListenerToElementRef(n,"input",o)}),e.onUpdated(s),e.watch(r,l=>{t.syncProperties(n,{theme:a.theme||l})}),(l,c)=>(e.openBlock(),e.createBlock(e.resolveDynamicComponent(e.unref(f)),{ref_key:"pdsComponentRef",ref:n},{default:e.withCtx(()=>[e.renderSlot(l.$slots,"default")]),_:3},512))}});module.exports=p;
|
package/cjs/public-api.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("@porsche-design-system/components-js"),t=require("./lib/components/AccordionWrapper.vue.cjs"),_=require("./lib/components/BannerWrapper.vue.cjs"),u=require("./lib/components/ButtonWrapper.vue.cjs"),p=require("./lib/components/ButtonGroupWrapper.vue.cjs"),s=require("./lib/components/ButtonPureWrapper.vue.cjs"),i=require("./lib/components/ButtonTileWrapper.vue.cjs"),a=require("./lib/components/CanvasWrapper.vue.cjs"),n=require("./lib/components/CarouselWrapper.vue.cjs"),c=require("./lib/components/
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("@porsche-design-system/components-js"),t=require("./lib/components/AccordionWrapper.vue.cjs"),_=require("./lib/components/BannerWrapper.vue.cjs"),u=require("./lib/components/ButtonWrapper.vue.cjs"),p=require("./lib/components/ButtonGroupWrapper.vue.cjs"),s=require("./lib/components/ButtonPureWrapper.vue.cjs"),i=require("./lib/components/ButtonTileWrapper.vue.cjs"),a=require("./lib/components/CanvasWrapper.vue.cjs"),n=require("./lib/components/CarouselWrapper.vue.cjs"),c=require("./lib/components/CheckboxWrapper.vue.cjs"),o=require("./lib/components/CheckboxWrapperWrapper.vue.cjs"),l=require("./lib/components/ContentWrapperWrapper.vue.cjs"),v=require("./lib/components/CrestWrapper.vue.cjs"),g=require("./lib/components/DisplayWrapper.vue.cjs"),P=require("./lib/components/DividerWrapper.vue.cjs"),y=require("./lib/components/FieldsetWrapper.vue.cjs"),W=require("./lib/components/FieldsetWrapperWrapper.vue.cjs"),q=require("./lib/components/FlexWrapper.vue.cjs"),d=require("./lib/components/FlexItemWrapper.vue.cjs"),T=require("./lib/components/FlyoutWrapper.vue.cjs"),S=require("./lib/components/FlyoutMultilevelWrapper.vue.cjs"),m=require("./lib/components/FlyoutMultilevelItemWrapper.vue.cjs"),b=require("./lib/components/GridWrapper.vue.cjs"),C=require("./lib/components/GridItemWrapper.vue.cjs"),x=require("./lib/components/HeadingWrapper.vue.cjs"),M=require("./lib/components/HeadlineWrapper.vue.cjs"),k=require("./lib/components/IconWrapper.vue.cjs"),I=require("./lib/components/InlineNotificationWrapper.vue.cjs"),B=require("./lib/components/LinkWrapper.vue.cjs"),F=require("./lib/components/LinkPureWrapper.vue.cjs"),L=require("./lib/components/LinkSocialWrapper.vue.cjs"),H=require("./lib/components/LinkTileWrapper.vue.cjs"),h=require("./lib/components/LinkTileModelSignatureWrapper.vue.cjs"),D=require("./lib/components/LinkTileProductWrapper.vue.cjs"),O=require("./lib/components/MarqueWrapper.vue.cjs"),R=require("./lib/components/ModalWrapper.vue.cjs"),w=require("./lib/components/ModelSignatureWrapper.vue.cjs"),G=require("./lib/components/MultiSelectWrapper.vue.cjs"),f=require("./lib/components/MultiSelectOptionWrapper.vue.cjs"),z=require("./lib/components/OptgroupWrapper.vue.cjs"),j=require("./lib/components/PaginationWrapper.vue.cjs"),A=require("./lib/components/PinCodeWrapper.vue.cjs"),N=require("./lib/components/PopoverWrapper.vue.cjs"),J=require("./lib/components/RadioButtonWrapperWrapper.vue.cjs"),E=require("./lib/components/ScrollerWrapper.vue.cjs"),K=require("./lib/components/SegmentedControlWrapper.vue.cjs"),Q=require("./lib/components/SegmentedControlItemWrapper.vue.cjs"),U=require("./lib/components/SelectWrapper.vue.cjs"),V=require("./lib/components/SelectOptionWrapper.vue.cjs"),X=require("./lib/components/SelectWrapperWrapper.vue.cjs"),Y=require("./lib/components/SpinnerWrapper.vue.cjs"),Z=require("./lib/components/StepperHorizontalWrapper.vue.cjs"),$=require("./lib/components/StepperHorizontalItemWrapper.vue.cjs"),ee=require("./lib/components/SwitchWrapper.vue.cjs"),re=require("./lib/components/TableWrapper.vue.cjs"),te=require("./lib/components/TableBodyWrapper.vue.cjs"),_e=require("./lib/components/TableCellWrapper.vue.cjs"),ue=require("./lib/components/TableHeadWrapper.vue.cjs"),pe=require("./lib/components/TableHeadCellWrapper.vue.cjs"),se=require("./lib/components/TableHeadRowWrapper.vue.cjs"),ie=require("./lib/components/TableRowWrapper.vue.cjs"),ae=require("./lib/components/TabsWrapper.vue.cjs"),ne=require("./lib/components/TabsBarWrapper.vue.cjs"),ce=require("./lib/components/TabsItemWrapper.vue.cjs"),oe=require("./lib/components/TagWrapper.vue.cjs"),le=require("./lib/components/TagDismissibleWrapper.vue.cjs"),ve=require("./lib/components/TextWrapper.vue.cjs"),ge=require("./lib/components/TextFieldWrapperWrapper.vue.cjs"),Pe=require("./lib/components/TextListWrapper.vue.cjs"),ye=require("./lib/components/TextListItemWrapper.vue.cjs"),We=require("./lib/components/TextareaWrapper.vue.cjs"),qe=require("./lib/components/TextareaWrapperWrapper.vue.cjs"),de=require("./lib/components/ToastWrapper.vue.cjs"),Te=require("./lib/components/WordmarkWrapper.vue.cjs"),Se=require("./utils.cjs"),me=require("./PorscheDesignSystemProvider.vue.cjs"),e=require("./plugin.cjs");Object.defineProperty(exports,"componentsReady",{enumerable:!0,get:()=>r.componentsReady});exports.PAccordion=t;exports.PBanner=_;exports.PButton=u;exports.PButtonGroup=p;exports.PButtonPure=s;exports.PButtonTile=i;exports.PCanvas=a;exports.PCarousel=n;exports.PCheckbox=c;exports.PCheckboxWrapper=o;exports.PContentWrapper=l;exports.PCrest=v;exports.PDisplay=g;exports.PDivider=P;exports.PFieldset=y;exports.PFieldsetWrapper=W;exports.PFlex=q;exports.PFlexItem=d;exports.PFlyout=T;exports.PFlyoutMultilevel=S;exports.PFlyoutMultilevelItem=m;exports.PGrid=b;exports.PGridItem=C;exports.PHeading=x;exports.PHeadline=M;exports.PIcon=k;exports.PInlineNotification=I;exports.PLink=B;exports.PLinkPure=F;exports.PLinkSocial=L;exports.PLinkTile=H;exports.PLinkTileModelSignature=h;exports.PLinkTileProduct=D;exports.PMarque=O;exports.PModal=R;exports.PModelSignature=w;exports.PMultiSelect=G;exports.PMultiSelectOption=f;exports.POptgroup=z;exports.PPagination=j;exports.PPinCode=A;exports.PPopover=N;exports.PRadioButtonWrapper=J;exports.PScroller=E;exports.PSegmentedControl=K;exports.PSegmentedControlItem=Q;exports.PSelect=U;exports.PSelectOption=V;exports.PSelectWrapper=X;exports.PSpinner=Y;exports.PStepperHorizontal=Z;exports.PStepperHorizontalItem=$;exports.PSwitch=ee;exports.PTable=re;exports.PTableBody=te;exports.PTableCell=_e;exports.PTableHead=ue;exports.PTableHeadCell=pe;exports.PTableHeadRow=se;exports.PTableRow=ie;exports.PTabs=ae;exports.PTabsBar=ne;exports.PTabsItem=ce;exports.PTag=oe;exports.PTagDismissible=le;exports.PText=ve;exports.PTextFieldWrapper=ge;exports.PTextList=Pe;exports.PTextListItem=ye;exports.PTextarea=We;exports.PTextareaWrapper=qe;exports.PToast=de;exports.PWordmark=Te;exports.useToastManager=Se.useToastManager;exports.PorscheDesignSystemProvider=me;exports.createPorscheDesignSystem=e.createPorscheDesignSystem;exports.usePorscheDesignSystemPlugin=e.usePorscheDesignSystemPlugin;
|
|
@@ -1,32 +1,44 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { CanvasSidebarEndIcon, CanvasSidebarStartIcon, Theme } from '../types';
|
|
2
2
|
type PCanvasProps = {
|
|
3
|
+
/**
|
|
4
|
+
* The icon to toggle the Sidebar on the end side
|
|
5
|
+
*/
|
|
6
|
+
sidebarEndIcon?: CanvasSidebarEndIcon;
|
|
7
|
+
/**
|
|
8
|
+
* Open Sidebar on the end side
|
|
9
|
+
*/
|
|
3
10
|
sidebarEndOpen?: boolean;
|
|
4
11
|
/**
|
|
5
|
-
*
|
|
12
|
+
* The icon to toggle the Sidebar on the start side
|
|
6
13
|
*/
|
|
7
|
-
|
|
14
|
+
sidebarStartIcon?: CanvasSidebarStartIcon;
|
|
8
15
|
/**
|
|
9
16
|
* Open Sidebar on the start side
|
|
10
17
|
*/
|
|
11
18
|
sidebarStartOpen?: boolean;
|
|
12
19
|
/**
|
|
13
|
-
*
|
|
20
|
+
* Adapts the color depending on the theme. Has no effect when "inherit" is set as color prop.
|
|
14
21
|
*/
|
|
15
|
-
|
|
22
|
+
theme?: Theme;
|
|
16
23
|
};
|
|
17
24
|
declare function __VLS_template(): {
|
|
18
25
|
default?(_: {}): any;
|
|
19
26
|
};
|
|
20
27
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<PCanvasProps>, {
|
|
28
|
+
sidebarEndIcon: string;
|
|
29
|
+
sidebarEndOpen: boolean;
|
|
30
|
+
sidebarStartIcon: string;
|
|
31
|
+
sidebarStartOpen: boolean;
|
|
32
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<PCanvasProps>, {
|
|
33
|
+
sidebarEndIcon: string;
|
|
21
34
|
sidebarEndOpen: boolean;
|
|
22
|
-
|
|
35
|
+
sidebarStartIcon: string;
|
|
23
36
|
sidebarStartOpen: boolean;
|
|
24
|
-
|
|
25
|
-
|
|
37
|
+
}>>>, {
|
|
38
|
+
sidebarEndIcon: CanvasSidebarEndIcon;
|
|
26
39
|
sidebarEndOpen: boolean;
|
|
27
|
-
|
|
40
|
+
sidebarStartIcon: CanvasSidebarStartIcon;
|
|
28
41
|
sidebarStartOpen: boolean;
|
|
29
|
-
sidebarStartWidth: CanvasSidebarStartWidth;
|
|
30
42
|
}, {}>;
|
|
31
43
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
32
44
|
export default _default;
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { usePrefix as
|
|
3
|
-
const
|
|
1
|
+
import { defineComponent as c, ref as f, inject as d, onMounted as m, onUpdated as l, watch as i, openBlock as u, createBlock as h, resolveDynamicComponent as y, unref as C, withCtx as _, renderSlot as b } from "vue";
|
|
2
|
+
import { usePrefix as v, themeInjectionKey as B, syncProperties as r } from "../../utils.mjs";
|
|
3
|
+
const I = /* @__PURE__ */ c({
|
|
4
4
|
__name: "CanvasWrapper",
|
|
5
5
|
props: {
|
|
6
|
+
sidebarEndIcon: { default: "configurate" },
|
|
6
7
|
sidebarEndOpen: { type: Boolean, default: !1 },
|
|
7
|
-
|
|
8
|
+
sidebarStartIcon: { default: "menu-lines" },
|
|
8
9
|
sidebarStartOpen: { type: Boolean, default: !1 },
|
|
9
|
-
|
|
10
|
+
theme: {}
|
|
10
11
|
},
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
}), l(n), (i, h) => (c(), u(b(S(a)), {
|
|
12
|
+
setup(s) {
|
|
13
|
+
const p = v("p-canvas"), e = s, t = f(), o = d(B), a = () => r(t, { ...e, theme: e.theme || o.value });
|
|
14
|
+
return m(a), l(a), i(o, (n) => {
|
|
15
|
+
r(t, { theme: e.theme || n });
|
|
16
|
+
}), (n, k) => (u(), h(y(C(p)), {
|
|
17
17
|
ref_key: "pdsComponentRef",
|
|
18
|
-
ref:
|
|
18
|
+
ref: t
|
|
19
19
|
}, {
|
|
20
|
-
default:
|
|
21
|
-
|
|
20
|
+
default: _(() => [
|
|
21
|
+
b(n.$slots, "default")
|
|
22
22
|
]),
|
|
23
23
|
_: 3
|
|
24
24
|
}, 512));
|
|
25
25
|
}
|
|
26
26
|
});
|
|
27
27
|
export {
|
|
28
|
-
|
|
28
|
+
I as default
|
|
29
29
|
};
|
|
@@ -60,6 +60,10 @@ type PCarouselProps = {
|
|
|
60
60
|
* Adapts the color when used on dark background.
|
|
61
61
|
*/
|
|
62
62
|
theme?: Theme;
|
|
63
|
+
/**
|
|
64
|
+
* Determines whether to trim spaces before/after the carousel if `focusOnCenterSlide` option is true.
|
|
65
|
+
*/
|
|
66
|
+
trimSpace?: boolean;
|
|
63
67
|
/**
|
|
64
68
|
* Defines the outer spacings between the carousel and the left and right screen sides.
|
|
65
69
|
*/
|
|
@@ -82,6 +86,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
82
86
|
pagination: boolean;
|
|
83
87
|
rewind: boolean;
|
|
84
88
|
slidesPerPage: number;
|
|
89
|
+
trimSpace: boolean;
|
|
85
90
|
width: string;
|
|
86
91
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
87
92
|
carouselChange: (value: import("../types").CarouselUpdateEvent) => void;
|
|
@@ -95,6 +100,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
95
100
|
pagination: boolean;
|
|
96
101
|
rewind: boolean;
|
|
97
102
|
slidesPerPage: number;
|
|
103
|
+
trimSpace: boolean;
|
|
98
104
|
width: string;
|
|
99
105
|
}>>> & {
|
|
100
106
|
onUpdate?: ((value: import("../types").CarouselUpdateEvent) => any) | undefined;
|
|
@@ -109,6 +115,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
109
115
|
pagination: BreakpointCustomizable<boolean>;
|
|
110
116
|
rewind: boolean;
|
|
111
117
|
slidesPerPage: BreakpointCustomizable<number> | "auto";
|
|
118
|
+
trimSpace: boolean;
|
|
112
119
|
}, {}>;
|
|
113
120
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
114
121
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { defineComponent as u, ref as f, inject as c, onMounted as m, onUpdated as h, watch as g, openBlock as C, createBlock as y, resolveDynamicComponent as _, unref as w, withCtx as
|
|
2
|
-
import { usePrefix as
|
|
1
|
+
import { defineComponent as u, ref as f, inject as c, onMounted as m, onUpdated as h, watch as g, openBlock as C, createBlock as y, resolveDynamicComponent as _, unref as w, withCtx as B, renderSlot as P } from "vue";
|
|
2
|
+
import { usePrefix as k, themeInjectionKey as x, addEventListenerToElementRef as i, syncProperties as l } from "../../utils.mjs";
|
|
3
3
|
const b = /* @__PURE__ */ u({
|
|
4
4
|
__name: "CarouselWrapper",
|
|
5
5
|
props: {
|
|
@@ -18,22 +18,23 @@ const b = /* @__PURE__ */ u({
|
|
|
18
18
|
skipLinkTarget: {},
|
|
19
19
|
slidesPerPage: { default: 1 },
|
|
20
20
|
theme: {},
|
|
21
|
+
trimSpace: { type: Boolean, default: !0 },
|
|
21
22
|
width: { default: "basic" },
|
|
22
23
|
wrapContent: { type: Boolean }
|
|
23
24
|
},
|
|
24
25
|
emits: ["carouselChange", "update"],
|
|
25
|
-
setup(
|
|
26
|
-
const p =
|
|
26
|
+
setup(s, { emit: d }) {
|
|
27
|
+
const p = k("p-carousel"), t = s, e = f(), a = d, o = c(x), r = () => l(e, { ...t, theme: t.theme || o.value });
|
|
27
28
|
return m(() => {
|
|
28
29
|
r(), i(e, "carouselChange", a), i(e, "update", a);
|
|
29
30
|
}), h(r), g(o, (n) => {
|
|
30
|
-
|
|
31
|
-
}), (n,
|
|
31
|
+
l(e, { theme: t.theme || n });
|
|
32
|
+
}), (n, S) => (C(), y(_(w(p)), {
|
|
32
33
|
ref_key: "pdsComponentRef",
|
|
33
34
|
ref: e
|
|
34
35
|
}, {
|
|
35
|
-
default:
|
|
36
|
-
|
|
36
|
+
default: B(() => [
|
|
37
|
+
P(n.$slots, "default")
|
|
37
38
|
]),
|
|
38
39
|
_: 3
|
|
39
40
|
}, 512));
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import type { BreakpointCustomizable, CheckboxUpdateEventDetail, CheckboxState, Theme } from '../types';
|
|
2
|
+
type PCheckboxProps = {
|
|
3
|
+
/**
|
|
4
|
+
* Reflects the checkbox current checked state and allows setting the initial checked state.
|
|
5
|
+
*/
|
|
6
|
+
checked?: boolean;
|
|
7
|
+
/**
|
|
8
|
+
* Marks the checkbox as disabled.
|
|
9
|
+
*/
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* The id of a form element the checkbox should be associated with.
|
|
13
|
+
*/
|
|
14
|
+
form?: string;
|
|
15
|
+
/**
|
|
16
|
+
* Show or hide label. For better accessibility it's recommended to show the label.
|
|
17
|
+
*/
|
|
18
|
+
hideLabel?: BreakpointCustomizable<boolean>;
|
|
19
|
+
/**
|
|
20
|
+
* Marks the checkbox as indeterminate.
|
|
21
|
+
*/
|
|
22
|
+
indeterminate?: boolean;
|
|
23
|
+
/**
|
|
24
|
+
* The label text.
|
|
25
|
+
*/
|
|
26
|
+
label?: string;
|
|
27
|
+
/**
|
|
28
|
+
* @experimental Disables the checkbox and shows a loading indicator.
|
|
29
|
+
*/
|
|
30
|
+
loading?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
* The message styled depending on validation state.
|
|
33
|
+
*/
|
|
34
|
+
message?: string;
|
|
35
|
+
/**
|
|
36
|
+
* The name of the checkbox.
|
|
37
|
+
*/
|
|
38
|
+
name?: string;
|
|
39
|
+
/**
|
|
40
|
+
* Marks the checkbox as required.
|
|
41
|
+
*/
|
|
42
|
+
required?: boolean;
|
|
43
|
+
/**
|
|
44
|
+
* The validation state.
|
|
45
|
+
*/
|
|
46
|
+
state?: CheckboxState;
|
|
47
|
+
/**
|
|
48
|
+
* Adapts the color depending on the theme.
|
|
49
|
+
*/
|
|
50
|
+
theme?: Theme;
|
|
51
|
+
/**
|
|
52
|
+
* The checkbox value. When a form is submitted, only a checkbox which is currently checked is included in the submission.
|
|
53
|
+
*/
|
|
54
|
+
value?: string;
|
|
55
|
+
};
|
|
56
|
+
declare function __VLS_template(): {
|
|
57
|
+
default?(_: {}): any;
|
|
58
|
+
};
|
|
59
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<PCheckboxProps>, {
|
|
60
|
+
checked: boolean;
|
|
61
|
+
disabled: boolean;
|
|
62
|
+
hideLabel: boolean;
|
|
63
|
+
indeterminate: boolean;
|
|
64
|
+
label: string;
|
|
65
|
+
loading: boolean;
|
|
66
|
+
message: string;
|
|
67
|
+
name: string;
|
|
68
|
+
required: boolean;
|
|
69
|
+
state: string;
|
|
70
|
+
value: string;
|
|
71
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
72
|
+
blur: (value: Event) => void;
|
|
73
|
+
update: (value: CheckboxUpdateEventDetail) => void;
|
|
74
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<PCheckboxProps>, {
|
|
75
|
+
checked: boolean;
|
|
76
|
+
disabled: boolean;
|
|
77
|
+
hideLabel: boolean;
|
|
78
|
+
indeterminate: boolean;
|
|
79
|
+
label: string;
|
|
80
|
+
loading: boolean;
|
|
81
|
+
message: string;
|
|
82
|
+
name: string;
|
|
83
|
+
required: boolean;
|
|
84
|
+
state: string;
|
|
85
|
+
value: string;
|
|
86
|
+
}>>> & {
|
|
87
|
+
onUpdate?: ((value: CheckboxUpdateEventDetail) => any) | undefined;
|
|
88
|
+
onBlur?: ((value: Event) => any) | undefined;
|
|
89
|
+
}, {
|
|
90
|
+
label: string;
|
|
91
|
+
state: CheckboxState;
|
|
92
|
+
required: boolean;
|
|
93
|
+
disabled: boolean;
|
|
94
|
+
hideLabel: BreakpointCustomizable<boolean>;
|
|
95
|
+
loading: boolean;
|
|
96
|
+
name: string;
|
|
97
|
+
value: string;
|
|
98
|
+
checked: boolean;
|
|
99
|
+
indeterminate: boolean;
|
|
100
|
+
message: string;
|
|
101
|
+
}, {}>;
|
|
102
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
103
|
+
export default _default;
|
|
104
|
+
type __VLS_WithDefaults<P, D> = {
|
|
105
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
106
|
+
default: D[K];
|
|
107
|
+
}> : P[K];
|
|
108
|
+
};
|
|
109
|
+
type __VLS_Prettify<T> = {
|
|
110
|
+
[K in keyof T]: T[K];
|
|
111
|
+
} & {};
|
|
112
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
113
|
+
new (): {
|
|
114
|
+
$slots: S;
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
118
|
+
type __VLS_TypePropsToOption<T> = {
|
|
119
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
120
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
121
|
+
} : {
|
|
122
|
+
type: import('vue').PropType<T[K]>;
|
|
123
|
+
required: true;
|
|
124
|
+
};
|
|
125
|
+
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { defineComponent as m, ref as u, inject as c, onMounted as i, onUpdated as h, watch as y, openBlock as b, createBlock as B, resolveDynamicComponent as C, unref as _, withCtx as k, renderSlot as x } from "vue";
|
|
2
|
+
import { usePrefix as v, themeInjectionKey as R, addEventListenerToElementRef as f, syncProperties as s } from "../../utils.mjs";
|
|
3
|
+
const j = /* @__PURE__ */ m({
|
|
4
|
+
__name: "CheckboxWrapper",
|
|
5
|
+
props: {
|
|
6
|
+
checked: { type: Boolean, default: !1 },
|
|
7
|
+
disabled: { type: Boolean, default: !1 },
|
|
8
|
+
form: {},
|
|
9
|
+
hideLabel: { default: !1 },
|
|
10
|
+
indeterminate: { type: Boolean, default: !1 },
|
|
11
|
+
label: { default: "" },
|
|
12
|
+
loading: { type: Boolean, default: !1 },
|
|
13
|
+
message: { default: "" },
|
|
14
|
+
name: { default: "" },
|
|
15
|
+
required: { type: Boolean, default: !1 },
|
|
16
|
+
state: { default: "none" },
|
|
17
|
+
theme: {},
|
|
18
|
+
value: { default: "on" }
|
|
19
|
+
},
|
|
20
|
+
emits: ["blur", "update"],
|
|
21
|
+
setup(d, { emit: r }) {
|
|
22
|
+
const p = v("p-checkbox"), t = d, e = u(), n = r, a = c(R), l = () => s(e, { ...t, theme: t.theme || a.value });
|
|
23
|
+
return i(() => {
|
|
24
|
+
l(), f(e, "blur", n), f(e, "update", n);
|
|
25
|
+
}), h(l), y(a, (o) => {
|
|
26
|
+
s(e, { theme: t.theme || o });
|
|
27
|
+
}), (o, g) => (b(), B(C(_(p)), {
|
|
28
|
+
ref_key: "pdsComponentRef",
|
|
29
|
+
ref: e
|
|
30
|
+
}, {
|
|
31
|
+
default: k(() => [
|
|
32
|
+
x(o.$slots, "default")
|
|
33
|
+
]),
|
|
34
|
+
_: 3
|
|
35
|
+
}, 512));
|
|
36
|
+
}
|
|
37
|
+
});
|
|
38
|
+
export {
|
|
39
|
+
j as default
|
|
40
|
+
};
|
|
@@ -85,7 +85,10 @@ type PTextareaProps = {
|
|
|
85
85
|
*/
|
|
86
86
|
wrap?: TextareaWrap;
|
|
87
87
|
};
|
|
88
|
-
declare
|
|
88
|
+
declare function __VLS_template(): {
|
|
89
|
+
default?(_: {}): any;
|
|
90
|
+
};
|
|
91
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<PTextareaProps>, {
|
|
89
92
|
autoComplete: string;
|
|
90
93
|
description: string;
|
|
91
94
|
disabled: boolean;
|
|
@@ -142,6 +145,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
142
145
|
readOnly: boolean;
|
|
143
146
|
rows: number;
|
|
144
147
|
}, {}>;
|
|
148
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
145
149
|
export default _default;
|
|
146
150
|
type __VLS_WithDefaults<P, D> = {
|
|
147
151
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
@@ -151,6 +155,11 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
151
155
|
type __VLS_Prettify<T> = {
|
|
152
156
|
[K in keyof T]: T[K];
|
|
153
157
|
} & {};
|
|
158
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
159
|
+
new (): {
|
|
160
|
+
$slots: S;
|
|
161
|
+
};
|
|
162
|
+
};
|
|
154
163
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
155
164
|
type __VLS_TypePropsToOption<T> = {
|
|
156
165
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { usePrefix as
|
|
3
|
-
const
|
|
1
|
+
import { defineComponent as u, ref as m, inject as c, onMounted as i, onUpdated as h, watch as y, openBlock as C, createBlock as B, resolveDynamicComponent as _, unref as b, withCtx as g, renderSlot as w } from "vue";
|
|
2
|
+
import { usePrefix as x, themeInjectionKey as v, addEventListenerToElementRef as n, syncProperties as s } from "../../utils.mjs";
|
|
3
|
+
const P = /* @__PURE__ */ u({
|
|
4
4
|
__name: "TextareaWrapper",
|
|
5
5
|
props: {
|
|
6
6
|
autoComplete: { default: "" },
|
|
@@ -26,18 +26,23 @@ const L = /* @__PURE__ */ d({
|
|
|
26
26
|
wrap: { default: "soft" }
|
|
27
27
|
},
|
|
28
28
|
emits: ["blur", "change", "input"],
|
|
29
|
-
setup(f, { emit:
|
|
30
|
-
const
|
|
29
|
+
setup(f, { emit: d }) {
|
|
30
|
+
const p = x("p-textarea"), t = f, e = m(), a = d, l = c(v), r = () => s(e, { ...t, theme: t.theme || l.value });
|
|
31
31
|
return i(() => {
|
|
32
|
-
|
|
33
|
-
}), h(
|
|
34
|
-
s(e, { theme: t.theme ||
|
|
35
|
-
}), (
|
|
32
|
+
r(), n(e, "blur", a), n(e, "change", a), n(e, "input", a);
|
|
33
|
+
}), h(r), y(l, (o) => {
|
|
34
|
+
s(e, { theme: t.theme || o });
|
|
35
|
+
}), (o, k) => (C(), B(_(b(p)), {
|
|
36
36
|
ref_key: "pdsComponentRef",
|
|
37
37
|
ref: e
|
|
38
|
-
},
|
|
38
|
+
}, {
|
|
39
|
+
default: g(() => [
|
|
40
|
+
w(o.$slots, "default")
|
|
41
|
+
]),
|
|
42
|
+
_: 3
|
|
43
|
+
}, 512));
|
|
39
44
|
}
|
|
40
45
|
});
|
|
41
46
|
export {
|
|
42
|
-
|
|
47
|
+
P as default
|
|
43
48
|
};
|
|
@@ -6,6 +6,7 @@ export { default as PButtonPure } from './ButtonPureWrapper.vue';
|
|
|
6
6
|
export { default as PButtonTile } from './ButtonTileWrapper.vue';
|
|
7
7
|
export { default as PCanvas } from './CanvasWrapper.vue';
|
|
8
8
|
export { default as PCarousel } from './CarouselWrapper.vue';
|
|
9
|
+
export { default as PCheckbox } from './CheckboxWrapper.vue';
|
|
9
10
|
export { default as PCheckboxWrapper } from './CheckboxWrapperWrapper.vue';
|
|
10
11
|
export { default as PContentWrapper } from './ContentWrapperWrapper.vue';
|
|
11
12
|
export { default as PCrest } from './CrestWrapper.vue';
|
package/esm/lib/types.d.ts
CHANGED
|
@@ -684,13 +684,8 @@ export type ButtonTileSize = TileSize;
|
|
|
684
684
|
export type ButtonTileBackground = TileBackground;
|
|
685
685
|
export type ButtonTileWeight = TileWeight;
|
|
686
686
|
export type ButtonTileAlign = TileAlign;
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
"large"
|
|
690
|
-
];
|
|
691
|
-
export type CanvasSidebarWidth = (typeof CANVAS_SIDEBAR_WIDTHS)[number];
|
|
692
|
-
export type CanvasSidebarStartWidth = CanvasSidebarWidth;
|
|
693
|
-
export type CanvasSidebarEndWidth = CanvasSidebarWidth;
|
|
687
|
+
export type CanvasSidebarStartIcon = IconName;
|
|
688
|
+
export type CanvasSidebarEndIcon = IconName;
|
|
694
689
|
declare const CAROUSEL_WIDTHS: readonly [
|
|
695
690
|
"basic",
|
|
696
691
|
"extended"
|
|
@@ -720,6 +715,13 @@ export type CarouselUpdateEvent = {
|
|
|
720
715
|
previousIndex: number;
|
|
721
716
|
};
|
|
722
717
|
export type CarouselUpdateEventDetail = CarouselUpdateEvent;
|
|
718
|
+
export type CheckboxState = FormState;
|
|
719
|
+
export type CheckboxUpdateEventDetail = {
|
|
720
|
+
name: string;
|
|
721
|
+
value?: string;
|
|
722
|
+
checked: boolean;
|
|
723
|
+
};
|
|
724
|
+
export type CheckboxBlurEventDetail = Event;
|
|
723
725
|
export type CheckboxWrapperState = FormState;
|
|
724
726
|
declare const CONTENT_WRAPPER_BACKGROUND_COLORS: readonly [
|
|
725
727
|
"transparent",
|
package/esm/public-api.mjs
CHANGED
|
@@ -7,73 +7,74 @@ import { default as x } from "./lib/components/ButtonPureWrapper.vue.mjs";
|
|
|
7
7
|
import { default as i } 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 b } from "./lib/components/
|
|
11
|
-
import { default as
|
|
12
|
-
import { default as
|
|
13
|
-
import { default as B } from "./lib/components/
|
|
14
|
-
import { default as L } from "./lib/components/
|
|
15
|
-
import { default as H } from "./lib/components/
|
|
16
|
-
import { default as
|
|
17
|
-
import { default as R } from "./lib/components/
|
|
18
|
-
import { default as G } from "./lib/components/
|
|
19
|
-
import { default as z } from "./lib/components/
|
|
20
|
-
import { default as A } from "./lib/components/
|
|
21
|
-
import { default as j } from "./lib/components/
|
|
22
|
-
import { default as J } from "./lib/components/
|
|
23
|
-
import { default as Q } from "./lib/components/
|
|
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 oe } 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 ue } from "./lib/components/
|
|
33
|
-
import { default as xe } from "./lib/components/
|
|
34
|
-
import { default as ie } from "./lib/components/
|
|
35
|
-
import { default as Te } from "./lib/components/
|
|
36
|
-
import { default as Se } from "./lib/components/
|
|
37
|
-
import { default as be } from "./lib/components/
|
|
38
|
-
import { default as
|
|
39
|
-
import { default as
|
|
40
|
-
import { default as Be } from "./lib/components/
|
|
41
|
-
import { default as Le } from "./lib/components/
|
|
42
|
-
import { default as He } from "./lib/components/
|
|
43
|
-
import { default as
|
|
44
|
-
import { default as Re } from "./lib/components/
|
|
45
|
-
import { default as Ge } from "./lib/components/
|
|
46
|
-
import { default as ze } from "./lib/components/
|
|
47
|
-
import { default as Ae } from "./lib/components/
|
|
48
|
-
import { default as je } from "./lib/components/
|
|
49
|
-
import { default as Je } from "./lib/components/
|
|
50
|
-
import { default as Qe } from "./lib/components/
|
|
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 ot } 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 ut } from "./lib/components/
|
|
60
|
-
import { default as xt } from "./lib/components/
|
|
61
|
-
import { default as it } from "./lib/components/
|
|
62
|
-
import { default as Tt } from "./lib/components/
|
|
63
|
-
import { default as St } from "./lib/components/
|
|
64
|
-
import { default as bt } from "./lib/components/
|
|
65
|
-
import { default as
|
|
66
|
-
import { default as
|
|
67
|
-
import { default as Bt } from "./lib/components/
|
|
68
|
-
import { default as Lt } from "./lib/components/
|
|
69
|
-
import { default as Ht } from "./lib/components/
|
|
70
|
-
import { default as
|
|
71
|
-
import { default as Rt } from "./lib/components/
|
|
72
|
-
import { default as Gt } from "./lib/components/
|
|
73
|
-
import { default as zt } from "./lib/components/
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
10
|
+
import { default as b } from "./lib/components/CheckboxWrapper.vue.mjs";
|
|
11
|
+
import { default as k } from "./lib/components/CheckboxWrapperWrapper.vue.mjs";
|
|
12
|
+
import { default as I } from "./lib/components/ContentWrapperWrapper.vue.mjs";
|
|
13
|
+
import { default as B } from "./lib/components/CrestWrapper.vue.mjs";
|
|
14
|
+
import { default as L } from "./lib/components/DisplayWrapper.vue.mjs";
|
|
15
|
+
import { default as H } from "./lib/components/DividerWrapper.vue.mjs";
|
|
16
|
+
import { default as v } from "./lib/components/FieldsetWrapper.vue.mjs";
|
|
17
|
+
import { default as R } from "./lib/components/FieldsetWrapperWrapper.vue.mjs";
|
|
18
|
+
import { default as G } from "./lib/components/FlexWrapper.vue.mjs";
|
|
19
|
+
import { default as z } from "./lib/components/FlexItemWrapper.vue.mjs";
|
|
20
|
+
import { default as A } from "./lib/components/FlyoutWrapper.vue.mjs";
|
|
21
|
+
import { default as j } from "./lib/components/FlyoutMultilevelWrapper.vue.mjs";
|
|
22
|
+
import { default as J } from "./lib/components/FlyoutMultilevelItemWrapper.vue.mjs";
|
|
23
|
+
import { default as Q } from "./lib/components/GridWrapper.vue.mjs";
|
|
24
|
+
import { default as V } from "./lib/components/GridItemWrapper.vue.mjs";
|
|
25
|
+
import { default as Y } from "./lib/components/HeadingWrapper.vue.mjs";
|
|
26
|
+
import { default as _ } from "./lib/components/HeadlineWrapper.vue.mjs";
|
|
27
|
+
import { default as ee } from "./lib/components/IconWrapper.vue.mjs";
|
|
28
|
+
import { default as oe } from "./lib/components/InlineNotificationWrapper.vue.mjs";
|
|
29
|
+
import { default as ae } from "./lib/components/LinkWrapper.vue.mjs";
|
|
30
|
+
import { default as le } from "./lib/components/LinkPureWrapper.vue.mjs";
|
|
31
|
+
import { default as se } from "./lib/components/LinkSocialWrapper.vue.mjs";
|
|
32
|
+
import { default as ue } from "./lib/components/LinkTileWrapper.vue.mjs";
|
|
33
|
+
import { default as xe } from "./lib/components/LinkTileModelSignatureWrapper.vue.mjs";
|
|
34
|
+
import { default as ie } from "./lib/components/LinkTileProductWrapper.vue.mjs";
|
|
35
|
+
import { default as Te } from "./lib/components/MarqueWrapper.vue.mjs";
|
|
36
|
+
import { default as Se } from "./lib/components/ModalWrapper.vue.mjs";
|
|
37
|
+
import { default as be } from "./lib/components/ModelSignatureWrapper.vue.mjs";
|
|
38
|
+
import { default as ke } from "./lib/components/MultiSelectWrapper.vue.mjs";
|
|
39
|
+
import { default as Ie } from "./lib/components/MultiSelectOptionWrapper.vue.mjs";
|
|
40
|
+
import { default as Be } from "./lib/components/OptgroupWrapper.vue.mjs";
|
|
41
|
+
import { default as Le } from "./lib/components/PaginationWrapper.vue.mjs";
|
|
42
|
+
import { default as He } from "./lib/components/PinCodeWrapper.vue.mjs";
|
|
43
|
+
import { default as ve } from "./lib/components/PopoverWrapper.vue.mjs";
|
|
44
|
+
import { default as Re } from "./lib/components/RadioButtonWrapperWrapper.vue.mjs";
|
|
45
|
+
import { default as Ge } from "./lib/components/ScrollerWrapper.vue.mjs";
|
|
46
|
+
import { default as ze } from "./lib/components/SegmentedControlWrapper.vue.mjs";
|
|
47
|
+
import { default as Ae } from "./lib/components/SegmentedControlItemWrapper.vue.mjs";
|
|
48
|
+
import { default as je } from "./lib/components/SelectWrapper.vue.mjs";
|
|
49
|
+
import { default as Je } from "./lib/components/SelectOptionWrapper.vue.mjs";
|
|
50
|
+
import { default as Qe } from "./lib/components/SelectWrapperWrapper.vue.mjs";
|
|
51
|
+
import { default as Ve } from "./lib/components/SpinnerWrapper.vue.mjs";
|
|
52
|
+
import { default as Ye } from "./lib/components/StepperHorizontalWrapper.vue.mjs";
|
|
53
|
+
import { default as _e } from "./lib/components/StepperHorizontalItemWrapper.vue.mjs";
|
|
54
|
+
import { default as et } from "./lib/components/SwitchWrapper.vue.mjs";
|
|
55
|
+
import { default as ot } from "./lib/components/TableWrapper.vue.mjs";
|
|
56
|
+
import { default as at } from "./lib/components/TableBodyWrapper.vue.mjs";
|
|
57
|
+
import { default as lt } from "./lib/components/TableCellWrapper.vue.mjs";
|
|
58
|
+
import { default as st } from "./lib/components/TableHeadWrapper.vue.mjs";
|
|
59
|
+
import { default as ut } from "./lib/components/TableHeadCellWrapper.vue.mjs";
|
|
60
|
+
import { default as xt } from "./lib/components/TableHeadRowWrapper.vue.mjs";
|
|
61
|
+
import { default as it } from "./lib/components/TableRowWrapper.vue.mjs";
|
|
62
|
+
import { default as Tt } from "./lib/components/TabsWrapper.vue.mjs";
|
|
63
|
+
import { default as St } from "./lib/components/TabsBarWrapper.vue.mjs";
|
|
64
|
+
import { default as bt } from "./lib/components/TabsItemWrapper.vue.mjs";
|
|
65
|
+
import { default as kt } from "./lib/components/TagWrapper.vue.mjs";
|
|
66
|
+
import { default as It } from "./lib/components/TagDismissibleWrapper.vue.mjs";
|
|
67
|
+
import { default as Bt } from "./lib/components/TextWrapper.vue.mjs";
|
|
68
|
+
import { default as Lt } from "./lib/components/TextFieldWrapperWrapper.vue.mjs";
|
|
69
|
+
import { default as Ht } from "./lib/components/TextListWrapper.vue.mjs";
|
|
70
|
+
import { default as vt } from "./lib/components/TextListItemWrapper.vue.mjs";
|
|
71
|
+
import { default as Rt } from "./lib/components/TextareaWrapper.vue.mjs";
|
|
72
|
+
import { default as Gt } from "./lib/components/TextareaWrapperWrapper.vue.mjs";
|
|
73
|
+
import { default as zt } from "./lib/components/ToastWrapper.vue.mjs";
|
|
74
|
+
import { default as At } from "./lib/components/WordmarkWrapper.vue.mjs";
|
|
75
|
+
import { useToastManager as jt } from "./utils.mjs";
|
|
76
|
+
import { default as Jt } from "./PorscheDesignSystemProvider.vue.mjs";
|
|
77
|
+
import { createPorscheDesignSystem as Qt, usePorscheDesignSystemPlugin as Ut } from "./plugin.mjs";
|
|
77
78
|
export {
|
|
78
79
|
a as PAccordion,
|
|
79
80
|
l as PBanner,
|
|
@@ -83,73 +84,74 @@ export {
|
|
|
83
84
|
i as PButtonTile,
|
|
84
85
|
T as PCanvas,
|
|
85
86
|
S as PCarousel,
|
|
86
|
-
b as
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
B as
|
|
90
|
-
L as
|
|
91
|
-
H as
|
|
92
|
-
|
|
93
|
-
R as
|
|
94
|
-
G as
|
|
95
|
-
z as
|
|
96
|
-
A as
|
|
97
|
-
j as
|
|
98
|
-
J as
|
|
99
|
-
Q as
|
|
100
|
-
V as
|
|
101
|
-
Y as
|
|
102
|
-
_ as
|
|
103
|
-
ee as
|
|
104
|
-
oe as
|
|
105
|
-
ae as
|
|
106
|
-
le as
|
|
107
|
-
se as
|
|
108
|
-
ue as
|
|
109
|
-
xe as
|
|
110
|
-
ie as
|
|
111
|
-
Te as
|
|
112
|
-
Se as
|
|
113
|
-
be as
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
Be as
|
|
117
|
-
Le as
|
|
118
|
-
He as
|
|
119
|
-
|
|
120
|
-
Re as
|
|
121
|
-
Ge as
|
|
122
|
-
ze as
|
|
123
|
-
Ae as
|
|
124
|
-
je as
|
|
125
|
-
Je as
|
|
126
|
-
Qe as
|
|
127
|
-
Ve as
|
|
128
|
-
Ye as
|
|
129
|
-
_e as
|
|
130
|
-
et as
|
|
131
|
-
ot as
|
|
132
|
-
at as
|
|
133
|
-
lt as
|
|
134
|
-
st as
|
|
135
|
-
ut as
|
|
136
|
-
xt as
|
|
137
|
-
it as
|
|
138
|
-
Tt as
|
|
139
|
-
St as
|
|
140
|
-
bt as
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
Bt as
|
|
144
|
-
Lt as
|
|
145
|
-
Ht as
|
|
146
|
-
|
|
147
|
-
Rt as
|
|
148
|
-
Gt as
|
|
149
|
-
zt as
|
|
150
|
-
|
|
87
|
+
b as PCheckbox,
|
|
88
|
+
k as PCheckboxWrapper,
|
|
89
|
+
I as PContentWrapper,
|
|
90
|
+
B as PCrest,
|
|
91
|
+
L as PDisplay,
|
|
92
|
+
H as PDivider,
|
|
93
|
+
v as PFieldset,
|
|
94
|
+
R as PFieldsetWrapper,
|
|
95
|
+
G as PFlex,
|
|
96
|
+
z as PFlexItem,
|
|
97
|
+
A as PFlyout,
|
|
98
|
+
j as PFlyoutMultilevel,
|
|
99
|
+
J as PFlyoutMultilevelItem,
|
|
100
|
+
Q as PGrid,
|
|
101
|
+
V as PGridItem,
|
|
102
|
+
Y as PHeading,
|
|
103
|
+
_ as PHeadline,
|
|
104
|
+
ee as PIcon,
|
|
105
|
+
oe as PInlineNotification,
|
|
106
|
+
ae as PLink,
|
|
107
|
+
le as PLinkPure,
|
|
108
|
+
se as PLinkSocial,
|
|
109
|
+
ue as PLinkTile,
|
|
110
|
+
xe as PLinkTileModelSignature,
|
|
111
|
+
ie as PLinkTileProduct,
|
|
112
|
+
Te as PMarque,
|
|
113
|
+
Se as PModal,
|
|
114
|
+
be as PModelSignature,
|
|
115
|
+
ke as PMultiSelect,
|
|
116
|
+
Ie as PMultiSelectOption,
|
|
117
|
+
Be as POptgroup,
|
|
118
|
+
Le as PPagination,
|
|
119
|
+
He as PPinCode,
|
|
120
|
+
ve as PPopover,
|
|
121
|
+
Re as PRadioButtonWrapper,
|
|
122
|
+
Ge as PScroller,
|
|
123
|
+
ze as PSegmentedControl,
|
|
124
|
+
Ae as PSegmentedControlItem,
|
|
125
|
+
je as PSelect,
|
|
126
|
+
Je as PSelectOption,
|
|
127
|
+
Qe as PSelectWrapper,
|
|
128
|
+
Ve as PSpinner,
|
|
129
|
+
Ye as PStepperHorizontal,
|
|
130
|
+
_e as PStepperHorizontalItem,
|
|
131
|
+
et as PSwitch,
|
|
132
|
+
ot as PTable,
|
|
133
|
+
at as PTableBody,
|
|
134
|
+
lt as PTableCell,
|
|
135
|
+
st as PTableHead,
|
|
136
|
+
ut as PTableHeadCell,
|
|
137
|
+
xt as PTableHeadRow,
|
|
138
|
+
it as PTableRow,
|
|
139
|
+
Tt as PTabs,
|
|
140
|
+
St as PTabsBar,
|
|
141
|
+
bt as PTabsItem,
|
|
142
|
+
kt as PTag,
|
|
143
|
+
It as PTagDismissible,
|
|
144
|
+
Bt as PText,
|
|
145
|
+
Lt as PTextFieldWrapper,
|
|
146
|
+
Ht as PTextList,
|
|
147
|
+
vt as PTextListItem,
|
|
148
|
+
Rt as PTextarea,
|
|
149
|
+
Gt as PTextareaWrapper,
|
|
150
|
+
zt as PToast,
|
|
151
|
+
At as PWordmark,
|
|
152
|
+
Jt as PorscheDesignSystemProvider,
|
|
151
153
|
o as componentsReady,
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
154
|
+
Qt as createPorscheDesignSystem,
|
|
155
|
+
Ut as usePorscheDesignSystemPlugin,
|
|
156
|
+
jt as useToastManager
|
|
155
157
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@porsche-design-system/components-vue",
|
|
3
|
-
"version": "3.19.0-rc.
|
|
3
|
+
"version": "3.19.0-rc.2",
|
|
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.19.0-rc.
|
|
20
|
+
"@porsche-design-system/components-js": "3.19.0-rc.2"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"vue": ">=3.0.0 <4.0.0"
|