@kystverket/styrbord 1.6.0 → 1.6.2

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 (46) hide show
  1. package/dist/src/components/deprecated/Card/Card.stories.d.ts +1 -1
  2. package/dist/src/components/deprecated/Details/Details.stories.d.ts +1 -1
  3. package/dist/src/components/deprecated/ErrorLabel/errorLabel.stories.d.ts +1 -1
  4. package/dist/src/components/deprecated/InputLabel/inputLabel.stories.d.ts +1 -1
  5. package/dist/src/components/designsystemet/Button/Button.stories.d.ts +1 -1
  6. package/dist/src/components/designsystemet/Details/Details.stories.d.ts +1 -1
  7. package/dist/src/components/designsystemet/Link/Link.stories.d.ts +1 -1
  8. package/dist/src/components/designsystemet/NumberInput/NumberInput.stories.d.ts +1 -1
  9. package/dist/src/components/designsystemet/Select/Select.stories.d.ts +1 -1
  10. package/dist/src/components/designsystemet/TextArea/TextArea.stories.d.ts +1 -1
  11. package/dist/src/components/designsystemet/TextInput/TextInput.stories.d.ts +1 -1
  12. package/dist/src/components/kystverket/Alert/alert.stories.d.ts +1 -1
  13. package/dist/src/components/kystverket/BorderedRadioGroup/borderedRadioGroup.stories.d.ts +1 -1
  14. package/dist/src/components/kystverket/BorderedToggleGroup/borderedToggleGroup.stories.d.ts +1 -1
  15. package/dist/src/components/kystverket/Box/box.stories.d.ts +1 -1
  16. package/dist/src/components/kystverket/DateTimePicker/DateTimePicker.stories.d.ts +1 -1
  17. package/dist/src/components/kystverket/Datepicker/Datepicker.stories.d.ts +1 -1
  18. package/dist/src/components/kystverket/FilePreviewer/FilePreviewer.stories.d.ts +1 -1
  19. package/dist/src/components/kystverket/FileUploader/FileUploader.stories.d.ts +1 -1
  20. package/dist/src/components/kystverket/Footer/Footer.stories.d.ts +1 -1
  21. package/dist/src/components/kystverket/Header/Header.stories.d.ts +1 -1
  22. package/dist/src/components/kystverket/Icon/Icon.stories.d.ts +1 -1
  23. package/dist/src/components/kystverket/Image/svgImage.stories.d.ts +1 -1
  24. package/dist/src/components/kystverket/KyvDivider/kyvDivider.stories.d.ts +1 -1
  25. package/dist/src/components/kystverket/LabelContent/labelContent.stories.d.ts +1 -1
  26. package/dist/src/components/kystverket/Logo/Logo.stories.d.ts +1 -1
  27. package/dist/src/components/kystverket/MarkdownToReact/markdownToReact.stories.d.ts +1 -1
  28. package/dist/src/components/kystverket/PageHeading/PageHeading.stories.d.ts +1 -1
  29. package/dist/src/components/kystverket/RichTextArea/components/LinkEditor/linkEditor.stories.d.ts +1 -1
  30. package/dist/src/components/kystverket/RichTextArea/components/Toolbar/toolbar.stories.d.ts +1 -1
  31. package/dist/src/components/kystverket/RichTextArea/richTextArea.stories.d.ts +1 -1
  32. package/dist/src/components/kystverket/Skillingsbuoye/skillingsbuoye.stories.d.ts +1 -1
  33. package/dist/src/components/kystverket/SprakProvider/SprakProviderAlt.stories.d.ts +1 -1
  34. package/dist/src/components/kystverket/SprakProvider/SprakProviderLink.stories.d.ts +1 -1
  35. package/dist/src/components/kystverket/Stepper/stepper.stories.d.ts +1 -1
  36. package/dist/src/components/kystverket/Summary/summary.stories.d.ts +1 -1
  37. package/dist/src/components/kystverket/Typography/typography.accent.stories.d.ts +1 -1
  38. package/dist/src/components/kystverket/Typography/typography.body.stories.d.ts +1 -1
  39. package/dist/src/components/kystverket/Typography/typography.heading.stories.d.ts +1 -1
  40. package/dist/src/components/kystverket/Typography/typography.label.stories.d.ts +1 -1
  41. package/dist/src/components/kystverket/Typography/typography.paragraph.stories.d.ts +1 -1
  42. package/dist/storybook/styrbordDecorator.d.ts +2 -2
  43. package/dist/style.css +1 -1
  44. package/dist/style.js +459 -451
  45. package/dist/style.umd.cjs +4 -4
  46. package/package.json +1 -1
