@akad/design-system 1.0.0-alpha.1 → 1.0.0-alpha.3

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.
Files changed (59) hide show
  1. package/css/core.css +1 -1
  2. package/package.json +1 -1
  3. package/react/react-lib.js +631 -715
  4. package/react/react-lib.umd.cjs +3 -3
  5. package/react/src/components/atoms/Button/Button.d.ts +1 -1
  6. package/react/src/components/atoms/Button/Button.stories.d.ts +3 -3
  7. package/react/src/components/atoms/Caption/Caption.d.ts +1 -1
  8. package/react/src/components/atoms/Caption/Caption.stories.d.ts +2 -2
  9. package/react/src/components/atoms/Card/Card.stories.d.ts +4 -4
  10. package/react/src/components/atoms/Checkbox/Checkbox.d.ts +1 -1
  11. package/react/src/components/atoms/Checkbox/Checkbox.stories.d.ts +4 -4
  12. package/react/src/components/atoms/Heading/Heading.d.ts +1 -1
  13. package/react/src/components/atoms/Heading/Heading.stories.d.ts +9 -9
  14. package/react/src/components/atoms/HorizontalRule/HorizontalRule.stories.d.ts +2 -2
  15. package/react/src/components/atoms/Icon/Icon.d.ts +1 -1
  16. package/react/src/components/atoms/Icon/Icon.stories.d.ts +3 -3
  17. package/react/src/components/atoms/Input/Input.stories.d.ts +2 -2
  18. package/react/src/components/atoms/Loading/Loading.stories.d.ts +2 -2
  19. package/react/src/components/atoms/Option/Option.d.ts +1 -1
  20. package/react/src/components/atoms/Option/Option.stories.d.ts +2 -2
  21. package/react/src/components/atoms/Paragraph/Paragraph.d.ts +1 -1
  22. package/react/src/components/atoms/Paragraph/Paragraph.stories.d.ts +4 -4
  23. package/react/src/components/atoms/Progress/Progress.stories.d.ts +2 -2
  24. package/react/src/components/atoms/Select/Select.d.ts +1 -1
  25. package/react/src/components/atoms/Select/Select.stories.d.ts +2 -2
  26. package/react/src/components/atoms/Subtitle/Subtitle.stories.d.ts +4 -4
  27. package/react/src/components/atoms/TextArea/TextArea.stories.d.ts +3 -3
  28. package/react/src/components/atoms/Tooltip/Tooltip.d.ts +1 -1
  29. package/react/src/components/atoms/Tooltip/Tooltip.stories.d.ts +7 -7
  30. package/react/src/components/bosons/Container/Container.d.ts +1 -1
  31. package/react/src/components/bosons/Container/Container.stories.d.ts +3 -3
  32. package/react/src/components/bosons/FlexLayout/FlexLayout.stories.d.ts +4 -4
  33. package/react/src/components/bosons/GridLayout/GridLayout.stories.d.ts +3 -3
  34. package/react/src/components/bosons/Spacer/Spacer.stories.d.ts +2 -2
  35. package/react/src/components/bosons/Wrapper/Wrapper.stories.d.ts +3 -3
  36. package/react/src/components/molecules/Accordion/Accordion.d.ts +1 -1
  37. package/react/src/components/molecules/Accordion/Accordion.stories.d.ts +2 -2
  38. package/react/src/components/molecules/ActiveTags/ActiveTags.stories.d.ts +2 -2
  39. package/react/src/components/molecules/EditableSelect/EditableSelect.stories.d.ts +3 -3
  40. package/react/src/components/molecules/Indicator/Indicator.stories.d.ts +2 -2
  41. package/react/src/components/molecules/InlineEditable/InlineEditable.d.ts +1 -1
  42. package/react/src/components/molecules/InlineEditable/InlineEditable.stories.d.ts +8 -8
  43. package/react/src/components/molecules/Modal/Modal.d.ts +1 -1
  44. package/react/src/components/molecules/Modal/Modal.stories.d.ts +5 -5
  45. package/react/src/components/molecules/Notification/Notification.stories.d.ts +52 -52
  46. package/react/src/components/molecules/PasswordConfirmation/PasswordConfirmation.stories.d.ts +3 -3
  47. package/react/src/components/molecules/Stepper/Stepper.stories.d.ts +2 -2
  48. package/react/src/components/molecules/Table/Table.stories.d.ts +2 -2
  49. package/react/src/components/molecules/Tabs/Tab.d.ts +1 -1
  50. package/react/src/components/molecules/Tabs/Tabs.stories.d.ts +2 -2
  51. package/react/src/components/molecules/ThemeProvider/ThemeProvider.d.ts +1 -1
  52. package/react/src/components/organisms/NotificationList/NotificationList.d.ts +1 -1
  53. package/react/src/components/organisms/NotificationList/NotificationList.stories.d.ts +2 -2
  54. package/scss/core/base/reset.scss +0 -1
  55. package/scss/core/components/atoms/heading.scss +1 -0
  56. package/scss/core/components/molecules/accordion.scss +1 -1
  57. package/scss/core/components/molecules/notification.scss +1 -1
  58. package/scss/core/helpers/borders.scss +21 -3
  59. package/scss/core/helpers/colors.scss +33 -6
