@everlywell/ui-kit 0.3.1-next → 0.3.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.
@@ -87,7 +87,7 @@ declare const _default: {
87
87
  };
88
88
  } | undefined;
89
89
  defaultProps?: {
90
- size?: "sm" | "md" | "wide" | undefined;
90
+ size?: "wide" | "sm" | "md" | undefined;
91
91
  variant?: "primary" | "secondary" | undefined;
92
92
  colorScheme?: string | undefined;
93
93
  } | undefined;
@@ -287,7 +287,7 @@ export declare const theme: {
287
287
  };
288
288
  } | undefined;
289
289
  defaultProps?: {
290
- size?: "sm" | "md" | "wide" | undefined;
290
+ size?: "wide" | "sm" | "md" | undefined;
291
291
  variant?: "primary" | "secondary" | undefined;
292
292
  colorScheme?: string | undefined;
293
293
  } | undefined;
@@ -444,11 +444,11 @@ export declare const theme: {
444
444
  lineHeight: string;
445
445
  };
446
446
  md: {
447
- fontSize: ("sm" | "2xs")[];
447
+ fontSize: ("2xs" | "sm")[];
448
448
  lineHeight: string;
449
449
  };
450
450
  lg: {
451
- fontSize: ("md" | "xs")[];
451
+ fontSize: ("xs" | "md")[];
452
452
  lineHeight: string;
453
453
  };
454
454
  } | undefined;
@@ -472,7 +472,7 @@ export declare const theme: {
472
472
  fontSize: ("2xs" | "xs")[];
473
473
  };
474
474
  sm: {
475
- fontSize: ("sm" | "xs")[];
475
+ fontSize: ("xs" | "sm")[];
476
476
  };
477
477
  md: {
478
478
  fontSize: ("sm" | "md")[];
@@ -489,7 +489,7 @@ export declare const theme: {
489
489
  [key: string]: import("@chakra-ui/styled-system").SystemStyleInterpolation;
490
490
  } | undefined;
491
491
  defaultProps?: {
492
- size?: "sm" | "md" | "lg" | "xl" | "xs" | undefined;
492
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
493
493
  variant?: string | number | undefined;
494
494
  colorScheme?: string | undefined;
495
495
  } | undefined;
@@ -13,11 +13,11 @@ declare const _default: {
13
13
  lineHeight: string;
14
14
  };
15
15
  md: {
16
- fontSize: ("sm" | "2xs")[];
16
+ fontSize: ("2xs" | "sm")[];
17
17
  lineHeight: string;
18
18
  };
19
19
  lg: {
20
- fontSize: ("md" | "xs")[];
20
+ fontSize: ("xs" | "md")[];
21
21
  lineHeight: string;
22
22
  };
23
23
  } | undefined;
@@ -11,7 +11,7 @@ declare const _default: {
11
11
  fontSize: ("2xs" | "xs")[];
12
12
  };
13
13
  sm: {
14
- fontSize: ("sm" | "xs")[];
14
+ fontSize: ("xs" | "sm")[];
15
15
  };
16
16
  md: {
17
17
  fontSize: ("sm" | "md")[];
@@ -28,7 +28,7 @@ declare const _default: {
28
28
  [key: string]: import("@chakra-ui/styled-system").SystemStyleInterpolation;
29
29
  } | undefined;
30
30
  defaultProps?: {
31
- size?: "sm" | "md" | "lg" | "xl" | "xs" | undefined;
31
+ size?: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
32
32
  variant?: string | number | undefined;
33
33
  colorScheme?: string | undefined;
34
34
  } | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everlywell/ui-kit",
3
- "version": "0.3.1-next",
3
+ "version": "0.3.1",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "exports": {
@@ -1,78 +0,0 @@
1
- declare const _default: {
2
- baseStyle?: {
3
- button: {};
4
- list: {
5
- boxShadow: string;
6
- backgroundColor: string;
7
- };
8
- item: {
9
- fontWeight: string;
10
- lineHeight: string;
11
- color: string;
12
- _hover: {
13
- backgroundColor: string;
14
- };
15
- };
16
- groupTitle: {
17
- color: string;
18
- letterSpacing: string;
19
- };
20
- command: {};
21
- divider: {
22
- borderColor: string;
23
- borderBottom: string;
24
- };
25
- } | undefined;
26
- sizes?: {
27
- sm: {
28
- button: {
29
- borderRadius: string;
30
- };
31
- item: {
32
- fontSize: ("sm" | "md")[];
33
- paddingY: string;
34
- paddingX: string;
35
- };
36
- groupTitle: {
37
- fontSize: ("md" | "lg")[];
38
- paddingY: string;
39
- paddingX: string;
40
- };
41
- divider: {
42
- marginY: string;
43
- };
44
- };
45
- md: {
46
- item: {
47
- fontSize: ("lg" | "xl")[];
48
- paddingY: string;
49
- paddingX: string;
50
- };
51
- groupTitle: {
52
- fontSize: ("xl" | "2xl")[];
53
- paddingY: string;
54
- paddingX: string;
55
- };
56
- };
57
- lg: {
58
- item: {
59
- fontSize: ("2xl" | "3xl")[];
60
- paddingX: string;
61
- paddingY: string;
62
- };
63
- groupTitle: {
64
- fontSize: ("4xl" | "5xl")[];
65
- paddingX: string;
66
- paddingY: string;
67
- };
68
- };
69
- } | undefined;
70
- variants?: {} | undefined;
71
- defaultProps?: {
72
- size?: "sm" | "md" | "lg" | undefined;
73
- variant?: undefined;
74
- colorScheme?: string | undefined;
75
- } | undefined;
76
- parts: ("button" | "list" | "item" | "groupTitle" | "command" | "divider")[];
77
- };
78
- export default _default;