@porsche-design-system/components-angular 4.6.0-rc.1 → 4.6.0-rc.3
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 +84 -2
- package/OSS_NOTICE +5532 -2115
- package/fesm2022/porsche-design-system-components-angular.mjs +1 -1
- package/fesm2022/porsche-design-system-components-angular.mjs.map +1 -1
- package/package.json +6 -2
- package/skills/pds-knowledge-angular/SKILL.md +2 -2
- package/skills/pds-knowledge-angular/references/components/p-ai-tag/p-ai-tag.md +2 -2
- package/skills/pds-knowledge-angular/references/components/p-button/p-button.md +1 -1
- package/skills/pds-knowledge-angular/references/components/p-button-pure/p-button-pure.md +1 -1
- package/skills/pds-knowledge-angular/references/components/p-button-tile/p-button-tile.md +1 -1
- package/skills/pds-knowledge-angular/references/components/p-carousel/p-carousel.md +1 -1
- package/skills/pds-knowledge-angular/references/components/p-drilldown/p-drilldown.md +1 -1
- package/skills/pds-knowledge-angular/references/components/p-flyout/p-flyout.md +1 -1
- package/skills/pds-knowledge-angular/references/components/p-icon/examples/Overview.ts +6 -0
- package/skills/pds-knowledge-angular/references/components/p-icon/p-icon.md +1 -1
- package/skills/pds-knowledge-angular/references/components/p-inline-notification/p-inline-notification.md +1 -1
- package/skills/pds-knowledge-angular/references/components/p-input-number/p-input-number.md +3 -3
- package/skills/pds-knowledge-angular/references/components/p-input-text/p-input-text.md +3 -3
- package/skills/pds-knowledge-angular/references/components/p-link/p-link.md +1 -1
- package/skills/pds-knowledge-angular/references/components/p-link-pure/p-link-pure.md +1 -1
- package/skills/pds-knowledge-angular/references/components/p-modal/p-modal.md +1 -1
- package/skills/pds-knowledge-angular/references/components/p-multi-select/examples/AsyncFilter.ts +32 -5
- package/skills/pds-knowledge-angular/references/components/p-multi-select/examples/Form.ts +3 -3
- package/skills/pds-knowledge-angular/references/components/p-multi-select/examples/SelectedSlot.ts +2 -2
- package/skills/pds-knowledge-angular/references/components/p-multi-select/p-multi-select.md +2 -2
- package/skills/pds-knowledge-angular/references/components/p-pin-code/examples/Form.ts +2 -2
- package/skills/pds-knowledge-angular/references/components/p-pin-code/p-pin-code.md +2 -2
- package/skills/pds-knowledge-angular/references/components/p-popover/p-popover.md +1 -1
- package/skills/pds-knowledge-angular/references/components/p-radio-group/examples/Form.ts +2 -2
- package/skills/pds-knowledge-angular/references/components/p-radio-group/p-radio-group.md +3 -3
- package/skills/pds-knowledge-angular/references/components/p-segmented-control/examples/Form.ts +2 -2
- package/skills/pds-knowledge-angular/references/components/p-segmented-control/p-segmented-control.md +2 -2
- package/skills/pds-knowledge-angular/references/components/p-select/examples/AsyncFilter.ts +32 -5
- package/skills/pds-knowledge-angular/references/components/p-select/p-select.md +1 -1
- package/skills/pds-knowledge-angular/references/components/p-sheet/p-sheet.md +1 -1
- package/skills/pds-knowledge-angular/references/components/p-table/p-table.md +1 -1
- package/skills/pds-knowledge-angular/references/components/p-tag/p-tag.md +1 -1
- package/skills/pds-knowledge-angular/references/components/p-wordmark/p-wordmark.md +1 -1
- package/skills/pds-knowledge-angular/references/icons.md +1 -1
- package/types/porsche-design-system-components-angular.d.ts +219 -238
|
@@ -344,10 +344,12 @@ declare const ICON_NAMES: readonly [
|
|
|
344
344
|
"compare",
|
|
345
345
|
"compass",
|
|
346
346
|
"configurate",
|
|
347
|
+
"connect-services",
|
|
347
348
|
"copy",
|
|
348
349
|
"country-road",
|
|
349
350
|
"coupe",
|
|
350
351
|
"cubic-capacity",
|
|
352
|
+
"customer-support",
|
|
351
353
|
"cut",
|
|
352
354
|
"delete",
|
|
353
355
|
"disable",
|
|
@@ -507,6 +509,7 @@ declare const ICON_NAMES: readonly [
|
|
|
507
509
|
"shopping-bag-filled",
|
|
508
510
|
"shopping-cart",
|
|
509
511
|
"shopping-cart-filled",
|
|
512
|
+
"shopping-cart-off",
|
|
510
513
|
"sidebar",
|
|
511
514
|
"sidelights",
|
|
512
515
|
"skip-backward",
|
|
@@ -712,6 +715,10 @@ type BreakpointValues<T> = {
|
|
|
712
715
|
base: T;
|
|
713
716
|
};
|
|
714
717
|
type BreakpointCustomizable<T> = T | BreakpointValues<T>;
|
|
718
|
+
type DialogDismissReason = "dismiss-button" | "backdrop" | "escape";
|
|
719
|
+
type DialogDismissEventDetail = {
|
|
720
|
+
reason: DialogDismissReason;
|
|
721
|
+
};
|
|
715
722
|
declare const LINK_TARGETS: readonly [
|
|
716
723
|
"_self",
|
|
717
724
|
"_blank",
|
|
@@ -802,225 +809,193 @@ type SelectedAriaAttributes<T extends keyof AriaAttributes> = Pick<AriaAttribute
|
|
|
802
809
|
type SelectedAriaRole<T> = {
|
|
803
810
|
role: Extract<AriaRole, T>;
|
|
804
811
|
};
|
|
812
|
+
declare const MARKET_LOCALES: readonly [
|
|
813
|
+
"ar-BH",
|
|
814
|
+
"ar-KW",
|
|
815
|
+
"ar-QA",
|
|
816
|
+
"ar-SA",
|
|
817
|
+
"az-AZ",
|
|
818
|
+
"bg-BG",
|
|
819
|
+
"bs-BA",
|
|
820
|
+
"cs-CZ",
|
|
821
|
+
"cs-SK",
|
|
822
|
+
"da-DK",
|
|
823
|
+
"de-AT",
|
|
824
|
+
"de-CH",
|
|
825
|
+
"de-DE",
|
|
826
|
+
"de-LI",
|
|
827
|
+
"de-LU",
|
|
828
|
+
"el-GR",
|
|
829
|
+
"en",
|
|
830
|
+
"en-AE",
|
|
831
|
+
"en-AE-x-abu-dhabi",
|
|
832
|
+
"en-AE-x-abudhabi",
|
|
833
|
+
"en-AE-x-dubai",
|
|
834
|
+
"en-AL",
|
|
835
|
+
"en-AU",
|
|
836
|
+
"en-BA",
|
|
837
|
+
"en-BG",
|
|
838
|
+
"en-BH",
|
|
839
|
+
"en-BN",
|
|
840
|
+
"en-CA",
|
|
841
|
+
"en-CH",
|
|
842
|
+
"en-CN",
|
|
843
|
+
"en-CW",
|
|
844
|
+
"en-CY",
|
|
845
|
+
"en-CZ",
|
|
846
|
+
"en-DK",
|
|
847
|
+
"en-EE",
|
|
848
|
+
"en-EG",
|
|
849
|
+
"en-FI",
|
|
850
|
+
"en-GB",
|
|
851
|
+
"en-GE",
|
|
852
|
+
"en-GH",
|
|
853
|
+
"en-GI",
|
|
854
|
+
"en-GR",
|
|
855
|
+
"en-HK",
|
|
856
|
+
"en-HR",
|
|
857
|
+
"en-HT",
|
|
858
|
+
"en-ID",
|
|
859
|
+
"en-IE",
|
|
860
|
+
"en-IL",
|
|
861
|
+
"en-IN",
|
|
862
|
+
"en-IS",
|
|
863
|
+
"en-JM",
|
|
864
|
+
"en-JO",
|
|
865
|
+
"en-KH",
|
|
866
|
+
"en-KR",
|
|
867
|
+
"en-KW",
|
|
868
|
+
"en-KZ",
|
|
869
|
+
"en-LB",
|
|
870
|
+
"en-LK",
|
|
871
|
+
"en-LT",
|
|
872
|
+
"en-LV",
|
|
873
|
+
"en-ME",
|
|
874
|
+
"en-MK",
|
|
875
|
+
"en-MN",
|
|
876
|
+
"en-MT",
|
|
877
|
+
"en-MU",
|
|
878
|
+
"en-MY",
|
|
879
|
+
"en-NC",
|
|
880
|
+
"en-NL",
|
|
881
|
+
"en-NO",
|
|
882
|
+
"en-NZ",
|
|
883
|
+
"en-OM",
|
|
884
|
+
"en-PF",
|
|
885
|
+
"en-PH",
|
|
886
|
+
"en-PL",
|
|
887
|
+
"en-PR",
|
|
888
|
+
"en-QA",
|
|
889
|
+
"en-RO",
|
|
890
|
+
"en-RS",
|
|
891
|
+
"en-SA",
|
|
892
|
+
"en-SE",
|
|
893
|
+
"en-SG",
|
|
894
|
+
"en-SI",
|
|
895
|
+
"en-SK",
|
|
896
|
+
"en-TH",
|
|
897
|
+
"en-TR",
|
|
898
|
+
"en-TT",
|
|
899
|
+
"en-TW",
|
|
900
|
+
"en-UA",
|
|
901
|
+
"en-US",
|
|
902
|
+
"en-VE",
|
|
903
|
+
"en-VN",
|
|
904
|
+
"en-XA",
|
|
905
|
+
"en-YE",
|
|
906
|
+
"en-ZA",
|
|
907
|
+
"es-AD",
|
|
908
|
+
"es-AR",
|
|
909
|
+
"es-BO",
|
|
910
|
+
"es-CL",
|
|
911
|
+
"es-CO",
|
|
912
|
+
"es-CR",
|
|
913
|
+
"es-DO",
|
|
914
|
+
"es-EC",
|
|
915
|
+
"es-ES",
|
|
916
|
+
"es-GT",
|
|
917
|
+
"es-HN",
|
|
918
|
+
"es-MX",
|
|
919
|
+
"es-PA",
|
|
920
|
+
"es-PE",
|
|
921
|
+
"es-PR",
|
|
922
|
+
"es-PY",
|
|
923
|
+
"es-SV",
|
|
924
|
+
"es-TT",
|
|
925
|
+
"es-UY",
|
|
926
|
+
"es-VE",
|
|
927
|
+
"et-EE",
|
|
928
|
+
"fi-FI",
|
|
929
|
+
"fr-BE",
|
|
930
|
+
"fr-CA",
|
|
931
|
+
"fr-CH",
|
|
932
|
+
"fr-DZ",
|
|
933
|
+
"fr-FR",
|
|
934
|
+
"fr-GP",
|
|
935
|
+
"fr-LI",
|
|
936
|
+
"fr-LU",
|
|
937
|
+
"fr-MA",
|
|
938
|
+
"fr-MC",
|
|
939
|
+
"fr-MQ",
|
|
940
|
+
"fr-MU",
|
|
941
|
+
"fr-NC",
|
|
942
|
+
"fr-PF",
|
|
943
|
+
"fr-RE",
|
|
944
|
+
"fr-TN",
|
|
945
|
+
"he-IL",
|
|
946
|
+
"hr-HR",
|
|
947
|
+
"hu-HU",
|
|
948
|
+
"hy-AM",
|
|
949
|
+
"is-IS",
|
|
950
|
+
"it-CH",
|
|
951
|
+
"it-IT",
|
|
952
|
+
"ja-JP",
|
|
953
|
+
"ka-GE",
|
|
954
|
+
"ko-KR",
|
|
955
|
+
"lt-LT",
|
|
956
|
+
"lv-LV",
|
|
957
|
+
"me-ME",
|
|
958
|
+
"mk-MK",
|
|
959
|
+
"mt-MT",
|
|
960
|
+
"nb-NO",
|
|
961
|
+
"nl-BE",
|
|
962
|
+
"nl-NL",
|
|
963
|
+
"no-NO",
|
|
964
|
+
"pl-PL",
|
|
965
|
+
"pt-BR",
|
|
966
|
+
"pt-PT",
|
|
967
|
+
"ro-MD",
|
|
968
|
+
"ro-RO",
|
|
969
|
+
"ru-AZ",
|
|
970
|
+
"ru-BY",
|
|
971
|
+
"ru-CY",
|
|
972
|
+
"ru-EE",
|
|
973
|
+
"ru-KZ",
|
|
974
|
+
"ru-LT",
|
|
975
|
+
"ru-LV",
|
|
976
|
+
"ru-RU",
|
|
977
|
+
"ru-UK",
|
|
978
|
+
"ru-UZ",
|
|
979
|
+
"sk-SK",
|
|
980
|
+
"sl-SI",
|
|
981
|
+
"sr-ME",
|
|
982
|
+
"sr-RS",
|
|
983
|
+
"sv-SE",
|
|
984
|
+
"tr-TR",
|
|
985
|
+
"uk-UA",
|
|
986
|
+
"zh-CN",
|
|
987
|
+
"zh-HK",
|
|
988
|
+
"zh-TW"
|
|
989
|
+
];
|
|
990
|
+
type MarketLocale = (typeof MARKET_LOCALES)[number];
|
|
991
|
+
type ToPosixLocale<T extends string> = T extends `${infer Head}-${infer Tail}` ? `${Head}_${ToPosixLocale<Tail>}` : T;
|
|
992
|
+
type AiTagLocale = MarketLocale | ToPosixLocale<MarketLocale>;
|
|
805
993
|
declare const AI_TAG_VARIANTS: readonly [
|
|
806
994
|
"abbreviation",
|
|
807
995
|
"generated",
|
|
808
996
|
"modified"
|
|
809
997
|
];
|
|
810
998
|
type AiTagVariant = (typeof AI_TAG_VARIANTS)[number];
|
|
811
|
-
declare const AI_TAG_TRANSLATIONS: {
|
|
812
|
-
bg_BG: {
|
|
813
|
-
short: string;
|
|
814
|
-
long: string;
|
|
815
|
-
generated: string;
|
|
816
|
-
modified: string;
|
|
817
|
-
};
|
|
818
|
-
bs_BA: {
|
|
819
|
-
short: string;
|
|
820
|
-
long: string;
|
|
821
|
-
generated: string;
|
|
822
|
-
modified: string;
|
|
823
|
-
};
|
|
824
|
-
cs_CZ: {
|
|
825
|
-
short: string;
|
|
826
|
-
long: string;
|
|
827
|
-
generated: string;
|
|
828
|
-
modified: string;
|
|
829
|
-
};
|
|
830
|
-
da_DK: {
|
|
831
|
-
short: string;
|
|
832
|
-
long: string;
|
|
833
|
-
generated: string;
|
|
834
|
-
modified: string;
|
|
835
|
-
};
|
|
836
|
-
de_DE: {
|
|
837
|
-
short: string;
|
|
838
|
-
long: string;
|
|
839
|
-
generated: string;
|
|
840
|
-
modified: string;
|
|
841
|
-
};
|
|
842
|
-
el_GR: {
|
|
843
|
-
short: string;
|
|
844
|
-
long: string;
|
|
845
|
-
generated: string;
|
|
846
|
-
modified: string;
|
|
847
|
-
};
|
|
848
|
-
en_CY: {
|
|
849
|
-
short: string;
|
|
850
|
-
long: string;
|
|
851
|
-
generated: string;
|
|
852
|
-
modified: string;
|
|
853
|
-
};
|
|
854
|
-
en_GB: {
|
|
855
|
-
short: string;
|
|
856
|
-
long: string;
|
|
857
|
-
generated: string;
|
|
858
|
-
modified: string;
|
|
859
|
-
};
|
|
860
|
-
en_US: {
|
|
861
|
-
short: string;
|
|
862
|
-
long: string;
|
|
863
|
-
generated: string;
|
|
864
|
-
modified: string;
|
|
865
|
-
};
|
|
866
|
-
es_ES: {
|
|
867
|
-
short: string;
|
|
868
|
-
long: string;
|
|
869
|
-
generated: string;
|
|
870
|
-
modified: string;
|
|
871
|
-
};
|
|
872
|
-
et_EE: {
|
|
873
|
-
short: string;
|
|
874
|
-
long: string;
|
|
875
|
-
generated: string;
|
|
876
|
-
modified: string;
|
|
877
|
-
};
|
|
878
|
-
fi_FI: {
|
|
879
|
-
short: string;
|
|
880
|
-
long: string;
|
|
881
|
-
generated: string;
|
|
882
|
-
modified: string;
|
|
883
|
-
};
|
|
884
|
-
fr_FR: {
|
|
885
|
-
short: string;
|
|
886
|
-
long: string;
|
|
887
|
-
generated: string;
|
|
888
|
-
modified: string;
|
|
889
|
-
};
|
|
890
|
-
he_IL: {
|
|
891
|
-
short: string;
|
|
892
|
-
long: string;
|
|
893
|
-
generated: string;
|
|
894
|
-
modified: string;
|
|
895
|
-
};
|
|
896
|
-
hr_HR: {
|
|
897
|
-
short: string;
|
|
898
|
-
long: string;
|
|
899
|
-
generated: string;
|
|
900
|
-
modified: string;
|
|
901
|
-
};
|
|
902
|
-
hu_HU: {
|
|
903
|
-
short: string;
|
|
904
|
-
long: string;
|
|
905
|
-
generated: string;
|
|
906
|
-
modified: string;
|
|
907
|
-
};
|
|
908
|
-
is_IS: {
|
|
909
|
-
short: string;
|
|
910
|
-
long: string;
|
|
911
|
-
generated: string;
|
|
912
|
-
modified: string;
|
|
913
|
-
};
|
|
914
|
-
it_IT: {
|
|
915
|
-
short: string;
|
|
916
|
-
long: string;
|
|
917
|
-
generated: string;
|
|
918
|
-
modified: string;
|
|
919
|
-
};
|
|
920
|
-
lt_LT: {
|
|
921
|
-
short: string;
|
|
922
|
-
long: string;
|
|
923
|
-
generated: string;
|
|
924
|
-
modified: string;
|
|
925
|
-
};
|
|
926
|
-
lv_LV: {
|
|
927
|
-
short: string;
|
|
928
|
-
long: string;
|
|
929
|
-
generated: string;
|
|
930
|
-
modified: string;
|
|
931
|
-
};
|
|
932
|
-
me_ME: {
|
|
933
|
-
short: string;
|
|
934
|
-
long: string;
|
|
935
|
-
generated: string;
|
|
936
|
-
modified: string;
|
|
937
|
-
};
|
|
938
|
-
mk_MK: {
|
|
939
|
-
short: string;
|
|
940
|
-
long: string;
|
|
941
|
-
generated: string;
|
|
942
|
-
modified: string;
|
|
943
|
-
};
|
|
944
|
-
mt_MT: {
|
|
945
|
-
short: string;
|
|
946
|
-
long: string;
|
|
947
|
-
generated: string;
|
|
948
|
-
modified: string;
|
|
949
|
-
};
|
|
950
|
-
nb_NO: {
|
|
951
|
-
short: string;
|
|
952
|
-
long: string;
|
|
953
|
-
generated: string;
|
|
954
|
-
modified: string;
|
|
955
|
-
};
|
|
956
|
-
nl_NL: {
|
|
957
|
-
short: string;
|
|
958
|
-
long: string;
|
|
959
|
-
generated: string;
|
|
960
|
-
modified: string;
|
|
961
|
-
};
|
|
962
|
-
pl_PL: {
|
|
963
|
-
short: string;
|
|
964
|
-
long: string;
|
|
965
|
-
generated: string;
|
|
966
|
-
modified: string;
|
|
967
|
-
};
|
|
968
|
-
pt_PT: {
|
|
969
|
-
short: string;
|
|
970
|
-
long: string;
|
|
971
|
-
generated: string;
|
|
972
|
-
modified: string;
|
|
973
|
-
};
|
|
974
|
-
ro_RO: {
|
|
975
|
-
short: string;
|
|
976
|
-
long: string;
|
|
977
|
-
generated: string;
|
|
978
|
-
modified: string;
|
|
979
|
-
};
|
|
980
|
-
ru_RU: {
|
|
981
|
-
short: string;
|
|
982
|
-
long: string;
|
|
983
|
-
generated: string;
|
|
984
|
-
modified: string;
|
|
985
|
-
};
|
|
986
|
-
sk_SK: {
|
|
987
|
-
short: string;
|
|
988
|
-
long: string;
|
|
989
|
-
generated: string;
|
|
990
|
-
modified: string;
|
|
991
|
-
};
|
|
992
|
-
sl_SI: {
|
|
993
|
-
short: string;
|
|
994
|
-
long: string;
|
|
995
|
-
generated: string;
|
|
996
|
-
modified: string;
|
|
997
|
-
};
|
|
998
|
-
sr_RS: {
|
|
999
|
-
short: string;
|
|
1000
|
-
long: string;
|
|
1001
|
-
generated: string;
|
|
1002
|
-
modified: string;
|
|
1003
|
-
};
|
|
1004
|
-
sv_SE: {
|
|
1005
|
-
short: string;
|
|
1006
|
-
long: string;
|
|
1007
|
-
generated: string;
|
|
1008
|
-
modified: string;
|
|
1009
|
-
};
|
|
1010
|
-
tr_TR: {
|
|
1011
|
-
short: string;
|
|
1012
|
-
long: string;
|
|
1013
|
-
generated: string;
|
|
1014
|
-
modified: string;
|
|
1015
|
-
};
|
|
1016
|
-
uk_UA: {
|
|
1017
|
-
short: string;
|
|
1018
|
-
long: string;
|
|
1019
|
-
generated: string;
|
|
1020
|
-
modified: string;
|
|
1021
|
-
};
|
|
1022
|
-
};
|
|
1023
|
-
type AiTagLocale = keyof typeof AI_TAG_TRANSLATIONS;
|
|
1024
999
|
declare const BANNER_POSITIONS: readonly [
|
|
1025
1000
|
"top",
|
|
1026
1001
|
"bottom"
|
|
@@ -1176,6 +1151,7 @@ type DrilldownAriaAttribute = (typeof DRILLDOWN_ARIA_ATTRIBUTES)[number];
|
|
|
1176
1151
|
type DrilldownUpdateEventDetail = {
|
|
1177
1152
|
activeIdentifier: string | undefined;
|
|
1178
1153
|
};
|
|
1154
|
+
type DrilldownDismissEventDetail = DialogDismissEventDetail;
|
|
1179
1155
|
type DrilldownLinkTarget = LinkTarget;
|
|
1180
1156
|
type DrilldownLinkAriaAttribute = LinkAriaAttribute;
|
|
1181
1157
|
declare const FIELDSET_LABEL_SIZES: readonly [
|
|
@@ -1235,6 +1211,7 @@ declare const FLYOUT_ARIA_ATTRIBUTES: readonly [
|
|
|
1235
1211
|
type FlyoutAriaAttribute = (typeof FLYOUT_ARIA_ATTRIBUTES)[number];
|
|
1236
1212
|
type FlyoutMotionVisibleEndEventDetail = TransitionEvent;
|
|
1237
1213
|
type FlyoutMotionHiddenEndEventDetail = TransitionEvent;
|
|
1214
|
+
type FlyoutDismissEventDetail = DialogDismissEventDetail;
|
|
1238
1215
|
type FlyoutBackdrop = Backdrop;
|
|
1239
1216
|
declare const HEADING_TAGS: readonly [
|
|
1240
1217
|
"h1",
|
|
@@ -1464,6 +1441,7 @@ type ModalBackground = (typeof MODAL_BACKGROUNDS)[number];
|
|
|
1464
1441
|
type ModalBackdrop = Backdrop;
|
|
1465
1442
|
type ModalMotionVisibleEndEventDetail = TransitionEvent;
|
|
1466
1443
|
type ModalMotionHiddenEndEventDetail = TransitionEvent;
|
|
1444
|
+
type ModalDismissEventDetail = DialogDismissEventDetail;
|
|
1467
1445
|
declare const MODEL_SIGNATURES_MANIFEST: {
|
|
1468
1446
|
"718": {
|
|
1469
1447
|
src: string;
|
|
@@ -1586,6 +1564,9 @@ declare const POPOVER_ARIA_ATTRIBUTES: readonly [
|
|
|
1586
1564
|
"aria-label"
|
|
1587
1565
|
];
|
|
1588
1566
|
type PopoverAriaAttribute = (typeof POPOVER_ARIA_ATTRIBUTES)[number];
|
|
1567
|
+
type PopoverDismissEventDetail = {
|
|
1568
|
+
reason: "outside-click" | "focus-out" | "escape";
|
|
1569
|
+
};
|
|
1589
1570
|
declare const GROUP_DIRECTIONS: readonly [
|
|
1590
1571
|
"row",
|
|
1591
1572
|
"column"
|
|
@@ -1634,6 +1615,7 @@ declare const SHEET_BACKGROUNDS: readonly [
|
|
|
1634
1615
|
type SheetBackground = (typeof SHEET_BACKGROUNDS)[number];
|
|
1635
1616
|
type SheetMotionVisibleEndEventDetail = TransitionEvent;
|
|
1636
1617
|
type SheetMotionHiddenEndEventDetail = TransitionEvent;
|
|
1618
|
+
type SheetDismissEventDetail = DialogDismissEventDetail;
|
|
1637
1619
|
declare const SPINNER_COLORS: readonly [
|
|
1638
1620
|
"primary",
|
|
1639
1621
|
"inherit"
|
|
@@ -2421,7 +2403,7 @@ type PInputNumberProps = {
|
|
|
2421
2403
|
*/
|
|
2422
2404
|
step?: number;
|
|
2423
2405
|
/**
|
|
2424
|
-
* Sets the current numeric value
|
|
2406
|
+
* Sets the current numeric value. Strings and numbers are accepted for programmatic assignment, but user input updates the value as a string to mirror native input behavior.
|
|
2425
2407
|
* @default ''
|
|
2426
2408
|
*/
|
|
2427
2409
|
value?: string | number | null;
|
|
@@ -2934,7 +2916,7 @@ type PInputTextProps = {
|
|
|
2934
2916
|
*/
|
|
2935
2917
|
state?: InputTextState;
|
|
2936
2918
|
/**
|
|
2937
|
-
* Sets the current text value
|
|
2919
|
+
* Sets the current text value. Numbers are accepted for programmatic assignment, but user input updates the value as a string.
|
|
2938
2920
|
* @default ''
|
|
2939
2921
|
*/
|
|
2940
2922
|
value?: string | number | null;
|
|
@@ -3493,10 +3475,10 @@ type PPinCodeProps = {
|
|
|
3493
3475
|
*/
|
|
3494
3476
|
type?: PinCodeType;
|
|
3495
3477
|
/**
|
|
3496
|
-
* Sets the current concatenated value
|
|
3478
|
+
* Sets the current concatenated value. Numbers are accepted for programmatic assignment, but user input updates the value as a string.
|
|
3497
3479
|
* @default ''
|
|
3498
3480
|
*/
|
|
3499
|
-
value?: string;
|
|
3481
|
+
value?: string | number | null;
|
|
3500
3482
|
};
|
|
3501
3483
|
declare class PPinCode extends BaseComponent implements ControlValueAccessor {
|
|
3502
3484
|
private _renderer;
|
|
@@ -3515,7 +3497,7 @@ declare class PPinCode extends BaseComponent implements ControlValueAccessor {
|
|
|
3515
3497
|
required?: boolean;
|
|
3516
3498
|
state?: PinCodeState;
|
|
3517
3499
|
type?: PinCodeType;
|
|
3518
|
-
value?: string;
|
|
3500
|
+
value?: string | number | null;
|
|
3519
3501
|
blur: EventEmitter<CustomEvent<void>>;
|
|
3520
3502
|
change: EventEmitter<CustomEvent<PinCodeChangeEventDetail>>;
|
|
3521
3503
|
constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
|
|
@@ -3589,10 +3571,9 @@ type PRadioGroupProps = {
|
|
|
3589
3571
|
*/
|
|
3590
3572
|
state?: RadioGroupState;
|
|
3591
3573
|
/**
|
|
3592
|
-
* Sets the currently selected value that pre-selects the matching radio option and reflects user changes.
|
|
3593
|
-
* @default ''
|
|
3574
|
+
* Sets the currently selected value that pre-selects the matching radio option and reflects user changes. Matches an option strictly by type and value, meaning string or number only match an option whose value has the same type and equal value. Use undefined or null for no preselection; these values never match an option because every option requires a string or number value. Please note that FormData always serializes values as strings, so when participating in a native (uncontrolled) form a number value is restored as string via formStateRestoreCallback and will no longer strictly match a number-typed option. This limitation only applies to native form state restoration; in controlled forms (where the consumer manages value directly via the change event), the number type is preserved end-to-end.
|
|
3594
3575
|
*/
|
|
3595
|
-
value?: string;
|
|
3576
|
+
value?: string | number | null;
|
|
3596
3577
|
};
|
|
3597
3578
|
declare class PRadioGroup extends BaseComponent implements ControlValueAccessor {
|
|
3598
3579
|
private _renderer;
|
|
@@ -3610,7 +3591,7 @@ declare class PRadioGroup extends BaseComponent implements ControlValueAccessor
|
|
|
3610
3591
|
name: string;
|
|
3611
3592
|
required?: boolean;
|
|
3612
3593
|
state?: RadioGroupState;
|
|
3613
|
-
value?: string;
|
|
3594
|
+
value?: string | number | null;
|
|
3614
3595
|
blur: EventEmitter<CustomEvent<void>>;
|
|
3615
3596
|
change: EventEmitter<CustomEvent<Event>>;
|
|
3616
3597
|
constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
|
|
@@ -3684,9 +3665,9 @@ type PSegmentedControlProps = {
|
|
|
3684
3665
|
*/
|
|
3685
3666
|
state?: SegmentedControlState;
|
|
3686
3667
|
/**
|
|
3687
|
-
* Sets the currently selected item's value and pre-selects the matching option when the component renders.
|
|
3668
|
+
* Sets the currently selected item's value and pre-selects the matching option when the component renders. Matches an item strictly by type and value, meaning string or number only match an item whose value has the same type and equal value. Use undefined or null for no preselection. Please note that FormData always serializes values as strings, so when participating in a native (uncontrolled) form a number value is restored as string via formStateRestoreCallback and will no longer strictly match a number-typed item. This limitation only applies to native form state restoration; in controlled forms (where the consumer manages value directly via the change event), the number type is preserved end-to-end.
|
|
3688
3669
|
*/
|
|
3689
|
-
value?: string | number;
|
|
3670
|
+
value?: string | number | null;
|
|
3690
3671
|
};
|
|
3691
3672
|
declare class PSegmentedControl extends BaseComponent implements ControlValueAccessor {
|
|
3692
3673
|
private _renderer;
|
|
@@ -3704,7 +3685,7 @@ declare class PSegmentedControl extends BaseComponent implements ControlValueAcc
|
|
|
3704
3685
|
noWrap?: boolean;
|
|
3705
3686
|
required?: boolean;
|
|
3706
3687
|
state?: SegmentedControlState;
|
|
3707
|
-
value?: string | number;
|
|
3688
|
+
value?: string | number | null;
|
|
3708
3689
|
blur: EventEmitter<CustomEvent<void>>;
|
|
3709
3690
|
change: EventEmitter<CustomEvent<SegmentedControlChangeEventDetail>>;
|
|
3710
3691
|
constructor(_renderer: Renderer2, _elementRef: ElementRef, _cdr: ChangeDetectorRef);
|
|
@@ -4022,8 +4003,8 @@ declare class PAccordion extends BaseComponent {
|
|
|
4022
4003
|
|
|
4023
4004
|
type PAiTagProps = {
|
|
4024
4005
|
/**
|
|
4025
|
-
*
|
|
4026
|
-
* @default '
|
|
4006
|
+
* Market locale for the AI text (BCP47, e.g. `en-US`). Language-only `en` is supported for international markets. POSIX forms (e.g. `en_US`) are deprecated but still accepted. Copy is resolved by language; unknown languages fall back to English.
|
|
4007
|
+
* @default 'en-US'
|
|
4027
4008
|
*/
|
|
4028
4009
|
locale?: AiTagLocale;
|
|
4029
4010
|
/**
|
|
@@ -4572,7 +4553,7 @@ declare class PDrilldown extends BaseComponent {
|
|
|
4572
4553
|
activeIdentifier?: string | undefined;
|
|
4573
4554
|
aria?: SelectedAriaAttributes<DrilldownAriaAttribute>;
|
|
4574
4555
|
open?: boolean;
|
|
4575
|
-
dismiss: EventEmitter<CustomEvent<
|
|
4556
|
+
dismiss: EventEmitter<CustomEvent<_porsche_design_system_components_angular.DialogDismissEventDetail>>;
|
|
4576
4557
|
update: EventEmitter<CustomEvent<DrilldownUpdateEventDetail>>;
|
|
4577
4558
|
static ɵfac: i0.ɵɵFactoryDeclaration<PDrilldown, never>;
|
|
4578
4559
|
static ɵcmp: i0.ɵɵComponentDeclaration<PDrilldown, "p-drilldown,[p-drilldown]", never, { "activeIdentifier": { "alias": "activeIdentifier"; "required": false; }; "aria": { "alias": "aria"; "required": false; }; "open": { "alias": "open"; "required": false; }; }, { "dismiss": "dismiss"; "update": "update"; }, never, ["*"], false, never>;
|
|
@@ -4768,7 +4749,7 @@ declare class PFlyout extends BaseComponent {
|
|
|
4768
4749
|
fullscreen?: BreakpointCustomizable<boolean>;
|
|
4769
4750
|
open: boolean;
|
|
4770
4751
|
position?: FlyoutPosition;
|
|
4771
|
-
dismiss: EventEmitter<CustomEvent<
|
|
4752
|
+
dismiss: EventEmitter<CustomEvent<_porsche_design_system_components_angular.DialogDismissEventDetail>>;
|
|
4772
4753
|
motionHiddenEnd: EventEmitter<CustomEvent<TransitionEvent>>;
|
|
4773
4754
|
motionVisibleEnd: EventEmitter<CustomEvent<TransitionEvent>>;
|
|
4774
4755
|
static ɵfac: i0.ɵɵFactoryDeclaration<PFlyout, never>;
|
|
@@ -5247,7 +5228,7 @@ declare class PModal extends BaseComponent {
|
|
|
5247
5228
|
dismissButton?: boolean;
|
|
5248
5229
|
fullscreen?: BreakpointCustomizable<boolean>;
|
|
5249
5230
|
open: boolean;
|
|
5250
|
-
dismiss: EventEmitter<CustomEvent<
|
|
5231
|
+
dismiss: EventEmitter<CustomEvent<_porsche_design_system_components_angular.DialogDismissEventDetail>>;
|
|
5251
5232
|
motionHiddenEnd: EventEmitter<CustomEvent<TransitionEvent>>;
|
|
5252
5233
|
motionVisibleEnd: EventEmitter<CustomEvent<TransitionEvent>>;
|
|
5253
5234
|
static ɵfac: i0.ɵɵFactoryDeclaration<PModal, never>;
|
|
@@ -5304,7 +5285,7 @@ type PMultiSelectOptionProps = {
|
|
|
5304
5285
|
*/
|
|
5305
5286
|
disabled?: boolean;
|
|
5306
5287
|
/**
|
|
5307
|
-
* Sets the value submitted with the form data when
|
|
5288
|
+
* Sets the required option value submitted with the form data when selected. Must be a string or number.
|
|
5308
5289
|
*/
|
|
5309
5290
|
value: string | number;
|
|
5310
5291
|
};
|
|
@@ -5400,7 +5381,7 @@ declare class PPopover extends BaseComponent {
|
|
|
5400
5381
|
description?: string;
|
|
5401
5382
|
direction?: PopoverDirection;
|
|
5402
5383
|
open?: boolean;
|
|
5403
|
-
dismiss: EventEmitter<CustomEvent<
|
|
5384
|
+
dismiss: EventEmitter<CustomEvent<PopoverDismissEventDetail>>;
|
|
5404
5385
|
static ɵfac: i0.ɵɵFactoryDeclaration<PPopover, never>;
|
|
5405
5386
|
static ɵcmp: i0.ɵɵComponentDeclaration<PPopover, "p-popover,[p-popover]", never, { "aria": { "alias": "aria"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "open": { "alias": "open"; "required": false; }; }, { "dismiss": "dismiss"; }, never, ["*"], false, never>;
|
|
5406
5387
|
}
|
|
@@ -5421,15 +5402,15 @@ type PRadioGroupOptionProps = {
|
|
|
5421
5402
|
*/
|
|
5422
5403
|
loading?: boolean;
|
|
5423
5404
|
/**
|
|
5424
|
-
* Sets the
|
|
5405
|
+
* Sets the required option value. Must be a string or number and is selected when it strictly matches the parent `p-radio-group` value by type and value.
|
|
5425
5406
|
*/
|
|
5426
|
-
value
|
|
5407
|
+
value: string | number;
|
|
5427
5408
|
};
|
|
5428
5409
|
declare class PRadioGroupOption extends BaseComponent {
|
|
5429
5410
|
disabled?: boolean;
|
|
5430
5411
|
label?: string;
|
|
5431
5412
|
loading?: boolean;
|
|
5432
|
-
value
|
|
5413
|
+
value: string | number;
|
|
5433
5414
|
static ɵfac: i0.ɵɵFactoryDeclaration<PRadioGroupOption, never>;
|
|
5434
5415
|
static ɵcmp: i0.ɵɵComponentDeclaration<PRadioGroupOption, "p-radio-group-option,[p-radio-group-option]", never, { "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
5435
5416
|
}
|
|
@@ -5564,7 +5545,7 @@ declare class PSheet extends BaseComponent {
|
|
|
5564
5545
|
disableBackdropClick?: boolean;
|
|
5565
5546
|
dismissButton?: boolean;
|
|
5566
5547
|
open: boolean;
|
|
5567
|
-
dismiss: EventEmitter<CustomEvent<
|
|
5548
|
+
dismiss: EventEmitter<CustomEvent<_porsche_design_system_components_angular.DialogDismissEventDetail>>;
|
|
5568
5549
|
motionHiddenEnd: EventEmitter<CustomEvent<TransitionEvent>>;
|
|
5569
5550
|
motionVisibleEnd: EventEmitter<CustomEvent<TransitionEvent>>;
|
|
5570
5551
|
static ɵfac: i0.ɵɵFactoryDeclaration<PSheet, never>;
|
|
@@ -5993,7 +5974,7 @@ type PWordmarkProps = {
|
|
|
5993
5974
|
*/
|
|
5994
5975
|
href?: string;
|
|
5995
5976
|
/**
|
|
5996
|
-
* Sets the display size of the Porsche wordmark SVG using predefined PDS size tokens
|
|
5977
|
+
* Sets the display size of the Porsche wordmark SVG using predefined PDS size tokens.
|
|
5997
5978
|
* @default 'small'
|
|
5998
5979
|
*/
|
|
5999
5980
|
size?: WordmarkSize;
|
|
@@ -6036,4 +6017,4 @@ declare class ToastManager {
|
|
|
6036
6017
|
}
|
|
6037
6018
|
|
|
6038
6019
|
export { DECLARATIONS, PAccordion, PAiTag, 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 };
|
|
6039
|
-
export type { AccordionAlignMarker, AccordionBackground, AccordionHeadingTag, AccordionSize, AccordionUpdateEventDetail, AiTagLocale, AiTagVariant, AlignLabel, AriaAttributes, AriaRole, Backdrop, BannerHeadingTag, BannerPosition, BannerState, Booleanish, Breakpoint, BreakpointCustomizable, BreakpointValues, ButtonAriaAttribute, ButtonIcon, ButtonPureAlignLabel, ButtonPureAriaAttribute, ButtonPureColor, 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, HeadingHyphens, HeadingSize, HeadingTag, HeadingWeight, 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, InputSearchAriaAttribute, 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, LinkPureColor, 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, PAccordionProps, PAiTagProps, PBannerProps, PButtonProps, PButtonPureProps, PButtonTileProps, PCanvasProps, PCarouselProps, PCheckboxProps, PCrestProps, PDisplayProps, PDividerProps, PDrilldownItemProps, PDrilldownLinkProps, PDrilldownProps, PFieldsetProps, PFlagProps, PFlyoutProps, PHeadingProps, PIconProps, PInlineNotificationProps, PInputDateProps, PInputEmailProps, PInputMonthProps, PInputNumberProps, PInputPasswordProps, PInputSearchProps, PInputTelProps, PInputTextProps, PInputTimeProps, PInputUrlProps, PInputWeekProps, PLinkProps, PLinkPureProps, PLinkTileProductProps, PLinkTileProps, PModalProps, PModelSignatureProps, PMultiSelectOptionProps, PMultiSelectProps, POptgroupProps, PPaginationProps, PPinCodeProps, PPopoverProps, PRadioGroupOptionProps, PRadioGroupProps, PScrollerProps, PSegmentedControlItemProps, PSegmentedControlProps, PSelectOptionProps, PSelectProps, PSheetProps, PSpinnerProps, PStepperHorizontalItemProps, PStepperHorizontalProps, PSwitchProps, PTableBodyProps, PTableCellProps, PTableHeadCellProps, PTableHeadProps, PTableHeadRowProps, PTableProps, PTableRowProps, PTabsBarProps, PTabsItemProps, PTabsProps, PTagDismissibleProps, PTagProps, PTextListItemProps, PTextListProps, PTextProps, PTextareaProps, PToastProps, PWordmarkProps, 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, SpinnerColor, SpinnerSize, StepperHorizontalItemState, StepperHorizontalSize, StepperHorizontalUpdateEventDetail, SwitchAlignLabel, SwitchUpdateEventDetail, TableHeadCellSort, TableLayout, TableUpdateEventDetail, TabsAriaAttribute, TabsBackground, TabsBarAriaAttribute, TabsBarBackground, TabsBarSize, TabsBarUpdateEventDetail, TabsBarWeight, TabsSize, TabsUpdateEventDetail, TabsWeight, TagDismissibleAriaAttribute, TagIcon, TagVariant, TextAlign, TextColor, TextHyphens, TextListType, TextSize, TextTag, TextWeight, TextareaBlurEventDetail, TextareaChangeEventDetail, TextareaInputEventDetail, TextareaResize, TextareaState, TextareaWrap, TileAlign, TileAspectRatio, TileSize, TileWeight, ToastMessage, ToastState, WordmarkAriaAttribute, WordmarkSize, WordmarkTarget };
|
|
6020
|
+
export type { AccordionAlignMarker, AccordionBackground, AccordionHeadingTag, AccordionSize, AccordionUpdateEventDetail, AiTagLocale, AiTagVariant, AlignLabel, AriaAttributes, AriaRole, Backdrop, BannerHeadingTag, BannerPosition, BannerState, Booleanish, Breakpoint, BreakpointCustomizable, BreakpointValues, ButtonAriaAttribute, ButtonIcon, ButtonPureAlignLabel, ButtonPureAriaAttribute, ButtonPureColor, 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, DialogDismissEventDetail, DialogDismissReason, Direction, DisplayAlign, DisplayColor, DisplaySize, DisplayTag, DividerColor, DividerDirection, DrilldownAriaAttribute, DrilldownDismissEventDetail, DrilldownLinkAriaAttribute, DrilldownLinkTarget, DrilldownUpdateEventDetail, FieldsetLabelSize, FieldsetState, FlagAriaAttribute, FlagName, FlagSize, FlyoutAriaAttribute, FlyoutBackdrop, FlyoutBackground, FlyoutDismissEventDetail, FlyoutFooterBehavior, FlyoutMotionHiddenEndEventDetail, FlyoutMotionVisibleEndEventDetail, FlyoutPosition, FormState, GroupDirection, HeadingAlign, HeadingColor, HeadingHyphens, HeadingSize, HeadingTag, HeadingWeight, 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, InputSearchAriaAttribute, 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, LinkPureColor, LinkPureIcon, LinkPureSize, LinkPureTarget, LinkTarget, LinkTileAlign, LinkTileAriaAttribute, LinkTileAspectRatio, LinkTileProductAspectRatio, LinkTileProductLikeEventDetail, LinkTileProductTarget, LinkTileSize, LinkTileTarget, LinkTileWeight, LinkVariant, MarketLocale, ModalAriaAttribute, ModalBackdrop, ModalBackground, ModalDismissEventDetail, ModalMotionHiddenEndEventDetail, ModalMotionVisibleEndEventDetail, ModelSignatureColor, ModelSignatureFetchPriority, ModelSignatureModel, ModelSignatureSize, MultiSelectChangeEventDetail, MultiSelectDropdownDirection, MultiSelectState, MultiSelectToggleEventDetail, PAccordionProps, PAiTagProps, PBannerProps, PButtonProps, PButtonPureProps, PButtonTileProps, PCanvasProps, PCarouselProps, PCheckboxProps, PCrestProps, PDisplayProps, PDividerProps, PDrilldownItemProps, PDrilldownLinkProps, PDrilldownProps, PFieldsetProps, PFlagProps, PFlyoutProps, PHeadingProps, PIconProps, PInlineNotificationProps, PInputDateProps, PInputEmailProps, PInputMonthProps, PInputNumberProps, PInputPasswordProps, PInputSearchProps, PInputTelProps, PInputTextProps, PInputTimeProps, PInputUrlProps, PInputWeekProps, PLinkProps, PLinkPureProps, PLinkTileProductProps, PLinkTileProps, PModalProps, PModelSignatureProps, PMultiSelectOptionProps, PMultiSelectProps, POptgroupProps, PPaginationProps, PPinCodeProps, PPopoverProps, PRadioGroupOptionProps, PRadioGroupProps, PScrollerProps, PSegmentedControlItemProps, PSegmentedControlProps, PSelectOptionProps, PSelectProps, PSheetProps, PSpinnerProps, PStepperHorizontalItemProps, PStepperHorizontalProps, PSwitchProps, PTableBodyProps, PTableCellProps, PTableHeadCellProps, PTableHeadProps, PTableHeadRowProps, PTableProps, PTableRowProps, PTabsBarProps, PTabsItemProps, PTabsProps, PTagDismissibleProps, PTagProps, PTextListItemProps, PTextListProps, PTextProps, PTextareaProps, PToastProps, PWordmarkProps, PaginationInternationalization, PaginationUpdateEventDetail, PinCodeChangeEventDetail, PinCodeLength, PinCodeState, PinCodeType, PopoverAriaAttribute, PopoverDirection, PopoverDismissEventDetail, PorscheDesignSystem, PorscheDesignSystemModuleConfig, RadioGroupChangeEventDetail, RadioGroupDirection, RadioGroupState, ScrollerAlignScrollIndicator, ScrollerAriaAttribute, ScrollerScrollToPosition, SegmentedControlChangeEventDetail, SegmentedControlColumns, SegmentedControlItemAriaAttribute, SegmentedControlItemIcon, SegmentedControlState, SelectChangeEventDetail, SelectComponentsDropdownDirection, SelectDropdownDirection, SelectState, SelectToggleEventDetail, SelectedAriaAttributes, SelectedAriaRole, SheetAriaAttribute, SheetBackground, SheetDismissEventDetail, SheetMotionHiddenEndEventDetail, SheetMotionVisibleEndEventDetail, SpinnerAriaAttribute, SpinnerColor, SpinnerSize, StepperHorizontalItemState, StepperHorizontalSize, StepperHorizontalUpdateEventDetail, SwitchAlignLabel, SwitchUpdateEventDetail, TableHeadCellSort, TableLayout, TableUpdateEventDetail, TabsAriaAttribute, TabsBackground, TabsBarAriaAttribute, TabsBarBackground, TabsBarSize, TabsBarUpdateEventDetail, TabsBarWeight, TabsSize, TabsUpdateEventDetail, TabsWeight, TagDismissibleAriaAttribute, TagIcon, TagVariant, TextAlign, TextColor, TextHyphens, TextListType, TextSize, TextTag, TextWeight, TextareaBlurEventDetail, TextareaChangeEventDetail, TextareaInputEventDetail, TextareaResize, TextareaState, TextareaWrap, TileAlign, TileAspectRatio, TileSize, TileWeight, ToPosixLocale, ToastMessage, ToastState, WordmarkAriaAttribute, WordmarkSize, WordmarkTarget };
|