@apolitical/component-library 8.3.27 → 8.3.28

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.
@@ -1 +1,2 @@
1
1
  export { default as MarketingBlock } from './marketing-block';
2
+ export type { MarketingBlockProps } from './marketing-block';
@@ -1,5 +1,5 @@
1
1
  import { type ButtonVariantType } from '../../general';
2
- interface Props {
2
+ export interface MarketingBlockProps {
3
3
  /** The colour variant to use */
4
4
  variant?: 'primary' | 'secondary' | 'tertiary' | 'quaternary';
5
5
  /** If `button` is provided, with `link` and `text` strings, a button will be rendered on the component */
@@ -15,5 +15,5 @@ interface Props {
15
15
  /** The GTM event context */
16
16
  gtmContext?: string;
17
17
  }
18
- declare const MarketingBlock: ({ variant, button, title, text, gtmContext, }: Props) => import("react/jsx-runtime").JSX.Element | null;
18
+ declare const MarketingBlock: ({ variant, button, title, text, gtmContext, }: MarketingBlockProps) => import("react/jsx-runtime").JSX.Element | null;
19
19
  export default MarketingBlock;
@@ -1,2 +1,3 @@
1
1
  export { default as ActivitiesFeed } from './activities-feed';
2
2
  export type { ICreatePollVars } from './cache';
3
+ export { useActivitiesFeed } from './cache';