@kystverket/styrbord 0.307.1 → 0.307.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.
@@ -1,4 +1,5 @@
1
1
  import type { StoryObj } from '@storybook/react';
2
+ import { CardBlock } from '@digdir/designsystemet-react';
2
3
  declare const meta: {
3
4
  title: string;
4
5
  component: React.ForwardRefExoticComponent<Omit<import("@digdir/designsystemet-react/dist/types/types").DefaultProps & React.HTMLAttributes<HTMLDivElement>, "children" | "asChild" | "variant"> & {
@@ -6,7 +7,7 @@ declare const meta: {
6
7
  asChild?: boolean;
7
8
  children: React.ReactNode;
8
9
  } & React.RefAttributes<HTMLDivElement>> & {
9
- Block: typeof import("@digdir/designsystemet-react").CardBlock;
10
+ Block: typeof CardBlock;
10
11
  };
11
12
  decorators: ((Story: import("@storybook/types").PartialStoryFn) => React.JSX.Element)[];
12
13
  tags: string[];
@@ -22,7 +23,8 @@ declare const meta: {
22
23
  export default meta;
23
24
  type Story = StoryObj<typeof meta>;
24
25
  export declare const Default: Story;
25
- export declare const Tinted: Story;
26
+ export declare const ColorVariants: Story['render'];
27
+ export declare const Colors: Story;
26
28
  export declare const CardWithTitleAndIcon: Story;
27
29
  export declare const CardWithTitle: Story;
28
30
  export declare const CardWithLinkInTitle: Story;