@@ -1,5 +1,5 @@
1
- import { HTMLAttributes, ReactNode } from 'react';
2
1
  import { default as PropTypes } from 'prop-types';
2
+ import { HTMLAttributes, ReactNode } from 'react';
3
3
 
4
4
  export interface DsButtonProps extends HTMLAttributes<HTMLButtonElement> {
5
5
  children: string | ReactNode;
@@ -1,11 +1,11 @@
1
- import { ThemeProviderProps } from '../../molecules/ThemeProvider';
2
- import { DsButtonProps } from './Button';
3
1
  import { Meta } from '@storybook/react';
2
+ import { DsButtonProps } from './Button';
3
+ import { ThemeProviderProps } from '../../molecules/ThemeProvider';
4
4
 
5
5
  declare const componentProps: Meta;
6
6
  export default componentProps;
7
7
  export declare const Default: {
8
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ThemeProviderProps & DsButtonProps>;
8
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ThemeProviderProps & DsButtonProps>;
9
9
  args: {
10
10
  variant: import('./Button.config').ButtonVariant;
11
11
  fullSize: boolean;
@@ -1,5 +1,5 @@
1
- import { default as React } from 'react';
2
1
  import { default as PropTypes } from 'prop-types';
2
+ import { default as React } from 'react';
3
3
 
4
4
  export interface DsCaptionProps {
5
5
  children?: React.ReactNode;
@@ -1,9 +1,9 @@
1
- import { DsCaptionProps } from '.';
2
1
  import { Meta } from '@storybook/react';
2
+ import { DsCaptionProps } from '.';
3
3
 
4
4
  declare const componentProps: Meta;
5
5
  export default componentProps;
6
6
  export declare const Default: {
7
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsCaptionProps>;
7
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsCaptionProps>;
8
8
  args: {};
9
9
  };
@@ -1,22 +1,22 @@
1
- import { DsCardProps } from '.';
2
1
  import { Meta } from '@storybook/react';
2
+ import { DsCardProps } from '.';
3
3
 
4
4
  declare const ComponentProps: Meta;
5
5
  export default ComponentProps;
6
6
  export declare const Default: {
7
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsCardProps>;
7
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsCardProps>;
8
8
  args: {
9
9
  elevation: number;
10
10
  };
11
11
  };
12
12
  export declare const WithBorder: {
13
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsCardProps>;
13
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsCardProps>;
14
14
  args: {
15
15
  borderColor: string;
16
16
  };
17
17
  };
18
18
  export declare const WithBackground: {
19
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsCardProps>;
19
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsCardProps>;
20
20
  args: {
21
21
  backgroundColor: string;
22
22
  };
@@ -1,5 +1,5 @@
1
- import { DsCheckboxProps } from './Checkbox.config';
2
1
  import { default as React } from 'react';
2
+ import { DsCheckboxProps } from './Checkbox.config';
3
3
 
4
4
  declare const DsCheckbox: React.ForwardRefExoticComponent<DsCheckboxProps & React.RefAttributes<HTMLInputElement>>;
5
5
  export default DsCheckbox;
@@ -1,10 +1,10 @@
1
+ import { Meta, StoryFn } from '@storybook/react';
1
2
  import { DsCheckboxProps } from '.';
2
- import { Meta } from '@storybook/react';
3
3
 
4
4
  declare const ComponentProps: Meta;
5
5
  export default ComponentProps;
6
6
  export declare const Default: {
7
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsCheckboxProps>;
7
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsCheckboxProps>;
8
8
  args: {
9
9
  name: string;
10
10
  label: string;
@@ -12,12 +12,12 @@ export declare const Default: {
12
12
  };
13
13
  };
14
14
  export declare const Disabled: {
15
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsCheckboxProps>;
15
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsCheckboxProps>;
16
16
  args: {
17
17
  name: string;
18
18
  disabled: boolean;
19
19
  label: string;
20
20
  description: string;
21
21
  };
22
- decorators: ((Story: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, import('@storybook/types').Args>) => import("react/jsx-runtime").JSX.Element)[];
22
+ decorators: ((Story: StoryFn) => import("react/jsx-runtime").JSX.Element)[];
23
23
  };
@@ -1,5 +1,5 @@
1
- import { default as React } from 'react';
2
1
  import { default as PropTypes } from 'prop-types';
2
+ import { default as React } from 'react';
3
3
 
4
4
  export interface DsHeadingProps {
5
5
  children?: React.ReactNode;
@@ -1,47 +1,47 @@
1
- import { ThemeProviderProps } from '../../molecules/ThemeProvider';
2
- import { DsHeadingProps } from '.';
3
1
  import { Meta } from '@storybook/react';
2
+ import { DsHeadingProps } from '.';
3
+ import { ThemeProviderProps } from '../../molecules/ThemeProvider';
4
4
 
5
5
  declare const ComponentProps: Meta;
6
6
  export default ComponentProps;
7
7
  export declare const Default: {
8
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ThemeProviderProps & DsHeadingProps>;
8
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ThemeProviderProps & DsHeadingProps>;
9
9
  args: {
10
10
  type: string;
11
11
  };
12
12
  };
13
13
  export declare const Heading1: {
14
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ThemeProviderProps & DsHeadingProps>;
14
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ThemeProviderProps & DsHeadingProps>;
15
15
  args: {
16
16
  type: string;
17
17
  };
18
18
  };
19
19
  export declare const Heading2: {
20
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ThemeProviderProps & DsHeadingProps>;
20
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ThemeProviderProps & DsHeadingProps>;
21
21
  args: {
22
22
  type: string;
23
23
  };
24
24
  };
25
25
  export declare const Heading3: {
26
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ThemeProviderProps & DsHeadingProps>;
26
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ThemeProviderProps & DsHeadingProps>;
27
27
  args: {
28
28
  type: string;
29
29
  };
30
30
  };
31
31
  export declare const Heading4: {
32
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ThemeProviderProps & DsHeadingProps>;
32
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ThemeProviderProps & DsHeadingProps>;
33
33
  args: {
34
34
  type: string;
35
35
  };
36
36
  };
37
37
  export declare const Heading5: {
38
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ThemeProviderProps & DsHeadingProps>;
38
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ThemeProviderProps & DsHeadingProps>;
39
39
  args: {
40
40
  type: string;
41
41
  };
42
42
  };
43
43
  export declare const Heading6: {
44
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ThemeProviderProps & DsHeadingProps>;
44
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ThemeProviderProps & DsHeadingProps>;
45
45
  args: {
46
46
  type: string;
47
47
  };
@@ -1,9 +1,9 @@
1
- import { DsHRProps } from '.';
2
1
  import { Meta } from '@storybook/react';
2
+ import { DsHRProps } from '.';
3
3
 
4
4
  declare const componentProps: Meta;
5
5
  export default componentProps;
6
6
  export declare const Default: {
7
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsHRProps>;
7
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsHRProps>;
8
8
  args: {};
9
9
  };
@@ -1,5 +1,5 @@
1
- import { MouseEventHandler } from 'react';
2
1
  import { default as PropTypes } from 'prop-types';
2
+ import { MouseEventHandler } from 'react';
3
3
 
4
4
  /**
5
5
  *
@@ -1,10 +1,10 @@
1
- import { DsIconProps } from '.';
2
1
  import { Meta } from '@storybook/react';
2
+ import { DsIconProps } from '.';
3
3
 
4
4
  declare const ComponentProps: Meta;
5
5
  export default ComponentProps;
6
6
  export declare const Default: {
7
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsIconProps>;
7
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsIconProps>;
8
8
  args: {
9
9
  image: string;
10
10
  color: import('.').IconColor;
@@ -14,6 +14,6 @@ export declare const Default: {
14
14
  };
15
15
  };
16
16
  export declare const List: {
17
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsIconProps>;
17
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsIconProps>;
18
18
  args: {};
19
19
  };
@@ -1,10 +1,10 @@
1
- import { DsInputProps } from '.';
2
1
  import { Meta } from '@storybook/react';
2
+ import { DsInputProps } from '.';
3
3
 
4
4
  declare const ComponentProps: Meta;
5
5
  export default ComponentProps;
6
6
  export declare const Default: {
7
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsInputProps>;
7
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsInputProps>;
8
8
  args: {
9
9
  name: string;
10
10
  label: string;
@@ -1,10 +1,10 @@
1
- import { DsLoadingProps } from '.';
2
1
  import { Meta } from '@storybook/react';
2
+ import { DsLoadingProps } from '.';
3
3
 
4
4
  declare const ComponentProps: Meta;
5
5
  export default ComponentProps;
6
6
  export declare const Default: {
7
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsLoadingProps>;
7
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsLoadingProps>;
8
8
  args: {
9
9
  size: string;
10
10
  };
@@ -1,5 +1,5 @@
1
- import { default as React, ReactNode } from 'react';
2
1
  import { default as PropTypes } from 'prop-types';
2
+ import { default as React, ReactNode } from 'react';
3
3
 
4
4
  export interface DsOptionProps extends React.InputHTMLAttributes<HTMLInputElement> {
5
5
  id?: string;
@@ -1,10 +1,10 @@
1
- import { DsOptionProps } from '.';
2
1
  import { Meta } from '@storybook/react';
2
+ import { DsOptionProps } from '.';
3
3
 
4
4
  declare const ComponentProps: Meta;
5
5
  export default ComponentProps;
6
6
  export declare const Default: {
7
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsOptionProps>;
7
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsOptionProps>;
8
8
  args: {
9
9
  label: string;
10
10
  detail: string;
@@ -1,5 +1,5 @@
1
- import { default as React } from 'react';
2
1
  import { default as PropTypes } from 'prop-types';
2
+ import { default as React } from 'react';
3
3
 
4
4
  export interface DsParagraphProps {
5
5
  children?: React.ReactNode;
@@ -1,20 +1,20 @@
1
- import { DsParagraphProps } from '.';
2
1
  import { Meta } from '@storybook/react';
2
+ import { DsParagraphProps } from '.';
3
3
 
4
4
  declare const ComponentProps: Meta;
5
5
  export default ComponentProps;
6
6
  export declare const Default: {
7
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsParagraphProps>;
7
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsParagraphProps>;
8
8
  args: {};
9
9
  };
10
10
  export declare const Small: {
11
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsParagraphProps>;
11
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsParagraphProps>;
12
12
  args: {
13
13
  type: string;
14
14
  };
15
15
  };
16
16
  export declare const Large: {
17
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsParagraphProps>;
17
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsParagraphProps>;
18
18
  args: {
19
19
  type: string;
20
20
  };
@@ -1,10 +1,10 @@
1
- import { DsProgressProps } from '.';
2
1
  import { Meta } from '@storybook/react';
2
+ import { DsProgressProps } from '.';
3
3
 
4
4
  declare const ComponentProps: Meta;
5
5
  export default ComponentProps;
6
6
  export declare const Default: {
7
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsProgressProps>;
7
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsProgressProps>;
8
8
  args: {
9
9
  label: string;
10
10
  color: string;
@@ -1,5 +1,5 @@
1
- import { SelectOptions } from './Select.config';
2
1
  import { default as React } from 'react';
2
+ import { SelectOptions } from './Select.config';
3
3
 
4
4
  export interface DsSelectProps {
5
5
  label: string;
@@ -1,10 +1,10 @@
1
- import { DsSelectProps } from '.';
2
1
  import { Meta } from '@storybook/react';
2
+ import { DsSelectProps } from '.';
3
3
 
4
4
  declare const ComponentProps: Meta;
5
5
  export default ComponentProps;
6
6
  export declare const Default: {
7
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsSelectProps>;
7
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsSelectProps>;
8
8
  args: {
9
9
  label: string;
10
10
  disabled: boolean;
@@ -1,22 +1,22 @@
1
- import { DsSubtitleProps } from '.';
2
1
  import { Meta } from '@storybook/react';
2
+ import { DsSubtitleProps } from '.';
3
3
 
4
4
  declare const ComponentProps: Meta;
5
5
  export default ComponentProps;
6
6
  export declare const Default: {
7
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsSubtitleProps>;
7
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsSubtitleProps>;
8
8
  args: {
9
9
  type: string;
10
10
  };
11
11
  };
12
12
  export declare const Small: {
13
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsSubtitleProps>;
13
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsSubtitleProps>;
14
14
  args: {
15
15
  type: string;
16
16
  };
17
17
  };
18
18
  export declare const Large: {
19
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsSubtitleProps>;
19
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsSubtitleProps>;
20
20
  args: {
21
21
  type: string;
22
22
  };
@@ -1,11 +1,11 @@
1
- import { ThemeProviderProps } from '../../molecules/ThemeProvider';
2
- import { DsTextAreaProps } from '.';
3
1
  import { Meta } from '@storybook/react';
2
+ import { DsTextAreaProps } from '.';
3
+ import { ThemeProviderProps } from '../../molecules/ThemeProvider';
4
4
 
5
5
  declare const ComponentProps: Meta;
6
6
  export default ComponentProps;
7
7
  export declare const Default: {
8
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ThemeProviderProps & DsTextAreaProps>;
8
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ThemeProviderProps & DsTextAreaProps>;
9
9
  args: {
10
10
  name: string;
11
11
  label: string;
@@ -1,5 +1,5 @@
1
- import { ReactNode } from 'react';
2
1
  import { default as PropTypes } from 'prop-types';
2
+ import { ReactNode } from 'react';
3
3
 
4
4
  export interface DsTooltipProps {
5
5
  children?: ReactNode;
@@ -1,11 +1,11 @@
1
- import { DsTooltipProps } from '.';
2
- import { DsIconProps } from '../Icon';
3
1
  import { Meta } from '@storybook/react';
2
+ import { DsIconProps } from '../Icon';
3
+ import { DsTooltipProps } from '.';
4
4
 
5
5
  declare const ComponentProps: Meta;
6
6
  export default ComponentProps;
7
7
  export declare const Default: {
8
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsTooltipProps & DsIconProps>;
8
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsTooltipProps & DsIconProps>;
9
9
  args: {
10
10
  text: string;
11
11
  position: import('.').TooltipPosition;
@@ -13,7 +13,7 @@ export declare const Default: {
13
13
  };
14
14
  };
15
15
  export declare const Top: {
16
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsTooltipProps & DsIconProps>;
16
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsTooltipProps & DsIconProps>;
17
17
  args: {
18
18
  position: string;
19
19
  text: string;
@@ -21,7 +21,7 @@ export declare const Top: {
21
21
  };
22
22
  };
23
23
  export declare const Bottom: {
24
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsTooltipProps & DsIconProps>;
24
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsTooltipProps & DsIconProps>;
25
25
  args: {
26
26
  position: string;
27
27
  text: string;
@@ -29,7 +29,7 @@ export declare const Bottom: {
29
29
  };
30
30
  };
31
31
  export declare const Right: {
32
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsTooltipProps & DsIconProps>;
32
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsTooltipProps & DsIconProps>;
33
33
  args: {
34
34
  position: string;
35
35
  text: string;
@@ -37,7 +37,7 @@ export declare const Right: {
37
37
  };
38
38
  };
39
39
  export declare const Left: {
40
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsTooltipProps & DsIconProps>;
40
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsTooltipProps & DsIconProps>;
41
41
  args: {
42
42
  position: string;
43
43
  text: string;
@@ -1,5 +1,5 @@
1
- import { default as React } from 'react';
2
1
  import { default as PropTypes } from 'prop-types';
2
+ import { default as React } from 'react';
3
3
 
4
4
  export interface DsContainerProps {
5
5
  children?: React.ReactNode;
@@ -1,16 +1,16 @@
1
- import { DsContainerProps } from '.';
2
1
  import { Meta } from '@storybook/react';
2
+ import { DsContainerProps } from '.';
3
3
 
4
4
  declare const ComponentProps: Meta;
5
5
  export default ComponentProps;
6
6
  export declare const Default: {
7
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsContainerProps>;
7
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsContainerProps>;
8
8
  parameters: {
9
9
  theme: string;
10
10
  };
11
11
  };
12
12
  export declare const ContainerFluid: {
13
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsContainerProps>;
13
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsContainerProps>;
14
14
  parameters: {
15
15
  theme: string;
16
16
  };
@@ -1,19 +1,19 @@
1
- import { DsFlexLayoutProps } from '.';
2
1
  import { Meta } from '@storybook/react';
2
+ import { DsFlexLayoutProps } from '.';
3
3
 
4
4
  declare const componentProps: Meta;
5
5
  export default componentProps;
6
6
  export declare const Default: {
7
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsFlexLayoutProps>;
7
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsFlexLayoutProps>;
8
8
  };
9
9
  export declare const WithComponents: {
10
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsFlexLayoutProps>;
10
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsFlexLayoutProps>;
11
11
  parameters: {
12
12
  theme: string;
13
13
  };
14
14
  };
15
15
  export declare const WithFlexGrow: {
16
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsFlexLayoutProps>;
16
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsFlexLayoutProps>;
17
17
  parameters: {
18
18
  theme: string;
19
19
  };
@@ -1,11 +1,11 @@
1
- import { ThemeProviderProps } from '../../molecules/ThemeProvider';
2
- import { DsGridLayoutProps } from '.';
3
1
  import { Meta } from '@storybook/react';
2
+ import { DsGridLayoutProps } from '.';
3
+ import { ThemeProviderProps } from '../../molecules/ThemeProvider';
4
4
 
5
5
  declare const componentProps: Meta;
6
6
  export default componentProps;
7
7
  export declare const Default: {
8
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ThemeProviderProps & DsGridLayoutProps>;
8
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, ThemeProviderProps & DsGridLayoutProps>;
9
9
  parameters: {
10
10
  theme: string;
11
11
  };
@@ -1,10 +1,10 @@
1
- import { DsSpacerProps } from '.';
2
1
  import { Meta } from '@storybook/react';
2
+ import { DsSpacerProps } from '.';
3
3
 
4
4
  declare const componentProps: Meta;
5
5
  export default componentProps;
6
6
  export declare const Default: {
7
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsSpacerProps>;
7
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsSpacerProps>;
8
8
  args: {
9
9
  vertical: import('.').SpacerSize;
10
10
  horizontal: import('.').SpacerSize;
@@ -1,16 +1,16 @@
1
- import { DsWrapperProps } from '.';
2
1
  import { Meta } from '@storybook/react';
2
+ import { DsWrapperProps } from '.';
3
3
 
4
4
  declare const ComponentProps: Meta;
5
5
  export default ComponentProps;
6
6
  export declare const Default: {
7
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsWrapperProps>;
7
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsWrapperProps>;
8
8
  parameters: {
9
9
  theme: string;
10
10
  };
11
11
  };
12
12
  export declare const Custom: {
13
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsWrapperProps>;
13
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsWrapperProps>;
14
14
  parameters: {
15
15
  theme: string;
16
16
  };
@@ -1,5 +1,5 @@
1
- import { AccordionItemsProps } from './Accordion.config';
2
1
  import { default as PropTypes } from 'prop-types';
2
+ import { AccordionItemsProps } from './Accordion.config';
3
3
 
4
4
  interface Props {
5
5
  items: AccordionItemsProps[];
@@ -1,9 +1,9 @@
1
- import { DsAccordionItemProps } from './AccordionItem';
2
1
  import { Meta } from '@storybook/react';
2
+ import { DsAccordionItemProps } from './AccordionItem';
3
3
 
4
4
  declare const componentProps: Meta;
5
5
  export default componentProps;
6
6
  export declare const Default: {
7
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsAccordionItemProps>;
7
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsAccordionItemProps>;
8
8
  args: {};
9
9
  };
@@ -1,10 +1,10 @@
1
- import { DsActiveTagsProps } from './ActiveTags';
2
1
  import { Meta } from '@storybook/react';
2
+ import { DsActiveTagsProps } from './ActiveTags';
3
3
 
4
4
  declare const ComponentProps: Meta;
5
5
  export default ComponentProps;
6
6
  export declare const Default: {
7
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsActiveTagsProps>;
7
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsActiveTagsProps>;
8
8
  args: {
9
9
  title: string;
10
10
  activeTags: {
@@ -1,10 +1,10 @@
1
- import { DsEditableSelectProps } from '.';
2
1
  import { Meta } from '@storybook/react';
2
+ import { DsEditableSelectProps } from '.';
3
3
 
4
4
  declare const ComponentProps: Meta;
5
5
  export default ComponentProps;
6
6
  export declare const Default: {
7
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsEditableSelectProps>;
7
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsEditableSelectProps>;
8
8
  args: {
9
9
  label: string;
10
10
  name: string;
@@ -15,7 +15,7 @@ export declare const Default: {
15
15
  };
16
16
  };
17
17
  export declare const Disabled: {
18
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsEditableSelectProps>;
18
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsEditableSelectProps>;
19
19
  args: {
20
20
  name: string;
21
21
  disabled: boolean;
@@ -1,10 +1,10 @@
1
- import { DsIndicatorProps } from './Indicator';
2
1
  import { Meta } from '@storybook/react';
2
+ import { DsIndicatorProps } from './Indicator';
3
3
 
4
4
  declare const componentProps: Meta;
5
5
  export default componentProps;
6
6
  export declare const Default: {
7
- render: import('@storybook/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsIndicatorProps>;
7
+ render: import('storybook/internal/types').AnnotatedStoryFn<import('@storybook/react').ReactRenderer, DsIndicatorProps>;
8
8
  args: {
9
9
  length: number;
10
10
  current: number;
@@ -1,5 +1,5 @@
1
- import { default as React } from 'react';
2
1
  import { default as PropTypes } from 'prop-types';
2
+ import { default as React } from 'react';
3
3
 
4
4
  export interface DsInlineEditableProps {
5
5
  name: string;