@porsche-design-system/components-angular 4.0.0-beta.1 → 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": {
|
|
@@ -770,19 +770,6 @@ declare const LINK_ARIA_ATTRIBUTES: readonly [
|
|
|
770
770
|
"aria-haspopup"
|
|
771
771
|
];
|
|
772
772
|
type LinkAriaAttribute = (typeof LINK_ARIA_ATTRIBUTES)[number];
|
|
773
|
-
declare const SCROLLER_ARIA_ATTRIBUTES: readonly [
|
|
774
|
-
"role"
|
|
775
|
-
];
|
|
776
|
-
type ScrollerAriaAttribute = (typeof SCROLLER_ARIA_ATTRIBUTES)[number];
|
|
777
|
-
type ScrollerScrollToPosition = {
|
|
778
|
-
scrollPosition: number;
|
|
779
|
-
isSmooth?: boolean;
|
|
780
|
-
} | string;
|
|
781
|
-
declare const SCROLL_INDICATOR_POSITIONS: readonly [
|
|
782
|
-
"top",
|
|
783
|
-
"center"
|
|
784
|
-
];
|
|
785
|
-
type ScrollerAlignScrollIndicator = (typeof SCROLL_INDICATOR_POSITIONS)[number];
|
|
786
773
|
type MultiSelectState = FormState;
|
|
787
774
|
type MultiSelectDropdownDirection = SelectComponentsDropdownDirection;
|
|
788
775
|
type MultiSelectChangeEventDetail = {
|
|
@@ -1240,6 +1227,21 @@ type GroupDirection = (typeof GROUP_DIRECTIONS)[number];
|
|
|
1240
1227
|
type RadioGroupState = FormState;
|
|
1241
1228
|
type RadioGroupDirection = GroupDirection;
|
|
1242
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;
|
|
1243
1245
|
type SegmentedControlChangeEventDetail = {
|
|
1244
1246
|
value: string | number;
|
|
1245
1247
|
};
|
|
@@ -1309,27 +1311,43 @@ declare const TABS_SIZES: readonly [
|
|
|
1309
1311
|
"medium"
|
|
1310
1312
|
];
|
|
1311
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];
|
|
1312
1321
|
declare const TABS_WEIGHTS: readonly [
|
|
1313
1322
|
"regular",
|
|
1314
1323
|
"semi-bold"
|
|
1315
1324
|
];
|
|
1325
|
+
/** @deprecated */
|
|
1316
1326
|
type TabsWeight = (typeof TABS_WEIGHTS)[number];
|
|
1317
1327
|
type TabsUpdateEventDetail = {
|
|
1318
1328
|
activeTabIndex: number;
|
|
1319
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];
|
|
1320
1337
|
declare const TABS_BAR_SIZES: readonly [
|
|
1321
1338
|
"small",
|
|
1322
1339
|
"medium"
|
|
1323
1340
|
];
|
|
1324
1341
|
type TabsBarSize = (typeof TABS_BAR_SIZES)[number];
|
|
1342
|
+
type TabsBarUpdateEventDetail = {
|
|
1343
|
+
activeTabIndex: number;
|
|
1344
|
+
};
|
|
1325
1345
|
declare const TABS_BAR_WEIGHTS: readonly [
|
|
1326
1346
|
"regular",
|
|
1327
1347
|
"semi-bold"
|
|
1328
1348
|
];
|
|
1349
|
+
/** @deprecated */
|
|
1329
1350
|
type TabsBarWeight = (typeof TABS_BAR_WEIGHTS)[number];
|
|
1330
|
-
type TabsBarUpdateEventDetail = {
|
|
1331
|
-
activeTabIndex: number;
|
|
1332
|
-
};
|
|
1333
1351
|
type TagIcon = IconName | "none";
|
|
1334
1352
|
declare const TAG_VARIANTS: readonly [
|
|
1335
1353
|
"primary",
|
|
@@ -2405,12 +2423,16 @@ declare class PRadioGroupOption extends BaseComponent {
|
|
|
2405
2423
|
}
|
|
2406
2424
|
|
|
2407
2425
|
declare class PScroller extends BaseComponent {
|
|
2426
|
+
/** @deprecated */
|
|
2408
2427
|
alignScrollIndicator?: ScrollerAlignScrollIndicator;
|
|
2409
2428
|
aria?: SelectedAriaAttributes<ScrollerAriaAttribute>;
|
|
2429
|
+
compact?: boolean;
|
|
2430
|
+
/** @deprecated */
|
|
2410
2431
|
scrollToPosition?: ScrollerScrollToPosition;
|
|
2411
2432
|
scrollbar?: boolean;
|
|
2433
|
+
sticky?: boolean;
|
|
2412
2434
|
static ɵfac: i0.ɵɵFactoryDeclaration<PScroller, never>;
|
|
2413
|
-
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>;
|
|
2414
2436
|
}
|
|
2415
2437
|
|
|
2416
2438
|
declare class PSegmentedControlItem extends BaseComponent {
|
|
@@ -2482,9 +2504,10 @@ declare class PTable extends BaseComponent {
|
|
|
2482
2504
|
caption?: string;
|
|
2483
2505
|
compact?: boolean;
|
|
2484
2506
|
layout?: TableLayout;
|
|
2507
|
+
sticky?: boolean;
|
|
2485
2508
|
update: EventEmitter<CustomEvent<_porsche_design_system_components_angular.TableHeadCellSort>>;
|
|
2486
2509
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTable, never>;
|
|
2487
|
-
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>;
|
|
2488
2511
|
}
|
|
2489
2512
|
|
|
2490
2513
|
declare class PTableCell extends BaseComponent {
|
|
@@ -2518,20 +2541,26 @@ declare class PTableRow extends BaseComponent {
|
|
|
2518
2541
|
|
|
2519
2542
|
declare class PTabs extends BaseComponent {
|
|
2520
2543
|
activeTabIndex?: number;
|
|
2544
|
+
background?: TabsBackground;
|
|
2545
|
+
compact?: boolean;
|
|
2521
2546
|
size?: BreakpointCustomizable<TabsSize>;
|
|
2547
|
+
/** @deprecated */
|
|
2522
2548
|
weight?: TabsWeight;
|
|
2523
2549
|
update: EventEmitter<CustomEvent<TabsUpdateEventDetail>>;
|
|
2524
2550
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTabs, never>;
|
|
2525
|
-
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>;
|
|
2526
2552
|
}
|
|
2527
2553
|
|
|
2528
2554
|
declare class PTabsBar extends BaseComponent {
|
|
2529
2555
|
activeTabIndex?: number | undefined;
|
|
2556
|
+
background?: TabsBarBackground;
|
|
2557
|
+
compact?: boolean;
|
|
2530
2558
|
size?: BreakpointCustomizable<TabsBarSize>;
|
|
2559
|
+
/** @deprecated */
|
|
2531
2560
|
weight?: TabsBarWeight;
|
|
2532
2561
|
update: EventEmitter<CustomEvent<TabsBarUpdateEventDetail>>;
|
|
2533
2562
|
static ɵfac: i0.ɵɵFactoryDeclaration<PTabsBar, never>;
|
|
2534
|
-
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>;
|
|
2535
2564
|
}
|
|
2536
2565
|
|
|
2537
2566
|
declare class PTabsItem extends BaseComponent {
|
|
@@ -2617,4 +2646,4 @@ declare class ToastManager {
|
|
|
2617
2646
|
}
|
|
2618
2647
|
|
|
2619
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 };
|
|
2620
|
-
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, 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 };
|