@deepnoid/ui 0.1.57 → 0.1.58
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +129 -124
- package/dist/chunk-A6HCKIVP.mjs +85 -0
- package/dist/components/table/definition-table2.d.mts +58 -0
- package/dist/components/table/definition-table2.d.ts +58 -0
- package/dist/components/table/definition-table2.js +438 -0
- package/dist/components/table/definition-table2.mjs +10 -0
- package/dist/components/table/index.d.mts +1 -0
- package/dist/components/table/index.d.ts +1 -0
- package/dist/components/table/index.js +76 -0
- package/dist/components/table/index.mjs +5 -1
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +392 -316
- package/dist/index.mjs +15 -11
- package/package.json +1 -1
- /package/dist/{chunk-DX3KXNP6.mjs → chunk-DLR42ZKG.mjs} +0 -0
package/dist/index.js
CHANGED
|
@@ -114,6 +114,7 @@ __export(index_exports, {
|
|
|
114
114
|
CircularProgress: () => circularProgress_default,
|
|
115
115
|
DateTimePicker: () => dateTimePicker_default,
|
|
116
116
|
DefinitionTable: () => definition_table_default,
|
|
117
|
+
DefinitionTable2: () => definition_table2_default,
|
|
117
118
|
Drawer: () => drawer_default,
|
|
118
119
|
FileUpload: () => fileUpload_default,
|
|
119
120
|
Icon: () => Icon_default,
|
|
@@ -7835,11 +7836,85 @@ var DefinitionTableStyle = tv({
|
|
|
7835
7836
|
}
|
|
7836
7837
|
});
|
|
7837
7838
|
|
|
7838
|
-
// src/components/
|
|
7839
|
+
// src/components/table/definition-table2.tsx
|
|
7839
7840
|
var import_react17 = require("react");
|
|
7840
|
-
var import_react_dom = require("react-dom");
|
|
7841
7841
|
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
7842
|
-
var
|
|
7842
|
+
var DEFAULT_CELL_CLASSES = "px-[10px] py-[9.5px] text-md border-r border-neutral-light";
|
|
7843
|
+
var FIRST_CELL_WIDTH_CLASS = "w-[120px] font-bold text-md text-body-foreground";
|
|
7844
|
+
var renderColGroup = (rows) => {
|
|
7845
|
+
let maxCols = 0;
|
|
7846
|
+
const colWidths = [];
|
|
7847
|
+
rows.forEach((row) => {
|
|
7848
|
+
let currentColCount = 0;
|
|
7849
|
+
row.cells.forEach((cell) => {
|
|
7850
|
+
currentColCount += cell.colSpan || 1;
|
|
7851
|
+
});
|
|
7852
|
+
maxCols = Math.max(maxCols, currentColCount);
|
|
7853
|
+
});
|
|
7854
|
+
colWidths[0] = "120px";
|
|
7855
|
+
rows.forEach((row) => {
|
|
7856
|
+
let colIndex = 0;
|
|
7857
|
+
row.cells.forEach((cell) => {
|
|
7858
|
+
const span = cell.colSpan || 1;
|
|
7859
|
+
if (colIndex > 0 && cell.width && cell.width !== "auto" && colIndex < maxCols) {
|
|
7860
|
+
colWidths[colIndex] = cell.width;
|
|
7861
|
+
}
|
|
7862
|
+
colIndex += span;
|
|
7863
|
+
});
|
|
7864
|
+
});
|
|
7865
|
+
const cols = [];
|
|
7866
|
+
for (let i = 0; i < maxCols; i++) {
|
|
7867
|
+
cols.push(/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("col", { style: colWidths[i] ? { width: colWidths[i] } : { width: "auto" } }, `col-${i}`));
|
|
7868
|
+
}
|
|
7869
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("colgroup", { children: cols });
|
|
7870
|
+
};
|
|
7871
|
+
var DefinitionTableRow2 = ({ cells, className }) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("tr", { className: `border-neutral-light min-h-[50px] border-b ${className || ""}`, children: cells.map((cell, colIndex) => {
|
|
7872
|
+
const isFirstCell = colIndex === 0;
|
|
7873
|
+
const combinedClassName = [isFirstCell ? FIRST_CELL_WIDTH_CLASS : "", clsx(DEFAULT_CELL_CLASSES, cell.className)].filter(Boolean).join(" ");
|
|
7874
|
+
let cellStyle;
|
|
7875
|
+
if (isFirstCell) {
|
|
7876
|
+
cellStyle = { width: "120px", minWidth: "120px", maxWidth: "120px" };
|
|
7877
|
+
} else if (cell.width && cell.width !== "auto") {
|
|
7878
|
+
cellStyle = { width: cell.width, minWidth: cell.width, maxWidth: cell.width };
|
|
7879
|
+
} else {
|
|
7880
|
+
cellStyle = { width: "100%" };
|
|
7881
|
+
}
|
|
7882
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
7883
|
+
"td",
|
|
7884
|
+
{
|
|
7885
|
+
className: combinedClassName,
|
|
7886
|
+
colSpan: cell.colSpan,
|
|
7887
|
+
rowSpan: cell.rowSpan,
|
|
7888
|
+
style: cellStyle,
|
|
7889
|
+
children: cell.content
|
|
7890
|
+
},
|
|
7891
|
+
colIndex
|
|
7892
|
+
);
|
|
7893
|
+
}) });
|
|
7894
|
+
var DefinitionTable2 = (0, import_react17.forwardRef)(({ rows = [], footer, classNames }, ref) => {
|
|
7895
|
+
const slots = (0, import_react17.useMemo)(() => DefinitionTableStyle2(), []);
|
|
7896
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: [
|
|
7897
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsxs)("table", { className: slots.table({ class: classNames == null ? void 0 : classNames.table }), children: [
|
|
7898
|
+
renderColGroup(rows),
|
|
7899
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("tbody", { children: rows.map((row, i) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(DefinitionTableRow2, { ...row, className: `${row.className || ""} ${i === 0 ? "first-row" : ""}` }, i)) })
|
|
7900
|
+
] }),
|
|
7901
|
+
footer && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("div", { children: footer })
|
|
7902
|
+
] });
|
|
7903
|
+
});
|
|
7904
|
+
DefinitionTable2.displayName = "DefinitionTable2";
|
|
7905
|
+
var definition_table2_default = DefinitionTable2;
|
|
7906
|
+
var DefinitionTableStyle2 = tv({
|
|
7907
|
+
slots: {
|
|
7908
|
+
base: ["flex", "flex-col", "gap-[30px]"],
|
|
7909
|
+
table: ["w-full", "table-auto", "border", "border-neutral-light"]
|
|
7910
|
+
}
|
|
7911
|
+
});
|
|
7912
|
+
|
|
7913
|
+
// src/components/select/select.tsx
|
|
7914
|
+
var import_react18 = require("react");
|
|
7915
|
+
var import_react_dom = require("react-dom");
|
|
7916
|
+
var import_jsx_runtime23 = require("react/jsx-runtime");
|
|
7917
|
+
var Select = (0, import_react18.forwardRef)((originalProps, ref) => {
|
|
7843
7918
|
var _a, _b;
|
|
7844
7919
|
const [props, variantProps] = mapPropsVariants(originalProps, select.variantKeys);
|
|
7845
7920
|
const {
|
|
@@ -7853,14 +7928,14 @@ var Select = (0, import_react17.forwardRef)((originalProps, ref) => {
|
|
|
7853
7928
|
multiple,
|
|
7854
7929
|
...inputProps
|
|
7855
7930
|
} = props;
|
|
7856
|
-
const slots = (0,
|
|
7857
|
-
const [selectedOptions, setSelectedOptions] = (0,
|
|
7858
|
-
const [targetRect, setTargetRect] = (0,
|
|
7859
|
-
const [optionWrapperHeight, setOptionWrapperHeight] = (0,
|
|
7860
|
-
const [isVisible, setIsVisible] = (0,
|
|
7861
|
-
const [isOpen, setIsOpen] = (0,
|
|
7862
|
-
const selectWrapperRef = (0,
|
|
7863
|
-
const optionWrapperRef = (0,
|
|
7931
|
+
const slots = (0, import_react18.useMemo)(() => select({ ...variantProps }), [variantProps]);
|
|
7932
|
+
const [selectedOptions, setSelectedOptions] = (0, import_react18.useState)(defaultSelectedOptions || []);
|
|
7933
|
+
const [targetRect, setTargetRect] = (0, import_react18.useState)(null);
|
|
7934
|
+
const [optionWrapperHeight, setOptionWrapperHeight] = (0, import_react18.useState)(0);
|
|
7935
|
+
const [isVisible, setIsVisible] = (0, import_react18.useState)(false);
|
|
7936
|
+
const [isOpen, setIsOpen] = (0, import_react18.useState)(false);
|
|
7937
|
+
const selectWrapperRef = (0, import_react18.useRef)(null);
|
|
7938
|
+
const optionWrapperRef = (0, import_react18.useRef)(null);
|
|
7864
7939
|
const handleToggleSelect = () => {
|
|
7865
7940
|
if (isOpen) {
|
|
7866
7941
|
setIsOpen(false);
|
|
@@ -7898,7 +7973,7 @@ var Select = (0, import_react17.forwardRef)((originalProps, ref) => {
|
|
|
7898
7973
|
setSelectedOptions(nextOptions);
|
|
7899
7974
|
onChange == null ? void 0 : onChange(nextOptions);
|
|
7900
7975
|
};
|
|
7901
|
-
(0,
|
|
7976
|
+
(0, import_react18.useEffect)(() => {
|
|
7902
7977
|
const handleClickOutside = (e) => {
|
|
7903
7978
|
var _a2;
|
|
7904
7979
|
if (optionWrapperRef.current && !optionWrapperRef.current.contains(e.target) && !((_a2 = selectWrapperRef.current) == null ? void 0 : _a2.contains(e.target))) {
|
|
@@ -7909,7 +7984,7 @@ var Select = (0, import_react17.forwardRef)((originalProps, ref) => {
|
|
|
7909
7984
|
window.addEventListener("mousedown", handleClickOutside);
|
|
7910
7985
|
return () => window.removeEventListener("mousedown", handleClickOutside);
|
|
7911
7986
|
}, []);
|
|
7912
|
-
(0,
|
|
7987
|
+
(0, import_react18.useEffect)(() => {
|
|
7913
7988
|
if (optionWrapperRef.current) {
|
|
7914
7989
|
setOptionWrapperHeight(optionWrapperRef.current.getBoundingClientRect().height);
|
|
7915
7990
|
}
|
|
@@ -7923,26 +7998,26 @@ var Select = (0, import_react17.forwardRef)((originalProps, ref) => {
|
|
|
7923
7998
|
onClick
|
|
7924
7999
|
}) => {
|
|
7925
8000
|
const slot = select({ ...variantProps, isSelected });
|
|
7926
|
-
return /* @__PURE__ */ (0,
|
|
8001
|
+
return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("div", { title: option.label, onClick, className: clsx(slot.option({ class: classNames == null ? void 0 : classNames.option })), children: [
|
|
7927
8002
|
option.label,
|
|
7928
|
-
isSelected && /* @__PURE__ */ (0,
|
|
8003
|
+
isSelected && /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Icon_default, { name: "check", size: originalProps.size })
|
|
7929
8004
|
] });
|
|
7930
8005
|
};
|
|
7931
8006
|
const isControlled = originalProps.value !== void 0;
|
|
7932
|
-
(0,
|
|
8007
|
+
(0, import_react18.useEffect)(() => {
|
|
7933
8008
|
if (isControlled) {
|
|
7934
8009
|
const valueArray = Array.isArray(originalProps.value) ? originalProps.value : [originalProps.value];
|
|
7935
8010
|
const matchedOptions = options.filter((opt) => valueArray.includes(opt.value));
|
|
7936
8011
|
setSelectedOptions(matchedOptions);
|
|
7937
8012
|
}
|
|
7938
8013
|
}, [originalProps.value, options]);
|
|
7939
|
-
(0,
|
|
8014
|
+
(0, import_react18.useEffect)(() => {
|
|
7940
8015
|
if (!isControlled && defaultSelectedOptions) {
|
|
7941
8016
|
setSelectedOptions(defaultSelectedOptions);
|
|
7942
8017
|
}
|
|
7943
8018
|
}, [defaultSelectedOptions]);
|
|
7944
|
-
return /* @__PURE__ */ (0,
|
|
7945
|
-
/* @__PURE__ */ (0,
|
|
8019
|
+
return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(import_jsx_runtime23.Fragment, { children: [
|
|
8020
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
|
|
7946
8021
|
"div",
|
|
7947
8022
|
{
|
|
7948
8023
|
className: clsx(
|
|
@@ -7950,9 +8025,9 @@ var Select = (0, import_react17.forwardRef)((originalProps, ref) => {
|
|
|
7950
8025
|
variantProps.direction === "horizon" ? slots.horizon({ class: classNames == null ? void 0 : classNames.horizon }) : slots.vertical({ class: classNames == null ? void 0 : classNames.vertical })
|
|
7951
8026
|
),
|
|
7952
8027
|
children: [
|
|
7953
|
-
label && /* @__PURE__ */ (0,
|
|
7954
|
-
/* @__PURE__ */ (0,
|
|
7955
|
-
/* @__PURE__ */ (0,
|
|
8028
|
+
label && /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("label", { className: slots.label({ class: classNames == null ? void 0 : classNames.label }), children: label }),
|
|
8029
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("div", { className: slots.wrapper({ class: classNames == null ? void 0 : classNames.wrapper }), children: [
|
|
8030
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
|
|
7956
8031
|
"div",
|
|
7957
8032
|
{
|
|
7958
8033
|
"data-expanded": isOpen,
|
|
@@ -7963,7 +8038,7 @@ var Select = (0, import_react17.forwardRef)((originalProps, ref) => {
|
|
|
7963
8038
|
ref: selectWrapperRef,
|
|
7964
8039
|
onClick: handleToggleSelect,
|
|
7965
8040
|
children: [
|
|
7966
|
-
/* @__PURE__ */ (0,
|
|
8041
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
7967
8042
|
"input",
|
|
7968
8043
|
{
|
|
7969
8044
|
...inputProps,
|
|
@@ -7978,8 +8053,8 @@ var Select = (0, import_react17.forwardRef)((originalProps, ref) => {
|
|
|
7978
8053
|
size: 0
|
|
7979
8054
|
}
|
|
7980
8055
|
),
|
|
7981
|
-
/* @__PURE__ */ (0,
|
|
7982
|
-
/* @__PURE__ */ (0,
|
|
8056
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)("input", { type: "hidden", name: inputProps.name, value: selectedValue }),
|
|
8057
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
7983
8058
|
Icon_default,
|
|
7984
8059
|
{
|
|
7985
8060
|
name: "brace-up",
|
|
@@ -7990,14 +8065,14 @@ var Select = (0, import_react17.forwardRef)((originalProps, ref) => {
|
|
|
7990
8065
|
]
|
|
7991
8066
|
}
|
|
7992
8067
|
),
|
|
7993
|
-
helperMessage && !errorMessage && /* @__PURE__ */ (0,
|
|
7994
|
-
errorMessage && /* @__PURE__ */ (0,
|
|
8068
|
+
helperMessage && !errorMessage && /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("p", { className: slots.helperMessage({ class: classNames == null ? void 0 : classNames.helperMessage }), children: helperMessage }),
|
|
8069
|
+
errorMessage && /* @__PURE__ */ (0, import_jsx_runtime23.jsx)("p", { className: clsx("error", slots.errorMessage({ class: classNames == null ? void 0 : classNames.errorMessage })), children: errorMessage })
|
|
7995
8070
|
] })
|
|
7996
8071
|
]
|
|
7997
8072
|
}
|
|
7998
8073
|
),
|
|
7999
8074
|
isVisible && (0, import_react_dom.createPortal)(
|
|
8000
|
-
/* @__PURE__ */ (0,
|
|
8075
|
+
/* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
8001
8076
|
"div",
|
|
8002
8077
|
{
|
|
8003
8078
|
ref: optionWrapperRef,
|
|
@@ -8014,7 +8089,7 @@ var Select = (0, import_react17.forwardRef)((originalProps, ref) => {
|
|
|
8014
8089
|
},
|
|
8015
8090
|
children: options.map((option) => {
|
|
8016
8091
|
const isSelected = selectedOptions.some((o) => o.value === option.value);
|
|
8017
|
-
return /* @__PURE__ */ (0,
|
|
8092
|
+
return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
8018
8093
|
Option,
|
|
8019
8094
|
{
|
|
8020
8095
|
option,
|
|
@@ -8186,16 +8261,16 @@ var select = tv({
|
|
|
8186
8261
|
});
|
|
8187
8262
|
|
|
8188
8263
|
// src/components/chip/chip.tsx
|
|
8189
|
-
var
|
|
8190
|
-
var
|
|
8191
|
-
var Chip = (0,
|
|
8264
|
+
var import_react19 = require("react");
|
|
8265
|
+
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
8266
|
+
var Chip = (0, import_react19.forwardRef)((originalProps, ref) => {
|
|
8192
8267
|
var _a;
|
|
8193
8268
|
const [rawProps, variantProps] = mapPropsVariants(originalProps, chipStyle.variantKeys);
|
|
8194
8269
|
const props = { ...rawProps, ...variantProps };
|
|
8195
8270
|
const Component = props.onClick ? "button" : "div";
|
|
8196
|
-
const slots = (0,
|
|
8197
|
-
const renderIcon = (name) => name ? /* @__PURE__ */ (0,
|
|
8198
|
-
return /* @__PURE__ */ (0,
|
|
8271
|
+
const slots = (0, import_react19.useMemo)(() => chipStyle({ ...variantProps }), [variantProps]);
|
|
8272
|
+
const renderIcon = (name) => name ? /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(Icon_default, { name, fill: true, size: props.size, className: slots.icon() }) : null;
|
|
8273
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
|
|
8199
8274
|
Component,
|
|
8200
8275
|
{
|
|
8201
8276
|
ref,
|
|
@@ -8371,13 +8446,13 @@ var chipStyle = tv({
|
|
|
8371
8446
|
});
|
|
8372
8447
|
|
|
8373
8448
|
// src/components/radio/radio.tsx
|
|
8374
|
-
var
|
|
8375
|
-
var
|
|
8376
|
-
var Radio = (0,
|
|
8449
|
+
var import_react20 = require("react");
|
|
8450
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
8451
|
+
var Radio = (0, import_react20.forwardRef)((originalProps, ref) => {
|
|
8377
8452
|
const [props, variantProps] = mapPropsVariants(originalProps, radioStyle.variantKeys);
|
|
8378
8453
|
const { children, classNames, labelPosition = "end", ...inputProps } = props;
|
|
8379
|
-
const slots = (0,
|
|
8380
|
-
return /* @__PURE__ */ (0,
|
|
8454
|
+
const slots = (0, import_react20.useMemo)(() => radioStyle({ ...variantProps }), [variantProps]);
|
|
8455
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)(
|
|
8381
8456
|
"label",
|
|
8382
8457
|
{
|
|
8383
8458
|
className: clsx(
|
|
@@ -8385,9 +8460,9 @@ var Radio = (0, import_react19.forwardRef)((originalProps, ref) => {
|
|
|
8385
8460
|
labelPosition === "start" && slots.labelReverse({ class: classNames == null ? void 0 : classNames.labelReverse })
|
|
8386
8461
|
),
|
|
8387
8462
|
children: [
|
|
8388
|
-
/* @__PURE__ */ (0,
|
|
8389
|
-
/* @__PURE__ */ (0,
|
|
8390
|
-
/* @__PURE__ */ (0,
|
|
8463
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { className: "hidden", children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("input", { ...inputProps, type: "radio", ref }) }),
|
|
8464
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: slots.outerDot({ class: classNames == null ? void 0 : classNames.outerDot }), children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: slots.innerDot({ class: classNames == null ? void 0 : classNames.innerDot }) }) }),
|
|
8465
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { className: slots.labelWrapper({ class: classNames == null ? void 0 : classNames.labelWrapper }), children: children && /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: slots.label({ class: classNames == null ? void 0 : classNames.label }), children }) })
|
|
8391
8466
|
]
|
|
8392
8467
|
}
|
|
8393
8468
|
);
|
|
@@ -8527,18 +8602,18 @@ var radioStyle = tv({
|
|
|
8527
8602
|
});
|
|
8528
8603
|
|
|
8529
8604
|
// src/components/switch/switch.tsx
|
|
8530
|
-
var
|
|
8531
|
-
var
|
|
8532
|
-
var
|
|
8533
|
-
var Switch = (0,
|
|
8605
|
+
var import_react21 = require("react");
|
|
8606
|
+
var import_tailwind_variants22 = require("tailwind-variants");
|
|
8607
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
8608
|
+
var Switch = (0, import_react21.forwardRef)((originalProps, ref) => {
|
|
8534
8609
|
const [rawProps, variantProps] = mapPropsVariants(originalProps, switchStyle.variantKeys);
|
|
8535
8610
|
const { size, color, isDisabled, disableAnimation, id, checked, onChange, classNames, ...inputProps } = {
|
|
8536
8611
|
...rawProps,
|
|
8537
8612
|
...variantProps
|
|
8538
8613
|
};
|
|
8539
|
-
const slots = (0,
|
|
8540
|
-
return /* @__PURE__ */ (0,
|
|
8541
|
-
/* @__PURE__ */ (0,
|
|
8614
|
+
const slots = (0, import_react21.useMemo)(() => switchStyle({ ...variantProps }), [variantProps]);
|
|
8615
|
+
return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)("label", { className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: [
|
|
8616
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
8542
8617
|
"input",
|
|
8543
8618
|
{
|
|
8544
8619
|
...inputProps,
|
|
@@ -8551,12 +8626,12 @@ var Switch = (0, import_react20.forwardRef)((originalProps, ref) => {
|
|
|
8551
8626
|
onChange
|
|
8552
8627
|
}
|
|
8553
8628
|
),
|
|
8554
|
-
/* @__PURE__ */ (0,
|
|
8629
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("span", { className: slots.outerWrapper({ class: classNames == null ? void 0 : classNames.outerWrapper }), children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("span", { className: slots.wrapper({ class: classNames == null ? void 0 : classNames.wrapper }), children: /* @__PURE__ */ (0, import_jsx_runtime26.jsx)("span", { className: slots.thumb({ class: classNames == null ? void 0 : classNames.thumb }) }) }) })
|
|
8555
8630
|
] });
|
|
8556
8631
|
});
|
|
8557
8632
|
Switch.displayName = "Switch";
|
|
8558
8633
|
var switch_default = Switch;
|
|
8559
|
-
var switchStyle = (0,
|
|
8634
|
+
var switchStyle = (0, import_tailwind_variants22.tv)({
|
|
8560
8635
|
slots: {
|
|
8561
8636
|
base: ["group/switch", "relative", "max-w-fit", "inline-flex", "items-center", "justify-start", "cursor-pointer"],
|
|
8562
8637
|
outerWrapper: [
|
|
@@ -8661,7 +8736,7 @@ var switchStyle = (0, import_tailwind_variants21.tv)({
|
|
|
8661
8736
|
});
|
|
8662
8737
|
|
|
8663
8738
|
// src/components/tooltip/tooltip.tsx
|
|
8664
|
-
var
|
|
8739
|
+
var import_react23 = require("react");
|
|
8665
8740
|
var import_react_dom2 = require("react-dom");
|
|
8666
8741
|
|
|
8667
8742
|
// src/components/tooltip/tooltip-utils.ts
|
|
@@ -8784,11 +8859,11 @@ var getTailStyles = (placement) => {
|
|
|
8784
8859
|
};
|
|
8785
8860
|
|
|
8786
8861
|
// src/components/tooltip/useTooltip.ts
|
|
8787
|
-
var
|
|
8862
|
+
var import_react22 = require("react");
|
|
8788
8863
|
var useTooltip = ({ placement, offset, targetRect }) => {
|
|
8789
|
-
const [tooltipPosition, setTooltipPosition] = (0,
|
|
8790
|
-
const tooltipRef = (0,
|
|
8791
|
-
(0,
|
|
8864
|
+
const [tooltipPosition, setTooltipPosition] = (0, import_react22.useState)({ x: 0, y: 0 });
|
|
8865
|
+
const tooltipRef = (0, import_react22.useRef)(null);
|
|
8866
|
+
(0, import_react22.useEffect)(() => {
|
|
8792
8867
|
if (targetRect && tooltipRef.current) {
|
|
8793
8868
|
const { width, height } = tooltipRef.current.getBoundingClientRect();
|
|
8794
8869
|
const scrollX = window.scrollX;
|
|
@@ -8818,29 +8893,29 @@ var useTooltip = ({ placement, offset, targetRect }) => {
|
|
|
8818
8893
|
};
|
|
8819
8894
|
|
|
8820
8895
|
// src/components/tooltip/tooltip.tsx
|
|
8821
|
-
var
|
|
8822
|
-
var Tooltip = (0,
|
|
8896
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
8897
|
+
var Tooltip = (0, import_react23.forwardRef)((originalProps, ref) => {
|
|
8823
8898
|
const [props, variantProps] = mapPropsVariants(originalProps, tooltipStyle.variantKeys);
|
|
8824
8899
|
const { placement = "top", offset = 5, delay = 100, persistent = false, classNames } = props;
|
|
8825
|
-
const slots = (0,
|
|
8826
|
-
const [targetRect, setTargetRect] = (0,
|
|
8900
|
+
const slots = (0, import_react23.useMemo)(() => tooltipStyle({ ...variantProps }), [variantProps]);
|
|
8901
|
+
const [targetRect, setTargetRect] = (0, import_react23.useState)(null);
|
|
8827
8902
|
const { tooltipPosition, tooltipRef } = useTooltip({
|
|
8828
8903
|
placement,
|
|
8829
8904
|
offset,
|
|
8830
8905
|
delay,
|
|
8831
8906
|
targetRect
|
|
8832
8907
|
});
|
|
8833
|
-
const childrenRef = (0,
|
|
8834
|
-
const delayTimeoutRef = (0,
|
|
8835
|
-
const getProps = (0,
|
|
8908
|
+
const childrenRef = (0, import_react23.useRef)(null);
|
|
8909
|
+
const delayTimeoutRef = (0, import_react23.useRef)(null);
|
|
8910
|
+
const getProps = (0, import_react23.useCallback)(
|
|
8836
8911
|
(slotKey, classNameKey) => ({
|
|
8837
8912
|
className: slots[slotKey]({ class: classNames == null ? void 0 : classNames[classNameKey] })
|
|
8838
8913
|
}),
|
|
8839
8914
|
[slots, classNames]
|
|
8840
8915
|
);
|
|
8841
|
-
const getBaseProps = (0,
|
|
8842
|
-
const getContentProps = (0,
|
|
8843
|
-
const showTooltip = (0,
|
|
8916
|
+
const getBaseProps = (0, import_react23.useCallback)(() => getProps("base", "base"), [getProps]);
|
|
8917
|
+
const getContentProps = (0, import_react23.useCallback)(() => getProps("content", "content"), [getProps]);
|
|
8918
|
+
const showTooltip = (0, import_react23.useCallback)(() => {
|
|
8844
8919
|
if (childrenRef.current) {
|
|
8845
8920
|
const rect = childrenRef.current.getBoundingClientRect();
|
|
8846
8921
|
setTargetRect({
|
|
@@ -8853,16 +8928,16 @@ var Tooltip = (0, import_react22.forwardRef)((originalProps, ref) => {
|
|
|
8853
8928
|
});
|
|
8854
8929
|
}
|
|
8855
8930
|
}, []);
|
|
8856
|
-
const hideTooltip = (0,
|
|
8931
|
+
const hideTooltip = (0, import_react23.useCallback)(() => {
|
|
8857
8932
|
if (!persistent) {
|
|
8858
8933
|
delayTimeoutRef.current = window.setTimeout(() => setTargetRect(null), delay);
|
|
8859
8934
|
}
|
|
8860
8935
|
}, [persistent, delay]);
|
|
8861
|
-
(0,
|
|
8936
|
+
(0, import_react23.useEffect)(() => {
|
|
8862
8937
|
if (persistent) showTooltip();
|
|
8863
8938
|
}, [persistent, showTooltip]);
|
|
8864
|
-
return /* @__PURE__ */ (0,
|
|
8865
|
-
/* @__PURE__ */ (0,
|
|
8939
|
+
return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(import_jsx_runtime27.Fragment, { children: [
|
|
8940
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
8866
8941
|
"div",
|
|
8867
8942
|
{
|
|
8868
8943
|
ref: (node) => {
|
|
@@ -8879,7 +8954,7 @@ var Tooltip = (0, import_react22.forwardRef)((originalProps, ref) => {
|
|
|
8879
8954
|
}
|
|
8880
8955
|
),
|
|
8881
8956
|
targetRect && (0, import_react_dom2.createPortal)(
|
|
8882
|
-
/* @__PURE__ */ (0,
|
|
8957
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
|
|
8883
8958
|
"div",
|
|
8884
8959
|
{
|
|
8885
8960
|
ref: tooltipRef,
|
|
@@ -8892,7 +8967,7 @@ var Tooltip = (0, import_react22.forwardRef)((originalProps, ref) => {
|
|
|
8892
8967
|
},
|
|
8893
8968
|
children: [
|
|
8894
8969
|
props.content,
|
|
8895
|
-
variantProps.tail && /* @__PURE__ */ (0,
|
|
8970
|
+
variantProps.tail && /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
8896
8971
|
"div",
|
|
8897
8972
|
{
|
|
8898
8973
|
className: `absolute h-2 w-2 rotate-45 bg-inherit ${getTailClassName(placement)}`,
|
|
@@ -8943,10 +9018,10 @@ var tooltipStyle = tv({
|
|
|
8943
9018
|
});
|
|
8944
9019
|
|
|
8945
9020
|
// src/components/modal/modal.tsx
|
|
8946
|
-
var
|
|
9021
|
+
var import_react24 = require("react");
|
|
8947
9022
|
var import_react_dom3 = require("react-dom");
|
|
8948
|
-
var
|
|
8949
|
-
var Modal = (0,
|
|
9023
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
9024
|
+
var Modal = (0, import_react24.forwardRef)((props, ref) => {
|
|
8950
9025
|
const [localProps, variantProps] = mapPropsVariants(props, modal.variantKeys);
|
|
8951
9026
|
const {
|
|
8952
9027
|
classNames,
|
|
@@ -8960,8 +9035,8 @@ var Modal = (0, import_react23.forwardRef)((props, ref) => {
|
|
|
8960
9035
|
onConfirm,
|
|
8961
9036
|
onCancel
|
|
8962
9037
|
} = localProps;
|
|
8963
|
-
const slots = (0,
|
|
8964
|
-
(0,
|
|
9038
|
+
const slots = (0, import_react24.useMemo)(() => modal(variantProps), [variantProps]);
|
|
9039
|
+
(0, import_react24.useEffect)(() => {
|
|
8965
9040
|
document.body.classList.toggle("overflow-hidden", !!isOpen);
|
|
8966
9041
|
if (!isOpen || isKeyboardDismissDisabled) return;
|
|
8967
9042
|
const handleKeyDown = (e) => {
|
|
@@ -8975,10 +9050,10 @@ var Modal = (0, import_react23.forwardRef)((props, ref) => {
|
|
|
8975
9050
|
}, [isOpen, isKeyboardDismissDisabled, onCancel]);
|
|
8976
9051
|
if (!isOpen) return null;
|
|
8977
9052
|
return (0, import_react_dom3.createPortal)(
|
|
8978
|
-
/* @__PURE__ */ (0,
|
|
8979
|
-
/* @__PURE__ */ (0,
|
|
8980
|
-
/* @__PURE__ */ (0,
|
|
8981
|
-
showCloseButton && /* @__PURE__ */ (0,
|
|
9053
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(import_jsx_runtime28.Fragment, { children: [
|
|
9054
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)(backdrop_default, { open: true }),
|
|
9055
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("div", { className: slots.modalWrapper({ class: classNames == null ? void 0 : classNames.modalWrapper }), children: [
|
|
9056
|
+
showCloseButton && /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
8982
9057
|
Icon_default,
|
|
8983
9058
|
{
|
|
8984
9059
|
size: "xl",
|
|
@@ -8987,12 +9062,12 @@ var Modal = (0, import_react23.forwardRef)((props, ref) => {
|
|
|
8987
9062
|
onClick: onCancel
|
|
8988
9063
|
}
|
|
8989
9064
|
),
|
|
8990
|
-
/* @__PURE__ */ (0,
|
|
8991
|
-
title && /* @__PURE__ */ (0,
|
|
8992
|
-
typeof content === "string" ? /* @__PURE__ */ (0,
|
|
8993
|
-
(cancelButtonText || confirmButtonText) && /* @__PURE__ */ (0,
|
|
8994
|
-
cancelButtonText && /* @__PURE__ */ (0,
|
|
8995
|
-
confirmButtonText && /* @__PURE__ */ (0,
|
|
9065
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("div", { className: slots.wrapper({ class: classNames == null ? void 0 : classNames.wrapper }), children: [
|
|
9066
|
+
title && /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("div", { className: slots.title({ class: classNames == null ? void 0 : classNames.title }), children: title }),
|
|
9067
|
+
typeof content === "string" ? /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("div", { className: slots.content({ class: classNames == null ? void 0 : classNames.content }), children: content }) : content,
|
|
9068
|
+
(cancelButtonText || confirmButtonText) && /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)("div", { className: slots.footer({ class: classNames == null ? void 0 : classNames.footer }), children: [
|
|
9069
|
+
cancelButtonText && /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(button_default, { variant: "soft", color: "neutral", fullWidth: true, onClick: onCancel, children: cancelButtonText }),
|
|
9070
|
+
confirmButtonText && /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(button_default, { color: props.color, fullWidth: true, onClick: onConfirm, children: confirmButtonText })
|
|
8996
9071
|
] })
|
|
8997
9072
|
] })
|
|
8998
9073
|
] }) })
|
|
@@ -9059,18 +9134,18 @@ var modal = tv({
|
|
|
9059
9134
|
});
|
|
9060
9135
|
|
|
9061
9136
|
// src/components/drawer/drawer.tsx
|
|
9062
|
-
var
|
|
9137
|
+
var import_react25 = require("react");
|
|
9063
9138
|
var import_react_dom4 = require("react-dom");
|
|
9064
|
-
var
|
|
9065
|
-
var Drawer = (0,
|
|
9139
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
9140
|
+
var Drawer = (0, import_react25.forwardRef)((props, ref) => {
|
|
9066
9141
|
const [localProps, variantProps] = mapPropsVariants(props, drawer.variantKeys);
|
|
9067
9142
|
const { classNames, isOpen, content, isKeyboardDismissDisabled = false, onClose, backdrop = true } = localProps;
|
|
9068
9143
|
const position = props.position || "right";
|
|
9069
|
-
const [shouldRender, setShouldRender] = (0,
|
|
9070
|
-
const [isAnimating, setIsAnimating] = (0,
|
|
9071
|
-
const [isContentAnimating, setIsContentAnimating] = (0,
|
|
9072
|
-
const slots = (0,
|
|
9073
|
-
(0,
|
|
9144
|
+
const [shouldRender, setShouldRender] = (0, import_react25.useState)(isOpen);
|
|
9145
|
+
const [isAnimating, setIsAnimating] = (0, import_react25.useState)(isOpen);
|
|
9146
|
+
const [isContentAnimating, setIsContentAnimating] = (0, import_react25.useState)(isOpen);
|
|
9147
|
+
const slots = (0, import_react25.useMemo)(() => drawer(variantProps), [variantProps]);
|
|
9148
|
+
(0, import_react25.useEffect)(() => {
|
|
9074
9149
|
if (isOpen) {
|
|
9075
9150
|
setShouldRender(true);
|
|
9076
9151
|
requestAnimationFrame(() => {
|
|
@@ -9088,7 +9163,7 @@ var Drawer = (0, import_react24.forwardRef)((props, ref) => {
|
|
|
9088
9163
|
return () => clearTimeout(timer);
|
|
9089
9164
|
}
|
|
9090
9165
|
}, [isOpen]);
|
|
9091
|
-
(0,
|
|
9166
|
+
(0, import_react25.useEffect)(() => {
|
|
9092
9167
|
if (shouldRender) {
|
|
9093
9168
|
document.body.classList.add("overflow-hidden");
|
|
9094
9169
|
} else {
|
|
@@ -9123,7 +9198,7 @@ var Drawer = (0, import_react24.forwardRef)((props, ref) => {
|
|
|
9123
9198
|
};
|
|
9124
9199
|
if (!shouldRender) return null;
|
|
9125
9200
|
return (0, import_react_dom4.createPortal)(
|
|
9126
|
-
/* @__PURE__ */ (0,
|
|
9201
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
|
|
9127
9202
|
"div",
|
|
9128
9203
|
{
|
|
9129
9204
|
ref,
|
|
@@ -9138,15 +9213,15 @@ var Drawer = (0, import_react24.forwardRef)((props, ref) => {
|
|
|
9138
9213
|
role: "dialog",
|
|
9139
9214
|
"aria-modal": "true",
|
|
9140
9215
|
children: [
|
|
9141
|
-
backdrop && /* @__PURE__ */ (0,
|
|
9142
|
-
/* @__PURE__ */ (0,
|
|
9216
|
+
backdrop && /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("div", { className: "absolute inset-0 bg-black/50 backdrop-blur-sm", onClick: onClose }),
|
|
9217
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)(
|
|
9143
9218
|
"div",
|
|
9144
9219
|
{
|
|
9145
9220
|
className: slots.drawerWrapper({
|
|
9146
9221
|
class: clsx(classNames == null ? void 0 : classNames.drawerWrapper, getAnimationClasses())
|
|
9147
9222
|
}),
|
|
9148
9223
|
onClick: (e) => e.stopPropagation(),
|
|
9149
|
-
children: /* @__PURE__ */ (0,
|
|
9224
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("div", { className: slots.wrapper({ class: classNames == null ? void 0 : classNames.wrapper }), children: content })
|
|
9150
9225
|
}
|
|
9151
9226
|
)
|
|
9152
9227
|
]
|
|
@@ -9219,15 +9294,15 @@ var drawer = tv({
|
|
|
9219
9294
|
var drawer_default = Drawer;
|
|
9220
9295
|
|
|
9221
9296
|
// src/components/list/list.tsx
|
|
9222
|
-
var
|
|
9223
|
-
var
|
|
9224
|
-
var List = (0,
|
|
9297
|
+
var import_react26 = require("react");
|
|
9298
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
9299
|
+
var List = (0, import_react26.forwardRef)((originalProps, ref) => {
|
|
9225
9300
|
const [props, variantProps] = mapPropsVariants(originalProps, listStyle.variantKeys);
|
|
9226
9301
|
const { children, classNames } = props;
|
|
9227
|
-
const slots = (0,
|
|
9228
|
-
return /* @__PURE__ */ (0,
|
|
9229
|
-
if (!(0,
|
|
9230
|
-
return (0,
|
|
9302
|
+
const slots = (0, import_react26.useMemo)(() => listStyle(variantProps), [variantProps]);
|
|
9303
|
+
return /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: import_react26.Children.map(children, (child) => {
|
|
9304
|
+
if (!(0, import_react26.isValidElement)(child)) return child;
|
|
9305
|
+
return (0, import_react26.cloneElement)(child, {
|
|
9231
9306
|
...variantProps,
|
|
9232
9307
|
...child.props
|
|
9233
9308
|
});
|
|
@@ -9264,9 +9339,9 @@ var listStyle = tv({
|
|
|
9264
9339
|
});
|
|
9265
9340
|
|
|
9266
9341
|
// src/components/list/listItem.tsx
|
|
9267
|
-
var
|
|
9268
|
-
var
|
|
9269
|
-
var ListItem = (0,
|
|
9342
|
+
var import_react27 = require("react");
|
|
9343
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
9344
|
+
var ListItem = (0, import_react27.forwardRef)((props, ref) => {
|
|
9270
9345
|
const [rawProps, variantProps] = mapPropsVariants(props, listItemStyle.variantKeys);
|
|
9271
9346
|
const {
|
|
9272
9347
|
title,
|
|
@@ -9278,19 +9353,19 @@ var ListItem = (0, import_react26.forwardRef)((props, ref) => {
|
|
|
9278
9353
|
classNames,
|
|
9279
9354
|
onClick
|
|
9280
9355
|
} = { ...rawProps, ...variantProps };
|
|
9281
|
-
const slots = (0,
|
|
9356
|
+
const slots = (0, import_react27.useMemo)(() => listItemStyle(variantProps), [variantProps]);
|
|
9282
9357
|
const iconSize = ["lg", "xl"].includes(size) ? "lg" : "md";
|
|
9283
9358
|
const avatarSize = iconSize;
|
|
9284
|
-
return /* @__PURE__ */ (0,
|
|
9285
|
-
/* @__PURE__ */ (0,
|
|
9286
|
-
avatar && /* @__PURE__ */ (0,
|
|
9287
|
-
startIconName && /* @__PURE__ */ (0,
|
|
9288
|
-
/* @__PURE__ */ (0,
|
|
9289
|
-
/* @__PURE__ */ (0,
|
|
9290
|
-
subTitle && /* @__PURE__ */ (0,
|
|
9359
|
+
return /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), "data-selected": selected, onClick, children: [
|
|
9360
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("div", { className: slots.wrapper({ class: classNames == null ? void 0 : classNames.wrapper }), children: [
|
|
9361
|
+
avatar && /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(avatar_default, { ...avatar, variant: "round", size: avatarSize }),
|
|
9362
|
+
startIconName && /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(Icon_default, { name: startIconName, fill: true, size, className: slots.startIcon({ class: classNames == null ? void 0 : classNames.startIcon }) }),
|
|
9363
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("div", { className: slots.titleWrapper({ class: classNames == null ? void 0 : classNames.titleWrapper }), children: [
|
|
9364
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("span", { className: slots.title({ class: classNames == null ? void 0 : classNames.title }), children: title }),
|
|
9365
|
+
subTitle && /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("span", { className: slots.subTitle({ class: classNames == null ? void 0 : classNames.subTitle }), children: subTitle })
|
|
9291
9366
|
] })
|
|
9292
9367
|
] }),
|
|
9293
|
-
/* @__PURE__ */ (0,
|
|
9368
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)(Icon_default, { name: "right-chevron", size: iconSize, className: slots.icon({ class: classNames == null ? void 0 : classNames.icon }) })
|
|
9294
9369
|
] });
|
|
9295
9370
|
});
|
|
9296
9371
|
ListItem.displayName = "ListItem";
|
|
@@ -9458,9 +9533,9 @@ var listItemStyle = tv({
|
|
|
9458
9533
|
});
|
|
9459
9534
|
|
|
9460
9535
|
// src/components/toast/toast.tsx
|
|
9461
|
-
var
|
|
9462
|
-
var
|
|
9463
|
-
var Toast = (0,
|
|
9536
|
+
var import_react28 = require("react");
|
|
9537
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
9538
|
+
var Toast = (0, import_react28.forwardRef)((originalProps, ref) => {
|
|
9464
9539
|
const [props, variantProps] = mapPropsVariants(originalProps, toast.variantKeys);
|
|
9465
9540
|
const {
|
|
9466
9541
|
title,
|
|
@@ -9474,9 +9549,9 @@ var Toast = (0, import_react27.forwardRef)((originalProps, ref) => {
|
|
|
9474
9549
|
disableAnimation,
|
|
9475
9550
|
onClose
|
|
9476
9551
|
} = { ...props, ...variantProps };
|
|
9477
|
-
const slots = (0,
|
|
9478
|
-
const toastRef = (0,
|
|
9479
|
-
(0,
|
|
9552
|
+
const slots = (0, import_react28.useMemo)(() => toast({ ...variantProps }), [variantProps]);
|
|
9553
|
+
const toastRef = (0, import_react28.useRef)(null);
|
|
9554
|
+
(0, import_react28.useImperativeHandle)(
|
|
9480
9555
|
ref,
|
|
9481
9556
|
() => ({
|
|
9482
9557
|
getWidth: () => {
|
|
@@ -9487,7 +9562,7 @@ var Toast = (0, import_react27.forwardRef)((originalProps, ref) => {
|
|
|
9487
9562
|
[]
|
|
9488
9563
|
);
|
|
9489
9564
|
const animationClass = (placement == null ? void 0 : placement.includes("top")) ? "animate-slideInFromTop" : "animate-slideInFromBottom";
|
|
9490
|
-
return /* @__PURE__ */ (0,
|
|
9565
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(
|
|
9491
9566
|
"div",
|
|
9492
9567
|
{
|
|
9493
9568
|
ref: toastRef,
|
|
@@ -9499,12 +9574,12 @@ var Toast = (0, import_react27.forwardRef)((originalProps, ref) => {
|
|
|
9499
9574
|
),
|
|
9500
9575
|
style: hasShadow ? { boxShadow: "0px 6px 18px rgba(0, 0, 0, 0.10)" } : {},
|
|
9501
9576
|
children: [
|
|
9502
|
-
/* @__PURE__ */ (0,
|
|
9503
|
-
showIcon && /* @__PURE__ */ (0,
|
|
9504
|
-
/* @__PURE__ */ (0,
|
|
9505
|
-
showCloseButton && /* @__PURE__ */ (0,
|
|
9577
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsxs)("div", { className: slots.wrapper({ class: classNames == null ? void 0 : classNames.wrapper }), children: [
|
|
9578
|
+
showIcon && /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(Icon_default, { name: originalProps.icon || "info-circle", fill: true, className: "mt-[2px]" }),
|
|
9579
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("div", { className: slots.title({ class: classNames == null ? void 0 : classNames.title }), children: title }),
|
|
9580
|
+
showCloseButton && /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(Icon_default, { name: "close", className: "cursor-pointer", onClick: onClose })
|
|
9506
9581
|
] }),
|
|
9507
|
-
content && /* @__PURE__ */ (0,
|
|
9582
|
+
content && /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("div", { children: content })
|
|
9508
9583
|
]
|
|
9509
9584
|
}
|
|
9510
9585
|
);
|
|
@@ -9609,7 +9684,7 @@ var toast = tv({
|
|
|
9609
9684
|
});
|
|
9610
9685
|
|
|
9611
9686
|
// src/components/toast/use-toast.tsx
|
|
9612
|
-
var
|
|
9687
|
+
var import_react29 = require("react");
|
|
9613
9688
|
|
|
9614
9689
|
// src/components/toast/toast-utils.ts
|
|
9615
9690
|
var getToastPosition = (placement, width, offset) => {
|
|
@@ -9648,10 +9723,10 @@ var getToastPosition = (placement, width, offset) => {
|
|
|
9648
9723
|
};
|
|
9649
9724
|
|
|
9650
9725
|
// src/components/toast/use-toast.tsx
|
|
9651
|
-
var
|
|
9652
|
-
var ToastContext = (0,
|
|
9726
|
+
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
9727
|
+
var ToastContext = (0, import_react29.createContext)(null);
|
|
9653
9728
|
var useToast = () => {
|
|
9654
|
-
const context = (0,
|
|
9729
|
+
const context = (0, import_react29.useContext)(ToastContext);
|
|
9655
9730
|
if (!context) {
|
|
9656
9731
|
throw new Error("useToast must be used within a ToastProvider");
|
|
9657
9732
|
}
|
|
@@ -9661,10 +9736,10 @@ var ToastProvider = ({
|
|
|
9661
9736
|
globalOptions,
|
|
9662
9737
|
children
|
|
9663
9738
|
}) => {
|
|
9664
|
-
const [toasts, setToasts] = (0,
|
|
9665
|
-
const [containerStyle, setContainerStyle] = (0,
|
|
9666
|
-
const toastRef = (0,
|
|
9667
|
-
const addToast = (0,
|
|
9739
|
+
const [toasts, setToasts] = (0, import_react29.useState)([]);
|
|
9740
|
+
const [containerStyle, setContainerStyle] = (0, import_react29.useState)({});
|
|
9741
|
+
const toastRef = (0, import_react29.useRef)(null);
|
|
9742
|
+
const addToast = (0, import_react29.useCallback)(
|
|
9668
9743
|
(title, options = {}) => {
|
|
9669
9744
|
const id = Date.now() + Math.floor(Math.random() * 1e5);
|
|
9670
9745
|
const newToast = {
|
|
@@ -9681,11 +9756,11 @@ var ToastProvider = ({
|
|
|
9681
9756
|
},
|
|
9682
9757
|
[globalOptions]
|
|
9683
9758
|
);
|
|
9684
|
-
const removeToast = (0,
|
|
9759
|
+
const removeToast = (0, import_react29.useCallback)((id) => {
|
|
9685
9760
|
setToasts((prevToasts) => prevToasts.filter((toast2) => toast2.id !== id));
|
|
9686
9761
|
}, []);
|
|
9687
9762
|
const contextValue = addToast;
|
|
9688
|
-
(0,
|
|
9763
|
+
(0, import_react29.useEffect)(() => {
|
|
9689
9764
|
var _a;
|
|
9690
9765
|
const width = (globalOptions == null ? void 0 : globalOptions.width) ? globalOptions.width : typeof ((_a = toastRef.current) == null ? void 0 : _a.getWidth) === "function" ? toastRef.current.getWidth() : 300;
|
|
9691
9766
|
const offset = 20;
|
|
@@ -9699,18 +9774,18 @@ var ToastProvider = ({
|
|
|
9699
9774
|
right: right !== void 0 ? `${right}px` : void 0
|
|
9700
9775
|
});
|
|
9701
9776
|
}, [globalOptions == null ? void 0 : globalOptions.placement, globalOptions == null ? void 0 : globalOptions.width]);
|
|
9702
|
-
return /* @__PURE__ */ (0,
|
|
9777
|
+
return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(ToastContext.Provider, { value: contextValue, children: [
|
|
9703
9778
|
children,
|
|
9704
|
-
/* @__PURE__ */ (0,
|
|
9779
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("div", { id: "deepnoid-toast-container", className: "flex flex-col gap-[10px]", style: containerStyle, children: toasts.map((toast2) => /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(toast_default, { ref: toastRef, onClose: () => removeToast(toast2.id), ...toast2 }, toast2.id)) })
|
|
9705
9780
|
] });
|
|
9706
9781
|
};
|
|
9707
9782
|
|
|
9708
9783
|
// src/components/dateTimePicker/dateTimePicker.tsx
|
|
9709
|
-
var
|
|
9784
|
+
var import_react33 = __toESM(require("react"));
|
|
9710
9785
|
var import_react_dom5 = require("react-dom");
|
|
9711
9786
|
|
|
9712
9787
|
// src/components/dateTimePicker/useDateTimePicker.tsx
|
|
9713
|
-
var
|
|
9788
|
+
var import_react30 = require("react");
|
|
9714
9789
|
|
|
9715
9790
|
// src/components/dateTimePicker/util.ts
|
|
9716
9791
|
var formatDateToString = (date) => {
|
|
@@ -9726,17 +9801,17 @@ var formatStringToDate = (date) => {
|
|
|
9726
9801
|
|
|
9727
9802
|
// src/components/dateTimePicker/useDateTimePicker.tsx
|
|
9728
9803
|
var useDatePicker = ({ initialDate, initialTime }) => {
|
|
9729
|
-
const [selectedDate, setSelectedDate] = (0,
|
|
9804
|
+
const [selectedDate, setSelectedDate] = (0, import_react30.useState)(
|
|
9730
9805
|
initialDate ? formatDateToString(initialDate) : ""
|
|
9731
9806
|
);
|
|
9732
|
-
const [selectedTime, setSelectedTime] = (0,
|
|
9733
|
-
const [targetRect, setTargetRect] = (0,
|
|
9734
|
-
const [popupWidth, setPopupWidth] = (0,
|
|
9735
|
-
const [popupHeight, setPopupHeight] = (0,
|
|
9736
|
-
const [isFocusInput, setIsFocusInput] = (0,
|
|
9737
|
-
const dateInputRef = (0,
|
|
9738
|
-
const datePickerWrapperRef = (0,
|
|
9739
|
-
const datePickerRef = (0,
|
|
9807
|
+
const [selectedTime, setSelectedTime] = (0, import_react30.useState)(initialTime ? initialTime : "");
|
|
9808
|
+
const [targetRect, setTargetRect] = (0, import_react30.useState)(null);
|
|
9809
|
+
const [popupWidth, setPopupWidth] = (0, import_react30.useState)(0);
|
|
9810
|
+
const [popupHeight, setPopupHeight] = (0, import_react30.useState)(0);
|
|
9811
|
+
const [isFocusInput, setIsFocusInput] = (0, import_react30.useState)(false);
|
|
9812
|
+
const dateInputRef = (0, import_react30.useRef)(null);
|
|
9813
|
+
const datePickerWrapperRef = (0, import_react30.useRef)(null);
|
|
9814
|
+
const datePickerRef = (0, import_react30.useRef)(null);
|
|
9740
9815
|
const DATE_PICKER_GAP = 4;
|
|
9741
9816
|
const calculatePositionWithScroll = (targetRect2) => {
|
|
9742
9817
|
if (targetRect2 && popupWidth && popupHeight) {
|
|
@@ -9769,7 +9844,7 @@ var useDatePicker = ({ initialDate, initialTime }) => {
|
|
|
9769
9844
|
const handleBlueInput = () => {
|
|
9770
9845
|
setIsFocusInput(false);
|
|
9771
9846
|
};
|
|
9772
|
-
(0,
|
|
9847
|
+
(0, import_react30.useEffect)(() => {
|
|
9773
9848
|
const onClickOutside = (e) => {
|
|
9774
9849
|
if (datePickerRef.current && !datePickerRef.current.contains(e.target) && datePickerWrapperRef.current && !datePickerWrapperRef.current.contains(e.target)) {
|
|
9775
9850
|
setTargetRect(null);
|
|
@@ -9778,7 +9853,7 @@ var useDatePicker = ({ initialDate, initialTime }) => {
|
|
|
9778
9853
|
window.addEventListener("mousedown", onClickOutside);
|
|
9779
9854
|
return () => window.removeEventListener("mousedown", onClickOutside);
|
|
9780
9855
|
}, []);
|
|
9781
|
-
(0,
|
|
9856
|
+
(0, import_react30.useEffect)(() => {
|
|
9782
9857
|
if (datePickerWrapperRef.current) {
|
|
9783
9858
|
setPopupHeight(datePickerWrapperRef.current.getBoundingClientRect().height);
|
|
9784
9859
|
setPopupWidth(datePickerWrapperRef.current.getBoundingClientRect().width);
|
|
@@ -9803,19 +9878,19 @@ var useDatePicker = ({ initialDate, initialTime }) => {
|
|
|
9803
9878
|
};
|
|
9804
9879
|
|
|
9805
9880
|
// src/components/dateTimePicker/calendar.tsx
|
|
9806
|
-
var
|
|
9807
|
-
var
|
|
9808
|
-
var Calendar = (0,
|
|
9881
|
+
var import_react31 = __toESM(require("react"));
|
|
9882
|
+
var import_jsx_runtime34 = require("react/jsx-runtime");
|
|
9883
|
+
var Calendar = (0, import_react31.forwardRef)((originalProps, ref) => {
|
|
9809
9884
|
const [props, variantProps] = mapPropsVariants(originalProps, calendarStyle.variantKeys);
|
|
9810
9885
|
const { selectedDate, classNames, highlightWeekend = true, onChangeDate, ...inputProps } = props;
|
|
9811
|
-
const [currentDate, setCurrentDate] = (0,
|
|
9886
|
+
const [currentDate, setCurrentDate] = (0, import_react31.useState)(selectedDate ? new Date(selectedDate) : /* @__PURE__ */ new Date());
|
|
9812
9887
|
const daysOfWeek = ["S", "M", "T", "W", "T", "F", "S"];
|
|
9813
|
-
(0,
|
|
9888
|
+
(0, import_react31.useEffect)(() => {
|
|
9814
9889
|
if (selectedDate) {
|
|
9815
9890
|
setCurrentDate(new Date(selectedDate));
|
|
9816
9891
|
}
|
|
9817
9892
|
}, [selectedDate]);
|
|
9818
|
-
const getCalendarDates = (0,
|
|
9893
|
+
const getCalendarDates = (0, import_react31.useCallback)(() => {
|
|
9819
9894
|
const year = currentDate.getFullYear();
|
|
9820
9895
|
const month = currentDate.getMonth();
|
|
9821
9896
|
const firstDayOfMonth = new Date(year, month, 1).getDay();
|
|
@@ -9861,17 +9936,17 @@ var Calendar = (0, import_react30.forwardRef)((originalProps, ref) => {
|
|
|
9861
9936
|
onChangeDate(formatted);
|
|
9862
9937
|
}
|
|
9863
9938
|
};
|
|
9864
|
-
(0,
|
|
9939
|
+
(0, import_react31.useImperativeHandle)(ref, () => ({
|
|
9865
9940
|
getSelectedDate: () => selectedDate
|
|
9866
9941
|
}));
|
|
9867
|
-
const slots = (0,
|
|
9868
|
-
const getBaseProps = (0,
|
|
9942
|
+
const slots = (0, import_react31.useMemo)(() => calendarStyle({ ...variantProps }), [variantProps]);
|
|
9943
|
+
const getBaseProps = (0, import_react31.useCallback)(
|
|
9869
9944
|
() => ({
|
|
9870
9945
|
className: `${slots.base({ class: classNames == null ? void 0 : classNames.base })}`
|
|
9871
9946
|
}),
|
|
9872
9947
|
[slots, classNames]
|
|
9873
9948
|
);
|
|
9874
|
-
const getDateTitleProps = (0,
|
|
9949
|
+
const getDateTitleProps = (0, import_react31.useCallback)(
|
|
9875
9950
|
(index) => {
|
|
9876
9951
|
return {
|
|
9877
9952
|
className: `${slots.dateTitle({
|
|
@@ -9883,7 +9958,7 @@ var Calendar = (0, import_react30.forwardRef)((originalProps, ref) => {
|
|
|
9883
9958
|
},
|
|
9884
9959
|
[slots, classNames, highlightWeekend]
|
|
9885
9960
|
);
|
|
9886
|
-
const getDateProps = (0,
|
|
9961
|
+
const getDateProps = (0, import_react31.useCallback)(
|
|
9887
9962
|
(dateObj) => {
|
|
9888
9963
|
const today = /* @__PURE__ */ new Date();
|
|
9889
9964
|
const isToday = today.getDate() === dateObj.date && today.getMonth() === currentDate.getMonth() && today.getFullYear() === currentDate.getFullYear();
|
|
@@ -9905,18 +9980,18 @@ var Calendar = (0, import_react30.forwardRef)((originalProps, ref) => {
|
|
|
9905
9980
|
[slots, classNames, selectedDate, currentDate, highlightWeekend]
|
|
9906
9981
|
);
|
|
9907
9982
|
const calendarDates = getCalendarDates();
|
|
9908
|
-
return /* @__PURE__ */ (0,
|
|
9909
|
-
/* @__PURE__ */ (0,
|
|
9910
|
-
/* @__PURE__ */ (0,
|
|
9911
|
-
/* @__PURE__ */ (0,
|
|
9912
|
-
/* @__PURE__ */ (0,
|
|
9983
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(import_jsx_runtime34.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)("div", { ...getBaseProps(), children: [
|
|
9984
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsxs)("div", { className: "calendar-header flex justify-between items-center mb-4", children: [
|
|
9985
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(Icon_default, { name: "brace-left", size: "md", className: "cursor-pointer", onClick: handlePrevMonth }),
|
|
9986
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("span", { className: "text-h6 font-semibold", children: currentDate.toLocaleString("default", { year: "numeric", month: "2-digit" }) }),
|
|
9987
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(Icon_default, { name: "brace-right", size: "md", className: "cursor-pointer", onClick: handleNextMonth })
|
|
9913
9988
|
] }),
|
|
9914
|
-
/* @__PURE__ */ (0,
|
|
9915
|
-
/* @__PURE__ */ (0,
|
|
9989
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("div", { className: "grid grid-cols-7 gap-2 text-center", children: daysOfWeek.map((day, index) => /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("div", { ...getDateTitleProps(index), children: day }, `${day}-${index}`)) }),
|
|
9990
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("div", { className: "grid grid-cols-7 gap-[5px] text-center mt-2", children: calendarDates.map((week, weekIndex) => {
|
|
9916
9991
|
const hasCurrentMonthDates = week.some((dateObj) => dateObj.currentMonth);
|
|
9917
9992
|
if (!hasCurrentMonthDates) return null;
|
|
9918
|
-
return /* @__PURE__ */ (0,
|
|
9919
|
-
return /* @__PURE__ */ (0,
|
|
9993
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(import_react31.default.Fragment, { children: week.map((dateObj, index) => {
|
|
9994
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("div", { ...getDateProps(dateObj), children: dateObj.date }, index);
|
|
9920
9995
|
}) }, weekIndex);
|
|
9921
9996
|
}) })
|
|
9922
9997
|
] }) });
|
|
@@ -9987,22 +10062,22 @@ var calendarStyle = tv({
|
|
|
9987
10062
|
});
|
|
9988
10063
|
|
|
9989
10064
|
// src/components/dateTimePicker/timePicker.tsx
|
|
9990
|
-
var
|
|
9991
|
-
var
|
|
10065
|
+
var import_react32 = require("react");
|
|
10066
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
9992
10067
|
var TimePicker = ({ color = "primary", selectedTime, isFocusInput, onChangeTime }) => {
|
|
9993
10068
|
const TOTAL_HOURS = 12;
|
|
9994
10069
|
const TOTAL_MINUTES = 60;
|
|
9995
10070
|
const ITEM_HEIGHT = 30;
|
|
9996
10071
|
const PERIODS = ["AM", "PM"];
|
|
9997
|
-
const [selectedHour, setSelectedHour] = (0,
|
|
9998
|
-
const [selectedMinute, setSelectedMinute] = (0,
|
|
9999
|
-
const [selectedPeriod, setSelectedPeriod] = (0,
|
|
10000
|
-
const hourRef = (0,
|
|
10001
|
-
const minuteRef = (0,
|
|
10002
|
-
const periodRef = (0,
|
|
10072
|
+
const [selectedHour, setSelectedHour] = (0, import_react32.useState)("01");
|
|
10073
|
+
const [selectedMinute, setSelectedMinute] = (0, import_react32.useState)("00");
|
|
10074
|
+
const [selectedPeriod, setSelectedPeriod] = (0, import_react32.useState)("AM");
|
|
10075
|
+
const hourRef = (0, import_react32.useRef)(null);
|
|
10076
|
+
const minuteRef = (0, import_react32.useRef)(null);
|
|
10077
|
+
const periodRef = (0, import_react32.useRef)(null);
|
|
10003
10078
|
const hoursArray = [...Array(TOTAL_HOURS).keys()].map((i) => (i + 1).toString().padStart(2, "0"));
|
|
10004
10079
|
const minutesArray = [...Array(TOTAL_MINUTES).keys()].map((i) => i.toString().padStart(2, "0"));
|
|
10005
|
-
(0,
|
|
10080
|
+
(0, import_react32.useEffect)(() => {
|
|
10006
10081
|
if (selectedTime) {
|
|
10007
10082
|
const { formattedHour, minute, period } = parseAndFormatTime(selectedTime);
|
|
10008
10083
|
setSelectedHour(formattedHour);
|
|
@@ -10013,7 +10088,7 @@ var TimePicker = ({ color = "primary", selectedTime, isFocusInput, onChangeTime
|
|
|
10013
10088
|
scrollToSelectedTime();
|
|
10014
10089
|
}
|
|
10015
10090
|
}, [selectedTime, isFocusInput]);
|
|
10016
|
-
(0,
|
|
10091
|
+
(0, import_react32.useEffect)(() => {
|
|
10017
10092
|
scrollToSelectedTime();
|
|
10018
10093
|
}, []);
|
|
10019
10094
|
const parseAndFormatTime = (time) => {
|
|
@@ -10050,8 +10125,8 @@ var TimePicker = ({ color = "primary", selectedTime, isFocusInput, onChangeTime
|
|
|
10050
10125
|
onChangeTime(formattedTime);
|
|
10051
10126
|
}
|
|
10052
10127
|
};
|
|
10053
|
-
return /* @__PURE__ */ (0,
|
|
10054
|
-
/* @__PURE__ */ (0,
|
|
10128
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("div", { className: "flex h-[200px] p-[10px] gap-[5px] border border-neutral-main rounded-md bg-background shadow-lg", children: [
|
|
10129
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)(list_default, { ref: periodRef, classNames: { base: "overflow-y-auto scrollbar-hide" }, children: PERIODS.map((period, index) => /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
10055
10130
|
listItem_default,
|
|
10056
10131
|
{
|
|
10057
10132
|
color,
|
|
@@ -10065,7 +10140,7 @@ var TimePicker = ({ color = "primary", selectedTime, isFocusInput, onChangeTime
|
|
|
10065
10140
|
},
|
|
10066
10141
|
`${period}-${index}`
|
|
10067
10142
|
)) }),
|
|
10068
|
-
/* @__PURE__ */ (0,
|
|
10143
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)(list_default, { ref: hourRef, classNames: { base: "overflow-y-auto scrollbar-hide" }, children: hoursArray.map((hour, index) => /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
10069
10144
|
listItem_default,
|
|
10070
10145
|
{
|
|
10071
10146
|
color,
|
|
@@ -10079,7 +10154,7 @@ var TimePicker = ({ color = "primary", selectedTime, isFocusInput, onChangeTime
|
|
|
10079
10154
|
},
|
|
10080
10155
|
`${hour}-${index}`
|
|
10081
10156
|
)) }),
|
|
10082
|
-
/* @__PURE__ */ (0,
|
|
10157
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)(list_default, { ref: minuteRef, classNames: { base: "overflow-y-auto scrollbar-hide" }, children: minutesArray.map((minute, index) => /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
10083
10158
|
listItem_default,
|
|
10084
10159
|
{
|
|
10085
10160
|
color,
|
|
@@ -10098,8 +10173,8 @@ var TimePicker = ({ color = "primary", selectedTime, isFocusInput, onChangeTime
|
|
|
10098
10173
|
var timePicker_default = TimePicker;
|
|
10099
10174
|
|
|
10100
10175
|
// src/components/dateTimePicker/dateTimePicker.tsx
|
|
10101
|
-
var
|
|
10102
|
-
var DatePicker = (0,
|
|
10176
|
+
var import_jsx_runtime36 = require("react/jsx-runtime");
|
|
10177
|
+
var DatePicker = (0, import_react33.forwardRef)((originalProps, ref) => {
|
|
10103
10178
|
const [props, variantProps] = mapPropsVariants(originalProps, dateTimePickerStyle.variantKeys);
|
|
10104
10179
|
const {
|
|
10105
10180
|
classNames,
|
|
@@ -10113,7 +10188,7 @@ var DatePicker = (0, import_react32.forwardRef)((originalProps, ref) => {
|
|
|
10113
10188
|
onChangeTime,
|
|
10114
10189
|
...inputProps
|
|
10115
10190
|
} = props;
|
|
10116
|
-
const slots = (0,
|
|
10191
|
+
const slots = (0, import_react33.useMemo)(() => dateTimePickerStyle({ ...variantProps }), [variantProps]);
|
|
10117
10192
|
const {
|
|
10118
10193
|
selectedDate,
|
|
10119
10194
|
selectedTime,
|
|
@@ -10134,32 +10209,32 @@ var DatePicker = (0, import_react32.forwardRef)((originalProps, ref) => {
|
|
|
10134
10209
|
initialTime: typeof value === "string" ? value : void 0
|
|
10135
10210
|
});
|
|
10136
10211
|
const position = targetRect ? calculatePositionWithScroll(targetRect) : null;
|
|
10137
|
-
const getBaseProps = (0,
|
|
10212
|
+
const getBaseProps = (0, import_react33.useCallback)(
|
|
10138
10213
|
() => ({
|
|
10139
10214
|
className: slots.base({ class: classNames == null ? void 0 : classNames.base })
|
|
10140
10215
|
}),
|
|
10141
10216
|
[slots, classNames]
|
|
10142
10217
|
);
|
|
10143
|
-
const getLabelProps = (0,
|
|
10218
|
+
const getLabelProps = (0, import_react33.useCallback)(
|
|
10144
10219
|
() => ({
|
|
10145
10220
|
className: slots.label({ class: classNames == null ? void 0 : classNames.label })
|
|
10146
10221
|
}),
|
|
10147
10222
|
[slots, classNames]
|
|
10148
10223
|
);
|
|
10149
|
-
const getInnerWrapperProps = (0,
|
|
10224
|
+
const getInnerWrapperProps = (0, import_react33.useCallback)(
|
|
10150
10225
|
() => ({
|
|
10151
10226
|
className: slots.innerWrapper({ class: classNames == null ? void 0 : classNames.innerWrapper })
|
|
10152
10227
|
}),
|
|
10153
10228
|
[slots, classNames]
|
|
10154
10229
|
);
|
|
10155
|
-
const getInputWrapperProps = (0,
|
|
10230
|
+
const getInputWrapperProps = (0, import_react33.useCallback)(
|
|
10156
10231
|
() => ({
|
|
10157
10232
|
className: slots.inputWrapper({ class: classNames == null ? void 0 : classNames.inputWrapper }),
|
|
10158
10233
|
ref: datePickerRef
|
|
10159
10234
|
}),
|
|
10160
10235
|
[slots, classNames]
|
|
10161
10236
|
);
|
|
10162
|
-
const getInputProps = (0,
|
|
10237
|
+
const getInputProps = (0, import_react33.useCallback)(
|
|
10163
10238
|
() => ({
|
|
10164
10239
|
...inputProps,
|
|
10165
10240
|
ref: ref || dateInputRef,
|
|
@@ -10190,33 +10265,33 @@ var DatePicker = (0, import_react32.forwardRef)((originalProps, ref) => {
|
|
|
10190
10265
|
}),
|
|
10191
10266
|
[inputProps, ref, dateInputRef, slots, classNames == null ? void 0 : classNames.input, selectedDate, selectedTime, type, value]
|
|
10192
10267
|
);
|
|
10193
|
-
const getContentProps = (0,
|
|
10268
|
+
const getContentProps = (0, import_react33.useCallback)(
|
|
10194
10269
|
() => ({
|
|
10195
10270
|
className: slots.content({ class: classNames == null ? void 0 : classNames.content }),
|
|
10196
10271
|
size: originalProps.size
|
|
10197
10272
|
}),
|
|
10198
10273
|
[slots, classNames, originalProps.size]
|
|
10199
10274
|
);
|
|
10200
|
-
const getErrorMessageProps = (0,
|
|
10275
|
+
const getErrorMessageProps = (0, import_react33.useCallback)(
|
|
10201
10276
|
() => ({
|
|
10202
10277
|
className: slots.errorMessage({ class: classNames == null ? void 0 : classNames.errorMessage })
|
|
10203
10278
|
}),
|
|
10204
10279
|
[slots, classNames]
|
|
10205
10280
|
);
|
|
10206
10281
|
const renderStartContent = () => {
|
|
10207
|
-
if (
|
|
10282
|
+
if (import_react33.default.isValidElement(startContent)) {
|
|
10208
10283
|
const existingProps = startContent.props;
|
|
10209
10284
|
const mergedProps = {
|
|
10210
10285
|
...getContentProps(),
|
|
10211
10286
|
className: `${getContentProps().className || ""} ${existingProps.className || ""}`.trim()
|
|
10212
10287
|
};
|
|
10213
|
-
return
|
|
10288
|
+
return import_react33.default.cloneElement(startContent, mergedProps);
|
|
10214
10289
|
} else {
|
|
10215
10290
|
const contentProps = getContentProps();
|
|
10216
|
-
return /* @__PURE__ */ (0,
|
|
10291
|
+
return /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("div", { ...contentProps, children: startContent });
|
|
10217
10292
|
}
|
|
10218
10293
|
};
|
|
10219
|
-
const renderDateTimePickerIcon = () => /* @__PURE__ */ (0,
|
|
10294
|
+
const renderDateTimePickerIcon = () => /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("div", { ...getContentProps(), onClick: handleToggleDatePicker, children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
10220
10295
|
Icon_default,
|
|
10221
10296
|
{
|
|
10222
10297
|
name: type === "time" ? "clock" : "calendar",
|
|
@@ -10226,18 +10301,18 @@ var DatePicker = (0, import_react32.forwardRef)((originalProps, ref) => {
|
|
|
10226
10301
|
}
|
|
10227
10302
|
) });
|
|
10228
10303
|
const renderContentWithIcon = () => {
|
|
10229
|
-
if (
|
|
10304
|
+
if (import_react33.default.isValidElement(endContent)) {
|
|
10230
10305
|
const existingProps = endContent.props;
|
|
10231
10306
|
const mergedProps = {
|
|
10232
10307
|
...getContentProps(),
|
|
10233
10308
|
className: `${getContentProps().className || ""} ${existingProps.className || ""}`.trim()
|
|
10234
10309
|
};
|
|
10235
|
-
return
|
|
10310
|
+
return import_react33.default.cloneElement(endContent, mergedProps);
|
|
10236
10311
|
} else if (errorMessage) {
|
|
10237
10312
|
const iconProps = { ...getContentProps(), className: getContentProps().className };
|
|
10238
|
-
return /* @__PURE__ */ (0,
|
|
10313
|
+
return /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("div", { ...iconProps, children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(Icon_default, { name: "exclamation-circle", fill: true, size: originalProps.size }) });
|
|
10239
10314
|
} else {
|
|
10240
|
-
return /* @__PURE__ */ (0,
|
|
10315
|
+
return /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(import_jsx_runtime36.Fragment, {});
|
|
10241
10316
|
}
|
|
10242
10317
|
};
|
|
10243
10318
|
const renderEndContent = () => {
|
|
@@ -10252,20 +10327,20 @@ var DatePicker = (0, import_react32.forwardRef)((originalProps, ref) => {
|
|
|
10252
10327
|
return renderContentWithIcon();
|
|
10253
10328
|
}
|
|
10254
10329
|
};
|
|
10255
|
-
return /* @__PURE__ */ (0,
|
|
10256
|
-
/* @__PURE__ */ (0,
|
|
10257
|
-
label && /* @__PURE__ */ (0,
|
|
10258
|
-
/* @__PURE__ */ (0,
|
|
10259
|
-
/* @__PURE__ */ (0,
|
|
10330
|
+
return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(import_jsx_runtime36.Fragment, { children: [
|
|
10331
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("div", { ...getBaseProps(), children: [
|
|
10332
|
+
label && /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("label", { ...getLabelProps(), children: label }),
|
|
10333
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("div", { ...getInnerWrapperProps(), children: [
|
|
10334
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("div", { ...getInputWrapperProps(), children: [
|
|
10260
10335
|
startContent && renderStartContent(),
|
|
10261
|
-
/* @__PURE__ */ (0,
|
|
10336
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("input", { ...getInputProps() }),
|
|
10262
10337
|
renderEndContent()
|
|
10263
10338
|
] }),
|
|
10264
|
-
errorMessage && /* @__PURE__ */ (0,
|
|
10339
|
+
errorMessage && /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("p", { ...getErrorMessageProps(), children: errorMessage })
|
|
10265
10340
|
] })
|
|
10266
10341
|
] }),
|
|
10267
|
-
targetRect && /* @__PURE__ */ (0,
|
|
10268
|
-
/* @__PURE__ */ (0,
|
|
10342
|
+
targetRect && /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(import_jsx_runtime36.Fragment, { children: (0, import_react_dom5.createPortal)(
|
|
10343
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
|
|
10269
10344
|
"div",
|
|
10270
10345
|
{
|
|
10271
10346
|
ref: datePickerWrapperRef,
|
|
@@ -10276,7 +10351,7 @@ var DatePicker = (0, import_react32.forwardRef)((originalProps, ref) => {
|
|
|
10276
10351
|
zIndex: 1e3
|
|
10277
10352
|
},
|
|
10278
10353
|
children: [
|
|
10279
|
-
type === "date" && /* @__PURE__ */ (0,
|
|
10354
|
+
type === "date" && /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
10280
10355
|
calendar_default,
|
|
10281
10356
|
{
|
|
10282
10357
|
color: originalProps.color,
|
|
@@ -10288,7 +10363,7 @@ var DatePicker = (0, import_react32.forwardRef)((originalProps, ref) => {
|
|
|
10288
10363
|
}
|
|
10289
10364
|
}
|
|
10290
10365
|
),
|
|
10291
|
-
type === "time" && /* @__PURE__ */ (0,
|
|
10366
|
+
type === "time" && /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
10292
10367
|
timePicker_default,
|
|
10293
10368
|
{
|
|
10294
10369
|
color: originalProps.color,
|
|
@@ -10438,20 +10513,20 @@ var dateTimePickerStyle = tv({
|
|
|
10438
10513
|
});
|
|
10439
10514
|
|
|
10440
10515
|
// src/components/tree/tree.tsx
|
|
10441
|
-
var
|
|
10442
|
-
var
|
|
10443
|
-
var TreeNodeItem = (0,
|
|
10516
|
+
var import_react34 = require("react");
|
|
10517
|
+
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
10518
|
+
var TreeNodeItem = (0, import_react34.forwardRef)(
|
|
10444
10519
|
({ node, depth, fileIcon, selectedId, classNames, onExpand }, ref) => {
|
|
10445
|
-
const [isOpen, setIsOpen] = (0,
|
|
10446
|
-
const [children, setChildren] = (0,
|
|
10447
|
-
const [isLoadingChildren, setIsLoadingChildren] = (0,
|
|
10448
|
-
const slots = (0,
|
|
10449
|
-
const hasMore = (0,
|
|
10520
|
+
const [isOpen, setIsOpen] = (0, import_react34.useState)(false);
|
|
10521
|
+
const [children, setChildren] = (0, import_react34.useState)(node.children);
|
|
10522
|
+
const [isLoadingChildren, setIsLoadingChildren] = (0, import_react34.useState)(false);
|
|
10523
|
+
const slots = (0, import_react34.useMemo)(() => treeStyle(), []);
|
|
10524
|
+
const hasMore = (0, import_react34.useMemo)(() => {
|
|
10450
10525
|
if (node.isLeaf) return false;
|
|
10451
10526
|
if (Array.isArray(children)) return children.length > 0;
|
|
10452
10527
|
return typeof onExpand === "function";
|
|
10453
10528
|
}, [node.isLeaf, children, onExpand]);
|
|
10454
|
-
const toggleOpen = (0,
|
|
10529
|
+
const toggleOpen = (0, import_react34.useCallback)(async () => {
|
|
10455
10530
|
if (!isOpen && !children && onExpand && !node.isLeaf) {
|
|
10456
10531
|
setIsLoadingChildren(true);
|
|
10457
10532
|
try {
|
|
@@ -10475,7 +10550,7 @@ var TreeNodeItem = (0, import_react33.forwardRef)(
|
|
|
10475
10550
|
e.preventDefault();
|
|
10476
10551
|
(_a = node.onRightClick) == null ? void 0 : _a.call(node, e);
|
|
10477
10552
|
};
|
|
10478
|
-
return /* @__PURE__ */ (0,
|
|
10553
|
+
return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
|
|
10479
10554
|
"div",
|
|
10480
10555
|
{
|
|
10481
10556
|
ref,
|
|
@@ -10484,7 +10559,7 @@ var TreeNodeItem = (0, import_react33.forwardRef)(
|
|
|
10484
10559
|
slots.gap({ class: classNames == null ? void 0 : classNames.gap })
|
|
10485
10560
|
),
|
|
10486
10561
|
children: [
|
|
10487
|
-
/* @__PURE__ */ (0,
|
|
10562
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
|
|
10488
10563
|
"div",
|
|
10489
10564
|
{
|
|
10490
10565
|
className: clsx(
|
|
@@ -10495,7 +10570,7 @@ var TreeNodeItem = (0, import_react33.forwardRef)(
|
|
|
10495
10570
|
onClick: handleClick,
|
|
10496
10571
|
onContextMenu: handleRightClick,
|
|
10497
10572
|
children: [
|
|
10498
|
-
hasMore && /* @__PURE__ */ (0,
|
|
10573
|
+
hasMore && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
10499
10574
|
Icon_default,
|
|
10500
10575
|
{
|
|
10501
10576
|
name: "right-chevron",
|
|
@@ -10510,9 +10585,9 @@ var TreeNodeItem = (0, import_react33.forwardRef)(
|
|
|
10510
10585
|
]
|
|
10511
10586
|
}
|
|
10512
10587
|
),
|
|
10513
|
-
isOpen && /* @__PURE__ */ (0,
|
|
10514
|
-
isLoadingChildren && /* @__PURE__ */ (0,
|
|
10515
|
-
children == null ? void 0 : children.map((child) => /* @__PURE__ */ (0,
|
|
10588
|
+
isOpen && /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { className: slots.gap({ class: classNames == null ? void 0 : classNames.gap }), children: [
|
|
10589
|
+
isLoadingChildren && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { className: "text-neutral py-1 text-sm", children: "loading..." }),
|
|
10590
|
+
children == null ? void 0 : children.map((child) => /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
10516
10591
|
TreeNodeItem,
|
|
10517
10592
|
{
|
|
10518
10593
|
node: child,
|
|
@@ -10532,7 +10607,7 @@ var TreeNodeItem = (0, import_react33.forwardRef)(
|
|
|
10532
10607
|
);
|
|
10533
10608
|
TreeNodeItem.displayName = "TreeNodeItem";
|
|
10534
10609
|
var Tree = ({ headerContent, group, groupIcon, fileIcon, selectedId, classNames, onExpand }) => {
|
|
10535
|
-
const slots = (0,
|
|
10610
|
+
const slots = (0, import_react34.useMemo)(() => treeStyle(), []);
|
|
10536
10611
|
const handleClick = (e) => {
|
|
10537
10612
|
var _a;
|
|
10538
10613
|
(_a = group.onClick) == null ? void 0 : _a.call(group, e);
|
|
@@ -10542,10 +10617,10 @@ var Tree = ({ headerContent, group, groupIcon, fileIcon, selectedId, classNames,
|
|
|
10542
10617
|
e.preventDefault();
|
|
10543
10618
|
(_a = group.onRightClick) == null ? void 0 : _a.call(group, e);
|
|
10544
10619
|
};
|
|
10545
|
-
return /* @__PURE__ */ (0,
|
|
10546
|
-
headerContent && /* @__PURE__ */ (0,
|
|
10547
|
-
/* @__PURE__ */ (0,
|
|
10548
|
-
/* @__PURE__ */ (0,
|
|
10620
|
+
return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: [
|
|
10621
|
+
headerContent && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { children: headerContent }),
|
|
10622
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { className: slots.wrapper({ class: classNames == null ? void 0 : classNames.wrapper }), children: [
|
|
10623
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(
|
|
10549
10624
|
"div",
|
|
10550
10625
|
{
|
|
10551
10626
|
className: clsx(
|
|
@@ -10560,7 +10635,7 @@ var Tree = ({ headerContent, group, groupIcon, fileIcon, selectedId, classNames,
|
|
|
10560
10635
|
]
|
|
10561
10636
|
}
|
|
10562
10637
|
),
|
|
10563
|
-
/* @__PURE__ */ (0,
|
|
10638
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { className: slots.gap({ class: classNames == null ? void 0 : classNames.gap }), children: group.data.map((node) => /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
10564
10639
|
TreeNodeItem,
|
|
10565
10640
|
{
|
|
10566
10641
|
node,
|
|
@@ -10597,9 +10672,9 @@ var treeStyle = tv({
|
|
|
10597
10672
|
});
|
|
10598
10673
|
|
|
10599
10674
|
// src/components/fileUpload/fileUpload.tsx
|
|
10600
|
-
var
|
|
10601
|
-
var
|
|
10602
|
-
var
|
|
10675
|
+
var import_react35 = require("react");
|
|
10676
|
+
var import_tailwind_variants32 = require("tailwind-variants");
|
|
10677
|
+
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
10603
10678
|
function FileUpload({
|
|
10604
10679
|
buttonText,
|
|
10605
10680
|
maxSizeMB = 10,
|
|
@@ -10613,11 +10688,11 @@ function FileUpload({
|
|
|
10613
10688
|
name,
|
|
10614
10689
|
classNames
|
|
10615
10690
|
}) {
|
|
10616
|
-
const fileInputRef = (0,
|
|
10617
|
-
const uploadIntervalRef = (0,
|
|
10618
|
-
const [file, setFile] = (0,
|
|
10619
|
-
const [uploadProgress, setUploadProgress] = (0,
|
|
10620
|
-
const [errorMessage, setErrorMessage] = (0,
|
|
10691
|
+
const fileInputRef = (0, import_react35.useRef)(null);
|
|
10692
|
+
const uploadIntervalRef = (0, import_react35.useRef)(null);
|
|
10693
|
+
const [file, setFile] = (0, import_react35.useState)(null);
|
|
10694
|
+
const [uploadProgress, setUploadProgress] = (0, import_react35.useState)(0);
|
|
10695
|
+
const [errorMessage, setErrorMessage] = (0, import_react35.useState)("");
|
|
10621
10696
|
const slots = fileUploadStyle();
|
|
10622
10697
|
const handleButtonClick = () => {
|
|
10623
10698
|
var _a;
|
|
@@ -10667,18 +10742,18 @@ function FileUpload({
|
|
|
10667
10742
|
setUploadProgress(0);
|
|
10668
10743
|
setErrorMessage("");
|
|
10669
10744
|
};
|
|
10670
|
-
(0,
|
|
10745
|
+
(0, import_react35.useEffect)(() => {
|
|
10671
10746
|
return () => {
|
|
10672
10747
|
if (uploadIntervalRef.current) {
|
|
10673
10748
|
clearInterval(uploadIntervalRef.current);
|
|
10674
10749
|
}
|
|
10675
10750
|
};
|
|
10676
10751
|
}, []);
|
|
10677
|
-
return /* @__PURE__ */ (0,
|
|
10678
|
-
/* @__PURE__ */ (0,
|
|
10679
|
-
/* @__PURE__ */ (0,
|
|
10680
|
-
/* @__PURE__ */ (0,
|
|
10681
|
-
file && /* @__PURE__ */ (0,
|
|
10752
|
+
return /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)("div", { className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: [
|
|
10753
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsxs)("div", { className: slots.container({ class: classNames == null ? void 0 : classNames.container }), children: [
|
|
10754
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsxs)("div", { className: slots.inputWrapper(), children: [
|
|
10755
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)(input_default, { name, readOnly: true, variant: "outline", full: true, placeholder, defaultValue: file == null ? void 0 : file.name }),
|
|
10756
|
+
file && /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
10682
10757
|
icon_button_default,
|
|
10683
10758
|
{
|
|
10684
10759
|
name: "close",
|
|
@@ -10690,17 +10765,17 @@ function FileUpload({
|
|
|
10690
10765
|
}
|
|
10691
10766
|
)
|
|
10692
10767
|
] }),
|
|
10693
|
-
/* @__PURE__ */ (0,
|
|
10694
|
-
/* @__PURE__ */ (0,
|
|
10768
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)(button_default, { type: "button", variant: "outline", onClick: handleButtonClick, children: buttonText }),
|
|
10769
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("input", { ref: fileInputRef, type: "file", hidden: true, accept: accept.join(","), onChange: handleFileChange })
|
|
10695
10770
|
] }),
|
|
10696
|
-
showProgress && file && uploadProgress < 100 && /* @__PURE__ */ (0,
|
|
10697
|
-
!errorMessage && helperMessage && /* @__PURE__ */ (0,
|
|
10698
|
-
errorMessage && /* @__PURE__ */ (0,
|
|
10771
|
+
showProgress && file && uploadProgress < 100 && /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { className: slots.progressBarContainer(), children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { className: slots.progressBar(), style: { width: `${uploadProgress}%` } }) }),
|
|
10772
|
+
!errorMessage && helperMessage && /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("p", { className: slots.helperMessage(), children: helperMessage }),
|
|
10773
|
+
errorMessage && /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("p", { className: slots.errorMessage(), children: errorMessage })
|
|
10699
10774
|
] });
|
|
10700
10775
|
}
|
|
10701
10776
|
FileUpload.displayName = "FileUpload";
|
|
10702
10777
|
var fileUpload_default = FileUpload;
|
|
10703
|
-
var fileUploadStyle = (0,
|
|
10778
|
+
var fileUploadStyle = (0, import_tailwind_variants32.tv)({
|
|
10704
10779
|
slots: {
|
|
10705
10780
|
base: ["flex", "flex-col", "gap-[5px]"],
|
|
10706
10781
|
container: ["flex", "items-center", "gap-[10px]"],
|
|
@@ -10715,12 +10790,12 @@ var fileUploadStyle = (0, import_tailwind_variants31.tv)({
|
|
|
10715
10790
|
|
|
10716
10791
|
// src/components/charts/circularProgress.tsx
|
|
10717
10792
|
var import_recharts = require("recharts");
|
|
10718
|
-
var
|
|
10719
|
-
var
|
|
10720
|
-
var CircularProgress = (0,
|
|
10793
|
+
var import_react36 = require("react");
|
|
10794
|
+
var import_jsx_runtime39 = require("react/jsx-runtime");
|
|
10795
|
+
var CircularProgress = (0, import_react36.forwardRef)((originalProps, ref) => {
|
|
10721
10796
|
const [props, variantProps] = mapPropsVariants(originalProps, circularProgressStyle.variantKeys);
|
|
10722
10797
|
const { label, size = 150, percentage, unit, classNames } = { ...props, ...variantProps };
|
|
10723
|
-
const slots = (0,
|
|
10798
|
+
const slots = (0, import_react36.useMemo)(() => circularProgressStyle({ ...variantProps }), [variantProps]);
|
|
10724
10799
|
const data = [
|
|
10725
10800
|
{
|
|
10726
10801
|
name: label,
|
|
@@ -10730,9 +10805,9 @@ var CircularProgress = (0, import_react35.forwardRef)((originalProps, ref) => {
|
|
|
10730
10805
|
const BAR_SIZE = 24;
|
|
10731
10806
|
const OUTER_RADIUS = 88;
|
|
10732
10807
|
const INNER_RADIUS = OUTER_RADIUS - BAR_SIZE;
|
|
10733
|
-
return /* @__PURE__ */ (0,
|
|
10734
|
-
/* @__PURE__ */ (0,
|
|
10735
|
-
/* @__PURE__ */ (0,
|
|
10808
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: [
|
|
10809
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { className: "relative", style: { width: size, height: size }, children: [
|
|
10810
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(
|
|
10736
10811
|
import_recharts.RadialBarChart,
|
|
10737
10812
|
{
|
|
10738
10813
|
width: size,
|
|
@@ -10744,7 +10819,7 @@ var CircularProgress = (0, import_react35.forwardRef)((originalProps, ref) => {
|
|
|
10744
10819
|
startAngle: 90,
|
|
10745
10820
|
endAngle: -270,
|
|
10746
10821
|
children: [
|
|
10747
|
-
/* @__PURE__ */ (0,
|
|
10822
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
10748
10823
|
"circle",
|
|
10749
10824
|
{
|
|
10750
10825
|
cx: size / 2,
|
|
@@ -10754,8 +10829,8 @@ var CircularProgress = (0, import_react35.forwardRef)((originalProps, ref) => {
|
|
|
10754
10829
|
fill: "currentColor"
|
|
10755
10830
|
}
|
|
10756
10831
|
),
|
|
10757
|
-
/* @__PURE__ */ (0,
|
|
10758
|
-
/* @__PURE__ */ (0,
|
|
10832
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(import_recharts.PolarAngleAxis, { type: "number", domain: [0, 100], angleAxisId: 0, tick: false }),
|
|
10833
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
10759
10834
|
import_recharts.RadialBar,
|
|
10760
10835
|
{
|
|
10761
10836
|
dataKey: "value",
|
|
@@ -10767,12 +10842,12 @@ var CircularProgress = (0, import_react35.forwardRef)((originalProps, ref) => {
|
|
|
10767
10842
|
]
|
|
10768
10843
|
}
|
|
10769
10844
|
),
|
|
10770
|
-
/* @__PURE__ */ (0,
|
|
10845
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("div", { className: "absolute inset-0 flex items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("span", { className: slots.text({ class: classNames == null ? void 0 : classNames.text }), children: [
|
|
10771
10846
|
percentage,
|
|
10772
10847
|
unit
|
|
10773
10848
|
] }) })
|
|
10774
10849
|
] }),
|
|
10775
|
-
label && /* @__PURE__ */ (0,
|
|
10850
|
+
label && /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("p", { className: slots.label({ class: classNames == null ? void 0 : classNames.label }), children: label })
|
|
10776
10851
|
] });
|
|
10777
10852
|
});
|
|
10778
10853
|
CircularProgress.displayName = "CircularProgress";
|
|
@@ -10810,26 +10885,26 @@ var circularProgressStyle = tv({
|
|
|
10810
10885
|
});
|
|
10811
10886
|
|
|
10812
10887
|
// src/components/charts/areaChart.tsx
|
|
10813
|
-
var
|
|
10888
|
+
var import_react37 = require("react");
|
|
10814
10889
|
var import_recharts2 = require("recharts");
|
|
10815
|
-
var
|
|
10816
|
-
var AreaChartComponent = (0,
|
|
10817
|
-
const uniqueId = (0,
|
|
10890
|
+
var import_jsx_runtime40 = require("react/jsx-runtime");
|
|
10891
|
+
var AreaChartComponent = (0, import_react37.forwardRef)((originalProps, ref) => {
|
|
10892
|
+
const uniqueId = (0, import_react37.useId)();
|
|
10818
10893
|
const [props, variantProps] = mapPropsVariants(originalProps, areaChartStyle.variantKeys);
|
|
10819
10894
|
const { data, label, color = "primary", classNames } = { ...props, ...variantProps };
|
|
10820
|
-
const slots = (0,
|
|
10895
|
+
const slots = (0, import_react37.useMemo)(() => areaChartStyle({ ...variantProps }), [variantProps]);
|
|
10821
10896
|
const COLOR_MAP = {
|
|
10822
10897
|
primary: "#3F9CF2",
|
|
10823
10898
|
danger: "#FF4684"
|
|
10824
10899
|
};
|
|
10825
|
-
const colorHex = (0,
|
|
10826
|
-
const [tickPositions, setTickPositions] = (0,
|
|
10827
|
-
const tickRef = (0,
|
|
10900
|
+
const colorHex = (0, import_react37.useMemo)(() => COLOR_MAP[color], [color]);
|
|
10901
|
+
const [tickPositions, setTickPositions] = (0, import_react37.useState)([]);
|
|
10902
|
+
const tickRef = (0, import_react37.useRef)([]);
|
|
10828
10903
|
const CustomTick = ({ x, y, payload }) => {
|
|
10829
10904
|
if (x !== void 0) {
|
|
10830
10905
|
tickRef.current.push(x);
|
|
10831
10906
|
}
|
|
10832
|
-
return /* @__PURE__ */ (0,
|
|
10907
|
+
return /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
10833
10908
|
"text",
|
|
10834
10909
|
{
|
|
10835
10910
|
x,
|
|
@@ -10843,7 +10918,7 @@ var AreaChartComponent = (0, import_react36.forwardRef)((originalProps, ref) =>
|
|
|
10843
10918
|
}
|
|
10844
10919
|
);
|
|
10845
10920
|
};
|
|
10846
|
-
(0,
|
|
10921
|
+
(0, import_react37.useEffect)(() => {
|
|
10847
10922
|
const raf = requestAnimationFrame(() => {
|
|
10848
10923
|
const unique = [...new Set(tickRef.current)].sort((a, b) => a - b);
|
|
10849
10924
|
const mids = [];
|
|
@@ -10858,19 +10933,19 @@ var AreaChartComponent = (0, import_react36.forwardRef)((originalProps, ref) =>
|
|
|
10858
10933
|
const CustomDotWithShadow = (props2) => {
|
|
10859
10934
|
const { cx, cy, fill, stroke } = props2;
|
|
10860
10935
|
if (cx === void 0 || cy === void 0) return null;
|
|
10861
|
-
return /* @__PURE__ */ (0,
|
|
10862
|
-
/* @__PURE__ */ (0,
|
|
10863
|
-
/* @__PURE__ */ (0,
|
|
10936
|
+
return /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(import_jsx_runtime40.Fragment, { children: [
|
|
10937
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("circle", { cx, cy, r: 8, fill, opacity: 0.2 }),
|
|
10938
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("circle", { cx, cy, r: 3.5, fill, stroke, strokeWidth: 2 })
|
|
10864
10939
|
] });
|
|
10865
10940
|
};
|
|
10866
|
-
return /* @__PURE__ */ (0,
|
|
10867
|
-
label && /* @__PURE__ */ (0,
|
|
10868
|
-
/* @__PURE__ */ (0,
|
|
10869
|
-
/* @__PURE__ */ (0,
|
|
10870
|
-
/* @__PURE__ */ (0,
|
|
10871
|
-
/* @__PURE__ */ (0,
|
|
10941
|
+
return /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: [
|
|
10942
|
+
label && /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("p", { className: slots.label({ class: classNames == null ? void 0 : classNames.label }), children: label }),
|
|
10943
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)(import_recharts2.ResponsiveContainer, { width: "100%", height: "100%", children: /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(import_recharts2.AreaChart, { data, margin: { left: -30 }, children: [
|
|
10944
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)("linearGradient", { id: `colorGradient-${uniqueId}`, x1: "0", y1: "0", x2: "0", y2: "1", children: [
|
|
10945
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("stop", { offset: "5%", stopColor: colorHex, stopOpacity: 0.3 }),
|
|
10946
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("stop", { offset: "95%", stopColor: colorHex, stopOpacity: 0 })
|
|
10872
10947
|
] }) }),
|
|
10873
|
-
/* @__PURE__ */ (0,
|
|
10948
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
10874
10949
|
import_recharts2.CartesianGrid,
|
|
10875
10950
|
{
|
|
10876
10951
|
vertical: true,
|
|
@@ -10880,7 +10955,7 @@ var AreaChartComponent = (0, import_react36.forwardRef)((originalProps, ref) =>
|
|
|
10880
10955
|
verticalPoints: tickPositions
|
|
10881
10956
|
}
|
|
10882
10957
|
),
|
|
10883
|
-
/* @__PURE__ */ (0,
|
|
10958
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
10884
10959
|
import_recharts2.XAxis,
|
|
10885
10960
|
{
|
|
10886
10961
|
dataKey: "name",
|
|
@@ -10890,7 +10965,7 @@ var AreaChartComponent = (0, import_react36.forwardRef)((originalProps, ref) =>
|
|
|
10890
10965
|
padding: { left: 35.5, right: 35.5 }
|
|
10891
10966
|
}
|
|
10892
10967
|
),
|
|
10893
|
-
/* @__PURE__ */ (0,
|
|
10968
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
10894
10969
|
import_recharts2.YAxis,
|
|
10895
10970
|
{
|
|
10896
10971
|
axisLine: { stroke: "#DFE2E7", strokeWidth: 1 },
|
|
@@ -10906,7 +10981,7 @@ var AreaChartComponent = (0, import_react36.forwardRef)((originalProps, ref) =>
|
|
|
10906
10981
|
domain: [-6, 110]
|
|
10907
10982
|
}
|
|
10908
10983
|
),
|
|
10909
|
-
/* @__PURE__ */ (0,
|
|
10984
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
10910
10985
|
import_recharts2.Area,
|
|
10911
10986
|
{
|
|
10912
10987
|
type: "monotone",
|
|
@@ -10914,7 +10989,7 @@ var AreaChartComponent = (0, import_react36.forwardRef)((originalProps, ref) =>
|
|
|
10914
10989
|
stroke: colorHex,
|
|
10915
10990
|
strokeWidth: 2,
|
|
10916
10991
|
fill: `url(#colorGradient-${uniqueId})`,
|
|
10917
|
-
dot: /* @__PURE__ */ (0,
|
|
10992
|
+
dot: /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(CustomDotWithShadow, { stroke: colorHex, fill: colorHex }),
|
|
10918
10993
|
activeDot: { r: 7, fill: colorHex }
|
|
10919
10994
|
}
|
|
10920
10995
|
)
|
|
@@ -10946,20 +11021,20 @@ var areaChartStyle = tv({
|
|
|
10946
11021
|
});
|
|
10947
11022
|
|
|
10948
11023
|
// src/components/charts/barChart.tsx
|
|
10949
|
-
var
|
|
11024
|
+
var import_react38 = require("react");
|
|
10950
11025
|
var import_recharts3 = require("recharts");
|
|
10951
|
-
var
|
|
10952
|
-
var BarChartComponent = (0,
|
|
11026
|
+
var import_jsx_runtime41 = require("react/jsx-runtime");
|
|
11027
|
+
var BarChartComponent = (0, import_react38.forwardRef)((originalProps, ref) => {
|
|
10953
11028
|
const [props, variantProps] = mapPropsVariants(originalProps, barChartStyle.variantKeys);
|
|
10954
11029
|
const { data, label, classNames } = { ...props, ...variantProps };
|
|
10955
|
-
const slots = (0,
|
|
11030
|
+
const slots = (0, import_react38.useMemo)(() => barChartStyle({ ...variantProps }), [variantProps]);
|
|
10956
11031
|
const COLOR_MAP = {
|
|
10957
11032
|
primary: "#C7E5FA",
|
|
10958
11033
|
secondary: "#DEC1FA",
|
|
10959
11034
|
warning: "#F9C967"
|
|
10960
11035
|
};
|
|
10961
|
-
const [tickPositions, setTickPositions] = (0,
|
|
10962
|
-
const tickRef = (0,
|
|
11036
|
+
const [tickPositions, setTickPositions] = (0, import_react38.useState)([]);
|
|
11037
|
+
const tickRef = (0, import_react38.useRef)([]);
|
|
10963
11038
|
const CustomBarShape = (barProps) => {
|
|
10964
11039
|
const { x, y, width, height, fill } = barProps;
|
|
10965
11040
|
const radius = 5;
|
|
@@ -10967,19 +11042,19 @@ var BarChartComponent = (0, import_react37.forwardRef)((originalProps, ref) => {
|
|
|
10967
11042
|
const adjustedHeight = height + extraHeight;
|
|
10968
11043
|
const adjustedY = y;
|
|
10969
11044
|
const bottomY = adjustedY + adjustedHeight;
|
|
10970
|
-
return height ? /* @__PURE__ */ (0,
|
|
11045
|
+
return height ? /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
10971
11046
|
"path",
|
|
10972
11047
|
{
|
|
10973
11048
|
d: `M${x},${bottomY} L${x},${adjustedY + radius} Q${x},${adjustedY} ${x + radius},${adjustedY} L${x + width - radius},${adjustedY} Q${x + width},${adjustedY} ${x + width},${adjustedY + radius} L${x + width},${bottomY} Z`,
|
|
10974
11049
|
fill
|
|
10975
11050
|
}
|
|
10976
|
-
) : /* @__PURE__ */ (0,
|
|
11051
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("rect", { x, y, width, height: 0, fill });
|
|
10977
11052
|
};
|
|
10978
11053
|
const CustomTick = ({ x, y, payload }) => {
|
|
10979
11054
|
if (x !== void 0) {
|
|
10980
11055
|
tickRef.current.push(x);
|
|
10981
11056
|
}
|
|
10982
|
-
return /* @__PURE__ */ (0,
|
|
11057
|
+
return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
10983
11058
|
"text",
|
|
10984
11059
|
{
|
|
10985
11060
|
x,
|
|
@@ -10993,7 +11068,7 @@ var BarChartComponent = (0, import_react37.forwardRef)((originalProps, ref) => {
|
|
|
10993
11068
|
}
|
|
10994
11069
|
);
|
|
10995
11070
|
};
|
|
10996
|
-
(0,
|
|
11071
|
+
(0, import_react38.useEffect)(() => {
|
|
10997
11072
|
const raf = requestAnimationFrame(() => {
|
|
10998
11073
|
const unique = [...new Set(tickRef.current)].sort((a, b) => a - b);
|
|
10999
11074
|
const mids = [];
|
|
@@ -11005,10 +11080,10 @@ var BarChartComponent = (0, import_react37.forwardRef)((originalProps, ref) => {
|
|
|
11005
11080
|
});
|
|
11006
11081
|
return () => cancelAnimationFrame(raf);
|
|
11007
11082
|
}, [data]);
|
|
11008
|
-
return /* @__PURE__ */ (0,
|
|
11009
|
-
label && /* @__PURE__ */ (0,
|
|
11010
|
-
/* @__PURE__ */ (0,
|
|
11011
|
-
/* @__PURE__ */ (0,
|
|
11083
|
+
return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: [
|
|
11084
|
+
label && /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("p", { className: slots.label({ class: classNames == null ? void 0 : classNames.label }), children: label }),
|
|
11085
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)(import_recharts3.ResponsiveContainer, { width: "100%", height: "100%", children: /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(import_recharts3.BarChart, { data, margin: { left: -30 }, barSize: 20, barGap: 10, children: [
|
|
11086
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
11012
11087
|
import_recharts3.CartesianGrid,
|
|
11013
11088
|
{
|
|
11014
11089
|
vertical: true,
|
|
@@ -11018,7 +11093,7 @@ var BarChartComponent = (0, import_react37.forwardRef)((originalProps, ref) => {
|
|
|
11018
11093
|
verticalPoints: tickPositions
|
|
11019
11094
|
}
|
|
11020
11095
|
),
|
|
11021
|
-
/* @__PURE__ */ (0,
|
|
11096
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
11022
11097
|
import_recharts3.XAxis,
|
|
11023
11098
|
{
|
|
11024
11099
|
dataKey: "name",
|
|
@@ -11028,7 +11103,7 @@ var BarChartComponent = (0, import_react37.forwardRef)((originalProps, ref) => {
|
|
|
11028
11103
|
padding: { left: 32, right: 32 }
|
|
11029
11104
|
}
|
|
11030
11105
|
),
|
|
11031
|
-
/* @__PURE__ */ (0,
|
|
11106
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
11032
11107
|
import_recharts3.YAxis,
|
|
11033
11108
|
{
|
|
11034
11109
|
axisLine: { stroke: "#DFE2E7", strokeWidth: 1 },
|
|
@@ -11044,9 +11119,9 @@ var BarChartComponent = (0, import_react37.forwardRef)((originalProps, ref) => {
|
|
|
11044
11119
|
domain: [-6, 110]
|
|
11045
11120
|
}
|
|
11046
11121
|
),
|
|
11047
|
-
/* @__PURE__ */ (0,
|
|
11048
|
-
/* @__PURE__ */ (0,
|
|
11049
|
-
/* @__PURE__ */ (0,
|
|
11122
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)(import_recharts3.Bar, { dataKey: "avg", fill: COLOR_MAP.primary, width: 20, shape: CustomBarShape }),
|
|
11123
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)(import_recharts3.Bar, { dataKey: "high", fill: COLOR_MAP.secondary, width: 20, shape: CustomBarShape }),
|
|
11124
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)(import_recharts3.Bar, { dataKey: "low", fill: COLOR_MAP.warning, width: 20, shape: CustomBarShape })
|
|
11050
11125
|
] }) })
|
|
11051
11126
|
] });
|
|
11052
11127
|
});
|
|
@@ -11076,6 +11151,7 @@ var barChartStyle = tv({
|
|
|
11076
11151
|
CircularProgress,
|
|
11077
11152
|
DateTimePicker,
|
|
11078
11153
|
DefinitionTable,
|
|
11154
|
+
DefinitionTable2,
|
|
11079
11155
|
Drawer,
|
|
11080
11156
|
FileUpload,
|
|
11081
11157
|
Icon,
|