@everlywell/ui-kit 1.10.5 → 1.11.1
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/index.js +1 -1
- package/index.mjs +502 -494
- package/lib/theme/actions/FormControl/FormControl.config.d.ts +1 -1
- package/lib/theme/actions/IconButton/IconButton.config.d.ts +0 -0
- package/lib/theme/data-display/index.d.ts +2 -0
- package/lib/theme/index.d.ts +2 -2
- 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
|
@@ -31,7 +31,7 @@ declare const _default: {
|
|
|
31
31
|
};
|
|
32
32
|
};
|
|
33
33
|
};
|
|
34
|
-
'input:not(:placeholder-shown) + label, .chakra-input__group:has(input:not(:placeholder-shown)) + label, .chakra-select__wrapper:not(:has(option[value=""]:checked)) + label, textarea:not(:placeholder-shown) ~ label': {
|
|
34
|
+
'input:not(:placeholder-shown) + label, .chakra-input__group:has(input:not(:placeholder-shown)) + label, .chakra-select__wrapper:not(:has(option[value=""]:checked)) + label, textarea:not(:placeholder-shown) ~ label,input.has-value + label, textarea.has-value ~ label, select.has-value + label': {
|
|
35
35
|
transform: string[];
|
|
36
36
|
fontSize: string;
|
|
37
37
|
top: string[];
|
|
File without changes
|
package/lib/theme/index.d.ts
CHANGED
|
@@ -600,7 +600,7 @@ export declare const theme: {
|
|
|
600
600
|
};
|
|
601
601
|
};
|
|
602
602
|
};
|
|
603
|
-
'input:not(:placeholder-shown) + label, .chakra-input__group:has(input:not(:placeholder-shown)) + label, .chakra-select__wrapper:not(:has(option[value=""]:checked)) + label, textarea:not(:placeholder-shown) ~ label': {
|
|
603
|
+
'input:not(:placeholder-shown) + label, .chakra-input__group:has(input:not(:placeholder-shown)) + label, .chakra-select__wrapper:not(:has(option[value=""]:checked)) + label, textarea:not(:placeholder-shown) ~ label,input.has-value + label, textarea.has-value ~ label, select.has-value + label': {
|
|
604
604
|
transform: string[];
|
|
605
605
|
fontSize: string;
|
|
606
606
|
top: string[];
|
|
@@ -2574,7 +2574,7 @@ export declare const useTheme: () => import("@chakra-ui/styled-system").WithCSSV
|
|
|
2574
2574
|
};
|
|
2575
2575
|
};
|
|
2576
2576
|
};
|
|
2577
|
-
'input:not(:placeholder-shown) + label, .chakra-input__group:has(input:not(:placeholder-shown)) + label, .chakra-select__wrapper:not(:has(option[value=""]:checked)) + label, textarea:not(:placeholder-shown) ~ label': {
|
|
2577
|
+
'input:not(:placeholder-shown) + label, .chakra-input__group:has(input:not(:placeholder-shown)) + label, .chakra-select__wrapper:not(:has(option[value=""]:checked)) + label, textarea:not(:placeholder-shown) ~ label,input.has-value + label, textarea.has-value ~ label, select.has-value + label': {
|
|
2578
2578
|
transform: string[];
|
|
2579
2579
|
fontSize: string;
|
|
2580
2580
|
top: string[];
|
|
@@ -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 {};
|