@everlywell/ui-kit 1.2.0 → 1.3.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 +2 -2
- package/index.mjs +211 -200
- package/lib/theme/index.d.ts +30 -0
- package/lib/theme/overlay/Tooltip/Tooltip.config.d.ts +16 -0
- package/lib/theme/overlay/Tooltip/Tooltip.d.ts +3 -0
- package/package.json +2 -2
package/lib/theme/index.d.ts
CHANGED
|
@@ -1726,6 +1726,21 @@ export declare const theme: {
|
|
|
1726
1726
|
colorScheme?: string | undefined;
|
|
1727
1727
|
} | undefined;
|
|
1728
1728
|
};
|
|
1729
|
+
Tooltip: {
|
|
1730
|
+
baseStyle?: {
|
|
1731
|
+
padding: number;
|
|
1732
|
+
borderRadius: string;
|
|
1733
|
+
} | undefined;
|
|
1734
|
+
sizes?: {} | undefined;
|
|
1735
|
+
variants?: {
|
|
1736
|
+
[key: string]: import("@chakra-ui/styled-system").SystemStyleInterpolation;
|
|
1737
|
+
} | undefined;
|
|
1738
|
+
defaultProps?: {
|
|
1739
|
+
size?: undefined;
|
|
1740
|
+
variant?: string | number | undefined;
|
|
1741
|
+
colorScheme?: string | undefined;
|
|
1742
|
+
} | undefined;
|
|
1743
|
+
};
|
|
1729
1744
|
};
|
|
1730
1745
|
styles: import("@chakra-ui/theme-tools").Styles;
|
|
1731
1746
|
config: import("@chakra-ui/react").ThemeConfig;
|
|
@@ -3510,6 +3525,21 @@ export declare const useTheme: () => import("@chakra-ui/styled-system").WithCSSV
|
|
|
3510
3525
|
colorScheme?: string | undefined;
|
|
3511
3526
|
} | undefined;
|
|
3512
3527
|
};
|
|
3528
|
+
Tooltip: {
|
|
3529
|
+
baseStyle?: {
|
|
3530
|
+
padding: number;
|
|
3531
|
+
borderRadius: string;
|
|
3532
|
+
} | undefined;
|
|
3533
|
+
sizes?: {} | undefined;
|
|
3534
|
+
variants?: {
|
|
3535
|
+
[key: string]: import("@chakra-ui/styled-system").SystemStyleInterpolation;
|
|
3536
|
+
} | undefined;
|
|
3537
|
+
defaultProps?: {
|
|
3538
|
+
size?: undefined;
|
|
3539
|
+
variant?: string | number | undefined;
|
|
3540
|
+
colorScheme?: string | undefined;
|
|
3541
|
+
} | undefined;
|
|
3542
|
+
};
|
|
3513
3543
|
};
|
|
3514
3544
|
styles: import("@chakra-ui/theme-tools").Styles;
|
|
3515
3545
|
config: import("@chakra-ui/react").ThemeConfig;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
baseStyle?: {
|
|
3
|
+
padding: number;
|
|
4
|
+
borderRadius: string;
|
|
5
|
+
} | undefined;
|
|
6
|
+
sizes?: {} | undefined;
|
|
7
|
+
variants?: {
|
|
8
|
+
[key: string]: import("@chakra-ui/styled-system").SystemStyleInterpolation;
|
|
9
|
+
} | undefined;
|
|
10
|
+
defaultProps?: {
|
|
11
|
+
size?: undefined;
|
|
12
|
+
variant?: string | number | undefined;
|
|
13
|
+
colorScheme?: string | undefined;
|
|
14
|
+
} | undefined;
|
|
15
|
+
};
|
|
16
|
+
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everlywell/ui-kit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"main": "./index.js",
|
|
5
5
|
"types": "./index.d.ts",
|
|
6
6
|
"exports": {
|
|
@@ -18,6 +18,6 @@
|
|
|
18
18
|
"@chakra-ui/react": "^2.8.1",
|
|
19
19
|
"@emotion/react": "11.11.3",
|
|
20
20
|
"@emotion/styled": "11.11.0",
|
|
21
|
-
"framer-motion": "^
|
|
21
|
+
"framer-motion": "^11.0.0"
|
|
22
22
|
}
|
|
23
23
|
}
|