@bug-on/md3-react 2.0.3 → 3.0.1
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/.turbo/turbo-build.log +42 -0
- package/CHANGELOG.md +69 -0
- package/dist/index.css +178 -0
- package/dist/index.css.d.ts +2 -0
- package/dist/index.d.mts +6135 -0
- package/dist/index.d.ts +6135 -71
- package/dist/index.js +1688 -631
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1600 -564
- package/dist/index.mjs.map +1 -1
- package/dist/material-symbols-cdn.css.d.ts +2 -0
- package/dist/material-symbols-self-hosted.css.d.ts +2 -0
- package/dist/plugin.d.mts +1 -0
- package/dist/plugin.d.ts +1 -0
- package/dist/plugin.js +13 -0
- package/dist/plugin.js.map +1 -0
- package/dist/plugin.mjs +3 -0
- package/dist/plugin.mjs.map +1 -0
- package/dist/typography.css.d.ts +2 -0
- package/package.json +28 -19
- package/scripts/copy-assets.js +115 -0
- package/src/assets/fonts/GoogleSansFlex-VariableFont.woff2 +0 -0
- package/src/assets/fonts/MaterialSymbolsOutlined-VariableFont_FILL,GRAD,opsz,wght.ttf +0 -0
- package/src/assets/fonts/MaterialSymbolsRounded-VariableFont_FILL,GRAD,opsz,wght.ttf +0 -0
- package/src/assets/fonts/MaterialSymbolsSharp-VariableFont_FILL,GRAD,opsz,wght.ttf +0 -0
- package/src/assets/loading-indicator.svg +19 -0
- package/src/assets/material-symbols-cdn.css +65 -0
- package/src/assets/material-symbols-self-hosted.css +90 -0
- package/src/css.d.ts +20 -0
- package/src/hooks/useClickOutside.ts +37 -0
- package/src/hooks/useMediaQuery.ts +28 -0
- package/src/hooks/useRipple.ts +88 -0
- package/src/index.css +23 -0
- package/src/index.ts +349 -0
- package/src/lib/material-symbols-preconnect.tsx +82 -0
- package/src/lib/theme-utils.ts +195 -0
- package/src/lib/utils.ts +6 -0
- package/src/plugin.ts +12 -0
- package/src/test/button.test.tsx +59 -0
- package/src/test/icon.test.tsx +91 -0
- package/src/test/loading-indicator.test.tsx +128 -0
- package/src/test/progress-indicator.test.tsx +306 -0
- package/src/test/setup.ts +80 -0
- package/src/test/typography.test.tsx +206 -0
- package/src/types/index.ts +7 -0
- package/src/types/md3.ts +31 -0
- package/src/ui/Text.tsx +60 -0
- package/src/ui/__snapshots__/divider.test.tsx.snap +63 -0
- package/src/ui/app-bar/app-bar-column.tsx +99 -0
- package/src/ui/app-bar/app-bar-item-button.tsx +71 -0
- package/src/ui/app-bar/app-bar-items.test.tsx +89 -0
- package/src/ui/app-bar/app-bar-overflow-indicator.tsx +108 -0
- package/src/ui/app-bar/app-bar-row.tsx +104 -0
- package/src/ui/app-bar/app-bar.test.tsx +87 -0
- package/src/ui/app-bar/app-bar.tokens.ts +223 -0
- package/src/ui/app-bar/app-bar.types.ts +441 -0
- package/src/ui/app-bar/bottom-app-bar.test.tsx +42 -0
- package/src/ui/app-bar/bottom-app-bar.tsx +84 -0
- package/src/ui/app-bar/docked-toolbar.test.tsx +34 -0
- package/src/ui/app-bar/docked-toolbar.tsx +54 -0
- package/src/ui/app-bar/flexible-app-bar.test.tsx +75 -0
- package/src/ui/app-bar/hooks/use-app-bar-scroll.ts +110 -0
- package/src/ui/app-bar/hooks/use-flexible-app-bar.ts +123 -0
- package/{dist/ui/app-bar/index.d.ts → src/ui/app-bar/index.ts} +35 -2
- package/src/ui/app-bar/large-flexible-app-bar.tsx +165 -0
- package/src/ui/app-bar/medium-flexible-app-bar.tsx +167 -0
- package/src/ui/app-bar/search-app-bar.test.tsx +49 -0
- package/src/ui/app-bar/search-app-bar.tsx +176 -0
- package/src/ui/app-bar/search-view.tsx +227 -0
- package/src/ui/app-bar/small-app-bar.test.tsx +48 -0
- package/src/ui/app-bar/small-app-bar.tsx +203 -0
- package/src/ui/badge.test.tsx +345 -0
- package/src/ui/badge.tsx +282 -0
- package/src/ui/button-group.test.tsx +71 -0
- package/src/ui/button-group.tsx +350 -0
- package/src/ui/button.test.tsx +306 -0
- package/src/ui/button.tsx +665 -0
- package/src/ui/card.test.tsx +187 -0
- package/src/ui/card.tsx +259 -0
- package/src/ui/checkbox.test.tsx +423 -0
- package/src/ui/checkbox.tsx +525 -0
- package/src/ui/chip.test.tsx +292 -0
- package/src/ui/chip.tsx +548 -0
- package/src/ui/code-block.tsx +219 -0
- package/src/ui/dialog.test.tsx +300 -0
- package/src/ui/dialog.tsx +384 -0
- package/src/ui/divider.test.tsx +314 -0
- package/src/ui/divider.tsx +412 -0
- package/src/ui/drawer.tsx +240 -0
- package/src/ui/fab-menu.test.tsx +494 -0
- package/src/ui/fab-menu.tsx +739 -0
- package/src/ui/fab.test.tsx +232 -0
- package/src/ui/fab.tsx +505 -0
- package/src/ui/icon-button.test.tsx +515 -0
- package/src/ui/icon-button.tsx +525 -0
- package/src/ui/icon.test.tsx +197 -0
- package/src/ui/icon.tsx +179 -0
- package/src/ui/loading-indicator.test.tsx +73 -0
- package/src/ui/loading-indicator.tsx +312 -0
- package/src/ui/menu/context-menu.tsx +275 -0
- package/src/ui/menu/index.ts +77 -0
- package/src/ui/menu/menu-animations.ts +102 -0
- package/src/ui/menu/menu-context.tsx +99 -0
- package/src/ui/menu/menu-divider.tsx +47 -0
- package/src/ui/menu/menu-group.tsx +200 -0
- package/src/ui/menu/menu-item.tsx +294 -0
- package/src/ui/menu/menu-tokens.ts +208 -0
- package/src/ui/menu/menu-types.ts +313 -0
- package/src/ui/menu/menu.test.tsx +624 -0
- package/src/ui/menu/menu.tsx +289 -0
- package/src/ui/menu/sub-menu.tsx +223 -0
- package/src/ui/menu/vertical-menu.tsx +382 -0
- package/src/ui/navigation-rail.test.tsx +404 -0
- package/src/ui/navigation-rail.tsx +607 -0
- package/src/ui/progress-indicator/circular.tsx +248 -0
- package/src/ui/progress-indicator/hooks.ts +51 -0
- package/{dist/ui/progress-indicator/index.d.ts → src/ui/progress-indicator/index.tsx} +20 -2
- package/src/ui/progress-indicator/linear-flat.tsx +83 -0
- package/src/ui/progress-indicator/linear-wavy.tsx +243 -0
- package/src/ui/progress-indicator/linear.tsx +143 -0
- package/src/ui/progress-indicator/types.ts +158 -0
- package/src/ui/progress-indicator/utils.ts +73 -0
- package/src/ui/radio-button.test.tsx +407 -0
- package/src/ui/radio-button.tsx +551 -0
- package/src/ui/ripple.test.tsx +72 -0
- package/src/ui/ripple.tsx +234 -0
- package/src/ui/scroll-area.test.tsx +58 -0
- package/src/ui/scroll-area.tsx +139 -0
- package/src/ui/search/animated-placeholder.tsx +145 -0
- package/src/ui/search/hooks/use-search-keyboard.test.ts +202 -0
- package/src/ui/search/hooks/use-search-keyboard.ts +104 -0
- package/src/ui/search/hooks/use-search-view-focus.test.ts +96 -0
- package/src/ui/search/hooks/use-search-view-focus.ts +24 -0
- package/src/ui/search/index.ts +44 -0
- package/src/ui/search/search-bar.tsx +220 -0
- package/src/ui/search/search-context.tsx +42 -0
- package/src/ui/search/search-view-docked.tsx +194 -0
- package/src/ui/search/search-view-fullscreen.tsx +247 -0
- package/src/ui/search/search.test.tsx +233 -0
- package/src/ui/search/search.tokens.ts +134 -0
- package/src/ui/search/search.tsx +131 -0
- package/src/ui/search/search.types.ts +154 -0
- package/src/ui/search/trailing-action.tsx +49 -0
- package/src/ui/shared/constants.ts +135 -0
- package/{dist/ui/shared/touch-target.d.ts → src/ui/shared/touch-target.tsx} +13 -1
- package/src/ui/slider/hooks/useSliderMath.ts +195 -0
- package/{dist/ui/slider/index.d.ts → src/ui/slider/index.ts} +12 -1
- package/src/ui/slider/range-slider.tsx +561 -0
- package/src/ui/slider/slider-thumb.tsx +379 -0
- package/src/ui/slider/slider-track.tsx +912 -0
- package/src/ui/slider/slider.tokens.ts +189 -0
- package/src/ui/slider/slider.tsx +259 -0
- package/src/ui/slider/slider.types.ts +288 -0
- package/src/ui/snackbar/index.ts +20 -0
- package/src/ui/snackbar/snackbar.test.tsx +338 -0
- package/src/ui/snackbar/snackbar.tsx +476 -0
- package/{dist/ui/switch/index.d.ts → src/ui/switch/index.ts} +1 -0
- package/src/ui/switch/switch.stories.tsx +309 -0
- package/src/ui/switch/switch.test.tsx +243 -0
- package/src/ui/switch/switch.tokens.ts +89 -0
- package/src/ui/switch/switch.tsx +504 -0
- package/src/ui/switch/switch.types.ts +62 -0
- package/{dist/ui/tabs/index.d.ts → src/ui/tabs/index.ts} +8 -1
- package/src/ui/tabs/tab.tsx +407 -0
- package/src/ui/tabs/tabs-content.tsx +89 -0
- package/src/ui/tabs/tabs-list.tsx +146 -0
- package/src/ui/tabs/tabs.test.tsx +290 -0
- package/src/ui/tabs/tabs.tokens.ts +121 -0
- package/src/ui/tabs/tabs.tsx +229 -0
- package/src/ui/tabs/tabs.types.ts +185 -0
- package/{dist/ui/text-field/index.d.ts → src/ui/text-field/index.ts} +8 -1
- package/src/ui/text-field/subcomponents/active-indicator.tsx +67 -0
- package/src/ui/text-field/subcomponents/floating-label.tsx +161 -0
- package/src/ui/text-field/subcomponents/leading-icon.tsx +46 -0
- package/src/ui/text-field/subcomponents/outline-container.tsx +170 -0
- package/src/ui/text-field/subcomponents/prefix-suffix.tsx +59 -0
- package/src/ui/text-field/subcomponents/supporting-text.tsx +145 -0
- package/src/ui/text-field/subcomponents/trailing-icon.tsx +199 -0
- package/src/ui/text-field/text-field.test.tsx +454 -0
- package/src/ui/text-field/text-field.tokens.ts +104 -0
- package/src/ui/text-field/text-field.tsx +548 -0
- package/src/ui/text-field/text-field.types.ts +180 -0
- package/src/ui/theme-provider/index.tsx +215 -0
- package/src/ui/toc.test.tsx +108 -0
- package/src/ui/toc.tsx +172 -0
- package/src/ui/tooltip/plain-tooltip.tsx +63 -0
- package/src/ui/tooltip/rich-tooltip.tsx +94 -0
- package/src/ui/tooltip/tooltip-box.tsx +266 -0
- package/src/ui/tooltip/tooltip-caret-shape.tsx +68 -0
- package/src/ui/tooltip/tooltip.tokens.ts +26 -0
- package/src/ui/tooltip/tooltip.types.ts +70 -0
- package/src/ui/tooltip/use-tooltip-position.ts +208 -0
- package/src/ui/tooltip/use-tooltip-state.ts +41 -0
- package/src/ui/typography/__tests__/typography.test.tsx +170 -0
- package/{dist/ui/typography/index.d.ts → src/ui/typography/index.ts} +21 -3
- package/src/ui/typography/type-scale-tokens.ts +205 -0
- package/src/ui/typography/typography-key-tokens.ts +43 -0
- package/src/ui/typography/typography-tokens.ts +360 -0
- package/src/ui/typography/typography.css +22 -0
- package/src/ui/typography/typography.tsx +559 -0
- package/test-render.tsx +4 -0
- package/test-shadow.html +26 -0
- package/test_output.txt +164 -0
- package/test_output_v2.txt +5 -0
- package/tsconfig.build.json +10 -0
- package/tsconfig.json +18 -0
- package/tsup.config.ts +20 -0
- package/vitest.config.ts +11 -0
- package/dist/hooks/useClickOutside.d.ts +0 -8
- package/dist/hooks/useMediaQuery.d.ts +0 -11
- package/dist/hooks/useRipple.d.ts +0 -26
- package/dist/lib/material-symbols-preconnect.d.ts +0 -42
- package/dist/lib/theme-utils.d.ts +0 -63
- package/dist/lib/utils.d.ts +0 -2
- package/dist/types/index.d.ts +0 -1
- package/dist/types/md3.d.ts +0 -14
- package/dist/ui/app-bar/app-bar-column.d.ts +0 -28
- package/dist/ui/app-bar/app-bar-item-button.d.ts +0 -16
- package/dist/ui/app-bar/app-bar-overflow-indicator.d.ts +0 -18
- package/dist/ui/app-bar/app-bar-row.d.ts +0 -36
- package/dist/ui/app-bar/app-bar.tokens.d.ts +0 -184
- package/dist/ui/app-bar/app-bar.types.d.ts +0 -392
- package/dist/ui/app-bar/bottom-app-bar.d.ts +0 -31
- package/dist/ui/app-bar/docked-toolbar.d.ts +0 -25
- package/dist/ui/app-bar/hooks/use-app-bar-scroll.d.ts +0 -42
- package/dist/ui/app-bar/hooks/use-flexible-app-bar.d.ts +0 -37
- package/dist/ui/app-bar/large-flexible-app-bar.d.ts +0 -26
- package/dist/ui/app-bar/medium-flexible-app-bar.d.ts +0 -28
- package/dist/ui/app-bar/search-app-bar.d.ts +0 -43
- package/dist/ui/app-bar/search-view.d.ts +0 -54
- package/dist/ui/app-bar/small-app-bar.d.ts +0 -37
- package/dist/ui/badge.d.ts +0 -125
- package/dist/ui/button-group.d.ts +0 -59
- package/dist/ui/button.d.ts +0 -148
- package/dist/ui/card.d.ts +0 -62
- package/dist/ui/checkbox.d.ts +0 -82
- package/dist/ui/chip.d.ts +0 -110
- package/dist/ui/code-block.d.ts +0 -14
- package/dist/ui/dialog.d.ts +0 -111
- package/dist/ui/divider.d.ts +0 -164
- package/dist/ui/drawer.d.ts +0 -39
- package/dist/ui/dropdown.d.ts +0 -29
- package/dist/ui/fab-menu.d.ts +0 -204
- package/dist/ui/fab.d.ts +0 -162
- package/dist/ui/icon-button.d.ts +0 -131
- package/dist/ui/icon.d.ts +0 -88
- package/dist/ui/loading-indicator.d.ts +0 -42
- package/dist/ui/navigation-rail.d.ts +0 -29
- package/dist/ui/progress-indicator/circular.d.ts +0 -3
- package/dist/ui/progress-indicator/hooks.d.ts +0 -3
- package/dist/ui/progress-indicator/linear-flat.d.ts +0 -10
- package/dist/ui/progress-indicator/linear-wavy.d.ts +0 -18
- package/dist/ui/progress-indicator/linear.d.ts +0 -3
- package/dist/ui/progress-indicator/types.d.ts +0 -151
- package/dist/ui/progress-indicator/utils.d.ts +0 -3
- package/dist/ui/radio-button.d.ts +0 -106
- package/dist/ui/ripple.d.ts +0 -126
- package/dist/ui/scroll-area.d.ts +0 -27
- package/dist/ui/search/animated-placeholder.d.ts +0 -54
- package/dist/ui/search/hooks/use-search-keyboard.d.ts +0 -32
- package/dist/ui/search/hooks/use-search-view-focus.d.ts +0 -6
- package/dist/ui/search/index.d.ts +0 -27
- package/dist/ui/search/search-bar.d.ts +0 -32
- package/dist/ui/search/search-context.d.ts +0 -24
- package/dist/ui/search/search-view-docked.d.ts +0 -25
- package/dist/ui/search/search-view-fullscreen.d.ts +0 -36
- package/dist/ui/search/search.d.ts +0 -50
- package/dist/ui/search/search.tokens.d.ts +0 -112
- package/dist/ui/search/search.types.d.ts +0 -131
- package/dist/ui/search/trailing-action.d.ts +0 -9
- package/dist/ui/shared/constants.d.ts +0 -86
- package/dist/ui/slider/hooks/useSliderMath.d.ts +0 -101
- package/dist/ui/slider/range-slider.d.ts +0 -47
- package/dist/ui/slider/slider-thumb.d.ts +0 -33
- package/dist/ui/slider/slider-track.d.ts +0 -25
- package/dist/ui/slider/slider.d.ts +0 -60
- package/dist/ui/slider/slider.tokens.d.ts +0 -151
- package/dist/ui/slider/slider.types.d.ts +0 -259
- package/dist/ui/snackbar/index.d.ts +0 -6
- package/dist/ui/snackbar/snackbar.d.ts +0 -197
- package/dist/ui/switch/switch.d.ts +0 -30
- package/dist/ui/switch/switch.stories.d.ts +0 -48
- package/dist/ui/switch/switch.tokens.d.ts +0 -67
- package/dist/ui/switch/switch.types.d.ts +0 -59
- package/dist/ui/tabs/tab.d.ts +0 -43
- package/dist/ui/tabs/tabs-content.d.ts +0 -36
- package/dist/ui/tabs/tabs-list.d.ts +0 -40
- package/dist/ui/tabs/tabs.d.ts +0 -60
- package/dist/ui/tabs/tabs.tokens.d.ts +0 -94
- package/dist/ui/tabs/tabs.types.d.ts +0 -172
- package/dist/ui/text-field/subcomponents/active-indicator.d.ts +0 -24
- package/dist/ui/text-field/subcomponents/floating-label.d.ts +0 -43
- package/dist/ui/text-field/subcomponents/leading-icon.d.ts +0 -23
- package/dist/ui/text-field/subcomponents/outline-container.d.ts +0 -42
- package/dist/ui/text-field/subcomponents/prefix-suffix.d.ts +0 -24
- package/dist/ui/text-field/subcomponents/supporting-text.d.ts +0 -37
- package/dist/ui/text-field/subcomponents/trailing-icon.d.ts +0 -41
- package/dist/ui/text-field/text-field.d.ts +0 -49
- package/dist/ui/text-field/text-field.tokens.d.ts +0 -76
- package/dist/ui/text-field/text-field.types.d.ts +0 -126
- package/dist/ui/theme-provider/index.d.ts +0 -48
- package/dist/ui/toc.d.ts +0 -80
- package/dist/ui/tooltip/plain-tooltip.d.ts +0 -2
- package/dist/ui/tooltip/rich-tooltip.d.ts +0 -2
- package/dist/ui/tooltip/tooltip-box.d.ts +0 -2
- package/dist/ui/tooltip/tooltip-caret-shape.d.ts +0 -9
- package/dist/ui/tooltip/tooltip.tokens.d.ts +0 -26
- package/dist/ui/tooltip/tooltip.types.d.ts +0 -56
- package/dist/ui/tooltip/use-tooltip-position.d.ts +0 -8
- package/dist/ui/tooltip/use-tooltip-state.d.ts +0 -2
- package/dist/ui/typography/type-scale-tokens.d.ts +0 -162
- package/dist/ui/typography/typography-key-tokens.d.ts +0 -40
- package/dist/ui/typography/typography-tokens.d.ts +0 -220
- package/dist/ui/typography/typography.d.ts +0 -265
- /package/{dist/hooks/index.d.ts → src/hooks/index.ts} +0 -0
- /package/{dist/ui/tooltip/index.d.ts → src/ui/tooltip/index.ts} +0 -0
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import type { CSSProperties } from "react";
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
import { TooltipTokens } from "./tooltip.tokens";
|
|
4
|
+
import type { PlainTooltipProps } from "./tooltip.types";
|
|
5
|
+
import { TooltipCaretShape } from "./tooltip-caret-shape";
|
|
6
|
+
|
|
7
|
+
export const PlainTooltip = forwardRef<HTMLDivElement, PlainTooltipProps>(
|
|
8
|
+
(
|
|
9
|
+
{
|
|
10
|
+
children,
|
|
11
|
+
caret,
|
|
12
|
+
className = "",
|
|
13
|
+
maxWidth,
|
|
14
|
+
containerColor,
|
|
15
|
+
textColor,
|
|
16
|
+
...props
|
|
17
|
+
},
|
|
18
|
+
ref,
|
|
19
|
+
) => {
|
|
20
|
+
const {
|
|
21
|
+
containerColor: tokenContainer,
|
|
22
|
+
textColor: tokenText,
|
|
23
|
+
font,
|
|
24
|
+
padding,
|
|
25
|
+
shape,
|
|
26
|
+
height,
|
|
27
|
+
maxWidth: tokenMaxWidth,
|
|
28
|
+
} = TooltipTokens.PlainTooltip;
|
|
29
|
+
|
|
30
|
+
const style: CSSProperties = {
|
|
31
|
+
...props.style,
|
|
32
|
+
backgroundColor: containerColor ?? tokenContainer,
|
|
33
|
+
color: textColor ?? tokenText,
|
|
34
|
+
...(maxWidth && { maxWidth }),
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
const side = props["data-side"] ?? "top";
|
|
38
|
+
|
|
39
|
+
return (
|
|
40
|
+
<div
|
|
41
|
+
ref={ref}
|
|
42
|
+
className={`relative inline-flex items-center box-border ${shape} ${font} ${padding} ${height} ${!maxWidth ? tokenMaxWidth : ""} ${className}`}
|
|
43
|
+
style={style}
|
|
44
|
+
{...props}
|
|
45
|
+
>
|
|
46
|
+
{caret?.enabled && (
|
|
47
|
+
<TooltipCaretShape
|
|
48
|
+
side={side}
|
|
49
|
+
width={caret.width}
|
|
50
|
+
height={caret.height}
|
|
51
|
+
color={style.backgroundColor as string}
|
|
52
|
+
customPath={caret.customPath}
|
|
53
|
+
/>
|
|
54
|
+
)}
|
|
55
|
+
<span className="whitespace-normal text-start wrap-break-word">
|
|
56
|
+
{children}
|
|
57
|
+
</span>
|
|
58
|
+
</div>
|
|
59
|
+
);
|
|
60
|
+
},
|
|
61
|
+
);
|
|
62
|
+
|
|
63
|
+
PlainTooltip.displayName = "PlainTooltip";
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import type { CSSProperties } from "react";
|
|
2
|
+
import { forwardRef } from "react";
|
|
3
|
+
import { TooltipTokens } from "./tooltip.tokens";
|
|
4
|
+
import type { RichTooltipProps } from "./tooltip.types";
|
|
5
|
+
import { TooltipCaretShape } from "./tooltip-caret-shape";
|
|
6
|
+
|
|
7
|
+
export const RichTooltip = forwardRef<HTMLDivElement, RichTooltipProps>(
|
|
8
|
+
(
|
|
9
|
+
{
|
|
10
|
+
children,
|
|
11
|
+
title,
|
|
12
|
+
action,
|
|
13
|
+
caret,
|
|
14
|
+
className = "",
|
|
15
|
+
maxWidth,
|
|
16
|
+
colors = {},
|
|
17
|
+
...props
|
|
18
|
+
},
|
|
19
|
+
ref,
|
|
20
|
+
) => {
|
|
21
|
+
const {
|
|
22
|
+
containerColor: tokenContainer,
|
|
23
|
+
elevation,
|
|
24
|
+
shape,
|
|
25
|
+
paddingTop,
|
|
26
|
+
paddingBottom,
|
|
27
|
+
paddingX,
|
|
28
|
+
maxWidth: tokenMaxWidth,
|
|
29
|
+
subheadColor,
|
|
30
|
+
subheadFont,
|
|
31
|
+
bodyColor,
|
|
32
|
+
bodyFont,
|
|
33
|
+
actionColor,
|
|
34
|
+
actionFont,
|
|
35
|
+
} = TooltipTokens.RichTooltip;
|
|
36
|
+
|
|
37
|
+
const containerStyle: CSSProperties = {
|
|
38
|
+
...props.style,
|
|
39
|
+
backgroundColor: colors.container ?? tokenContainer,
|
|
40
|
+
...(maxWidth && { maxWidth }),
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
const side = props["data-side"] ?? "top";
|
|
44
|
+
|
|
45
|
+
const titleColor = colors.title ?? subheadColor;
|
|
46
|
+
const bodyColorResolved = colors.body ?? bodyColor;
|
|
47
|
+
const actionColorResolved = colors.action ?? actionColor;
|
|
48
|
+
|
|
49
|
+
return (
|
|
50
|
+
<div
|
|
51
|
+
ref={ref}
|
|
52
|
+
className={`relative box-border flex flex-col ${shape} ${elevation} ${paddingTop} ${paddingBottom} ${paddingX} ${!maxWidth ? tokenMaxWidth : ""} ${className}`}
|
|
53
|
+
style={containerStyle}
|
|
54
|
+
{...props}
|
|
55
|
+
>
|
|
56
|
+
{caret?.enabled && (
|
|
57
|
+
<TooltipCaretShape
|
|
58
|
+
side={side}
|
|
59
|
+
width={caret.width}
|
|
60
|
+
height={caret.height}
|
|
61
|
+
color={containerStyle.backgroundColor as string}
|
|
62
|
+
customPath={caret.customPath}
|
|
63
|
+
/>
|
|
64
|
+
)}
|
|
65
|
+
|
|
66
|
+
{title && (
|
|
67
|
+
<div className={`mb-1 ${subheadFont}`} style={{ color: titleColor }}>
|
|
68
|
+
{title}
|
|
69
|
+
</div>
|
|
70
|
+
)}
|
|
71
|
+
|
|
72
|
+
{children && (
|
|
73
|
+
<div
|
|
74
|
+
className={`whitespace-normal text-start wrap-break-word ${bodyFont}`}
|
|
75
|
+
style={{ color: bodyColorResolved }}
|
|
76
|
+
>
|
|
77
|
+
{children}
|
|
78
|
+
</div>
|
|
79
|
+
)}
|
|
80
|
+
|
|
81
|
+
{action && (
|
|
82
|
+
<div
|
|
83
|
+
className={`mt-2 flex min-h-9 flex-wrap items-center gap-2 ${actionFont}`}
|
|
84
|
+
style={{ color: actionColorResolved }}
|
|
85
|
+
>
|
|
86
|
+
{action}
|
|
87
|
+
</div>
|
|
88
|
+
)}
|
|
89
|
+
</div>
|
|
90
|
+
);
|
|
91
|
+
},
|
|
92
|
+
);
|
|
93
|
+
|
|
94
|
+
RichTooltip.displayName = "RichTooltip";
|
|
@@ -0,0 +1,266 @@
|
|
|
1
|
+
import { Slot } from "@radix-ui/react-slot";
|
|
2
|
+
import { AnimatePresence, m } from "motion/react";
|
|
3
|
+
import * as React from "react";
|
|
4
|
+
import {
|
|
5
|
+
cloneElement,
|
|
6
|
+
type ReactElement,
|
|
7
|
+
useEffect,
|
|
8
|
+
useId,
|
|
9
|
+
useRef,
|
|
10
|
+
useState,
|
|
11
|
+
} from "react";
|
|
12
|
+
import { createPortal } from "react-dom";
|
|
13
|
+
import type { TooltipBoxProps } from "./tooltip.types";
|
|
14
|
+
import { useTooltipPosition } from "./use-tooltip-position";
|
|
15
|
+
import { useTooltipState } from "./use-tooltip-state";
|
|
16
|
+
|
|
17
|
+
type Side = "top" | "bottom" | "left" | "right";
|
|
18
|
+
|
|
19
|
+
const TRANSFORM_ORIGIN: Record<Side, string> = {
|
|
20
|
+
top: "50% 100%",
|
|
21
|
+
bottom: "50% 0%",
|
|
22
|
+
left: "100% 50%",
|
|
23
|
+
right: "0% 50%",
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
const MOTION_VARIANTS = {
|
|
27
|
+
full: {
|
|
28
|
+
hidden: { opacity: 0, scale: 0.8 },
|
|
29
|
+
visible: {
|
|
30
|
+
opacity: 1,
|
|
31
|
+
scale: 1,
|
|
32
|
+
transition: {
|
|
33
|
+
opacity: { duration: 0.1, ease: "easeOut" },
|
|
34
|
+
scale: { type: "spring", stiffness: 900, damping: 90, mass: 0.5 },
|
|
35
|
+
},
|
|
36
|
+
},
|
|
37
|
+
exit: {
|
|
38
|
+
opacity: 0,
|
|
39
|
+
scale: 0.8,
|
|
40
|
+
transition: {
|
|
41
|
+
opacity: { duration: 0.075, ease: "easeIn" },
|
|
42
|
+
scale: { duration: 0.1, ease: "easeIn" },
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
|
+
},
|
|
46
|
+
reduced: {
|
|
47
|
+
hidden: { opacity: 0 },
|
|
48
|
+
visible: { opacity: 1, transition: { duration: 0.15 } },
|
|
49
|
+
exit: { opacity: 0, transition: { duration: 0.1 } },
|
|
50
|
+
},
|
|
51
|
+
} as const;
|
|
52
|
+
|
|
53
|
+
function clearTimeout(ref: React.MutableRefObject<number | null>) {
|
|
54
|
+
if (ref.current !== null) window.clearTimeout(ref.current);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export function TooltipBox({
|
|
58
|
+
children,
|
|
59
|
+
tooltip,
|
|
60
|
+
placement = "top",
|
|
61
|
+
trigger = ["hover", "focus"],
|
|
62
|
+
state: controlledState,
|
|
63
|
+
spacingFromAnchor = 4,
|
|
64
|
+
disabled = false,
|
|
65
|
+
className = "",
|
|
66
|
+
showDelay = 400,
|
|
67
|
+
hideDelay = 200,
|
|
68
|
+
"aria-label": ariaLabel,
|
|
69
|
+
}: TooltipBoxProps) {
|
|
70
|
+
const internalState = useTooltipState();
|
|
71
|
+
const state = controlledState ?? internalState;
|
|
72
|
+
|
|
73
|
+
const anchorRef = useRef<HTMLDivElement>(null);
|
|
74
|
+
const tooltipRef = useRef<HTMLDivElement>(null);
|
|
75
|
+
const hoverTimeoutRef = useRef<number | null>(null);
|
|
76
|
+
const hideTimeoutRef = useRef<number | null>(null);
|
|
77
|
+
const pressTimeoutRef = useRef<number | null>(null);
|
|
78
|
+
|
|
79
|
+
const triggers = Array.isArray(trigger) ? trigger : [trigger];
|
|
80
|
+
|
|
81
|
+
const [mounted, setMounted] = useState(false);
|
|
82
|
+
const [hasHoverSupport, setHasHoverSupport] = useState(true);
|
|
83
|
+
const [prefersReducedMotion, setPrefersReducedMotion] = useState(false);
|
|
84
|
+
|
|
85
|
+
useEffect(() => {
|
|
86
|
+
setMounted(true);
|
|
87
|
+
setHasHoverSupport(!window.matchMedia("(hover: none)").matches);
|
|
88
|
+
}, []);
|
|
89
|
+
|
|
90
|
+
useEffect(() => {
|
|
91
|
+
const mediaQuery = window.matchMedia("(prefers-reduced-motion: reduce)");
|
|
92
|
+
setPrefersReducedMotion(mediaQuery.matches);
|
|
93
|
+
const onChange = (e: MediaQueryListEvent) =>
|
|
94
|
+
setPrefersReducedMotion(e.matches);
|
|
95
|
+
mediaQuery.addEventListener("change", onChange);
|
|
96
|
+
return () => mediaQuery.removeEventListener("change", onChange);
|
|
97
|
+
}, []);
|
|
98
|
+
|
|
99
|
+
const position = useTooltipPosition(
|
|
100
|
+
anchorRef,
|
|
101
|
+
tooltipRef,
|
|
102
|
+
placement,
|
|
103
|
+
spacingFromAnchor,
|
|
104
|
+
state.isVisible,
|
|
105
|
+
);
|
|
106
|
+
|
|
107
|
+
const canHover = !disabled && hasHoverSupport && triggers.includes("hover");
|
|
108
|
+
const canClick = !disabled && triggers.includes("click");
|
|
109
|
+
|
|
110
|
+
const handlePointerEnter = () => {
|
|
111
|
+
if (!canHover) return;
|
|
112
|
+
clearTimeout(hoverTimeoutRef);
|
|
113
|
+
clearTimeout(hideTimeoutRef);
|
|
114
|
+
hoverTimeoutRef.current = window.setTimeout(() => state.show(), showDelay);
|
|
115
|
+
};
|
|
116
|
+
|
|
117
|
+
const handlePointerLeave = () => {
|
|
118
|
+
if (!canHover) return;
|
|
119
|
+
clearTimeout(hoverTimeoutRef);
|
|
120
|
+
hideTimeoutRef.current = window.setTimeout(
|
|
121
|
+
() => state.dismiss(),
|
|
122
|
+
hideDelay,
|
|
123
|
+
);
|
|
124
|
+
};
|
|
125
|
+
|
|
126
|
+
const handleFocus = () => {
|
|
127
|
+
if (disabled || !triggers.includes("focus")) return;
|
|
128
|
+
state.show();
|
|
129
|
+
};
|
|
130
|
+
|
|
131
|
+
const handleBlur = (e: React.FocusEvent) => {
|
|
132
|
+
if (disabled) return;
|
|
133
|
+
const focusMovedInside =
|
|
134
|
+
tooltipRef.current &&
|
|
135
|
+
(e.relatedTarget === tooltipRef.current ||
|
|
136
|
+
tooltipRef.current.contains(e.relatedTarget as Node));
|
|
137
|
+
if (focusMovedInside) return;
|
|
138
|
+
state.dismiss();
|
|
139
|
+
};
|
|
140
|
+
|
|
141
|
+
const handlePointerDown = (e: React.PointerEvent) => {
|
|
142
|
+
if (
|
|
143
|
+
disabled ||
|
|
144
|
+
!triggers.includes("long-press") ||
|
|
145
|
+
e.pointerType === "mouse"
|
|
146
|
+
)
|
|
147
|
+
return;
|
|
148
|
+
clearTimeout(pressTimeoutRef);
|
|
149
|
+
pressTimeoutRef.current = window.setTimeout(() => state.show(), 500);
|
|
150
|
+
};
|
|
151
|
+
|
|
152
|
+
const handleClick = () => {
|
|
153
|
+
if (!canClick) return;
|
|
154
|
+
if (state.isVisible) state.dismiss();
|
|
155
|
+
else state.show();
|
|
156
|
+
};
|
|
157
|
+
|
|
158
|
+
const handleKeyDown = (e: React.KeyboardEvent) => {
|
|
159
|
+
if (disabled || !canClick) return;
|
|
160
|
+
if (e.key === "Enter" || e.key === " ") {
|
|
161
|
+
e.preventDefault();
|
|
162
|
+
handleClick();
|
|
163
|
+
}
|
|
164
|
+
};
|
|
165
|
+
|
|
166
|
+
const handleContextMenu = (e: React.MouseEvent) => {
|
|
167
|
+
if (triggers.includes("long-press") && state.isVisible) e.preventDefault();
|
|
168
|
+
};
|
|
169
|
+
|
|
170
|
+
const handleTooltipPointerEnter = () => {
|
|
171
|
+
if (!canHover) return;
|
|
172
|
+
clearTimeout(hideTimeoutRef);
|
|
173
|
+
};
|
|
174
|
+
|
|
175
|
+
const handleTooltipPointerLeave = () => {
|
|
176
|
+
if (!canHover) return;
|
|
177
|
+
hideTimeoutRef.current = window.setTimeout(
|
|
178
|
+
() => state.dismiss(),
|
|
179
|
+
hideDelay,
|
|
180
|
+
);
|
|
181
|
+
};
|
|
182
|
+
|
|
183
|
+
useEffect(() => {
|
|
184
|
+
if (!state.isVisible) return;
|
|
185
|
+
const onKeyDown = (e: KeyboardEvent) => {
|
|
186
|
+
if (e.key === "Escape") {
|
|
187
|
+
state.dismiss();
|
|
188
|
+
anchorRef.current?.focus();
|
|
189
|
+
}
|
|
190
|
+
};
|
|
191
|
+
document.addEventListener("keydown", onKeyDown);
|
|
192
|
+
return () => document.removeEventListener("keydown", onKeyDown);
|
|
193
|
+
}, [state.isVisible, state]);
|
|
194
|
+
|
|
195
|
+
const tooltipId = useId();
|
|
196
|
+
|
|
197
|
+
const tooltipWithProps = cloneElement(
|
|
198
|
+
tooltip as ReactElement<{
|
|
199
|
+
"data-side"?: Side;
|
|
200
|
+
id?: string;
|
|
201
|
+
role?: string;
|
|
202
|
+
onBlur?: (e: React.FocusEvent) => void;
|
|
203
|
+
}>,
|
|
204
|
+
{
|
|
205
|
+
"data-side": position.actualSide,
|
|
206
|
+
id: tooltipId,
|
|
207
|
+
role: "tooltip",
|
|
208
|
+
onBlur: handleBlur,
|
|
209
|
+
},
|
|
210
|
+
);
|
|
211
|
+
|
|
212
|
+
const variants = prefersReducedMotion
|
|
213
|
+
? MOTION_VARIANTS.reduced
|
|
214
|
+
: MOTION_VARIANTS.full;
|
|
215
|
+
|
|
216
|
+
return (
|
|
217
|
+
<>
|
|
218
|
+
<Slot
|
|
219
|
+
ref={anchorRef}
|
|
220
|
+
className={`inline-flex ${className}`}
|
|
221
|
+
onPointerEnter={handlePointerEnter}
|
|
222
|
+
onPointerLeave={handlePointerLeave}
|
|
223
|
+
onFocus={handleFocus}
|
|
224
|
+
onBlur={handleBlur}
|
|
225
|
+
onPointerDown={handlePointerDown}
|
|
226
|
+
onPointerUp={() => clearTimeout(pressTimeoutRef)}
|
|
227
|
+
onPointerCancel={() => clearTimeout(pressTimeoutRef)}
|
|
228
|
+
onContextMenu={handleContextMenu}
|
|
229
|
+
onClick={handleClick}
|
|
230
|
+
onKeyDown={handleKeyDown}
|
|
231
|
+
aria-label={ariaLabel}
|
|
232
|
+
aria-describedby={state.isVisible ? tooltipId : undefined}
|
|
233
|
+
>
|
|
234
|
+
{React.isValidElement(children) ? children : <span>{children}</span>}
|
|
235
|
+
</Slot>
|
|
236
|
+
|
|
237
|
+
{mounted &&
|
|
238
|
+
createPortal(
|
|
239
|
+
<AnimatePresence mode="wait">
|
|
240
|
+
{state.isVisible && !disabled && (
|
|
241
|
+
<m.div
|
|
242
|
+
ref={tooltipRef}
|
|
243
|
+
initial="hidden"
|
|
244
|
+
animate="visible"
|
|
245
|
+
exit="exit"
|
|
246
|
+
variants={variants}
|
|
247
|
+
onPointerEnter={handleTooltipPointerEnter}
|
|
248
|
+
onPointerLeave={handleTooltipPointerLeave}
|
|
249
|
+
style={{
|
|
250
|
+
position: "fixed",
|
|
251
|
+
top: position.top,
|
|
252
|
+
left: position.left,
|
|
253
|
+
transformOrigin: TRANSFORM_ORIGIN[position.actualSide],
|
|
254
|
+
zIndex: 50,
|
|
255
|
+
pointerEvents: "auto",
|
|
256
|
+
}}
|
|
257
|
+
>
|
|
258
|
+
{tooltipWithProps}
|
|
259
|
+
</m.div>
|
|
260
|
+
)}
|
|
261
|
+
</AnimatePresence>,
|
|
262
|
+
document.body,
|
|
263
|
+
)}
|
|
264
|
+
</>
|
|
265
|
+
);
|
|
266
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
export interface TooltipCaretProps {
|
|
2
|
+
side: "top" | "bottom" | "left" | "right";
|
|
3
|
+
width?: number;
|
|
4
|
+
height?: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
customPath?: string;
|
|
7
|
+
className?: string;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
type Side = TooltipCaretProps["side"];
|
|
11
|
+
|
|
12
|
+
const CENTER_H = "left-1/2 -translate-x-1/2";
|
|
13
|
+
const CENTER_V = "top-1/2 -translate-y-1/2 flex items-center justify-center";
|
|
14
|
+
|
|
15
|
+
const POSITION_BY_SIDE: Record<Side, (h: number) => string> = {
|
|
16
|
+
top: (h) => `bottom-[calc(-1*${h}px)] ${CENTER_H}`,
|
|
17
|
+
bottom: (h) => `top-[calc(-1*${h}px)] ${CENTER_H}`,
|
|
18
|
+
left: (h) => `right-[calc(-1*${h}px)] ${CENTER_V}`,
|
|
19
|
+
right: (h) => `left-[calc(-1*${h}px)] ${CENTER_V}`,
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
const ROTATION: Record<Side, string> = {
|
|
23
|
+
top: "180deg",
|
|
24
|
+
bottom: "0deg",
|
|
25
|
+
left: "90deg",
|
|
26
|
+
right: "-90deg",
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export function TooltipCaretShape({
|
|
30
|
+
side,
|
|
31
|
+
width = 16,
|
|
32
|
+
height = 8,
|
|
33
|
+
color,
|
|
34
|
+
customPath,
|
|
35
|
+
className = "",
|
|
36
|
+
}: TooltipCaretProps) {
|
|
37
|
+
const isHorizontal = side === "left" || side === "right";
|
|
38
|
+
const path =
|
|
39
|
+
customPath ?? `M 0,${height} L ${width / 2},0 L ${width},${height} Z`;
|
|
40
|
+
|
|
41
|
+
return (
|
|
42
|
+
<div
|
|
43
|
+
className={`absolute pointer-events-none z-[-1] ${POSITION_BY_SIDE[side](height)} ${className}`}
|
|
44
|
+
style={{
|
|
45
|
+
width: isHorizontal ? height : width,
|
|
46
|
+
height: isHorizontal ? width : height,
|
|
47
|
+
color,
|
|
48
|
+
}}
|
|
49
|
+
aria-hidden="true"
|
|
50
|
+
>
|
|
51
|
+
<svg
|
|
52
|
+
width={width}
|
|
53
|
+
height={height}
|
|
54
|
+
viewBox={`0 0 ${width} ${height}`}
|
|
55
|
+
fill="currentColor"
|
|
56
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
57
|
+
aria-hidden="true"
|
|
58
|
+
style={{
|
|
59
|
+
transform: `rotate(${ROTATION[side]})`,
|
|
60
|
+
display: "block",
|
|
61
|
+
transformOrigin: "center",
|
|
62
|
+
}}
|
|
63
|
+
>
|
|
64
|
+
<path d={path} />
|
|
65
|
+
</svg>
|
|
66
|
+
</div>
|
|
67
|
+
);
|
|
68
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export const TooltipTokens = {
|
|
2
|
+
PlainTooltip: {
|
|
3
|
+
containerColor: "var(--md-sys-color-inverse-surface)", // #322F35 light / #E6E1E5 dark
|
|
4
|
+
textColor: "var(--md-sys-color-inverse-on-surface)", // #F5EFF7 light / #322F35 dark
|
|
5
|
+
shape: "rounded-[4px]", // CornerExtraSmall = 4dp
|
|
6
|
+
font: "text-[12px] font-normal tracking-[0.4px] leading-[16px]", // BodySmall
|
|
7
|
+
height: "min-h-6", // 24dp min height
|
|
8
|
+
padding: "px-2 py-1", // 8dp all sides
|
|
9
|
+
maxWidth: "max-w-50",
|
|
10
|
+
},
|
|
11
|
+
RichTooltip: {
|
|
12
|
+
containerColor: "var(--md-sys-color-surface-container)",
|
|
13
|
+
elevation: "shadow-md", // ElevationTokens.Level2 (approximate with shadow-md)
|
|
14
|
+
shape: "rounded-[12px]", // CornerMedium = 12dp
|
|
15
|
+
paddingTop: "pt-3", // 12dp
|
|
16
|
+
paddingBottom: "pb-2", // 8dp
|
|
17
|
+
paddingX: "px-4", // 16dp
|
|
18
|
+
maxWidth: "max-w-80",
|
|
19
|
+
subheadColor: "var(--md-sys-color-on-surface-variant)",
|
|
20
|
+
subheadFont: "text-[14px] font-medium leading-[20px]", // TitleSmall
|
|
21
|
+
bodyColor: "var(--md-sys-color-on-surface-variant)",
|
|
22
|
+
bodyFont: "text-[14px] font-normal leading-[20px]", // BodyMedium
|
|
23
|
+
actionColor: "var(--md-sys-color-primary)",
|
|
24
|
+
actionFont: "text-[14px] font-medium leading-[20px]", // LabelLarge
|
|
25
|
+
},
|
|
26
|
+
} as const;
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import type * as React from "react";
|
|
2
|
+
|
|
3
|
+
export type TooltipPlacement = "top" | "bottom" | "left" | "right" | "auto";
|
|
4
|
+
export type TooltipTrigger =
|
|
5
|
+
| "hover"
|
|
6
|
+
| "focus"
|
|
7
|
+
| "click"
|
|
8
|
+
| "long-press"
|
|
9
|
+
| "manual";
|
|
10
|
+
|
|
11
|
+
export interface TooltipStateConfig {
|
|
12
|
+
initialVisible?: boolean;
|
|
13
|
+
isPersistent?: boolean;
|
|
14
|
+
duration?: number;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface TooltipState {
|
|
18
|
+
isVisible: boolean;
|
|
19
|
+
show: () => void;
|
|
20
|
+
dismiss: () => void;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export interface CaretConfig {
|
|
24
|
+
enabled: boolean;
|
|
25
|
+
width?: number;
|
|
26
|
+
height?: number;
|
|
27
|
+
customPath?: string;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export interface TooltipBoxProps {
|
|
31
|
+
children: React.ReactNode;
|
|
32
|
+
tooltip: React.ReactNode;
|
|
33
|
+
placement?: TooltipPlacement;
|
|
34
|
+
trigger?: TooltipTrigger | TooltipTrigger[];
|
|
35
|
+
state?: TooltipState;
|
|
36
|
+
spacingFromAnchor?: number;
|
|
37
|
+
disabled?: boolean;
|
|
38
|
+
className?: string;
|
|
39
|
+
showDelay?: number;
|
|
40
|
+
hideDelay?: number;
|
|
41
|
+
"aria-label"?: string;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export interface PlainTooltipProps
|
|
45
|
+
extends React.HTMLAttributes<HTMLDivElement> {
|
|
46
|
+
children: React.ReactNode;
|
|
47
|
+
caret?: CaretConfig | null;
|
|
48
|
+
maxWidth?: number;
|
|
49
|
+
className?: string;
|
|
50
|
+
containerColor?: string;
|
|
51
|
+
textColor?: string;
|
|
52
|
+
"data-side"?: "top" | "bottom" | "left" | "right";
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export interface RichTooltipProps
|
|
56
|
+
extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
|
|
57
|
+
children?: React.ReactNode;
|
|
58
|
+
title?: React.ReactNode;
|
|
59
|
+
action?: React.ReactNode;
|
|
60
|
+
caret?: CaretConfig | null;
|
|
61
|
+
maxWidth?: number;
|
|
62
|
+
className?: string;
|
|
63
|
+
colors?: {
|
|
64
|
+
container?: string;
|
|
65
|
+
title?: string;
|
|
66
|
+
body?: string;
|
|
67
|
+
action?: string;
|
|
68
|
+
};
|
|
69
|
+
"data-side"?: "top" | "bottom" | "left" | "right";
|
|
70
|
+
}
|