@fluidattacks/design 3.29.5-pr → 3.29.6-pr

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,3 +1,4 @@
1
- import { IIndicatorCardProps } from './types';
2
- declare const IndicatorCardDB: ({ backgroundColor, title, indicator, description, icon, }: Readonly<IIndicatorCardProps>) => JSX.Element;
1
+ import { IIndicatorCardDBProps } from './types';
2
+ declare const IndicatorCardDB: ({ backgroundColor, title, indicator, description, icon, }: Readonly<IIndicatorCardDBProps>) => JSX.Element;
3
+ export type { IIndicatorCardDBProps };
3
4
  export { IndicatorCardDB };
@@ -1,7 +1,7 @@
1
1
  import { Meta } from '@storybook/react-vite';
2
2
  import { default as React } from 'react';
3
- import { IIndicatorCardProps } from './types';
3
+ import { IIndicatorCardDBProps } from './types';
4
4
  declare const config: Meta;
5
- declare const Default: import('storybook/internal/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, React.PropsWithChildren<IIndicatorCardProps>>;
5
+ declare const Default: import('storybook/internal/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, React.PropsWithChildren<IIndicatorCardDBProps>>;
6
6
  export { Default };
7
7
  export default config;
@@ -8,11 +8,11 @@ import { IconName } from '@fortawesome/free-solid-svg-icons';
8
8
  * @property { string } [description] - Description of the indicator card.
9
9
  * @property { IconName } [icon] - Icon of the indicator card.
10
10
  */
11
- interface IIndicatorCardProps {
11
+ interface IIndicatorCardDBProps {
12
12
  title: string;
13
13
  icon: IconName;
14
14
  indicator: string;
15
15
  backgroundColor?: string;
16
16
  description?: string;
17
17
  }
18
- export type { IIndicatorCardProps };
18
+ export type { IIndicatorCardDBProps };
package/package.json CHANGED
@@ -114,5 +114,5 @@
114
114
  "test-storybook": "test-storybook"
115
115
  },
116
116
  "typings": "./dist/index.d.ts",
117
- "version": "3.29.5-pr"
117
+ "version": "3.29.6-pr"
118
118
  }