sy-ui-lib 1.0.30 → 1.0.32

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.
@@ -30,6 +30,10 @@ export type PaymentDetailsCardProps = {
30
30
  status?: string;
31
31
  /** Optional account toggle configuration */
32
32
  toggle?: ToggleProps;
33
+ /** Enables displaying the remark section. */
34
+ remark?: boolean;
35
+ /** Description text for the remark section. */
36
+ remarkDesc?: string;
33
37
  /** Delete action handler */
34
38
  handleDelete?: () => void;
35
39
  };
@@ -1,6 +1,6 @@
1
1
  import { default as React } from 'react';
2
2
  /** Allowed typography variants */
3
- export type TypoVariant = "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "subtitle1" | "subtitle2" | "body1" | "body2" | "button" | "caption" | "overline" | "inherit" | "captionBold" | "smallCaps" | "smallBold" | "smallMedium";
3
+ export type TypoVariant = "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "subtitle1" | "subtitle2" | "body1" | "body2" | "button" | "caption" | "overline" | "inherit" | "captionBold" | "captionBold2" | "smallCaps" | "smallBold" | "smallMedium";
4
4
  /** Allowed text color options for the Typography component */
5
5
  export type TypoColor = "primary" | "secondary" | "error" | "success" | "black" | "smokyblack" | "slategray" | "brightgray" | "offWhite" | "white" | "neutralGray" | "babyBlue" | "watermelonRed" | "goldenYellow" | "techBlue";
6
6
  /** Maps each color option to its corresponding Tailwind css text color class */