@everlywell/ui-kit 1.44.0 → 1.45.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 +8 -8
- package/index.mjs +522 -466
- package/lib/theme/data-display/Popover/Popover.config.d.ts +62 -0
- package/lib/theme/data-display/Popover/Popover.d.ts +3 -0
- package/lib/theme/index.d.ts +122 -0
- package/package.json +1 -1
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
baseStyle?: {
|
|
3
|
+
content: {
|
|
4
|
+
backgroundColor: string;
|
|
5
|
+
borderColor: string;
|
|
6
|
+
borderRadius: string;
|
|
7
|
+
borderWidth: string;
|
|
8
|
+
boxShadow: string;
|
|
9
|
+
color: string;
|
|
10
|
+
padding: number;
|
|
11
|
+
zIndex: string;
|
|
12
|
+
};
|
|
13
|
+
header: {
|
|
14
|
+
paddingX: number;
|
|
15
|
+
paddingY: number;
|
|
16
|
+
fontSize: string;
|
|
17
|
+
fontWeight: string;
|
|
18
|
+
borderBottomWidth: string;
|
|
19
|
+
borderColor: string;
|
|
20
|
+
};
|
|
21
|
+
body: {
|
|
22
|
+
paddingX: number;
|
|
23
|
+
paddingY: number;
|
|
24
|
+
};
|
|
25
|
+
footer: {
|
|
26
|
+
paddingX: number;
|
|
27
|
+
paddingY: number;
|
|
28
|
+
borderTopWidth: string;
|
|
29
|
+
borderColor: string;
|
|
30
|
+
};
|
|
31
|
+
arrow: {
|
|
32
|
+
bg: string;
|
|
33
|
+
backgroundColor: string;
|
|
34
|
+
shadowColor: string;
|
|
35
|
+
'--popper-arrow-bg': string;
|
|
36
|
+
'--popper-arrow-shadow-color': string;
|
|
37
|
+
};
|
|
38
|
+
closeButton: {
|
|
39
|
+
position: string;
|
|
40
|
+
top: number;
|
|
41
|
+
insetEnd: number;
|
|
42
|
+
borderRadius: string;
|
|
43
|
+
};
|
|
44
|
+
} | undefined;
|
|
45
|
+
sizes?: {
|
|
46
|
+
[key: string]: import("@chakra-ui/styled-system").PartsStyleInterpolation<{
|
|
47
|
+
keys: ("content" | "body" | "header" | "closeButton" | "footer" | "popper" | "arrow")[];
|
|
48
|
+
}>;
|
|
49
|
+
} | undefined;
|
|
50
|
+
variants?: {
|
|
51
|
+
[key: string]: import("@chakra-ui/styled-system").PartsStyleInterpolation<{
|
|
52
|
+
keys: ("content" | "body" | "header" | "closeButton" | "footer" | "popper" | "arrow")[];
|
|
53
|
+
}>;
|
|
54
|
+
} | undefined;
|
|
55
|
+
defaultProps?: {
|
|
56
|
+
size?: string | number | undefined;
|
|
57
|
+
variant?: string | number | undefined;
|
|
58
|
+
colorScheme?: string | undefined;
|
|
59
|
+
} | undefined;
|
|
60
|
+
parts: ("content" | "body" | "header" | "closeButton" | "footer" | "popper" | "arrow")[];
|
|
61
|
+
};
|
|
62
|
+
export default _default;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { Popover } from '@chakra-ui/react';
|
|
2
|
+
export { Popover, type PopoverProps, PopoverTrigger, PopoverContent, type PopoverContentProps, PopoverHeader, type PopoverHeaderProps, PopoverBody, type PopoverBodyProps, PopoverFooter, type PopoverFooterProps, PopoverArrow, type PopoverArrowProps, PopoverCloseButton, type PopoverCloseButtonProps, PopoverAnchor, } from '@chakra-ui/react';
|
|
3
|
+
export default Popover;
|
package/lib/theme/index.d.ts
CHANGED
|
@@ -1806,6 +1806,67 @@ export declare const theme: {
|
|
|
1806
1806
|
} | undefined;
|
|
1807
1807
|
parts: ("container" | "label" | "closeButton")[];
|
|
1808
1808
|
};
|
|
1809
|
+
Popover: {
|
|
1810
|
+
baseStyle?: {
|
|
1811
|
+
content: {
|
|
1812
|
+
backgroundColor: string;
|
|
1813
|
+
borderColor: string;
|
|
1814
|
+
borderRadius: string;
|
|
1815
|
+
borderWidth: string;
|
|
1816
|
+
boxShadow: string;
|
|
1817
|
+
color: string;
|
|
1818
|
+
padding: number;
|
|
1819
|
+
zIndex: string;
|
|
1820
|
+
};
|
|
1821
|
+
header: {
|
|
1822
|
+
paddingX: number;
|
|
1823
|
+
paddingY: number;
|
|
1824
|
+
fontSize: string;
|
|
1825
|
+
fontWeight: string;
|
|
1826
|
+
borderBottomWidth: string;
|
|
1827
|
+
borderColor: string;
|
|
1828
|
+
};
|
|
1829
|
+
body: {
|
|
1830
|
+
paddingX: number;
|
|
1831
|
+
paddingY: number;
|
|
1832
|
+
};
|
|
1833
|
+
footer: {
|
|
1834
|
+
paddingX: number;
|
|
1835
|
+
paddingY: number;
|
|
1836
|
+
borderTopWidth: string;
|
|
1837
|
+
borderColor: string;
|
|
1838
|
+
};
|
|
1839
|
+
arrow: {
|
|
1840
|
+
bg: string;
|
|
1841
|
+
backgroundColor: string;
|
|
1842
|
+
shadowColor: string;
|
|
1843
|
+
'--popper-arrow-bg': string;
|
|
1844
|
+
'--popper-arrow-shadow-color': string;
|
|
1845
|
+
};
|
|
1846
|
+
closeButton: {
|
|
1847
|
+
position: string;
|
|
1848
|
+
top: number;
|
|
1849
|
+
insetEnd: number;
|
|
1850
|
+
borderRadius: string;
|
|
1851
|
+
};
|
|
1852
|
+
} | undefined;
|
|
1853
|
+
sizes?: {
|
|
1854
|
+
[key: string]: import("@chakra-ui/styled-system").PartsStyleInterpolation<{
|
|
1855
|
+
keys: ("content" | "body" | "header" | "closeButton" | "footer" | "popper" | "arrow")[];
|
|
1856
|
+
}>;
|
|
1857
|
+
} | undefined;
|
|
1858
|
+
variants?: {
|
|
1859
|
+
[key: string]: import("@chakra-ui/styled-system").PartsStyleInterpolation<{
|
|
1860
|
+
keys: ("content" | "body" | "header" | "closeButton" | "footer" | "popper" | "arrow")[];
|
|
1861
|
+
}>;
|
|
1862
|
+
} | undefined;
|
|
1863
|
+
defaultProps?: {
|
|
1864
|
+
size?: string | number | undefined;
|
|
1865
|
+
variant?: string | number | undefined;
|
|
1866
|
+
colorScheme?: string | undefined;
|
|
1867
|
+
} | undefined;
|
|
1868
|
+
parts: ("content" | "body" | "header" | "closeButton" | "footer" | "popper" | "arrow")[];
|
|
1869
|
+
};
|
|
1809
1870
|
Text: {
|
|
1810
1871
|
baseStyle?: {
|
|
1811
1872
|
fontFamily: string;
|
|
@@ -3836,6 +3897,67 @@ export declare const useTheme: () => import("@chakra-ui/styled-system").WithCSSV
|
|
|
3836
3897
|
} | undefined;
|
|
3837
3898
|
parts: ("container" | "label" | "closeButton")[];
|
|
3838
3899
|
};
|
|
3900
|
+
Popover: {
|
|
3901
|
+
baseStyle?: {
|
|
3902
|
+
content: {
|
|
3903
|
+
backgroundColor: string;
|
|
3904
|
+
borderColor: string;
|
|
3905
|
+
borderRadius: string;
|
|
3906
|
+
borderWidth: string;
|
|
3907
|
+
boxShadow: string;
|
|
3908
|
+
color: string;
|
|
3909
|
+
padding: number;
|
|
3910
|
+
zIndex: string;
|
|
3911
|
+
};
|
|
3912
|
+
header: {
|
|
3913
|
+
paddingX: number;
|
|
3914
|
+
paddingY: number;
|
|
3915
|
+
fontSize: string;
|
|
3916
|
+
fontWeight: string;
|
|
3917
|
+
borderBottomWidth: string;
|
|
3918
|
+
borderColor: string;
|
|
3919
|
+
};
|
|
3920
|
+
body: {
|
|
3921
|
+
paddingX: number;
|
|
3922
|
+
paddingY: number;
|
|
3923
|
+
};
|
|
3924
|
+
footer: {
|
|
3925
|
+
paddingX: number;
|
|
3926
|
+
paddingY: number;
|
|
3927
|
+
borderTopWidth: string;
|
|
3928
|
+
borderColor: string;
|
|
3929
|
+
};
|
|
3930
|
+
arrow: {
|
|
3931
|
+
bg: string;
|
|
3932
|
+
backgroundColor: string;
|
|
3933
|
+
shadowColor: string;
|
|
3934
|
+
'--popper-arrow-bg': string;
|
|
3935
|
+
'--popper-arrow-shadow-color': string;
|
|
3936
|
+
};
|
|
3937
|
+
closeButton: {
|
|
3938
|
+
position: string;
|
|
3939
|
+
top: number;
|
|
3940
|
+
insetEnd: number;
|
|
3941
|
+
borderRadius: string;
|
|
3942
|
+
};
|
|
3943
|
+
} | undefined;
|
|
3944
|
+
sizes?: {
|
|
3945
|
+
[key: string]: import("@chakra-ui/styled-system").PartsStyleInterpolation<{
|
|
3946
|
+
keys: ("content" | "body" | "header" | "closeButton" | "footer" | "popper" | "arrow")[];
|
|
3947
|
+
}>;
|
|
3948
|
+
} | undefined;
|
|
3949
|
+
variants?: {
|
|
3950
|
+
[key: string]: import("@chakra-ui/styled-system").PartsStyleInterpolation<{
|
|
3951
|
+
keys: ("content" | "body" | "header" | "closeButton" | "footer" | "popper" | "arrow")[];
|
|
3952
|
+
}>;
|
|
3953
|
+
} | undefined;
|
|
3954
|
+
defaultProps?: {
|
|
3955
|
+
size?: string | number | undefined;
|
|
3956
|
+
variant?: string | number | undefined;
|
|
3957
|
+
colorScheme?: string | undefined;
|
|
3958
|
+
} | undefined;
|
|
3959
|
+
parts: ("content" | "body" | "header" | "closeButton" | "footer" | "popper" | "arrow")[];
|
|
3960
|
+
};
|
|
3839
3961
|
Text: {
|
|
3840
3962
|
baseStyle?: {
|
|
3841
3963
|
fontFamily: string;
|