@porsche-design-system/components-angular 3.34.0 → 3.35.0-rc.0
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": "3.
|
|
3
|
+
"version": "3.35.0-rc.0",
|
|
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.
|
|
20
|
+
"@porsche-design-system/components-js": "3.35.0-rc.0",
|
|
21
21
|
"tslib": "^2.8.1"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
@@ -880,6 +880,225 @@ type AccordionUpdateEventDetail = AccordionUpdateEvent;
|
|
|
880
880
|
/** @deprecated */
|
|
881
881
|
type AccordionTag = HeadingTag;
|
|
882
882
|
type AccordionHeadingTag = HeadingTag;
|
|
883
|
+
declare const AI_TAG_VARIANTS: readonly [
|
|
884
|
+
"abbreviation",
|
|
885
|
+
"generated",
|
|
886
|
+
"modified"
|
|
887
|
+
];
|
|
888
|
+
type AiTagVariant = (typeof AI_TAG_VARIANTS)[number];
|
|
889
|
+
declare const AI_TAG_TRANSLATIONS: {
|
|
890
|
+
bg_BG: {
|
|
891
|
+
short: string;
|
|
892
|
+
long: string;
|
|
893
|
+
generated: string;
|
|
894
|
+
modified: string;
|
|
895
|
+
};
|
|
896
|
+
bs_BA: {
|
|
897
|
+
short: string;
|
|
898
|
+
long: string;
|
|
899
|
+
generated: string;
|
|
900
|
+
modified: string;
|
|
901
|
+
};
|
|
902
|
+
cs_CZ: {
|
|
903
|
+
short: string;
|
|
904
|
+
long: string;
|
|
905
|
+
generated: string;
|
|
906
|
+
modified: string;
|
|
907
|
+
};
|
|
908
|
+
da_DK: {
|
|
909
|
+
short: string;
|
|
910
|
+
long: string;
|
|
911
|
+
generated: string;
|
|
912
|
+
modified: string;
|
|
913
|
+
};
|
|
914
|
+
de_DE: {
|
|
915
|
+
short: string;
|
|
916
|
+
long: string;
|
|
917
|
+
generated: string;
|
|
918
|
+
modified: string;
|
|
919
|
+
};
|
|
920
|
+
el_GR: {
|
|
921
|
+
short: string;
|
|
922
|
+
long: string;
|
|
923
|
+
generated: string;
|
|
924
|
+
modified: string;
|
|
925
|
+
};
|
|
926
|
+
en_CY: {
|
|
927
|
+
short: string;
|
|
928
|
+
long: string;
|
|
929
|
+
generated: string;
|
|
930
|
+
modified: string;
|
|
931
|
+
};
|
|
932
|
+
en_GB: {
|
|
933
|
+
short: string;
|
|
934
|
+
long: string;
|
|
935
|
+
generated: string;
|
|
936
|
+
modified: string;
|
|
937
|
+
};
|
|
938
|
+
en_US: {
|
|
939
|
+
short: string;
|
|
940
|
+
long: string;
|
|
941
|
+
generated: string;
|
|
942
|
+
modified: string;
|
|
943
|
+
};
|
|
944
|
+
es_ES: {
|
|
945
|
+
short: string;
|
|
946
|
+
long: string;
|
|
947
|
+
generated: string;
|
|
948
|
+
modified: string;
|
|
949
|
+
};
|
|
950
|
+
et_EE: {
|
|
951
|
+
short: string;
|
|
952
|
+
long: string;
|
|
953
|
+
generated: string;
|
|
954
|
+
modified: string;
|
|
955
|
+
};
|
|
956
|
+
fi_FI: {
|
|
957
|
+
short: string;
|
|
958
|
+
long: string;
|
|
959
|
+
generated: string;
|
|
960
|
+
modified: string;
|
|
961
|
+
};
|
|
962
|
+
fr_FR: {
|
|
963
|
+
short: string;
|
|
964
|
+
long: string;
|
|
965
|
+
generated: string;
|
|
966
|
+
modified: string;
|
|
967
|
+
};
|
|
968
|
+
he_IL: {
|
|
969
|
+
short: string;
|
|
970
|
+
long: string;
|
|
971
|
+
generated: string;
|
|
972
|
+
modified: string;
|
|
973
|
+
};
|
|
974
|
+
hr_HR: {
|
|
975
|
+
short: string;
|
|
976
|
+
long: string;
|
|
977
|
+
generated: string;
|
|
978
|
+
modified: string;
|
|
979
|
+
};
|
|
980
|
+
hu_HU: {
|
|
981
|
+
short: string;
|
|
982
|
+
long: string;
|
|
983
|
+
generated: string;
|
|
984
|
+
modified: string;
|
|
985
|
+
};
|
|
986
|
+
is_IS: {
|
|
987
|
+
short: string;
|
|
988
|
+
long: string;
|
|
989
|
+
generated: string;
|
|
990
|
+
modified: string;
|
|
991
|
+
};
|
|
992
|
+
it_IT: {
|
|
993
|
+
short: string;
|
|
994
|
+
long: string;
|
|
995
|
+
generated: string;
|
|
996
|
+
modified: string;
|
|
997
|
+
};
|
|
998
|
+
lt_LT: {
|
|
999
|
+
short: string;
|
|
1000
|
+
long: string;
|
|
1001
|
+
generated: string;
|
|
1002
|
+
modified: string;
|
|
1003
|
+
};
|
|
1004
|
+
lv_LV: {
|
|
1005
|
+
short: string;
|
|
1006
|
+
long: string;
|
|
1007
|
+
generated: string;
|
|
1008
|
+
modified: string;
|
|
1009
|
+
};
|
|
1010
|
+
me_ME: {
|
|
1011
|
+
short: string;
|
|
1012
|
+
long: string;
|
|
1013
|
+
generated: string;
|
|
1014
|
+
modified: string;
|
|
1015
|
+
};
|
|
1016
|
+
mk_MK: {
|
|
1017
|
+
short: string;
|
|
1018
|
+
long: string;
|
|
1019
|
+
generated: string;
|
|
1020
|
+
modified: string;
|
|
1021
|
+
};
|
|
1022
|
+
mt_MT: {
|
|
1023
|
+
short: string;
|
|
1024
|
+
long: string;
|
|
1025
|
+
generated: string;
|
|
1026
|
+
modified: string;
|
|
1027
|
+
};
|
|
1028
|
+
nb_NO: {
|
|
1029
|
+
short: string;
|
|
1030
|
+
long: string;
|
|
1031
|
+
generated: string;
|
|
1032
|
+
modified: string;
|
|
1033
|
+
};
|
|
1034
|
+
nl_NL: {
|
|
1035
|
+
short: string;
|
|
1036
|
+
long: string;
|
|
1037
|
+
generated: string;
|
|
1038
|
+
modified: string;
|
|
1039
|
+
};
|
|
1040
|
+
pl_PL: {
|
|
1041
|
+
short: string;
|
|
1042
|
+
long: string;
|
|
1043
|
+
generated: string;
|
|
1044
|
+
modified: string;
|
|
1045
|
+
};
|
|
1046
|
+
pt_PT: {
|
|
1047
|
+
short: string;
|
|
1048
|
+
long: string;
|
|
1049
|
+
generated: string;
|
|
1050
|
+
modified: string;
|
|
1051
|
+
};
|
|
1052
|
+
ro_RO: {
|
|
1053
|
+
short: string;
|
|
1054
|
+
long: string;
|
|
1055
|
+
generated: string;
|
|
1056
|
+
modified: string;
|
|
1057
|
+
};
|
|
1058
|
+
ru_RU: {
|
|
1059
|
+
short: string;
|
|
1060
|
+
long: string;
|
|
1061
|
+
generated: string;
|
|
1062
|
+
modified: string;
|
|
1063
|
+
};
|
|
1064
|
+
sk_SK: {
|
|
1065
|
+
short: string;
|
|
1066
|
+
long: string;
|
|
1067
|
+
generated: string;
|
|
1068
|
+
modified: string;
|
|
1069
|
+
};
|
|
1070
|
+
sl_SI: {
|
|
1071
|
+
short: string;
|
|
1072
|
+
long: string;
|
|
1073
|
+
generated: string;
|
|
1074
|
+
modified: string;
|
|
1075
|
+
};
|
|
1076
|
+
sr_RS: {
|
|
1077
|
+
short: string;
|
|
1078
|
+
long: string;
|
|
1079
|
+
generated: string;
|
|
1080
|
+
modified: string;
|
|
1081
|
+
};
|
|
1082
|
+
sv_SE: {
|
|
1083
|
+
short: string;
|
|
1084
|
+
long: string;
|
|
1085
|
+
generated: string;
|
|
1086
|
+
modified: string;
|
|
1087
|
+
};
|
|
1088
|
+
tr_TR: {
|
|
1089
|
+
short: string;
|
|
1090
|
+
long: string;
|
|
1091
|
+
generated: string;
|
|
1092
|
+
modified: string;
|
|
1093
|
+
};
|
|
1094
|
+
uk_UA: {
|
|
1095
|
+
short: string;
|
|
1096
|
+
long: string;
|
|
1097
|
+
generated: string;
|
|
1098
|
+
modified: string;
|
|
1099
|
+
};
|
|
1100
|
+
};
|
|
1101
|
+
type AiTagLocale = keyof typeof AI_TAG_TRANSLATIONS;
|
|
883
1102
|
declare const INLINE_NOTIFICATION_STATES: readonly [
|
|
884
1103
|
"success",
|
|
885
1104
|
"info",
|
|
@@ -2450,6 +2669,14 @@ declare class PAccordion extends BaseComponentWithTheme {
|
|
|
2450
2669
|
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; }; "tag": { "alias": "tag"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, { "accordionChange": "accordionChange"; "update": "update"; }, never, ["*"], false, never>;
|
|
2451
2670
|
}
|
|
2452
2671
|
|
|
2672
|
+
declare class PAiTag extends BaseComponentWithTheme {
|
|
2673
|
+
locale?: AiTagLocale;
|
|
2674
|
+
theme?: Theme;
|
|
2675
|
+
variant?: AiTagVariant;
|
|
2676
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PAiTag, never>;
|
|
2677
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PAiTag, "p-ai-tag,[p-ai-tag]", never, { "locale": { "alias": "locale"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2678
|
+
}
|
|
2679
|
+
|
|
2453
2680
|
declare class PBanner extends BaseComponentWithTheme {
|
|
2454
2681
|
description?: string;
|
|
2455
2682
|
dismissButton?: boolean;
|
|
@@ -3314,7 +3541,7 @@ declare class PorscheDesignSystemModule {
|
|
|
3314
3541
|
constructor(configParam: DefaultConfig);
|
|
3315
3542
|
static load(config: PorscheDesignSystemModuleConfig): ModuleWithProviders<PorscheDesignSystemModule>;
|
|
3316
3543
|
static ɵfac: i0.ɵɵFactoryDeclaration<PorscheDesignSystemModule, [{ optional: true; }]>;
|
|
3317
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PorscheDesignSystemModule, [typeof PAccordion, typeof PBanner, typeof PButton, typeof PButtonGroup, typeof PButtonPure, typeof PButtonTile, typeof PCanvas, typeof PCarousel, typeof PCheckbox, typeof PCheckboxWrapper, typeof PContentWrapper, typeof PCrest, typeof PDisplay, typeof PDivider, typeof PDrilldown, typeof PDrilldownItem, typeof PDrilldownLink, typeof PFieldset, typeof PFieldsetWrapper, typeof PFlag, typeof PFlex, typeof PFlexItem, typeof PFlyout, typeof PGrid, typeof PGridItem, typeof PHeading, typeof PHeadline, typeof PIcon, typeof PInlineNotification, typeof PInputDate, typeof PInputEmail, typeof PInputMonth, typeof PInputNumber, typeof PInputPassword, typeof PInputSearch, typeof PInputTel, typeof PInputText, typeof PInputTime, typeof PInputUrl, typeof PInputWeek, typeof PLink, typeof PLinkPure, typeof PLinkSocial, typeof PLinkTile, typeof PLinkTileModelSignature, typeof PLinkTileProduct, typeof PMarque, typeof PModal, typeof PModelSignature, typeof PMultiSelect, typeof PMultiSelectOption, typeof POptgroup, typeof PPagination, typeof PPinCode, typeof PPopover, typeof PRadioButtonWrapper, typeof PRadioGroup, typeof PRadioGroupOption, typeof PScroller, typeof PSegmentedControl, typeof PSegmentedControlItem, typeof PSelect, typeof PSelectOption, typeof PSelectWrapper, typeof PSheet, 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 PTextarea, typeof PTextareaWrapper, typeof PToast, typeof PWordmark], never, [typeof PAccordion, typeof PBanner, typeof PButton, typeof PButtonGroup, typeof PButtonPure, typeof PButtonTile, typeof PCanvas, typeof PCarousel, typeof PCheckbox, typeof PCheckboxWrapper, typeof PContentWrapper, typeof PCrest, typeof PDisplay, typeof PDivider, typeof PDrilldown, typeof PDrilldownItem, typeof PDrilldownLink, typeof PFieldset, typeof PFieldsetWrapper, typeof PFlag, typeof PFlex, typeof PFlexItem, typeof PFlyout, typeof PGrid, typeof PGridItem, typeof PHeading, typeof PHeadline, typeof PIcon, typeof PInlineNotification, typeof PInputDate, typeof PInputEmail, typeof PInputMonth, typeof PInputNumber, typeof PInputPassword, typeof PInputSearch, typeof PInputTel, typeof PInputText, typeof PInputTime, typeof PInputUrl, typeof PInputWeek, typeof PLink, typeof PLinkPure, typeof PLinkSocial, typeof PLinkTile, typeof PLinkTileModelSignature, typeof PLinkTileProduct, typeof PMarque, typeof PModal, typeof PModelSignature, typeof PMultiSelect, typeof PMultiSelectOption, typeof POptgroup, typeof PPagination, typeof PPinCode, typeof PPopover, typeof PRadioButtonWrapper, typeof PRadioGroup, typeof PRadioGroupOption, typeof PScroller, typeof PSegmentedControl, typeof PSegmentedControlItem, typeof PSelect, typeof PSelectOption, typeof PSelectWrapper, typeof PSheet, 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 PTextarea, typeof PTextareaWrapper, typeof PToast, typeof PWordmark]>;
|
|
3544
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PorscheDesignSystemModule, [typeof PAccordion, typeof PAiTag, typeof PBanner, typeof PButton, typeof PButtonGroup, typeof PButtonPure, typeof PButtonTile, typeof PCanvas, typeof PCarousel, typeof PCheckbox, typeof PCheckboxWrapper, typeof PContentWrapper, typeof PCrest, typeof PDisplay, typeof PDivider, typeof PDrilldown, typeof PDrilldownItem, typeof PDrilldownLink, typeof PFieldset, typeof PFieldsetWrapper, typeof PFlag, typeof PFlex, typeof PFlexItem, typeof PFlyout, typeof PGrid, typeof PGridItem, typeof PHeading, typeof PHeadline, typeof PIcon, typeof PInlineNotification, typeof PInputDate, typeof PInputEmail, typeof PInputMonth, typeof PInputNumber, typeof PInputPassword, typeof PInputSearch, typeof PInputTel, typeof PInputText, typeof PInputTime, typeof PInputUrl, typeof PInputWeek, typeof PLink, typeof PLinkPure, typeof PLinkSocial, typeof PLinkTile, typeof PLinkTileModelSignature, typeof PLinkTileProduct, typeof PMarque, typeof PModal, typeof PModelSignature, typeof PMultiSelect, typeof PMultiSelectOption, typeof POptgroup, typeof PPagination, typeof PPinCode, typeof PPopover, typeof PRadioButtonWrapper, typeof PRadioGroup, typeof PRadioGroupOption, typeof PScroller, typeof PSegmentedControl, typeof PSegmentedControlItem, typeof PSelect, typeof PSelectOption, typeof PSelectWrapper, typeof PSheet, 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 PTextarea, typeof PTextareaWrapper, typeof PToast, typeof PWordmark], never, [typeof PAccordion, typeof PAiTag, typeof PBanner, typeof PButton, typeof PButtonGroup, typeof PButtonPure, typeof PButtonTile, typeof PCanvas, typeof PCarousel, typeof PCheckbox, typeof PCheckboxWrapper, typeof PContentWrapper, typeof PCrest, typeof PDisplay, typeof PDivider, typeof PDrilldown, typeof PDrilldownItem, typeof PDrilldownLink, typeof PFieldset, typeof PFieldsetWrapper, typeof PFlag, typeof PFlex, typeof PFlexItem, typeof PFlyout, typeof PGrid, typeof PGridItem, typeof PHeading, typeof PHeadline, typeof PIcon, typeof PInlineNotification, typeof PInputDate, typeof PInputEmail, typeof PInputMonth, typeof PInputNumber, typeof PInputPassword, typeof PInputSearch, typeof PInputTel, typeof PInputText, typeof PInputTime, typeof PInputUrl, typeof PInputWeek, typeof PLink, typeof PLinkPure, typeof PLinkSocial, typeof PLinkTile, typeof PLinkTileModelSignature, typeof PLinkTileProduct, typeof PMarque, typeof PModal, typeof PModelSignature, typeof PMultiSelect, typeof PMultiSelectOption, typeof POptgroup, typeof PPagination, typeof PPinCode, typeof PPopover, typeof PRadioButtonWrapper, typeof PRadioGroup, typeof PRadioGroupOption, typeof PScroller, typeof PSegmentedControl, typeof PSegmentedControlItem, typeof PSelect, typeof PSelectOption, typeof PSelectWrapper, typeof PSheet, 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 PTextarea, typeof PTextareaWrapper, typeof PToast, typeof PWordmark]>;
|
|
3318
3545
|
static ɵinj: i0.ɵɵInjectorDeclaration<PorscheDesignSystemModule>;
|
|
3319
3546
|
}
|
|
3320
3547
|
|
|
@@ -3324,5 +3551,5 @@ declare class ToastManager {
|
|
|
3324
3551
|
static ɵprov: i0.ɵɵInjectableDeclaration<ToastManager>;
|
|
3325
3552
|
}
|
|
3326
3553
|
|
|
3327
|
-
export { DECLARATIONS, PAccordion, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCanvas, PCarousel, PCheckbox, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PDrilldown, PDrilldownItem, PDrilldownLink, PFieldset, PFieldsetWrapper, PFlag, PFlex, PFlexItem, PFlyout, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PInputDate, PInputEmail, PInputMonth, PInputNumber, PInputPassword, PInputSearch, PInputTel, PInputText, PInputTime, PInputUrl, PInputWeek, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PLinkTileProduct, PMarque, PModal, PModelSignature, PMultiSelect, PMultiSelectOption, POptgroup, PPagination, PPinCode, PPopover, PRadioButtonWrapper, PRadioGroup, PRadioGroupOption, PScroller, PSegmentedControl, PSegmentedControlItem, PSelect, PSelectOption, PSelectWrapper, PSheet, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextarea, PTextareaWrapper, PToast, PWordmark, PorscheDesignSystemModule, THEME_TOKEN, ToastManager };
|
|
3328
|
-
export type { AccordionHeadingTag, AccordionSize, AccordionTag, AccordionUpdateEvent, AccordionUpdateEventDetail, AlignLabel, AriaAttributes, AriaRole, Backdrop, BannerHeadingTag, BannerState, BannerWidth, Booleanish, Breakpoint, BreakpointCustomizable, BreakpointValues, ButtonAriaAttribute, ButtonGroupDirection, ButtonIcon, ButtonPureAlignLabel, ButtonPureAriaAttribute, ButtonPureIcon, ButtonPureSize, ButtonPureType, ButtonPureWeight, ButtonTileAlign, ButtonTileAriaAttribute, ButtonTileAspectRatio, ButtonTileBackground, ButtonTileIcon, ButtonTileSize, ButtonTileType, ButtonTileWeight, ButtonType, ButtonVariant, CanvasSidebarStartUpdateEventDetail, CarouselAlignControls, CarouselAlignHeader, CarouselAriaAttribute, CarouselGradientColor, CarouselHeadingSize, CarouselInternationalization, CarouselSlidesPerPage, CarouselUpdateEvent, CarouselUpdateEventDetail, CarouselWidth, CheckboxBlurEventDetail, CheckboxChangeEventDetail, CheckboxState, CheckboxUpdateEventDetail, CheckboxWrapperState, ContentWrapperBackgroundColor, ContentWrapperWidth, CrestAriaAttribute, CrestTarget, Direction, DisplayAlign, DisplayColor, DisplaySize, DisplayTag, DividerColor, DividerDirection, DividerOrientation, DrilldownAriaAttribute, DrilldownLinkAriaAttribute, DrilldownLinkTarget, DrilldownUpdate, DrilldownUpdateEvent, DrilldownUpdateEventDetail, FieldsetLabelSize, FieldsetState, FieldsetWrapperLabelSize, FieldsetWrapperState, FlagAriaAttribute, FlagName, FlagSize, FlexAlignContent, FlexAlignItems, FlexDirection, FlexInline, FlexItemAlignSelf, FlexItemFlex, FlexItemGrow, FlexItemOffset, FlexItemShrink, FlexItemWidth, FlexJustifyContent, FlexWrap, FlyoutAriaAttribute, FlyoutBackdrop, FlyoutFooterBehavior, FlyoutMotionHiddenEndEventDetail, FlyoutMotionVisibleEndEventDetail, FlyoutPosition, FormState, GridDirection, GridGutter, GridItemOffset, GridItemSize, GridWrap, GroupDirection, HeadingAlign, HeadingColor, HeadingSize, HeadingTag, HeadlineAlign, HeadlineColor, HeadlineTag, HeadlineVariant, HeadlineVariantCustom, HeadlineVariantType, 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, LinkPureWeight, LinkSocialIcon, LinkSocialTarget, LinkTarget, LinkTileAlign, LinkTileAriaAttribute, LinkTileAspectRatio, LinkTileBackground, LinkTileModelSignatureAspectRatio, LinkTileModelSignatureHeadingTag, LinkTileModelSignatureLinkDirection, LinkTileModelSignatureModel, LinkTileModelSignatureWeight, LinkTileProductAspectRatio, LinkTileProductLikeEvent, LinkTileProductLikeEventDetail, LinkTileProductTarget, LinkTileSize, LinkTileTarget, LinkTileWeight, LinkVariant, MarqueAriaAttribute, MarqueSize, MarqueTarget, MarqueVariant, ModalAriaAttribute, ModalBackdrop, ModalMotionHiddenEndEventDetail, ModalMotionVisibleEndEventDetail, ModelSignatureColor, ModelSignatureFetchPriority, ModelSignatureModel, ModelSignatureSize, MultiSelectChangeEventDetail, MultiSelectDropdownDirection, MultiSelectState, MultiSelectToggleEventDetail, MultiSelectUpdateEvent, MultiSelectUpdateEventDetail, PaginationInternationalization, PaginationMaxNumberOfPageLinks, PaginationUpdateEvent, PaginationUpdateEventDetail, PinCodeChangeEventDetail, PinCodeLength, PinCodeState, PinCodeType, PinCodeUpdateEvent, PinCodeUpdateEventDetail, PopoverAriaAttribute, PopoverDirection, PorscheDesignSystem, PorscheDesignSystemModuleConfig, RadioButtonWrapperState, RadioGroupChangeEventDetail, RadioGroupDirection, RadioGroupState, ScrollerAlignScrollIndicator, ScrollerAriaAttribute, ScrollerGradientColor, ScrollerGradientColorScheme, ScrollerScrollIndicatorPosition, ScrollerScrollToPosition, SegmentedControlBackgroundColor, SegmentedControlChangeEventDetail, SegmentedControlColumns, SegmentedControlItemAriaAttribute, SegmentedControlItemIcon, SegmentedControlState, SegmentedControlUpdateEvent, SegmentedControlUpdateEventDetail, SelectChangeEventDetail, SelectComponentsDropdownDirection, SelectDropdownDirection, SelectState, SelectToggleEventDetail, SelectUpdateEventDetail, SelectWrapperDropdownDirection, SelectWrapperState, SelectedAriaAttributes, SelectedAriaRole, SheetAriaAttribute, SheetMotionHiddenEndEventDetail, SheetMotionVisibleEndEventDetail, SpinnerAriaAttribute, SpinnerSize, StepperHorizontalItemState, StepperHorizontalSize, StepperHorizontalUpdateEvent, StepperHorizontalUpdateEventDetail, SwitchAlignLabel, SwitchUpdateEvent, SwitchUpdateEventDetail, TableHeadCellSort, TableLayout, TableUpdateEvent, TableUpdateEventDetail, TabsBarGradientColor, TabsBarGradientColorScheme, TabsBarSize, TabsBarUpdateEvent, TabsBarUpdateEventDetail, TabsBarWeight, TabsGradientColor, TabsGradientColorScheme, TabsSize, TabsUpdateEvent, TabsUpdateEventDetail, TabsWeight, TagColor, TagDismissibleAriaAttribute, TagDismissibleColor, TagIcon, TagVariant, TextAlign, TextColor, TextFieldWrapperActionIcon, TextFieldWrapperState, TextFieldWrapperUnitPosition, TextListListType, TextListOrderType, TextListType, TextSize, TextTag, TextWeight, TextareaBlurEventDetail, TextareaChangeEventDetail, TextareaInputEventDetail, TextareaResize, TextareaState, TextareaWrap, TextareaWrapperState, Theme, TileAlign, TileAspectRatio, TileBackground, TileSize, TileWeight, ToastMessage, ToastState, TypographyAlign, TypographyTextColor, TypographyTextWeight, WordmarkAriaAttribute, WordmarkSize, WordmarkTarget };
|
|
3554
|
+
export { DECLARATIONS, PAccordion, PAiTag, PBanner, PButton, PButtonGroup, PButtonPure, PButtonTile, PCanvas, PCarousel, PCheckbox, PCheckboxWrapper, PContentWrapper, PCrest, PDisplay, PDivider, PDrilldown, PDrilldownItem, PDrilldownLink, PFieldset, PFieldsetWrapper, PFlag, PFlex, PFlexItem, PFlyout, PGrid, PGridItem, PHeading, PHeadline, PIcon, PInlineNotification, PInputDate, PInputEmail, PInputMonth, PInputNumber, PInputPassword, PInputSearch, PInputTel, PInputText, PInputTime, PInputUrl, PInputWeek, PLink, PLinkPure, PLinkSocial, PLinkTile, PLinkTileModelSignature, PLinkTileProduct, PMarque, PModal, PModelSignature, PMultiSelect, PMultiSelectOption, POptgroup, PPagination, PPinCode, PPopover, PRadioButtonWrapper, PRadioGroup, PRadioGroupOption, PScroller, PSegmentedControl, PSegmentedControlItem, PSelect, PSelectOption, PSelectWrapper, PSheet, PSpinner, PStepperHorizontal, PStepperHorizontalItem, PSwitch, PTable, PTableBody, PTableCell, PTableHead, PTableHeadCell, PTableHeadRow, PTableRow, PTabs, PTabsBar, PTabsItem, PTag, PTagDismissible, PText, PTextFieldWrapper, PTextList, PTextListItem, PTextarea, PTextareaWrapper, PToast, PWordmark, PorscheDesignSystemModule, THEME_TOKEN, ToastManager };
|
|
3555
|
+
export type { AccordionHeadingTag, AccordionSize, AccordionTag, AccordionUpdateEvent, AccordionUpdateEventDetail, AiTagLocale, AiTagVariant, AlignLabel, AriaAttributes, AriaRole, Backdrop, BannerHeadingTag, BannerState, BannerWidth, Booleanish, Breakpoint, BreakpointCustomizable, BreakpointValues, ButtonAriaAttribute, ButtonGroupDirection, ButtonIcon, ButtonPureAlignLabel, ButtonPureAriaAttribute, ButtonPureIcon, ButtonPureSize, ButtonPureType, ButtonPureWeight, ButtonTileAlign, ButtonTileAriaAttribute, ButtonTileAspectRatio, ButtonTileBackground, ButtonTileIcon, ButtonTileSize, ButtonTileType, ButtonTileWeight, ButtonType, ButtonVariant, CanvasSidebarStartUpdateEventDetail, CarouselAlignControls, CarouselAlignHeader, CarouselAriaAttribute, CarouselGradientColor, CarouselHeadingSize, CarouselInternationalization, CarouselSlidesPerPage, CarouselUpdateEvent, CarouselUpdateEventDetail, CarouselWidth, CheckboxBlurEventDetail, CheckboxChangeEventDetail, CheckboxState, CheckboxUpdateEventDetail, CheckboxWrapperState, ContentWrapperBackgroundColor, ContentWrapperWidth, CrestAriaAttribute, CrestTarget, Direction, DisplayAlign, DisplayColor, DisplaySize, DisplayTag, DividerColor, DividerDirection, DividerOrientation, DrilldownAriaAttribute, DrilldownLinkAriaAttribute, DrilldownLinkTarget, DrilldownUpdate, DrilldownUpdateEvent, DrilldownUpdateEventDetail, FieldsetLabelSize, FieldsetState, FieldsetWrapperLabelSize, FieldsetWrapperState, FlagAriaAttribute, FlagName, FlagSize, FlexAlignContent, FlexAlignItems, FlexDirection, FlexInline, FlexItemAlignSelf, FlexItemFlex, FlexItemGrow, FlexItemOffset, FlexItemShrink, FlexItemWidth, FlexJustifyContent, FlexWrap, FlyoutAriaAttribute, FlyoutBackdrop, FlyoutFooterBehavior, FlyoutMotionHiddenEndEventDetail, FlyoutMotionVisibleEndEventDetail, FlyoutPosition, FormState, GridDirection, GridGutter, GridItemOffset, GridItemSize, GridWrap, GroupDirection, HeadingAlign, HeadingColor, HeadingSize, HeadingTag, HeadlineAlign, HeadlineColor, HeadlineTag, HeadlineVariant, HeadlineVariantCustom, HeadlineVariantType, 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, LinkPureWeight, LinkSocialIcon, LinkSocialTarget, LinkTarget, LinkTileAlign, LinkTileAriaAttribute, LinkTileAspectRatio, LinkTileBackground, LinkTileModelSignatureAspectRatio, LinkTileModelSignatureHeadingTag, LinkTileModelSignatureLinkDirection, LinkTileModelSignatureModel, LinkTileModelSignatureWeight, LinkTileProductAspectRatio, LinkTileProductLikeEvent, LinkTileProductLikeEventDetail, LinkTileProductTarget, LinkTileSize, LinkTileTarget, LinkTileWeight, LinkVariant, MarqueAriaAttribute, MarqueSize, MarqueTarget, MarqueVariant, ModalAriaAttribute, ModalBackdrop, ModalMotionHiddenEndEventDetail, ModalMotionVisibleEndEventDetail, ModelSignatureColor, ModelSignatureFetchPriority, ModelSignatureModel, ModelSignatureSize, MultiSelectChangeEventDetail, MultiSelectDropdownDirection, MultiSelectState, MultiSelectToggleEventDetail, MultiSelectUpdateEvent, MultiSelectUpdateEventDetail, PaginationInternationalization, PaginationMaxNumberOfPageLinks, PaginationUpdateEvent, PaginationUpdateEventDetail, PinCodeChangeEventDetail, PinCodeLength, PinCodeState, PinCodeType, PinCodeUpdateEvent, PinCodeUpdateEventDetail, PopoverAriaAttribute, PopoverDirection, PorscheDesignSystem, PorscheDesignSystemModuleConfig, RadioButtonWrapperState, RadioGroupChangeEventDetail, RadioGroupDirection, RadioGroupState, ScrollerAlignScrollIndicator, ScrollerAriaAttribute, ScrollerGradientColor, ScrollerGradientColorScheme, ScrollerScrollIndicatorPosition, ScrollerScrollToPosition, SegmentedControlBackgroundColor, SegmentedControlChangeEventDetail, SegmentedControlColumns, SegmentedControlItemAriaAttribute, SegmentedControlItemIcon, SegmentedControlState, SegmentedControlUpdateEvent, SegmentedControlUpdateEventDetail, SelectChangeEventDetail, SelectComponentsDropdownDirection, SelectDropdownDirection, SelectState, SelectToggleEventDetail, SelectUpdateEventDetail, SelectWrapperDropdownDirection, SelectWrapperState, SelectedAriaAttributes, SelectedAriaRole, SheetAriaAttribute, SheetMotionHiddenEndEventDetail, SheetMotionVisibleEndEventDetail, SpinnerAriaAttribute, SpinnerSize, StepperHorizontalItemState, StepperHorizontalSize, StepperHorizontalUpdateEvent, StepperHorizontalUpdateEventDetail, SwitchAlignLabel, SwitchUpdateEvent, SwitchUpdateEventDetail, TableHeadCellSort, TableLayout, TableUpdateEvent, TableUpdateEventDetail, TabsBarGradientColor, TabsBarGradientColorScheme, TabsBarSize, TabsBarUpdateEvent, TabsBarUpdateEventDetail, TabsBarWeight, TabsGradientColor, TabsGradientColorScheme, TabsSize, TabsUpdateEvent, TabsUpdateEventDetail, TabsWeight, TagColor, TagDismissibleAriaAttribute, TagDismissibleColor, TagIcon, TagVariant, TextAlign, TextColor, TextFieldWrapperActionIcon, TextFieldWrapperState, TextFieldWrapperUnitPosition, TextListListType, TextListOrderType, TextListType, TextSize, TextTag, TextWeight, TextareaBlurEventDetail, TextareaChangeEventDetail, TextareaInputEventDetail, TextareaResize, TextareaState, TextareaWrap, TextareaWrapperState, Theme, TileAlign, TileAspectRatio, TileBackground, TileSize, TileWeight, ToastMessage, ToastState, TypographyAlign, TypographyTextColor, TypographyTextWeight, WordmarkAriaAttribute, WordmarkSize, WordmarkTarget };
|