@fluidattacks/design 1.2.12 → 1.2.13

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.
@@ -0,0 +1,4 @@
1
+ import { IAccordionProps } from './types';
2
+ declare const Accordion: import('react').ForwardRefExoticComponent<Readonly<IAccordionProps> & import('react').RefAttributes<HTMLDivElement>>;
3
+ export { Accordion };
4
+ export type { IAccordionProps };
@@ -0,0 +1,7 @@
1
+ import { Meta } from '@storybook/react';
2
+ import { IAccordionProps } from './types';
3
+ declare const config: Meta;
4
+ declare const Default: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, IAccordionProps>;
5
+ declare const Progress: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, IAccordionProps>;
6
+ export { Default, Progress };
7
+ export default config;
@@ -8,4 +8,5 @@ declare const getSimpleIcon: (index: number, currentItem: number, isOpen: boolea
8
8
  declare const getContentDisplay: (index: number, currentItem: number, isOpen: boolean) => Property.Display;
9
9
  declare const handleContentVisibility: (index: number, currentItem: number, setIsOpen: (value: SetStateAction<boolean>) => void) => void;
10
10
  declare const getDelay: (progressTime: number) => number;
11
- export { getItemBorderBottom, getItemBorderTop, getContentDisplay, getProgressIcon, getSimpleIcon, handleContentVisibility, getDelay, };
11
+ declare const sleep: (seconds: number) => Promise<PromiseConstructor>;
12
+ export { getItemBorderBottom, getItemBorderTop, getContentDisplay, getProgressIcon, getSimpleIcon, handleContentVisibility, getDelay, sleep, };
@@ -0,0 +1,10 @@
1
+ import { Meta } from '@storybook/react';
2
+ import { PropsWithChildren } from 'react';
3
+ import { IButtonProps } from '.';
4
+ declare const config: Meta;
5
+ declare const Default: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, PropsWithChildren<IButtonProps>>;
6
+ declare const Secondary: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, PropsWithChildren<IButtonProps>>;
7
+ declare const Ghost: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, PropsWithChildren<IButtonProps>>;
8
+ declare const Link: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, PropsWithChildren<IButtonProps>>;
9
+ export { Default, Secondary, Ghost, Link };
10
+ export default config;
@@ -0,0 +1,10 @@
1
+ import { Meta } from '@storybook/react';
2
+ import { PropsWithChildren } from 'react';
3
+ import { IButtonProps } from '..';
4
+ declare const config: Meta;
5
+ declare const Default: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, PropsWithChildren<IButtonProps>>;
6
+ declare const Secondary: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, PropsWithChildren<IButtonProps>>;
7
+ declare const Tertiary: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, PropsWithChildren<IButtonProps>>;
8
+ declare const Ghost: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, PropsWithChildren<IButtonProps>>;
9
+ export { Default, Secondary, Tertiary, Ghost };
10
+ export default config;
@@ -0,0 +1,7 @@
1
+ import { Meta, StoryFn } from '@storybook/react';
2
+ import { IContainerProps } from './types';
3
+ declare const config: Meta;
4
+ declare const Default: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, import('react').PropsWithChildren<IContainerProps>>;
5
+ declare const FlexBox: StoryFn;
6
+ export { Default, FlexBox };
7
+ export default config;
@@ -0,0 +1,17 @@
1
+ import { Meta } from '@storybook/react';
2
+ declare const config: Meta;
3
+ declare const Layout: () => JSX.Element;
4
+ declare const Large: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, {
5
+ columns: number;
6
+ }>;
7
+ declare const Medium: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, {
8
+ columns: number;
9
+ }>;
10
+ declare const Tablet: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, {
11
+ columns: number;
12
+ }>;
13
+ declare const Mobile: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, {
14
+ columns: number;
15
+ }>;
16
+ export { Layout, Large, Medium, Tablet, Mobile };
17
+ export default config;
@@ -0,0 +1,8 @@
1
+ import { Meta } from '@storybook/react';
2
+ import { ITooltipProps } from './types';
3
+ declare const config: Meta;
4
+ declare const Default: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ITooltipProps>;
5
+ declare const TitleTooltip: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ITooltipProps>;
6
+ declare const IconTooltip: import('@storybook/csf').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ITooltipProps>;
7
+ export { Default, TitleTooltip, IconTooltip };
8
+ export default config;
@@ -1,4 +1,5 @@
1
1
  export * from './components/@core';
2
+ export * from './components/accordion';
2
3
  export * from './components/button';
3
4
  export * from './components/cloud-image';
4
5
  export * from './components/colors';
package/package.json CHANGED
@@ -77,7 +77,7 @@
77
77
  "preview": "vite preview",
78
78
  "storybook": "storybook dev"
79
79
  },
80
- "version": "1.2.12",
80
+ "version": "1.2.13",
81
81
  "eslintConfig": {
82
82
  "extends": [
83
83
  "plugin:storybook/recommended"