@kystverket/styrbord 1.9.4 → 1.9.5
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 @@
|
|
|
1
|
+
export { EXPERIMENTAL_AvatarStack as AvatarStack, type AvatarStackProps } from '@digdir/designsystemet-react';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { Meta, StoryFn } from '@storybook/react-vite';
|
|
2
|
+
import { AvatarStack } from '~/main';
|
|
3
|
+
type Story = StoryFn<typeof AvatarStack>;
|
|
4
|
+
declare const meta: Meta<typeof AvatarStack>;
|
|
5
|
+
export default meta;
|
|
6
|
+
export declare const Preview: Story;
|
|
7
|
+
export declare const Sizes: Story;
|
|
8
|
+
export declare const Overlap: Story;
|
|
9
|
+
export declare const Gap: Story;
|
|
10
|
+
export declare const Expandable: Story;
|
|
11
|
+
export declare const WithSuffix: Story;
|
|
12
|
+
export declare const ShapeVariants: Story;
|
|
13
|
+
export declare const ExpandableWithTooltips: Story;
|
package/dist/src/main.d.ts
CHANGED
|
@@ -74,6 +74,8 @@ export type { LinkProps } from './components/designsystemet/Link/Link';
|
|
|
74
74
|
export { default as Table } from './components/designsystemet/Table/Table';
|
|
75
75
|
export { Avatar } from './components/designsystemet/Avatar/Avatar';
|
|
76
76
|
export type { AvatarProps } from './components/designsystemet/Avatar/Avatar';
|
|
77
|
+
export { AvatarStack } from './components/designsystemet/AvatarStack/AvatarStack';
|
|
78
|
+
export type { AvatarStackProps } from './components/designsystemet/AvatarStack/AvatarStack';
|
|
77
79
|
export { IdProvider, useIdProvider } from './utils/idContext';
|
|
78
80
|
export { SlotDialog, type SlotDialogProps } from './components/kystverket/SlotDialog/SlotDialog';
|
|
79
81
|
export { SideSheet, type SideSheetProps } from './components/kystverket/SideSheet/SideSheet';
|