@apolitical/component-library 8.3.13 → 8.3.14

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.
@@ -12,5 +12,5 @@ export interface ICardBlockProps {
12
12
  className?: string;
13
13
  focusCardIndex?: number;
14
14
  }
15
- declare const CardBlock: ({ cards, cardTypes, className, ...props }: ICardBlockProps) => import("react/jsx-runtime").JSX.Element;
15
+ declare const CardBlock: ({ cards, cardTypes, className, gtmContext, ...props }: ICardBlockProps) => import("react/jsx-runtime").JSX.Element;
16
16
  export default CardBlock;
@@ -70,6 +70,8 @@ export interface CardType {
70
70
  };
71
71
  /** Is the content private */
72
72
  isPrivate?: boolean;
73
+ /** The locale for the content to be appended in front of the link */
74
+ locale?: string;
73
75
  }
74
76
  export interface MockCardType extends CardType {
75
77
  cardType?: string;