UNPKG

@crossed/ui

Version:

A universal & performant styling library for React Native, Next.js & React

88 lines (87 loc) 2.87 kB
var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __hasOwnProp = Object.prototype.hasOwnProperty; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); var Tooltip_exports = {}; __export(Tooltip_exports, { Tooltip: () => Tooltip }); module.exports = __toCommonJS(Tooltip_exports); var import_jsx_runtime = require("react/jsx-runtime"); var import_core = require("@crossed/core"); var import_typography = require("../typography"); var import_styled = require("@crossed/styled"); var import_overlay = require("../overlay"); var import_react = require("react"); const tooltipStyles = (0, import_styled.inlineStyle)(({ colors, space }) => ({ base: { backgroundColor: colors.text.primary, borderRadius: 16, paddingVertical: space.md, paddingHorizontal: space.lg, maxWidth: 276 }, web: { base: { width: "max-content" } } })); const TooltipRoot = (0, import_react.memo)( ({ children, placement = "bottom", triggerStrategy = "onPointerEnter", ...props }) => { return /* @__PURE__ */ (0, import_jsx_runtime.jsx)( import_overlay.Popover, { placement, triggerStrategy, ...props, children } ); } ); const TooltipTrigger = ({ ...props }) => { return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_overlay.Popover.Trigger, { ...props }); }; const TooltipContent = ({ children, style }) => { return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_overlay.Popover.Content, { style: (0, import_styled.composeStyles)(tooltipStyles, style), children }); }; const TooltipText = (props) => { return /* @__PURE__ */ (0, import_jsx_runtime.jsx)( import_typography.Text, { ...props, style: (0, import_styled.composeStyles)( (0, import_styled.inlineStyle)(({ colors }) => ({ media: { md: { color: colors.text.invert } } })), props.style ) } ); }; TooltipText.displayName = "Tooltip.Text"; const Tooltip = (0, import_core.withStaticProperties)(TooltipRoot, { Trigger: TooltipTrigger, Content: TooltipContent, Text: TooltipText }); // Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { Tooltip }); //# sourceMappingURL=Tooltip.js.map