@everlywell/ui-kit 1.10.5 → 1.11.0
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.
- package/lib/theme/actions/IconButton/IconButton.config.d.ts +0 -0
- package/lib/theme/data-display/index.d.ts +2 -0
- package/lib/theme/layout/Show-Hide/Show-Hide.config.d.ts +11 -0
- package/lib/theme/overlay/Drawer/index.d.ts +2 -0
- package/lib/utils/utils.storybook.d.ts +24 -0
- package/package.json +1 -1
|
File without changes
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
baseStyle?: {} | undefined;
|
|
3
|
+
sizes?: {} | undefined;
|
|
4
|
+
variants?: {} | undefined;
|
|
5
|
+
defaultProps?: {
|
|
6
|
+
size?: undefined;
|
|
7
|
+
variant?: undefined;
|
|
8
|
+
colorScheme?: string | undefined;
|
|
9
|
+
} | undefined;
|
|
10
|
+
};
|
|
11
|
+
export default _default;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { StoryFn } from '@storybook/react';
|
|
2
|
+
type Options<T> = {
|
|
3
|
+
/**
|
|
4
|
+
* The default props for the story.
|
|
5
|
+
*/
|
|
6
|
+
defaultProps: T;
|
|
7
|
+
/**
|
|
8
|
+
* The description of the story.
|
|
9
|
+
*/
|
|
10
|
+
description?: string;
|
|
11
|
+
/**
|
|
12
|
+
* Custom name of the story.
|
|
13
|
+
*/
|
|
14
|
+
customStoryName?: string;
|
|
15
|
+
/**
|
|
16
|
+
* The layout of the story.
|
|
17
|
+
*
|
|
18
|
+
* @default 'centered'
|
|
19
|
+
*/
|
|
20
|
+
layout?: 'fullscreen' | 'padded' | 'centered';
|
|
21
|
+
};
|
|
22
|
+
export declare function createPrimary<T>(story: StoryFn<T>, options: Options<T>): StoryFn<T>;
|
|
23
|
+
export declare function flattenObject(obj: Record<string, unknown>, prefix?: string): Record<string, unknown>;
|
|
24
|
+
export {};
|