mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
158 lines
5.2 KiB
JavaScript
158 lines
5.2 KiB
JavaScript
"use strict";
|
|
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(
|
|
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
mod
|
|
));
|
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
|
|
// src/index.tsx
|
|
var src_exports = {};
|
|
__export(src_exports, {
|
|
Button: () => Button,
|
|
Input: () => Input,
|
|
RadialProgressBar: () => RadialProgressBar,
|
|
TextArea: () => TextArea
|
|
});
|
|
module.exports = __toCommonJS(src_exports);
|
|
|
|
// src/buttons/index.tsx
|
|
var React = __toESM(require("react"));
|
|
var Button = () => {
|
|
return /* @__PURE__ */ React.createElement("button", null, "button");
|
|
};
|
|
|
|
// src/form-fields/input.tsx
|
|
var React2 = __toESM(require("react"));
|
|
var Input = React2.forwardRef((props, ref) => {
|
|
const {
|
|
id,
|
|
type,
|
|
value,
|
|
name,
|
|
onChange,
|
|
className = "",
|
|
mode = "primary",
|
|
size = "md",
|
|
hasError = false,
|
|
placeholder = "",
|
|
disabled = false
|
|
} = props;
|
|
return /* @__PURE__ */ React2.createElement("input", {
|
|
id,
|
|
ref,
|
|
type,
|
|
value,
|
|
name,
|
|
onChange,
|
|
placeholder,
|
|
disabled,
|
|
className: `block rounded-md bg-transparent text-sm focus:outline-none placeholder-custom-text-400 ${mode === "primary" ? "rounded-md border border-custom-border-200" : mode === "transparent" ? "rounded border-none bg-transparent ring-0 transition-all focus:ring-1 focus:ring-custom-primary" : mode === "true-transparent" ? "rounded border-none bg-transparent ring-0" : ""} ${hasError ? "border-red-500" : ""} ${hasError && mode === "primary" ? "bg-red-500/20" : ""} ${size === "sm" ? "px-3 py-2" : size === "lg" ? "p-3" : ""} ${className}`
|
|
});
|
|
});
|
|
Input.displayName = "form-input-field";
|
|
|
|
// src/form-fields/textarea.tsx
|
|
var React3 = __toESM(require("react"));
|
|
var useAutoSizeTextArea = (textAreaRef, value) => {
|
|
React3.useEffect(() => {
|
|
if (textAreaRef) {
|
|
textAreaRef.style.height = "0px";
|
|
const scrollHeight = textAreaRef.scrollHeight;
|
|
textAreaRef.style.height = scrollHeight + "px";
|
|
}
|
|
}, [textAreaRef, value]);
|
|
};
|
|
var TextArea = React3.forwardRef(
|
|
(props, ref) => {
|
|
const {
|
|
id,
|
|
name,
|
|
placeholder = "",
|
|
value = "",
|
|
rows = 1,
|
|
cols = 1,
|
|
disabled,
|
|
onChange,
|
|
mode = "primary",
|
|
hasError = false,
|
|
className = ""
|
|
} = props;
|
|
const textAreaRef = React3.useRef(ref);
|
|
ref && useAutoSizeTextArea(textAreaRef == null ? void 0 : textAreaRef.current, value);
|
|
return /* @__PURE__ */ React3.createElement("textarea", {
|
|
id,
|
|
name,
|
|
ref: textAreaRef,
|
|
placeholder,
|
|
value,
|
|
rows,
|
|
cols,
|
|
disabled,
|
|
onChange,
|
|
className: `no-scrollbar w-full bg-transparent placeholder-custom-text-400 px-3 py-2 outline-none ${mode === "primary" ? "rounded-md border border-custom-border-200" : mode === "transparent" ? "rounded border-none bg-transparent ring-0 transition-all focus:ring-1 focus:ring-theme" : ""} ${hasError ? "border-red-500" : ""} ${hasError && mode === "primary" ? "bg-red-100" : ""} ${className}`
|
|
});
|
|
}
|
|
);
|
|
|
|
// src/progress/radial-progress.tsx
|
|
var import_react = __toESM(require("react"));
|
|
var RadialProgressBar = (props) => {
|
|
const { progress } = props;
|
|
const [circumference, setCircumference] = (0, import_react.useState)(0);
|
|
(0, import_react.useEffect)(() => {
|
|
const radius = 40;
|
|
const circumference2 = 2 * Math.PI * radius;
|
|
setCircumference(circumference2);
|
|
}, []);
|
|
const progressOffset = (100 - progress) / 100 * circumference;
|
|
return /* @__PURE__ */ import_react.default.createElement("div", {
|
|
className: "relative h-4 w-4"
|
|
}, /* @__PURE__ */ import_react.default.createElement("svg", {
|
|
className: "absolute top-0 left-0",
|
|
viewBox: "0 0 100 100"
|
|
}, /* @__PURE__ */ import_react.default.createElement("circle", {
|
|
className: "stroke-current opacity-10",
|
|
cx: "50",
|
|
cy: "50",
|
|
r: "40",
|
|
strokeWidth: "12",
|
|
fill: "none",
|
|
strokeDasharray: `${circumference} ${circumference}`
|
|
}), /* @__PURE__ */ import_react.default.createElement("circle", {
|
|
className: `stroke-current`,
|
|
cx: "50",
|
|
cy: "50",
|
|
r: "40",
|
|
strokeWidth: "12",
|
|
fill: "none",
|
|
strokeDasharray: `${circumference} ${circumference}`,
|
|
strokeDashoffset: progressOffset,
|
|
transform: "rotate(-90 50 50)"
|
|
})));
|
|
};
|
|
// Annotate the CommonJS export names for ESM import in node:
|
|
0 && (module.exports = {
|
|
Button,
|
|
Input,
|
|
RadialProgressBar,
|
|
TextArea
|
|
});
|