@porsche-design-system/components-angular 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/esm2020/lib/components/banner.wrapper.mjs +1 -1
- package/esm2020/lib/components/barrel.mjs +17 -2
- package/esm2020/lib/components/button-tile.wrapper.mjs +35 -0
- package/esm2020/lib/components/carousel.wrapper.mjs +3 -3
- package/esm2020/lib/components/crest.wrapper.mjs +35 -0
- package/esm2020/lib/components/fieldset-wrapper.wrapper.mjs +2 -1
- package/esm2020/lib/components/fieldset.wrapper.mjs +35 -0
- package/esm2020/lib/components/link-tile-model-signature.wrapper.mjs +35 -0
- package/esm2020/lib/components/marque.wrapper.mjs +2 -1
- package/esm2020/lib/components/scroller.wrapper.mjs +3 -3
- package/esm2020/lib/components/table.wrapper.mjs +3 -3
- package/esm2020/lib/components/wordmark.wrapper.mjs +35 -0
- package/esm2020/lib/types.mjs +1 -1
- package/esm2020/porsche-design-system.module.mjs +57 -52
- package/fesm2015/porsche-design-system-components-angular.mjs +447 -265
- package/fesm2015/porsche-design-system-components-angular.mjs.map +1 -1
- package/fesm2020/porsche-design-system-components-angular.mjs +427 -265
- package/fesm2020/porsche-design-system-components-angular.mjs.map +1 -1
- package/lib/components/banner.wrapper.d.ts +1 -0
- package/lib/components/barrel.d.ts +11 -1
- package/lib/components/button-tile.wrapper.d.ts +24 -0
- package/lib/components/carousel.wrapper.d.ts +3 -2
- package/lib/components/crest.wrapper.d.ts +13 -0
- package/lib/components/fieldset-wrapper.wrapper.d.ts +1 -0
- package/lib/components/fieldset.wrapper.d.ts +16 -0
- package/lib/components/link-tile-model-signature.wrapper.d.ts +17 -0
- package/lib/components/marque.wrapper.d.ts +1 -0
- package/lib/components/scroller.wrapper.d.ts +2 -1
- package/lib/components/table.wrapper.d.ts +3 -2
- package/lib/components/wordmark.wrapper.d.ts +15 -0
- package/lib/types.d.ts +89 -43
- package/package.json +2 -2
- package/porsche-design-system.module.d.ts +56 -51
- package/styles/_index.scss +1 -0
- package/styles/scss.scss +0 -1
|
@@ -3,11 +3,14 @@ import { PBanner } from './banner.wrapper';
|
|
|
3
3
|
import { PButton } from './button.wrapper';
|
|
4
4
|
import { PButtonGroup } from './button-group.wrapper';
|
|
5
5
|
import { PButtonPure } from './button-pure.wrapper';
|
|
6
|
+
import { PButtonTile } from './button-tile.wrapper';
|
|
6
7
|
import { PCarousel } from './carousel.wrapper';
|
|
7
8
|
import { PCheckboxWrapper } from './checkbox-wrapper.wrapper';
|
|
8
9
|
import { PContentWrapper } from './content-wrapper.wrapper';
|
|
10
|
+
import { PCrest } from './crest.wrapper';
|
|
9
11
|
import { PDisplay } from './display.wrapper';
|
|
10
12
|
import { PDivider } from './divider.wrapper';
|
|
13
|
+
import { PFieldset } from './fieldset.wrapper';
|
|
11
14
|
import { PFieldsetWrapper } from './fieldset-wrapper.wrapper';
|
|
12
15
|
import { PFlex } from './flex.wrapper';
|
|
13
16
|
import { PFlexItem } from './flex-item.wrapper';
|
|
@@ -21,6 +24,7 @@ import { PLink } from './link.wrapper';
|
|
|
21
24
|
import { PLinkPure } from './link-pure.wrapper';
|
|
22
25
|
import { PLinkSocial } from './link-social.wrapper';
|
|
23
26
|
import { PLinkTile } from './link-tile.wrapper';
|
|
27
|
+
import { PLinkTileModelSignature } from './link-tile-model-signature.wrapper';
|
|
24
28
|
import { PMarque } from './marque.wrapper';
|
|
25
29
|
import { PModal } from './modal.wrapper';
|
|
26
30
|
import { PModelSignature } from './model-signature.wrapper';
|
|
@@ -53,17 +57,21 @@ import { PTextList } from './text-list.wrapper';
|
|
|
53
57
|
import { PTextListItem } from './text-list-item.wrapper';
|
|
54
58
|
import { PTextareaWrapper } from './textarea-wrapper.wrapper';
|
|
55
59
|
import { PToast } from './toast.wrapper';
|
|
56
|
-
|
|
60
|
+
import { PWordmark } from './wordmark.wrapper';
|
|
61
|
+
export declare const DECLARATIONS: (typeof PAccordion | typeof PBanner | typeof PButton | typeof PButtonGroup | typeof PButtonPure | typeof PButtonTile | typeof PCarousel | typeof PCheckboxWrapper | typeof PContentWrapper | typeof PCrest | typeof PDisplay | typeof PDivider | typeof PFieldset | typeof PFieldsetWrapper | typeof PFlex | typeof PFlexItem | typeof PGrid | typeof PGridItem | typeof PHeading | typeof PHeadline | typeof PIcon | typeof PInlineNotification | typeof PLink | typeof PLinkPure | typeof PLinkSocial | typeof PLinkTile | typeof PLinkTileModelSignature | typeof PMarque | typeof PModal | typeof PModelSignature | typeof PPagination | typeof PPopover | typeof PRadioButtonWrapper | typeof PScroller | typeof PSegmentedControl | typeof PSegmentedControlItem | typeof PSelectWrapper | typeof PSpinner | typeof PStepperHorizontal | typeof PStepperHorizontalItem | typeof PSwitch | typeof PTable | typeof PTableBody | typeof PTableCell | typeof PTableHead | typeof PTableHeadCell | typeof PTableHeadRow | typeof PTableRow | typeof PTabs | typeof PTabsBar | typeof PTabsItem | typeof PTag | typeof PTagDismissible | typeof PText | typeof PTextFieldWrapper | typeof PTextList | typeof PTextListItem | typeof PTextareaWrapper | typeof PToast | typeof PWordmark)[];
|
|
57
62
|
export * from './accordion.wrapper';
|
|
58
63
|
export * from './banner.wrapper';
|
|
59
64
|
export * from './button.wrapper';
|
|
60
65
|
export * from './button-group.wrapper';
|
|
61
66
|
export * from './button-pure.wrapper';
|
|
67
|
+
export * from './button-tile.wrapper';
|
|
62
68
|
export * from './carousel.wrapper';
|
|
63
69
|
export * from './checkbox-wrapper.wrapper';
|
|
64
70
|
export * from './content-wrapper.wrapper';
|
|
71
|
+
export * from './crest.wrapper';
|
|
65
72
|
export * from './display.wrapper';
|
|
66
73
|
export * from './divider.wrapper';
|
|
74
|
+
export * from './fieldset.wrapper';
|
|
67
75
|
export * from './fieldset-wrapper.wrapper';
|
|
68
76
|
export * from './flex.wrapper';
|
|
69
77
|
export * from './flex-item.wrapper';
|
|
@@ -77,6 +85,7 @@ export * from './link.wrapper';
|
|
|
77
85
|
export * from './link-pure.wrapper';
|
|
78
86
|
export * from './link-social.wrapper';
|
|
79
87
|
export * from './link-tile.wrapper';
|
|
88
|
+
export * from './link-tile-model-signature.wrapper';
|
|
80
89
|
export * from './marque.wrapper';
|
|
81
90
|
export * from './modal.wrapper';
|
|
82
91
|
export * from './model-signature.wrapper';
|
|
@@ -109,3 +118,4 @@ export * from './text-list.wrapper';
|
|
|
109
118
|
export * from './text-list-item.wrapper';
|
|
110
119
|
export * from './textarea-wrapper.wrapper';
|
|
111
120
|
export * from './toast.wrapper';
|
|
121
|
+
export * from './wordmark.wrapper';
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, NgZone } from '@angular/core';
|
|
2
|
+
import type { ButtonTileAlign, SelectedAriaAttributes, ButtonTileAriaAttribute, BreakpointCustomizable, ButtonTileAspectRatio, ButtonTileIcon, ButtonTileSize, ButtonTileType, ButtonTileWeight } from '../types';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PButtonTile {
|
|
5
|
+
protected z: NgZone;
|
|
6
|
+
protected el: HTMLElement;
|
|
7
|
+
align: ButtonTileAlign;
|
|
8
|
+
aria: SelectedAriaAttributes<ButtonTileAriaAttribute>;
|
|
9
|
+
aspectRatio: BreakpointCustomizable<ButtonTileAspectRatio>;
|
|
10
|
+
compact: BreakpointCustomizable<boolean>;
|
|
11
|
+
description: string;
|
|
12
|
+
disabled: boolean;
|
|
13
|
+
gradient: boolean;
|
|
14
|
+
icon: ButtonTileIcon;
|
|
15
|
+
iconSource: string;
|
|
16
|
+
label: string;
|
|
17
|
+
loading: boolean;
|
|
18
|
+
size: BreakpointCustomizable<ButtonTileSize>;
|
|
19
|
+
type: ButtonTileType;
|
|
20
|
+
weight: BreakpointCustomizable<ButtonTileWeight>;
|
|
21
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PButtonTile, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PButtonTile, "p-button-tile,[p-button-tile]", never, { "align": "align"; "aria": "aria"; "aspectRatio": "aspectRatio"; "compact": "compact"; "description": "description"; "disabled": "disabled"; "gradient": "gradient"; "icon": "icon"; "iconSource": "iconSource"; "label": "label"; "loading": "loading"; "size": "size"; "type": "type"; "weight": "weight"; }, {}, never, ["*"]>;
|
|
24
|
+
}
|
|
@@ -4,6 +4,7 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
export declare class PCarousel {
|
|
5
5
|
protected z: NgZone;
|
|
6
6
|
protected el: HTMLElement;
|
|
7
|
+
activeSlideIndex: number;
|
|
7
8
|
alignHeader: CarouselAlignHeader;
|
|
8
9
|
description: string;
|
|
9
10
|
/** @deprecated */
|
|
@@ -12,7 +13,7 @@ export declare class PCarousel {
|
|
|
12
13
|
intl: CarouselInternationalization;
|
|
13
14
|
pagination: BreakpointCustomizable<boolean>;
|
|
14
15
|
rewind: boolean;
|
|
15
|
-
slidesPerPage: BreakpointCustomizable<number
|
|
16
|
+
slidesPerPage: BreakpointCustomizable<number> | "auto";
|
|
16
17
|
theme: Theme;
|
|
17
18
|
width: CarouselWidth;
|
|
18
19
|
/** @deprecated */
|
|
@@ -22,5 +23,5 @@ export declare class PCarousel {
|
|
|
22
23
|
change: EventEmitter<CustomEvent<CarouselChangeEvent>>;
|
|
23
24
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
24
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<PCarousel, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PCarousel, "p-carousel,[p-carousel]", never, { "alignHeader": "alignHeader"; "description": "description"; "disablePagination": "disablePagination"; "heading": "heading"; "intl": "intl"; "pagination": "pagination"; "rewind": "rewind"; "slidesPerPage": "slidesPerPage"; "theme": "theme"; "width": "width"; "wrapContent": "wrapContent"; }, { "carouselChange": "carouselChange"; "change": "change"; }, never, ["*"]>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCarousel, "p-carousel,[p-carousel]", never, { "activeSlideIndex": "activeSlideIndex"; "alignHeader": "alignHeader"; "description": "description"; "disablePagination": "disablePagination"; "heading": "heading"; "intl": "intl"; "pagination": "pagination"; "rewind": "rewind"; "slidesPerPage": "slidesPerPage"; "theme": "theme"; "width": "width"; "wrapContent": "wrapContent"; }, { "carouselChange": "carouselChange"; "change": "change"; }, never, ["*"]>;
|
|
26
27
|
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, NgZone } from '@angular/core';
|
|
2
|
+
import type { SelectedAriaAttributes, CrestAriaAttribute, CrestTarget } from '../types';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PCrest {
|
|
5
|
+
protected z: NgZone;
|
|
6
|
+
protected el: HTMLElement;
|
|
7
|
+
aria: SelectedAriaAttributes<CrestAriaAttribute>;
|
|
8
|
+
href: string;
|
|
9
|
+
target: CrestTarget;
|
|
10
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PCrest, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCrest, "p-crest,[p-crest]", never, { "aria": "aria"; "href": "href"; "target": "target"; }, {}, never, ["*"]>;
|
|
13
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, NgZone } from '@angular/core';
|
|
2
2
|
import type { FieldsetWrapperLabelSize, FieldsetWrapperState, Theme } from '../types';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
+
/** @deprecated since v3.0.0, will be removed with next major release. Please use "p-fieldset" instead. */
|
|
4
5
|
export declare class PFieldsetWrapper {
|
|
5
6
|
protected z: NgZone;
|
|
6
7
|
protected el: HTMLElement;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, NgZone } from '@angular/core';
|
|
2
|
+
import type { FieldsetLabelSize, FieldsetState, Theme } from '../types';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PFieldset {
|
|
5
|
+
protected z: NgZone;
|
|
6
|
+
protected el: HTMLElement;
|
|
7
|
+
label: string;
|
|
8
|
+
labelSize: FieldsetLabelSize;
|
|
9
|
+
message: string;
|
|
10
|
+
required: boolean;
|
|
11
|
+
state: FieldsetState;
|
|
12
|
+
theme: Theme;
|
|
13
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PFieldset, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PFieldset, "p-fieldset,[p-fieldset]", never, { "label": "label"; "labelSize": "labelSize"; "message": "message"; "required": "required"; "state": "state"; "theme": "theme"; }, {}, never, ["*"]>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, NgZone } from '@angular/core';
|
|
2
|
+
import type { BreakpointCustomizable, LinkTileModelSignatureAspectRatio, LinkTileModelSignatureHeadingTag, LinkTileModelSignatureLinkDirection, LinkTileModelSignatureModel, LinkTileModelSignatureWeight } from '../types';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PLinkTileModelSignature {
|
|
5
|
+
protected z: NgZone;
|
|
6
|
+
protected el: HTMLElement;
|
|
7
|
+
aspectRatio: BreakpointCustomizable<LinkTileModelSignatureAspectRatio>;
|
|
8
|
+
description: string;
|
|
9
|
+
heading: string;
|
|
10
|
+
headingTag: LinkTileModelSignatureHeadingTag;
|
|
11
|
+
linkDirection: BreakpointCustomizable<LinkTileModelSignatureLinkDirection>;
|
|
12
|
+
model: LinkTileModelSignatureModel;
|
|
13
|
+
weight: BreakpointCustomizable<LinkTileModelSignatureWeight>;
|
|
14
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PLinkTileModelSignature, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PLinkTileModelSignature, "p-link-tile-model-signature,[p-link-tile-model-signature]", never, { "aspectRatio": "aspectRatio"; "description": "description"; "heading": "heading"; "headingTag": "headingTag"; "linkDirection": "linkDirection"; "model": "model"; "weight": "weight"; }, {}, never, ["*"]>;
|
|
17
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, NgZone } from '@angular/core';
|
|
2
2
|
import type { SelectedAriaAttributes, MarqueAriaAttribute, MarqueSize, MarqueTarget } from '../types';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
+
/** @deprecated since v3.0.0, will be removed with next major release. Please use "p-wordmark" instead. */
|
|
4
5
|
export declare class PMarque {
|
|
5
6
|
protected z: NgZone;
|
|
6
7
|
protected el: HTMLElement;
|
|
@@ -11,8 +11,9 @@ export declare class PScroller {
|
|
|
11
11
|
/** @deprecated */
|
|
12
12
|
scrollIndicatorPosition: ScrollerScrollIndicatorPosition;
|
|
13
13
|
scrollToPosition: ScrollerScrollToPosition;
|
|
14
|
+
scrollbar: boolean;
|
|
14
15
|
theme: Theme;
|
|
15
16
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
16
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<PScroller, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PScroller, "p-scroller,[p-scroller]", never, { "alignScrollIndicator": "alignScrollIndicator"; "gradientColor": "gradientColor"; "gradientColorScheme": "gradientColorScheme"; "scrollIndicatorPosition": "scrollIndicatorPosition"; "scrollToPosition": "scrollToPosition"; "theme": "theme"; }, {}, never, ["*"]>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PScroller, "p-scroller,[p-scroller]", never, { "alignScrollIndicator": "alignScrollIndicator"; "gradientColor": "gradientColor"; "gradientColorScheme": "gradientColorScheme"; "scrollIndicatorPosition": "scrollIndicatorPosition"; "scrollToPosition": "scrollToPosition"; "scrollbar": "scrollbar"; "theme": "theme"; }, {}, never, ["*"]>;
|
|
18
19
|
}
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
|
|
2
|
-
import type { TableChangeEvent } from '../types';
|
|
2
|
+
import type { TableChangeEvent, Theme } from '../types';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class PTable {
|
|
5
5
|
protected z: NgZone;
|
|
6
6
|
protected el: HTMLElement;
|
|
7
7
|
caption: string;
|
|
8
|
+
theme: Theme;
|
|
8
9
|
change: EventEmitter<CustomEvent<TableChangeEvent>>;
|
|
9
10
|
/** @deprecated */
|
|
10
11
|
sortingChange: EventEmitter<CustomEvent<TableChangeEvent>>;
|
|
11
12
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
12
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTable, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTable, "p-table,[p-table]", never, { "caption": "caption"; }, { "change": "change"; "sortingChange": "sortingChange"; }, never, ["*"]>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTable, "p-table,[p-table]", never, { "caption": "caption"; "theme": "theme"; }, { "change": "change"; "sortingChange": "sortingChange"; }, never, ["*"]>;
|
|
14
15
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, NgZone } from '@angular/core';
|
|
2
|
+
import type { SelectedAriaAttributes, WordmarkAriaAttribute, WordmarkSize, WordmarkTarget, Theme } from '../types';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PWordmark {
|
|
5
|
+
protected z: NgZone;
|
|
6
|
+
protected el: HTMLElement;
|
|
7
|
+
aria: SelectedAriaAttributes<WordmarkAriaAttribute>;
|
|
8
|
+
href: string;
|
|
9
|
+
size: WordmarkSize;
|
|
10
|
+
target: WordmarkTarget;
|
|
11
|
+
theme: Theme;
|
|
12
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PWordmark, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PWordmark, "p-wordmark,[p-wordmark]", never, { "aria": "aria"; "href": "href"; "size": "size"; "target": "target"; "theme": "theme"; }, {}, never, ["*"]>;
|
|
15
|
+
}
|
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-angular",
|
|
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
|
"tslib": "^2.5.0"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
@@ -5,56 +5,61 @@ import * as i2 from "./lib/components/banner.wrapper";
|
|
|
5
5
|
import * as i3 from "./lib/components/button.wrapper";
|
|
6
6
|
import * as i4 from "./lib/components/button-group.wrapper";
|
|
7
7
|
import * as i5 from "./lib/components/button-pure.wrapper";
|
|
8
|
-
import * as i6 from "./lib/components/
|
|
9
|
-
import * as i7 from "./lib/components/
|
|
10
|
-
import * as i8 from "./lib/components/
|
|
11
|
-
import * as i9 from "./lib/components/
|
|
12
|
-
import * as i10 from "./lib/components/
|
|
13
|
-
import * as i11 from "./lib/components/
|
|
14
|
-
import * as i12 from "./lib/components/
|
|
15
|
-
import * as i13 from "./lib/components/
|
|
16
|
-
import * as i14 from "./lib/components/
|
|
17
|
-
import * as i15 from "./lib/components/
|
|
18
|
-
import * as i16 from "./lib/components/
|
|
19
|
-
import * as i17 from "./lib/components/
|
|
20
|
-
import * as i18 from "./lib/components/
|
|
21
|
-
import * as i19 from "./lib/components/
|
|
22
|
-
import * as i20 from "./lib/components/
|
|
23
|
-
import * as i21 from "./lib/components/
|
|
24
|
-
import * as i22 from "./lib/components/
|
|
25
|
-
import * as i23 from "./lib/components/link
|
|
26
|
-
import * as i24 from "./lib/components/
|
|
27
|
-
import * as i25 from "./lib/components/
|
|
28
|
-
import * as i26 from "./lib/components/
|
|
29
|
-
import * as i27 from "./lib/components/
|
|
30
|
-
import * as i28 from "./lib/components/
|
|
31
|
-
import * as i29 from "./lib/components/
|
|
32
|
-
import * as i30 from "./lib/components/
|
|
33
|
-
import * as i31 from "./lib/components/
|
|
34
|
-
import * as i32 from "./lib/components/
|
|
35
|
-
import * as i33 from "./lib/components/
|
|
36
|
-
import * as i34 from "./lib/components/
|
|
37
|
-
import * as i35 from "./lib/components/
|
|
38
|
-
import * as i36 from "./lib/components/
|
|
39
|
-
import * as i37 from "./lib/components/
|
|
40
|
-
import * as i38 from "./lib/components/
|
|
41
|
-
import * as i39 from "./lib/components/
|
|
42
|
-
import * as i40 from "./lib/components/
|
|
43
|
-
import * as i41 from "./lib/components/
|
|
44
|
-
import * as i42 from "./lib/components/table
|
|
45
|
-
import * as i43 from "./lib/components/table-
|
|
46
|
-
import * as i44 from "./lib/components/table-
|
|
47
|
-
import * as i45 from "./lib/components/
|
|
48
|
-
import * as i46 from "./lib/components/
|
|
49
|
-
import * as i47 from "./lib/components/
|
|
50
|
-
import * as i48 from "./lib/components/
|
|
51
|
-
import * as i49 from "./lib/components/
|
|
52
|
-
import * as i50 from "./lib/components/
|
|
53
|
-
import * as i51 from "./lib/components/
|
|
54
|
-
import * as i52 from "./lib/components/
|
|
55
|
-
import * as i53 from "./lib/components/
|
|
56
|
-
import * as i54 from "./lib/components/
|
|
57
|
-
import * as i55 from "./lib/components/
|
|
8
|
+
import * as i6 from "./lib/components/button-tile.wrapper";
|
|
9
|
+
import * as i7 from "./lib/components/carousel.wrapper";
|
|
10
|
+
import * as i8 from "./lib/components/checkbox-wrapper.wrapper";
|
|
11
|
+
import * as i9 from "./lib/components/content-wrapper.wrapper";
|
|
12
|
+
import * as i10 from "./lib/components/crest.wrapper";
|
|
13
|
+
import * as i11 from "./lib/components/display.wrapper";
|
|
14
|
+
import * as i12 from "./lib/components/divider.wrapper";
|
|
15
|
+
import * as i13 from "./lib/components/fieldset.wrapper";
|
|
16
|
+
import * as i14 from "./lib/components/fieldset-wrapper.wrapper";
|
|
17
|
+
import * as i15 from "./lib/components/flex.wrapper";
|
|
18
|
+
import * as i16 from "./lib/components/flex-item.wrapper";
|
|
19
|
+
import * as i17 from "./lib/components/grid.wrapper";
|
|
20
|
+
import * as i18 from "./lib/components/grid-item.wrapper";
|
|
21
|
+
import * as i19 from "./lib/components/heading.wrapper";
|
|
22
|
+
import * as i20 from "./lib/components/headline.wrapper";
|
|
23
|
+
import * as i21 from "./lib/components/icon.wrapper";
|
|
24
|
+
import * as i22 from "./lib/components/inline-notification.wrapper";
|
|
25
|
+
import * as i23 from "./lib/components/link.wrapper";
|
|
26
|
+
import * as i24 from "./lib/components/link-pure.wrapper";
|
|
27
|
+
import * as i25 from "./lib/components/link-social.wrapper";
|
|
28
|
+
import * as i26 from "./lib/components/link-tile.wrapper";
|
|
29
|
+
import * as i27 from "./lib/components/link-tile-model-signature.wrapper";
|
|
30
|
+
import * as i28 from "./lib/components/marque.wrapper";
|
|
31
|
+
import * as i29 from "./lib/components/modal.wrapper";
|
|
32
|
+
import * as i30 from "./lib/components/model-signature.wrapper";
|
|
33
|
+
import * as i31 from "./lib/components/pagination.wrapper";
|
|
34
|
+
import * as i32 from "./lib/components/popover.wrapper";
|
|
35
|
+
import * as i33 from "./lib/components/radio-button-wrapper.wrapper";
|
|
36
|
+
import * as i34 from "./lib/components/scroller.wrapper";
|
|
37
|
+
import * as i35 from "./lib/components/segmented-control.wrapper";
|
|
38
|
+
import * as i36 from "./lib/components/segmented-control-item.wrapper";
|
|
39
|
+
import * as i37 from "./lib/components/select-wrapper.wrapper";
|
|
40
|
+
import * as i38 from "./lib/components/spinner.wrapper";
|
|
41
|
+
import * as i39 from "./lib/components/stepper-horizontal.wrapper";
|
|
42
|
+
import * as i40 from "./lib/components/stepper-horizontal-item.wrapper";
|
|
43
|
+
import * as i41 from "./lib/components/switch.wrapper";
|
|
44
|
+
import * as i42 from "./lib/components/table.wrapper";
|
|
45
|
+
import * as i43 from "./lib/components/table-body.wrapper";
|
|
46
|
+
import * as i44 from "./lib/components/table-cell.wrapper";
|
|
47
|
+
import * as i45 from "./lib/components/table-head.wrapper";
|
|
48
|
+
import * as i46 from "./lib/components/table-head-cell.wrapper";
|
|
49
|
+
import * as i47 from "./lib/components/table-head-row.wrapper";
|
|
50
|
+
import * as i48 from "./lib/components/table-row.wrapper";
|
|
51
|
+
import * as i49 from "./lib/components/tabs.wrapper";
|
|
52
|
+
import * as i50 from "./lib/components/tabs-bar.wrapper";
|
|
53
|
+
import * as i51 from "./lib/components/tabs-item.wrapper";
|
|
54
|
+
import * as i52 from "./lib/components/tag.wrapper";
|
|
55
|
+
import * as i53 from "./lib/components/tag-dismissible.wrapper";
|
|
56
|
+
import * as i54 from "./lib/components/text.wrapper";
|
|
57
|
+
import * as i55 from "./lib/components/text-field-wrapper.wrapper";
|
|
58
|
+
import * as i56 from "./lib/components/text-list.wrapper";
|
|
59
|
+
import * as i57 from "./lib/components/text-list-item.wrapper";
|
|
60
|
+
import * as i58 from "./lib/components/textarea-wrapper.wrapper";
|
|
61
|
+
import * as i59 from "./lib/components/toast.wrapper";
|
|
62
|
+
import * as i60 from "./lib/components/wordmark.wrapper";
|
|
58
63
|
export declare type PorscheDesignSystemModuleConfig = {
|
|
59
64
|
prefix?: string;
|
|
60
65
|
};
|
|
@@ -65,6 +70,6 @@ export declare class PorscheDesignSystemModule {
|
|
|
65
70
|
constructor(configParam: DefaultConfig);
|
|
66
71
|
static load(config: PorscheDesignSystemModuleConfig): ModuleWithProviders<PorscheDesignSystemModule>;
|
|
67
72
|
static ɵfac: i0.ɵɵFactoryDeclaration<PorscheDesignSystemModule, [{ optional: true; }]>;
|
|
68
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PorscheDesignSystemModule, [typeof i1.PAccordion, typeof i2.PBanner, typeof i3.PButton, typeof i4.PButtonGroup, typeof i5.PButtonPure, typeof i6.
|
|
73
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PorscheDesignSystemModule, [typeof i1.PAccordion, typeof i2.PBanner, typeof i3.PButton, typeof i4.PButtonGroup, typeof i5.PButtonPure, typeof i6.PButtonTile, typeof i7.PCarousel, typeof i8.PCheckboxWrapper, typeof i9.PContentWrapper, typeof i10.PCrest, typeof i11.PDisplay, typeof i12.PDivider, typeof i13.PFieldset, typeof i14.PFieldsetWrapper, typeof i15.PFlex, typeof i16.PFlexItem, typeof i17.PGrid, typeof i18.PGridItem, typeof i19.PHeading, typeof i20.PHeadline, typeof i21.PIcon, typeof i22.PInlineNotification, typeof i23.PLink, typeof i24.PLinkPure, typeof i25.PLinkSocial, typeof i26.PLinkTile, typeof i27.PLinkTileModelSignature, typeof i28.PMarque, typeof i29.PModal, typeof i30.PModelSignature, typeof i31.PPagination, typeof i32.PPopover, typeof i33.PRadioButtonWrapper, typeof i34.PScroller, typeof i35.PSegmentedControl, typeof i36.PSegmentedControlItem, typeof i37.PSelectWrapper, typeof i38.PSpinner, typeof i39.PStepperHorizontal, typeof i40.PStepperHorizontalItem, typeof i41.PSwitch, typeof i42.PTable, typeof i43.PTableBody, typeof i44.PTableCell, typeof i45.PTableHead, typeof i46.PTableHeadCell, typeof i47.PTableHeadRow, typeof i48.PTableRow, typeof i49.PTabs, typeof i50.PTabsBar, typeof i51.PTabsItem, typeof i52.PTag, typeof i53.PTagDismissible, typeof i54.PText, typeof i55.PTextFieldWrapper, typeof i56.PTextList, typeof i57.PTextListItem, typeof i58.PTextareaWrapper, typeof i59.PToast, typeof i60.PWordmark], never, [typeof i1.PAccordion, typeof i2.PBanner, typeof i3.PButton, typeof i4.PButtonGroup, typeof i5.PButtonPure, typeof i6.PButtonTile, typeof i7.PCarousel, typeof i8.PCheckboxWrapper, typeof i9.PContentWrapper, typeof i10.PCrest, typeof i11.PDisplay, typeof i12.PDivider, typeof i13.PFieldset, typeof i14.PFieldsetWrapper, typeof i15.PFlex, typeof i16.PFlexItem, typeof i17.PGrid, typeof i18.PGridItem, typeof i19.PHeading, typeof i20.PHeadline, typeof i21.PIcon, typeof i22.PInlineNotification, typeof i23.PLink, typeof i24.PLinkPure, typeof i25.PLinkSocial, typeof i26.PLinkTile, typeof i27.PLinkTileModelSignature, typeof i28.PMarque, typeof i29.PModal, typeof i30.PModelSignature, typeof i31.PPagination, typeof i32.PPopover, typeof i33.PRadioButtonWrapper, typeof i34.PScroller, typeof i35.PSegmentedControl, typeof i36.PSegmentedControlItem, typeof i37.PSelectWrapper, typeof i38.PSpinner, typeof i39.PStepperHorizontal, typeof i40.PStepperHorizontalItem, typeof i41.PSwitch, typeof i42.PTable, typeof i43.PTableBody, typeof i44.PTableCell, typeof i45.PTableHead, typeof i46.PTableHeadCell, typeof i47.PTableHeadRow, typeof i48.PTableRow, typeof i49.PTabs, typeof i50.PTabsBar, typeof i51.PTabsItem, typeof i52.PTag, typeof i53.PTagDismissible, typeof i54.PText, typeof i55.PTextFieldWrapper, typeof i56.PTextList, typeof i57.PTextListItem, typeof i58.PTextareaWrapper, typeof i59.PToast, typeof i60.PWordmark]>;
|
|
69
74
|
static ɵinj: i0.ɵɵInjectorDeclaration<PorscheDesignSystemModule>;
|
|
70
75
|
}
|
|
@@ -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';
|