UNPKG

@heroui/theme

Version:

The default theme for HeroUI components

611 lines (598 loc) 15.7 kB
"use strict"; 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); // src/components/dropdown.ts var dropdown_exports = {}; __export(dropdown_exports, { dropdown: () => dropdown, dropdownItem: () => dropdownItem, dropdownMenu: () => dropdownMenu, dropdownSection: () => dropdownSection }); module.exports = __toCommonJS(dropdown_exports); // src/utils/tv.ts var import_tailwind_variants = require("tailwind-variants"); // src/utilities/transition.ts var DEFAULT_TRANSITION_DURATION = "250ms"; var transition_default = { /** * Transition utilities */ ".transition-background": { "transition-property": "background", "transition-timing-function": "ease", "transition-duration": DEFAULT_TRANSITION_DURATION }, ".transition-colors-opacity": { "transition-property": "color, background-color, border-color, text-decoration-color, fill, stroke, opacity", "transition-timing-function": "ease", "transition-duration": DEFAULT_TRANSITION_DURATION }, ".transition-width": { "transition-property": "width", "transition-timing-function": "ease", "transition-duration": DEFAULT_TRANSITION_DURATION }, ".transition-height": { "transition-property": "height", "transition-timing-function": "ease", "transition-duration": DEFAULT_TRANSITION_DURATION }, ".transition-size": { "transition-property": "width, height", "transition-timing-function": "ease", "transition-duration": DEFAULT_TRANSITION_DURATION }, ".transition-left": { "transition-property": "left", "transition-timing-function": "ease", "transition-duration": DEFAULT_TRANSITION_DURATION }, ".transition-transform-opacity": { "transition-property": "transform, scale, opacity rotate", "transition-timing-function": "ease", "transition-duration": DEFAULT_TRANSITION_DURATION }, ".transition-transform-background": { "transition-property": "transform, scale, background", "transition-timing-function": "ease", "transition-duration": DEFAULT_TRANSITION_DURATION }, ".transition-transform-colors": { "transition-property": "transform, scale, color, background, background-color, border-color, text-decoration-color, fill, stroke", "transition-timing-function": "ease", "transition-duration": DEFAULT_TRANSITION_DURATION }, ".transition-transform-colors-opacity": { "transition-property": "transform, scale, color, background, background-color, border-color, text-decoration-color, fill, stroke, opacity", "transition-timing-function": "ease", "transition-duration": DEFAULT_TRANSITION_DURATION } }; // src/utilities/custom.ts var custom_default = { /** * Custom utilities */ ".leading-inherit": { "line-height": "inherit" }, ".bg-img-inherit": { "background-image": "inherit" }, ".bg-clip-inherit": { "background-clip": "inherit" }, ".text-fill-inherit": { "-webkit-text-fill-color": "inherit" }, ".tap-highlight-transparent": { "-webkit-tap-highlight-color": "transparent" }, ".input-search-cancel-button-none": { "&::-webkit-search-cancel-button": { "-webkit-appearance": "none" } } }; // src/utilities/scrollbar-hide.ts var scrollbar_hide_default = { /** * Scroll Hide */ ".scrollbar-hide": { /* IE and Edge */ "-ms-overflow-style": "none", /* Firefox */ "scrollbar-width": "none", /* Safari and Chrome */ "&::-webkit-scrollbar": { display: "none" } }, ".scrollbar-default": { /* IE and Edge */ "-ms-overflow-style": "auto", /* Firefox */ "scrollbar-width": "auto", /* Safari and Chrome */ "&::-webkit-scrollbar": { display: "block" } } }; // src/utilities/text.ts var text_default = { /** * Text utilities */ ".text-tiny": { "font-size": "var(--heroui-font-size-tiny)", "line-height": "var(--heroui-line-height-tiny)" }, ".text-small": { "font-size": "var(--heroui-font-size-small)", "line-height": "var(--heroui-line-height-small)" }, ".text-medium": { "font-size": "var(--heroui-font-size-medium)", "line-height": "var(--heroui-line-height-medium)" }, ".text-large": { "font-size": "var(--heroui-font-size-large)", "line-height": "var(--heroui-line-height-large)" } }; // src/utilities/animation.ts var animation_default = { /** Animation Utilities */ ".spinner-bar-animation": { "animation-delay": "calc(-1.2s + (0.1s * var(--bar-index)))", transform: "rotate(calc(30deg * var(--bar-index)))translate(140%)" }, ".spinner-dot-animation": { "animation-delay": "calc(250ms * var(--dot-index))" }, ".spinner-dot-blink-animation": { "animation-delay": "calc(200ms * var(--dot-index))" } }; // src/utilities/index.ts var utilities = { ...custom_default, ...transition_default, ...scrollbar_hide_default, ...text_default, ...animation_default }; // src/utils/tw-merge-config.ts var COMMON_UNITS = ["small", "medium", "large"]; var twMergeConfig = { theme: { spacing: ["divider"], radius: COMMON_UNITS }, classGroups: { shadow: [{ shadow: COMMON_UNITS }], opacity: [{ opacity: ["disabled"] }], "font-size": [{ text: ["tiny", ...COMMON_UNITS] }], "border-w": [{ border: COMMON_UNITS }], "bg-image": [ "bg-stripe-gradient-default", "bg-stripe-gradient-primary", "bg-stripe-gradient-secondary", "bg-stripe-gradient-success", "bg-stripe-gradient-warning", "bg-stripe-gradient-danger" ], transition: Object.keys(utilities).filter((key) => key.includes(".transition")).map((key) => key.replace(".", "")) // remove the dot from the key, .transition-background -> transition-background } }; // src/utils/tv.ts var tv = (options, config) => { var _a, _b, _c; return (0, import_tailwind_variants.tv)(options, { ...config, twMerge: (_a = config == null ? void 0 : config.twMerge) != null ? _a : true, twMergeConfig: { ...config == null ? void 0 : config.twMergeConfig, theme: { ...(_b = config == null ? void 0 : config.twMergeConfig) == null ? void 0 : _b.theme, ...twMergeConfig.theme }, classGroups: { ...(_c = config == null ? void 0 : config.twMergeConfig) == null ? void 0 : _c.classGroups, ...twMergeConfig.classGroups } } }); }; // src/utils/classes.ts var dataFocusVisibleClasses = [ "outline-solid outline-transparent", "data-[focus-visible=true]:z-10", "data-[focus-visible=true]:outline-2", "data-[focus-visible=true]:outline-focus", "data-[focus-visible=true]:outline-offset-2" ]; // src/components/dropdown.ts var dropdown = tv({ base: ["w-full", "p-1", "min-w-[200px]"] }); var dropdownItem = tv({ slots: { base: [ "flex", "group", "gap-2", "items-center", "justify-between", "relative", "px-2", "py-1.5", "w-full", "h-full", "box-border", "rounded-small", "outline-solid outline-transparent", "cursor-pointer", "tap-highlight-transparent", "data-[pressed=true]:opacity-70", // focus ring ...dataFocusVisibleClasses, "data-[focus-visible=true]:dark:ring-offset-background-content1" ], wrapper: "w-full flex flex-col items-start justify-center", title: "flex-1 text-small font-normal truncate", description: ["w-full", "text-tiny", "text-foreground-500", "group-hover:text-current"], selectedIcon: ["text-inherit", "w-3", "h-3", "shrink-0"], shortcut: [ "px-1", "py-0.5", "rounded-sm", "font-sans", "text-foreground-500", "text-tiny", "border-small", "border-default-300", "group-hover:border-current" ] }, variants: { variant: { solid: { base: "" }, bordered: { base: "border-medium border-transparent bg-transparent" }, light: { base: "bg-transparent" }, faded: { base: "border-small border-transparent hover:border-default data-[hover=true]:bg-default-100" }, flat: { base: "" }, shadow: { base: "data-[hover=true]:shadow-lg" } }, color: { default: {}, primary: {}, secondary: {}, success: {}, warning: {}, danger: {} }, isDisabled: { true: { base: "opacity-disabled pointer-events-none" } }, disableAnimation: { true: {}, false: {} } }, defaultVariants: { variant: "solid", color: "default" }, compoundVariants: [ // solid / color { variant: "solid", color: "default", class: { base: "data-[hover=true]:bg-default data-[hover=true]:text-default-foreground" } }, { variant: "solid", color: "primary", class: { base: "data-[hover=true]:bg-primary data-[hover=true]:text-primary-foreground" } }, { variant: "solid", color: "secondary", class: { base: "data-[hover=true]:bg-secondary data-[hover=true]:text-secondary-foreground" } }, { variant: "solid", color: "success", class: { base: "data-[hover=true]:bg-success data-[hover=true]:text-success-foreground" } }, { variant: "solid", color: "warning", class: { base: "data-[hover=true]:bg-warning data-[hover=true]:text-warning-foreground" } }, { variant: "solid", color: "danger", class: { base: "data-[hover=true]:bg-danger data-[hover=true]:text-danger-foreground" } }, // shadow / color { variant: "shadow", color: "default", class: { base: "data-[hover=true]:shadow-default/50 data-[hover=true]:bg-default data-[hover=true]:text-default-foreground" } }, { variant: "shadow", color: "primary", class: { base: "data-[hover=true]:shadow-primary/30 data-[hover=true]:bg-primary data-[hover=true]:text-primary-foreground" } }, { variant: "shadow", color: "secondary", class: { base: "data-[hover=true]:shadow-secondary/30 data-[hover=true]:bg-secondary data-[hover=true]:text-secondary-foreground" } }, { variant: "shadow", color: "success", class: { base: "data-[hover=true]:shadow-success/30 data-[hover=true]:bg-success data-[hover=true]:text-success-foreground" } }, { variant: "shadow", color: "warning", class: { base: "data-[hover=true]:shadow-warning/30 data-[hover=true]:bg-warning data-[hover=true]:text-warning-foreground" } }, { variant: "shadow", color: "danger", class: { base: "data-[hover=true]:shadow-danger/30 data-[hover=true]:bg-danger data-[hover=true]:text-danger-foreground" } }, // bordered / color { variant: "bordered", color: "default", class: { base: "data-[hover=true]:border-default" } }, { variant: "bordered", color: "primary", class: { base: "data-[hover=true]:border-primary data-[hover=true]:text-primary" } }, { variant: "bordered", color: "secondary", class: { base: "data-[hover=true]:border-secondary data-[hover=true]:text-secondary" } }, { variant: "bordered", color: "success", class: { base: "data-[hover=true]:border-success data-[hover=true]:text-success" } }, { variant: "bordered", color: "warning", class: { base: "data-[hover=true]:border-warning data-[hover=true]:text-warning" } }, { variant: "bordered", color: "danger", class: { base: "data-[hover=true]:border-danger data-[hover=true]:text-danger" } }, // flat / color { variant: "flat", color: "default", class: { base: "data-[hover=true]:bg-default/40 data-[hover=true]:text-default-foreground" } }, { variant: "flat", color: "primary", class: { base: "data-[hover=true]:bg-primary/20 data-[hover=true]:text-primary" } }, { variant: "flat", color: "secondary", class: { base: "data-[hover=true]:bg-secondary/20 data-[hover=true]:text-secondary" } }, { variant: "flat", color: "success", class: { base: "data-[hover=true]:bg-success/20 data-[hover=true]:text-success " } }, { variant: "flat", color: "warning", class: { base: "data-[hover=true]:bg-warning/20 data-[hover=true]:text-warning" } }, { variant: "flat", color: "danger", class: { base: "data-[hover=true]:bg-danger/20 data-[hover=true]:text-danger" } }, // faded / color { variant: "faded", color: "default", class: { base: "data-[hover=true]:text-default-foreground" } }, { variant: "faded", color: "primary", class: { base: "data-[hover=true]:text-primary" } }, { variant: "faded", color: "secondary", class: { base: "data-[hover=true]:text-secondary" } }, { variant: "faded", color: "success", class: { base: "data-[hover=true]:text-success" } }, { variant: "faded", color: "warning", class: { base: "data-[hover=true]:text-warning" } }, { variant: "faded", color: "danger", class: { base: "data-[hover=true]:text-danger" } }, // light / color { variant: "light", color: "default", class: { base: "data-[hover=true]:text-default-500" } }, { variant: "light", color: "primary", class: { base: "data-[hover=true]:text-primary" } }, { variant: "light", color: "secondary", class: { base: "data-[hover=true]:text-secondary" } }, { variant: "light", color: "success", class: { base: "data-[hover=true]:text-success" } }, { variant: "light", color: "warning", class: { base: "data-[hover=true]:text-warning" } }, { variant: "light", color: "danger", class: { base: "data-[hover=true]:text-danger" } } ] }); var dropdownSection = tv({ slots: { base: "relative mb-2", heading: "pl-1 text-tiny text-foreground-500", group: "data-[has-title=true]:pt-1", divider: "mt-2" } }); var dropdownMenu = tv({ base: "w-full flex flex-col gap-0.5 p-1" }); // Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { dropdown, dropdownItem, dropdownMenu, dropdownSection });