@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.
@@ -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[];
@@ -0,0 +1,2 @@
1
+ import Accordion from './Accordion/Accordion.config';
2
+ export { Accordion };
@@ -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,2 @@
1
+ export { default } from './Drawer';
2
+ export * from './Drawer';
@@ -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 {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everlywell/ui-kit",
3
- "version": "1.10.5",
3
+ "version": "1.11.1",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "exports": {