@helpwave/hightide 0.6.3 → 0.6.4
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/dist/index.d.mts +1 -5
- package/dist/index.d.ts +1 -5
- package/dist/index.js +570 -575
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +553 -558
- package/dist/index.mjs.map +1 -1
- package/dist/style/globals.css +20 -60
- package/dist/style/uncompiled/theme/components/tooltip.css +13 -4
- package/dist/style/uncompiled/utitlity/animation.css +0 -61
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1398,10 +1398,6 @@ type TooltipConfig = {
|
|
|
1398
1398
|
* Number of milliseconds until the tooltip appears
|
|
1399
1399
|
*/
|
|
1400
1400
|
appearDelay: number;
|
|
1401
|
-
/**
|
|
1402
|
-
* Number of milliseconds until the tooltip disappears
|
|
1403
|
-
*/
|
|
1404
|
-
disappearDelay: number;
|
|
1405
1401
|
};
|
|
1406
1402
|
type ThemeConfig = {
|
|
1407
1403
|
/**
|
|
@@ -1456,7 +1452,7 @@ type TooltipProps = PropsWithChildren & Partial<TooltipConfig> & {
|
|
|
1456
1452
|
* @param position The direction of the tooltip relative to the Container
|
|
1457
1453
|
* @constructor
|
|
1458
1454
|
*/
|
|
1459
|
-
declare const Tooltip: ({ tooltip, children, appearDelay:
|
|
1455
|
+
declare const Tooltip: ({ tooltip, children, appearDelay: appearOverwrite, tooltipClassName, containerClassName, position, disabled, }: TooltipProps) => react_jsx_runtime.JSX.Element;
|
|
1460
1456
|
|
|
1461
1457
|
type DurationJSON = {
|
|
1462
1458
|
years: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -1398,10 +1398,6 @@ type TooltipConfig = {
|
|
|
1398
1398
|
* Number of milliseconds until the tooltip appears
|
|
1399
1399
|
*/
|
|
1400
1400
|
appearDelay: number;
|
|
1401
|
-
/**
|
|
1402
|
-
* Number of milliseconds until the tooltip disappears
|
|
1403
|
-
*/
|
|
1404
|
-
disappearDelay: number;
|
|
1405
1401
|
};
|
|
1406
1402
|
type ThemeConfig = {
|
|
1407
1403
|
/**
|
|
@@ -1456,7 +1452,7 @@ type TooltipProps = PropsWithChildren & Partial<TooltipConfig> & {
|
|
|
1456
1452
|
* @param position The direction of the tooltip relative to the Container
|
|
1457
1453
|
* @constructor
|
|
1458
1454
|
*/
|
|
1459
|
-
declare const Tooltip: ({ tooltip, children, appearDelay:
|
|
1455
|
+
declare const Tooltip: ({ tooltip, children, appearDelay: appearOverwrite, tooltipClassName, containerClassName, position, disabled, }: TooltipProps) => react_jsx_runtime.JSX.Element;
|
|
1460
1456
|
|
|
1461
1457
|
type DurationJSON = {
|
|
1462
1458
|
years: number;
|