@@ -7,7 +7,7 @@ declare const meta: {
7
7
  asChild?: boolean;
8
8
  } & React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
9
9
  };
10
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
10
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
11
11
  tags: string[];
12
12
  argTypes: {
13
13
  variant: {
@@ -3,7 +3,7 @@ import { DetailsProps } from './Details';
3
3
  declare const meta: {
4
4
  title: string;
5
5
  component: ({ summary, children, ...props }: DetailsProps) => React.JSX.Element;
6
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
6
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
7
7
  tags: string[];
8
8
  argTypes: {};
9
9
  };
@@ -3,7 +3,7 @@ import { ErrorLabelProps } from './errorLabel';
3
3
  declare const meta: {
4
4
  title: string;
5
5
  component: ({ ...props }: ErrorLabelProps) => React.JSX.Element;
6
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
6
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
7
7
  tags: string[];
8
8
  argTypes: {};
9
9
  };
@@ -3,7 +3,7 @@ import { InputLabelProps } from './inputLabel';
3
3
  declare const meta: {
4
4
  title: string;
5
5
  component: ({ text, subText, loading, optional, required, embedded, children, }: InputLabelProps) => React.JSX.Element | null;
6
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
6
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
7
7
  tags: string[];
8
8
  argTypes: {};
9
9
  };
@@ -3,7 +3,7 @@ import { ButtonProps } from './Button';
3
3
  declare const meta: {
4
4
  title: string;
5
5
  component: React.FC<ButtonProps>;
6
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
6
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
7
7
  tags: string[];
8
8
  argTypes: {};
9
9
  parameters: {
@@ -6,7 +6,7 @@ declare const meta: {
6
6
  Summary: typeof import("@digdir/designsystemet-react").DetailsSummary;
7
7
  Content: typeof import("@digdir/designsystemet-react").DetailsContent;
8
8
  };
9
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
9
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
10
10
  tags: string[];
11
11
  argTypes: {};
12
12
  parameters: {
@@ -4,7 +4,7 @@ import { Link } from '~/main';
4
4
  declare const meta: {
5
5
  title: string;
6
6
  component: React.FC<import("~/main").LinkProps>;
7
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
7
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
8
8
  tags: string[];
9
9
  argTypes: {};
10
10
  parameters: {
@@ -5,7 +5,7 @@ declare const meta: {
5
5
  component: (props: NumberInputProps & {
6
6
  externallyChanging?: boolean;
7
7
  }) => React.JSX.Element;
8
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
8
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
9
9
  tags: string[];
10
10
  argTypes: {};
11
11
  };
@@ -3,7 +3,7 @@ import { SelectProps } from './Select';
3
3
  declare const meta: {
4
4
  title: string;
5
5
  component: ({ ...props }: SelectProps) => React.JSX.Element;
6
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
6
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
7
7
  tags: string[];
8
8
  argTypes: {};
9
9
  parameters: {
@@ -3,7 +3,7 @@ import { TextAreaProps } from './TextArea';
3
3
  declare const meta: {
4
4
  title: string;
5
5
  component: ({ size, className, label, required, optional, onChange, value, minHeight, ...props }: TextAreaProps) => React.JSX.Element;
6
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
6
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
7
7
  tags: string[];
8
8
  argTypes: {};
9
9
  parameters: {
@@ -3,7 +3,7 @@ import { TextInputProps } from './TextInput';
3
3
  declare const meta: {
4
4
  title: string;
5
5
  component: ({ size, type, className, label, loading, required, optional, onChange, value, ...props }: TextInputProps) => React.JSX.Element;
6
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
6
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
7
7
  tags: string[];
8
8
  argTypes: {};
9
9
  parameters: {
@@ -3,7 +3,7 @@ import { AlertProps } from './alert';
3
3
  declare const meta: {
4
4
  title: string;
5
5
  component: ({ level, title, "data-size": dataSize, text, width, className, ...props }: AlertProps) => React.JSX.Element;
6
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
6
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
7
7
  tags: string[];
8
8
  argTypes: {};
9
9
  parameters: {
@@ -3,7 +3,7 @@ import { BorderedRadioGroupProps } from './borderedRadioGroup';
3
3
  declare const meta: {
4
4
  title: string;
5
5
  component: (props: BorderedRadioGroupProps) => React.JSX.Element;
6
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
6
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
7
7
  tags: string[];
8
8
  argTypes: {};
9
9
  };
@@ -3,7 +3,7 @@ import { BorderedToggleGroupProps } from './borderedToggleGroup';
3
3
  declare const meta: {
4
4
  title: string;
5
5
  component: ({ values: propValues, ...props }: BorderedToggleGroupProps) => React.JSX.Element;
6
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
6
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
7
7
  tags: string[];
8
8
  argTypes: {};
9
9
  };
@@ -3,7 +3,7 @@ import { BoxProps } from './box';
3
3
  declare const meta: {
4
4
  title: string;
5
5
  component: ({ className, radius, width, gap, wrap, align, grow, shrink, basis, show, hide, container, children, ...props }: BoxProps) => React.JSX.Element;
6
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
6
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
7
7
  tags: string[];
8
8
  argTypes: {};
9
9
  };
@@ -3,7 +3,7 @@ import { DateTimePickerProps } from './DateTimePicker';
3
3
  declare const meta: {
4
4
  title: string;
5
5
  component: (props: DateTimePickerProps) => React.JSX.Element;
6
- decorators: (((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element) | ((Story: import("storybook/internal/csf").PartialStoryFn<import("@storybook/react").ReactRenderer, {
6
+ decorators: (((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element) | ((Story: import("storybook/internal/csf").PartialStoryFn<import("@storybook/react").ReactRenderer, {
7
7
  optional?: boolean | string | undefined | undefined;
8
8
  required?: boolean | string | undefined | undefined;
9
9
  label: string;
@@ -3,7 +3,7 @@ import { DatepickerProps } from './Datepicker';
3
3
  declare const meta: {
4
4
  title: string;
5
5
  component: (props: DatepickerProps) => React.JSX.Element;
6
- decorators: (((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element) | ((Story: import("storybook/internal/csf").PartialStoryFn<import("@storybook/react").ReactRenderer, {
6
+ decorators: (((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element) | ((Story: import("storybook/internal/csf").PartialStoryFn<import("@storybook/react").ReactRenderer, {
7
7
  optional?: boolean | string | undefined | undefined;
8
8
  required?: boolean | string | undefined | undefined;
9
9
  label: string;
@@ -8,7 +8,7 @@ declare const meta: {
8
8
  };
9
9
  displayName?: string;
10
10
  };
11
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
11
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
12
12
  tags: string[];
13
13
  parameters: {
14
14
  docs: {
@@ -3,7 +3,7 @@ import { FileUploaderProps } from './FileUploader';
3
3
  declare const meta: {
4
4
  title: string;
5
5
  component: (props: FileUploaderProps) => React.JSX.Element;
6
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
6
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
7
7
  tags: string[];
8
8
  argTypes: {};
9
9
  };
@@ -3,7 +3,7 @@ import { Footer } from '~/components/kystverket/Footer/Footer';
3
3
  declare const meta: {
4
4
  title: string;
5
5
  component: typeof Footer;
6
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
6
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
7
7
  tags: string[];
8
8
  argTypes: {};
9
9
  };
@@ -3,7 +3,7 @@ import { Header } from './Header';
3
3
  declare const meta: {
4
4
  title: string;
5
5
  component: typeof Header;
6
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
6
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
7
7
  tags: string[];
8
8
  argTypes: {
9
9
  logo: {
@@ -2,7 +2,7 @@ import type { StoryFn } from '@storybook/react-vite';
2
2
  declare const meta: {
3
3
  title: string;
4
4
  component: ({ material, filled, className, size, title }: import("~/components/kystverket/Icon/icon").MaterialIconProps) => React.JSX.Element;
5
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
5
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
6
6
  tags: string[];
7
7
  argTypes: {};
8
8
  };
@@ -3,7 +3,7 @@ import { SvgImageProps } from './svgImage';
3
3
  declare const meta: {
4
4
  title: string;
5
5
  component: (props: SvgImageProps) => React.JSX.Element;
6
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
6
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
7
7
  tags: string[];
8
8
  argTypes: {};
9
9
  };
@@ -2,7 +2,7 @@ import { StoryObj } from '@storybook/react-vite';
2
2
  declare const meta: {
3
3
  title: string;
4
4
  component: () => React.JSX.Element;
5
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
5
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
6
6
  tags: string[];
7
7
  argTypes: {};
8
8
  };
@@ -3,7 +3,7 @@ import { LabelContentProps } from './labelContent';
3
3
  declare const meta: {
4
4
  title: string;
5
5
  component: ({ text, loading, optional, required }: LabelContentProps) => React.JSX.Element | null;
6
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
6
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
7
7
  tags: string[];
8
8
  argTypes: {};
9
9
  };
@@ -3,7 +3,7 @@ import { Logo } from '~/components/kystverket/Logo/Logo';
3
3
  declare const meta: {
4
4
  title: string;
5
5
  component: typeof Logo;
6
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
6
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
7
7
  tags: string[];
8
8
  argTypes: {};
9
9
  };
@@ -2,7 +2,7 @@ import type { StoryObj } from '@storybook/react-vite';
2
2
  declare const meta: {
3
3
  title: string;
4
4
  component: ({ markdown }: import("./markdownToReact").MarkdownToReactProps) => React.JSX.Element;
5
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
5
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
6
6
  tags: string[];
7
7
  argTypes: {
8
8
  markdown: {
@@ -3,7 +3,7 @@ import { PageHeading } from './PageHeading';
3
3
  declare const meta: {
4
4
  title: string;
5
5
  component: typeof PageHeading;
6
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
6
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
7
7
  tags: string[];
8
8
  argTypes: {
9
9
  children: {
@@ -10,7 +10,7 @@ declare const meta: {
10
10
  onClose: () => void;
11
11
  onRemove: () => void;
12
12
  }) => React.JSX.Element;
13
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
13
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
14
14
  tags: string[];
15
15
  argTypes: {
16
16
  onSave: {
@@ -20,7 +20,7 @@ declare const meta: {
20
20
  onFormatChange: (format: BlockType) => void;
21
21
  onLink: () => void;
22
22
  }) => React.JSX.Element;
23
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
23
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
24
24
  tags: string[];
25
25
  argTypes: {
26
26
  onBold: {
@@ -3,7 +3,7 @@ import { RichTextAreaProps } from './richTextArea';
3
3
  declare const meta: {
4
4
  title: string;
5
5
  component: ({ className, ...props }: RichTextAreaProps) => React.JSX.Element;
6
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
6
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
7
7
  tags: string[];
8
8
  };
9
9
  export default meta;
@@ -2,7 +2,7 @@ import type { StoryObj } from '@storybook/react-vite';
2
2
  declare const meta: {
3
3
  title: string;
4
4
  component: () => React.JSX.Element;
5
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
5
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
6
6
  tags: string[];
7
7
  parameters: {
8
8
  docs: {
@@ -4,7 +4,7 @@ import { PartialStoryFn } from 'storybook/internal/types';
4
4
  declare const meta: {
5
5
  title: string;
6
6
  component: (props: FileUploaderProps) => React.JSX.Element;
7
- decorators: ((Story: PartialStoryFn) => React.JSX.Element)[];
7
+ decorators: ((Story: PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
8
8
  tags: string[];
9
9
  argTypes: {};
10
10
  };
@@ -4,7 +4,7 @@ import { PartialStoryFn } from 'storybook/internal/types';
4
4
  declare const meta: {
5
5
  title: string;
6
6
  component: (props: FileUploaderProps) => React.JSX.Element;
7
- decorators: ((Story: PartialStoryFn) => React.JSX.Element)[];
7
+ decorators: ((Story: PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
8
8
  tags: string[];
9
9
  argTypes: {};
10
10
  };
@@ -3,7 +3,7 @@ import { StepperProps } from './stepper';
3
3
  declare const meta: {
4
4
  title: string;
5
5
  component: ({ steps, step, labels, orientation, forceOrientation, "data-size": dataSize, }: StepperProps) => React.JSX.Element;
6
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
6
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
7
7
  tags: string[];
8
8
  argTypes: {};
9
9
  };
@@ -4,7 +4,7 @@ declare const meta: {
4
4
  component: ({ rows }: {
5
5
  rows: import("./summary.types").SummaryRowProps[];
6
6
  }) => React.JSX.Element;
7
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
7
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
8
8
  tags: string[];
9
9
  argTypes: {};
10
10
  };
@@ -2,7 +2,7 @@ import type { StoryObj } from '@storybook/react-vite';
2
2
  declare const meta: {
3
3
  title: string;
4
4
  component: ({ strong, size, className, children }: import("./typography").AccentTypographyProps) => React.JSX.Element;
5
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
5
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
6
6
  tags: string[];
7
7
  argTypes: {};
8
8
  };
@@ -2,7 +2,7 @@ import type { StoryObj } from '@storybook/react-vite';
2
2
  declare const meta: {
3
3
  title: string;
4
4
  component: ({ inline, strong, size, className, children }: import("./typography").BodyTypographyProps) => React.JSX.Element;
5
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
5
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
6
6
  tags: string[];
7
7
  argTypes: {};
8
8
  };
@@ -6,7 +6,7 @@ declare const meta: {
6
6
  'data-size'?: "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl";
7
7
  asChild?: boolean;
8
8
  } & React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLHeadingElement>>;
9
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
9
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
10
10
  tags: string[];
11
11
  argTypes: {};
12
12
  };
@@ -2,7 +2,7 @@ import type { StoryObj } from '@storybook/react-vite';
2
2
  declare const meta: {
3
3
  title: string;
4
4
  component: ({ strong, size, className, children, inline }: import("./typography").LabelTypographyProps) => React.JSX.Element;
5
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
5
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
6
6
  tags: string[];
7
7
  argTypes: {};
8
8
  };
@@ -6,7 +6,7 @@ declare const meta: {
6
6
  variant?: "long" | "default" | "short";
7
7
  asChild?: boolean;
8
8
  } & React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
9
- decorators: ((Story: import("storybook/internal/csf").PartialStoryFn) => React.JSX.Element)[];
9
+ decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
10
10
  tags: string[];
11
11
  argTypes: {};
12
12
  };
@@ -1,4 +1,4 @@
1
- import { PartialStoryFn } from 'storybook/internal/types';
1
+ import { PartialStoryFn, StoryContext } from 'storybook/internal/types';
2
2
  import './storybook-style.scss';
3
- declare const StyrbordDecorator: (Story: PartialStoryFn) => React.JSX.Element;
3
+ declare const StyrbordDecorator: (Story: PartialStoryFn, context: StoryContext) => React.JSX.Element;
4
4
  export default StyrbordDecorator;