@deepnoid/ui 0.1.61 → 0.1.63
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 +182 -187
- package/dist/{chunk-WINX3AKW.mjs → chunk-PMZH6GPQ.mjs} +1 -1
- package/dist/{chunk-HHRKPSO6.mjs → chunk-QX6F6C6X.mjs} +2 -1
- package/dist/{chunk-A6HCKIVP.mjs → chunk-V5T3D6WI.mjs} +3 -3
- package/dist/components/breadcrumb/breadcrumb.mjs +3 -3
- package/dist/components/breadcrumb/index.mjs +3 -3
- package/dist/components/button/index.mjs +6 -6
- package/dist/components/dateTimePicker/dateTimePicker.mjs +3 -3
- package/dist/components/dateTimePicker/index.mjs +3 -3
- package/dist/components/dateTimePicker/timePicker.mjs +2 -2
- package/dist/components/fileUpload/fileUpload.mjs +3 -3
- package/dist/components/fileUpload/index.mjs +3 -3
- package/dist/components/list/index.mjs +3 -3
- package/dist/components/modal/index.mjs +3 -3
- package/dist/components/modal/modal.mjs +3 -3
- package/dist/components/table/definition-table.d.mts +13 -6
- package/dist/components/table/definition-table.d.ts +13 -6
- package/dist/components/table/definition-table.js +99 -12
- package/dist/components/table/definition-table.mjs +2 -1
- package/dist/components/table/index.d.mts +1 -2
- package/dist/components/table/index.d.ts +1 -2
- package/dist/components/table/index.js +12 -41
- package/dist/components/table/index.mjs +6 -10
- package/dist/components/table/table.mjs +2 -2
- package/dist/components/tree/index.js +2 -1
- package/dist/components/tree/index.mjs +1 -1
- package/dist/components/tree/tree.d.mts +6 -0
- package/dist/components/tree/tree.d.ts +6 -0
- package/dist/components/tree/tree.js +2 -1
- package/dist/components/tree/tree.mjs +1 -1
- package/dist/index.d.mts +1 -2
- package/dist/index.d.ts +1 -2
- package/dist/index.js +329 -357
- package/dist/index.mjs +38 -42
- package/package.json +1 -1
- package/dist/chunk-6TIIBU7J.mjs +0 -35
- package/dist/components/table/definition-table2.d.mts +0 -58
- package/dist/components/table/definition-table2.d.ts +0 -58
- package/dist/components/table/definition-table2.js +0 -438
- package/dist/components/table/definition-table2.mjs +0 -10
- package/dist/{chunk-K65JLBZI.mjs → chunk-DLFXCMUU.mjs} +3 -3
- package/dist/{chunk-DLR42ZKG.mjs → chunk-DX3KXNP6.mjs} +0 -0
- package/dist/{chunk-LKC7AK3H.mjs → chunk-MPATONSK.mjs} +3 -3
- package/dist/{chunk-UEUOHSJ6.mjs → chunk-ORYYC6BI.mjs} +3 -3
package/dist/index.js
CHANGED
|
@@ -114,7 +114,6 @@ __export(index_exports, {
|
|
|
114
114
|
CircularProgress: () => circularProgress_default,
|
|
115
115
|
DateTimePicker: () => dateTimePicker_default,
|
|
116
116
|
DefinitionTable: () => definition_table_default,
|
|
117
|
-
DefinitionTable2: () => definition_table2_default,
|
|
118
117
|
Drawer: () => drawer_default,
|
|
119
118
|
FileUpload: () => fileUpload_default,
|
|
120
119
|
Icon: () => Icon_default,
|
|
@@ -7851,33 +7850,6 @@ var tableStyle = (0, import_tailwind_variants16.tv)({
|
|
|
7851
7850
|
// src/components/table/definition-table.tsx
|
|
7852
7851
|
var import_react16 = require("react");
|
|
7853
7852
|
var import_jsx_runtime21 = require("react/jsx-runtime");
|
|
7854
|
-
var DEFAULT_COLUMN_CLASSES = [
|
|
7855
|
-
"w-[120px] px-[10px] py-[9.5px] font-bold text-md text-body-foreground border-r border-neutral-light",
|
|
7856
|
-
"px-[10px] py-[9.5px]"
|
|
7857
|
-
];
|
|
7858
|
-
var DefinitionTableRow = ({ columns, columnClasses = [] }) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("tr", { className: "border-neutral-light min-h-[50px] border-b", children: columns.map((col, index) => {
|
|
7859
|
-
var _a;
|
|
7860
|
-
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("td", { className: (_a = columnClasses[index]) != null ? _a : DEFAULT_COLUMN_CLASSES[index], children: col }, index);
|
|
7861
|
-
}) });
|
|
7862
|
-
var DefinitionTable = (0, import_react16.forwardRef)(({ rows, footer, classNames }, ref) => {
|
|
7863
|
-
const slots = (0, import_react16.useMemo)(() => DefinitionTableStyle(), []);
|
|
7864
|
-
return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: [
|
|
7865
|
-
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("table", { className: slots.table({ class: classNames == null ? void 0 : classNames.table }), children: /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("tbody", { children: rows.map((row, i) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(DefinitionTableRow, { ...row }, i)) }) }),
|
|
7866
|
-
footer && /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { children: footer })
|
|
7867
|
-
] });
|
|
7868
|
-
});
|
|
7869
|
-
DefinitionTable.displayName = "DefinitionTable";
|
|
7870
|
-
var definition_table_default = DefinitionTable;
|
|
7871
|
-
var DefinitionTableStyle = tv({
|
|
7872
|
-
slots: {
|
|
7873
|
-
base: ["flex", "flex-col", "gap-[30px]"],
|
|
7874
|
-
table: ["w-full", "table-fixed", "border", "border-neutral-light"]
|
|
7875
|
-
}
|
|
7876
|
-
});
|
|
7877
|
-
|
|
7878
|
-
// src/components/table/definition-table2.tsx
|
|
7879
|
-
var import_react17 = require("react");
|
|
7880
|
-
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
7881
7853
|
var DEFAULT_CELL_CLASSES = "px-[10px] py-[9.5px] text-md border-r border-neutral-light";
|
|
7882
7854
|
var FIRST_CELL_WIDTH_CLASS = "w-[120px] font-bold text-md text-body-foreground";
|
|
7883
7855
|
var renderColGroup = (rows) => {
|
|
@@ -7903,11 +7875,11 @@ var renderColGroup = (rows) => {
|
|
|
7903
7875
|
});
|
|
7904
7876
|
const cols = [];
|
|
7905
7877
|
for (let i = 0; i < maxCols; i++) {
|
|
7906
|
-
cols.push(/* @__PURE__ */ (0,
|
|
7878
|
+
cols.push(/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("col", { style: colWidths[i] ? { width: colWidths[i] } : { width: "auto" } }, `col-${i}`));
|
|
7907
7879
|
}
|
|
7908
|
-
return /* @__PURE__ */ (0,
|
|
7880
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("colgroup", { children: cols });
|
|
7909
7881
|
};
|
|
7910
|
-
var
|
|
7882
|
+
var DefinitionTableRow = ({ cells, className }) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("tr", { className: `border-neutral-light min-h-[50px] border-b ${className || ""}`, children: cells.map((cell, colIndex) => {
|
|
7911
7883
|
const isFirstCell = colIndex === 0;
|
|
7912
7884
|
const combinedClassName = [isFirstCell ? FIRST_CELL_WIDTH_CLASS : "", clsx(DEFAULT_CELL_CLASSES, cell.className)].filter(Boolean).join(" ");
|
|
7913
7885
|
let cellStyle;
|
|
@@ -7918,7 +7890,7 @@ var DefinitionTableRow2 = ({ cells, className }) => /* @__PURE__ */ (0, import_j
|
|
|
7918
7890
|
} else {
|
|
7919
7891
|
cellStyle = { width: "100%" };
|
|
7920
7892
|
}
|
|
7921
|
-
return /* @__PURE__ */ (0,
|
|
7893
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(
|
|
7922
7894
|
"td",
|
|
7923
7895
|
{
|
|
7924
7896
|
className: combinedClassName,
|
|
@@ -7930,19 +7902,19 @@ var DefinitionTableRow2 = ({ cells, className }) => /* @__PURE__ */ (0, import_j
|
|
|
7930
7902
|
colIndex
|
|
7931
7903
|
);
|
|
7932
7904
|
}) });
|
|
7933
|
-
var DefinitionTable2 = (0,
|
|
7934
|
-
const slots = (0,
|
|
7935
|
-
return /* @__PURE__ */ (0,
|
|
7936
|
-
/* @__PURE__ */ (0,
|
|
7905
|
+
var DefinitionTable2 = (0, import_react16.forwardRef)(({ rows = [], footer, classNames }, ref) => {
|
|
7906
|
+
const slots = (0, import_react16.useMemo)(() => DefinitionTableStyle(), []);
|
|
7907
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: [
|
|
7908
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("table", { className: slots.table({ class: classNames == null ? void 0 : classNames.table }), children: [
|
|
7937
7909
|
renderColGroup(rows),
|
|
7938
|
-
/* @__PURE__ */ (0,
|
|
7910
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("tbody", { children: rows.map((row, i) => /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(DefinitionTableRow, { ...row, className: `${row.className || ""} ${i === 0 ? "first-row" : ""}` }, i)) })
|
|
7939
7911
|
] }),
|
|
7940
|
-
footer && /* @__PURE__ */ (0,
|
|
7912
|
+
footer && /* @__PURE__ */ (0, import_jsx_runtime21.jsx)("div", { children: footer })
|
|
7941
7913
|
] });
|
|
7942
7914
|
});
|
|
7943
7915
|
DefinitionTable2.displayName = "DefinitionTable2";
|
|
7944
|
-
var
|
|
7945
|
-
var
|
|
7916
|
+
var definition_table_default = DefinitionTable2;
|
|
7917
|
+
var DefinitionTableStyle = tv({
|
|
7946
7918
|
slots: {
|
|
7947
7919
|
base: ["flex", "flex-col", "gap-[30px]"],
|
|
7948
7920
|
table: ["w-full", "table-auto", "border", "border-neutral-light"]
|
|
@@ -7950,10 +7922,10 @@ var DefinitionTableStyle2 = tv({
|
|
|
7950
7922
|
});
|
|
7951
7923
|
|
|
7952
7924
|
// src/components/select/select.tsx
|
|
7953
|
-
var
|
|
7925
|
+
var import_react17 = require("react");
|
|
7954
7926
|
var import_react_dom = require("react-dom");
|
|
7955
|
-
var
|
|
7956
|
-
var Select = (0,
|
|
7927
|
+
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
7928
|
+
var Select = (0, import_react17.forwardRef)((originalProps, ref) => {
|
|
7957
7929
|
var _a, _b;
|
|
7958
7930
|
const [props, variantProps] = mapPropsVariants(originalProps, select.variantKeys);
|
|
7959
7931
|
const {
|
|
@@ -7967,14 +7939,14 @@ var Select = (0, import_react18.forwardRef)((originalProps, ref) => {
|
|
|
7967
7939
|
multiple,
|
|
7968
7940
|
...inputProps
|
|
7969
7941
|
} = props;
|
|
7970
|
-
const slots = (0,
|
|
7971
|
-
const [selectedOptions, setSelectedOptions] = (0,
|
|
7972
|
-
const [targetRect, setTargetRect] = (0,
|
|
7973
|
-
const [optionWrapperHeight, setOptionWrapperHeight] = (0,
|
|
7974
|
-
const [isVisible, setIsVisible] = (0,
|
|
7975
|
-
const [isOpen, setIsOpen] = (0,
|
|
7976
|
-
const selectWrapperRef = (0,
|
|
7977
|
-
const optionWrapperRef = (0,
|
|
7942
|
+
const slots = (0, import_react17.useMemo)(() => select({ ...variantProps }), [variantProps]);
|
|
7943
|
+
const [selectedOptions, setSelectedOptions] = (0, import_react17.useState)(defaultSelectedOptions || []);
|
|
7944
|
+
const [targetRect, setTargetRect] = (0, import_react17.useState)(null);
|
|
7945
|
+
const [optionWrapperHeight, setOptionWrapperHeight] = (0, import_react17.useState)(0);
|
|
7946
|
+
const [isVisible, setIsVisible] = (0, import_react17.useState)(false);
|
|
7947
|
+
const [isOpen, setIsOpen] = (0, import_react17.useState)(false);
|
|
7948
|
+
const selectWrapperRef = (0, import_react17.useRef)(null);
|
|
7949
|
+
const optionWrapperRef = (0, import_react17.useRef)(null);
|
|
7978
7950
|
const handleToggleSelect = () => {
|
|
7979
7951
|
if (isOpen) {
|
|
7980
7952
|
setIsOpen(false);
|
|
@@ -8012,7 +7984,7 @@ var Select = (0, import_react18.forwardRef)((originalProps, ref) => {
|
|
|
8012
7984
|
setSelectedOptions(nextOptions);
|
|
8013
7985
|
onChange == null ? void 0 : onChange(nextOptions);
|
|
8014
7986
|
};
|
|
8015
|
-
(0,
|
|
7987
|
+
(0, import_react17.useEffect)(() => {
|
|
8016
7988
|
const handleClickOutside = (e) => {
|
|
8017
7989
|
var _a2;
|
|
8018
7990
|
if (optionWrapperRef.current && !optionWrapperRef.current.contains(e.target) && !((_a2 = selectWrapperRef.current) == null ? void 0 : _a2.contains(e.target))) {
|
|
@@ -8023,7 +7995,7 @@ var Select = (0, import_react18.forwardRef)((originalProps, ref) => {
|
|
|
8023
7995
|
window.addEventListener("mousedown", handleClickOutside);
|
|
8024
7996
|
return () => window.removeEventListener("mousedown", handleClickOutside);
|
|
8025
7997
|
}, []);
|
|
8026
|
-
(0,
|
|
7998
|
+
(0, import_react17.useEffect)(() => {
|
|
8027
7999
|
if (optionWrapperRef.current) {
|
|
8028
8000
|
setOptionWrapperHeight(optionWrapperRef.current.getBoundingClientRect().height);
|
|
8029
8001
|
}
|
|
@@ -8037,26 +8009,26 @@ var Select = (0, import_react18.forwardRef)((originalProps, ref) => {
|
|
|
8037
8009
|
onClick
|
|
8038
8010
|
}) => {
|
|
8039
8011
|
const slot = select({ ...variantProps, isSelected });
|
|
8040
|
-
return /* @__PURE__ */ (0,
|
|
8012
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)("div", { title: option.label, onClick, className: clsx(slot.option({ class: classNames == null ? void 0 : classNames.option })), children: [
|
|
8041
8013
|
option.label,
|
|
8042
|
-
isSelected && /* @__PURE__ */ (0,
|
|
8014
|
+
isSelected && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(Icon_default, { name: "check", size: originalProps.size })
|
|
8043
8015
|
] });
|
|
8044
8016
|
};
|
|
8045
8017
|
const isControlled = originalProps.value !== void 0;
|
|
8046
|
-
(0,
|
|
8018
|
+
(0, import_react17.useEffect)(() => {
|
|
8047
8019
|
if (isControlled) {
|
|
8048
8020
|
const valueArray = Array.isArray(originalProps.value) ? originalProps.value : [originalProps.value];
|
|
8049
8021
|
const matchedOptions = options.filter((opt) => valueArray.includes(opt.value));
|
|
8050
8022
|
setSelectedOptions(matchedOptions);
|
|
8051
8023
|
}
|
|
8052
8024
|
}, [originalProps.value, options]);
|
|
8053
|
-
(0,
|
|
8025
|
+
(0, import_react17.useEffect)(() => {
|
|
8054
8026
|
if (!isControlled && defaultSelectedOptions) {
|
|
8055
8027
|
setSelectedOptions(defaultSelectedOptions);
|
|
8056
8028
|
}
|
|
8057
8029
|
}, [defaultSelectedOptions]);
|
|
8058
|
-
return /* @__PURE__ */ (0,
|
|
8059
|
-
/* @__PURE__ */ (0,
|
|
8030
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(import_jsx_runtime22.Fragment, { children: [
|
|
8031
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
|
|
8060
8032
|
"div",
|
|
8061
8033
|
{
|
|
8062
8034
|
className: clsx(
|
|
@@ -8064,9 +8036,9 @@ var Select = (0, import_react18.forwardRef)((originalProps, ref) => {
|
|
|
8064
8036
|
variantProps.direction === "horizon" ? slots.horizon({ class: classNames == null ? void 0 : classNames.horizon }) : slots.vertical({ class: classNames == null ? void 0 : classNames.vertical })
|
|
8065
8037
|
),
|
|
8066
8038
|
children: [
|
|
8067
|
-
label && /* @__PURE__ */ (0,
|
|
8068
|
-
/* @__PURE__ */ (0,
|
|
8069
|
-
/* @__PURE__ */ (0,
|
|
8039
|
+
label && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("label", { className: slots.label({ class: classNames == null ? void 0 : classNames.label }), children: label }),
|
|
8040
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsxs)("div", { className: slots.wrapper({ class: classNames == null ? void 0 : classNames.wrapper }), children: [
|
|
8041
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsxs)(
|
|
8070
8042
|
"div",
|
|
8071
8043
|
{
|
|
8072
8044
|
"data-expanded": isOpen,
|
|
@@ -8077,7 +8049,7 @@ var Select = (0, import_react18.forwardRef)((originalProps, ref) => {
|
|
|
8077
8049
|
ref: selectWrapperRef,
|
|
8078
8050
|
onClick: handleToggleSelect,
|
|
8079
8051
|
children: [
|
|
8080
|
-
/* @__PURE__ */ (0,
|
|
8052
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
8081
8053
|
"input",
|
|
8082
8054
|
{
|
|
8083
8055
|
...inputProps,
|
|
@@ -8092,8 +8064,8 @@ var Select = (0, import_react18.forwardRef)((originalProps, ref) => {
|
|
|
8092
8064
|
size: 0
|
|
8093
8065
|
}
|
|
8094
8066
|
),
|
|
8095
|
-
/* @__PURE__ */ (0,
|
|
8096
|
-
/* @__PURE__ */ (0,
|
|
8067
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)("input", { type: "hidden", name: inputProps.name, value: selectedValue }),
|
|
8068
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
8097
8069
|
Icon_default,
|
|
8098
8070
|
{
|
|
8099
8071
|
name: "brace-up",
|
|
@@ -8104,14 +8076,14 @@ var Select = (0, import_react18.forwardRef)((originalProps, ref) => {
|
|
|
8104
8076
|
]
|
|
8105
8077
|
}
|
|
8106
8078
|
),
|
|
8107
|
-
helperMessage && !errorMessage && /* @__PURE__ */ (0,
|
|
8108
|
-
errorMessage && /* @__PURE__ */ (0,
|
|
8079
|
+
helperMessage && !errorMessage && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("p", { className: slots.helperMessage({ class: classNames == null ? void 0 : classNames.helperMessage }), children: helperMessage }),
|
|
8080
|
+
errorMessage && /* @__PURE__ */ (0, import_jsx_runtime22.jsx)("p", { className: clsx("error", slots.errorMessage({ class: classNames == null ? void 0 : classNames.errorMessage })), children: errorMessage })
|
|
8109
8081
|
] })
|
|
8110
8082
|
]
|
|
8111
8083
|
}
|
|
8112
8084
|
),
|
|
8113
8085
|
isVisible && (0, import_react_dom.createPortal)(
|
|
8114
|
-
/* @__PURE__ */ (0,
|
|
8086
|
+
/* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
8115
8087
|
"div",
|
|
8116
8088
|
{
|
|
8117
8089
|
ref: optionWrapperRef,
|
|
@@ -8128,7 +8100,7 @@ var Select = (0, import_react18.forwardRef)((originalProps, ref) => {
|
|
|
8128
8100
|
},
|
|
8129
8101
|
children: options.map((option) => {
|
|
8130
8102
|
const isSelected = selectedOptions.some((o) => o.value === option.value);
|
|
8131
|
-
return /* @__PURE__ */ (0,
|
|
8103
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
8132
8104
|
Option,
|
|
8133
8105
|
{
|
|
8134
8106
|
option,
|
|
@@ -8300,16 +8272,16 @@ var select = tv({
|
|
|
8300
8272
|
});
|
|
8301
8273
|
|
|
8302
8274
|
// src/components/chip/chip.tsx
|
|
8303
|
-
var
|
|
8304
|
-
var
|
|
8305
|
-
var Chip = (0,
|
|
8275
|
+
var import_react18 = require("react");
|
|
8276
|
+
var import_jsx_runtime23 = require("react/jsx-runtime");
|
|
8277
|
+
var Chip = (0, import_react18.forwardRef)((originalProps, ref) => {
|
|
8306
8278
|
var _a;
|
|
8307
8279
|
const [rawProps, variantProps] = mapPropsVariants(originalProps, chipStyle.variantKeys);
|
|
8308
8280
|
const props = { ...rawProps, ...variantProps };
|
|
8309
8281
|
const Component = props.onClick ? "button" : "div";
|
|
8310
|
-
const slots = (0,
|
|
8311
|
-
const renderIcon = (name) => name ? /* @__PURE__ */ (0,
|
|
8312
|
-
return /* @__PURE__ */ (0,
|
|
8282
|
+
const slots = (0, import_react18.useMemo)(() => chipStyle({ ...variantProps }), [variantProps]);
|
|
8283
|
+
const renderIcon = (name) => name ? /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(Icon_default, { name, fill: true, size: props.size, className: slots.icon() }) : null;
|
|
8284
|
+
return /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)(
|
|
8313
8285
|
Component,
|
|
8314
8286
|
{
|
|
8315
8287
|
ref,
|
|
@@ -8485,13 +8457,13 @@ var chipStyle = tv({
|
|
|
8485
8457
|
});
|
|
8486
8458
|
|
|
8487
8459
|
// src/components/radio/radio.tsx
|
|
8488
|
-
var
|
|
8489
|
-
var
|
|
8490
|
-
var Radio = (0,
|
|
8460
|
+
var import_react19 = require("react");
|
|
8461
|
+
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
8462
|
+
var Radio = (0, import_react19.forwardRef)((originalProps, ref) => {
|
|
8491
8463
|
const [props, variantProps] = mapPropsVariants(originalProps, radioStyle.variantKeys);
|
|
8492
8464
|
const { children, classNames, labelPosition = "end", ...inputProps } = props;
|
|
8493
|
-
const slots = (0,
|
|
8494
|
-
return /* @__PURE__ */ (0,
|
|
8465
|
+
const slots = (0, import_react19.useMemo)(() => radioStyle({ ...variantProps }), [variantProps]);
|
|
8466
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)(
|
|
8495
8467
|
"label",
|
|
8496
8468
|
{
|
|
8497
8469
|
className: clsx(
|
|
@@ -8499,9 +8471,9 @@ var Radio = (0, import_react20.forwardRef)((originalProps, ref) => {
|
|
|
8499
8471
|
labelPosition === "start" && slots.labelReverse({ class: classNames == null ? void 0 : classNames.labelReverse })
|
|
8500
8472
|
),
|
|
8501
8473
|
children: [
|
|
8502
|
-
/* @__PURE__ */ (0,
|
|
8503
|
-
/* @__PURE__ */ (0,
|
|
8504
|
-
/* @__PURE__ */ (0,
|
|
8474
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: "hidden", children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("input", { ...inputProps, type: "radio", ref }) }),
|
|
8475
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("span", { className: slots.outerDot({ class: classNames == null ? void 0 : classNames.outerDot }), children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("span", { className: slots.innerDot({ class: classNames == null ? void 0 : classNames.innerDot }) }) }),
|
|
8476
|
+
/* @__PURE__ */ (0, import_jsx_runtime24.jsx)("div", { className: slots.labelWrapper({ class: classNames == null ? void 0 : classNames.labelWrapper }), children: children && /* @__PURE__ */ (0, import_jsx_runtime24.jsx)("span", { className: slots.label({ class: classNames == null ? void 0 : classNames.label }), children }) })
|
|
8505
8477
|
]
|
|
8506
8478
|
}
|
|
8507
8479
|
);
|
|
@@ -8641,18 +8613,18 @@ var radioStyle = tv({
|
|
|
8641
8613
|
});
|
|
8642
8614
|
|
|
8643
8615
|
// src/components/switch/switch.tsx
|
|
8644
|
-
var
|
|
8645
|
-
var
|
|
8646
|
-
var
|
|
8647
|
-
var Switch = (0,
|
|
8616
|
+
var import_react20 = require("react");
|
|
8617
|
+
var import_tailwind_variants21 = require("tailwind-variants");
|
|
8618
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
8619
|
+
var Switch = (0, import_react20.forwardRef)((originalProps, ref) => {
|
|
8648
8620
|
const [rawProps, variantProps] = mapPropsVariants(originalProps, switchStyle.variantKeys);
|
|
8649
8621
|
const { size, color, isDisabled, disableAnimation, id, checked, onChange, classNames, ...inputProps } = {
|
|
8650
8622
|
...rawProps,
|
|
8651
8623
|
...variantProps
|
|
8652
8624
|
};
|
|
8653
|
-
const slots = (0,
|
|
8654
|
-
return /* @__PURE__ */ (0,
|
|
8655
|
-
/* @__PURE__ */ (0,
|
|
8625
|
+
const slots = (0, import_react20.useMemo)(() => switchStyle({ ...variantProps }), [variantProps]);
|
|
8626
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)("label", { className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: [
|
|
8627
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)(
|
|
8656
8628
|
"input",
|
|
8657
8629
|
{
|
|
8658
8630
|
...inputProps,
|
|
@@ -8665,12 +8637,12 @@ var Switch = (0, import_react21.forwardRef)((originalProps, ref) => {
|
|
|
8665
8637
|
onChange
|
|
8666
8638
|
}
|
|
8667
8639
|
),
|
|
8668
|
-
/* @__PURE__ */ (0,
|
|
8640
|
+
/* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: slots.outerWrapper({ class: classNames == null ? void 0 : classNames.outerWrapper }), children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: slots.wrapper({ class: classNames == null ? void 0 : classNames.wrapper }), children: /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("span", { className: slots.thumb({ class: classNames == null ? void 0 : classNames.thumb }) }) }) })
|
|
8669
8641
|
] });
|
|
8670
8642
|
});
|
|
8671
8643
|
Switch.displayName = "Switch";
|
|
8672
8644
|
var switch_default = Switch;
|
|
8673
|
-
var switchStyle = (0,
|
|
8645
|
+
var switchStyle = (0, import_tailwind_variants21.tv)({
|
|
8674
8646
|
slots: {
|
|
8675
8647
|
base: ["group/switch", "relative", "max-w-fit", "inline-flex", "items-center", "justify-start", "cursor-pointer"],
|
|
8676
8648
|
outerWrapper: [
|
|
@@ -8775,7 +8747,7 @@ var switchStyle = (0, import_tailwind_variants22.tv)({
|
|
|
8775
8747
|
});
|
|
8776
8748
|
|
|
8777
8749
|
// src/components/tooltip/tooltip.tsx
|
|
8778
|
-
var
|
|
8750
|
+
var import_react22 = require("react");
|
|
8779
8751
|
var import_react_dom2 = require("react-dom");
|
|
8780
8752
|
|
|
8781
8753
|
// src/components/tooltip/tooltip-utils.ts
|
|
@@ -8898,11 +8870,11 @@ var getTailStyles = (placement) => {
|
|
|
8898
8870
|
};
|
|
8899
8871
|
|
|
8900
8872
|
// src/components/tooltip/useTooltip.ts
|
|
8901
|
-
var
|
|
8873
|
+
var import_react21 = require("react");
|
|
8902
8874
|
var useTooltip = ({ placement, offset, targetRect }) => {
|
|
8903
|
-
const [tooltipPosition, setTooltipPosition] = (0,
|
|
8904
|
-
const tooltipRef = (0,
|
|
8905
|
-
(0,
|
|
8875
|
+
const [tooltipPosition, setTooltipPosition] = (0, import_react21.useState)({ x: 0, y: 0 });
|
|
8876
|
+
const tooltipRef = (0, import_react21.useRef)(null);
|
|
8877
|
+
(0, import_react21.useEffect)(() => {
|
|
8906
8878
|
if (targetRect && tooltipRef.current) {
|
|
8907
8879
|
const { width, height } = tooltipRef.current.getBoundingClientRect();
|
|
8908
8880
|
const scrollX = window.scrollX;
|
|
@@ -8932,29 +8904,29 @@ var useTooltip = ({ placement, offset, targetRect }) => {
|
|
|
8932
8904
|
};
|
|
8933
8905
|
|
|
8934
8906
|
// src/components/tooltip/tooltip.tsx
|
|
8935
|
-
var
|
|
8936
|
-
var Tooltip = (0,
|
|
8907
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
8908
|
+
var Tooltip = (0, import_react22.forwardRef)((originalProps, ref) => {
|
|
8937
8909
|
const [props, variantProps] = mapPropsVariants(originalProps, tooltipStyle.variantKeys);
|
|
8938
8910
|
const { placement = "top", offset = 5, delay = 100, persistent = false, classNames } = props;
|
|
8939
|
-
const slots = (0,
|
|
8940
|
-
const [targetRect, setTargetRect] = (0,
|
|
8911
|
+
const slots = (0, import_react22.useMemo)(() => tooltipStyle({ ...variantProps }), [variantProps]);
|
|
8912
|
+
const [targetRect, setTargetRect] = (0, import_react22.useState)(null);
|
|
8941
8913
|
const { tooltipPosition, tooltipRef } = useTooltip({
|
|
8942
8914
|
placement,
|
|
8943
8915
|
offset,
|
|
8944
8916
|
delay,
|
|
8945
8917
|
targetRect
|
|
8946
8918
|
});
|
|
8947
|
-
const childrenRef = (0,
|
|
8948
|
-
const delayTimeoutRef = (0,
|
|
8949
|
-
const getProps = (0,
|
|
8919
|
+
const childrenRef = (0, import_react22.useRef)(null);
|
|
8920
|
+
const delayTimeoutRef = (0, import_react22.useRef)(null);
|
|
8921
|
+
const getProps = (0, import_react22.useCallback)(
|
|
8950
8922
|
(slotKey, classNameKey) => ({
|
|
8951
8923
|
className: slots[slotKey]({ class: classNames == null ? void 0 : classNames[classNameKey] })
|
|
8952
8924
|
}),
|
|
8953
8925
|
[slots, classNames]
|
|
8954
8926
|
);
|
|
8955
|
-
const getBaseProps = (0,
|
|
8956
|
-
const getContentProps = (0,
|
|
8957
|
-
const showTooltip = (0,
|
|
8927
|
+
const getBaseProps = (0, import_react22.useCallback)(() => getProps("base", "base"), [getProps]);
|
|
8928
|
+
const getContentProps = (0, import_react22.useCallback)(() => getProps("content", "content"), [getProps]);
|
|
8929
|
+
const showTooltip = (0, import_react22.useCallback)(() => {
|
|
8958
8930
|
if (childrenRef.current) {
|
|
8959
8931
|
const rect = childrenRef.current.getBoundingClientRect();
|
|
8960
8932
|
setTargetRect({
|
|
@@ -8967,16 +8939,16 @@ var Tooltip = (0, import_react23.forwardRef)((originalProps, ref) => {
|
|
|
8967
8939
|
});
|
|
8968
8940
|
}
|
|
8969
8941
|
}, []);
|
|
8970
|
-
const hideTooltip = (0,
|
|
8942
|
+
const hideTooltip = (0, import_react22.useCallback)(() => {
|
|
8971
8943
|
if (!persistent) {
|
|
8972
8944
|
delayTimeoutRef.current = window.setTimeout(() => setTargetRect(null), delay);
|
|
8973
8945
|
}
|
|
8974
8946
|
}, [persistent, delay]);
|
|
8975
|
-
(0,
|
|
8947
|
+
(0, import_react22.useEffect)(() => {
|
|
8976
8948
|
if (persistent) showTooltip();
|
|
8977
8949
|
}, [persistent, showTooltip]);
|
|
8978
|
-
return /* @__PURE__ */ (0,
|
|
8979
|
-
/* @__PURE__ */ (0,
|
|
8950
|
+
return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(import_jsx_runtime26.Fragment, { children: [
|
|
8951
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
8980
8952
|
"div",
|
|
8981
8953
|
{
|
|
8982
8954
|
ref: (node) => {
|
|
@@ -8993,7 +8965,7 @@ var Tooltip = (0, import_react23.forwardRef)((originalProps, ref) => {
|
|
|
8993
8965
|
}
|
|
8994
8966
|
),
|
|
8995
8967
|
targetRect && (0, import_react_dom2.createPortal)(
|
|
8996
|
-
/* @__PURE__ */ (0,
|
|
8968
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
|
|
8997
8969
|
"div",
|
|
8998
8970
|
{
|
|
8999
8971
|
ref: tooltipRef,
|
|
@@ -9006,7 +8978,7 @@ var Tooltip = (0, import_react23.forwardRef)((originalProps, ref) => {
|
|
|
9006
8978
|
},
|
|
9007
8979
|
children: [
|
|
9008
8980
|
props.content,
|
|
9009
|
-
variantProps.tail && /* @__PURE__ */ (0,
|
|
8981
|
+
variantProps.tail && /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
|
|
9010
8982
|
"div",
|
|
9011
8983
|
{
|
|
9012
8984
|
className: `absolute h-2 w-2 rotate-45 bg-inherit ${getTailClassName(placement)}`,
|
|
@@ -9057,10 +9029,10 @@ var tooltipStyle = tv({
|
|
|
9057
9029
|
});
|
|
9058
9030
|
|
|
9059
9031
|
// src/components/modal/modal.tsx
|
|
9060
|
-
var
|
|
9032
|
+
var import_react23 = require("react");
|
|
9061
9033
|
var import_react_dom3 = require("react-dom");
|
|
9062
|
-
var
|
|
9063
|
-
var Modal = (0,
|
|
9034
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
9035
|
+
var Modal = (0, import_react23.forwardRef)((props, ref) => {
|
|
9064
9036
|
const [localProps, variantProps] = mapPropsVariants(props, modal.variantKeys);
|
|
9065
9037
|
const {
|
|
9066
9038
|
classNames,
|
|
@@ -9074,8 +9046,8 @@ var Modal = (0, import_react24.forwardRef)((props, ref) => {
|
|
|
9074
9046
|
onConfirm,
|
|
9075
9047
|
onCancel
|
|
9076
9048
|
} = localProps;
|
|
9077
|
-
const slots = (0,
|
|
9078
|
-
(0,
|
|
9049
|
+
const slots = (0, import_react23.useMemo)(() => modal(variantProps), [variantProps]);
|
|
9050
|
+
(0, import_react23.useEffect)(() => {
|
|
9079
9051
|
document.body.classList.toggle("overflow-hidden", !!isOpen);
|
|
9080
9052
|
if (!isOpen || isKeyboardDismissDisabled) return;
|
|
9081
9053
|
const handleKeyDown = (e) => {
|
|
@@ -9089,10 +9061,10 @@ var Modal = (0, import_react24.forwardRef)((props, ref) => {
|
|
|
9089
9061
|
}, [isOpen, isKeyboardDismissDisabled, onCancel]);
|
|
9090
9062
|
if (!isOpen) return null;
|
|
9091
9063
|
return (0, import_react_dom3.createPortal)(
|
|
9092
|
-
/* @__PURE__ */ (0,
|
|
9093
|
-
/* @__PURE__ */ (0,
|
|
9094
|
-
/* @__PURE__ */ (0,
|
|
9095
|
-
showCloseButton && /* @__PURE__ */ (0,
|
|
9064
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(import_jsx_runtime27.Fragment, { children: [
|
|
9065
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)(backdrop_default, { open: true }),
|
|
9066
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("div", { className: slots.modalWrapper({ class: classNames == null ? void 0 : classNames.modalWrapper }), children: [
|
|
9067
|
+
showCloseButton && /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(
|
|
9096
9068
|
Icon_default,
|
|
9097
9069
|
{
|
|
9098
9070
|
size: "xl",
|
|
@@ -9101,12 +9073,12 @@ var Modal = (0, import_react24.forwardRef)((props, ref) => {
|
|
|
9101
9073
|
onClick: onCancel
|
|
9102
9074
|
}
|
|
9103
9075
|
),
|
|
9104
|
-
/* @__PURE__ */ (0,
|
|
9105
|
-
title && /* @__PURE__ */ (0,
|
|
9106
|
-
typeof content === "string" ? /* @__PURE__ */ (0,
|
|
9107
|
-
(cancelButtonText || confirmButtonText) && /* @__PURE__ */ (0,
|
|
9108
|
-
cancelButtonText && /* @__PURE__ */ (0,
|
|
9109
|
-
confirmButtonText && /* @__PURE__ */ (0,
|
|
9076
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("div", { className: slots.wrapper({ class: classNames == null ? void 0 : classNames.wrapper }), children: [
|
|
9077
|
+
title && /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { className: slots.title({ class: classNames == null ? void 0 : classNames.title }), children: title }),
|
|
9078
|
+
typeof content === "string" ? /* @__PURE__ */ (0, import_jsx_runtime27.jsx)("div", { className: slots.content({ class: classNames == null ? void 0 : classNames.content }), children: content }) : content,
|
|
9079
|
+
(cancelButtonText || confirmButtonText) && /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)("div", { className: slots.footer({ class: classNames == null ? void 0 : classNames.footer }), children: [
|
|
9080
|
+
cancelButtonText && /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(button_default, { variant: "soft", color: "neutral", fullWidth: true, onClick: onCancel, children: cancelButtonText }),
|
|
9081
|
+
confirmButtonText && /* @__PURE__ */ (0, import_jsx_runtime27.jsx)(button_default, { color: props.color, fullWidth: true, onClick: onConfirm, children: confirmButtonText })
|
|
9110
9082
|
] })
|
|
9111
9083
|
] })
|
|
9112
9084
|
] }) })
|
|
@@ -9173,18 +9145,18 @@ var modal = tv({
|
|
|
9173
9145
|
});
|
|
9174
9146
|
|
|
9175
9147
|
// src/components/drawer/drawer.tsx
|
|
9176
|
-
var
|
|
9148
|
+
var import_react24 = require("react");
|
|
9177
9149
|
var import_react_dom4 = require("react-dom");
|
|
9178
|
-
var
|
|
9179
|
-
var Drawer = (0,
|
|
9150
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
9151
|
+
var Drawer = (0, import_react24.forwardRef)((props, ref) => {
|
|
9180
9152
|
const [localProps, variantProps] = mapPropsVariants(props, drawer.variantKeys);
|
|
9181
9153
|
const { classNames, isOpen, content, isKeyboardDismissDisabled = false, onClose, backdrop = true } = localProps;
|
|
9182
9154
|
const position = props.position || "right";
|
|
9183
|
-
const [shouldRender, setShouldRender] = (0,
|
|
9184
|
-
const [isAnimating, setIsAnimating] = (0,
|
|
9185
|
-
const [isContentAnimating, setIsContentAnimating] = (0,
|
|
9186
|
-
const slots = (0,
|
|
9187
|
-
(0,
|
|
9155
|
+
const [shouldRender, setShouldRender] = (0, import_react24.useState)(isOpen);
|
|
9156
|
+
const [isAnimating, setIsAnimating] = (0, import_react24.useState)(isOpen);
|
|
9157
|
+
const [isContentAnimating, setIsContentAnimating] = (0, import_react24.useState)(isOpen);
|
|
9158
|
+
const slots = (0, import_react24.useMemo)(() => drawer(variantProps), [variantProps]);
|
|
9159
|
+
(0, import_react24.useEffect)(() => {
|
|
9188
9160
|
if (isOpen) {
|
|
9189
9161
|
setShouldRender(true);
|
|
9190
9162
|
requestAnimationFrame(() => {
|
|
@@ -9202,7 +9174,7 @@ var Drawer = (0, import_react25.forwardRef)((props, ref) => {
|
|
|
9202
9174
|
return () => clearTimeout(timer);
|
|
9203
9175
|
}
|
|
9204
9176
|
}, [isOpen]);
|
|
9205
|
-
(0,
|
|
9177
|
+
(0, import_react24.useEffect)(() => {
|
|
9206
9178
|
if (shouldRender) {
|
|
9207
9179
|
document.body.classList.add("overflow-hidden");
|
|
9208
9180
|
} else {
|
|
@@ -9237,7 +9209,7 @@ var Drawer = (0, import_react25.forwardRef)((props, ref) => {
|
|
|
9237
9209
|
};
|
|
9238
9210
|
if (!shouldRender) return null;
|
|
9239
9211
|
return (0, import_react_dom4.createPortal)(
|
|
9240
|
-
/* @__PURE__ */ (0,
|
|
9212
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
|
|
9241
9213
|
"div",
|
|
9242
9214
|
{
|
|
9243
9215
|
ref,
|
|
@@ -9252,15 +9224,15 @@ var Drawer = (0, import_react25.forwardRef)((props, ref) => {
|
|
|
9252
9224
|
role: "dialog",
|
|
9253
9225
|
"aria-modal": "true",
|
|
9254
9226
|
children: [
|
|
9255
|
-
backdrop && /* @__PURE__ */ (0,
|
|
9256
|
-
/* @__PURE__ */ (0,
|
|
9227
|
+
backdrop && /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("div", { className: "absolute inset-0 bg-black/50 backdrop-blur-sm", onClick: onClose }),
|
|
9228
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
9257
9229
|
"div",
|
|
9258
9230
|
{
|
|
9259
9231
|
className: slots.drawerWrapper({
|
|
9260
9232
|
class: clsx(classNames == null ? void 0 : classNames.drawerWrapper, getAnimationClasses())
|
|
9261
9233
|
}),
|
|
9262
9234
|
onClick: (e) => e.stopPropagation(),
|
|
9263
|
-
children: /* @__PURE__ */ (0,
|
|
9235
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)("div", { className: slots.wrapper({ class: classNames == null ? void 0 : classNames.wrapper }), children: content })
|
|
9264
9236
|
}
|
|
9265
9237
|
)
|
|
9266
9238
|
]
|
|
@@ -9333,15 +9305,15 @@ var drawer = tv({
|
|
|
9333
9305
|
var drawer_default = Drawer;
|
|
9334
9306
|
|
|
9335
9307
|
// src/components/list/list.tsx
|
|
9336
|
-
var
|
|
9337
|
-
var
|
|
9338
|
-
var List = (0,
|
|
9308
|
+
var import_react25 = require("react");
|
|
9309
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
9310
|
+
var List = (0, import_react25.forwardRef)((originalProps, ref) => {
|
|
9339
9311
|
const [props, variantProps] = mapPropsVariants(originalProps, listStyle.variantKeys);
|
|
9340
9312
|
const { children, classNames } = props;
|
|
9341
|
-
const slots = (0,
|
|
9342
|
-
return /* @__PURE__ */ (0,
|
|
9343
|
-
if (!(0,
|
|
9344
|
-
return (0,
|
|
9313
|
+
const slots = (0, import_react25.useMemo)(() => listStyle(variantProps), [variantProps]);
|
|
9314
|
+
return /* @__PURE__ */ (0, import_jsx_runtime29.jsx)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: import_react25.Children.map(children, (child) => {
|
|
9315
|
+
if (!(0, import_react25.isValidElement)(child)) return child;
|
|
9316
|
+
return (0, import_react25.cloneElement)(child, {
|
|
9345
9317
|
...variantProps,
|
|
9346
9318
|
...child.props
|
|
9347
9319
|
});
|
|
@@ -9378,9 +9350,9 @@ var listStyle = tv({
|
|
|
9378
9350
|
});
|
|
9379
9351
|
|
|
9380
9352
|
// src/components/list/listItem.tsx
|
|
9381
|
-
var
|
|
9382
|
-
var
|
|
9383
|
-
var ListItem = (0,
|
|
9353
|
+
var import_react26 = require("react");
|
|
9354
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
9355
|
+
var ListItem = (0, import_react26.forwardRef)((props, ref) => {
|
|
9384
9356
|
const [rawProps, variantProps] = mapPropsVariants(props, listItemStyle.variantKeys);
|
|
9385
9357
|
const {
|
|
9386
9358
|
title,
|
|
@@ -9392,19 +9364,19 @@ var ListItem = (0, import_react27.forwardRef)((props, ref) => {
|
|
|
9392
9364
|
classNames,
|
|
9393
9365
|
onClick
|
|
9394
9366
|
} = { ...rawProps, ...variantProps };
|
|
9395
|
-
const slots = (0,
|
|
9367
|
+
const slots = (0, import_react26.useMemo)(() => listItemStyle(variantProps), [variantProps]);
|
|
9396
9368
|
const iconSize = ["lg", "xl"].includes(size) ? "lg" : "md";
|
|
9397
9369
|
const avatarSize = iconSize;
|
|
9398
|
-
return /* @__PURE__ */ (0,
|
|
9399
|
-
/* @__PURE__ */ (0,
|
|
9400
|
-
avatar && /* @__PURE__ */ (0,
|
|
9401
|
-
startIconName && /* @__PURE__ */ (0,
|
|
9402
|
-
/* @__PURE__ */ (0,
|
|
9403
|
-
/* @__PURE__ */ (0,
|
|
9404
|
-
subTitle && /* @__PURE__ */ (0,
|
|
9370
|
+
return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), "data-selected": selected, onClick, children: [
|
|
9371
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("div", { className: slots.wrapper({ class: classNames == null ? void 0 : classNames.wrapper }), children: [
|
|
9372
|
+
avatar && /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(avatar_default, { ...avatar, variant: "round", size: avatarSize }),
|
|
9373
|
+
startIconName && /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(Icon_default, { name: startIconName, fill: true, size, className: slots.startIcon({ class: classNames == null ? void 0 : classNames.startIcon }) }),
|
|
9374
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("div", { className: slots.titleWrapper({ class: classNames == null ? void 0 : classNames.titleWrapper }), children: [
|
|
9375
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("span", { className: slots.title({ class: classNames == null ? void 0 : classNames.title }), children: title }),
|
|
9376
|
+
subTitle && /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("span", { className: slots.subTitle({ class: classNames == null ? void 0 : classNames.subTitle }), children: subTitle })
|
|
9405
9377
|
] })
|
|
9406
9378
|
] }),
|
|
9407
|
-
/* @__PURE__ */ (0,
|
|
9379
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)(Icon_default, { name: "right-chevron", size: iconSize, className: slots.icon({ class: classNames == null ? void 0 : classNames.icon }) })
|
|
9408
9380
|
] });
|
|
9409
9381
|
});
|
|
9410
9382
|
ListItem.displayName = "ListItem";
|
|
@@ -9572,9 +9544,9 @@ var listItemStyle = tv({
|
|
|
9572
9544
|
});
|
|
9573
9545
|
|
|
9574
9546
|
// src/components/toast/toast.tsx
|
|
9575
|
-
var
|
|
9576
|
-
var
|
|
9577
|
-
var Toast = (0,
|
|
9547
|
+
var import_react27 = require("react");
|
|
9548
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
9549
|
+
var Toast = (0, import_react27.forwardRef)((originalProps, ref) => {
|
|
9578
9550
|
const [props, variantProps] = mapPropsVariants(originalProps, toast.variantKeys);
|
|
9579
9551
|
const {
|
|
9580
9552
|
title,
|
|
@@ -9588,9 +9560,9 @@ var Toast = (0, import_react28.forwardRef)((originalProps, ref) => {
|
|
|
9588
9560
|
disableAnimation,
|
|
9589
9561
|
onClose
|
|
9590
9562
|
} = { ...props, ...variantProps };
|
|
9591
|
-
const slots = (0,
|
|
9592
|
-
const toastRef = (0,
|
|
9593
|
-
(0,
|
|
9563
|
+
const slots = (0, import_react27.useMemo)(() => toast({ ...variantProps }), [variantProps]);
|
|
9564
|
+
const toastRef = (0, import_react27.useRef)(null);
|
|
9565
|
+
(0, import_react27.useImperativeHandle)(
|
|
9594
9566
|
ref,
|
|
9595
9567
|
() => ({
|
|
9596
9568
|
getWidth: () => {
|
|
@@ -9601,7 +9573,7 @@ var Toast = (0, import_react28.forwardRef)((originalProps, ref) => {
|
|
|
9601
9573
|
[]
|
|
9602
9574
|
);
|
|
9603
9575
|
const animationClass = (placement == null ? void 0 : placement.includes("top")) ? "animate-slideInFromTop" : "animate-slideInFromBottom";
|
|
9604
|
-
return /* @__PURE__ */ (0,
|
|
9576
|
+
return /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(
|
|
9605
9577
|
"div",
|
|
9606
9578
|
{
|
|
9607
9579
|
ref: toastRef,
|
|
@@ -9613,12 +9585,12 @@ var Toast = (0, import_react28.forwardRef)((originalProps, ref) => {
|
|
|
9613
9585
|
),
|
|
9614
9586
|
style: hasShadow ? { boxShadow: "0px 6px 18px rgba(0, 0, 0, 0.10)" } : {},
|
|
9615
9587
|
children: [
|
|
9616
|
-
/* @__PURE__ */ (0,
|
|
9617
|
-
showIcon && /* @__PURE__ */ (0,
|
|
9618
|
-
/* @__PURE__ */ (0,
|
|
9619
|
-
showCloseButton && /* @__PURE__ */ (0,
|
|
9588
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsxs)("div", { className: slots.wrapper({ class: classNames == null ? void 0 : classNames.wrapper }), children: [
|
|
9589
|
+
showIcon && /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(Icon_default, { name: originalProps.icon || "info-circle", fill: true, className: "mt-[2px]" }),
|
|
9590
|
+
/* @__PURE__ */ (0, import_jsx_runtime31.jsx)("div", { className: slots.title({ class: classNames == null ? void 0 : classNames.title }), children: title }),
|
|
9591
|
+
showCloseButton && /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(Icon_default, { name: "close", className: "cursor-pointer", onClick: onClose })
|
|
9620
9592
|
] }),
|
|
9621
|
-
content && /* @__PURE__ */ (0,
|
|
9593
|
+
content && /* @__PURE__ */ (0, import_jsx_runtime31.jsx)("div", { children: content })
|
|
9622
9594
|
]
|
|
9623
9595
|
}
|
|
9624
9596
|
);
|
|
@@ -9723,7 +9695,7 @@ var toast = tv({
|
|
|
9723
9695
|
});
|
|
9724
9696
|
|
|
9725
9697
|
// src/components/toast/use-toast.tsx
|
|
9726
|
-
var
|
|
9698
|
+
var import_react28 = require("react");
|
|
9727
9699
|
|
|
9728
9700
|
// src/components/toast/toast-utils.ts
|
|
9729
9701
|
var getToastPosition = (placement, width, offset) => {
|
|
@@ -9762,10 +9734,10 @@ var getToastPosition = (placement, width, offset) => {
|
|
|
9762
9734
|
};
|
|
9763
9735
|
|
|
9764
9736
|
// src/components/toast/use-toast.tsx
|
|
9765
|
-
var
|
|
9766
|
-
var ToastContext = (0,
|
|
9737
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
9738
|
+
var ToastContext = (0, import_react28.createContext)(null);
|
|
9767
9739
|
var useToast = () => {
|
|
9768
|
-
const context = (0,
|
|
9740
|
+
const context = (0, import_react28.useContext)(ToastContext);
|
|
9769
9741
|
if (!context) {
|
|
9770
9742
|
throw new Error("useToast must be used within a ToastProvider");
|
|
9771
9743
|
}
|
|
@@ -9775,10 +9747,10 @@ var ToastProvider = ({
|
|
|
9775
9747
|
globalOptions,
|
|
9776
9748
|
children
|
|
9777
9749
|
}) => {
|
|
9778
|
-
const [toasts, setToasts] = (0,
|
|
9779
|
-
const [containerStyle, setContainerStyle] = (0,
|
|
9780
|
-
const toastRef = (0,
|
|
9781
|
-
const addToast = (0,
|
|
9750
|
+
const [toasts, setToasts] = (0, import_react28.useState)([]);
|
|
9751
|
+
const [containerStyle, setContainerStyle] = (0, import_react28.useState)({});
|
|
9752
|
+
const toastRef = (0, import_react28.useRef)(null);
|
|
9753
|
+
const addToast = (0, import_react28.useCallback)(
|
|
9782
9754
|
(title, options = {}) => {
|
|
9783
9755
|
const id = Date.now() + Math.floor(Math.random() * 1e5);
|
|
9784
9756
|
const newToast = {
|
|
@@ -9795,11 +9767,11 @@ var ToastProvider = ({
|
|
|
9795
9767
|
},
|
|
9796
9768
|
[globalOptions]
|
|
9797
9769
|
);
|
|
9798
|
-
const removeToast = (0,
|
|
9770
|
+
const removeToast = (0, import_react28.useCallback)((id) => {
|
|
9799
9771
|
setToasts((prevToasts) => prevToasts.filter((toast2) => toast2.id !== id));
|
|
9800
9772
|
}, []);
|
|
9801
9773
|
const contextValue = addToast;
|
|
9802
|
-
(0,
|
|
9774
|
+
(0, import_react28.useEffect)(() => {
|
|
9803
9775
|
var _a;
|
|
9804
9776
|
const width = (globalOptions == null ? void 0 : globalOptions.width) ? globalOptions.width : typeof ((_a = toastRef.current) == null ? void 0 : _a.getWidth) === "function" ? toastRef.current.getWidth() : 300;
|
|
9805
9777
|
const offset = 20;
|
|
@@ -9813,18 +9785,18 @@ var ToastProvider = ({
|
|
|
9813
9785
|
right: right !== void 0 ? `${right}px` : void 0
|
|
9814
9786
|
});
|
|
9815
9787
|
}, [globalOptions == null ? void 0 : globalOptions.placement, globalOptions == null ? void 0 : globalOptions.width]);
|
|
9816
|
-
return /* @__PURE__ */ (0,
|
|
9788
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(ToastContext.Provider, { value: contextValue, children: [
|
|
9817
9789
|
children,
|
|
9818
|
-
/* @__PURE__ */ (0,
|
|
9790
|
+
/* @__PURE__ */ (0, import_jsx_runtime32.jsx)("div", { id: "deepnoid-toast-container", className: "flex flex-col gap-[10px]", style: containerStyle, children: toasts.map((toast2) => /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(toast_default, { ref: toastRef, onClose: () => removeToast(toast2.id), ...toast2 }, toast2.id)) })
|
|
9819
9791
|
] });
|
|
9820
9792
|
};
|
|
9821
9793
|
|
|
9822
9794
|
// src/components/dateTimePicker/dateTimePicker.tsx
|
|
9823
|
-
var
|
|
9795
|
+
var import_react32 = __toESM(require("react"));
|
|
9824
9796
|
var import_react_dom5 = require("react-dom");
|
|
9825
9797
|
|
|
9826
9798
|
// src/components/dateTimePicker/useDateTimePicker.tsx
|
|
9827
|
-
var
|
|
9799
|
+
var import_react29 = require("react");
|
|
9828
9800
|
|
|
9829
9801
|
// src/components/dateTimePicker/util.ts
|
|
9830
9802
|
var formatDateToString = (date) => {
|
|
@@ -9840,17 +9812,17 @@ var formatStringToDate = (date) => {
|
|
|
9840
9812
|
|
|
9841
9813
|
// src/components/dateTimePicker/useDateTimePicker.tsx
|
|
9842
9814
|
var useDatePicker = ({ initialDate, initialTime }) => {
|
|
9843
|
-
const [selectedDate, setSelectedDate] = (0,
|
|
9815
|
+
const [selectedDate, setSelectedDate] = (0, import_react29.useState)(
|
|
9844
9816
|
initialDate ? formatDateToString(initialDate) : ""
|
|
9845
9817
|
);
|
|
9846
|
-
const [selectedTime, setSelectedTime] = (0,
|
|
9847
|
-
const [targetRect, setTargetRect] = (0,
|
|
9848
|
-
const [popupWidth, setPopupWidth] = (0,
|
|
9849
|
-
const [popupHeight, setPopupHeight] = (0,
|
|
9850
|
-
const [isFocusInput, setIsFocusInput] = (0,
|
|
9851
|
-
const dateInputRef = (0,
|
|
9852
|
-
const datePickerWrapperRef = (0,
|
|
9853
|
-
const datePickerRef = (0,
|
|
9818
|
+
const [selectedTime, setSelectedTime] = (0, import_react29.useState)(initialTime ? initialTime : "");
|
|
9819
|
+
const [targetRect, setTargetRect] = (0, import_react29.useState)(null);
|
|
9820
|
+
const [popupWidth, setPopupWidth] = (0, import_react29.useState)(0);
|
|
9821
|
+
const [popupHeight, setPopupHeight] = (0, import_react29.useState)(0);
|
|
9822
|
+
const [isFocusInput, setIsFocusInput] = (0, import_react29.useState)(false);
|
|
9823
|
+
const dateInputRef = (0, import_react29.useRef)(null);
|
|
9824
|
+
const datePickerWrapperRef = (0, import_react29.useRef)(null);
|
|
9825
|
+
const datePickerRef = (0, import_react29.useRef)(null);
|
|
9854
9826
|
const DATE_PICKER_GAP = 4;
|
|
9855
9827
|
const calculatePositionWithScroll = (targetRect2) => {
|
|
9856
9828
|
if (targetRect2 && popupWidth && popupHeight) {
|
|
@@ -9883,7 +9855,7 @@ var useDatePicker = ({ initialDate, initialTime }) => {
|
|
|
9883
9855
|
const handleBlueInput = () => {
|
|
9884
9856
|
setIsFocusInput(false);
|
|
9885
9857
|
};
|
|
9886
|
-
(0,
|
|
9858
|
+
(0, import_react29.useEffect)(() => {
|
|
9887
9859
|
const onClickOutside = (e) => {
|
|
9888
9860
|
if (datePickerRef.current && !datePickerRef.current.contains(e.target) && datePickerWrapperRef.current && !datePickerWrapperRef.current.contains(e.target)) {
|
|
9889
9861
|
setTargetRect(null);
|
|
@@ -9892,7 +9864,7 @@ var useDatePicker = ({ initialDate, initialTime }) => {
|
|
|
9892
9864
|
window.addEventListener("mousedown", onClickOutside);
|
|
9893
9865
|
return () => window.removeEventListener("mousedown", onClickOutside);
|
|
9894
9866
|
}, []);
|
|
9895
|
-
(0,
|
|
9867
|
+
(0, import_react29.useEffect)(() => {
|
|
9896
9868
|
if (datePickerWrapperRef.current) {
|
|
9897
9869
|
setPopupHeight(datePickerWrapperRef.current.getBoundingClientRect().height);
|
|
9898
9870
|
setPopupWidth(datePickerWrapperRef.current.getBoundingClientRect().width);
|
|
@@ -9917,19 +9889,19 @@ var useDatePicker = ({ initialDate, initialTime }) => {
|
|
|
9917
9889
|
};
|
|
9918
9890
|
|
|
9919
9891
|
// src/components/dateTimePicker/calendar.tsx
|
|
9920
|
-
var
|
|
9921
|
-
var
|
|
9922
|
-
var Calendar = (0,
|
|
9892
|
+
var import_react30 = __toESM(require("react"));
|
|
9893
|
+
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
9894
|
+
var Calendar = (0, import_react30.forwardRef)((originalProps, ref) => {
|
|
9923
9895
|
const [props, variantProps] = mapPropsVariants(originalProps, calendarStyle.variantKeys);
|
|
9924
9896
|
const { selectedDate, classNames, highlightWeekend = true, onChangeDate, ...inputProps } = props;
|
|
9925
|
-
const [currentDate, setCurrentDate] = (0,
|
|
9897
|
+
const [currentDate, setCurrentDate] = (0, import_react30.useState)(selectedDate ? new Date(selectedDate) : /* @__PURE__ */ new Date());
|
|
9926
9898
|
const daysOfWeek = ["S", "M", "T", "W", "T", "F", "S"];
|
|
9927
|
-
(0,
|
|
9899
|
+
(0, import_react30.useEffect)(() => {
|
|
9928
9900
|
if (selectedDate) {
|
|
9929
9901
|
setCurrentDate(new Date(selectedDate));
|
|
9930
9902
|
}
|
|
9931
9903
|
}, [selectedDate]);
|
|
9932
|
-
const getCalendarDates = (0,
|
|
9904
|
+
const getCalendarDates = (0, import_react30.useCallback)(() => {
|
|
9933
9905
|
const year = currentDate.getFullYear();
|
|
9934
9906
|
const month = currentDate.getMonth();
|
|
9935
9907
|
const firstDayOfMonth = new Date(year, month, 1).getDay();
|
|
@@ -9975,17 +9947,17 @@ var Calendar = (0, import_react31.forwardRef)((originalProps, ref) => {
|
|
|
9975
9947
|
onChangeDate(formatted);
|
|
9976
9948
|
}
|
|
9977
9949
|
};
|
|
9978
|
-
(0,
|
|
9950
|
+
(0, import_react30.useImperativeHandle)(ref, () => ({
|
|
9979
9951
|
getSelectedDate: () => selectedDate
|
|
9980
9952
|
}));
|
|
9981
|
-
const slots = (0,
|
|
9982
|
-
const getBaseProps = (0,
|
|
9953
|
+
const slots = (0, import_react30.useMemo)(() => calendarStyle({ ...variantProps }), [variantProps]);
|
|
9954
|
+
const getBaseProps = (0, import_react30.useCallback)(
|
|
9983
9955
|
() => ({
|
|
9984
9956
|
className: `${slots.base({ class: classNames == null ? void 0 : classNames.base })}`
|
|
9985
9957
|
}),
|
|
9986
9958
|
[slots, classNames]
|
|
9987
9959
|
);
|
|
9988
|
-
const getDateTitleProps = (0,
|
|
9960
|
+
const getDateTitleProps = (0, import_react30.useCallback)(
|
|
9989
9961
|
(index) => {
|
|
9990
9962
|
return {
|
|
9991
9963
|
className: `${slots.dateTitle({
|
|
@@ -9997,7 +9969,7 @@ var Calendar = (0, import_react31.forwardRef)((originalProps, ref) => {
|
|
|
9997
9969
|
},
|
|
9998
9970
|
[slots, classNames, highlightWeekend]
|
|
9999
9971
|
);
|
|
10000
|
-
const getDateProps = (0,
|
|
9972
|
+
const getDateProps = (0, import_react30.useCallback)(
|
|
10001
9973
|
(dateObj) => {
|
|
10002
9974
|
const today = /* @__PURE__ */ new Date();
|
|
10003
9975
|
const isToday = today.getDate() === dateObj.date && today.getMonth() === currentDate.getMonth() && today.getFullYear() === currentDate.getFullYear();
|
|
@@ -10019,18 +9991,18 @@ var Calendar = (0, import_react31.forwardRef)((originalProps, ref) => {
|
|
|
10019
9991
|
[slots, classNames, selectedDate, currentDate, highlightWeekend]
|
|
10020
9992
|
);
|
|
10021
9993
|
const calendarDates = getCalendarDates();
|
|
10022
|
-
return /* @__PURE__ */ (0,
|
|
10023
|
-
/* @__PURE__ */ (0,
|
|
10024
|
-
/* @__PURE__ */ (0,
|
|
10025
|
-
/* @__PURE__ */ (0,
|
|
10026
|
-
/* @__PURE__ */ (0,
|
|
9994
|
+
return /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(import_jsx_runtime33.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)("div", { ...getBaseProps(), children: [
|
|
9995
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsxs)("div", { className: "calendar-header flex justify-between items-center mb-4", children: [
|
|
9996
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)(Icon_default, { name: "brace-left", size: "md", className: "cursor-pointer", onClick: handlePrevMonth }),
|
|
9997
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: "text-h6 font-semibold", children: currentDate.toLocaleString("default", { year: "numeric", month: "2-digit" }) }),
|
|
9998
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)(Icon_default, { name: "brace-right", size: "md", className: "cursor-pointer", onClick: handleNextMonth })
|
|
10027
9999
|
] }),
|
|
10028
|
-
/* @__PURE__ */ (0,
|
|
10029
|
-
/* @__PURE__ */ (0,
|
|
10000
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("div", { className: "grid grid-cols-7 gap-2 text-center", children: daysOfWeek.map((day, index) => /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("div", { ...getDateTitleProps(index), children: day }, `${day}-${index}`)) }),
|
|
10001
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("div", { className: "grid grid-cols-7 gap-[5px] text-center mt-2", children: calendarDates.map((week, weekIndex) => {
|
|
10030
10002
|
const hasCurrentMonthDates = week.some((dateObj) => dateObj.currentMonth);
|
|
10031
10003
|
if (!hasCurrentMonthDates) return null;
|
|
10032
|
-
return /* @__PURE__ */ (0,
|
|
10033
|
-
return /* @__PURE__ */ (0,
|
|
10004
|
+
return /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(import_react30.default.Fragment, { children: week.map((dateObj, index) => {
|
|
10005
|
+
return /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("div", { ...getDateProps(dateObj), children: dateObj.date }, index);
|
|
10034
10006
|
}) }, weekIndex);
|
|
10035
10007
|
}) })
|
|
10036
10008
|
] }) });
|
|
@@ -10101,22 +10073,22 @@ var calendarStyle = tv({
|
|
|
10101
10073
|
});
|
|
10102
10074
|
|
|
10103
10075
|
// src/components/dateTimePicker/timePicker.tsx
|
|
10104
|
-
var
|
|
10105
|
-
var
|
|
10076
|
+
var import_react31 = require("react");
|
|
10077
|
+
var import_jsx_runtime34 = require("react/jsx-runtime");
|
|
10106
10078
|
var TimePicker = ({ color = "primary", selectedTime, isFocusInput, onChangeTime }) => {
|
|
10107
10079
|
const TOTAL_HOURS = 12;
|
|
10108
10080
|
const TOTAL_MINUTES = 60;
|
|
10109
10081
|
const ITEM_HEIGHT = 30;
|
|
10110
10082
|
const PERIODS = ["AM", "PM"];
|
|
10111
|
-
const [selectedHour, setSelectedHour] = (0,
|
|
10112
|
-
const [selectedMinute, setSelectedMinute] = (0,
|
|
10113
|
-
const [selectedPeriod, setSelectedPeriod] = (0,
|
|
10114
|
-
const hourRef = (0,
|
|
10115
|
-
const minuteRef = (0,
|
|
10116
|
-
const periodRef = (0,
|
|
10083
|
+
const [selectedHour, setSelectedHour] = (0, import_react31.useState)("01");
|
|
10084
|
+
const [selectedMinute, setSelectedMinute] = (0, import_react31.useState)("00");
|
|
10085
|
+
const [selectedPeriod, setSelectedPeriod] = (0, import_react31.useState)("AM");
|
|
10086
|
+
const hourRef = (0, import_react31.useRef)(null);
|
|
10087
|
+
const minuteRef = (0, import_react31.useRef)(null);
|
|
10088
|
+
const periodRef = (0, import_react31.useRef)(null);
|
|
10117
10089
|
const hoursArray = [...Array(TOTAL_HOURS).keys()].map((i) => (i + 1).toString().padStart(2, "0"));
|
|
10118
10090
|
const minutesArray = [...Array(TOTAL_MINUTES).keys()].map((i) => i.toString().padStart(2, "0"));
|
|
10119
|
-
(0,
|
|
10091
|
+
(0, import_react31.useEffect)(() => {
|
|
10120
10092
|
if (selectedTime) {
|
|
10121
10093
|
const { formattedHour, minute, period } = parseAndFormatTime(selectedTime);
|
|
10122
10094
|
setSelectedHour(formattedHour);
|
|
@@ -10127,7 +10099,7 @@ var TimePicker = ({ color = "primary", selectedTime, isFocusInput, onChangeTime
|
|
|
10127
10099
|
scrollToSelectedTime();
|
|
10128
10100
|
}
|
|
10129
10101
|
}, [selectedTime, isFocusInput]);
|
|
10130
|
-
(0,
|
|
10102
|
+
(0, import_react31.useEffect)(() => {
|
|
10131
10103
|
scrollToSelectedTime();
|
|
10132
10104
|
}, []);
|
|
10133
10105
|
const parseAndFormatTime = (time) => {
|
|
@@ -10164,8 +10136,8 @@ var TimePicker = ({ color = "primary", selectedTime, isFocusInput, onChangeTime
|
|
|
10164
10136
|
onChangeTime(formattedTime);
|
|
10165
10137
|
}
|
|
10166
10138
|
};
|
|
10167
|
-
return /* @__PURE__ */ (0,
|
|
10168
|
-
/* @__PURE__ */ (0,
|
|
10139
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)("div", { className: "flex h-[200px] p-[10px] gap-[5px] border border-neutral-main rounded-md bg-background shadow-lg", children: [
|
|
10140
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(list_default, { ref: periodRef, classNames: { base: "overflow-y-auto scrollbar-hide" }, children: PERIODS.map((period, index) => /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
10169
10141
|
listItem_default,
|
|
10170
10142
|
{
|
|
10171
10143
|
color,
|
|
@@ -10179,7 +10151,7 @@ var TimePicker = ({ color = "primary", selectedTime, isFocusInput, onChangeTime
|
|
|
10179
10151
|
},
|
|
10180
10152
|
`${period}-${index}`
|
|
10181
10153
|
)) }),
|
|
10182
|
-
/* @__PURE__ */ (0,
|
|
10154
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(list_default, { ref: hourRef, classNames: { base: "overflow-y-auto scrollbar-hide" }, children: hoursArray.map((hour, index) => /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
10183
10155
|
listItem_default,
|
|
10184
10156
|
{
|
|
10185
10157
|
color,
|
|
@@ -10193,7 +10165,7 @@ var TimePicker = ({ color = "primary", selectedTime, isFocusInput, onChangeTime
|
|
|
10193
10165
|
},
|
|
10194
10166
|
`${hour}-${index}`
|
|
10195
10167
|
)) }),
|
|
10196
|
-
/* @__PURE__ */ (0,
|
|
10168
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(list_default, { ref: minuteRef, classNames: { base: "overflow-y-auto scrollbar-hide" }, children: minutesArray.map((minute, index) => /* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
10197
10169
|
listItem_default,
|
|
10198
10170
|
{
|
|
10199
10171
|
color,
|
|
@@ -10212,8 +10184,8 @@ var TimePicker = ({ color = "primary", selectedTime, isFocusInput, onChangeTime
|
|
|
10212
10184
|
var timePicker_default = TimePicker;
|
|
10213
10185
|
|
|
10214
10186
|
// src/components/dateTimePicker/dateTimePicker.tsx
|
|
10215
|
-
var
|
|
10216
|
-
var DatePicker = (0,
|
|
10187
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
10188
|
+
var DatePicker = (0, import_react32.forwardRef)((originalProps, ref) => {
|
|
10217
10189
|
const [props, variantProps] = mapPropsVariants(originalProps, dateTimePickerStyle.variantKeys);
|
|
10218
10190
|
const {
|
|
10219
10191
|
classNames,
|
|
@@ -10227,7 +10199,7 @@ var DatePicker = (0, import_react33.forwardRef)((originalProps, ref) => {
|
|
|
10227
10199
|
onChangeTime,
|
|
10228
10200
|
...inputProps
|
|
10229
10201
|
} = props;
|
|
10230
|
-
const slots = (0,
|
|
10202
|
+
const slots = (0, import_react32.useMemo)(() => dateTimePickerStyle({ ...variantProps }), [variantProps]);
|
|
10231
10203
|
const {
|
|
10232
10204
|
selectedDate,
|
|
10233
10205
|
selectedTime,
|
|
@@ -10248,32 +10220,32 @@ var DatePicker = (0, import_react33.forwardRef)((originalProps, ref) => {
|
|
|
10248
10220
|
initialTime: typeof value === "string" ? value : void 0
|
|
10249
10221
|
});
|
|
10250
10222
|
const position = targetRect ? calculatePositionWithScroll(targetRect) : null;
|
|
10251
|
-
const getBaseProps = (0,
|
|
10223
|
+
const getBaseProps = (0, import_react32.useCallback)(
|
|
10252
10224
|
() => ({
|
|
10253
10225
|
className: slots.base({ class: classNames == null ? void 0 : classNames.base })
|
|
10254
10226
|
}),
|
|
10255
10227
|
[slots, classNames]
|
|
10256
10228
|
);
|
|
10257
|
-
const getLabelProps = (0,
|
|
10229
|
+
const getLabelProps = (0, import_react32.useCallback)(
|
|
10258
10230
|
() => ({
|
|
10259
10231
|
className: slots.label({ class: classNames == null ? void 0 : classNames.label })
|
|
10260
10232
|
}),
|
|
10261
10233
|
[slots, classNames]
|
|
10262
10234
|
);
|
|
10263
|
-
const getInnerWrapperProps = (0,
|
|
10235
|
+
const getInnerWrapperProps = (0, import_react32.useCallback)(
|
|
10264
10236
|
() => ({
|
|
10265
10237
|
className: slots.innerWrapper({ class: classNames == null ? void 0 : classNames.innerWrapper })
|
|
10266
10238
|
}),
|
|
10267
10239
|
[slots, classNames]
|
|
10268
10240
|
);
|
|
10269
|
-
const getInputWrapperProps = (0,
|
|
10241
|
+
const getInputWrapperProps = (0, import_react32.useCallback)(
|
|
10270
10242
|
() => ({
|
|
10271
10243
|
className: slots.inputWrapper({ class: classNames == null ? void 0 : classNames.inputWrapper }),
|
|
10272
10244
|
ref: datePickerRef
|
|
10273
10245
|
}),
|
|
10274
10246
|
[slots, classNames]
|
|
10275
10247
|
);
|
|
10276
|
-
const getInputProps = (0,
|
|
10248
|
+
const getInputProps = (0, import_react32.useCallback)(
|
|
10277
10249
|
() => ({
|
|
10278
10250
|
...inputProps,
|
|
10279
10251
|
ref: ref || dateInputRef,
|
|
@@ -10304,33 +10276,33 @@ var DatePicker = (0, import_react33.forwardRef)((originalProps, ref) => {
|
|
|
10304
10276
|
}),
|
|
10305
10277
|
[inputProps, ref, dateInputRef, slots, classNames == null ? void 0 : classNames.input, selectedDate, selectedTime, type, value]
|
|
10306
10278
|
);
|
|
10307
|
-
const getContentProps = (0,
|
|
10279
|
+
const getContentProps = (0, import_react32.useCallback)(
|
|
10308
10280
|
() => ({
|
|
10309
10281
|
className: slots.content({ class: classNames == null ? void 0 : classNames.content }),
|
|
10310
10282
|
size: originalProps.size
|
|
10311
10283
|
}),
|
|
10312
10284
|
[slots, classNames, originalProps.size]
|
|
10313
10285
|
);
|
|
10314
|
-
const getErrorMessageProps = (0,
|
|
10286
|
+
const getErrorMessageProps = (0, import_react32.useCallback)(
|
|
10315
10287
|
() => ({
|
|
10316
10288
|
className: slots.errorMessage({ class: classNames == null ? void 0 : classNames.errorMessage })
|
|
10317
10289
|
}),
|
|
10318
10290
|
[slots, classNames]
|
|
10319
10291
|
);
|
|
10320
10292
|
const renderStartContent = () => {
|
|
10321
|
-
if (
|
|
10293
|
+
if (import_react32.default.isValidElement(startContent)) {
|
|
10322
10294
|
const existingProps = startContent.props;
|
|
10323
10295
|
const mergedProps = {
|
|
10324
10296
|
...getContentProps(),
|
|
10325
10297
|
className: `${getContentProps().className || ""} ${existingProps.className || ""}`.trim()
|
|
10326
10298
|
};
|
|
10327
|
-
return
|
|
10299
|
+
return import_react32.default.cloneElement(startContent, mergedProps);
|
|
10328
10300
|
} else {
|
|
10329
10301
|
const contentProps = getContentProps();
|
|
10330
|
-
return /* @__PURE__ */ (0,
|
|
10302
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("div", { ...contentProps, children: startContent });
|
|
10331
10303
|
}
|
|
10332
10304
|
};
|
|
10333
|
-
const renderDateTimePickerIcon = () => /* @__PURE__ */ (0,
|
|
10305
|
+
const renderDateTimePickerIcon = () => /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("div", { ...getContentProps(), onClick: handleToggleDatePicker, children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
10334
10306
|
Icon_default,
|
|
10335
10307
|
{
|
|
10336
10308
|
name: type === "time" ? "clock" : "calendar",
|
|
@@ -10340,18 +10312,18 @@ var DatePicker = (0, import_react33.forwardRef)((originalProps, ref) => {
|
|
|
10340
10312
|
}
|
|
10341
10313
|
) });
|
|
10342
10314
|
const renderContentWithIcon = () => {
|
|
10343
|
-
if (
|
|
10315
|
+
if (import_react32.default.isValidElement(endContent)) {
|
|
10344
10316
|
const existingProps = endContent.props;
|
|
10345
10317
|
const mergedProps = {
|
|
10346
10318
|
...getContentProps(),
|
|
10347
10319
|
className: `${getContentProps().className || ""} ${existingProps.className || ""}`.trim()
|
|
10348
10320
|
};
|
|
10349
|
-
return
|
|
10321
|
+
return import_react32.default.cloneElement(endContent, mergedProps);
|
|
10350
10322
|
} else if (errorMessage) {
|
|
10351
10323
|
const iconProps = { ...getContentProps(), className: getContentProps().className };
|
|
10352
|
-
return /* @__PURE__ */ (0,
|
|
10324
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("div", { ...iconProps, children: /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(Icon_default, { name: "exclamation-circle", fill: true, size: originalProps.size }) });
|
|
10353
10325
|
} else {
|
|
10354
|
-
return /* @__PURE__ */ (0,
|
|
10326
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(import_jsx_runtime35.Fragment, {});
|
|
10355
10327
|
}
|
|
10356
10328
|
};
|
|
10357
10329
|
const renderEndContent = () => {
|
|
@@ -10366,20 +10338,20 @@ var DatePicker = (0, import_react33.forwardRef)((originalProps, ref) => {
|
|
|
10366
10338
|
return renderContentWithIcon();
|
|
10367
10339
|
}
|
|
10368
10340
|
};
|
|
10369
|
-
return /* @__PURE__ */ (0,
|
|
10370
|
-
/* @__PURE__ */ (0,
|
|
10371
|
-
label && /* @__PURE__ */ (0,
|
|
10372
|
-
/* @__PURE__ */ (0,
|
|
10373
|
-
/* @__PURE__ */ (0,
|
|
10341
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(import_jsx_runtime35.Fragment, { children: [
|
|
10342
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("div", { ...getBaseProps(), children: [
|
|
10343
|
+
label && /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("label", { ...getLabelProps(), children: label }),
|
|
10344
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("div", { ...getInnerWrapperProps(), children: [
|
|
10345
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsxs)("div", { ...getInputWrapperProps(), children: [
|
|
10374
10346
|
startContent && renderStartContent(),
|
|
10375
|
-
/* @__PURE__ */ (0,
|
|
10347
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)("input", { ...getInputProps() }),
|
|
10376
10348
|
renderEndContent()
|
|
10377
10349
|
] }),
|
|
10378
|
-
errorMessage && /* @__PURE__ */ (0,
|
|
10350
|
+
errorMessage && /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("p", { ...getErrorMessageProps(), children: errorMessage })
|
|
10379
10351
|
] })
|
|
10380
10352
|
] }),
|
|
10381
|
-
targetRect && /* @__PURE__ */ (0,
|
|
10382
|
-
/* @__PURE__ */ (0,
|
|
10353
|
+
targetRect && /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(import_jsx_runtime35.Fragment, { children: (0, import_react_dom5.createPortal)(
|
|
10354
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(
|
|
10383
10355
|
"div",
|
|
10384
10356
|
{
|
|
10385
10357
|
ref: datePickerWrapperRef,
|
|
@@ -10390,7 +10362,7 @@ var DatePicker = (0, import_react33.forwardRef)((originalProps, ref) => {
|
|
|
10390
10362
|
zIndex: 1e3
|
|
10391
10363
|
},
|
|
10392
10364
|
children: [
|
|
10393
|
-
type === "date" && /* @__PURE__ */ (0,
|
|
10365
|
+
type === "date" && /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
10394
10366
|
calendar_default,
|
|
10395
10367
|
{
|
|
10396
10368
|
color: originalProps.color,
|
|
@@ -10402,7 +10374,7 @@ var DatePicker = (0, import_react33.forwardRef)((originalProps, ref) => {
|
|
|
10402
10374
|
}
|
|
10403
10375
|
}
|
|
10404
10376
|
),
|
|
10405
|
-
type === "time" && /* @__PURE__ */ (0,
|
|
10377
|
+
type === "time" && /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
10406
10378
|
timePicker_default,
|
|
10407
10379
|
{
|
|
10408
10380
|
color: originalProps.color,
|
|
@@ -10552,20 +10524,20 @@ var dateTimePickerStyle = tv({
|
|
|
10552
10524
|
});
|
|
10553
10525
|
|
|
10554
10526
|
// src/components/tree/tree.tsx
|
|
10555
|
-
var
|
|
10556
|
-
var
|
|
10557
|
-
var TreeNodeItem = (0,
|
|
10527
|
+
var import_react33 = require("react");
|
|
10528
|
+
var import_jsx_runtime36 = require("react/jsx-runtime");
|
|
10529
|
+
var TreeNodeItem = (0, import_react33.forwardRef)(
|
|
10558
10530
|
({ node, depth, fileIcon, selectedId, classNames, onExpand }, ref) => {
|
|
10559
|
-
const [isOpen, setIsOpen] = (0,
|
|
10560
|
-
const [children, setChildren] = (0,
|
|
10561
|
-
const [isLoadingChildren, setIsLoadingChildren] = (0,
|
|
10562
|
-
const slots = (0,
|
|
10563
|
-
const hasMore = (0,
|
|
10531
|
+
const [isOpen, setIsOpen] = (0, import_react33.useState)(false);
|
|
10532
|
+
const [children, setChildren] = (0, import_react33.useState)(node.children);
|
|
10533
|
+
const [isLoadingChildren, setIsLoadingChildren] = (0, import_react33.useState)(false);
|
|
10534
|
+
const slots = (0, import_react33.useMemo)(() => treeStyle(), []);
|
|
10535
|
+
const hasMore = (0, import_react33.useMemo)(() => {
|
|
10564
10536
|
if (node.isLeaf) return false;
|
|
10565
10537
|
if (Array.isArray(children)) return children.length > 0;
|
|
10566
10538
|
return typeof onExpand === "function";
|
|
10567
10539
|
}, [node.isLeaf, children, onExpand]);
|
|
10568
|
-
const toggleOpen = (0,
|
|
10540
|
+
const toggleOpen = (0, import_react33.useCallback)(async () => {
|
|
10569
10541
|
if (!isOpen && !children && onExpand && !node.isLeaf) {
|
|
10570
10542
|
setIsLoadingChildren(true);
|
|
10571
10543
|
try {
|
|
@@ -10589,7 +10561,7 @@ var TreeNodeItem = (0, import_react34.forwardRef)(
|
|
|
10589
10561
|
e.preventDefault();
|
|
10590
10562
|
(_a = node.onRightClick) == null ? void 0 : _a.call(node, e);
|
|
10591
10563
|
};
|
|
10592
|
-
return /* @__PURE__ */ (0,
|
|
10564
|
+
return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
|
|
10593
10565
|
"div",
|
|
10594
10566
|
{
|
|
10595
10567
|
ref,
|
|
@@ -10598,7 +10570,7 @@ var TreeNodeItem = (0, import_react34.forwardRef)(
|
|
|
10598
10570
|
slots.gap({ class: classNames == null ? void 0 : classNames.gap })
|
|
10599
10571
|
),
|
|
10600
10572
|
children: [
|
|
10601
|
-
/* @__PURE__ */ (0,
|
|
10573
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
|
|
10602
10574
|
"div",
|
|
10603
10575
|
{
|
|
10604
10576
|
className: clsx(
|
|
@@ -10609,7 +10581,7 @@ var TreeNodeItem = (0, import_react34.forwardRef)(
|
|
|
10609
10581
|
onClick: handleClick,
|
|
10610
10582
|
onContextMenu: handleRightClick,
|
|
10611
10583
|
children: [
|
|
10612
|
-
hasMore && /* @__PURE__ */ (0,
|
|
10584
|
+
hasMore && /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
10613
10585
|
Icon_default,
|
|
10614
10586
|
{
|
|
10615
10587
|
name: "right-chevron",
|
|
@@ -10624,9 +10596,9 @@ var TreeNodeItem = (0, import_react34.forwardRef)(
|
|
|
10624
10596
|
]
|
|
10625
10597
|
}
|
|
10626
10598
|
),
|
|
10627
|
-
isOpen && /* @__PURE__ */ (0,
|
|
10628
|
-
isLoadingChildren && /* @__PURE__ */ (0,
|
|
10629
|
-
children == null ? void 0 : children.map((child) => /* @__PURE__ */ (0,
|
|
10599
|
+
isOpen && /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("div", { className: slots.gap({ class: classNames == null ? void 0 : classNames.gap }), children: [
|
|
10600
|
+
isLoadingChildren && /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("div", { className: "text-neutral py-1 text-sm", children: "loading..." }),
|
|
10601
|
+
children == null ? void 0 : children.map((child) => /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
10630
10602
|
TreeNodeItem,
|
|
10631
10603
|
{
|
|
10632
10604
|
node: child,
|
|
@@ -10646,7 +10618,7 @@ var TreeNodeItem = (0, import_react34.forwardRef)(
|
|
|
10646
10618
|
);
|
|
10647
10619
|
TreeNodeItem.displayName = "TreeNodeItem";
|
|
10648
10620
|
var Tree = ({ headerContent, group, groupIcon, fileIcon, selectedId, classNames, onExpand }) => {
|
|
10649
|
-
const slots = (0,
|
|
10621
|
+
const slots = (0, import_react33.useMemo)(() => treeStyle(), []);
|
|
10650
10622
|
const handleClick = (e) => {
|
|
10651
10623
|
var _a;
|
|
10652
10624
|
(_a = group.onClick) == null ? void 0 : _a.call(group, e);
|
|
@@ -10656,10 +10628,10 @@ var Tree = ({ headerContent, group, groupIcon, fileIcon, selectedId, classNames,
|
|
|
10656
10628
|
e.preventDefault();
|
|
10657
10629
|
(_a = group.onRightClick) == null ? void 0 : _a.call(group, e);
|
|
10658
10630
|
};
|
|
10659
|
-
return /* @__PURE__ */ (0,
|
|
10660
|
-
headerContent && /* @__PURE__ */ (0,
|
|
10661
|
-
/* @__PURE__ */ (0,
|
|
10662
|
-
/* @__PURE__ */ (0,
|
|
10631
|
+
return /* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("div", { className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: [
|
|
10632
|
+
headerContent && /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("div", { children: headerContent }),
|
|
10633
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsxs)("div", { className: slots.wrapper({ class: classNames == null ? void 0 : classNames.wrapper }), children: [
|
|
10634
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsxs)(
|
|
10663
10635
|
"div",
|
|
10664
10636
|
{
|
|
10665
10637
|
className: clsx(
|
|
@@ -10674,7 +10646,7 @@ var Tree = ({ headerContent, group, groupIcon, fileIcon, selectedId, classNames,
|
|
|
10674
10646
|
]
|
|
10675
10647
|
}
|
|
10676
10648
|
),
|
|
10677
|
-
/* @__PURE__ */ (0,
|
|
10649
|
+
/* @__PURE__ */ (0, import_jsx_runtime36.jsx)("div", { className: slots.itemWrapper({ class: classNames == null ? void 0 : classNames.itemWrapper }), children: group.data.map((node) => /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
10678
10650
|
TreeNodeItem,
|
|
10679
10651
|
{
|
|
10680
10652
|
node,
|
|
@@ -10695,6 +10667,7 @@ var treeStyle = tv({
|
|
|
10695
10667
|
slots: {
|
|
10696
10668
|
base: ["border", "border-neutral-light", "rounded-xl", "p-[20px]", "flex", "flex-col", "gap-[20px]", "select-none"],
|
|
10697
10669
|
wrapper: ["flex", "flex-col", "gap-[5px]"],
|
|
10670
|
+
itemWrapper: ["flex", "flex-col", "gap-[5px]"],
|
|
10698
10671
|
node: [
|
|
10699
10672
|
"flex",
|
|
10700
10673
|
"items-center",
|
|
@@ -10711,9 +10684,9 @@ var treeStyle = tv({
|
|
|
10711
10684
|
});
|
|
10712
10685
|
|
|
10713
10686
|
// src/components/fileUpload/fileUpload.tsx
|
|
10714
|
-
var
|
|
10715
|
-
var
|
|
10716
|
-
var
|
|
10687
|
+
var import_react34 = require("react");
|
|
10688
|
+
var import_tailwind_variants31 = require("tailwind-variants");
|
|
10689
|
+
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
10717
10690
|
function FileUpload({
|
|
10718
10691
|
buttonText,
|
|
10719
10692
|
maxSizeMB = 10,
|
|
@@ -10727,11 +10700,11 @@ function FileUpload({
|
|
|
10727
10700
|
name,
|
|
10728
10701
|
classNames
|
|
10729
10702
|
}) {
|
|
10730
|
-
const fileInputRef = (0,
|
|
10731
|
-
const uploadIntervalRef = (0,
|
|
10732
|
-
const [file, setFile] = (0,
|
|
10733
|
-
const [uploadProgress, setUploadProgress] = (0,
|
|
10734
|
-
const [errorMessage, setErrorMessage] = (0,
|
|
10703
|
+
const fileInputRef = (0, import_react34.useRef)(null);
|
|
10704
|
+
const uploadIntervalRef = (0, import_react34.useRef)(null);
|
|
10705
|
+
const [file, setFile] = (0, import_react34.useState)(null);
|
|
10706
|
+
const [uploadProgress, setUploadProgress] = (0, import_react34.useState)(0);
|
|
10707
|
+
const [errorMessage, setErrorMessage] = (0, import_react34.useState)("");
|
|
10735
10708
|
const slots = fileUploadStyle();
|
|
10736
10709
|
const handleButtonClick = () => {
|
|
10737
10710
|
var _a;
|
|
@@ -10781,18 +10754,18 @@ function FileUpload({
|
|
|
10781
10754
|
setUploadProgress(0);
|
|
10782
10755
|
setErrorMessage("");
|
|
10783
10756
|
};
|
|
10784
|
-
(0,
|
|
10757
|
+
(0, import_react34.useEffect)(() => {
|
|
10785
10758
|
return () => {
|
|
10786
10759
|
if (uploadIntervalRef.current) {
|
|
10787
10760
|
clearInterval(uploadIntervalRef.current);
|
|
10788
10761
|
}
|
|
10789
10762
|
};
|
|
10790
10763
|
}, []);
|
|
10791
|
-
return /* @__PURE__ */ (0,
|
|
10792
|
-
/* @__PURE__ */ (0,
|
|
10793
|
-
/* @__PURE__ */ (0,
|
|
10794
|
-
/* @__PURE__ */ (0,
|
|
10795
|
-
file && /* @__PURE__ */ (0,
|
|
10764
|
+
return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: [
|
|
10765
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { className: slots.container({ class: classNames == null ? void 0 : classNames.container }), children: [
|
|
10766
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsxs)("div", { className: slots.inputWrapper(), children: [
|
|
10767
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)(input_default, { name, readOnly: true, variant: "outline", full: true, placeholder, defaultValue: file == null ? void 0 : file.name }),
|
|
10768
|
+
file && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(
|
|
10796
10769
|
icon_button_default,
|
|
10797
10770
|
{
|
|
10798
10771
|
name: "close",
|
|
@@ -10804,17 +10777,17 @@ function FileUpload({
|
|
|
10804
10777
|
}
|
|
10805
10778
|
)
|
|
10806
10779
|
] }),
|
|
10807
|
-
/* @__PURE__ */ (0,
|
|
10808
|
-
/* @__PURE__ */ (0,
|
|
10780
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)(button_default, { type: "button", variant: "outline", onClick: handleButtonClick, children: buttonText }),
|
|
10781
|
+
/* @__PURE__ */ (0, import_jsx_runtime37.jsx)("input", { ref: fileInputRef, type: "file", hidden: true, accept: accept.join(","), onChange: handleFileChange })
|
|
10809
10782
|
] }),
|
|
10810
|
-
showProgress && file && uploadProgress < 100 && /* @__PURE__ */ (0,
|
|
10811
|
-
!errorMessage && helperMessage && /* @__PURE__ */ (0,
|
|
10812
|
-
errorMessage && /* @__PURE__ */ (0,
|
|
10783
|
+
showProgress && file && uploadProgress < 100 && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { className: slots.progressBarContainer(), children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("div", { className: slots.progressBar(), style: { width: `${uploadProgress}%` } }) }),
|
|
10784
|
+
!errorMessage && helperMessage && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("p", { className: slots.helperMessage(), children: helperMessage }),
|
|
10785
|
+
errorMessage && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("p", { className: slots.errorMessage(), children: errorMessage })
|
|
10813
10786
|
] });
|
|
10814
10787
|
}
|
|
10815
10788
|
FileUpload.displayName = "FileUpload";
|
|
10816
10789
|
var fileUpload_default = FileUpload;
|
|
10817
|
-
var fileUploadStyle = (0,
|
|
10790
|
+
var fileUploadStyle = (0, import_tailwind_variants31.tv)({
|
|
10818
10791
|
slots: {
|
|
10819
10792
|
base: ["flex", "flex-col", "gap-[5px]"],
|
|
10820
10793
|
container: ["flex", "items-center", "gap-[10px]"],
|
|
@@ -10829,12 +10802,12 @@ var fileUploadStyle = (0, import_tailwind_variants32.tv)({
|
|
|
10829
10802
|
|
|
10830
10803
|
// src/components/charts/circularProgress.tsx
|
|
10831
10804
|
var import_recharts = require("recharts");
|
|
10832
|
-
var
|
|
10833
|
-
var
|
|
10834
|
-
var CircularProgress = (0,
|
|
10805
|
+
var import_react35 = require("react");
|
|
10806
|
+
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
10807
|
+
var CircularProgress = (0, import_react35.forwardRef)((originalProps, ref) => {
|
|
10835
10808
|
const [props, variantProps] = mapPropsVariants(originalProps, circularProgressStyle.variantKeys);
|
|
10836
10809
|
const { label, size = 150, percentage, unit, classNames } = { ...props, ...variantProps };
|
|
10837
|
-
const slots = (0,
|
|
10810
|
+
const slots = (0, import_react35.useMemo)(() => circularProgressStyle({ ...variantProps }), [variantProps]);
|
|
10838
10811
|
const data = [
|
|
10839
10812
|
{
|
|
10840
10813
|
name: label,
|
|
@@ -10844,9 +10817,9 @@ var CircularProgress = (0, import_react36.forwardRef)((originalProps, ref) => {
|
|
|
10844
10817
|
const BAR_SIZE = 24;
|
|
10845
10818
|
const OUTER_RADIUS = 88;
|
|
10846
10819
|
const INNER_RADIUS = OUTER_RADIUS - BAR_SIZE;
|
|
10847
|
-
return /* @__PURE__ */ (0,
|
|
10848
|
-
/* @__PURE__ */ (0,
|
|
10849
|
-
/* @__PURE__ */ (0,
|
|
10820
|
+
return /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: [
|
|
10821
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsxs)("div", { className: "relative", style: { width: size, height: size }, children: [
|
|
10822
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsxs)(
|
|
10850
10823
|
import_recharts.RadialBarChart,
|
|
10851
10824
|
{
|
|
10852
10825
|
width: size,
|
|
@@ -10858,7 +10831,7 @@ var CircularProgress = (0, import_react36.forwardRef)((originalProps, ref) => {
|
|
|
10858
10831
|
startAngle: 90,
|
|
10859
10832
|
endAngle: -270,
|
|
10860
10833
|
children: [
|
|
10861
|
-
/* @__PURE__ */ (0,
|
|
10834
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
10862
10835
|
"circle",
|
|
10863
10836
|
{
|
|
10864
10837
|
cx: size / 2,
|
|
@@ -10868,8 +10841,8 @@ var CircularProgress = (0, import_react36.forwardRef)((originalProps, ref) => {
|
|
|
10868
10841
|
fill: "currentColor"
|
|
10869
10842
|
}
|
|
10870
10843
|
),
|
|
10871
|
-
/* @__PURE__ */ (0,
|
|
10872
|
-
/* @__PURE__ */ (0,
|
|
10844
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)(import_recharts.PolarAngleAxis, { type: "number", domain: [0, 100], angleAxisId: 0, tick: false }),
|
|
10845
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
10873
10846
|
import_recharts.RadialBar,
|
|
10874
10847
|
{
|
|
10875
10848
|
dataKey: "value",
|
|
@@ -10881,12 +10854,12 @@ var CircularProgress = (0, import_react36.forwardRef)((originalProps, ref) => {
|
|
|
10881
10854
|
]
|
|
10882
10855
|
}
|
|
10883
10856
|
),
|
|
10884
|
-
/* @__PURE__ */ (0,
|
|
10857
|
+
/* @__PURE__ */ (0, import_jsx_runtime38.jsx)("div", { className: "absolute inset-0 flex items-center justify-center", children: /* @__PURE__ */ (0, import_jsx_runtime38.jsxs)("span", { className: slots.text({ class: classNames == null ? void 0 : classNames.text }), children: [
|
|
10885
10858
|
percentage,
|
|
10886
10859
|
unit
|
|
10887
10860
|
] }) })
|
|
10888
10861
|
] }),
|
|
10889
|
-
label && /* @__PURE__ */ (0,
|
|
10862
|
+
label && /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("p", { className: slots.label({ class: classNames == null ? void 0 : classNames.label }), children: label })
|
|
10890
10863
|
] });
|
|
10891
10864
|
});
|
|
10892
10865
|
CircularProgress.displayName = "CircularProgress";
|
|
@@ -10924,26 +10897,26 @@ var circularProgressStyle = tv({
|
|
|
10924
10897
|
});
|
|
10925
10898
|
|
|
10926
10899
|
// src/components/charts/areaChart.tsx
|
|
10927
|
-
var
|
|
10900
|
+
var import_react36 = require("react");
|
|
10928
10901
|
var import_recharts2 = require("recharts");
|
|
10929
|
-
var
|
|
10930
|
-
var AreaChartComponent = (0,
|
|
10931
|
-
const uniqueId = (0,
|
|
10902
|
+
var import_jsx_runtime39 = require("react/jsx-runtime");
|
|
10903
|
+
var AreaChartComponent = (0, import_react36.forwardRef)((originalProps, ref) => {
|
|
10904
|
+
const uniqueId = (0, import_react36.useId)();
|
|
10932
10905
|
const [props, variantProps] = mapPropsVariants(originalProps, areaChartStyle.variantKeys);
|
|
10933
10906
|
const { data, label, color = "primary", classNames } = { ...props, ...variantProps };
|
|
10934
|
-
const slots = (0,
|
|
10907
|
+
const slots = (0, import_react36.useMemo)(() => areaChartStyle({ ...variantProps }), [variantProps]);
|
|
10935
10908
|
const COLOR_MAP = {
|
|
10936
10909
|
primary: "#3F9CF2",
|
|
10937
10910
|
danger: "#FF4684"
|
|
10938
10911
|
};
|
|
10939
|
-
const colorHex = (0,
|
|
10940
|
-
const [tickPositions, setTickPositions] = (0,
|
|
10941
|
-
const tickRef = (0,
|
|
10912
|
+
const colorHex = (0, import_react36.useMemo)(() => COLOR_MAP[color], [color]);
|
|
10913
|
+
const [tickPositions, setTickPositions] = (0, import_react36.useState)([]);
|
|
10914
|
+
const tickRef = (0, import_react36.useRef)([]);
|
|
10942
10915
|
const CustomTick = ({ x, y, payload }) => {
|
|
10943
10916
|
if (x !== void 0) {
|
|
10944
10917
|
tickRef.current.push(x);
|
|
10945
10918
|
}
|
|
10946
|
-
return /* @__PURE__ */ (0,
|
|
10919
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
10947
10920
|
"text",
|
|
10948
10921
|
{
|
|
10949
10922
|
x,
|
|
@@ -10957,7 +10930,7 @@ var AreaChartComponent = (0, import_react37.forwardRef)((originalProps, ref) =>
|
|
|
10957
10930
|
}
|
|
10958
10931
|
);
|
|
10959
10932
|
};
|
|
10960
|
-
(0,
|
|
10933
|
+
(0, import_react36.useEffect)(() => {
|
|
10961
10934
|
const raf = requestAnimationFrame(() => {
|
|
10962
10935
|
const unique = [...new Set(tickRef.current)].sort((a, b) => a - b);
|
|
10963
10936
|
const mids = [];
|
|
@@ -10972,19 +10945,19 @@ var AreaChartComponent = (0, import_react37.forwardRef)((originalProps, ref) =>
|
|
|
10972
10945
|
const CustomDotWithShadow = (props2) => {
|
|
10973
10946
|
const { cx, cy, fill, stroke } = props2;
|
|
10974
10947
|
if (cx === void 0 || cy === void 0) return null;
|
|
10975
|
-
return /* @__PURE__ */ (0,
|
|
10976
|
-
/* @__PURE__ */ (0,
|
|
10977
|
-
/* @__PURE__ */ (0,
|
|
10948
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(import_jsx_runtime39.Fragment, { children: [
|
|
10949
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("circle", { cx, cy, r: 8, fill, opacity: 0.2 }),
|
|
10950
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("circle", { cx, cy, r: 3.5, fill, stroke, strokeWidth: 2 })
|
|
10978
10951
|
] });
|
|
10979
10952
|
};
|
|
10980
|
-
return /* @__PURE__ */ (0,
|
|
10981
|
-
label && /* @__PURE__ */ (0,
|
|
10982
|
-
/* @__PURE__ */ (0,
|
|
10983
|
-
/* @__PURE__ */ (0,
|
|
10984
|
-
/* @__PURE__ */ (0,
|
|
10985
|
-
/* @__PURE__ */ (0,
|
|
10953
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: [
|
|
10954
|
+
label && /* @__PURE__ */ (0, import_jsx_runtime39.jsx)("p", { className: slots.label({ class: classNames == null ? void 0 : classNames.label }), children: label }),
|
|
10955
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(import_recharts2.ResponsiveContainer, { width: "100%", height: "100%", children: /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)(import_recharts2.AreaChart, { data, margin: { left: -30 }, children: [
|
|
10956
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("linearGradient", { id: `colorGradient-${uniqueId}`, x1: "0", y1: "0", x2: "0", y2: "1", children: [
|
|
10957
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("stop", { offset: "5%", stopColor: colorHex, stopOpacity: 0.3 }),
|
|
10958
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)("stop", { offset: "95%", stopColor: colorHex, stopOpacity: 0 })
|
|
10986
10959
|
] }) }),
|
|
10987
|
-
/* @__PURE__ */ (0,
|
|
10960
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
10988
10961
|
import_recharts2.CartesianGrid,
|
|
10989
10962
|
{
|
|
10990
10963
|
vertical: true,
|
|
@@ -10994,7 +10967,7 @@ var AreaChartComponent = (0, import_react37.forwardRef)((originalProps, ref) =>
|
|
|
10994
10967
|
verticalPoints: tickPositions
|
|
10995
10968
|
}
|
|
10996
10969
|
),
|
|
10997
|
-
/* @__PURE__ */ (0,
|
|
10970
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
10998
10971
|
import_recharts2.XAxis,
|
|
10999
10972
|
{
|
|
11000
10973
|
dataKey: "name",
|
|
@@ -11004,7 +10977,7 @@ var AreaChartComponent = (0, import_react37.forwardRef)((originalProps, ref) =>
|
|
|
11004
10977
|
padding: { left: 35.5, right: 35.5 }
|
|
11005
10978
|
}
|
|
11006
10979
|
),
|
|
11007
|
-
/* @__PURE__ */ (0,
|
|
10980
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
11008
10981
|
import_recharts2.YAxis,
|
|
11009
10982
|
{
|
|
11010
10983
|
axisLine: { stroke: "#DFE2E7", strokeWidth: 1 },
|
|
@@ -11020,7 +10993,7 @@ var AreaChartComponent = (0, import_react37.forwardRef)((originalProps, ref) =>
|
|
|
11020
10993
|
domain: [-6, 110]
|
|
11021
10994
|
}
|
|
11022
10995
|
),
|
|
11023
|
-
/* @__PURE__ */ (0,
|
|
10996
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
11024
10997
|
import_recharts2.Area,
|
|
11025
10998
|
{
|
|
11026
10999
|
type: "monotone",
|
|
@@ -11028,7 +11001,7 @@ var AreaChartComponent = (0, import_react37.forwardRef)((originalProps, ref) =>
|
|
|
11028
11001
|
stroke: colorHex,
|
|
11029
11002
|
strokeWidth: 2,
|
|
11030
11003
|
fill: `url(#colorGradient-${uniqueId})`,
|
|
11031
|
-
dot: /* @__PURE__ */ (0,
|
|
11004
|
+
dot: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(CustomDotWithShadow, { stroke: colorHex, fill: colorHex }),
|
|
11032
11005
|
activeDot: { r: 7, fill: colorHex }
|
|
11033
11006
|
}
|
|
11034
11007
|
)
|
|
@@ -11060,20 +11033,20 @@ var areaChartStyle = tv({
|
|
|
11060
11033
|
});
|
|
11061
11034
|
|
|
11062
11035
|
// src/components/charts/barChart.tsx
|
|
11063
|
-
var
|
|
11036
|
+
var import_react37 = require("react");
|
|
11064
11037
|
var import_recharts3 = require("recharts");
|
|
11065
|
-
var
|
|
11066
|
-
var BarChartComponent = (0,
|
|
11038
|
+
var import_jsx_runtime40 = require("react/jsx-runtime");
|
|
11039
|
+
var BarChartComponent = (0, import_react37.forwardRef)((originalProps, ref) => {
|
|
11067
11040
|
const [props, variantProps] = mapPropsVariants(originalProps, barChartStyle.variantKeys);
|
|
11068
11041
|
const { data, label, classNames } = { ...props, ...variantProps };
|
|
11069
|
-
const slots = (0,
|
|
11042
|
+
const slots = (0, import_react37.useMemo)(() => barChartStyle({ ...variantProps }), [variantProps]);
|
|
11070
11043
|
const COLOR_MAP = {
|
|
11071
11044
|
primary: "#C7E5FA",
|
|
11072
11045
|
secondary: "#DEC1FA",
|
|
11073
11046
|
warning: "#F9C967"
|
|
11074
11047
|
};
|
|
11075
|
-
const [tickPositions, setTickPositions] = (0,
|
|
11076
|
-
const tickRef = (0,
|
|
11048
|
+
const [tickPositions, setTickPositions] = (0, import_react37.useState)([]);
|
|
11049
|
+
const tickRef = (0, import_react37.useRef)([]);
|
|
11077
11050
|
const CustomBarShape = (barProps) => {
|
|
11078
11051
|
const { x, y, width, height, fill } = barProps;
|
|
11079
11052
|
const radius = 5;
|
|
@@ -11081,19 +11054,19 @@ var BarChartComponent = (0, import_react38.forwardRef)((originalProps, ref) => {
|
|
|
11081
11054
|
const adjustedHeight = height + extraHeight;
|
|
11082
11055
|
const adjustedY = y;
|
|
11083
11056
|
const bottomY = adjustedY + adjustedHeight;
|
|
11084
|
-
return height ? /* @__PURE__ */ (0,
|
|
11057
|
+
return height ? /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
11085
11058
|
"path",
|
|
11086
11059
|
{
|
|
11087
11060
|
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`,
|
|
11088
11061
|
fill
|
|
11089
11062
|
}
|
|
11090
|
-
) : /* @__PURE__ */ (0,
|
|
11063
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("rect", { x, y, width, height: 0, fill });
|
|
11091
11064
|
};
|
|
11092
11065
|
const CustomTick = ({ x, y, payload }) => {
|
|
11093
11066
|
if (x !== void 0) {
|
|
11094
11067
|
tickRef.current.push(x);
|
|
11095
11068
|
}
|
|
11096
|
-
return /* @__PURE__ */ (0,
|
|
11069
|
+
return /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
11097
11070
|
"text",
|
|
11098
11071
|
{
|
|
11099
11072
|
x,
|
|
@@ -11107,7 +11080,7 @@ var BarChartComponent = (0, import_react38.forwardRef)((originalProps, ref) => {
|
|
|
11107
11080
|
}
|
|
11108
11081
|
);
|
|
11109
11082
|
};
|
|
11110
|
-
(0,
|
|
11083
|
+
(0, import_react37.useEffect)(() => {
|
|
11111
11084
|
const raf = requestAnimationFrame(() => {
|
|
11112
11085
|
const unique = [...new Set(tickRef.current)].sort((a, b) => a - b);
|
|
11113
11086
|
const mids = [];
|
|
@@ -11119,10 +11092,10 @@ var BarChartComponent = (0, import_react38.forwardRef)((originalProps, ref) => {
|
|
|
11119
11092
|
});
|
|
11120
11093
|
return () => cancelAnimationFrame(raf);
|
|
11121
11094
|
}, [data]);
|
|
11122
|
-
return /* @__PURE__ */ (0,
|
|
11123
|
-
label && /* @__PURE__ */ (0,
|
|
11124
|
-
/* @__PURE__ */ (0,
|
|
11125
|
-
/* @__PURE__ */ (0,
|
|
11095
|
+
return /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)("div", { ref, className: slots.base({ class: classNames == null ? void 0 : classNames.base }), children: [
|
|
11096
|
+
label && /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("p", { className: slots.label({ class: classNames == null ? void 0 : classNames.label }), children: label }),
|
|
11097
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)(import_recharts3.ResponsiveContainer, { width: "100%", height: "100%", children: /* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(import_recharts3.BarChart, { data, margin: { left: -30 }, barSize: 20, barGap: 10, children: [
|
|
11098
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
11126
11099
|
import_recharts3.CartesianGrid,
|
|
11127
11100
|
{
|
|
11128
11101
|
vertical: true,
|
|
@@ -11132,7 +11105,7 @@ var BarChartComponent = (0, import_react38.forwardRef)((originalProps, ref) => {
|
|
|
11132
11105
|
verticalPoints: tickPositions
|
|
11133
11106
|
}
|
|
11134
11107
|
),
|
|
11135
|
-
/* @__PURE__ */ (0,
|
|
11108
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
11136
11109
|
import_recharts3.XAxis,
|
|
11137
11110
|
{
|
|
11138
11111
|
dataKey: "name",
|
|
@@ -11142,7 +11115,7 @@ var BarChartComponent = (0, import_react38.forwardRef)((originalProps, ref) => {
|
|
|
11142
11115
|
padding: { left: 32, right: 32 }
|
|
11143
11116
|
}
|
|
11144
11117
|
),
|
|
11145
|
-
/* @__PURE__ */ (0,
|
|
11118
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)(
|
|
11146
11119
|
import_recharts3.YAxis,
|
|
11147
11120
|
{
|
|
11148
11121
|
axisLine: { stroke: "#DFE2E7", strokeWidth: 1 },
|
|
@@ -11158,9 +11131,9 @@ var BarChartComponent = (0, import_react38.forwardRef)((originalProps, ref) => {
|
|
|
11158
11131
|
domain: [-6, 110]
|
|
11159
11132
|
}
|
|
11160
11133
|
),
|
|
11161
|
-
/* @__PURE__ */ (0,
|
|
11162
|
-
/* @__PURE__ */ (0,
|
|
11163
|
-
/* @__PURE__ */ (0,
|
|
11134
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)(import_recharts3.Bar, { dataKey: "avg", fill: COLOR_MAP.primary, width: 20, shape: CustomBarShape }),
|
|
11135
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)(import_recharts3.Bar, { dataKey: "high", fill: COLOR_MAP.secondary, width: 20, shape: CustomBarShape }),
|
|
11136
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)(import_recharts3.Bar, { dataKey: "low", fill: COLOR_MAP.warning, width: 20, shape: CustomBarShape })
|
|
11164
11137
|
] }) })
|
|
11165
11138
|
] });
|
|
11166
11139
|
});
|
|
@@ -11190,7 +11163,6 @@ var barChartStyle = tv({
|
|
|
11190
11163
|
CircularProgress,
|
|
11191
11164
|
DateTimePicker,
|
|
11192
11165
|
DefinitionTable,
|
|
11193
|
-
DefinitionTable2,
|
|
11194
11166
|
Drawer,
|
|
11195
11167
|
FileUpload,
|
|
11196
11168
|
Icon,
|