@porsche-design-system/components-angular 4.0.0-beta.2 → 4.0.0-beta.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 +293 -1
- package/fesm2022/porsche-design-system-components-angular.mjs +13 -8
- package/fesm2022/porsche-design-system-components-angular.mjs.map +1 -1
- package/global-styles/cn/index.css +3 -7
- package/global-styles/index.css +3 -7
- package/global-styles/variables.css +3 -7
- package/package.json +6 -2
- package/tailwindcss/index.css +19 -4
- package/types/porsche-design-system-components-angular.d.ts +334 -148
- package/vanilla-extract/cjs/font/deprecated/fontSizeDisplay.cjs +6 -6
- package/vanilla-extract/cjs/font/typescale3Xl.cjs +7 -0
- package/vanilla-extract/cjs/font/typescale4Xl.cjs +7 -0
- package/vanilla-extract/cjs/font/typescale5Xl.cjs +7 -0
- package/vanilla-extract/cjs/index.cjs +12 -12
- package/vanilla-extract/cjs/tokens/dist/esm/font/size/typescale3Xl.cjs +5 -0
- package/vanilla-extract/cjs/tokens/dist/esm/font/size/typescale4Xl.cjs +5 -0
- package/vanilla-extract/cjs/tokens/dist/esm/font/size/typescale5Xl.cjs +5 -0
- package/vanilla-extract/cjs/typography/deprecated/display/displayLargeStyle.cjs +3 -3
- package/vanilla-extract/cjs/typography/deprecated/display/displayMediumStyle.cjs +3 -3
- package/vanilla-extract/cjs/typography/deprecated/display/displaySmallStyle.cjs +3 -3
- package/vanilla-extract/cjs/typography/proseHeading3XlStyle.cjs +12 -0
- package/vanilla-extract/cjs/typography/proseHeading4XlStyle.cjs +12 -0
- package/vanilla-extract/cjs/typography/proseHeading5XlStyle.cjs +12 -0
- package/vanilla-extract/cjs/typography/proseHeadingSmStyle.cjs +2 -2
- package/vanilla-extract/esm/font/deprecated/fontSizeDisplay.mjs +6 -6
- package/vanilla-extract/esm/font/index.d.ts +3 -3
- package/vanilla-extract/esm/font/typescale3Xl.d.ts +1 -0
- package/vanilla-extract/esm/font/typescale3Xl.mjs +5 -0
- package/vanilla-extract/esm/font/typescale4Xl.d.ts +1 -0
- package/vanilla-extract/esm/font/typescale4Xl.mjs +5 -0
- package/vanilla-extract/esm/font/typescale5Xl.d.ts +1 -0
- package/vanilla-extract/esm/font/typescale5Xl.mjs +5 -0
- package/vanilla-extract/esm/index.mjs +6 -6
- package/vanilla-extract/esm/tokens/dist/esm/font/size/typescale3Xl.mjs +3 -0
- package/vanilla-extract/esm/tokens/dist/esm/font/size/typescale4Xl.mjs +3 -0
- package/vanilla-extract/esm/tokens/dist/esm/font/size/typescale5Xl.mjs +3 -0
- package/vanilla-extract/esm/typography/deprecated/display/displayLargeStyle.d.ts +1 -1
- package/vanilla-extract/esm/typography/deprecated/display/displayLargeStyle.mjs +3 -3
- package/vanilla-extract/esm/typography/deprecated/display/displayMediumStyle.d.ts +1 -1
- package/vanilla-extract/esm/typography/deprecated/display/displayMediumStyle.mjs +3 -3
- package/vanilla-extract/esm/typography/deprecated/display/displaySmallStyle.d.ts +1 -1
- package/vanilla-extract/esm/typography/deprecated/display/displaySmallStyle.mjs +3 -3
- package/vanilla-extract/esm/typography/index.d.ts +3 -3
- package/vanilla-extract/esm/typography/proseHeading3XlStyle.d.ts +3 -0
- package/vanilla-extract/esm/typography/{proseDisplayMdStyle.mjs → proseHeading3XlStyle.mjs} +4 -3
- package/vanilla-extract/esm/typography/proseHeading4XlStyle.d.ts +3 -0
- package/vanilla-extract/esm/typography/{proseDisplaySmStyle.mjs → proseHeading4XlStyle.mjs} +4 -3
- package/vanilla-extract/esm/typography/proseHeading5XlStyle.d.ts +3 -0
- package/vanilla-extract/esm/typography/{proseDisplayLgStyle.mjs → proseHeading5XlStyle.mjs} +4 -3
- package/vanilla-extract/esm/typography/proseHeadingSmStyle.mjs +2 -2
- package/vanilla-extract/cjs/font/fontSizeDisplayLarge.cjs +0 -5
- package/vanilla-extract/cjs/font/fontSizeDisplayMedium.cjs +0 -5
- package/vanilla-extract/cjs/font/fontSizeDisplaySmall.cjs +0 -5
- package/vanilla-extract/cjs/typography/proseDisplayLgStyle.cjs +0 -11
- package/vanilla-extract/cjs/typography/proseDisplayMdStyle.cjs +0 -11
- package/vanilla-extract/cjs/typography/proseDisplaySmStyle.cjs +0 -11
- package/vanilla-extract/esm/font/fontSizeDisplayLarge.d.ts +0 -1
- package/vanilla-extract/esm/font/fontSizeDisplayLarge.mjs +0 -3
- package/vanilla-extract/esm/font/fontSizeDisplayMedium.d.ts +0 -1
- package/vanilla-extract/esm/font/fontSizeDisplayMedium.mjs +0 -3
- package/vanilla-extract/esm/font/fontSizeDisplaySmall.d.ts +0 -1
- package/vanilla-extract/esm/font/fontSizeDisplaySmall.mjs +0 -3
- package/vanilla-extract/esm/typography/proseDisplayLgStyle.d.ts +0 -3
- package/vanilla-extract/esm/typography/proseDisplayMdStyle.d.ts +0 -3
- package/vanilla-extract/esm/typography/proseDisplaySmStyle.d.ts +0 -3
|
@@ -16,6 +16,37 @@ declare abstract class BaseComponent implements OnChanges {
|
|
|
16
16
|
static ɵcmp: i0.ɵɵComponentDeclaration<BaseComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
+
declare const ACCORDIONS_BACKGROUNDS: readonly [
|
|
20
|
+
"canvas",
|
|
21
|
+
"surface",
|
|
22
|
+
"frosted",
|
|
23
|
+
"none"
|
|
24
|
+
];
|
|
25
|
+
type AccordionBackground = (typeof ACCORDIONS_BACKGROUNDS)[number];
|
|
26
|
+
declare const ACCORDION_ALIGN_MARKERS: readonly [
|
|
27
|
+
"start",
|
|
28
|
+
"end"
|
|
29
|
+
];
|
|
30
|
+
type AccordionAlignMarker = (typeof ACCORDION_ALIGN_MARKERS)[number];
|
|
31
|
+
type AccordionUpdateEventDetail = {
|
|
32
|
+
open: boolean;
|
|
33
|
+
};
|
|
34
|
+
declare const ACCORDION_HEADINGS_DEPRECATED: readonly [
|
|
35
|
+
"h1",
|
|
36
|
+
"h2",
|
|
37
|
+
"h3",
|
|
38
|
+
"h4",
|
|
39
|
+
"h5",
|
|
40
|
+
"h6"
|
|
41
|
+
];
|
|
42
|
+
/** @deprecated */
|
|
43
|
+
type AccordionHeadingTag = (typeof ACCORDION_HEADINGS_DEPRECATED)[number];
|
|
44
|
+
declare const ACCORDION_SIZES: readonly [
|
|
45
|
+
"small",
|
|
46
|
+
"medium"
|
|
47
|
+
];
|
|
48
|
+
/** @deprecated */
|
|
49
|
+
type AccordionSize = (typeof ACCORDION_SIZES)[number];
|
|
19
50
|
type Booleanish = boolean | "true" | "false";
|
|
20
51
|
type AriaAttributes = {
|
|
21
52
|
/** Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application. */
|
|
@@ -639,6 +670,27 @@ declare const FLAG_NAMES: readonly [
|
|
|
639
670
|
"za"
|
|
640
671
|
];
|
|
641
672
|
type FlagName = typeof FLAG_NAMES[number];
|
|
673
|
+
declare const FORM_STATES: readonly [
|
|
674
|
+
"none",
|
|
675
|
+
"error",
|
|
676
|
+
"success"
|
|
677
|
+
];
|
|
678
|
+
type FormState = (typeof FORM_STATES)[number];
|
|
679
|
+
declare const BUTTON_ARIA_ATTRIBUTES: readonly [
|
|
680
|
+
"aria-label",
|
|
681
|
+
"aria-description",
|
|
682
|
+
"aria-expanded",
|
|
683
|
+
"aria-pressed",
|
|
684
|
+
"aria-haspopup"
|
|
685
|
+
];
|
|
686
|
+
type ButtonAriaAttribute = (typeof BUTTON_ARIA_ATTRIBUTES)[number];
|
|
687
|
+
declare const LINK_ARIA_ATTRIBUTES: readonly [
|
|
688
|
+
"aria-label",
|
|
689
|
+
"aria-description",
|
|
690
|
+
"aria-current",
|
|
691
|
+
"aria-haspopup"
|
|
692
|
+
];
|
|
693
|
+
type LinkAriaAttribute = (typeof LINK_ARIA_ATTRIBUTES)[number];
|
|
642
694
|
declare const breakpoints: readonly [
|
|
643
695
|
"base",
|
|
644
696
|
"xs",
|
|
@@ -655,75 +707,6 @@ type BreakpointValues<T> = {
|
|
|
655
707
|
base: T;
|
|
656
708
|
};
|
|
657
709
|
type BreakpointCustomizable<T> = T | BreakpointValues<T>;
|
|
658
|
-
declare const HEADING_SIZES: readonly [
|
|
659
|
-
"small",
|
|
660
|
-
"medium",
|
|
661
|
-
"large",
|
|
662
|
-
"x-large",
|
|
663
|
-
"xx-large",
|
|
664
|
-
"inherit"
|
|
665
|
-
];
|
|
666
|
-
type HeadingSize = (typeof HEADING_SIZES)[number];
|
|
667
|
-
declare const HEADING_TAGS: readonly [
|
|
668
|
-
"h1",
|
|
669
|
-
"h2",
|
|
670
|
-
"h3",
|
|
671
|
-
"h4",
|
|
672
|
-
"h5",
|
|
673
|
-
"h6"
|
|
674
|
-
];
|
|
675
|
-
type HeadingTag = (typeof HEADING_TAGS)[number];
|
|
676
|
-
declare const TEXT_SIZES: readonly [
|
|
677
|
-
"xx-small",
|
|
678
|
-
"x-small",
|
|
679
|
-
"small",
|
|
680
|
-
"medium",
|
|
681
|
-
"large",
|
|
682
|
-
"x-large",
|
|
683
|
-
"inherit"
|
|
684
|
-
];
|
|
685
|
-
type TextSize = (typeof TEXT_SIZES)[number];
|
|
686
|
-
declare const TYPOGRAPHY_ALIGNS: readonly [
|
|
687
|
-
"start",
|
|
688
|
-
"center",
|
|
689
|
-
"end",
|
|
690
|
-
"inherit"
|
|
691
|
-
];
|
|
692
|
-
type TypographyAlign = (typeof TYPOGRAPHY_ALIGNS)[number];
|
|
693
|
-
declare const TYPOGRAPHY_TEXT_COLORS: readonly [
|
|
694
|
-
"primary",
|
|
695
|
-
"contrast-high",
|
|
696
|
-
"contrast-medium",
|
|
697
|
-
"contrast-low",
|
|
698
|
-
"success",
|
|
699
|
-
"warning",
|
|
700
|
-
"error",
|
|
701
|
-
"info",
|
|
702
|
-
"inherit"
|
|
703
|
-
];
|
|
704
|
-
type TypographyTextColor = (typeof TYPOGRAPHY_TEXT_COLORS)[number];
|
|
705
|
-
declare const TYPOGRAPHY_TEXT_WEIGHTS: readonly [
|
|
706
|
-
"regular",
|
|
707
|
-
"semi-bold",
|
|
708
|
-
"bold"
|
|
709
|
-
];
|
|
710
|
-
type TypographyTextWeight = (typeof TYPOGRAPHY_TEXT_WEIGHTS)[number];
|
|
711
|
-
declare const LINK_BUTTON_VARIANTS: readonly [
|
|
712
|
-
"primary",
|
|
713
|
-
"secondary"
|
|
714
|
-
];
|
|
715
|
-
type LinkButtonVariant = (typeof LINK_BUTTON_VARIANTS)[number];
|
|
716
|
-
declare const BUTTON_TYPES: readonly [
|
|
717
|
-
"button",
|
|
718
|
-
"submit",
|
|
719
|
-
"reset"
|
|
720
|
-
];
|
|
721
|
-
type ButtonType = (typeof BUTTON_TYPES)[number];
|
|
722
|
-
declare const ALIGN_LABELS: readonly [
|
|
723
|
-
"start",
|
|
724
|
-
"end"
|
|
725
|
-
];
|
|
726
|
-
type AlignLabel = (typeof ALIGN_LABELS)[number];
|
|
727
710
|
declare const LINK_TARGETS: readonly [
|
|
728
711
|
"_self",
|
|
729
712
|
"_blank",
|
|
@@ -731,45 +714,6 @@ declare const LINK_TARGETS: readonly [
|
|
|
731
714
|
"_top"
|
|
732
715
|
];
|
|
733
716
|
type LinkTarget = (typeof LINK_TARGETS)[number] | string;
|
|
734
|
-
type LinkButtonIconName = IconName | "none";
|
|
735
|
-
type ButtonVariant = LinkButtonVariant;
|
|
736
|
-
type LinkVariant = LinkButtonVariant;
|
|
737
|
-
type PorscheDesignSystem = {
|
|
738
|
-
[key: `${number}.${number}.${number}${`-rc.${number}` | ""}`]: {
|
|
739
|
-
prefixes: string[];
|
|
740
|
-
isReady: () => Promise<void>;
|
|
741
|
-
readyResolve: () => void;
|
|
742
|
-
};
|
|
743
|
-
cdn: {
|
|
744
|
-
url: string;
|
|
745
|
-
prefixes: string[];
|
|
746
|
-
};
|
|
747
|
-
};
|
|
748
|
-
type SelectedAriaAttributes<T extends keyof AriaAttributes> = Pick<AriaAttributes, T>;
|
|
749
|
-
type SelectedAriaRole<T> = {
|
|
750
|
-
role: Extract<AriaRole, T>;
|
|
751
|
-
};
|
|
752
|
-
declare const FORM_STATES: readonly [
|
|
753
|
-
"none",
|
|
754
|
-
"error",
|
|
755
|
-
"success"
|
|
756
|
-
];
|
|
757
|
-
type FormState = (typeof FORM_STATES)[number];
|
|
758
|
-
declare const BUTTON_ARIA_ATTRIBUTES: readonly [
|
|
759
|
-
"aria-label",
|
|
760
|
-
"aria-description",
|
|
761
|
-
"aria-expanded",
|
|
762
|
-
"aria-pressed",
|
|
763
|
-
"aria-haspopup"
|
|
764
|
-
];
|
|
765
|
-
type ButtonAriaAttribute = (typeof BUTTON_ARIA_ATTRIBUTES)[number];
|
|
766
|
-
declare const LINK_ARIA_ATTRIBUTES: readonly [
|
|
767
|
-
"aria-label",
|
|
768
|
-
"aria-description",
|
|
769
|
-
"aria-current",
|
|
770
|
-
"aria-haspopup"
|
|
771
|
-
];
|
|
772
|
-
type LinkAriaAttribute = (typeof LINK_ARIA_ATTRIBUTES)[number];
|
|
773
717
|
type MultiSelectState = FormState;
|
|
774
718
|
type MultiSelectDropdownDirection = SelectComponentsDropdownDirection;
|
|
775
719
|
type MultiSelectChangeEventDetail = {
|
|
@@ -819,29 +763,40 @@ declare const TILE_ALIGNS: readonly [
|
|
|
819
763
|
"bottom"
|
|
820
764
|
];
|
|
821
765
|
type TileAlign = (typeof TILE_ALIGNS)[number];
|
|
822
|
-
declare const
|
|
823
|
-
"canvas",
|
|
824
|
-
"surface",
|
|
825
|
-
"frosted",
|
|
826
|
-
"none"
|
|
827
|
-
];
|
|
828
|
-
type AccordionBackground = (typeof ACCORDIONS_BACKGROUNDS)[number];
|
|
829
|
-
declare const ACCORDION_ALIGN_MARKERS: readonly [
|
|
766
|
+
declare const ALIGN_LABELS: readonly [
|
|
830
767
|
"start",
|
|
831
768
|
"end"
|
|
832
769
|
];
|
|
833
|
-
type
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
type AccordionHeadingTag = HeadingTag;
|
|
839
|
-
declare const ACCORDION_SIZES: readonly [
|
|
840
|
-
"small",
|
|
841
|
-
"medium"
|
|
770
|
+
type AlignLabel = (typeof ALIGN_LABELS)[number];
|
|
771
|
+
declare const BUTTON_TYPES: readonly [
|
|
772
|
+
"button",
|
|
773
|
+
"submit",
|
|
774
|
+
"reset"
|
|
842
775
|
];
|
|
843
|
-
|
|
844
|
-
|
|
776
|
+
type ButtonType = (typeof BUTTON_TYPES)[number];
|
|
777
|
+
declare const LINK_BUTTON_VARIANTS: readonly [
|
|
778
|
+
"primary",
|
|
779
|
+
"secondary"
|
|
780
|
+
];
|
|
781
|
+
type LinkButtonVariant = (typeof LINK_BUTTON_VARIANTS)[number];
|
|
782
|
+
type LinkButtonIconName = IconName | "none";
|
|
783
|
+
type ButtonVariant = LinkButtonVariant;
|
|
784
|
+
type LinkVariant = LinkButtonVariant;
|
|
785
|
+
type PorscheDesignSystem = {
|
|
786
|
+
[key: `${number}.${number}.${number}${`-rc.${number}` | ""}`]: {
|
|
787
|
+
prefixes: string[];
|
|
788
|
+
isReady: () => Promise<void>;
|
|
789
|
+
readyResolve: () => void;
|
|
790
|
+
};
|
|
791
|
+
cdn: {
|
|
792
|
+
url: string;
|
|
793
|
+
prefixes: string[];
|
|
794
|
+
};
|
|
795
|
+
};
|
|
796
|
+
type SelectedAriaAttributes<T extends keyof AriaAttributes> = Pick<AriaAttributes, T>;
|
|
797
|
+
type SelectedAriaRole<T> = {
|
|
798
|
+
role: Extract<AriaRole, T>;
|
|
799
|
+
};
|
|
845
800
|
declare const BANNER_STATES: readonly [
|
|
846
801
|
"info",
|
|
847
802
|
"success",
|
|
@@ -849,13 +804,48 @@ declare const BANNER_STATES: readonly [
|
|
|
849
804
|
"error"
|
|
850
805
|
];
|
|
851
806
|
type BannerState = (typeof BANNER_STATES)[number];
|
|
852
|
-
|
|
807
|
+
declare const BANNER_HEADING_TAGS: readonly [
|
|
808
|
+
"h1",
|
|
809
|
+
"h2",
|
|
810
|
+
"h3",
|
|
811
|
+
"h4",
|
|
812
|
+
"h5",
|
|
813
|
+
"h6"
|
|
814
|
+
];
|
|
815
|
+
type BannerHeadingTag = (typeof BANNER_HEADING_TAGS)[number];
|
|
853
816
|
type ButtonIcon = LinkButtonIconName;
|
|
854
817
|
type ButtonPureType = ButtonType;
|
|
855
818
|
type ButtonPureIcon = LinkButtonIconName;
|
|
856
819
|
type ButtonPureAriaAttribute = ButtonAriaAttribute;
|
|
857
820
|
type ButtonPureAlignLabel = AlignLabel;
|
|
858
|
-
|
|
821
|
+
declare const BUTTON_PURE_SIZES: readonly [
|
|
822
|
+
"2xs",
|
|
823
|
+
"xs",
|
|
824
|
+
"sm",
|
|
825
|
+
"md",
|
|
826
|
+
"lg",
|
|
827
|
+
"xl",
|
|
828
|
+
"2xl",
|
|
829
|
+
"3xl",
|
|
830
|
+
"4xl",
|
|
831
|
+
"5xl",
|
|
832
|
+
"inherit",
|
|
833
|
+
"xx-small",
|
|
834
|
+
"x-small",
|
|
835
|
+
"small",
|
|
836
|
+
"medium",
|
|
837
|
+
"large",
|
|
838
|
+
"x-large"
|
|
839
|
+
];
|
|
840
|
+
type ButtonPureSize = (typeof BUTTON_PURE_SIZES)[number];
|
|
841
|
+
declare const BUTTON_PURE_COLORS: readonly [
|
|
842
|
+
"primary",
|
|
843
|
+
"contrast-higher",
|
|
844
|
+
"contrast-high",
|
|
845
|
+
"contrast-medium",
|
|
846
|
+
"inherit"
|
|
847
|
+
];
|
|
848
|
+
type ButtonPureColor = (typeof BUTTON_PURE_COLORS)[number];
|
|
859
849
|
type ButtonTileAriaAttribute = ButtonAriaAttribute;
|
|
860
850
|
type ButtonTileIcon = LinkButtonIconName;
|
|
861
851
|
type ButtonTileType = ButtonType;
|
|
@@ -885,7 +875,11 @@ declare const CAROUSEL_ALIGN_HEADERS: readonly [
|
|
|
885
875
|
"center"
|
|
886
876
|
];
|
|
887
877
|
type CarouselAlignHeader = (typeof CAROUSEL_ALIGN_HEADERS)[number];
|
|
888
|
-
|
|
878
|
+
declare const CAROUSEL_HEADING_SIZES: readonly [
|
|
879
|
+
"x-large",
|
|
880
|
+
"xx-large"
|
|
881
|
+
];
|
|
882
|
+
type CarouselHeadingSize = (typeof CAROUSEL_HEADING_SIZES)[number];
|
|
889
883
|
declare const CAROUSEL_ARIA_ATTRIBUTES: readonly [
|
|
890
884
|
"aria-label"
|
|
891
885
|
];
|
|
@@ -927,7 +921,13 @@ declare const DISPLAY_COLORS: readonly [
|
|
|
927
921
|
"inherit"
|
|
928
922
|
];
|
|
929
923
|
type DisplayColor = (typeof DISPLAY_COLORS)[number];
|
|
930
|
-
|
|
924
|
+
declare const DISPLAY_ALIGNS: readonly [
|
|
925
|
+
"start",
|
|
926
|
+
"center",
|
|
927
|
+
"end",
|
|
928
|
+
"inherit"
|
|
929
|
+
];
|
|
930
|
+
type DisplayAlign = (typeof DISPLAY_ALIGNS)[number];
|
|
931
931
|
declare const DIVIDER_COLORS: readonly [
|
|
932
932
|
"contrast-lower",
|
|
933
933
|
"contrast-low",
|
|
@@ -959,7 +959,27 @@ declare const FLAG_ARIA_ATTRIBUTES: readonly [
|
|
|
959
959
|
"aria-label"
|
|
960
960
|
];
|
|
961
961
|
type FlagAriaAttribute = (typeof FLAG_ARIA_ATTRIBUTES)[number];
|
|
962
|
-
|
|
962
|
+
declare const FLAG_SIZES: readonly [
|
|
963
|
+
"2xs",
|
|
964
|
+
"xs",
|
|
965
|
+
"sm",
|
|
966
|
+
"md",
|
|
967
|
+
"lg",
|
|
968
|
+
"xl",
|
|
969
|
+
"2xl",
|
|
970
|
+
"3xl",
|
|
971
|
+
"4xl",
|
|
972
|
+
"5xl",
|
|
973
|
+
"inherit",
|
|
974
|
+
"xx-small",
|
|
975
|
+
"x-small",
|
|
976
|
+
"small",
|
|
977
|
+
"medium",
|
|
978
|
+
"large",
|
|
979
|
+
"x-large",
|
|
980
|
+
"xx-large"
|
|
981
|
+
];
|
|
982
|
+
type FlagSize = (typeof FLAG_SIZES)[number];
|
|
963
983
|
declare const BACKDROPS: readonly [
|
|
964
984
|
"blur",
|
|
965
985
|
"shading"
|
|
@@ -987,22 +1007,89 @@ type FlyoutAriaAttribute = (typeof FLYOUT_ARIA_ATTRIBUTES)[number];
|
|
|
987
1007
|
type FlyoutMotionVisibleEndEventDetail = TransitionEvent;
|
|
988
1008
|
type FlyoutMotionHiddenEndEventDetail = TransitionEvent;
|
|
989
1009
|
type FlyoutBackdrop = Backdrop;
|
|
1010
|
+
declare const HEADING_TAGS: readonly [
|
|
1011
|
+
"h1",
|
|
1012
|
+
"h2",
|
|
1013
|
+
"h3",
|
|
1014
|
+
"h4",
|
|
1015
|
+
"h5",
|
|
1016
|
+
"h6"
|
|
1017
|
+
];
|
|
1018
|
+
type HeadingTag = (typeof HEADING_TAGS)[number];
|
|
990
1019
|
declare const HEADING_COLORS: readonly [
|
|
991
1020
|
"primary",
|
|
1021
|
+
"contrast-higher",
|
|
1022
|
+
"contrast-high",
|
|
1023
|
+
"contrast-medium",
|
|
992
1024
|
"inherit"
|
|
993
1025
|
];
|
|
994
1026
|
type HeadingColor = (typeof HEADING_COLORS)[number];
|
|
995
|
-
|
|
1027
|
+
declare const HEADING_WEIGHTS: readonly [
|
|
1028
|
+
"normal",
|
|
1029
|
+
"semibold",
|
|
1030
|
+
"bold",
|
|
1031
|
+
"regular",
|
|
1032
|
+
"semi-bold"
|
|
1033
|
+
];
|
|
1034
|
+
type HeadingWeight = (typeof HEADING_WEIGHTS)[number];
|
|
1035
|
+
declare const HEADING_ALIGNS: readonly [
|
|
1036
|
+
"start",
|
|
1037
|
+
"center",
|
|
1038
|
+
"end",
|
|
1039
|
+
"inherit"
|
|
1040
|
+
];
|
|
1041
|
+
type HeadingAlign = (typeof HEADING_ALIGNS)[number];
|
|
1042
|
+
declare const HEADING_SIZES: readonly [
|
|
1043
|
+
"2xs",
|
|
1044
|
+
"xs",
|
|
1045
|
+
"sm",
|
|
1046
|
+
"md",
|
|
1047
|
+
"lg",
|
|
1048
|
+
"xl",
|
|
1049
|
+
"2xl",
|
|
1050
|
+
"3xl",
|
|
1051
|
+
"4xl",
|
|
1052
|
+
"5xl",
|
|
1053
|
+
"inherit",
|
|
1054
|
+
"small",
|
|
1055
|
+
"medium",
|
|
1056
|
+
"large",
|
|
1057
|
+
"x-large",
|
|
1058
|
+
"xx-large"
|
|
1059
|
+
];
|
|
1060
|
+
type HeadingSize = (typeof HEADING_SIZES)[number];
|
|
996
1061
|
declare const ICON_ARIA_ATTRIBUTES: readonly [
|
|
997
1062
|
"aria-label"
|
|
998
1063
|
];
|
|
999
1064
|
type IconAriaAttribute = (typeof ICON_ARIA_ATTRIBUTES)[number];
|
|
1000
|
-
|
|
1065
|
+
declare const ICON_SIZES: readonly [
|
|
1066
|
+
"2xs",
|
|
1067
|
+
"xs",
|
|
1068
|
+
"sm",
|
|
1069
|
+
"md",
|
|
1070
|
+
"lg",
|
|
1071
|
+
"xl",
|
|
1072
|
+
"2xl",
|
|
1073
|
+
"3xl",
|
|
1074
|
+
"4xl",
|
|
1075
|
+
"5xl",
|
|
1076
|
+
"inherit",
|
|
1077
|
+
"xx-small",
|
|
1078
|
+
"x-small",
|
|
1079
|
+
"small",
|
|
1080
|
+
"medium",
|
|
1081
|
+
"large",
|
|
1082
|
+
"x-large",
|
|
1083
|
+
"xx-large"
|
|
1084
|
+
];
|
|
1085
|
+
type IconSize = (typeof ICON_SIZES)[number];
|
|
1001
1086
|
declare const ICON_COLORS: readonly [
|
|
1002
1087
|
"primary",
|
|
1088
|
+
"contrast-higher",
|
|
1003
1089
|
"contrast-high",
|
|
1004
1090
|
"contrast-medium",
|
|
1005
1091
|
"contrast-low",
|
|
1092
|
+
"contrast-lower",
|
|
1006
1093
|
"success",
|
|
1007
1094
|
"warning",
|
|
1008
1095
|
"error",
|
|
@@ -1018,7 +1105,15 @@ declare const INLINE_NOTIFICATION_STATES: readonly [
|
|
|
1018
1105
|
];
|
|
1019
1106
|
type InlineNotificationState = (typeof INLINE_NOTIFICATION_STATES)[number];
|
|
1020
1107
|
type InlineNotificationActionIcon = IconName;
|
|
1021
|
-
|
|
1108
|
+
declare const INLINE_NOTIFICATION_HEADING_TAGS: readonly [
|
|
1109
|
+
"h1",
|
|
1110
|
+
"h2",
|
|
1111
|
+
"h3",
|
|
1112
|
+
"h4",
|
|
1113
|
+
"h5",
|
|
1114
|
+
"h6"
|
|
1115
|
+
];
|
|
1116
|
+
type InlineNotificationHeadingTag = (typeof INLINE_NOTIFICATION_HEADING_TAGS)[number];
|
|
1022
1117
|
type InputDateState = FormState;
|
|
1023
1118
|
type InputDateChangeEventDetail = Event;
|
|
1024
1119
|
type InputDateBlurEventDetail = Event;
|
|
@@ -1067,8 +1162,35 @@ type LinkIcon = LinkButtonIconName;
|
|
|
1067
1162
|
type LinkPureIcon = LinkButtonIconName;
|
|
1068
1163
|
type LinkPureAriaAttribute = LinkAriaAttribute;
|
|
1069
1164
|
type LinkPureAlignLabel = AlignLabel;
|
|
1070
|
-
type LinkPureSize = TextSize;
|
|
1071
1165
|
type LinkPureTarget = LinkTarget;
|
|
1166
|
+
declare const LINK_PURE_SIZES: readonly [
|
|
1167
|
+
"2xs",
|
|
1168
|
+
"xs",
|
|
1169
|
+
"sm",
|
|
1170
|
+
"md",
|
|
1171
|
+
"lg",
|
|
1172
|
+
"xl",
|
|
1173
|
+
"2xl",
|
|
1174
|
+
"3xl",
|
|
1175
|
+
"4xl",
|
|
1176
|
+
"5xl",
|
|
1177
|
+
"inherit",
|
|
1178
|
+
"xx-small",
|
|
1179
|
+
"x-small",
|
|
1180
|
+
"small",
|
|
1181
|
+
"medium",
|
|
1182
|
+
"large",
|
|
1183
|
+
"x-large"
|
|
1184
|
+
];
|
|
1185
|
+
type LinkPureSize = (typeof LINK_PURE_SIZES)[number];
|
|
1186
|
+
declare const LINK_PURE_COLORS: readonly [
|
|
1187
|
+
"primary",
|
|
1188
|
+
"contrast-higher",
|
|
1189
|
+
"contrast-high",
|
|
1190
|
+
"contrast-medium",
|
|
1191
|
+
"inherit"
|
|
1192
|
+
];
|
|
1193
|
+
type LinkPureColor = (typeof LINK_PURE_COLORS)[number];
|
|
1072
1194
|
type LinkTileTarget = LinkTarget;
|
|
1073
1195
|
type LinkTileAriaAttribute = LinkAriaAttribute;
|
|
1074
1196
|
type LinkTileAspectRatio = TileAspectRatio;
|
|
@@ -1265,11 +1387,26 @@ declare const SHEET_BACKGROUNDS: readonly [
|
|
|
1265
1387
|
type SheetBackground = (typeof SHEET_BACKGROUNDS)[number];
|
|
1266
1388
|
type SheetMotionVisibleEndEventDetail = TransitionEvent;
|
|
1267
1389
|
type SheetMotionHiddenEndEventDetail = TransitionEvent;
|
|
1390
|
+
declare const SPINNER_COLORS: readonly [
|
|
1391
|
+
"primary",
|
|
1392
|
+
"inherit"
|
|
1393
|
+
];
|
|
1394
|
+
type SpinnerColor = (typeof SPINNER_COLORS)[number];
|
|
1268
1395
|
declare const SPINNER_SIZES: readonly [
|
|
1396
|
+
"2xs",
|
|
1397
|
+
"xs",
|
|
1398
|
+
"sm",
|
|
1399
|
+
"md",
|
|
1400
|
+
"lg",
|
|
1401
|
+
"xl",
|
|
1402
|
+
"2xl",
|
|
1403
|
+
"3xl",
|
|
1404
|
+
"4xl",
|
|
1405
|
+
"5xl",
|
|
1406
|
+
"inherit",
|
|
1269
1407
|
"small",
|
|
1270
1408
|
"medium",
|
|
1271
|
-
"large"
|
|
1272
|
-
"inherit"
|
|
1409
|
+
"large"
|
|
1273
1410
|
];
|
|
1274
1411
|
type SpinnerSize = (typeof SPINNER_SIZES)[number];
|
|
1275
1412
|
declare const SPINNER_ARIA_ATTRIBUTES: readonly [
|
|
@@ -1374,9 +1511,53 @@ declare const TEXT_TAGS: readonly [
|
|
|
1374
1511
|
"legend"
|
|
1375
1512
|
];
|
|
1376
1513
|
type TextTag = (typeof TEXT_TAGS)[number];
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1514
|
+
declare const TEXT_COLORS: readonly [
|
|
1515
|
+
"primary",
|
|
1516
|
+
"contrast-higher",
|
|
1517
|
+
"contrast-high",
|
|
1518
|
+
"contrast-medium",
|
|
1519
|
+
"success",
|
|
1520
|
+
"warning",
|
|
1521
|
+
"error",
|
|
1522
|
+
"info",
|
|
1523
|
+
"inherit"
|
|
1524
|
+
];
|
|
1525
|
+
type TextColor = (typeof TEXT_COLORS)[number];
|
|
1526
|
+
declare const TEXT_WEIGHTS: readonly [
|
|
1527
|
+
"normal",
|
|
1528
|
+
"semibold",
|
|
1529
|
+
"bold",
|
|
1530
|
+
"regular",
|
|
1531
|
+
"semi-bold"
|
|
1532
|
+
];
|
|
1533
|
+
type TextWeight = (typeof TEXT_WEIGHTS)[number];
|
|
1534
|
+
declare const TEXT_ALIGNS: readonly [
|
|
1535
|
+
"start",
|
|
1536
|
+
"center",
|
|
1537
|
+
"end",
|
|
1538
|
+
"inherit"
|
|
1539
|
+
];
|
|
1540
|
+
type TextAlign = (typeof TEXT_ALIGNS)[number];
|
|
1541
|
+
declare const TEXT_SIZES: readonly [
|
|
1542
|
+
"2xs",
|
|
1543
|
+
"xs",
|
|
1544
|
+
"sm",
|
|
1545
|
+
"md",
|
|
1546
|
+
"lg",
|
|
1547
|
+
"xl",
|
|
1548
|
+
"2xl",
|
|
1549
|
+
"3xl",
|
|
1550
|
+
"4xl",
|
|
1551
|
+
"5xl",
|
|
1552
|
+
"inherit",
|
|
1553
|
+
"xx-small",
|
|
1554
|
+
"x-small",
|
|
1555
|
+
"small",
|
|
1556
|
+
"medium",
|
|
1557
|
+
"large",
|
|
1558
|
+
"x-large"
|
|
1559
|
+
];
|
|
1560
|
+
type TextSize = (typeof TEXT_SIZES)[number];
|
|
1380
1561
|
declare const TEXT_LIST_TYPES: readonly [
|
|
1381
1562
|
"unordered",
|
|
1382
1563
|
"numbered",
|
|
@@ -2095,6 +2276,7 @@ declare class PButtonPure extends BaseComponent {
|
|
|
2095
2276
|
active?: boolean;
|
|
2096
2277
|
alignLabel?: BreakpointCustomizable<ButtonPureAlignLabel>;
|
|
2097
2278
|
aria?: SelectedAriaAttributes<ButtonPureAriaAttribute>;
|
|
2279
|
+
color?: ButtonPureColor;
|
|
2098
2280
|
disabled?: boolean;
|
|
2099
2281
|
form?: string;
|
|
2100
2282
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
@@ -2108,7 +2290,7 @@ declare class PButtonPure extends BaseComponent {
|
|
|
2108
2290
|
underline?: boolean;
|
|
2109
2291
|
value?: string;
|
|
2110
2292
|
static ɵfac: i0.ɵɵFactoryDeclaration<PButtonPure, never>;
|
|
2111
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PButtonPure, "p-button-pure,[p-button-pure]", never, { "active": { "alias": "active"; "required": false; }; "alignLabel": { "alias": "alignLabel"; "required": false; }; "aria": { "alias": "aria"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconSource": { "alias": "iconSource"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "stretch": { "alias": "stretch"; "required": false; }; "type": { "alias": "type"; "required": false; }; "underline": { "alias": "underline"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2293
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PButtonPure, "p-button-pure,[p-button-pure]", never, { "active": { "alias": "active"; "required": false; }; "alignLabel": { "alias": "alignLabel"; "required": false; }; "aria": { "alias": "aria"; "required": false; }; "color": { "alias": "color"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconSource": { "alias": "iconSource"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "stretch": { "alias": "stretch"; "required": false; }; "type": { "alias": "type"; "required": false; }; "underline": { "alias": "underline"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2112
2294
|
}
|
|
2113
2295
|
|
|
2114
2296
|
declare class PButtonTile extends BaseComponent {
|
|
@@ -2170,6 +2352,7 @@ declare class PCrest extends BaseComponent {
|
|
|
2170
2352
|
static ɵcmp: i0.ɵɵComponentDeclaration<PCrest, "p-crest,[p-crest]", never, { "aria": { "alias": "aria"; "required": false; }; "href": { "alias": "href"; "required": false; }; "target": { "alias": "target"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2171
2353
|
}
|
|
2172
2354
|
|
|
2355
|
+
/** @deprecated since v4.0.0, will be removed with next major release. Please use `p-heading` instead. */
|
|
2173
2356
|
declare class PDisplay extends BaseComponent {
|
|
2174
2357
|
align?: DisplayAlign;
|
|
2175
2358
|
color?: DisplayColor;
|
|
@@ -2232,7 +2415,7 @@ declare class PFieldset extends BaseComponent {
|
|
|
2232
2415
|
declare class PFlag extends BaseComponent {
|
|
2233
2416
|
aria?: SelectedAriaAttributes<FlagAriaAttribute>;
|
|
2234
2417
|
name?: FlagName;
|
|
2235
|
-
size?: FlagSize
|
|
2418
|
+
size?: BreakpointCustomizable<FlagSize>;
|
|
2236
2419
|
static ɵfac: i0.ɵɵFactoryDeclaration<PFlag, never>;
|
|
2237
2420
|
static ɵcmp: i0.ɵɵComponentDeclaration<PFlag, "p-flag,[p-flag]", never, { "aria": { "alias": "aria"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2238
2421
|
}
|
|
@@ -2258,15 +2441,16 @@ declare class PHeading extends BaseComponent {
|
|
|
2258
2441
|
ellipsis?: boolean;
|
|
2259
2442
|
size?: BreakpointCustomizable<HeadingSize>;
|
|
2260
2443
|
tag?: HeadingTag;
|
|
2444
|
+
weight?: HeadingWeight;
|
|
2261
2445
|
static ɵfac: i0.ɵɵFactoryDeclaration<PHeading, never>;
|
|
2262
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PHeading, "p-heading,[p-heading]", never, { "align": { "alias": "align"; "required": false; }; "color": { "alias": "color"; "required": false; }; "ellipsis": { "alias": "ellipsis"; "required": false; }; "size": { "alias": "size"; "required": false; }; "tag": { "alias": "tag"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2446
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PHeading, "p-heading,[p-heading]", never, { "align": { "alias": "align"; "required": false; }; "color": { "alias": "color"; "required": false; }; "ellipsis": { "alias": "ellipsis"; "required": false; }; "size": { "alias": "size"; "required": false; }; "tag": { "alias": "tag"; "required": false; }; "weight": { "alias": "weight"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2263
2447
|
}
|
|
2264
2448
|
|
|
2265
2449
|
declare class PIcon extends BaseComponent {
|
|
2266
2450
|
aria?: SelectedAriaAttributes<IconAriaAttribute>;
|
|
2267
2451
|
color?: IconColor;
|
|
2268
2452
|
name?: IconName;
|
|
2269
|
-
size?: IconSize
|
|
2453
|
+
size?: BreakpointCustomizable<IconSize>;
|
|
2270
2454
|
source?: string;
|
|
2271
2455
|
static ɵfac: i0.ɵɵFactoryDeclaration<PIcon, never>;
|
|
2272
2456
|
static ɵcmp: i0.ɵɵComponentDeclaration<PIcon, "p-icon,[p-icon]", never, { "aria": { "alias": "aria"; "required": false; }; "color": { "alias": "color"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "source": { "alias": "source"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
@@ -2306,6 +2490,7 @@ declare class PLinkPure extends BaseComponent {
|
|
|
2306
2490
|
active?: boolean;
|
|
2307
2491
|
alignLabel?: BreakpointCustomizable<LinkPureAlignLabel>;
|
|
2308
2492
|
aria?: SelectedAriaAttributes<LinkPureAriaAttribute>;
|
|
2493
|
+
color?: LinkPureColor;
|
|
2309
2494
|
download?: string;
|
|
2310
2495
|
hideLabel?: BreakpointCustomizable<boolean>;
|
|
2311
2496
|
href?: string;
|
|
@@ -2317,7 +2502,7 @@ declare class PLinkPure extends BaseComponent {
|
|
|
2317
2502
|
target?: LinkPureTarget;
|
|
2318
2503
|
underline?: boolean;
|
|
2319
2504
|
static ɵfac: i0.ɵɵFactoryDeclaration<PLinkPure, never>;
|
|
2320
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PLinkPure, "p-link-pure,[p-link-pure]", never, { "active": { "alias": "active"; "required": false; }; "alignLabel": { "alias": "alignLabel"; "required": false; }; "aria": { "alias": "aria"; "required": false; }; "download": { "alias": "download"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "href": { "alias": "href"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconSource": { "alias": "iconSource"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "size": { "alias": "size"; "required": false; }; "stretch": { "alias": "stretch"; "required": false; }; "target": { "alias": "target"; "required": false; }; "underline": { "alias": "underline"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2505
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PLinkPure, "p-link-pure,[p-link-pure]", never, { "active": { "alias": "active"; "required": false; }; "alignLabel": { "alias": "alignLabel"; "required": false; }; "aria": { "alias": "aria"; "required": false; }; "color": { "alias": "color"; "required": false; }; "download": { "alias": "download"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "href": { "alias": "href"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconSource": { "alias": "iconSource"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "size": { "alias": "size"; "required": false; }; "stretch": { "alias": "stretch"; "required": false; }; "target": { "alias": "target"; "required": false; }; "underline": { "alias": "underline"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2321
2506
|
}
|
|
2322
2507
|
|
|
2323
2508
|
declare class PLinkTile extends BaseComponent {
|
|
@@ -2468,9 +2653,10 @@ declare class PSheet extends BaseComponent {
|
|
|
2468
2653
|
|
|
2469
2654
|
declare class PSpinner extends BaseComponent {
|
|
2470
2655
|
aria?: SelectedAriaAttributes<SpinnerAriaAttribute>;
|
|
2656
|
+
color?: SpinnerColor;
|
|
2471
2657
|
size?: BreakpointCustomizable<SpinnerSize>;
|
|
2472
2658
|
static ɵfac: i0.ɵɵFactoryDeclaration<PSpinner, never>;
|
|
2473
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PSpinner, "p-spinner,[p-spinner]", never, { "aria": { "alias": "aria"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2659
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PSpinner, "p-spinner,[p-spinner]", never, { "aria": { "alias": "aria"; "required": false; }; "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
2474
2660
|
}
|
|
2475
2661
|
|
|
2476
2662
|
declare class PStepperHorizontal extends BaseComponent {
|
|
@@ -2646,4 +2832,4 @@ declare class ToastManager {
|
|
|
2646
2832
|
}
|
|
2647
2833
|
|
|
2648
2834
|
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 };
|
|
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,
|
|
2835
|
+
export type { AccordionAlignMarker, AccordionBackground, AccordionHeadingTag, AccordionSize, AccordionUpdateEventDetail, AlignLabel, AriaAttributes, AriaRole, Backdrop, BannerHeadingTag, 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, 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, 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, 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, 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, WordmarkAriaAttribute, WordmarkSize, WordmarkTarget };
|