@helpwave/hightide
Version:
helpwave's component and theming library
305 lines (304 loc) • 10.3 kB
JavaScript
var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf;
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 __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
// If the importer is in node compatibility mode or this is not an ESM
// file that has been converted to a CommonJS file using a Babel-
// compatible transform (i.e. "__esModule" has not been set), then set
// "default" to the CommonJS "module.exports" for node compatibility.
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
mod
));
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/components/user-action/Button.tsx
var Button_exports = {};
__export(Button_exports, {
ButtonColorUtil: () => ButtonColorUtil,
ButtonUtil: () => ButtonUtil,
IconButton: () => IconButton,
IconButtonUtil: () => IconButtonUtil,
OutlineButton: () => OutlineButton,
SolidButton: () => SolidButton,
TextButton: () => TextButton
});
module.exports = __toCommonJS(Button_exports);
var import_react = require("react");
var import_clsx = __toESM(require("clsx"));
var import_jsx_runtime = require("react/jsx-runtime");
var ButtonColorUtil = {
solid: ["primary", "secondary", "tertiary", "positive", "warning", "negative", "neutral"],
text: ["primary", "negative", "neutral"],
outline: ["primary"]
};
var IconButtonUtil = {
icon: [...ButtonColorUtil.solid, "transparent"]
};
var paddingMapping = {
small: "btn-sm",
medium: "btn-md",
large: "btn-lg"
};
var iconPaddingMapping = {
tiny: "icon-btn-xs",
small: "icon-btn-sm",
medium: "icon-btn-md",
large: "icon-btn-lg"
};
var ButtonUtil = {
paddingMapping,
iconPaddingMapping
};
var SolidButton = (0, import_react.forwardRef)(function SolidButton2({
children,
color = "primary",
size = "medium",
startIcon,
endIcon,
onClick,
className,
...restProps
}, ref) {
const colorClasses = {
primary: "not-disabled:bg-button-solid-primary-background not-disabled:text-button-solid-primary-text",
secondary: "not-disabled:bg-button-solid-secondary-background not-disabled:text-button-solid-secondary-text",
tertiary: "not-disabled:bg-button-solid-tertiary-background not-disabled:text-button-solid-tertiary-text",
positive: "not-disabled:bg-button-solid-positive-background not-disabled:text-button-solid-positive-text",
warning: "not-disabled:bg-button-solid-warning-background not-disabled:text-button-solid-warning-text",
negative: "not-disabled:bg-button-solid-negative-background not-disabled:text-button-solid-negative-text",
neutral: "not-disabled:bg-button-solid-neutral-background not-disabled:text-button-solid-neutral-text"
}[color];
const iconColorClasses = {
primary: "not-group-disabled:text-button-solid-primary-icon",
secondary: "not-group-disabled:text-button-solid-secondary-icon",
tertiary: "not-group-disabled:text-button-solid-tertiary-icon",
positive: "not-group-disabled:text-button-solid-positive-icon",
warning: "not-group-disabled:text-button-solid-warning-icon",
negative: "not-group-disabled:text-button-solid-negative-icon",
neutral: "not-group-disabled:text-button-solid-neutral-icon"
}[color];
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
"button",
{
ref,
onClick,
className: (0, import_clsx.default)(
"group font-semibold",
colorClasses,
"not-disabled:hover:brightness-90",
"disabled:text-disabled-text disabled:bg-disabled-background",
ButtonUtil.paddingMapping[size],
className
),
...restProps,
children: [
startIcon && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
"span",
{
className: (0, import_clsx.default)(
iconColorClasses,
"group-disabled:text-disabled-icon"
),
children: startIcon
}
),
children,
endIcon && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
"span",
{
className: (0, import_clsx.default)(
iconColorClasses,
"group-disabled:text-disabled-icon"
),
children: endIcon
}
)
]
}
);
});
var OutlineButton = ({
children,
color = "primary",
size = "medium",
startIcon,
endIcon,
onClick,
className,
...restProps
}) => {
const colorClasses = {
primary: "not-disabled:border-button-outline-primary-text not-disabled:text-button-outline-primary-text"
}[color];
const iconColorClasses = {
primary: "not-group-disabled:text-button-outline-primary-icon"
}[color];
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
"button",
{
onClick,
className: (0, import_clsx.default)(
"group font-semibold bg-transparent border-2 ",
"not-disabled:hover:brightness-80",
colorClasses,
"disabled:text-disabled-text disabled:border-disabled-outline",
ButtonUtil.paddingMapping[size],
className
),
...restProps,
children: [
startIcon && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
"span",
{
className: (0, import_clsx.default)(
iconColorClasses,
"group-disabled:text-disabled-icon"
),
children: startIcon
}
),
children,
endIcon && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
"span",
{
className: (0, import_clsx.default)(
iconColorClasses,
"group-disabled:text-disabled-icon"
),
children: endIcon
}
)
]
}
);
};
var TextButton = ({
children,
color = "neutral",
size = "medium",
startIcon,
endIcon,
onClick,
coloredHoverBackground = true,
className,
...restProps
}) => {
const colorClasses = {
primary: "not-disabled:bg-transparent not-disabled:text-button-text-primary-text",
negative: "not-disabled:bg-transparent not-disabled:text-button-text-negative-text",
neutral: "not-disabled:bg-transparent not-disabled:text-button-text-neutral-text"
}[color];
const backgroundColor = {
primary: "not-disabled:hover:bg-button-text-primary-text/20",
negative: "not-disabled:hover:bg-button-text-negative-text/20",
neutral: "not-disabled:hover:bg-button-text-neutral-text/20"
}[color];
const iconColorClasses = {
primary: "not-group-disabled:text-button-text-primary-icon",
negative: "not-group-disabled:text-button-text-negative-icon",
neutral: "not-group-disabled:text-button-text-neutral-icon"
}[color];
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
"button",
{
onClick,
className: (0, import_clsx.default)(
"group font-semibold",
"disabled:text-disabled-text",
colorClasses,
{
[backgroundColor]: coloredHoverBackground,
"not-disabled:hover:bg-button-text-hover-background": !coloredHoverBackground
},
ButtonUtil.paddingMapping[size],
className
),
...restProps,
children: [
startIcon && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
"span",
{
className: (0, import_clsx.default)(
iconColorClasses,
"group-disabled:text-disabled-icon"
),
children: startIcon
}
),
children,
endIcon && /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
"span",
{
className: (0, import_clsx.default)(
iconColorClasses,
"group-disabled:text-disabled-icon"
),
children: endIcon
}
)
]
}
);
};
var IconButton = ({
children,
color = "primary",
size = "medium",
className,
...restProps
}) => {
const colorClasses = {
primary: "not-disabled:bg-button-solid-primary-background not-disabled:text-button-solid-primary-text",
secondary: "not-disabled:bg-button-solid-secondary-background not-disabled:text-button-solid-secondary-text",
tertiary: "not-disabled:bg-button-solid-tertiary-background not-disabled:text-button-solid-tertiary-text",
positive: "not-disabled:bg-button-solid-positive-background not-disabled:text-button-solid-positive-text",
warning: "not-disabled:bg-button-solid-warning-background not-disabled:text-button-solid-warning-text",
negative: "not-disabled:bg-button-solid-negative-background not-disabled:text-button-solid-negative-text",
neutral: "not-disabled:bg-button-solid-neutral-background not-disabled:text-button-solid-neutral-text",
transparent: "not-disabled:bg-transparent"
}[color];
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
"button",
{
className: (0, import_clsx.default)(
colorClasses,
"not-disabled:hover:brightness-90",
"disabled:text-disabled-text",
{
"disabled:bg-disabled-background": color !== "transparent",
"disabled:opacity-70": color === "transparent",
"not-disabled:hover:bg-button-text-hover-background": color === "transparent"
},
ButtonUtil.iconPaddingMapping[size],
className
),
...restProps,
children
}
);
};
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
ButtonColorUtil,
ButtonUtil,
IconButton,
IconButtonUtil,
OutlineButton,
SolidButton,
TextButton
});
//# sourceMappingURL=Button.js.map