@everlywell/ui-kit 0.8.3 → 0.9.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/index.d.mts +1 -0
- package/index.d.ts +1 -0
- package/index.js +7 -7
- package/index.mjs +211 -182
- package/lib/theme/data-display/Accordion/Accordion.config.d.ts +40 -0
- package/lib/theme/data-display/Accordion/Accordion.d.ts +3 -0
- package/lib/theme/index.d.ts +39 -0
- package/package.json +1 -1
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
baseStyle?: {
|
|
3
|
+
container: {
|
|
4
|
+
borderBottom: string;
|
|
5
|
+
borderColor: string;
|
|
6
|
+
width: string;
|
|
7
|
+
paddingBottom: string;
|
|
8
|
+
marginBottom: string;
|
|
9
|
+
};
|
|
10
|
+
panel: {
|
|
11
|
+
paddingBottom: number;
|
|
12
|
+
paddingTop: string;
|
|
13
|
+
};
|
|
14
|
+
button: {
|
|
15
|
+
width: string;
|
|
16
|
+
display: string;
|
|
17
|
+
justifyContent: string;
|
|
18
|
+
};
|
|
19
|
+
icon: {
|
|
20
|
+
color: string;
|
|
21
|
+
};
|
|
22
|
+
} | undefined;
|
|
23
|
+
sizes?: {
|
|
24
|
+
[key: string]: import("@chakra-ui/styled-system").PartsStyleInterpolation<{
|
|
25
|
+
keys: ("button" | "container" | "icon" | "root" | "panel")[];
|
|
26
|
+
}>;
|
|
27
|
+
} | undefined;
|
|
28
|
+
variants?: {
|
|
29
|
+
[key: string]: import("@chakra-ui/styled-system").PartsStyleInterpolation<{
|
|
30
|
+
keys: ("button" | "container" | "icon" | "root" | "panel")[];
|
|
31
|
+
}>;
|
|
32
|
+
} | undefined;
|
|
33
|
+
defaultProps?: {
|
|
34
|
+
size?: string | number | undefined;
|
|
35
|
+
variant?: string | number | undefined;
|
|
36
|
+
colorScheme?: string | undefined;
|
|
37
|
+
} | undefined;
|
|
38
|
+
parts: ("button" | "container" | "icon" | "root" | "panel")[];
|
|
39
|
+
};
|
|
40
|
+
export default _default;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { Accordion } from '@chakra-ui/react';
|
|
2
|
+
export { type AccordionProps, AccordionItem, type AccordionItemProps, AccordionButton, type AccordionButtonProps, AccordionPanel, type AccordionPanelProps, AccordionIcon, type AccordionIconProps, } from '@chakra-ui/react';
|
|
3
|
+
export default Accordion;
|
package/lib/theme/index.d.ts
CHANGED
|
@@ -1227,6 +1227,45 @@ export declare const theme: {
|
|
|
1227
1227
|
} | undefined;
|
|
1228
1228
|
parts: ("label" | "container" | "closeButton")[];
|
|
1229
1229
|
};
|
|
1230
|
+
Accordion: {
|
|
1231
|
+
baseStyle?: {
|
|
1232
|
+
container: {
|
|
1233
|
+
borderBottom: string;
|
|
1234
|
+
borderColor: string;
|
|
1235
|
+
width: string;
|
|
1236
|
+
paddingBottom: string;
|
|
1237
|
+
marginBottom: string;
|
|
1238
|
+
};
|
|
1239
|
+
panel: {
|
|
1240
|
+
paddingBottom: number;
|
|
1241
|
+
paddingTop: string;
|
|
1242
|
+
};
|
|
1243
|
+
button: {
|
|
1244
|
+
width: string;
|
|
1245
|
+
display: string;
|
|
1246
|
+
justifyContent: string;
|
|
1247
|
+
};
|
|
1248
|
+
icon: {
|
|
1249
|
+
color: string;
|
|
1250
|
+
};
|
|
1251
|
+
} | undefined;
|
|
1252
|
+
sizes?: {
|
|
1253
|
+
[key: string]: import("@chakra-ui/styled-system").PartsStyleInterpolation<{
|
|
1254
|
+
keys: ("button" | "container" | "icon" | "root" | "panel")[];
|
|
1255
|
+
}>;
|
|
1256
|
+
} | undefined;
|
|
1257
|
+
variants?: {
|
|
1258
|
+
[key: string]: import("@chakra-ui/styled-system").PartsStyleInterpolation<{
|
|
1259
|
+
keys: ("button" | "container" | "icon" | "root" | "panel")[];
|
|
1260
|
+
}>;
|
|
1261
|
+
} | undefined;
|
|
1262
|
+
defaultProps?: {
|
|
1263
|
+
size?: string | number | undefined;
|
|
1264
|
+
variant?: string | number | undefined;
|
|
1265
|
+
colorScheme?: string | undefined;
|
|
1266
|
+
} | undefined;
|
|
1267
|
+
parts: ("button" | "container" | "icon" | "root" | "panel")[];
|
|
1268
|
+
};
|
|
1230
1269
|
};
|
|
1231
1270
|
styles: import("@chakra-ui/theme-tools/dist/component").Styles;
|
|
1232
1271
|
config: import("@chakra-ui/theme/dist/theme.types").ThemeConfig;
|