@porsche-design-system/components-angular 3.0.0-alpha.4 → 3.0.0-alpha.6
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 +161 -16
- package/esm2020/lib/components/accordion.wrapper.mjs +3 -3
- package/esm2020/lib/components/banner.wrapper.mjs +3 -3
- package/esm2020/lib/components/barrel.mjs +8 -2
- package/esm2020/lib/components/carousel.wrapper.mjs +3 -3
- package/esm2020/lib/components/crest.wrapper.mjs +35 -0
- package/esm2020/lib/components/inline-notification.wrapper.mjs +3 -3
- package/esm2020/lib/components/marque.wrapper.mjs +2 -1
- package/esm2020/lib/components/pagination.wrapper.mjs +3 -3
- package/esm2020/lib/components/segmented-control.wrapper.mjs +3 -3
- package/esm2020/lib/components/stepper-horizontal.wrapper.mjs +3 -3
- package/esm2020/lib/components/switch.wrapper.mjs +3 -3
- package/esm2020/lib/components/table.wrapper.mjs +3 -3
- package/esm2020/lib/components/tabs-bar.wrapper.mjs +3 -3
- package/esm2020/lib/components/tabs.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 +53 -51
- package/fesm2015/porsche-design-system-components-angular.mjs +370 -297
- package/fesm2015/porsche-design-system-components-angular.mjs.map +1 -1
- package/fesm2020/porsche-design-system-components-angular.mjs +362 -297
- package/fesm2020/porsche-design-system-components-angular.mjs.map +1 -1
- package/lib/components/accordion.wrapper.d.ts +4 -4
- package/lib/components/banner.wrapper.d.ts +4 -1
- package/lib/components/barrel.d.ts +5 -1
- package/lib/components/carousel.wrapper.d.ts +4 -4
- package/lib/components/crest.wrapper.d.ts +13 -0
- package/lib/components/inline-notification.wrapper.d.ts +3 -1
- package/lib/components/marque.wrapper.d.ts +1 -0
- package/lib/components/pagination.wrapper.d.ts +4 -4
- package/lib/components/segmented-control.wrapper.d.ts +4 -4
- package/lib/components/stepper-horizontal.wrapper.d.ts +4 -4
- package/lib/components/switch.wrapper.d.ts +4 -4
- package/lib/components/table.wrapper.d.ts +4 -4
- package/lib/components/tabs-bar.wrapper.d.ts +4 -4
- package/lib/components/tabs.wrapper.d.ts +4 -4
- package/lib/components/wordmark.wrapper.d.ts +15 -0
- package/lib/types.d.ts +35 -19
- package/package.json +2 -2
- package/porsche-design-system.module.d.ts +52 -50
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
|
|
2
|
-
import type {
|
|
2
|
+
import type { AccordionUpdateEvent, BreakpointCustomizable, AccordionSize, AccordionTag, Theme } from '../types';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class PAccordion {
|
|
5
5
|
protected z: NgZone;
|
|
@@ -11,9 +11,9 @@ export declare class PAccordion {
|
|
|
11
11
|
tag: AccordionTag;
|
|
12
12
|
theme: Theme;
|
|
13
13
|
/** @deprecated */
|
|
14
|
-
accordionChange: EventEmitter<CustomEvent<
|
|
15
|
-
|
|
14
|
+
accordionChange: EventEmitter<CustomEvent<AccordionUpdateEvent>>;
|
|
15
|
+
update: EventEmitter<CustomEvent<AccordionUpdateEvent>>;
|
|
16
16
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<PAccordion, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PAccordion, "p-accordion,[p-accordion]", never, { "compact": "compact"; "heading": "heading"; "open": "open"; "size": "size"; "tag": "tag"; "theme": "theme"; }, { "accordionChange": "accordionChange"; "
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PAccordion, "p-accordion,[p-accordion]", never, { "compact": "compact"; "heading": "heading"; "open": "open"; "size": "size"; "tag": "tag"; "theme": "theme"; }, { "accordionChange": "accordionChange"; "update": "update"; }, never, ["*"]>;
|
|
19
19
|
}
|
|
@@ -5,7 +5,10 @@ export declare class PBanner {
|
|
|
5
5
|
protected z: NgZone;
|
|
6
6
|
protected el: HTMLElement;
|
|
7
7
|
description: string;
|
|
8
|
+
dismissButton: boolean;
|
|
8
9
|
heading: string;
|
|
10
|
+
open: boolean;
|
|
11
|
+
/** @deprecated */
|
|
9
12
|
persistent: boolean;
|
|
10
13
|
state: BannerState;
|
|
11
14
|
theme: Theme;
|
|
@@ -14,5 +17,5 @@ export declare class PBanner {
|
|
|
14
17
|
dismiss: EventEmitter<CustomEvent<void>>;
|
|
15
18
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
16
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<PBanner, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PBanner, "p-banner,[p-banner]", never, { "description": "description"; "heading": "heading"; "persistent": "persistent"; "state": "state"; "theme": "theme"; "width": "width"; }, { "dismiss": "dismiss"; }, never, ["*"]>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PBanner, "p-banner,[p-banner]", never, { "description": "description"; "dismissButton": "dismissButton"; "heading": "heading"; "open": "open"; "persistent": "persistent"; "state": "state"; "theme": "theme"; "width": "width"; }, { "dismiss": "dismiss"; }, never, ["*"]>;
|
|
18
21
|
}
|
|
@@ -7,6 +7,7 @@ import { PButtonTile } from './button-tile.wrapper';
|
|
|
7
7
|
import { PCarousel } from './carousel.wrapper';
|
|
8
8
|
import { PCheckboxWrapper } from './checkbox-wrapper.wrapper';
|
|
9
9
|
import { PContentWrapper } from './content-wrapper.wrapper';
|
|
10
|
+
import { PCrest } from './crest.wrapper';
|
|
10
11
|
import { PDisplay } from './display.wrapper';
|
|
11
12
|
import { PDivider } from './divider.wrapper';
|
|
12
13
|
import { PFieldset } from './fieldset.wrapper';
|
|
@@ -56,7 +57,8 @@ import { PTextList } from './text-list.wrapper';
|
|
|
56
57
|
import { PTextListItem } from './text-list-item.wrapper';
|
|
57
58
|
import { PTextareaWrapper } from './textarea-wrapper.wrapper';
|
|
58
59
|
import { PToast } from './toast.wrapper';
|
|
59
|
-
|
|
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)[];
|
|
60
62
|
export * from './accordion.wrapper';
|
|
61
63
|
export * from './banner.wrapper';
|
|
62
64
|
export * from './button.wrapper';
|
|
@@ -66,6 +68,7 @@ export * from './button-tile.wrapper';
|
|
|
66
68
|
export * from './carousel.wrapper';
|
|
67
69
|
export * from './checkbox-wrapper.wrapper';
|
|
68
70
|
export * from './content-wrapper.wrapper';
|
|
71
|
+
export * from './crest.wrapper';
|
|
69
72
|
export * from './display.wrapper';
|
|
70
73
|
export * from './divider.wrapper';
|
|
71
74
|
export * from './fieldset.wrapper';
|
|
@@ -115,3 +118,4 @@ export * from './text-list.wrapper';
|
|
|
115
118
|
export * from './text-list-item.wrapper';
|
|
116
119
|
export * from './textarea-wrapper.wrapper';
|
|
117
120
|
export * from './toast.wrapper';
|
|
121
|
+
export * from './wordmark.wrapper';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
|
|
2
|
-
import type { CarouselAlignHeader, BreakpointCustomizable, CarouselInternationalization,
|
|
2
|
+
import type { CarouselAlignHeader, BreakpointCustomizable, CarouselInternationalization, CarouselUpdateEvent, Theme, CarouselWidth } from '../types';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class PCarousel {
|
|
5
5
|
protected z: NgZone;
|
|
@@ -19,9 +19,9 @@ export declare class PCarousel {
|
|
|
19
19
|
/** @deprecated */
|
|
20
20
|
wrapContent: boolean;
|
|
21
21
|
/** @deprecated */
|
|
22
|
-
carouselChange: EventEmitter<CustomEvent<
|
|
23
|
-
|
|
22
|
+
carouselChange: EventEmitter<CustomEvent<CarouselUpdateEvent>>;
|
|
23
|
+
update: EventEmitter<CustomEvent<CarouselUpdateEvent>>;
|
|
24
24
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<PCarousel, 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"; "
|
|
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"; "update": "update"; }, never, ["*"]>;
|
|
27
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
|
+
}
|
|
@@ -8,7 +8,9 @@ export declare class PInlineNotification {
|
|
|
8
8
|
actionLabel: string;
|
|
9
9
|
actionLoading: boolean;
|
|
10
10
|
description: string;
|
|
11
|
+
dismissButton: boolean;
|
|
11
12
|
heading: string;
|
|
13
|
+
/** @deprecated */
|
|
12
14
|
persistent: boolean;
|
|
13
15
|
state: InlineNotificationState;
|
|
14
16
|
theme: Theme;
|
|
@@ -16,5 +18,5 @@ export declare class PInlineNotification {
|
|
|
16
18
|
dismiss: EventEmitter<CustomEvent<void>>;
|
|
17
19
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
18
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<PInlineNotification, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PInlineNotification, "p-inline-notification,[p-inline-notification]", never, { "actionIcon": "actionIcon"; "actionLabel": "actionLabel"; "actionLoading": "actionLoading"; "description": "description"; "heading": "heading"; "persistent": "persistent"; "state": "state"; "theme": "theme"; }, { "action": "action"; "dismiss": "dismiss"; }, never, ["*"]>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PInlineNotification, "p-inline-notification,[p-inline-notification]", never, { "actionIcon": "actionIcon"; "actionLabel": "actionLabel"; "actionLoading": "actionLoading"; "description": "description"; "dismissButton": "dismissButton"; "heading": "heading"; "persistent": "persistent"; "state": "state"; "theme": "theme"; }, { "action": "action"; "dismiss": "dismiss"; }, never, ["*"]>;
|
|
20
22
|
}
|
|
@@ -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;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
|
|
2
|
-
import type { PaginationInternationalization, BreakpointCustomizable, PaginationMaxNumberOfPageLinks,
|
|
2
|
+
import type { PaginationInternationalization, BreakpointCustomizable, PaginationMaxNumberOfPageLinks, PaginationUpdateEvent, Theme } from '../types';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class PPagination {
|
|
5
5
|
protected z: NgZone;
|
|
@@ -18,10 +18,10 @@ export declare class PPagination {
|
|
|
18
18
|
maxNumberOfPageLinks: BreakpointCustomizable<PaginationMaxNumberOfPageLinks>;
|
|
19
19
|
theme: Theme;
|
|
20
20
|
totalItemsCount: number;
|
|
21
|
-
change: EventEmitter<CustomEvent<PaginationChangeEvent>>;
|
|
22
21
|
/** @deprecated */
|
|
23
|
-
pageChange: EventEmitter<CustomEvent<
|
|
22
|
+
pageChange: EventEmitter<CustomEvent<PaginationUpdateEvent>>;
|
|
23
|
+
update: EventEmitter<CustomEvent<PaginationUpdateEvent>>;
|
|
24
24
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
25
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<PPagination, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PPagination, "p-pagination,[p-pagination]", never, { "activePage": "activePage"; "allyLabel": "allyLabel"; "allyLabelNext": "allyLabelNext"; "allyLabelPage": "allyLabelPage"; "allyLabelPrev": "allyLabelPrev"; "intl": "intl"; "itemsPerPage": "itemsPerPage"; "maxNumberOfPageLinks": "maxNumberOfPageLinks"; "theme": "theme"; "totalItemsCount": "totalItemsCount"; }, { "
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PPagination, "p-pagination,[p-pagination]", never, { "activePage": "activePage"; "allyLabel": "allyLabel"; "allyLabelNext": "allyLabelNext"; "allyLabelPage": "allyLabelPage"; "allyLabelPrev": "allyLabelPrev"; "intl": "intl"; "itemsPerPage": "itemsPerPage"; "maxNumberOfPageLinks": "maxNumberOfPageLinks"; "theme": "theme"; "totalItemsCount": "totalItemsCount"; }, { "pageChange": "pageChange"; "update": "update"; }, never, ["*"]>;
|
|
27
27
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
|
|
2
|
-
import type { SegmentedControlBackgroundColor,
|
|
2
|
+
import type { SegmentedControlBackgroundColor, SegmentedControlUpdateEvent, Theme } from '../types';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class PSegmentedControl {
|
|
5
5
|
protected z: NgZone;
|
|
@@ -8,10 +8,10 @@ export declare class PSegmentedControl {
|
|
|
8
8
|
backgroundColor: SegmentedControlBackgroundColor;
|
|
9
9
|
theme: Theme;
|
|
10
10
|
value: string | number;
|
|
11
|
-
change: EventEmitter<CustomEvent<SegmentedControlChangeEvent>>;
|
|
12
11
|
/** @deprecated */
|
|
13
|
-
segmentedControlChange: EventEmitter<CustomEvent<
|
|
12
|
+
segmentedControlChange: EventEmitter<CustomEvent<SegmentedControlUpdateEvent>>;
|
|
13
|
+
update: EventEmitter<CustomEvent<SegmentedControlUpdateEvent>>;
|
|
14
14
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<PSegmentedControl, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentedControl, "p-segmented-control,[p-segmented-control]", never, { "backgroundColor": "backgroundColor"; "theme": "theme"; "value": "value"; }, { "
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PSegmentedControl, "p-segmented-control,[p-segmented-control]", never, { "backgroundColor": "backgroundColor"; "theme": "theme"; "value": "value"; }, { "segmentedControlChange": "segmentedControlChange"; "update": "update"; }, never, ["*"]>;
|
|
17
17
|
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
|
|
2
|
-
import type {
|
|
2
|
+
import type { StepperHorizontalUpdateEvent, BreakpointCustomizable, StepperHorizontalSize, Theme } from '../types';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class PStepperHorizontal {
|
|
5
5
|
protected z: NgZone;
|
|
6
6
|
protected el: HTMLElement;
|
|
7
7
|
size: BreakpointCustomizable<StepperHorizontalSize>;
|
|
8
8
|
theme: Theme;
|
|
9
|
-
change: EventEmitter<CustomEvent<StepperHorizontalChangeEvent>>;
|
|
10
9
|
/** @deprecated */
|
|
11
|
-
stepChange: EventEmitter<CustomEvent<
|
|
10
|
+
stepChange: EventEmitter<CustomEvent<StepperHorizontalUpdateEvent>>;
|
|
11
|
+
update: EventEmitter<CustomEvent<StepperHorizontalUpdateEvent>>;
|
|
12
12
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<PStepperHorizontal, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PStepperHorizontal, "p-stepper-horizontal,[p-stepper-horizontal]", never, { "size": "size"; "theme": "theme"; }, { "
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PStepperHorizontal, "p-stepper-horizontal,[p-stepper-horizontal]", never, { "size": "size"; "theme": "theme"; }, { "stepChange": "stepChange"; "update": "update"; }, never, ["*"]>;
|
|
15
15
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
|
|
2
|
-
import type { BreakpointCustomizable, SwitchAlignLabel,
|
|
2
|
+
import type { BreakpointCustomizable, SwitchAlignLabel, SwitchUpdateEvent, Theme } from '../types';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class PSwitch {
|
|
5
5
|
protected z: NgZone;
|
|
@@ -11,10 +11,10 @@ export declare class PSwitch {
|
|
|
11
11
|
loading: boolean;
|
|
12
12
|
stretch: BreakpointCustomizable<boolean>;
|
|
13
13
|
theme: Theme;
|
|
14
|
-
change: EventEmitter<CustomEvent<SwitchChangeEvent>>;
|
|
15
14
|
/** @deprecated */
|
|
16
|
-
switchChange: EventEmitter<CustomEvent<
|
|
15
|
+
switchChange: EventEmitter<CustomEvent<SwitchUpdateEvent>>;
|
|
16
|
+
update: EventEmitter<CustomEvent<SwitchUpdateEvent>>;
|
|
17
17
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<PSwitch, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PSwitch, "p-switch,[p-switch]", never, { "alignLabel": "alignLabel"; "checked": "checked"; "disabled": "disabled"; "hideLabel": "hideLabel"; "loading": "loading"; "stretch": "stretch"; "theme": "theme"; }, { "
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PSwitch, "p-switch,[p-switch]", never, { "alignLabel": "alignLabel"; "checked": "checked"; "disabled": "disabled"; "hideLabel": "hideLabel"; "loading": "loading"; "stretch": "stretch"; "theme": "theme"; }, { "switchChange": "switchChange"; "update": "update"; }, never, ["*"]>;
|
|
20
20
|
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
|
|
2
|
-
import type {
|
|
2
|
+
import type { TableUpdateEvent, 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
8
|
theme: Theme;
|
|
9
|
-
change: EventEmitter<CustomEvent<TableChangeEvent>>;
|
|
10
9
|
/** @deprecated */
|
|
11
|
-
sortingChange: EventEmitter<CustomEvent<
|
|
10
|
+
sortingChange: EventEmitter<CustomEvent<TableUpdateEvent>>;
|
|
11
|
+
update: EventEmitter<CustomEvent<TableUpdateEvent>>;
|
|
12
12
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTable, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTable, "p-table,[p-table]", never, { "caption": "caption"; "theme": "theme"; }, { "
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTable, "p-table,[p-table]", never, { "caption": "caption"; "theme": "theme"; }, { "sortingChange": "sortingChange"; "update": "update"; }, never, ["*"]>;
|
|
15
15
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
|
|
2
|
-
import type { TabsBarGradientColor, TabsBarGradientColorScheme,
|
|
2
|
+
import type { TabsBarGradientColor, TabsBarGradientColorScheme, TabsBarUpdateEvent, BreakpointCustomizable, TabsBarSize, Theme, TabsBarWeight } from '../types';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class PTabsBar {
|
|
5
5
|
protected z: NgZone;
|
|
@@ -11,10 +11,10 @@ export declare class PTabsBar {
|
|
|
11
11
|
size: BreakpointCustomizable<TabsBarSize>;
|
|
12
12
|
theme: Theme;
|
|
13
13
|
weight: TabsBarWeight;
|
|
14
|
-
change: EventEmitter<CustomEvent<TabsBarChangeEvent>>;
|
|
15
14
|
/** @deprecated */
|
|
16
|
-
tabChange: EventEmitter<CustomEvent<
|
|
15
|
+
tabChange: EventEmitter<CustomEvent<TabsBarUpdateEvent>>;
|
|
16
|
+
update: EventEmitter<CustomEvent<TabsBarUpdateEvent>>;
|
|
17
17
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTabsBar, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTabsBar, "p-tabs-bar,[p-tabs-bar]", never, { "activeTabIndex": "activeTabIndex"; "gradientColor": "gradientColor"; "gradientColorScheme": "gradientColorScheme"; "size": "size"; "theme": "theme"; "weight": "weight"; }, { "
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTabsBar, "p-tabs-bar,[p-tabs-bar]", never, { "activeTabIndex": "activeTabIndex"; "gradientColor": "gradientColor"; "gradientColorScheme": "gradientColorScheme"; "size": "size"; "theme": "theme"; "weight": "weight"; }, { "tabChange": "tabChange"; "update": "update"; }, never, ["*"]>;
|
|
20
20
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
|
|
2
|
-
import type { TabsGradientColor, TabsGradientColorScheme,
|
|
2
|
+
import type { TabsGradientColor, TabsGradientColorScheme, TabsUpdateEvent, BreakpointCustomizable, TabsSize, Theme, TabsWeight } from '../types';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class PTabs {
|
|
5
5
|
protected z: NgZone;
|
|
@@ -11,10 +11,10 @@ export declare class PTabs {
|
|
|
11
11
|
size: BreakpointCustomizable<TabsSize>;
|
|
12
12
|
theme: Theme;
|
|
13
13
|
weight: TabsWeight;
|
|
14
|
-
change: EventEmitter<CustomEvent<TabsChangeEvent>>;
|
|
15
14
|
/** @deprecated */
|
|
16
|
-
tabChange: EventEmitter<CustomEvent<
|
|
15
|
+
tabChange: EventEmitter<CustomEvent<TabsUpdateEvent>>;
|
|
16
|
+
update: EventEmitter<CustomEvent<TabsUpdateEvent>>;
|
|
17
17
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTabs, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTabs, "p-tabs,[p-tabs]", never, { "activeTabIndex": "activeTabIndex"; "gradientColor": "gradientColor"; "gradientColorScheme": "gradientColorScheme"; "size": "size"; "theme": "theme"; "weight": "weight"; }, { "
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTabs, "p-tabs,[p-tabs]", never, { "activeTabIndex": "activeTabIndex"; "gradientColor": "gradientColor"; "gradientColorScheme": "gradientColorScheme"; "size": "size"; "theme": "theme"; "weight": "weight"; }, { "tabChange": "tabChange"; "update": "update"; }, never, ["*"]>;
|
|
20
20
|
}
|
|
@@ -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
|
@@ -194,17 +194,18 @@ declare const BUTTON_ARIA_ATTRIBUTES: readonly [
|
|
|
194
194
|
"aria-haspopup"
|
|
195
195
|
];
|
|
196
196
|
export declare type ButtonAriaAttribute = typeof BUTTON_ARIA_ATTRIBUTES[number];
|
|
197
|
-
declare const
|
|
197
|
+
declare const breakpoints: readonly [
|
|
198
198
|
"base",
|
|
199
199
|
"xs",
|
|
200
200
|
"s",
|
|
201
201
|
"m",
|
|
202
202
|
"l",
|
|
203
|
-
"xl"
|
|
203
|
+
"xl",
|
|
204
|
+
"xxl"
|
|
204
205
|
];
|
|
205
|
-
export declare type
|
|
206
|
+
export declare type Breakpoint = (typeof breakpoints)[number];
|
|
206
207
|
export declare type BreakpointValues<T> = {
|
|
207
|
-
[key in
|
|
208
|
+
[key in Breakpoint]?: T;
|
|
208
209
|
} & {
|
|
209
210
|
base: T;
|
|
210
211
|
};
|
|
@@ -529,8 +530,8 @@ declare const ACCORDION_SIZES: readonly [
|
|
|
529
530
|
"small",
|
|
530
531
|
"medium"
|
|
531
532
|
];
|
|
532
|
-
export declare type AccordionSize = typeof ACCORDION_SIZES[number];
|
|
533
|
-
export declare type
|
|
533
|
+
export declare type AccordionSize = (typeof ACCORDION_SIZES)[number];
|
|
534
|
+
export declare type AccordionUpdateEvent = {
|
|
534
535
|
open: boolean;
|
|
535
536
|
};
|
|
536
537
|
export declare type AccordionTag = HeadingTag;
|
|
@@ -579,7 +580,7 @@ declare const CAROUSEL_ALIGN_HEADERS: readonly [
|
|
|
579
580
|
];
|
|
580
581
|
export declare type CarouselAlignHeader = (typeof CAROUSEL_ALIGN_HEADERS)[number];
|
|
581
582
|
export declare type CarouselInternationalization = Partial<Record<"prev" | "next" | "first" | "last" | "slideLabel" | "slide", string>>;
|
|
582
|
-
export declare type
|
|
583
|
+
export declare type CarouselUpdateEvent = {
|
|
583
584
|
activeIndex: number;
|
|
584
585
|
previousIndex: number;
|
|
585
586
|
};
|
|
@@ -597,6 +598,11 @@ declare const CONTENT_WRAPPER_WIDTHS: readonly [
|
|
|
597
598
|
"full"
|
|
598
599
|
];
|
|
599
600
|
export declare type ContentWrapperWidth = typeof CONTENT_WRAPPER_WIDTHS[number];
|
|
601
|
+
export declare type CrestTarget = LinkTarget;
|
|
602
|
+
declare const CREST_ARIA_ATTRIBUTES: readonly [
|
|
603
|
+
"aria-label"
|
|
604
|
+
];
|
|
605
|
+
export declare type CrestAriaAttribute = (typeof CREST_ARIA_ATTRIBUTES)[number];
|
|
600
606
|
declare const DISPLAY_TAGS: readonly [
|
|
601
607
|
"h1",
|
|
602
608
|
"h2",
|
|
@@ -932,8 +938,8 @@ declare const PAGINATION_NUMBER_OF_PAGE_LINKS: readonly [
|
|
|
932
938
|
5,
|
|
933
939
|
7
|
|
934
940
|
];
|
|
935
|
-
export declare type PaginationMaxNumberOfPageLinks = typeof PAGINATION_NUMBER_OF_PAGE_LINKS[number];
|
|
936
|
-
export declare type
|
|
941
|
+
export declare type PaginationMaxNumberOfPageLinks = (typeof PAGINATION_NUMBER_OF_PAGE_LINKS)[number];
|
|
942
|
+
export declare type PaginationUpdateEvent = {
|
|
937
943
|
page: number;
|
|
938
944
|
previousPage: number;
|
|
939
945
|
};
|
|
@@ -954,8 +960,8 @@ declare const SEGMENTED_CONTROL_BACKGROUND_COLORS: readonly [
|
|
|
954
960
|
"background-surface",
|
|
955
961
|
"background-default"
|
|
956
962
|
];
|
|
957
|
-
export declare type SegmentedControlBackgroundColor = typeof SEGMENTED_CONTROL_BACKGROUND_COLORS[number];
|
|
958
|
-
export declare type
|
|
963
|
+
export declare type SegmentedControlBackgroundColor = (typeof SEGMENTED_CONTROL_BACKGROUND_COLORS)[number];
|
|
964
|
+
export declare type SegmentedControlUpdateEvent = {
|
|
959
965
|
value: string | number;
|
|
960
966
|
};
|
|
961
967
|
export declare type SegmentedControlItemIcon = LinkButtonIconName;
|
|
@@ -981,8 +987,8 @@ declare const STEPPER_HORIZONTAL_SIZES: readonly [
|
|
|
981
987
|
"small",
|
|
982
988
|
"medium"
|
|
983
989
|
];
|
|
984
|
-
export declare type StepperHorizontalSize = typeof STEPPER_HORIZONTAL_SIZES[number];
|
|
985
|
-
export declare type
|
|
990
|
+
export declare type StepperHorizontalSize = (typeof STEPPER_HORIZONTAL_SIZES)[number];
|
|
991
|
+
export declare type StepperHorizontalUpdateEvent = {
|
|
986
992
|
activeStepIndex: number;
|
|
987
993
|
};
|
|
988
994
|
declare const STEPPER_ITEM_STATES: readonly [
|
|
@@ -992,7 +998,7 @@ declare const STEPPER_ITEM_STATES: readonly [
|
|
|
992
998
|
];
|
|
993
999
|
export declare type StepperHorizontalItemState = typeof STEPPER_ITEM_STATES[number];
|
|
994
1000
|
export declare type SwitchAlignLabel = AlignLabel;
|
|
995
|
-
export declare type
|
|
1001
|
+
export declare type SwitchUpdateEvent = {
|
|
996
1002
|
checked: boolean;
|
|
997
1003
|
};
|
|
998
1004
|
export declare type Direction = "asc" | "desc";
|
|
@@ -1001,19 +1007,19 @@ export declare type TableHeadCellSort = {
|
|
|
1001
1007
|
active?: boolean;
|
|
1002
1008
|
direction?: Direction;
|
|
1003
1009
|
};
|
|
1004
|
-
export declare type
|
|
1010
|
+
export declare type TableUpdateEvent = TableHeadCellSort;
|
|
1005
1011
|
declare const TABS_BAR_SIZES: readonly [
|
|
1006
1012
|
"small",
|
|
1007
1013
|
"medium"
|
|
1008
1014
|
];
|
|
1009
|
-
export declare type TabsBarSize = typeof TABS_BAR_SIZES[number];
|
|
1015
|
+
export declare type TabsBarSize = (typeof TABS_BAR_SIZES)[number];
|
|
1010
1016
|
declare const TABS_BAR_WEIGHTS: readonly [
|
|
1011
1017
|
"regular",
|
|
1012
1018
|
"semi-bold",
|
|
1013
1019
|
"semibold"
|
|
1014
1020
|
];
|
|
1015
|
-
export declare type TabsBarWeight = typeof TABS_BAR_WEIGHTS[number];
|
|
1016
|
-
export declare type
|
|
1021
|
+
export declare type TabsBarWeight = (typeof TABS_BAR_WEIGHTS)[number];
|
|
1022
|
+
export declare type TabsBarUpdateEvent = {
|
|
1017
1023
|
activeTabIndex: number;
|
|
1018
1024
|
};
|
|
1019
1025
|
/** @deprecated */
|
|
@@ -1024,7 +1030,7 @@ export declare type TabsWeight = TabsBarWeight;
|
|
|
1024
1030
|
/** @deprecated */
|
|
1025
1031
|
export declare type TabsGradientColorScheme = TabsBarGradientColorScheme;
|
|
1026
1032
|
export declare type TabsGradientColor = TabsBarGradientColor;
|
|
1027
|
-
export declare type
|
|
1033
|
+
export declare type TabsUpdateEvent = TabsBarUpdateEvent;
|
|
1028
1034
|
declare const TAG_DISMISSIBLE_COLORS: readonly [
|
|
1029
1035
|
"background-base",
|
|
1030
1036
|
"background-surface",
|
|
@@ -1100,4 +1106,14 @@ export declare type ToastMessage = {
|
|
|
1100
1106
|
text: string;
|
|
1101
1107
|
state?: ToastState;
|
|
1102
1108
|
};
|
|
1109
|
+
declare const WORDMARK_SIZES: readonly [
|
|
1110
|
+
"small",
|
|
1111
|
+
"inherit"
|
|
1112
|
+
];
|
|
1113
|
+
export declare type WordmarkSize = (typeof WORDMARK_SIZES)[number];
|
|
1114
|
+
export declare type WordmarkTarget = LinkTarget;
|
|
1115
|
+
declare const WORDMARK_ARIA_ATTRIBUTES: readonly [
|
|
1116
|
+
"aria-label"
|
|
1117
|
+
];
|
|
1118
|
+
export declare type WordmarkAriaAttribute = (typeof WORDMARK_ARIA_ATTRIBUTES)[number];
|
|
1103
1119
|
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.6",
|
|
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.6",
|
|
21
21
|
"tslib": "^2.5.0"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
@@ -9,55 +9,57 @@ import * as i6 from "./lib/components/button-tile.wrapper";
|
|
|
9
9
|
import * as i7 from "./lib/components/carousel.wrapper";
|
|
10
10
|
import * as i8 from "./lib/components/checkbox-wrapper.wrapper";
|
|
11
11
|
import * as i9 from "./lib/components/content-wrapper.wrapper";
|
|
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/fieldset
|
|
16
|
-
import * as i14 from "./lib/components/
|
|
17
|
-
import * as i15 from "./lib/components/flex
|
|
18
|
-
import * as i16 from "./lib/components/
|
|
19
|
-
import * as i17 from "./lib/components/grid
|
|
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/link-
|
|
27
|
-
import * as i25 from "./lib/components/link-
|
|
28
|
-
import * as i26 from "./lib/components/link-tile
|
|
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/segmented-control
|
|
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/stepper-horizontal
|
|
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/table-head
|
|
48
|
-
import * as i46 from "./lib/components/table-head-
|
|
49
|
-
import * as i47 from "./lib/components/table-row.wrapper";
|
|
50
|
-
import * as i48 from "./lib/components/
|
|
51
|
-
import * as i49 from "./lib/components/tabs
|
|
52
|
-
import * as i50 from "./lib/components/tabs-
|
|
53
|
-
import * as i51 from "./lib/components/
|
|
54
|
-
import * as i52 from "./lib/components/tag
|
|
55
|
-
import * as i53 from "./lib/components/
|
|
56
|
-
import * as i54 from "./lib/components/text
|
|
57
|
-
import * as i55 from "./lib/components/text-
|
|
58
|
-
import * as i56 from "./lib/components/text-list
|
|
59
|
-
import * as i57 from "./lib/components/
|
|
60
|
-
import * as i58 from "./lib/components/
|
|
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";
|
|
61
63
|
export declare type PorscheDesignSystemModuleConfig = {
|
|
62
64
|
prefix?: string;
|
|
63
65
|
};
|
|
@@ -68,6 +70,6 @@ export declare class PorscheDesignSystemModule {
|
|
|
68
70
|
constructor(configParam: DefaultConfig);
|
|
69
71
|
static load(config: PorscheDesignSystemModuleConfig): ModuleWithProviders<PorscheDesignSystemModule>;
|
|
70
72
|
static ɵfac: i0.ɵɵFactoryDeclaration<PorscheDesignSystemModule, [{ optional: true; }]>;
|
|
71
|
-
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.
|
|
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]>;
|
|
72
74
|
static ɵinj: i0.ɵɵInjectorDeclaration<PorscheDesignSystemModule>;
|
|
73
75
|
}
|