@porsche-design-system/components-angular 3.0.0-alpha.1 → 3.0.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +49 -3
- package/OSS_NOTICE +65234 -2280
- package/esm2020/lib/components/barrel.mjs +4 -1
- package/esm2020/lib/components/carousel.wrapper.mjs +3 -3
- package/esm2020/lib/components/model-signature.wrapper.mjs +35 -0
- package/esm2020/lib/types.mjs +1 -1
- package/esm2020/porsche-design-system.module.mjs +32 -31
- package/fesm2015/porsche-design-system-components-angular.mjs +164 -128
- package/fesm2015/porsche-design-system-components-angular.mjs.map +1 -1
- package/fesm2020/porsche-design-system-components-angular.mjs +160 -128
- package/fesm2020/porsche-design-system-components-angular.mjs.map +1 -1
- package/lib/components/barrel.d.ts +3 -1
- package/lib/components/carousel.wrapper.d.ts +4 -2
- package/lib/components/model-signature.wrapper.d.ts +14 -0
- package/lib/types.d.ts +76 -37
- package/package.json +2 -2
- package/porsche-design-system.module.d.ts +31 -30
|
@@ -23,6 +23,7 @@ import { PLinkSocial } from './link-social.wrapper';
|
|
|
23
23
|
import { PLinkTile } from './link-tile.wrapper';
|
|
24
24
|
import { PMarque } from './marque.wrapper';
|
|
25
25
|
import { PModal } from './modal.wrapper';
|
|
26
|
+
import { PModelSignature } from './model-signature.wrapper';
|
|
26
27
|
import { PPagination } from './pagination.wrapper';
|
|
27
28
|
import { PPopover } from './popover.wrapper';
|
|
28
29
|
import { PRadioButtonWrapper } from './radio-button-wrapper.wrapper';
|
|
@@ -52,7 +53,7 @@ import { PTextList } from './text-list.wrapper';
|
|
|
52
53
|
import { PTextListItem } from './text-list-item.wrapper';
|
|
53
54
|
import { PTextareaWrapper } from './textarea-wrapper.wrapper';
|
|
54
55
|
import { PToast } from './toast.wrapper';
|
|
55
|
-
export declare const DECLARATIONS: (typeof PAccordion | typeof PBanner | typeof PButton | typeof PButtonGroup | typeof PButtonPure | typeof PCarousel | typeof PCheckboxWrapper | typeof PContentWrapper | typeof PDisplay | typeof PDivider | 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 PMarque | typeof PModal | 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)[];
|
|
56
|
+
export declare const DECLARATIONS: (typeof PAccordion | typeof PBanner | typeof PButton | typeof PButtonGroup | typeof PButtonPure | typeof PCarousel | typeof PCheckboxWrapper | typeof PContentWrapper | typeof PDisplay | typeof PDivider | 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 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)[];
|
|
56
57
|
export * from './accordion.wrapper';
|
|
57
58
|
export * from './banner.wrapper';
|
|
58
59
|
export * from './button.wrapper';
|
|
@@ -78,6 +79,7 @@ export * from './link-social.wrapper';
|
|
|
78
79
|
export * from './link-tile.wrapper';
|
|
79
80
|
export * from './marque.wrapper';
|
|
80
81
|
export * from './modal.wrapper';
|
|
82
|
+
export * from './model-signature.wrapper';
|
|
81
83
|
export * from './pagination.wrapper';
|
|
82
84
|
export * from './popover.wrapper';
|
|
83
85
|
export * from './radio-button-wrapper.wrapper';
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
|
|
2
|
-
import type { BreakpointCustomizable, CarouselInternationalization, CarouselChangeEvent, Theme } from '../types';
|
|
2
|
+
import type { CarouselAlignHeader, BreakpointCustomizable, CarouselInternationalization, CarouselChangeEvent, Theme, CarouselWidth } from '../types';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class PCarousel {
|
|
5
5
|
protected z: NgZone;
|
|
6
6
|
protected el: HTMLElement;
|
|
7
|
+
alignHeader: CarouselAlignHeader;
|
|
7
8
|
description: string;
|
|
8
9
|
disablePagination: BreakpointCustomizable<boolean>;
|
|
9
10
|
heading: string;
|
|
@@ -11,9 +12,10 @@ export declare class PCarousel {
|
|
|
11
12
|
rewind: boolean;
|
|
12
13
|
slidesPerPage: BreakpointCustomizable<number>;
|
|
13
14
|
theme: Theme;
|
|
15
|
+
width: CarouselWidth;
|
|
14
16
|
wrapContent: boolean;
|
|
15
17
|
carouselChange: EventEmitter<CustomEvent<CarouselChangeEvent>>;
|
|
16
18
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
17
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<PCarousel, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PCarousel, "p-carousel,[p-carousel]", never, { "description": "description"; "disablePagination": "disablePagination"; "heading": "heading"; "intl": "intl"; "rewind": "rewind"; "slidesPerPage": "slidesPerPage"; "theme": "theme"; "wrapContent": "wrapContent"; }, { "carouselChange": "carouselChange"; }, never, ["*"]>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PCarousel, "p-carousel,[p-carousel]", never, { "alignHeader": "alignHeader"; "description": "description"; "disablePagination": "disablePagination"; "heading": "heading"; "intl": "intl"; "rewind": "rewind"; "slidesPerPage": "slidesPerPage"; "theme": "theme"; "width": "width"; "wrapContent": "wrapContent"; }, { "carouselChange": "carouselChange"; }, never, ["*"]>;
|
|
19
21
|
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, NgZone } from '@angular/core';
|
|
2
|
+
import type { ModelSignatureColor, ModelSignatureModel, ModelSignatureSize, Theme } from '../types';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PModelSignature {
|
|
5
|
+
protected z: NgZone;
|
|
6
|
+
protected el: HTMLElement;
|
|
7
|
+
color: ModelSignatureColor;
|
|
8
|
+
model: ModelSignatureModel;
|
|
9
|
+
size: ModelSignatureSize;
|
|
10
|
+
theme: Theme;
|
|
11
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PModelSignature, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PModelSignature, "p-model-signature,[p-model-signature]", never, { "color": "color"; "model": "model"; "size": "size"; "theme": "theme"; }, {}, never, ["*"]>;
|
|
14
|
+
}
|
package/lib/types.d.ts
CHANGED
|
@@ -262,20 +262,20 @@ declare const TEXT_ALIGNS: readonly [
|
|
|
262
262
|
export declare type TextAlign = typeof TEXT_ALIGNS[number];
|
|
263
263
|
declare const TEXT_COLORS: readonly [
|
|
264
264
|
"primary",
|
|
265
|
-
"brand",
|
|
266
|
-
"default",
|
|
267
265
|
"contrast-low",
|
|
268
|
-
"neutral-contrast-low",
|
|
269
266
|
"contrast-medium",
|
|
270
|
-
"neutral-contrast-medium",
|
|
271
267
|
"contrast-high",
|
|
272
|
-
"neutral-contrast-high",
|
|
273
268
|
"notification-success",
|
|
274
269
|
"notification-warning",
|
|
275
270
|
"notification-error",
|
|
276
271
|
"notification-info",
|
|
277
|
-
"
|
|
278
|
-
"
|
|
272
|
+
"inherit",
|
|
273
|
+
"brand",
|
|
274
|
+
"default",
|
|
275
|
+
"neutral-contrast-low",
|
|
276
|
+
"neutral-contrast-medium",
|
|
277
|
+
"neutral-contrast-high",
|
|
278
|
+
"notification-neutral"
|
|
279
279
|
];
|
|
280
280
|
export declare type TextColor = typeof TEXT_COLORS[number];
|
|
281
281
|
declare const TEXT_SIZES: readonly [
|
|
@@ -288,11 +288,11 @@ declare const TEXT_SIZES: readonly [
|
|
|
288
288
|
];
|
|
289
289
|
export declare type TextSize = typeof TEXT_SIZES[number];
|
|
290
290
|
declare const TEXT_WEIGHTS: readonly [
|
|
291
|
-
"thin",
|
|
292
291
|
"regular",
|
|
293
|
-
"semibold",
|
|
294
292
|
"semi-bold",
|
|
295
|
-
"bold"
|
|
293
|
+
"bold",
|
|
294
|
+
"thin",
|
|
295
|
+
"semibold"
|
|
296
296
|
];
|
|
297
297
|
export declare type TextWeight = typeof TEXT_WEIGHTS[number];
|
|
298
298
|
declare const LINK_TARGETS: readonly [
|
|
@@ -503,15 +503,15 @@ export declare type AccordionChangeEvent = {
|
|
|
503
503
|
};
|
|
504
504
|
export declare type AccordionTag = HeadingTag;
|
|
505
505
|
declare const BANNER_STATES: readonly [
|
|
506
|
-
"error",
|
|
507
|
-
"warning",
|
|
508
506
|
"info",
|
|
507
|
+
"warning",
|
|
508
|
+
"error",
|
|
509
509
|
"neutral"
|
|
510
510
|
];
|
|
511
511
|
export declare type BannerState = typeof BANNER_STATES[number];
|
|
512
512
|
declare const BANNER_WIDTHS: readonly [
|
|
513
|
-
"basic",
|
|
514
513
|
"extended",
|
|
514
|
+
"basic",
|
|
515
515
|
"fluid"
|
|
516
516
|
];
|
|
517
517
|
export declare type BannerWidth = typeof BANNER_WIDTHS[number];
|
|
@@ -520,6 +520,16 @@ declare const BUTTON_GROUP_DIRECTIONS: readonly [
|
|
|
520
520
|
"column"
|
|
521
521
|
];
|
|
522
522
|
export declare type ButtonGroupDirection = typeof BUTTON_GROUP_DIRECTIONS[number];
|
|
523
|
+
declare const CAROUSEL_WIDTHS: readonly [
|
|
524
|
+
"basic",
|
|
525
|
+
"extended"
|
|
526
|
+
];
|
|
527
|
+
export declare type CarouselWidth = typeof CAROUSEL_WIDTHS[number];
|
|
528
|
+
declare const CAROUSEL_ALIGN_HEADERS: readonly [
|
|
529
|
+
"left",
|
|
530
|
+
"center"
|
|
531
|
+
];
|
|
532
|
+
export declare type CarouselAlignHeader = typeof CAROUSEL_ALIGN_HEADERS[number];
|
|
523
533
|
export declare type CarouselInternationalization = Partial<Record<"prev" | "next" | "first" | "last" | "slideLabel" | "slide", string>>;
|
|
524
534
|
export declare type CarouselChangeEvent = {
|
|
525
535
|
activeIndex: number;
|
|
@@ -560,6 +570,9 @@ declare const DISPLAY_COLORS: readonly [
|
|
|
560
570
|
export declare type DisplayColor = typeof DISPLAY_COLORS[number];
|
|
561
571
|
export declare type DisplayAlign = TextAlign;
|
|
562
572
|
declare const DIVIDER_COLORS: readonly [
|
|
573
|
+
"contrast-low",
|
|
574
|
+
"contrast-medium",
|
|
575
|
+
"contrast-high",
|
|
563
576
|
"neutral-contrast-high",
|
|
564
577
|
"neutral-contrast-medium",
|
|
565
578
|
"neutral-contrast-low"
|
|
@@ -759,29 +772,29 @@ export declare type IconAriaAttribute = typeof ICON_ARIA_ATTRIBUTES[number];
|
|
|
759
772
|
export declare type IconSize = TextSize;
|
|
760
773
|
declare const ICON_COLORS: readonly [
|
|
761
774
|
"primary",
|
|
762
|
-
"brand",
|
|
763
|
-
"default",
|
|
764
775
|
"contrast-low",
|
|
765
|
-
"neutral-contrast-low",
|
|
766
776
|
"contrast-medium",
|
|
767
|
-
"neutral-contrast-medium",
|
|
768
777
|
"contrast-high",
|
|
769
|
-
"neutral-contrast-high",
|
|
770
778
|
"notification-success",
|
|
771
779
|
"notification-warning",
|
|
772
780
|
"notification-error",
|
|
773
781
|
"notification-info",
|
|
774
|
-
"notification-neutral",
|
|
775
782
|
"inherit",
|
|
783
|
+
"brand",
|
|
784
|
+
"default",
|
|
785
|
+
"neutral-contrast-low",
|
|
786
|
+
"neutral-contrast-medium",
|
|
787
|
+
"neutral-contrast-high",
|
|
788
|
+
"notification-neutral",
|
|
776
789
|
"disabled"
|
|
777
790
|
];
|
|
778
791
|
export declare type IconColor = typeof ICON_COLORS[number];
|
|
779
792
|
declare const INLINE_NOTIFICATION_STATES: readonly [
|
|
780
|
-
"
|
|
781
|
-
"warning",
|
|
793
|
+
"success",
|
|
782
794
|
"info",
|
|
783
|
-
"
|
|
784
|
-
"
|
|
795
|
+
"warning",
|
|
796
|
+
"error",
|
|
797
|
+
"neutral"
|
|
785
798
|
];
|
|
786
799
|
export declare type InlineNotificationState = typeof INLINE_NOTIFICATION_STATES[number];
|
|
787
800
|
declare const LINK_ARIA_ATTRIBUTES: readonly [
|
|
@@ -826,6 +839,32 @@ declare const MODAL_ARIA_ATTRIBUTES: readonly [
|
|
|
826
839
|
"aria-label"
|
|
827
840
|
];
|
|
828
841
|
export declare type ModalAriaAttribute = typeof MODAL_ARIA_ATTRIBUTES[number];
|
|
842
|
+
declare const MODEL_SIGNATURES_MANIFEST: {
|
|
843
|
+
"718": string;
|
|
844
|
+
"911": string;
|
|
845
|
+
boxster: string;
|
|
846
|
+
cayenne: string;
|
|
847
|
+
cayman: string;
|
|
848
|
+
macan: string;
|
|
849
|
+
panamera: string;
|
|
850
|
+
taycan: string;
|
|
851
|
+
"turbo-s": string;
|
|
852
|
+
turbo: string;
|
|
853
|
+
};
|
|
854
|
+
declare const MODEL_SIGNATURE_SIZES: readonly [
|
|
855
|
+
"small",
|
|
856
|
+
"inherit"
|
|
857
|
+
];
|
|
858
|
+
export declare type ModelSignatureSize = typeof MODEL_SIGNATURE_SIZES[number];
|
|
859
|
+
export declare type ModelSignatureModel = keyof typeof MODEL_SIGNATURES_MANIFEST;
|
|
860
|
+
declare const MODEL_SIGNATURE_COLORS: readonly [
|
|
861
|
+
"primary",
|
|
862
|
+
"contrast-low",
|
|
863
|
+
"contrast-medium",
|
|
864
|
+
"contrast-high",
|
|
865
|
+
"inherit"
|
|
866
|
+
];
|
|
867
|
+
export declare type ModelSignatureColor = typeof MODEL_SIGNATURE_COLORS[number];
|
|
829
868
|
declare const PAGINATION_NUMBER_OF_PAGE_LINKS: readonly [
|
|
830
869
|
5,
|
|
831
870
|
7
|
|
@@ -905,29 +944,29 @@ export declare type TabChangeEvent = {
|
|
|
905
944
|
activeTabIndex: number;
|
|
906
945
|
};
|
|
907
946
|
export declare type TabGradientColorTheme = GradientColorTheme;
|
|
947
|
+
declare const TAG_DISMISSIBLE_COLORS: readonly [
|
|
948
|
+
"background-surface",
|
|
949
|
+
"background-base",
|
|
950
|
+
"background-default"
|
|
951
|
+
];
|
|
952
|
+
export declare type TagDismissibleColor = typeof TAG_DISMISSIBLE_COLORS[number];
|
|
953
|
+
declare const TAG_DISMISSIBLE_ARIA_ATTRIBUTES: readonly [
|
|
954
|
+
"aria-label"
|
|
955
|
+
];
|
|
956
|
+
export declare type TagDismissibleAriaAttribute = typeof TAG_DISMISSIBLE_ARIA_ATTRIBUTES[number];
|
|
908
957
|
declare const TAG_COLORS: readonly [
|
|
909
958
|
"background-surface",
|
|
910
|
-
"background-default",
|
|
911
959
|
"background-base",
|
|
912
|
-
"
|
|
960
|
+
"background-default",
|
|
913
961
|
"primary",
|
|
914
|
-
"notification-neutral",
|
|
915
962
|
"notification-info",
|
|
916
963
|
"notification-warning",
|
|
917
964
|
"notification-success",
|
|
918
|
-
"notification-error"
|
|
965
|
+
"notification-error",
|
|
966
|
+
"neutral-contrast-high",
|
|
967
|
+
"notification-neutral"
|
|
919
968
|
];
|
|
920
969
|
export declare type TagColor = typeof TAG_COLORS[number];
|
|
921
|
-
declare const TAG_DISMISSIBLE_COLORS: readonly [
|
|
922
|
-
"background-surface",
|
|
923
|
-
"background-default",
|
|
924
|
-
"background-base"
|
|
925
|
-
];
|
|
926
|
-
export declare type TagDismissibleColor = typeof TAG_DISMISSIBLE_COLORS[number];
|
|
927
|
-
declare const TAG_DISMISSIBLE_ARIA_ATTRIBUTES: readonly [
|
|
928
|
-
"aria-label"
|
|
929
|
-
];
|
|
930
|
-
export declare type TagDismissibleAriaAttribute = typeof TAG_DISMISSIBLE_ARIA_ATTRIBUTES[number];
|
|
931
970
|
declare const TEXT_TAGS: readonly [
|
|
932
971
|
"p",
|
|
933
972
|
"span",
|
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.2",
|
|
4
4
|
"description": "Porsche Design System is a component library designed to help developers create the best experience for software or services distributed by Dr. Ing. h.c. F. Porsche AG.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"porsche",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"license": "SEE LICENSE IN LICENSE",
|
|
18
18
|
"homepage": "https://designsystem.porsche.com",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@porsche-design-system/components-js": "3.0.0-alpha.
|
|
20
|
+
"@porsche-design-system/components-js": "3.0.0-alpha.2",
|
|
21
21
|
"tslib": "^2.0.1"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
@@ -25,35 +25,36 @@ import * as i22 from "./lib/components/link-social.wrapper";
|
|
|
25
25
|
import * as i23 from "./lib/components/link-tile.wrapper";
|
|
26
26
|
import * as i24 from "./lib/components/marque.wrapper";
|
|
27
27
|
import * as i25 from "./lib/components/modal.wrapper";
|
|
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/segmented-control
|
|
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/stepper-horizontal
|
|
38
|
-
import * as i36 from "./lib/components/
|
|
39
|
-
import * as i37 from "./lib/components/
|
|
40
|
-
import * as i38 from "./lib/components/table
|
|
41
|
-
import * as i39 from "./lib/components/table-
|
|
42
|
-
import * as i40 from "./lib/components/table-
|
|
43
|
-
import * as i41 from "./lib/components/table-head
|
|
44
|
-
import * as i42 from "./lib/components/table-head-
|
|
45
|
-
import * as i43 from "./lib/components/table-row.wrapper";
|
|
46
|
-
import * as i44 from "./lib/components/
|
|
47
|
-
import * as i45 from "./lib/components/tabs
|
|
48
|
-
import * as i46 from "./lib/components/tabs-
|
|
49
|
-
import * as i47 from "./lib/components/
|
|
50
|
-
import * as i48 from "./lib/components/tag
|
|
51
|
-
import * as i49 from "./lib/components/
|
|
52
|
-
import * as i50 from "./lib/components/text
|
|
53
|
-
import * as i51 from "./lib/components/text-
|
|
54
|
-
import * as i52 from "./lib/components/text-list
|
|
55
|
-
import * as i53 from "./lib/components/
|
|
56
|
-
import * as i54 from "./lib/components/
|
|
28
|
+
import * as i26 from "./lib/components/model-signature.wrapper";
|
|
29
|
+
import * as i27 from "./lib/components/pagination.wrapper";
|
|
30
|
+
import * as i28 from "./lib/components/popover.wrapper";
|
|
31
|
+
import * as i29 from "./lib/components/radio-button-wrapper.wrapper";
|
|
32
|
+
import * as i30 from "./lib/components/scroller.wrapper";
|
|
33
|
+
import * as i31 from "./lib/components/segmented-control.wrapper";
|
|
34
|
+
import * as i32 from "./lib/components/segmented-control-item.wrapper";
|
|
35
|
+
import * as i33 from "./lib/components/select-wrapper.wrapper";
|
|
36
|
+
import * as i34 from "./lib/components/spinner.wrapper";
|
|
37
|
+
import * as i35 from "./lib/components/stepper-horizontal.wrapper";
|
|
38
|
+
import * as i36 from "./lib/components/stepper-horizontal-item.wrapper";
|
|
39
|
+
import * as i37 from "./lib/components/switch.wrapper";
|
|
40
|
+
import * as i38 from "./lib/components/table.wrapper";
|
|
41
|
+
import * as i39 from "./lib/components/table-body.wrapper";
|
|
42
|
+
import * as i40 from "./lib/components/table-cell.wrapper";
|
|
43
|
+
import * as i41 from "./lib/components/table-head.wrapper";
|
|
44
|
+
import * as i42 from "./lib/components/table-head-cell.wrapper";
|
|
45
|
+
import * as i43 from "./lib/components/table-head-row.wrapper";
|
|
46
|
+
import * as i44 from "./lib/components/table-row.wrapper";
|
|
47
|
+
import * as i45 from "./lib/components/tabs.wrapper";
|
|
48
|
+
import * as i46 from "./lib/components/tabs-bar.wrapper";
|
|
49
|
+
import * as i47 from "./lib/components/tabs-item.wrapper";
|
|
50
|
+
import * as i48 from "./lib/components/tag.wrapper";
|
|
51
|
+
import * as i49 from "./lib/components/tag-dismissible.wrapper";
|
|
52
|
+
import * as i50 from "./lib/components/text.wrapper";
|
|
53
|
+
import * as i51 from "./lib/components/text-field-wrapper.wrapper";
|
|
54
|
+
import * as i52 from "./lib/components/text-list.wrapper";
|
|
55
|
+
import * as i53 from "./lib/components/text-list-item.wrapper";
|
|
56
|
+
import * as i54 from "./lib/components/textarea-wrapper.wrapper";
|
|
57
|
+
import * as i55 from "./lib/components/toast.wrapper";
|
|
57
58
|
export declare type PorscheDesignSystemModuleConfig = {
|
|
58
59
|
prefix?: string;
|
|
59
60
|
};
|
|
@@ -64,6 +65,6 @@ export declare class PorscheDesignSystemModule {
|
|
|
64
65
|
constructor(configParam: DefaultConfig);
|
|
65
66
|
static load(config: PorscheDesignSystemModuleConfig): ModuleWithProviders<PorscheDesignSystemModule>;
|
|
66
67
|
static ɵfac: i0.ɵɵFactoryDeclaration<PorscheDesignSystemModule, [{ optional: true; }]>;
|
|
67
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PorscheDesignSystemModule, [typeof i1.PAccordion, typeof i2.PBanner, typeof i3.PButton, typeof i4.PButtonGroup, typeof i5.PButtonPure, typeof i6.PCarousel, typeof i7.PCheckboxWrapper, typeof i8.PContentWrapper, typeof i9.PDisplay, typeof i10.PDivider, typeof i11.PFieldsetWrapper, typeof i12.PFlex, typeof i13.PFlexItem, typeof i14.PGrid, typeof i15.PGridItem, typeof i16.PHeading, typeof i17.PHeadline, typeof i18.PIcon, typeof i19.PInlineNotification, typeof i20.PLink, typeof i21.PLinkPure, typeof i22.PLinkSocial, typeof i23.PLinkTile, typeof i24.PMarque, typeof i25.PModal, typeof i26.
|
|
68
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PorscheDesignSystemModule, [typeof i1.PAccordion, typeof i2.PBanner, typeof i3.PButton, typeof i4.PButtonGroup, typeof i5.PButtonPure, typeof i6.PCarousel, typeof i7.PCheckboxWrapper, typeof i8.PContentWrapper, typeof i9.PDisplay, typeof i10.PDivider, typeof i11.PFieldsetWrapper, typeof i12.PFlex, typeof i13.PFlexItem, typeof i14.PGrid, typeof i15.PGridItem, typeof i16.PHeading, typeof i17.PHeadline, typeof i18.PIcon, typeof i19.PInlineNotification, typeof i20.PLink, typeof i21.PLinkPure, typeof i22.PLinkSocial, typeof i23.PLinkTile, typeof i24.PMarque, typeof i25.PModal, typeof i26.PModelSignature, typeof i27.PPagination, typeof i28.PPopover, typeof i29.PRadioButtonWrapper, typeof i30.PScroller, typeof i31.PSegmentedControl, typeof i32.PSegmentedControlItem, typeof i33.PSelectWrapper, typeof i34.PSpinner, typeof i35.PStepperHorizontal, typeof i36.PStepperHorizontalItem, typeof i37.PSwitch, typeof i38.PTable, typeof i39.PTableBody, typeof i40.PTableCell, typeof i41.PTableHead, typeof i42.PTableHeadCell, typeof i43.PTableHeadRow, typeof i44.PTableRow, typeof i45.PTabs, typeof i46.PTabsBar, typeof i47.PTabsItem, typeof i48.PTag, typeof i49.PTagDismissible, typeof i50.PText, typeof i51.PTextFieldWrapper, typeof i52.PTextList, typeof i53.PTextListItem, typeof i54.PTextareaWrapper, typeof i55.PToast], never, [typeof i1.PAccordion, typeof i2.PBanner, typeof i3.PButton, typeof i4.PButtonGroup, typeof i5.PButtonPure, typeof i6.PCarousel, typeof i7.PCheckboxWrapper, typeof i8.PContentWrapper, typeof i9.PDisplay, typeof i10.PDivider, typeof i11.PFieldsetWrapper, typeof i12.PFlex, typeof i13.PFlexItem, typeof i14.PGrid, typeof i15.PGridItem, typeof i16.PHeading, typeof i17.PHeadline, typeof i18.PIcon, typeof i19.PInlineNotification, typeof i20.PLink, typeof i21.PLinkPure, typeof i22.PLinkSocial, typeof i23.PLinkTile, typeof i24.PMarque, typeof i25.PModal, typeof i26.PModelSignature, typeof i27.PPagination, typeof i28.PPopover, typeof i29.PRadioButtonWrapper, typeof i30.PScroller, typeof i31.PSegmentedControl, typeof i32.PSegmentedControlItem, typeof i33.PSelectWrapper, typeof i34.PSpinner, typeof i35.PStepperHorizontal, typeof i36.PStepperHorizontalItem, typeof i37.PSwitch, typeof i38.PTable, typeof i39.PTableBody, typeof i40.PTableCell, typeof i41.PTableHead, typeof i42.PTableHeadCell, typeof i43.PTableHeadRow, typeof i44.PTableRow, typeof i45.PTabs, typeof i46.PTabsBar, typeof i47.PTabsItem, typeof i48.PTag, typeof i49.PTagDismissible, typeof i50.PText, typeof i51.PTextFieldWrapper, typeof i52.PTextList, typeof i53.PTextListItem, typeof i54.PTextareaWrapper, typeof i55.PToast]>;
|
|
68
69
|
static ɵinj: i0.ɵɵInjectorDeclaration<PorscheDesignSystemModule>;
|
|
69
70
|
}
|