@porsche-design-system/components-angular 4.0.0-beta.0 → 4.0.0-beta.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@porsche-design-system/components-angular",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.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": "4.0.0-beta.
|
|
20
|
+
"@porsche-design-system/components-js": "4.0.0-beta.2",
|
|
21
21
|
"tslib": "^2.8.1"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
@@ -76,6 +76,17 @@
|
|
|
76
76
|
"types": "./testing/index.d.ts",
|
|
77
77
|
"default": "./testing/index.cjs"
|
|
78
78
|
},
|
|
79
|
+
"./styles": {
|
|
80
|
+
"sass": "./scss/_index.scss",
|
|
81
|
+
"types": "./emotion/esm/index.d.ts",
|
|
82
|
+
"import": "./emotion/esm/index.mjs",
|
|
83
|
+
"default": "./emotion/cjs/index.cjs"
|
|
84
|
+
},
|
|
85
|
+
"./styles/vanilla-extract": {
|
|
86
|
+
"types": "./vanilla-extract/esm/index.d.ts",
|
|
87
|
+
"import": "./vanilla-extract/esm/index.mjs",
|
|
88
|
+
"default": "./vanilla-extract/cjs/index.cjs"
|
|
89
|
+
},
|
|
79
90
|
"./tailwindcss": "./tailwindcss/index.css",
|
|
80
91
|
"./tailwindcss/index.css": "./tailwindcss/index.css",
|
|
81
92
|
"./tailwindcss/index": "./tailwindcss/index.css",
|
|
@@ -639,27 +639,6 @@ declare const FLAG_NAMES: readonly [
|
|
|
639
639
|
"za"
|
|
640
640
|
];
|
|
641
641
|
type FlagName = typeof FLAG_NAMES[number];
|
|
642
|
-
declare const FORM_STATES: readonly [
|
|
643
|
-
"none",
|
|
644
|
-
"error",
|
|
645
|
-
"success"
|
|
646
|
-
];
|
|
647
|
-
type FormState = (typeof FORM_STATES)[number];
|
|
648
|
-
declare const BUTTON_ARIA_ATTRIBUTES: readonly [
|
|
649
|
-
"aria-label",
|
|
650
|
-
"aria-description",
|
|
651
|
-
"aria-expanded",
|
|
652
|
-
"aria-pressed",
|
|
653
|
-
"aria-haspopup"
|
|
654
|
-
];
|
|
655
|
-
type ButtonAriaAttribute = (typeof BUTTON_ARIA_ATTRIBUTES)[number];
|
|
656
|
-
declare const LINK_ARIA_ATTRIBUTES: readonly [
|
|
657
|
-
"aria-label",
|
|
658
|
-
"aria-description",
|
|
659
|
-
"aria-current",
|
|
660
|
-
"aria-haspopup"
|
|
661
|
-
];
|
|
662
|
-
type LinkAriaAttribute = (typeof LINK_ARIA_ATTRIBUTES)[number];
|
|
663
642
|
declare const breakpoints: readonly [
|
|
664
643
|
"base",
|
|
665
644
|
"xs",
|
|
@@ -676,75 +655,6 @@ type BreakpointValues<T> = {
|
|
|
676
655
|
base: T;
|
|
677
656
|
};
|
|
678
657
|
type BreakpointCustomizable<T> = T | BreakpointValues<T>;
|
|
679
|
-
declare const LINK_TARGETS: readonly [
|
|
680
|
-
"_self",
|
|
681
|
-
"_blank",
|
|
682
|
-
"_parent",
|
|
683
|
-
"_top"
|
|
684
|
-
];
|
|
685
|
-
type LinkTarget = (typeof LINK_TARGETS)[number] | string;
|
|
686
|
-
declare const SCROLLER_ARIA_ATTRIBUTES: readonly [
|
|
687
|
-
"role"
|
|
688
|
-
];
|
|
689
|
-
type ScrollerAriaAttribute = (typeof SCROLLER_ARIA_ATTRIBUTES)[number];
|
|
690
|
-
type ScrollerScrollToPosition = {
|
|
691
|
-
scrollPosition: number;
|
|
692
|
-
isSmooth?: boolean;
|
|
693
|
-
} | string;
|
|
694
|
-
declare const SCROLL_INDICATOR_POSITIONS: readonly [
|
|
695
|
-
"top",
|
|
696
|
-
"center"
|
|
697
|
-
];
|
|
698
|
-
type ScrollerAlignScrollIndicator = (typeof SCROLL_INDICATOR_POSITIONS)[number];
|
|
699
|
-
type MultiSelectState = FormState;
|
|
700
|
-
type MultiSelectDropdownDirection = SelectComponentsDropdownDirection;
|
|
701
|
-
type MultiSelectChangeEventDetail = {
|
|
702
|
-
name: string;
|
|
703
|
-
value: string[];
|
|
704
|
-
};
|
|
705
|
-
type MultiSelectToggleEventDetail = {
|
|
706
|
-
open: boolean;
|
|
707
|
-
};
|
|
708
|
-
type SelectState = FormState;
|
|
709
|
-
type SelectDropdownDirection = SelectComponentsDropdownDirection;
|
|
710
|
-
type SelectChangeEventDetail = {
|
|
711
|
-
name: string;
|
|
712
|
-
value: string;
|
|
713
|
-
};
|
|
714
|
-
type SelectToggleEventDetail = {
|
|
715
|
-
open: boolean;
|
|
716
|
-
};
|
|
717
|
-
declare const SELECT_DROPDOWN_DIRECTIONS: readonly [
|
|
718
|
-
"down",
|
|
719
|
-
"up",
|
|
720
|
-
"auto"
|
|
721
|
-
];
|
|
722
|
-
type SelectComponentsDropdownDirection = (typeof SELECT_DROPDOWN_DIRECTIONS)[number];
|
|
723
|
-
declare const TILE_ASPECT_RATIOS: readonly [
|
|
724
|
-
"1/1",
|
|
725
|
-
"4/3",
|
|
726
|
-
"3/4",
|
|
727
|
-
"16/9",
|
|
728
|
-
"9/16",
|
|
729
|
-
"auto"
|
|
730
|
-
];
|
|
731
|
-
type TileAspectRatio = (typeof TILE_ASPECT_RATIOS)[number];
|
|
732
|
-
declare const TILE_SIZES: readonly [
|
|
733
|
-
"medium",
|
|
734
|
-
"large",
|
|
735
|
-
"inherit"
|
|
736
|
-
];
|
|
737
|
-
type TileSize = (typeof TILE_SIZES)[number];
|
|
738
|
-
declare const TILE_WEIGHTS: readonly [
|
|
739
|
-
"regular",
|
|
740
|
-
"semi-bold"
|
|
741
|
-
];
|
|
742
|
-
type TileWeight = (typeof TILE_WEIGHTS)[number];
|
|
743
|
-
declare const TILE_ALIGNS: readonly [
|
|
744
|
-
"top",
|
|
745
|
-
"bottom"
|
|
746
|
-
];
|
|
747
|
-
type TileAlign = (typeof TILE_ALIGNS)[number];
|
|
748
658
|
declare const HEADING_SIZES: readonly [
|
|
749
659
|
"small",
|
|
750
660
|
"medium",
|
|
@@ -798,22 +708,29 @@ declare const TYPOGRAPHY_TEXT_WEIGHTS: readonly [
|
|
|
798
708
|
"bold"
|
|
799
709
|
];
|
|
800
710
|
type TypographyTextWeight = (typeof TYPOGRAPHY_TEXT_WEIGHTS)[number];
|
|
801
|
-
declare const
|
|
802
|
-
"
|
|
803
|
-
"
|
|
711
|
+
declare const LINK_BUTTON_VARIANTS: readonly [
|
|
712
|
+
"primary",
|
|
713
|
+
"secondary"
|
|
804
714
|
];
|
|
805
|
-
type
|
|
715
|
+
type LinkButtonVariant = (typeof LINK_BUTTON_VARIANTS)[number];
|
|
806
716
|
declare const BUTTON_TYPES: readonly [
|
|
807
717
|
"button",
|
|
808
718
|
"submit",
|
|
809
719
|
"reset"
|
|
810
720
|
];
|
|
811
721
|
type ButtonType = (typeof BUTTON_TYPES)[number];
|
|
812
|
-
declare const
|
|
813
|
-
"
|
|
814
|
-
"
|
|
722
|
+
declare const ALIGN_LABELS: readonly [
|
|
723
|
+
"start",
|
|
724
|
+
"end"
|
|
815
725
|
];
|
|
816
|
-
type
|
|
726
|
+
type AlignLabel = (typeof ALIGN_LABELS)[number];
|
|
727
|
+
declare const LINK_TARGETS: readonly [
|
|
728
|
+
"_self",
|
|
729
|
+
"_blank",
|
|
730
|
+
"_parent",
|
|
731
|
+
"_top"
|
|
732
|
+
];
|
|
733
|
+
type LinkTarget = (typeof LINK_TARGETS)[number] | string;
|
|
817
734
|
type LinkButtonIconName = IconName | "none";
|
|
818
735
|
type ButtonVariant = LinkButtonVariant;
|
|
819
736
|
type LinkVariant = LinkButtonVariant;
|
|
@@ -832,15 +749,99 @@ type SelectedAriaAttributes<T extends keyof AriaAttributes> = Pick<AriaAttribute
|
|
|
832
749
|
type SelectedAriaRole<T> = {
|
|
833
750
|
role: Extract<AriaRole, T>;
|
|
834
751
|
};
|
|
835
|
-
declare const
|
|
836
|
-
"
|
|
837
|
-
"
|
|
752
|
+
declare const FORM_STATES: readonly [
|
|
753
|
+
"none",
|
|
754
|
+
"error",
|
|
755
|
+
"success"
|
|
838
756
|
];
|
|
839
|
-
type
|
|
757
|
+
type FormState = (typeof FORM_STATES)[number];
|
|
758
|
+
declare const BUTTON_ARIA_ATTRIBUTES: readonly [
|
|
759
|
+
"aria-label",
|
|
760
|
+
"aria-description",
|
|
761
|
+
"aria-expanded",
|
|
762
|
+
"aria-pressed",
|
|
763
|
+
"aria-haspopup"
|
|
764
|
+
];
|
|
765
|
+
type ButtonAriaAttribute = (typeof BUTTON_ARIA_ATTRIBUTES)[number];
|
|
766
|
+
declare const LINK_ARIA_ATTRIBUTES: readonly [
|
|
767
|
+
"aria-label",
|
|
768
|
+
"aria-description",
|
|
769
|
+
"aria-current",
|
|
770
|
+
"aria-haspopup"
|
|
771
|
+
];
|
|
772
|
+
type LinkAriaAttribute = (typeof LINK_ARIA_ATTRIBUTES)[number];
|
|
773
|
+
type MultiSelectState = FormState;
|
|
774
|
+
type MultiSelectDropdownDirection = SelectComponentsDropdownDirection;
|
|
775
|
+
type MultiSelectChangeEventDetail = {
|
|
776
|
+
name: string;
|
|
777
|
+
value: string[];
|
|
778
|
+
};
|
|
779
|
+
type MultiSelectToggleEventDetail = {
|
|
780
|
+
open: boolean;
|
|
781
|
+
};
|
|
782
|
+
type SelectState = FormState;
|
|
783
|
+
type SelectDropdownDirection = SelectComponentsDropdownDirection;
|
|
784
|
+
type SelectChangeEventDetail = {
|
|
785
|
+
name: string;
|
|
786
|
+
value: string;
|
|
787
|
+
};
|
|
788
|
+
type SelectToggleEventDetail = {
|
|
789
|
+
open: boolean;
|
|
790
|
+
};
|
|
791
|
+
declare const SELECT_DROPDOWN_DIRECTIONS: readonly [
|
|
792
|
+
"down",
|
|
793
|
+
"up",
|
|
794
|
+
"auto"
|
|
795
|
+
];
|
|
796
|
+
type SelectComponentsDropdownDirection = (typeof SELECT_DROPDOWN_DIRECTIONS)[number];
|
|
797
|
+
declare const TILE_ASPECT_RATIOS: readonly [
|
|
798
|
+
"1/1",
|
|
799
|
+
"4/3",
|
|
800
|
+
"3/4",
|
|
801
|
+
"16/9",
|
|
802
|
+
"9/16",
|
|
803
|
+
"auto"
|
|
804
|
+
];
|
|
805
|
+
type TileAspectRatio = (typeof TILE_ASPECT_RATIOS)[number];
|
|
806
|
+
declare const TILE_SIZES: readonly [
|
|
807
|
+
"medium",
|
|
808
|
+
"large",
|
|
809
|
+
"inherit"
|
|
810
|
+
];
|
|
811
|
+
type TileSize = (typeof TILE_SIZES)[number];
|
|
812
|
+
declare const TILE_WEIGHTS: readonly [
|
|
813
|
+
"regular",
|
|
814
|
+
"semi-bold"
|
|
815
|
+
];
|
|
816
|
+
type TileWeight = (typeof TILE_WEIGHTS)[number];
|
|
817
|
+
declare const TILE_ALIGNS: readonly [
|
|
818
|
+
"top",
|
|
819
|
+
"bottom"
|
|
820
|
+
];
|
|
821
|
+
type TileAlign = (typeof TILE_ALIGNS)[number];
|
|
822
|
+
declare const ACCORDIONS_BACKGROUNDS: readonly [
|
|
823
|
+
"canvas",
|
|
824
|
+
"surface",
|
|
825
|
+
"frosted",
|
|
826
|
+
"none"
|
|
827
|
+
];
|
|
828
|
+
type AccordionBackground = (typeof ACCORDIONS_BACKGROUNDS)[number];
|
|
829
|
+
declare const ACCORDION_ALIGN_MARKERS: readonly [
|
|
830
|
+
"start",
|
|
831
|
+
"end"
|
|
832
|
+
];
|
|
833
|
+
type AccordionAlignMarker = (typeof ACCORDION_ALIGN_MARKERS)[number];
|
|
840
834
|
type AccordionUpdateEventDetail = {
|
|
841
835
|
open: boolean;
|
|
842
836
|
};
|
|
837
|
+
/** @deprecated */
|
|
843
838
|
type AccordionHeadingTag = HeadingTag;
|
|
839
|
+
declare const ACCORDION_SIZES: readonly [
|
|
840
|
+
"small",
|
|
841
|
+
"medium"
|
|
842
|
+
];
|
|
843
|
+
/** @deprecated */
|
|
844
|
+
type AccordionSize = (typeof ACCORDION_SIZES)[number];
|
|
844
845
|
declare const BANNER_STATES: readonly [
|
|
845
846
|
"info",
|
|
846
847
|
"success",
|
|
@@ -1226,6 +1227,21 @@ type GroupDirection = (typeof GROUP_DIRECTIONS)[number];
|
|
|
1226
1227
|
type RadioGroupState = FormState;
|
|
1227
1228
|
type RadioGroupDirection = GroupDirection;
|
|
1228
1229
|
type RadioGroupChangeEventDetail = Event;
|
|
1230
|
+
declare const SCROLLER_ALIGN_SCROLL_INDICATORS: readonly [
|
|
1231
|
+
"top",
|
|
1232
|
+
"center"
|
|
1233
|
+
];
|
|
1234
|
+
/** @deprecated */
|
|
1235
|
+
type ScrollerAlignScrollIndicator = (typeof SCROLLER_ALIGN_SCROLL_INDICATORS)[number];
|
|
1236
|
+
declare const SCROLLER_ARIA_ATTRIBUTES: readonly [
|
|
1237
|
+
"role"
|
|
1238
|
+
];
|
|
1239
|
+
type ScrollerAriaAttribute = (typeof SCROLLER_ARIA_ATTRIBUTES)[number];
|
|
1240
|
+
/** @deprecated */
|
|
1241
|
+
type ScrollerScrollToPosition = {
|
|
1242
|
+
scrollPosition: number;
|
|
1243
|
+
isSmooth?: boolean;
|
|
1244
|
+
} | string;
|
|
1229
1245
|
type SegmentedControlChangeEventDetail = {
|
|
1230
1246
|
value: string | number;
|
|
1231
1247
|
};
|
|
@@ -1295,27 +1311,43 @@ declare const TABS_SIZES: readonly [
|
|
|
1295
1311
|
"medium"
|
|
1296
1312
|
];
|
|
1297
1313
|
type TabsSize = (typeof TABS_SIZES)[number];
|
|
1314
|
+
declare const TABS_BACKGROUNDS: readonly [
|
|
1315
|
+
"canvas",
|
|
1316
|
+
"surface",
|
|
1317
|
+
"frosted",
|
|
1318
|
+
"none"
|
|
1319
|
+
];
|
|
1320
|
+
type TabsBackground = (typeof TABS_BACKGROUNDS)[number];
|
|
1298
1321
|
declare const TABS_WEIGHTS: readonly [
|
|
1299
1322
|
"regular",
|
|
1300
1323
|
"semi-bold"
|
|
1301
1324
|
];
|
|
1325
|
+
/** @deprecated */
|
|
1302
1326
|
type TabsWeight = (typeof TABS_WEIGHTS)[number];
|
|
1303
1327
|
type TabsUpdateEventDetail = {
|
|
1304
1328
|
activeTabIndex: number;
|
|
1305
1329
|
};
|
|
1330
|
+
declare const TABS_BAR_BACKGROUNDS: readonly [
|
|
1331
|
+
"canvas",
|
|
1332
|
+
"surface",
|
|
1333
|
+
"frosted",
|
|
1334
|
+
"none"
|
|
1335
|
+
];
|
|
1336
|
+
type TabsBarBackground = (typeof TABS_BAR_BACKGROUNDS)[number];
|
|
1306
1337
|
declare const TABS_BAR_SIZES: readonly [
|
|
1307
1338
|
"small",
|
|
1308
1339
|
"medium"
|
|
1309
1340
|
];
|
|
1310
1341
|
type TabsBarSize = (typeof TABS_BAR_SIZES)[number];
|
|
1342
|
+
type TabsBarUpdateEventDetail = {
|
|
1343
|
+
activeTabIndex: number;
|
|
1344
|
+
};
|
|
1311
1345
|
declare const TABS_BAR_WEIGHTS: readonly [
|
|
1312
1346
|
"regular",
|
|
1313
1347
|
"semi-bold"
|
|
1314
1348
|
];
|
|
1349
|
+
/** @deprecated */
|
|
1315
1350
|
type TabsBarWeight = (typeof TABS_BAR_WEIGHTS)[number];
|
|
1316
|
-
type TabsBarUpdateEventDetail = {
|
|
1317
|
-
activeTabIndex: number;
|
|
1318
|
-
};
|
|
1319
1351
|
type TagIcon = IconName | "none";
|
|
1320
1352
|
declare const TAG_VARIANTS: readonly [
|
|
1321
1353
|
"primary",
|
|
@@ -2014,15 +2046,20 @@ declare class PTextarea extends BaseComponent implements ControlValueAccessor {
|
|
|
2014
2046
|
}
|
|
2015
2047
|
|
|
2016
2048
|
declare class PAccordion extends BaseComponent {
|
|
2049
|
+
alignMarker?: AccordionAlignMarker;
|
|
2050
|
+
background?: AccordionBackground;
|
|
2017
2051
|
compact?: boolean;
|
|
2052
|
+
/** @deprecated */
|
|
2018
2053
|
heading?: string;
|
|
2054
|
+
/** @deprecated */
|
|
2019
2055
|
headingTag?: AccordionHeadingTag;
|
|
2020
2056
|
open?: boolean;
|
|
2057
|
+
/** @deprecated */
|
|
2021
2058
|
size?: BreakpointCustomizable<AccordionSize>;
|
|
2022
2059
|
sticky?: boolean;
|
|
2023
2060
|
update: EventEmitter<CustomEvent<AccordionUpdateEventDetail>>;
|
|
2024
2061
|
static ɵfac: i0.ɵɵFactoryDeclaration<PAccordion, never>;
|
|
2025
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PAccordion, "p-accordion,[p-accordion]", never, { "compact": { "alias": "compact"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "headingTag": { "alias": "headingTag"; "required": false; }; "open": { "alias": "open"; "required": false; }; "size": { "alias": "size"; "required": false; }; "sticky": { "alias": "sticky"; "required": false; }; }, { "update": "update"; }, never, ["*"], false, never>;
|
|
2062
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PAccordion, "p-accordion,[p-accordion]", never, { "alignMarker": { "alias": "alignMarker"; "required": false; }; "background": { "alias": "background"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "headingTag": { "alias": "headingTag"; "required": false; }; "open": { "alias": "open"; "required": false; }; "size": { "alias": "size"; "required": false; }; "sticky": { "alias": "sticky"; "required": false; }; }, { "update": "update"; }, never, ["*"], false, never>;
|
|
2026
2063
|
}
|
|
2027
2064
|
|
|
2028
2065
|
declare class PBanner extends BaseComponent {
|
|
@@ -2386,12 +2423,16 @@ declare class PRadioGroupOption extends BaseComponent {
|
|
|
2386
2423
|
}
|
|
2387
2424
|
|
|
2388
2425
|
declare class PScroller extends BaseComponent {
|
|
2426
|
+
/** @deprecated */
|
|
2389
2427
|
alignScrollIndicator?: ScrollerAlignScrollIndicator;
|
|
2390
2428
|
aria?: SelectedAriaAttributes<ScrollerAriaAttribute>;
|
|
2429
|
+
compact?: boolean;
|
|
2430
|
+
/** @deprecated */
|
|
2391
2431
|
scrollToPosition?: ScrollerScrollToPosition;
|
|
2392
2432
|
scrollbar?: boolean;
|
|
2433
|
+
sticky?: boolean;
|
|
2393
2434
|
static ɵfac: i0.ɵɵFactoryDeclaration<PScroller, never>;
|
|
2394
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PScroller, "p-scroller,[p-scroller]", never, { "alignScrollIndicator": { "alias": "alignScrollIndicator"; "required": false; }; "aria": { "alias": "aria"; "required": false; }; "scrollToPosition": { "alias": "scrollToPosition"; "required": false; }; "scrollbar": { "alias": "scrollbar"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2435
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PScroller, "p-scroller,[p-scroller]", never, { "alignScrollIndicator": { "alias": "alignScrollIndicator"; "required": false; }; "aria": { "alias": "aria"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "scrollToPosition": { "alias": "scrollToPosition"; "required": false; }; "scrollbar": { "alias": "scrollbar"; "required": false; }; "sticky": { "alias": "sticky"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2395
2436
|
}
|
|
2396
2437
|
|
|
2397
2438
|
declare class PSegmentedControlItem extends BaseComponent {
|
|
@@ -2463,9 +2504,10 @@ declare class PTable extends BaseComponent {
|
|
|
2463
2504
|
caption?: string;
|
|
2464
2505
|
compact?: boolean;
|
|
2465
2506
|
layout?: TableLayout;
|
|
2507
|
+
sticky?: boolean;
|
|
2466
2508
|
update: EventEmitter<CustomEvent<_porsche_design_system_components_angular.TableHeadCellSort>>;
|
|
2467
2509
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTable, never>;
|
|
2468
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTable, "p-table,[p-table]", never, { "caption": { "alias": "caption"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; }, { "update": "update"; }, never, ["*"], false, never>;
|
|
2510
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTable, "p-table,[p-table]", never, { "caption": { "alias": "caption"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "sticky": { "alias": "sticky"; "required": false; }; }, { "update": "update"; }, never, ["*"], false, never>;
|
|
2469
2511
|
}
|
|
2470
2512
|
|
|
2471
2513
|
declare class PTableCell extends BaseComponent {
|
|
@@ -2499,20 +2541,26 @@ declare class PTableRow extends BaseComponent {
|
|
|
2499
2541
|
|
|
2500
2542
|
declare class PTabs extends BaseComponent {
|
|
2501
2543
|
activeTabIndex?: number;
|
|
2544
|
+
background?: TabsBackground;
|
|
2545
|
+
compact?: boolean;
|
|
2502
2546
|
size?: BreakpointCustomizable<TabsSize>;
|
|
2547
|
+
/** @deprecated */
|
|
2503
2548
|
weight?: TabsWeight;
|
|
2504
2549
|
update: EventEmitter<CustomEvent<TabsUpdateEventDetail>>;
|
|
2505
2550
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTabs, never>;
|
|
2506
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTabs, "p-tabs,[p-tabs]", never, { "activeTabIndex": { "alias": "activeTabIndex"; "required": false; }; "size": { "alias": "size"; "required": false; }; "weight": { "alias": "weight"; "required": false; }; }, { "update": "update"; }, never, ["*"], false, never>;
|
|
2551
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTabs, "p-tabs,[p-tabs]", never, { "activeTabIndex": { "alias": "activeTabIndex"; "required": false; }; "background": { "alias": "background"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "size": { "alias": "size"; "required": false; }; "weight": { "alias": "weight"; "required": false; }; }, { "update": "update"; }, never, ["*"], false, never>;
|
|
2507
2552
|
}
|
|
2508
2553
|
|
|
2509
2554
|
declare class PTabsBar extends BaseComponent {
|
|
2510
2555
|
activeTabIndex?: number | undefined;
|
|
2556
|
+
background?: TabsBarBackground;
|
|
2557
|
+
compact?: boolean;
|
|
2511
2558
|
size?: BreakpointCustomizable<TabsBarSize>;
|
|
2559
|
+
/** @deprecated */
|
|
2512
2560
|
weight?: TabsBarWeight;
|
|
2513
2561
|
update: EventEmitter<CustomEvent<TabsBarUpdateEventDetail>>;
|
|
2514
2562
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTabsBar, never>;
|
|
2515
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PTabsBar, "p-tabs-bar,[p-tabs-bar]", never, { "activeTabIndex": { "alias": "activeTabIndex"; "required": false; }; "size": { "alias": "size"; "required": false; }; "weight": { "alias": "weight"; "required": false; }; }, { "update": "update"; }, never, ["*"], false, never>;
|
|
2563
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PTabsBar, "p-tabs-bar,[p-tabs-bar]", never, { "activeTabIndex": { "alias": "activeTabIndex"; "required": false; }; "background": { "alias": "background"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "size": { "alias": "size"; "required": false; }; "weight": { "alias": "weight"; "required": false; }; }, { "update": "update"; }, never, ["*"], false, never>;
|
|
2516
2564
|
}
|
|
2517
2565
|
|
|
2518
2566
|
declare class PTabsItem extends BaseComponent {
|
|
@@ -2598,4 +2646,4 @@ declare class ToastManager {
|
|
|
2598
2646
|
}
|
|
2599
2647
|
|
|
2600
2648
|
export { DECLARATIONS, PAccordion, PBanner, PButton, PButtonPure, PButtonTile, PCanvas, PCarousel, PCheckbox, PCrest, PDisplay, PDivider, PDrilldown, PDrilldownItem, PDrilldownLink, PFieldset, PFlag, PFlyout, PHeading, PIcon, PInlineNotification, PInputDate, PInputEmail, PInputMonth, PInputNumber, PInputPassword, PInputSearch, PInputTel, PInputText, PInputTime, PInputUrl, PInputWeek, PLink, PLinkPure, PLinkTile, PLinkTileProduct, PModal, PModelSignature, PMultiSelect, PMultiSelectOption, POptgroup, PPagination, PPinCode, PPopover, PRadioGroup, PRadioGroupOption, PScroller, PSegmentedControl, PSegmentedControlItem, PSelect, PSelectOption, PSheet, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextList, PTextListItem, PTextarea, PToast, PWordmark, PorscheDesignSystemModule, ToastManager };
|
|
2601
|
-
export type { AccordionHeadingTag, AccordionSize, AccordionUpdateEventDetail, AlignLabel, AriaAttributes, AriaRole, Backdrop, BannerHeadingTag, BannerState, Booleanish, Breakpoint, BreakpointCustomizable, BreakpointValues, ButtonAriaAttribute, ButtonIcon, ButtonPureAlignLabel, ButtonPureAriaAttribute, ButtonPureIcon, ButtonPureSize, ButtonPureType, ButtonTileAlign, ButtonTileAriaAttribute, ButtonTileAspectRatio, ButtonTileIcon, ButtonTileSize, ButtonTileType, ButtonTileWeight, ButtonType, ButtonVariant, CanvasBackground, CanvasSidebarStartUpdateEventDetail, CarouselAlignControls, CarouselAlignHeader, CarouselAriaAttribute, CarouselHeadingSize, CarouselInternationalization, CarouselSlidesPerPage, CarouselUpdateEventDetail, CarouselWidth, CheckboxBlurEventDetail, CheckboxChangeEventDetail, CheckboxState, CrestAriaAttribute, CrestTarget, Direction, DisplayAlign, DisplayColor, DisplaySize, DisplayTag, DividerColor, DividerDirection, DrilldownAriaAttribute, DrilldownLinkAriaAttribute, DrilldownLinkTarget, DrilldownUpdateEventDetail, FieldsetLabelSize, FieldsetState, FlagAriaAttribute, FlagName, FlagSize, FlyoutAriaAttribute, FlyoutBackdrop, FlyoutBackground, FlyoutFooterBehavior, FlyoutMotionHiddenEndEventDetail, FlyoutMotionVisibleEndEventDetail, FlyoutPosition, FormState, GroupDirection, HeadingAlign, HeadingColor, HeadingSize, HeadingTag, IconAriaAttribute, IconColor, IconName, IconSize, InlineNotificationActionIcon, InlineNotificationHeadingTag, InlineNotificationState, InputDateBlurEventDetail, InputDateChangeEventDetail, InputDateInputEventDetail, InputDateState, InputEmailBlurEventDetail, InputEmailChangeEventDetail, InputEmailInputEventDetail, InputEmailState, InputMonthBlurEventDetail, InputMonthChangeEventDetail, InputMonthInputEventDetail, InputMonthState, InputNumberBlurEventDetail, InputNumberChangeEventDetail, InputNumberInputEventDetail, InputNumberState, InputPasswordBlurEventDetail, InputPasswordChangeEventDetail, InputPasswordInputEventDetail, InputPasswordState, InputSearchBlurEventDetail, InputSearchChangeEventDetail, InputSearchInputEventDetail, InputSearchState, InputTelBlurEventDetail, InputTelChangeEventDetail, InputTelInputEventDetail, InputTelState, InputTextBlurEventDetail, InputTextChangeEventDetail, InputTextInputEventDetail, InputTextState, InputTimeBlurEventDetail, InputTimeChangeEventDetail, InputTimeInputEventDetail, InputTimeState, InputUrlBlurEventDetail, InputUrlChangeEventDetail, InputUrlInputEventDetail, InputUrlState, InputWeekBlurEventDetail, InputWeekChangeEventDetail, InputWeekInputEventDetail, InputWeekState, LinkAriaAttribute, LinkButtonIconName, LinkButtonVariant, LinkIcon, LinkPureAlignLabel, LinkPureAriaAttribute, LinkPureIcon, LinkPureSize, LinkPureTarget, LinkTarget, LinkTileAlign, LinkTileAriaAttribute, LinkTileAspectRatio, LinkTileProductAspectRatio, LinkTileProductLikeEventDetail, LinkTileProductTarget, LinkTileSize, LinkTileTarget, LinkTileWeight, LinkVariant, ModalAriaAttribute, ModalBackdrop, ModalBackground, ModalMotionHiddenEndEventDetail, ModalMotionVisibleEndEventDetail, ModelSignatureColor, ModelSignatureFetchPriority, ModelSignatureModel, ModelSignatureSize, MultiSelectChangeEventDetail, MultiSelectDropdownDirection, MultiSelectState, MultiSelectToggleEventDetail, PaginationInternationalization, PaginationUpdateEventDetail, PinCodeChangeEventDetail, PinCodeLength, PinCodeState, PinCodeType, PopoverAriaAttribute, PopoverDirection, PorscheDesignSystem, PorscheDesignSystemModuleConfig, RadioGroupChangeEventDetail, RadioGroupDirection, RadioGroupState, ScrollerAlignScrollIndicator, ScrollerAriaAttribute, ScrollerScrollToPosition, SegmentedControlChangeEventDetail, SegmentedControlColumns, SegmentedControlItemAriaAttribute, SegmentedControlItemIcon, SegmentedControlState, SelectChangeEventDetail, SelectComponentsDropdownDirection, SelectDropdownDirection, SelectState, SelectToggleEventDetail, SelectedAriaAttributes, SelectedAriaRole, SheetAriaAttribute, SheetBackground, SheetMotionHiddenEndEventDetail, SheetMotionVisibleEndEventDetail, SpinnerAriaAttribute, SpinnerSize, StepperHorizontalItemState, StepperHorizontalSize, StepperHorizontalUpdateEventDetail, SwitchAlignLabel, SwitchUpdateEventDetail, TableHeadCellSort, TableLayout, TableUpdateEventDetail, TabsBarSize, TabsBarUpdateEventDetail, TabsBarWeight, TabsSize, TabsUpdateEventDetail, TabsWeight, TagDismissibleAriaAttribute, TagIcon, TagVariant, TextAlign, TextColor, TextListType, TextSize, TextTag, TextWeight, TextareaBlurEventDetail, TextareaChangeEventDetail, TextareaInputEventDetail, TextareaResize, TextareaState, TextareaWrap, TileAlign, TileAspectRatio, TileSize, TileWeight, ToastMessage, ToastState, TypographyAlign, TypographyTextColor, TypographyTextWeight, WordmarkAriaAttribute, WordmarkSize, WordmarkTarget };
|
|
2649
|
+
export type { AccordionAlignMarker, AccordionBackground, AccordionHeadingTag, AccordionSize, AccordionUpdateEventDetail, AlignLabel, AriaAttributes, AriaRole, Backdrop, BannerHeadingTag, BannerState, Booleanish, Breakpoint, BreakpointCustomizable, BreakpointValues, ButtonAriaAttribute, ButtonIcon, ButtonPureAlignLabel, ButtonPureAriaAttribute, ButtonPureIcon, ButtonPureSize, ButtonPureType, ButtonTileAlign, ButtonTileAriaAttribute, ButtonTileAspectRatio, ButtonTileIcon, ButtonTileSize, ButtonTileType, ButtonTileWeight, ButtonType, ButtonVariant, CanvasBackground, CanvasSidebarStartUpdateEventDetail, CarouselAlignControls, CarouselAlignHeader, CarouselAriaAttribute, CarouselHeadingSize, CarouselInternationalization, CarouselSlidesPerPage, CarouselUpdateEventDetail, CarouselWidth, CheckboxBlurEventDetail, CheckboxChangeEventDetail, CheckboxState, CrestAriaAttribute, CrestTarget, Direction, DisplayAlign, DisplayColor, DisplaySize, DisplayTag, DividerColor, DividerDirection, DrilldownAriaAttribute, DrilldownLinkAriaAttribute, DrilldownLinkTarget, DrilldownUpdateEventDetail, FieldsetLabelSize, FieldsetState, FlagAriaAttribute, FlagName, FlagSize, FlyoutAriaAttribute, FlyoutBackdrop, FlyoutBackground, FlyoutFooterBehavior, FlyoutMotionHiddenEndEventDetail, FlyoutMotionVisibleEndEventDetail, FlyoutPosition, FormState, GroupDirection, HeadingAlign, HeadingColor, HeadingSize, HeadingTag, IconAriaAttribute, IconColor, IconName, IconSize, InlineNotificationActionIcon, InlineNotificationHeadingTag, InlineNotificationState, InputDateBlurEventDetail, InputDateChangeEventDetail, InputDateInputEventDetail, InputDateState, InputEmailBlurEventDetail, InputEmailChangeEventDetail, InputEmailInputEventDetail, InputEmailState, InputMonthBlurEventDetail, InputMonthChangeEventDetail, InputMonthInputEventDetail, InputMonthState, InputNumberBlurEventDetail, InputNumberChangeEventDetail, InputNumberInputEventDetail, InputNumberState, InputPasswordBlurEventDetail, InputPasswordChangeEventDetail, InputPasswordInputEventDetail, InputPasswordState, InputSearchBlurEventDetail, InputSearchChangeEventDetail, InputSearchInputEventDetail, InputSearchState, InputTelBlurEventDetail, InputTelChangeEventDetail, InputTelInputEventDetail, InputTelState, InputTextBlurEventDetail, InputTextChangeEventDetail, InputTextInputEventDetail, InputTextState, InputTimeBlurEventDetail, InputTimeChangeEventDetail, InputTimeInputEventDetail, InputTimeState, InputUrlBlurEventDetail, InputUrlChangeEventDetail, InputUrlInputEventDetail, InputUrlState, InputWeekBlurEventDetail, InputWeekChangeEventDetail, InputWeekInputEventDetail, InputWeekState, LinkAriaAttribute, LinkButtonIconName, LinkButtonVariant, LinkIcon, LinkPureAlignLabel, LinkPureAriaAttribute, LinkPureIcon, LinkPureSize, LinkPureTarget, LinkTarget, LinkTileAlign, LinkTileAriaAttribute, LinkTileAspectRatio, LinkTileProductAspectRatio, LinkTileProductLikeEventDetail, LinkTileProductTarget, LinkTileSize, LinkTileTarget, LinkTileWeight, LinkVariant, ModalAriaAttribute, ModalBackdrop, ModalBackground, ModalMotionHiddenEndEventDetail, ModalMotionVisibleEndEventDetail, ModelSignatureColor, ModelSignatureFetchPriority, ModelSignatureModel, ModelSignatureSize, MultiSelectChangeEventDetail, MultiSelectDropdownDirection, MultiSelectState, MultiSelectToggleEventDetail, PaginationInternationalization, PaginationUpdateEventDetail, PinCodeChangeEventDetail, PinCodeLength, PinCodeState, PinCodeType, PopoverAriaAttribute, PopoverDirection, PorscheDesignSystem, PorscheDesignSystemModuleConfig, RadioGroupChangeEventDetail, RadioGroupDirection, RadioGroupState, ScrollerAlignScrollIndicator, ScrollerAriaAttribute, ScrollerScrollToPosition, SegmentedControlChangeEventDetail, SegmentedControlColumns, SegmentedControlItemAriaAttribute, SegmentedControlItemIcon, SegmentedControlState, SelectChangeEventDetail, SelectComponentsDropdownDirection, SelectDropdownDirection, SelectState, SelectToggleEventDetail, SelectedAriaAttributes, SelectedAriaRole, SheetAriaAttribute, SheetBackground, SheetMotionHiddenEndEventDetail, SheetMotionVisibleEndEventDetail, SpinnerAriaAttribute, SpinnerSize, StepperHorizontalItemState, StepperHorizontalSize, StepperHorizontalUpdateEventDetail, SwitchAlignLabel, SwitchUpdateEventDetail, TableHeadCellSort, TableLayout, TableUpdateEventDetail, TabsBackground, TabsBarBackground, TabsBarSize, TabsBarUpdateEventDetail, TabsBarWeight, TabsSize, TabsUpdateEventDetail, TabsWeight, TagDismissibleAriaAttribute, TagIcon, TagVariant, TextAlign, TextColor, TextListType, TextSize, TextTag, TextWeight, TextareaBlurEventDetail, TextareaChangeEventDetail, TextareaInputEventDetail, TextareaResize, TextareaState, TextareaWrap, TileAlign, TileAspectRatio, TileSize, TileWeight, ToastMessage, ToastState, TypographyAlign, TypographyTextColor, TypographyTextWeight, WordmarkAriaAttribute, WordmarkSize, WordmarkTarget };
|