@porsche-design-system/components-vue 3.0.0-alpha.3 → 3.0.0-alpha.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 +99 -0
- package/lib/components/BannerWrapper.vue.d.ts +4 -2
- package/lib/components/ButtonTileWrapper.vue.d.ts +171 -0
- package/lib/components/ButtonTileWrapper.vue.js +40 -0
- package/lib/components/ButtonTileWrapper.vue2.js +4 -0
- package/lib/components/CarouselWrapper.vue.d.ts +16 -8
- package/lib/components/CarouselWrapper.vue.js +13 -12
- package/lib/components/CrestWrapper.vue.d.ts +49 -0
- package/lib/components/CrestWrapper.vue.js +24 -0
- package/lib/components/CrestWrapper.vue2.js +4 -0
- package/lib/components/DisplayWrapper.vue.d.ts +2 -2
- package/lib/components/FieldsetWrapper.vue.d.ts +95 -0
- package/lib/components/FieldsetWrapper.vue.js +32 -0
- package/lib/components/FieldsetWrapper.vue2.js +4 -0
- package/lib/components/FieldsetWrapperWrapper.vue.d.ts +2 -1
- package/lib/components/GridItemWrapper.vue.d.ts +4 -4
- package/lib/components/HeadingWrapper.vue.d.ts +2 -2
- package/lib/components/HeadlineWrapper.vue.d.ts +3 -3
- package/lib/components/IconWrapper.vue.d.ts +2 -2
- package/lib/components/LinkTileModelSignatureWrapper.vue.d.ts +106 -0
- package/lib/components/LinkTileModelSignatureWrapper.vue.js +33 -0
- package/lib/components/LinkTileModelSignatureWrapper.vue2.js +4 -0
- package/lib/components/LinkTileWrapper.vue.d.ts +3 -3
- package/lib/components/MarqueWrapper.vue.d.ts +1 -0
- package/lib/components/ModelSignatureWrapper.vue.d.ts +4 -4
- package/lib/components/PaginationWrapper.vue.d.ts +2 -2
- package/lib/components/PopoverWrapper.vue.d.ts +2 -2
- package/lib/components/ScrollerWrapper.vue.d.ts +11 -0
- package/lib/components/ScrollerWrapper.vue.js +11 -10
- package/lib/components/TableWrapper.vue.d.ts +23 -3
- package/lib/components/TableWrapper.vue.js +11 -10
- package/lib/components/TextWrapper.vue.d.ts +2 -2
- package/lib/components/WordmarkWrapper.vue.d.ts +71 -0
- package/lib/components/WordmarkWrapper.vue.js +26 -0
- package/lib/components/WordmarkWrapper.vue2.js +4 -0
- package/lib/components/index.d.ts +5 -0
- package/lib/types.d.ts +89 -43
- package/package.json +2 -2
- package/public-api.js +121 -111
- package/styles/_index.scss +1 -0
- package/styles/scss.scss +0 -1
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import type { SelectedAriaAttributes, WordmarkSize, WordmarkTarget, Theme } from '../types';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
3
|
+
/**
|
|
4
|
+
* Add ARIA attributes.
|
|
5
|
+
*/
|
|
6
|
+
aria?: SelectedAriaAttributes<"aria-label"> | undefined;
|
|
7
|
+
/**
|
|
8
|
+
* When providing an url then the component will be rendered as `<a>`.
|
|
9
|
+
*/
|
|
10
|
+
href?: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* Adapts sizing of wordmark.
|
|
13
|
+
*/
|
|
14
|
+
size?: "inherit" | "small" | undefined;
|
|
15
|
+
/**
|
|
16
|
+
* Target attribute where the link should be opened.
|
|
17
|
+
*/
|
|
18
|
+
target?: string | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* Adapts color depending on theme.
|
|
21
|
+
*/
|
|
22
|
+
theme?: "light" | "dark" | undefined;
|
|
23
|
+
}>, {
|
|
24
|
+
size: string;
|
|
25
|
+
target: string;
|
|
26
|
+
theme: string;
|
|
27
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
28
|
+
/**
|
|
29
|
+
* Add ARIA attributes.
|
|
30
|
+
*/
|
|
31
|
+
aria?: SelectedAriaAttributes<"aria-label"> | undefined;
|
|
32
|
+
/**
|
|
33
|
+
* When providing an url then the component will be rendered as `<a>`.
|
|
34
|
+
*/
|
|
35
|
+
href?: string | undefined;
|
|
36
|
+
/**
|
|
37
|
+
* Adapts sizing of wordmark.
|
|
38
|
+
*/
|
|
39
|
+
size?: "inherit" | "small" | undefined;
|
|
40
|
+
/**
|
|
41
|
+
* Target attribute where the link should be opened.
|
|
42
|
+
*/
|
|
43
|
+
target?: string | undefined;
|
|
44
|
+
/**
|
|
45
|
+
* Adapts color depending on theme.
|
|
46
|
+
*/
|
|
47
|
+
theme?: "light" | "dark" | undefined;
|
|
48
|
+
}>, {
|
|
49
|
+
size: string;
|
|
50
|
+
target: string;
|
|
51
|
+
theme: string;
|
|
52
|
+
}>>>, {
|
|
53
|
+
size: WordmarkSize;
|
|
54
|
+
theme: Theme;
|
|
55
|
+
target: WordmarkTarget;
|
|
56
|
+
}>;
|
|
57
|
+
export default _default;
|
|
58
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
59
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
60
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
61
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
62
|
+
} : {
|
|
63
|
+
type: import('vue').PropType<T[K]>;
|
|
64
|
+
required: true;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
type __VLS_WithDefaults<P, D> = {
|
|
68
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
|
|
69
|
+
default: D[K];
|
|
70
|
+
} : P[K];
|
|
71
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { defineComponent as a, ref as p, onMounted as l, onUpdated as f, openBlock as m, createBlock as s, resolveDynamicComponent as u, unref as c } from "vue";
|
|
2
|
+
import { getPrefixedTagName as d, syncProperties as n } from "../../utils.js";
|
|
3
|
+
const C = /* @__PURE__ */ a({
|
|
4
|
+
__name: "WordmarkWrapper",
|
|
5
|
+
props: {
|
|
6
|
+
aria: null,
|
|
7
|
+
href: null,
|
|
8
|
+
size: { default: "small" },
|
|
9
|
+
target: { default: "_self" },
|
|
10
|
+
theme: { default: "light" }
|
|
11
|
+
},
|
|
12
|
+
setup(r) {
|
|
13
|
+
const o = r, t = d("p-wordmark"), e = p();
|
|
14
|
+
return l(() => {
|
|
15
|
+
n(e.value, o);
|
|
16
|
+
}), f(() => {
|
|
17
|
+
n(e.value, o);
|
|
18
|
+
}), (i, _) => (m(), s(u(c(t)), {
|
|
19
|
+
ref_key: "pdsComponentRef",
|
|
20
|
+
ref: e
|
|
21
|
+
}, null, 512));
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
export {
|
|
25
|
+
C as default
|
|
26
|
+
};
|
|
@@ -3,11 +3,14 @@ export { default as PBanner } from './BannerWrapper.vue';
|
|
|
3
3
|
export { default as PButton } from './ButtonWrapper.vue';
|
|
4
4
|
export { default as PButtonGroup } from './ButtonGroupWrapper.vue';
|
|
5
5
|
export { default as PButtonPure } from './ButtonPureWrapper.vue';
|
|
6
|
+
export { default as PButtonTile } from './ButtonTileWrapper.vue';
|
|
6
7
|
export { default as PCarousel } from './CarouselWrapper.vue';
|
|
7
8
|
export { default as PCheckboxWrapper } from './CheckboxWrapperWrapper.vue';
|
|
8
9
|
export { default as PContentWrapper } from './ContentWrapperWrapper.vue';
|
|
10
|
+
export { default as PCrest } from './CrestWrapper.vue';
|
|
9
11
|
export { default as PDisplay } from './DisplayWrapper.vue';
|
|
10
12
|
export { default as PDivider } from './DividerWrapper.vue';
|
|
13
|
+
export { default as PFieldset } from './FieldsetWrapper.vue';
|
|
11
14
|
export { default as PFieldsetWrapper } from './FieldsetWrapperWrapper.vue';
|
|
12
15
|
export { default as PFlex } from './FlexWrapper.vue';
|
|
13
16
|
export { default as PFlexItem } from './FlexItemWrapper.vue';
|
|
@@ -21,6 +24,7 @@ export { default as PLink } from './LinkWrapper.vue';
|
|
|
21
24
|
export { default as PLinkPure } from './LinkPureWrapper.vue';
|
|
22
25
|
export { default as PLinkSocial } from './LinkSocialWrapper.vue';
|
|
23
26
|
export { default as PLinkTile } from './LinkTileWrapper.vue';
|
|
27
|
+
export { default as PLinkTileModelSignature } from './LinkTileModelSignatureWrapper.vue';
|
|
24
28
|
export { default as PMarque } from './MarqueWrapper.vue';
|
|
25
29
|
export { default as PModal } from './ModalWrapper.vue';
|
|
26
30
|
export { default as PModelSignature } from './ModelSignatureWrapper.vue';
|
|
@@ -53,3 +57,4 @@ export { default as PTextList } from './TextListWrapper.vue';
|
|
|
53
57
|
export { default as PTextListItem } from './TextListItemWrapper.vue';
|
|
54
58
|
export { default as PTextareaWrapper } from './TextareaWrapperWrapper.vue';
|
|
55
59
|
export { default as PToast } from './ToastWrapper.vue';
|
|
60
|
+
export { default as PWordmark } from './WordmarkWrapper.vue';
|
package/lib/types.d.ts
CHANGED
|
@@ -209,6 +209,29 @@ export declare type BreakpointValues<T> = {
|
|
|
209
209
|
base: T;
|
|
210
210
|
};
|
|
211
211
|
export declare type BreakpointCustomizable<T> = T | BreakpointValues<T>;
|
|
212
|
+
declare const TILE_ASPECT_RATIOS: readonly [
|
|
213
|
+
"1:1",
|
|
214
|
+
"4:3",
|
|
215
|
+
"3:4",
|
|
216
|
+
"16:9",
|
|
217
|
+
"9:16"
|
|
218
|
+
];
|
|
219
|
+
export declare type TileAspectRatio = (typeof TILE_ASPECT_RATIOS)[number];
|
|
220
|
+
declare const TILE_SIZES: readonly [
|
|
221
|
+
"default",
|
|
222
|
+
"inherit"
|
|
223
|
+
];
|
|
224
|
+
export declare type TileSize = (typeof TILE_SIZES)[number];
|
|
225
|
+
declare const TILE_WEIGHTS: readonly [
|
|
226
|
+
"regular",
|
|
227
|
+
"semi-bold"
|
|
228
|
+
];
|
|
229
|
+
export declare type TileWeight = (typeof TILE_WEIGHTS)[number];
|
|
230
|
+
declare const TILE_ALIGNS: readonly [
|
|
231
|
+
"top",
|
|
232
|
+
"bottom"
|
|
233
|
+
];
|
|
234
|
+
export declare type TileAlign = (typeof TILE_ALIGNS)[number];
|
|
212
235
|
declare const GRADIENT_COLOR_SCHEMES: readonly [
|
|
213
236
|
"default",
|
|
214
237
|
"surface"
|
|
@@ -523,29 +546,38 @@ declare const BANNER_WIDTHS: readonly [
|
|
|
523
546
|
"basic",
|
|
524
547
|
"fluid"
|
|
525
548
|
];
|
|
549
|
+
/** @deprecated */
|
|
526
550
|
export declare type BannerWidth = typeof BANNER_WIDTHS[number];
|
|
527
551
|
export declare type ButtonIcon = LinkButtonIconName;
|
|
528
|
-
declare const
|
|
552
|
+
declare const GROUP_DIRECTIONS: readonly [
|
|
529
553
|
"row",
|
|
530
554
|
"column"
|
|
531
555
|
];
|
|
532
|
-
export declare type
|
|
556
|
+
export declare type GroupDirection = (typeof GROUP_DIRECTIONS)[number];
|
|
557
|
+
export declare type ButtonGroupDirection = GroupDirection;
|
|
533
558
|
export declare type ButtonPureType = ButtonType;
|
|
534
559
|
export declare type ButtonPureIcon = LinkButtonIconName;
|
|
535
560
|
export declare type ButtonPureAriaAttribute = ButtonAriaAttribute;
|
|
536
561
|
export declare type ButtonPureAlignLabel = AlignLabel;
|
|
537
562
|
export declare type ButtonPureWeight = TextWeight;
|
|
538
563
|
export declare type ButtonPureSize = TextSize;
|
|
564
|
+
export declare type ButtonTileAriaAttribute = ButtonAriaAttribute;
|
|
565
|
+
export declare type ButtonTileIcon = LinkButtonIconName;
|
|
566
|
+
export declare type ButtonTileType = ButtonType;
|
|
567
|
+
export declare type ButtonTileAspectRatio = TileAspectRatio;
|
|
568
|
+
export declare type ButtonTileSize = TileSize;
|
|
569
|
+
export declare type ButtonTileWeight = TileWeight;
|
|
570
|
+
export declare type ButtonTileAlign = TileAlign;
|
|
539
571
|
declare const CAROUSEL_WIDTHS: readonly [
|
|
540
572
|
"basic",
|
|
541
573
|
"extended"
|
|
542
574
|
];
|
|
543
|
-
export declare type CarouselWidth = typeof CAROUSEL_WIDTHS[number];
|
|
575
|
+
export declare type CarouselWidth = (typeof CAROUSEL_WIDTHS)[number];
|
|
544
576
|
declare const CAROUSEL_ALIGN_HEADERS: readonly [
|
|
545
577
|
"left",
|
|
546
578
|
"center"
|
|
547
579
|
];
|
|
548
|
-
export declare type CarouselAlignHeader = typeof CAROUSEL_ALIGN_HEADERS[number];
|
|
580
|
+
export declare type CarouselAlignHeader = (typeof CAROUSEL_ALIGN_HEADERS)[number];
|
|
549
581
|
export declare type CarouselInternationalization = Partial<Record<"prev" | "next" | "first" | "last" | "slideLabel" | "slide", string>>;
|
|
550
582
|
export declare type CarouselChangeEvent = {
|
|
551
583
|
activeIndex: number;
|
|
@@ -565,6 +597,11 @@ declare const CONTENT_WRAPPER_WIDTHS: readonly [
|
|
|
565
597
|
"full"
|
|
566
598
|
];
|
|
567
599
|
export declare type ContentWrapperWidth = typeof CONTENT_WRAPPER_WIDTHS[number];
|
|
600
|
+
export declare type CrestTarget = LinkTarget;
|
|
601
|
+
declare const CREST_ARIA_ATTRIBUTES: readonly [
|
|
602
|
+
"aria-label"
|
|
603
|
+
];
|
|
604
|
+
export declare type CrestAriaAttribute = (typeof CREST_ARIA_ATTRIBUTES)[number];
|
|
568
605
|
declare const DISPLAY_TAGS: readonly [
|
|
569
606
|
"h1",
|
|
570
607
|
"h2",
|
|
@@ -602,12 +639,14 @@ declare const DIVIDER_DIRECTIONS: readonly [
|
|
|
602
639
|
];
|
|
603
640
|
export declare type DividerDirection = typeof DIVIDER_DIRECTIONS[number];
|
|
604
641
|
export declare type DividerOrientation = DividerDirection;
|
|
605
|
-
declare const
|
|
642
|
+
declare const FIELDSET_LABEL_SIZES: readonly [
|
|
606
643
|
"small",
|
|
607
644
|
"medium"
|
|
608
645
|
];
|
|
609
|
-
export declare type
|
|
610
|
-
export declare type
|
|
646
|
+
export declare type FieldsetLabelSize = typeof FIELDSET_LABEL_SIZES[number];
|
|
647
|
+
export declare type FieldsetState = FormState;
|
|
648
|
+
export declare type FieldsetWrapperLabelSize = FieldsetLabelSize;
|
|
649
|
+
export declare type FieldsetWrapperState = FieldsetState;
|
|
611
650
|
export declare type FlexInline = boolean;
|
|
612
651
|
declare const FLEX_WRAPS: readonly [
|
|
613
652
|
"nowrap",
|
|
@@ -830,47 +869,17 @@ export declare type LinkPureSize = TextSize;
|
|
|
830
869
|
export declare type LinkPureTarget = LinkTarget;
|
|
831
870
|
export declare type LinkSocialIcon = Extract<IconName, "logo-facebook" | "logo-google" | "logo-instagram" | "logo-linkedin" | "logo-pinterest" | "logo-twitter" | "logo-wechat" | "logo-whatsapp" | "logo-xing" | "logo-youtube" | "logo-baidu" | "logo-delicious" | "logo-digg" | "logo-foursquare" | "logo-gmail" | "logo-hatena" | "logo-kaixin" | "logo-kakaotalk" | "logo-naver" | "logo-qq-share" | "logo-qq" | "logo-reddit" | "logo-skyrock" | "logo-sohu" | "logo-tecent" | "logo-telegram" | "logo-tiktok" | "logo-tumblr" | "logo-viber" | "logo-vk" | "logo-weibo" | "logo-yahoo" | "logo-youku">;
|
|
832
871
|
export declare type LinkSocialTarget = LinkTarget;
|
|
872
|
+
export declare type LinkTileTarget = LinkTarget;
|
|
873
|
+
export declare type LinkTileAriaAttribute = LinkAriaAttribute;
|
|
874
|
+
export declare type LinkTileAspectRatio = TileAspectRatio;
|
|
875
|
+
export declare type LinkTileSize = TileSize;
|
|
876
|
+
export declare type LinkTileAlign = TileAlign;
|
|
833
877
|
declare const LINK_TILE_WEIGHTS: readonly [
|
|
834
878
|
"regular",
|
|
835
879
|
"semi-bold",
|
|
836
880
|
"semibold"
|
|
837
881
|
];
|
|
838
|
-
export declare type LinkTileWeight = typeof LINK_TILE_WEIGHTS[number];
|
|
839
|
-
declare const LINK_TILE_SIZES: readonly [
|
|
840
|
-
"default",
|
|
841
|
-
"inherit"
|
|
842
|
-
];
|
|
843
|
-
export declare type LinkTileSize = typeof LINK_TILE_SIZES[number];
|
|
844
|
-
declare const LINK_TILE_ALIGNS: readonly [
|
|
845
|
-
"top",
|
|
846
|
-
"bottom"
|
|
847
|
-
];
|
|
848
|
-
export declare type LinkTileAlign = typeof LINK_TILE_ALIGNS[number];
|
|
849
|
-
declare const LINK_TILE_ASPECT_RATIOS: readonly [
|
|
850
|
-
"1:1",
|
|
851
|
-
"4:3",
|
|
852
|
-
"3:4",
|
|
853
|
-
"16:9",
|
|
854
|
-
"9:16"
|
|
855
|
-
];
|
|
856
|
-
export declare type LinkTileAspectRatio = typeof LINK_TILE_ASPECT_RATIOS[number];
|
|
857
|
-
export declare type LinkTileTarget = LinkTarget;
|
|
858
|
-
export declare type LinkTileAriaAttribute = LinkAriaAttribute;
|
|
859
|
-
declare const MARQUE_SIZES: readonly [
|
|
860
|
-
"responsive",
|
|
861
|
-
"small",
|
|
862
|
-
"medium"
|
|
863
|
-
];
|
|
864
|
-
export declare type MarqueSize = typeof MARQUE_SIZES[number];
|
|
865
|
-
export declare type MarqueTarget = LinkTarget;
|
|
866
|
-
declare const MARQUE_ARIA_ATTRIBUTES: readonly [
|
|
867
|
-
"aria-label"
|
|
868
|
-
];
|
|
869
|
-
export declare type MarqueAriaAttribute = typeof MARQUE_ARIA_ATTRIBUTES[number];
|
|
870
|
-
declare const MODAL_ARIA_ATTRIBUTES: readonly [
|
|
871
|
-
"aria-label"
|
|
872
|
-
];
|
|
873
|
-
export declare type ModalAriaAttribute = (typeof MODAL_ARIA_ATTRIBUTES)[number];
|
|
882
|
+
export declare type LinkTileWeight = (typeof LINK_TILE_WEIGHTS)[number];
|
|
874
883
|
declare const MODEL_SIGNATURES_MANIFEST: {
|
|
875
884
|
"718": string;
|
|
876
885
|
"911": string;
|
|
@@ -897,6 +906,33 @@ declare const MODEL_SIGNATURE_COLORS: readonly [
|
|
|
897
906
|
"inherit"
|
|
898
907
|
];
|
|
899
908
|
export declare type ModelSignatureColor = typeof MODEL_SIGNATURE_COLORS[number];
|
|
909
|
+
export declare type LinkTileModelSignatureModel = ModelSignatureModel;
|
|
910
|
+
declare const LINK_TILE_MODEL_SIGNATURE_HEADING_TAGS: readonly [
|
|
911
|
+
"h2",
|
|
912
|
+
"h3",
|
|
913
|
+
"h4",
|
|
914
|
+
"h5",
|
|
915
|
+
"h6"
|
|
916
|
+
];
|
|
917
|
+
export declare type LinkTileModelSignatureHeadingTag = (typeof LINK_TILE_MODEL_SIGNATURE_HEADING_TAGS)[number];
|
|
918
|
+
export declare type LinkTileModelSignatureWeight = TileWeight;
|
|
919
|
+
export declare type LinkTileModelSignatureAspectRatio = TileAspectRatio;
|
|
920
|
+
export declare type LinkTileModelSignatureLinkDirection = GroupDirection;
|
|
921
|
+
declare const MARQUE_SIZES: readonly [
|
|
922
|
+
"responsive",
|
|
923
|
+
"small",
|
|
924
|
+
"medium"
|
|
925
|
+
];
|
|
926
|
+
export declare type MarqueSize = typeof MARQUE_SIZES[number];
|
|
927
|
+
export declare type MarqueTarget = LinkTarget;
|
|
928
|
+
declare const MARQUE_ARIA_ATTRIBUTES: readonly [
|
|
929
|
+
"aria-label"
|
|
930
|
+
];
|
|
931
|
+
export declare type MarqueAriaAttribute = typeof MARQUE_ARIA_ATTRIBUTES[number];
|
|
932
|
+
declare const MODAL_ARIA_ATTRIBUTES: readonly [
|
|
933
|
+
"aria-label"
|
|
934
|
+
];
|
|
935
|
+
export declare type ModalAriaAttribute = (typeof MODAL_ARIA_ATTRIBUTES)[number];
|
|
900
936
|
declare const PAGINATION_NUMBER_OF_PAGE_LINKS: readonly [
|
|
901
937
|
5,
|
|
902
938
|
7
|
|
@@ -1069,4 +1105,14 @@ export declare type ToastMessage = {
|
|
|
1069
1105
|
text: string;
|
|
1070
1106
|
state?: ToastState;
|
|
1071
1107
|
};
|
|
1108
|
+
declare const WORDMARK_SIZES: readonly [
|
|
1109
|
+
"small",
|
|
1110
|
+
"inherit"
|
|
1111
|
+
];
|
|
1112
|
+
export declare type WordmarkSize = (typeof WORDMARK_SIZES)[number];
|
|
1113
|
+
export declare type WordmarkTarget = LinkTarget;
|
|
1114
|
+
declare const WORDMARK_ARIA_ATTRIBUTES: readonly [
|
|
1115
|
+
"aria-label"
|
|
1116
|
+
];
|
|
1117
|
+
export declare type WordmarkAriaAttribute = (typeof WORDMARK_ARIA_ATTRIBUTES)[number];
|
|
1072
1118
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@porsche-design-system/components-vue",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.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,7 +17,7 @@
|
|
|
17
17
|
"license": "SEE LICENSE IN LICENSE",
|
|
18
18
|
"homepage": "https://designsystem.porsche.com",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@porsche-design-system/components-js": "3.0.0-alpha.
|
|
20
|
+
"@porsche-design-system/components-js": "3.0.0-alpha.5"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"vue": ">=3.0.0 <4.0.0"
|
package/public-api.js
CHANGED
|
@@ -1,121 +1,131 @@
|
|
|
1
1
|
import { componentsReady as t } from "@porsche-design-system/components-js";
|
|
2
|
-
import { default as
|
|
2
|
+
import { default as a } from "./lib/components/AccordionWrapper.vue.js";
|
|
3
3
|
import { default as l } from "./lib/components/BannerWrapper.vue.js";
|
|
4
|
-
import { default as
|
|
4
|
+
import { default as p } from "./lib/components/ButtonWrapper.vue.js";
|
|
5
5
|
import { default as m } from "./lib/components/ButtonGroupWrapper.vue.js";
|
|
6
6
|
import { default as x } from "./lib/components/ButtonPureWrapper.vue.js";
|
|
7
|
-
import { default as i } from "./lib/components/
|
|
8
|
-
import { default as T } from "./lib/components/
|
|
9
|
-
import { default as S } from "./lib/components/
|
|
10
|
-
import { default as
|
|
11
|
-
import { default as
|
|
12
|
-
import { default as
|
|
13
|
-
import { default as
|
|
14
|
-
import { default as
|
|
15
|
-
import { default as
|
|
16
|
-
import { default as M } from "./lib/components/
|
|
17
|
-
import { default as v } from "./lib/components/
|
|
18
|
-
import { default as G } from "./lib/components/
|
|
19
|
-
import { default as q } from "./lib/components/
|
|
20
|
-
import { default as N } from "./lib/components/
|
|
21
|
-
import { default as E } from "./lib/components/
|
|
22
|
-
import { default as K } 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 te } from "./lib/components/
|
|
29
|
-
import { default as
|
|
30
|
-
import { default as le } from "./lib/components/
|
|
31
|
-
import { default as
|
|
32
|
-
import { default as me } 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
|
|
38
|
-
import { default as
|
|
39
|
-
import { default as
|
|
40
|
-
import { default as
|
|
41
|
-
import { default as
|
|
42
|
-
import { default as
|
|
43
|
-
import { default as Me } from "./lib/components/
|
|
44
|
-
import { default as ve } from "./lib/components/
|
|
45
|
-
import { default as Ge } from "./lib/components/
|
|
46
|
-
import { default as qe } from "./lib/components/
|
|
47
|
-
import { default as Ne } from "./lib/components/
|
|
48
|
-
import { default as Ee } from "./lib/components/
|
|
49
|
-
import { default as Ke } 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 er } from "./lib/components/
|
|
55
|
-
import { default as tr } from "./lib/components/
|
|
56
|
-
import { default as
|
|
57
|
-
import {
|
|
58
|
-
import { default as
|
|
59
|
-
import {
|
|
7
|
+
import { default as i } from "./lib/components/ButtonTileWrapper.vue.js";
|
|
8
|
+
import { default as T } from "./lib/components/CarouselWrapper.vue.js";
|
|
9
|
+
import { default as S } from "./lib/components/CheckboxWrapperWrapper.vue.js";
|
|
10
|
+
import { default as b } from "./lib/components/ContentWrapperWrapper.vue.js";
|
|
11
|
+
import { default as C } from "./lib/components/CrestWrapper.vue.js";
|
|
12
|
+
import { default as W } from "./lib/components/DisplayWrapper.vue.js";
|
|
13
|
+
import { default as H } from "./lib/components/DividerWrapper.vue.js";
|
|
14
|
+
import { default as y } from "./lib/components/FieldsetWrapper.vue.js";
|
|
15
|
+
import { default as h } from "./lib/components/FieldsetWrapperWrapper.vue.js";
|
|
16
|
+
import { default as M } from "./lib/components/FlexWrapper.vue.js";
|
|
17
|
+
import { default as v } from "./lib/components/FlexItemWrapper.vue.js";
|
|
18
|
+
import { default as G } from "./lib/components/GridWrapper.vue.js";
|
|
19
|
+
import { default as q } from "./lib/components/GridItemWrapper.vue.js";
|
|
20
|
+
import { default as N } from "./lib/components/HeadingWrapper.vue.js";
|
|
21
|
+
import { default as E } from "./lib/components/HeadlineWrapper.vue.js";
|
|
22
|
+
import { default as K } from "./lib/components/IconWrapper.vue.js";
|
|
23
|
+
import { default as Q } from "./lib/components/InlineNotificationWrapper.vue.js";
|
|
24
|
+
import { default as V } from "./lib/components/LinkWrapper.vue.js";
|
|
25
|
+
import { default as Y } from "./lib/components/LinkPureWrapper.vue.js";
|
|
26
|
+
import { default as _ } from "./lib/components/LinkSocialWrapper.vue.js";
|
|
27
|
+
import { default as ee } from "./lib/components/LinkTileWrapper.vue.js";
|
|
28
|
+
import { default as te } from "./lib/components/LinkTileModelSignatureWrapper.vue.js";
|
|
29
|
+
import { default as ae } from "./lib/components/MarqueWrapper.vue.js";
|
|
30
|
+
import { default as le } from "./lib/components/ModalWrapper.vue.js";
|
|
31
|
+
import { default as pe } from "./lib/components/ModelSignatureWrapper.vue.js";
|
|
32
|
+
import { default as me } from "./lib/components/PaginationWrapper.vue.js";
|
|
33
|
+
import { default as xe } from "./lib/components/PopoverWrapper.vue.js";
|
|
34
|
+
import { default as ie } from "./lib/components/RadioButtonWrapperWrapper.vue.js";
|
|
35
|
+
import { default as Te } from "./lib/components/ScrollerWrapper.vue.js";
|
|
36
|
+
import { default as Se } from "./lib/components/SegmentedControlWrapper.vue.js";
|
|
37
|
+
import { default as be } from "./lib/components/SegmentedControlItemWrapper.vue.js";
|
|
38
|
+
import { default as Ce } from "./lib/components/SelectWrapperWrapper.vue.js";
|
|
39
|
+
import { default as We } from "./lib/components/SpinnerWrapper.vue.js";
|
|
40
|
+
import { default as He } from "./lib/components/StepperHorizontalWrapper.vue.js";
|
|
41
|
+
import { default as ye } from "./lib/components/StepperHorizontalItemWrapper.vue.js";
|
|
42
|
+
import { default as he } from "./lib/components/SwitchWrapper.vue.js";
|
|
43
|
+
import { default as Me } from "./lib/components/TableWrapper.vue.js";
|
|
44
|
+
import { default as ve } from "./lib/components/TableBodyWrapper.vue.js";
|
|
45
|
+
import { default as Ge } from "./lib/components/TableCellWrapper.vue.js";
|
|
46
|
+
import { default as qe } from "./lib/components/TableHeadWrapper.vue.js";
|
|
47
|
+
import { default as Ne } from "./lib/components/TableHeadCellWrapper.vue.js";
|
|
48
|
+
import { default as Ee } from "./lib/components/TableHeadRowWrapper.vue.js";
|
|
49
|
+
import { default as Ke } from "./lib/components/TableRowWrapper.vue.js";
|
|
50
|
+
import { default as Qe } from "./lib/components/TabsWrapper.vue.js";
|
|
51
|
+
import { default as Ve } from "./lib/components/TabsBarWrapper.vue.js";
|
|
52
|
+
import { default as Ye } from "./lib/components/TabsItemWrapper.vue.js";
|
|
53
|
+
import { default as _e } from "./lib/components/TagWrapper.vue.js";
|
|
54
|
+
import { default as er } from "./lib/components/TagDismissibleWrapper.vue.js";
|
|
55
|
+
import { default as tr } from "./lib/components/TextWrapper.vue.js";
|
|
56
|
+
import { default as ar } from "./lib/components/TextFieldWrapperWrapper.vue.js";
|
|
57
|
+
import { default as lr } from "./lib/components/TextListWrapper.vue.js";
|
|
58
|
+
import { default as pr } from "./lib/components/TextListItemWrapper.vue.js";
|
|
59
|
+
import { default as mr } from "./lib/components/TextareaWrapperWrapper.vue.js";
|
|
60
|
+
import { default as xr } from "./lib/components/ToastWrapper.vue.js";
|
|
61
|
+
import { default as ir } from "./lib/components/WordmarkWrapper.vue.js";
|
|
62
|
+
import { useToastManager as Tr } from "./utils.js";
|
|
63
|
+
import { default as Sr } from "./PorscheDesignSystemProvider.vue.js";
|
|
64
|
+
import { createPorscheDesignSystem as br, usePorscheDesignSystemPlugin as Br } from "./plugin.js";
|
|
60
65
|
export {
|
|
61
|
-
|
|
66
|
+
a as PAccordion,
|
|
62
67
|
l as PBanner,
|
|
63
|
-
|
|
68
|
+
p as PButton,
|
|
64
69
|
m as PButtonGroup,
|
|
65
70
|
x as PButtonPure,
|
|
66
|
-
i as
|
|
67
|
-
T as
|
|
68
|
-
S as
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
M as
|
|
76
|
-
v as
|
|
77
|
-
G as
|
|
78
|
-
q as
|
|
79
|
-
N as
|
|
80
|
-
E as
|
|
81
|
-
K as
|
|
82
|
-
Q as
|
|
83
|
-
V as
|
|
84
|
-
Y as
|
|
85
|
-
_ as
|
|
86
|
-
ee as
|
|
87
|
-
te as
|
|
88
|
-
|
|
89
|
-
le as
|
|
90
|
-
|
|
91
|
-
me as
|
|
92
|
-
xe as
|
|
93
|
-
ie as
|
|
94
|
-
Te as
|
|
95
|
-
Se as
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
Me as
|
|
103
|
-
ve as
|
|
104
|
-
Ge as
|
|
105
|
-
qe as
|
|
106
|
-
Ne as
|
|
107
|
-
Ee as
|
|
108
|
-
Ke as
|
|
109
|
-
Qe as
|
|
110
|
-
Ve as
|
|
111
|
-
Ye as
|
|
112
|
-
_e as
|
|
113
|
-
er as
|
|
114
|
-
tr as
|
|
115
|
-
|
|
116
|
-
|
|
71
|
+
i as PButtonTile,
|
|
72
|
+
T as PCarousel,
|
|
73
|
+
S as PCheckboxWrapper,
|
|
74
|
+
b as PContentWrapper,
|
|
75
|
+
C as PCrest,
|
|
76
|
+
W as PDisplay,
|
|
77
|
+
H as PDivider,
|
|
78
|
+
y as PFieldset,
|
|
79
|
+
h as PFieldsetWrapper,
|
|
80
|
+
M as PFlex,
|
|
81
|
+
v as PFlexItem,
|
|
82
|
+
G as PGrid,
|
|
83
|
+
q as PGridItem,
|
|
84
|
+
N as PHeading,
|
|
85
|
+
E as PHeadline,
|
|
86
|
+
K as PIcon,
|
|
87
|
+
Q as PInlineNotification,
|
|
88
|
+
V as PLink,
|
|
89
|
+
Y as PLinkPure,
|
|
90
|
+
_ as PLinkSocial,
|
|
91
|
+
ee as PLinkTile,
|
|
92
|
+
te as PLinkTileModelSignature,
|
|
93
|
+
ae as PMarque,
|
|
94
|
+
le as PModal,
|
|
95
|
+
pe as PModelSignature,
|
|
96
|
+
me as PPagination,
|
|
97
|
+
xe as PPopover,
|
|
98
|
+
ie as PRadioButtonWrapper,
|
|
99
|
+
Te as PScroller,
|
|
100
|
+
Se as PSegmentedControl,
|
|
101
|
+
be as PSegmentedControlItem,
|
|
102
|
+
Ce as PSelectWrapper,
|
|
103
|
+
We as PSpinner,
|
|
104
|
+
He as PStepperHorizontal,
|
|
105
|
+
ye as PStepperHorizontalItem,
|
|
106
|
+
he as PSwitch,
|
|
107
|
+
Me as PTable,
|
|
108
|
+
ve as PTableBody,
|
|
109
|
+
Ge as PTableCell,
|
|
110
|
+
qe as PTableHead,
|
|
111
|
+
Ne as PTableHeadCell,
|
|
112
|
+
Ee as PTableHeadRow,
|
|
113
|
+
Ke as PTableRow,
|
|
114
|
+
Qe as PTabs,
|
|
115
|
+
Ve as PTabsBar,
|
|
116
|
+
Ye as PTabsItem,
|
|
117
|
+
_e as PTag,
|
|
118
|
+
er as PTagDismissible,
|
|
119
|
+
tr as PText,
|
|
120
|
+
ar as PTextFieldWrapper,
|
|
121
|
+
lr as PTextList,
|
|
122
|
+
pr as PTextListItem,
|
|
123
|
+
mr as PTextareaWrapper,
|
|
124
|
+
xr as PToast,
|
|
125
|
+
ir as PWordmark,
|
|
126
|
+
Sr as PorscheDesignSystemProvider,
|
|
117
127
|
t as componentsReady,
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
128
|
+
br as createPorscheDesignSystem,
|
|
129
|
+
Br as usePorscheDesignSystemPlugin,
|
|
130
|
+
Tr as useToastManager
|
|
121
131
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '@porsche-design-system/components-js/styles';
|
package/styles/scss.scss
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
@import '~@porsche-design-system/components-js/styles/scss';
|