@apolitical/component-library 3.0.1-SW.0 → 3.0.1-ac.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.
@@ -92,6 +92,8 @@ export interface CarouselTitleProps {
92
92
  size?: 'medium' | 'large';
93
93
  /** The `href` to point the 'view all' link to; it won't show unless this is defined */
94
94
  link?: string;
95
+ /** Whether the title should be hidden */
96
+ hidden?: boolean;
95
97
  }
96
98
  export interface BaseCarouselProps {
97
99
  /** A function to parse and build the card data - this is especially needed in carousels to hydrate the cards */
@@ -2,6 +2,7 @@ export * from './buttons';
2
2
  export * from './divider';
3
3
  export * from './image-container';
4
4
  export * from './link';
5
+ export * from './navigation-dots';
5
6
  export * from './responsive-image';
6
7
  export * from './return-to-nav-button';
7
8
  export * from './tooltip';
@@ -0,0 +1 @@
1
+ export { default as NavigationDots } from './navigation-dots';
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ interface Props {
3
+ /** The current step */
4
+ currentStep?: number;
5
+ /** The total number of steps */
6
+ steps?: number;
7
+ }
8
+ declare const NavigationDots: React.FC<Props>;
9
+ export default NavigationDots;