@kystverket/styrbord 1.6.6 → 1.6.8

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.
@@ -10,13 +10,6 @@ declare const meta: {
10
10
  };
11
11
  decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
12
12
  tags: string[];
13
- parameters: {
14
- docs: {
15
- source: {
16
- type: string;
17
- };
18
- };
19
- };
20
13
  args: {
21
14
  animation: "slide";
22
15
  files: import("./FilePreviewer.types").FileInfo[];
@@ -16,7 +16,8 @@ export interface StepperProps {
16
16
  'data-size'?: 'sm' | 'md' | 'lg';
17
17
  labels?: 'always' | 'current' | 'never';
18
18
  orientation?: 'horizontal' | 'vertical';
19
+ itemOrientation?: 'horizontal' | 'vertical';
19
20
  forceOrientation?: boolean;
20
21
  }
21
- declare const Stepper: ({ steps, step, labels, orientation, forceOrientation, "data-size": dataSize, }: StepperProps) => React.JSX.Element;
22
+ declare const Stepper: ({ steps, step, labels, orientation, forceOrientation, itemOrientation, "data-size": dataSize, }: StepperProps) => React.JSX.Element;
22
23
  export default Stepper;
@@ -2,7 +2,7 @@ import type { StoryObj } from '@storybook/react-vite';
2
2
  import { StepperProps } from './stepper';
3
3
  declare const meta: {
4
4
  title: string;
5
- component: ({ steps, step, labels, orientation, forceOrientation, "data-size": dataSize, }: StepperProps) => React.JSX.Element;
5
+ component: ({ steps, step, labels, orientation, forceOrientation, itemOrientation, "data-size": dataSize, }: StepperProps) => React.JSX.Element;
6
6
  decorators: ((Story: import("storybook/internal/csf").PartialStoryFn, context: import("storybook/internal/csf").StoryContext) => React.JSX.Element)[];
7
7
  tags: string[];
8
8
  argTypes: {};