@hero-design/rn 8.65.1 → 8.66.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,7 +3,7 @@ declare const StyledCard: import("@emotion/native").StyledComponent<import("reac
3
3
  theme?: import("@emotion/react").Theme | undefined;
4
4
  as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
5
5
  } & {
6
- themeIntent?: "primary" | "success" | "warning" | "danger" | "archived" | undefined;
6
+ themeIntent?: "neutral" | "primary" | "success" | "warning" | "danger" | "archived" | undefined;
7
7
  }, {}, {
8
8
  ref?: import("react").Ref<View> | undefined;
9
9
  }>;
@@ -8,7 +8,7 @@ export interface CardProps extends ViewProps {
8
8
  /**
9
9
  * Visual intent color to apply to card.
10
10
  */
11
- intent?: 'primary' | 'success' | 'warning' | 'danger' | 'archived';
11
+ intent?: 'primary' | 'success' | 'warning' | 'danger' | 'archived' | 'neutral';
12
12
  /**
13
13
  * Additional style.
14
14
  */
@@ -8,6 +8,7 @@ declare const getCardTheme: (theme: GlobalTheme) => {
8
8
  warning: string;
9
9
  danger: string;
10
10
  archived: string;
11
+ neutral: string;
11
12
  };
12
13
  sizes: {
13
14
  indicatorWidth: number;