@everlywell/ui-kit 1.11.4 → 1.11.6
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.d.mts +42 -0
- package/index.d.ts +42 -0
- package/index.js +111 -0
- package/index.mjs +4203 -0
- package/lib/components/Fonts/Fonts.d.ts +2 -0
- package/lib/components/Fonts/index.d.ts +1 -0
- package/lib/components/ThemeProvider/ThemeProvider.d.ts +5 -0
- package/lib/components/ThemeProvider/index.d.ts +1 -0
- package/lib/theme/accessibility/VisuallyHidden/VisuallyHidden.d.ts +2 -0
- package/lib/theme/actions/Button/Button.config.d.ts +106 -0
- package/lib/theme/actions/Button/Button.d.ts +3 -0
- package/lib/theme/actions/Checkbox/Checkbox.config.d.ts +74 -0
- package/lib/theme/actions/Checkbox/Checkbox.d.ts +6 -0
- package/lib/theme/actions/FormControl/FormControl.config.d.ts +91 -0
- package/lib/theme/actions/FormControl/FormControl.d.ts +4 -0
- package/lib/theme/actions/FormControl/FormError.config.d.ts +31 -0
- package/lib/theme/actions/FormControl/FormLabel.config.d.ts +24 -0
- package/lib/theme/actions/IconButton/IconButton.config.d.ts +0 -0
- package/lib/theme/actions/IconButton/IconButton.d.ts +3 -0
- package/lib/theme/actions/Input/Input.config.d.ts +49 -0
- package/lib/theme/actions/Input/Input.d.ts +4 -0
- package/lib/theme/actions/Menu/Menu.config.d.ts +98 -0
- package/lib/theme/actions/Menu/Menu.d.ts +3 -0
- package/lib/theme/actions/Radio/Radio.d.ts +10 -0
- package/lib/theme/actions/Select/Select.config.d.ts +61 -0
- package/lib/theme/actions/Select/Select.d.ts +3 -0
- package/lib/theme/actions/Slider/Slider.config.d.ts +19 -0
- package/lib/theme/actions/Slider/Slider.d.ts +3 -0
- package/lib/theme/data-display/Accordion/Accordion.config.d.ts +57 -0
- package/lib/theme/data-display/Accordion/Accordion.d.ts +3 -0
- package/lib/theme/data-display/List/List.d.ts +4 -0
- package/lib/theme/data-display/Table/Table.config.d.ts +57 -0
- package/lib/theme/data-display/Table/Table.d.ts +3 -0
- package/lib/theme/data-display/Tabs/Tabs.config.d.ts +68 -0
- package/lib/theme/data-display/Tabs/Tabs.d.ts +3 -0
- package/lib/theme/data-display/Tag/Tag.config.d.ts +491 -0
- package/lib/theme/data-display/Tag/Tag.d.ts +3 -0
- package/lib/theme/data-display/index.d.ts +2 -0
- package/lib/theme/feedback/Progress/Progress.config.d.ts +51 -0
- package/lib/theme/feedback/Progress/Progress.d.ts +11 -0
- package/lib/theme/feedback/Progress/Progress.utils.d.ts +8 -0
- package/lib/theme/feedback/Skeleton/Skeleton.config.d.ts +15 -0
- package/lib/theme/feedback/Skeleton/Skeleton.d.ts +4 -0
- package/lib/theme/feedback/Spinner/Spinner.config.d.ts +27 -0
- package/lib/theme/feedback/Spinner/Spinner.d.ts +3 -0
- package/lib/theme/foundations/colors.d.ts +213 -0
- package/lib/theme/hooks/UseMediaQuery/UseMediaQuery.d.ts +3 -0
- package/lib/theme/hooks/UseRadioGroup/UseRadioGroup.d.ts +3 -0
- package/lib/theme/index.d.ts +3946 -0
- package/lib/theme/layout/Box/Box.d.ts +3 -0
- package/lib/theme/layout/Container/Container.config.d.ts +33 -0
- package/lib/theme/layout/Container/Container.d.ts +3 -0
- package/lib/theme/layout/Flex/Flex.d.ts +1 -0
- package/lib/theme/layout/Grid/Grid.d.ts +49 -0
- package/lib/theme/layout/Grid/GridItem.d.ts +5 -0
- package/lib/theme/layout/Grid/index.d.ts +2 -0
- package/lib/theme/layout/Show-Hide/Show-Hide.config.d.ts +11 -0
- package/lib/theme/layout/Show-Hide/Show-Hide.d.ts +5 -0
- package/lib/theme/layout/Stack/Stack.d.ts +1 -0
- package/lib/theme/media/Icon/Icon.config.d.ts +21 -0
- package/lib/theme/media/Icon/Icon.d.ts +3 -0
- package/lib/theme/media/Image/Image.d.ts +3 -0
- package/lib/theme/navigation/Breadcrumb/Breadcrumb.d.ts +4 -0
- package/lib/theme/navigation/Link/Link.config.d.ts +31 -0
- package/lib/theme/navigation/Link/Link.d.ts +3 -0
- package/lib/theme/navigation/Stepper/Stepper.config.d.ts +26 -0
- package/lib/theme/navigation/Stepper/Stepper.d.ts +4 -0
- package/lib/theme/overlay/Drawer/Drawer.config.d.ts +72 -0
- package/lib/theme/overlay/Drawer/Drawer.d.ts +3 -0
- package/lib/theme/overlay/Drawer/index.d.ts +2 -0
- package/lib/theme/overlay/Modal/Modal.config.d.ts +106 -0
- package/lib/theme/overlay/Modal/Modal.d.ts +3 -0
- package/lib/theme/overlay/Tooltip/Tooltip.config.d.ts +17 -0
- package/lib/theme/overlay/Tooltip/Tooltip.d.ts +3 -0
- package/lib/theme/typography/Heading/Heading.config.d.ts +48 -0
- package/lib/theme/typography/Heading/Heading.d.ts +3 -0
- package/lib/theme/typography/Text/Text.config.d.ts +37 -0
- package/lib/theme/typography/Text/Text.d.ts +3 -0
- package/lib/utils/utils.storybook.d.ts +24 -0
- package/package.json +1 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { Tag, TagProps, TagLabel, TagLabelProps, TagCloseButton, TagCloseButtonProps, TagLeftIcon, TagRightIcon } from '@chakra-ui/react';
|
|
2
|
+
export { type TagProps, TagLabel, type TagLabelProps, TagCloseButton, type TagCloseButtonProps, TagLeftIcon, TagRightIcon, };
|
|
3
|
+
export default Tag;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
baseStyle?: {
|
|
3
|
+
label: {
|
|
4
|
+
lineHeight: string;
|
|
5
|
+
fontSize: string;
|
|
6
|
+
fontWeight: string;
|
|
7
|
+
color: string;
|
|
8
|
+
};
|
|
9
|
+
track: {
|
|
10
|
+
background: string;
|
|
11
|
+
};
|
|
12
|
+
filledTrack: {
|
|
13
|
+
transition: string;
|
|
14
|
+
background: string;
|
|
15
|
+
};
|
|
16
|
+
} | undefined;
|
|
17
|
+
sizes?: {
|
|
18
|
+
xs: {
|
|
19
|
+
track: {
|
|
20
|
+
height: string;
|
|
21
|
+
borderRadius: string;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
sm: {
|
|
25
|
+
track: {
|
|
26
|
+
height: string;
|
|
27
|
+
borderRadius: string;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
md: {
|
|
31
|
+
track: {
|
|
32
|
+
height: string;
|
|
33
|
+
borderRadius: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
lg: {
|
|
37
|
+
track: {
|
|
38
|
+
height: string;
|
|
39
|
+
borderRadius: string;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
} | undefined;
|
|
43
|
+
variants?: {} | undefined;
|
|
44
|
+
defaultProps?: {
|
|
45
|
+
size?: "sm" | "md" | "lg" | "xs" | undefined;
|
|
46
|
+
variant?: undefined;
|
|
47
|
+
colorScheme?: string | undefined;
|
|
48
|
+
} | undefined;
|
|
49
|
+
parts: ("label" | "track" | "filledTrack")[];
|
|
50
|
+
};
|
|
51
|
+
export default _default;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { type ProgressProps as ChakraProgressProps } from '@chakra-ui/react';
|
|
2
|
+
type OmitedProps = 'colorScheme';
|
|
3
|
+
export type ProgressProps = Omit<ChakraProgressProps, OmitedProps> & {
|
|
4
|
+
background?: string;
|
|
5
|
+
filledBackground?: string;
|
|
6
|
+
};
|
|
7
|
+
declare const _default: import("react").ForwardRefExoticComponent<Omit<ChakraProgressProps, "colorScheme"> & {
|
|
8
|
+
background?: string;
|
|
9
|
+
filledBackground?: string;
|
|
10
|
+
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
11
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
baseStyle?: {
|
|
3
|
+
[x: string]: string;
|
|
4
|
+
borderRadius: string;
|
|
5
|
+
p: string;
|
|
6
|
+
} | undefined;
|
|
7
|
+
sizes?: {} | undefined;
|
|
8
|
+
variants?: {} | undefined;
|
|
9
|
+
defaultProps?: {
|
|
10
|
+
size?: undefined;
|
|
11
|
+
variant?: undefined;
|
|
12
|
+
colorScheme?: string | undefined;
|
|
13
|
+
} | undefined;
|
|
14
|
+
};
|
|
15
|
+
export default _default;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Skeleton, SkeletonProps, SkeletonCircle, SkeletonText, SkeletonTextProps, SkeletonOptions } from '@chakra-ui/react';
|
|
2
|
+
export { type SkeletonProps, SkeletonText, type SkeletonTextProps, SkeletonCircle, // chakra has no SkeletonCircleProps
|
|
3
|
+
type SkeletonOptions, };
|
|
4
|
+
export default Skeleton;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
baseStyle?: {} | undefined;
|
|
3
|
+
sizes?: {
|
|
4
|
+
sm: {
|
|
5
|
+
width: string;
|
|
6
|
+
height: string;
|
|
7
|
+
borderWidth: string;
|
|
8
|
+
};
|
|
9
|
+
md: {
|
|
10
|
+
width: string;
|
|
11
|
+
height: string;
|
|
12
|
+
borderWidth: string;
|
|
13
|
+
};
|
|
14
|
+
lg: {
|
|
15
|
+
width: string;
|
|
16
|
+
height: string;
|
|
17
|
+
borderWidth: string;
|
|
18
|
+
};
|
|
19
|
+
} | undefined;
|
|
20
|
+
variants?: {} | undefined;
|
|
21
|
+
defaultProps?: {
|
|
22
|
+
size?: "sm" | "md" | "lg" | undefined;
|
|
23
|
+
variant?: undefined;
|
|
24
|
+
colorScheme?: string | undefined;
|
|
25
|
+
} | undefined;
|
|
26
|
+
};
|
|
27
|
+
export default _default;
|
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
export declare const palette: {
|
|
2
|
+
tints: {
|
|
3
|
+
black: string;
|
|
4
|
+
darkGrey: string;
|
|
5
|
+
uiGrey: string;
|
|
6
|
+
medGrey: string;
|
|
7
|
+
lightGrey: string;
|
|
8
|
+
darkCream: string;
|
|
9
|
+
cream: string;
|
|
10
|
+
lightCream: string;
|
|
11
|
+
white: string;
|
|
12
|
+
};
|
|
13
|
+
viridian: {
|
|
14
|
+
dark: string;
|
|
15
|
+
base: string;
|
|
16
|
+
light: string;
|
|
17
|
+
lighter: string;
|
|
18
|
+
wash: string;
|
|
19
|
+
};
|
|
20
|
+
sunshine: {
|
|
21
|
+
dark: string;
|
|
22
|
+
base: string;
|
|
23
|
+
light: string;
|
|
24
|
+
lighter: string;
|
|
25
|
+
wash: string;
|
|
26
|
+
};
|
|
27
|
+
terracotta: {
|
|
28
|
+
dark: string;
|
|
29
|
+
base: string;
|
|
30
|
+
light: string;
|
|
31
|
+
lighter: string;
|
|
32
|
+
wash: string;
|
|
33
|
+
};
|
|
34
|
+
violet: {
|
|
35
|
+
dark: string;
|
|
36
|
+
base: string;
|
|
37
|
+
light: string;
|
|
38
|
+
lighter: string;
|
|
39
|
+
wash: string;
|
|
40
|
+
};
|
|
41
|
+
eggplant: {
|
|
42
|
+
dark: string;
|
|
43
|
+
base: string;
|
|
44
|
+
light: string;
|
|
45
|
+
lighter: string;
|
|
46
|
+
wash: string;
|
|
47
|
+
};
|
|
48
|
+
moonlight: {
|
|
49
|
+
dark: string;
|
|
50
|
+
base: string;
|
|
51
|
+
light: string;
|
|
52
|
+
lighter: string;
|
|
53
|
+
wash: string;
|
|
54
|
+
};
|
|
55
|
+
sky: {
|
|
56
|
+
dark: string;
|
|
57
|
+
base: string;
|
|
58
|
+
light: string;
|
|
59
|
+
lighter: string;
|
|
60
|
+
wash: string;
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
export declare const colorSchemes: {
|
|
64
|
+
redCS: {
|
|
65
|
+
50: string;
|
|
66
|
+
100: string;
|
|
67
|
+
200: string;
|
|
68
|
+
300: string;
|
|
69
|
+
400: string;
|
|
70
|
+
500: string;
|
|
71
|
+
600: string;
|
|
72
|
+
700: string;
|
|
73
|
+
800: string;
|
|
74
|
+
900: string;
|
|
75
|
+
};
|
|
76
|
+
greenCS: {
|
|
77
|
+
50: string;
|
|
78
|
+
100: string;
|
|
79
|
+
200: string;
|
|
80
|
+
300: string;
|
|
81
|
+
400: string;
|
|
82
|
+
500: string;
|
|
83
|
+
600: string;
|
|
84
|
+
700: string;
|
|
85
|
+
800: string;
|
|
86
|
+
900: string;
|
|
87
|
+
};
|
|
88
|
+
whiteCS: {
|
|
89
|
+
base: string;
|
|
90
|
+
50: string;
|
|
91
|
+
100: string;
|
|
92
|
+
200: string;
|
|
93
|
+
300: string;
|
|
94
|
+
400: string;
|
|
95
|
+
500: string;
|
|
96
|
+
600: string;
|
|
97
|
+
700: string;
|
|
98
|
+
800: string;
|
|
99
|
+
900: string;
|
|
100
|
+
};
|
|
101
|
+
};
|
|
102
|
+
export declare const utilityColors: {
|
|
103
|
+
warning: string;
|
|
104
|
+
sale: string;
|
|
105
|
+
success: string;
|
|
106
|
+
rating: string;
|
|
107
|
+
};
|
|
108
|
+
declare const colors: {
|
|
109
|
+
utility: {
|
|
110
|
+
warning: string;
|
|
111
|
+
sale: string;
|
|
112
|
+
success: string;
|
|
113
|
+
rating: string;
|
|
114
|
+
};
|
|
115
|
+
redCS: {
|
|
116
|
+
50: string;
|
|
117
|
+
100: string;
|
|
118
|
+
200: string;
|
|
119
|
+
300: string;
|
|
120
|
+
400: string;
|
|
121
|
+
500: string;
|
|
122
|
+
600: string;
|
|
123
|
+
700: string;
|
|
124
|
+
800: string;
|
|
125
|
+
900: string;
|
|
126
|
+
};
|
|
127
|
+
greenCS: {
|
|
128
|
+
50: string;
|
|
129
|
+
100: string;
|
|
130
|
+
200: string;
|
|
131
|
+
300: string;
|
|
132
|
+
400: string;
|
|
133
|
+
500: string;
|
|
134
|
+
600: string;
|
|
135
|
+
700: string;
|
|
136
|
+
800: string;
|
|
137
|
+
900: string;
|
|
138
|
+
};
|
|
139
|
+
whiteCS: {
|
|
140
|
+
base: string;
|
|
141
|
+
50: string;
|
|
142
|
+
100: string;
|
|
143
|
+
200: string;
|
|
144
|
+
300: string;
|
|
145
|
+
400: string;
|
|
146
|
+
500: string;
|
|
147
|
+
600: string;
|
|
148
|
+
700: string;
|
|
149
|
+
800: string;
|
|
150
|
+
900: string;
|
|
151
|
+
};
|
|
152
|
+
tints: {
|
|
153
|
+
black: string;
|
|
154
|
+
darkGrey: string;
|
|
155
|
+
uiGrey: string;
|
|
156
|
+
medGrey: string;
|
|
157
|
+
lightGrey: string;
|
|
158
|
+
darkCream: string;
|
|
159
|
+
cream: string;
|
|
160
|
+
lightCream: string;
|
|
161
|
+
white: string;
|
|
162
|
+
};
|
|
163
|
+
viridian: {
|
|
164
|
+
dark: string;
|
|
165
|
+
base: string;
|
|
166
|
+
light: string;
|
|
167
|
+
lighter: string;
|
|
168
|
+
wash: string;
|
|
169
|
+
};
|
|
170
|
+
sunshine: {
|
|
171
|
+
dark: string;
|
|
172
|
+
base: string;
|
|
173
|
+
light: string;
|
|
174
|
+
lighter: string;
|
|
175
|
+
wash: string;
|
|
176
|
+
};
|
|
177
|
+
terracotta: {
|
|
178
|
+
dark: string;
|
|
179
|
+
base: string;
|
|
180
|
+
light: string;
|
|
181
|
+
lighter: string;
|
|
182
|
+
wash: string;
|
|
183
|
+
};
|
|
184
|
+
violet: {
|
|
185
|
+
dark: string;
|
|
186
|
+
base: string;
|
|
187
|
+
light: string;
|
|
188
|
+
lighter: string;
|
|
189
|
+
wash: string;
|
|
190
|
+
};
|
|
191
|
+
eggplant: {
|
|
192
|
+
dark: string;
|
|
193
|
+
base: string;
|
|
194
|
+
light: string;
|
|
195
|
+
lighter: string;
|
|
196
|
+
wash: string;
|
|
197
|
+
};
|
|
198
|
+
moonlight: {
|
|
199
|
+
dark: string;
|
|
200
|
+
base: string;
|
|
201
|
+
light: string;
|
|
202
|
+
lighter: string;
|
|
203
|
+
wash: string;
|
|
204
|
+
};
|
|
205
|
+
sky: {
|
|
206
|
+
dark: string;
|
|
207
|
+
base: string;
|
|
208
|
+
light: string;
|
|
209
|
+
lighter: string;
|
|
210
|
+
wash: string;
|
|
211
|
+
};
|
|
212
|
+
};
|
|
213
|
+
export default colors;
|