@helpwave/hightide
Version:
helpwave's component and theming library
96 lines (95 loc) • 3.66 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/layout-and-navigation/Tile.tsx
var Tile_exports = {};
__export(Tile_exports, {
ListTile: () => ListTile,
Tile: () => Tile
});
module.exports = __toCommonJS(Tile_exports);
var import_clsx = __toESM(require("clsx"));
var import_lucide_react = require("lucide-react");
var import_jsx_runtime = require("react/jsx-runtime");
var Tile = ({
title,
titleClassName,
description,
descriptionClassName,
onClick,
isSelected = false,
disabled = false,
prefix,
suffix,
normalClassName = "hover:bg-primary/40 cursor-pointer",
selectedClassName = "bg-primary/20",
disabledClassName = "text-disabled-text bg-disabled-background cursor-not-allowed",
className
}) => {
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(
"div",
{
className: (0, import_clsx.default)(
"flex-row-2 w-full items-center",
{
[normalClassName]: onClick && !disabled,
[selectedClassName]: isSelected && !disabled,
[disabledClassName]: disabled
},
className
),
onClick: disabled ? void 0 : onClick,
children: [
prefix,
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { className: "flex-col-0 w-full", children: [
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { className: (0, import_clsx.default)(titleClassName ?? "textstyle-title-normal"), children: title }),
!!description && /* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { className: (0, import_clsx.default)(descriptionClassName ?? "textstyle-description"), children: description })
] }),
suffix ?? (isSelected ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_lucide_react.Check, { size: 24 }) : void 0)
]
}
);
};
var ListTile = ({
...props
}) => {
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
Tile,
{
...props,
titleClassName: props.titleClassName ?? "font-semibold",
className: (0, import_clsx.default)("px-2 py-1 rounded-md", props.className),
disabledClassName: props.disabledClassName ?? "text-disabled-text cursor-not-allowed"
}
);
};
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
ListTile,
Tile
});
//# sourceMappingURL=Tile.js.map