nectiasw 0.0.71 → 0.0.73
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/dist/components/Checkbox/index.d.ts +1 -0
- package/dist/components/Table/types.d.ts +1 -1
- package/dist/index.es.js +106 -71
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +44 -44
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -84,7 +84,7 @@ export type TableStatusProps = {
|
|
|
84
84
|
text?: TableDataProps["detailText"];
|
|
85
85
|
disabled?: TableDataProps["detailDisabled"];
|
|
86
86
|
variant?: ButtonProps["variant"];
|
|
87
|
-
value: "Normal" | "Cerrado" | "Crítico" | "Por emisión OC";
|
|
87
|
+
value: "Normal" | "Cerrado" | "Crítico" | "Por emisión OC" | "Borrador";
|
|
88
88
|
};
|
|
89
89
|
export type TableColProps = {
|
|
90
90
|
width?: number;
|
package/dist/index.es.js
CHANGED
|
@@ -18980,7 +18980,7 @@ function IconBase(props) {
|
|
|
18980
18980
|
function HiOutlineCheck(props) {
|
|
18981
18981
|
return GenIcon({ "tag": "svg", "attr": { "fill": "none", "viewBox": "0 0 24 24", "strokeWidth": "2", "stroke": "currentColor", "aria-hidden": "true" }, "child": [{ "tag": "path", "attr": { "strokeLinecap": "round", "strokeLinejoin": "round", "d": "M5 13l4 4L19 7" }, "child": [] }] })(props);
|
|
18982
18982
|
}
|
|
18983
|
-
function ChevronDownIcon({
|
|
18983
|
+
function ChevronDownIcon$1({
|
|
18984
18984
|
title,
|
|
18985
18985
|
titleId,
|
|
18986
18986
|
...props
|
|
@@ -19001,7 +19001,7 @@ function ChevronDownIcon({
|
|
|
19001
19001
|
clipRule: "evenodd"
|
|
19002
19002
|
}));
|
|
19003
19003
|
}
|
|
19004
|
-
const ForwardRef$
|
|
19004
|
+
const ForwardRef$p = /* @__PURE__ */ React.forwardRef(ChevronDownIcon$1);
|
|
19005
19005
|
function ChevronLeftIcon({
|
|
19006
19006
|
title,
|
|
19007
19007
|
titleId,
|
|
@@ -19023,7 +19023,7 @@ function ChevronLeftIcon({
|
|
|
19023
19023
|
clipRule: "evenodd"
|
|
19024
19024
|
}));
|
|
19025
19025
|
}
|
|
19026
|
-
const ForwardRef$
|
|
19026
|
+
const ForwardRef$o = /* @__PURE__ */ React.forwardRef(ChevronLeftIcon);
|
|
19027
19027
|
function ChevronRightIcon({
|
|
19028
19028
|
title,
|
|
19029
19029
|
titleId,
|
|
@@ -19045,7 +19045,7 @@ function ChevronRightIcon({
|
|
|
19045
19045
|
clipRule: "evenodd"
|
|
19046
19046
|
}));
|
|
19047
19047
|
}
|
|
19048
|
-
const ForwardRef$
|
|
19048
|
+
const ForwardRef$n = /* @__PURE__ */ React.forwardRef(ChevronRightIcon);
|
|
19049
19049
|
function ChevronUpIcon({
|
|
19050
19050
|
title,
|
|
19051
19051
|
titleId,
|
|
@@ -19067,7 +19067,7 @@ function ChevronUpIcon({
|
|
|
19067
19067
|
clipRule: "evenodd"
|
|
19068
19068
|
}));
|
|
19069
19069
|
}
|
|
19070
|
-
const ForwardRef$
|
|
19070
|
+
const ForwardRef$m = /* @__PURE__ */ React.forwardRef(ChevronUpIcon);
|
|
19071
19071
|
function MinusIcon({
|
|
19072
19072
|
title,
|
|
19073
19073
|
titleId,
|
|
@@ -19089,7 +19089,7 @@ function MinusIcon({
|
|
|
19089
19089
|
clipRule: "evenodd"
|
|
19090
19090
|
}));
|
|
19091
19091
|
}
|
|
19092
|
-
const ForwardRef$
|
|
19092
|
+
const ForwardRef$l = /* @__PURE__ */ React.forwardRef(MinusIcon);
|
|
19093
19093
|
const StyledCheckbox = styled.input.attrs({ type: "checkbox" })`
|
|
19094
19094
|
appearance: none;
|
|
19095
19095
|
border: 2px solid #939799;
|
|
@@ -19120,7 +19120,7 @@ const CheckboxIcon = styled(HiOutlineCheck)`
|
|
|
19120
19120
|
font-size: 20px;
|
|
19121
19121
|
transition: color 0.2s linear;
|
|
19122
19122
|
`;
|
|
19123
|
-
const CheckboxIconFilter = styled(ForwardRef$
|
|
19123
|
+
const CheckboxIconFilter = styled(ForwardRef$l)`
|
|
19124
19124
|
position: absolute;
|
|
19125
19125
|
left: ${(props) => props.left};
|
|
19126
19126
|
top: ${(props) => props.top ?? "50%"};
|
|
@@ -19143,6 +19143,7 @@ const Checkbox = ({
|
|
|
19143
19143
|
right,
|
|
19144
19144
|
name,
|
|
19145
19145
|
label,
|
|
19146
|
+
hidden,
|
|
19146
19147
|
filter: filter2,
|
|
19147
19148
|
checked,
|
|
19148
19149
|
disabled,
|
|
@@ -19156,7 +19157,7 @@ const Checkbox = ({
|
|
|
19156
19157
|
onChange2 == null ? void 0 : onChange2(!checked);
|
|
19157
19158
|
};
|
|
19158
19159
|
if (filter2) {
|
|
19159
|
-
return /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: clsx$1(classes$l.container.root, className && className), children: [
|
|
19160
|
+
return /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: clsx$1(classes$l.container.root, className && className, hidden && "collapse"), children: [
|
|
19160
19161
|
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
19161
19162
|
StyledCheckbox,
|
|
19162
19163
|
{
|
|
@@ -19165,14 +19166,14 @@ const Checkbox = ({
|
|
|
19165
19166
|
checked: filter2,
|
|
19166
19167
|
disabled,
|
|
19167
19168
|
onClick: handleClick,
|
|
19168
|
-
className: classes$l.container.input
|
|
19169
|
+
className: clsx$1(classes$l.container.input, hidden && "collapse")
|
|
19169
19170
|
}
|
|
19170
19171
|
),
|
|
19171
19172
|
/* @__PURE__ */ jsxRuntimeExports.jsx(CheckboxIconFilter, { top, right, left, status: filter2, onClick: handleClick }),
|
|
19172
|
-
label && /* @__PURE__ */ jsxRuntimeExports.jsx("label", { htmlFor: id, className: classes$l.container.label, children: label })
|
|
19173
|
+
label && /* @__PURE__ */ jsxRuntimeExports.jsx("label", { htmlFor: id, className: clsx$1(classes$l.container.label, hidden && "collapse"), children: label })
|
|
19173
19174
|
] });
|
|
19174
19175
|
}
|
|
19175
|
-
return /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: clsx$1(classes$l.container.root, className && className), children: [
|
|
19176
|
+
return /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: clsx$1(classes$l.container.root, className && className, hidden && "collapse"), children: [
|
|
19176
19177
|
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
19177
19178
|
StyledCheckbox,
|
|
19178
19179
|
{
|
|
@@ -19181,11 +19182,11 @@ const Checkbox = ({
|
|
|
19181
19182
|
checked,
|
|
19182
19183
|
disabled,
|
|
19183
19184
|
onClick: handleClick,
|
|
19184
|
-
className: classes$l.container.input
|
|
19185
|
+
className: clsx$1(classes$l.container.input, hidden && "collapse")
|
|
19185
19186
|
}
|
|
19186
19187
|
),
|
|
19187
19188
|
/* @__PURE__ */ jsxRuntimeExports.jsx(CheckboxIcon, { top, right, left, status: checked, onClick: handleClick }),
|
|
19188
|
-
label && /* @__PURE__ */ jsxRuntimeExports.jsx("label", { htmlFor: id, className: classes$l.container.label, children: label })
|
|
19189
|
+
label && /* @__PURE__ */ jsxRuntimeExports.jsx("label", { htmlFor: id, className: clsx$1(classes$l.container.label, hidden && "collapse"), children: label })
|
|
19189
19190
|
] });
|
|
19190
19191
|
};
|
|
19191
19192
|
const classes$k = {
|
|
@@ -19255,7 +19256,7 @@ const Dropdown$1 = React__default.memo(
|
|
|
19255
19256
|
switch (orientation2) {
|
|
19256
19257
|
case "top":
|
|
19257
19258
|
return /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
19258
|
-
ForwardRef$
|
|
19259
|
+
ForwardRef$m,
|
|
19259
19260
|
{
|
|
19260
19261
|
className: classes$k.container.chevron,
|
|
19261
19262
|
"aria-hidden": "true"
|
|
@@ -19263,7 +19264,7 @@ const Dropdown$1 = React__default.memo(
|
|
|
19263
19264
|
);
|
|
19264
19265
|
case "left":
|
|
19265
19266
|
return /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
19266
|
-
ForwardRef$
|
|
19267
|
+
ForwardRef$o,
|
|
19267
19268
|
{
|
|
19268
19269
|
className: classes$k.container.chevron,
|
|
19269
19270
|
"aria-hidden": "true"
|
|
@@ -19271,7 +19272,7 @@ const Dropdown$1 = React__default.memo(
|
|
|
19271
19272
|
);
|
|
19272
19273
|
case "right":
|
|
19273
19274
|
return /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
19274
|
-
ForwardRef$
|
|
19275
|
+
ForwardRef$n,
|
|
19275
19276
|
{
|
|
19276
19277
|
className: classes$k.container.chevron,
|
|
19277
19278
|
"aria-hidden": "true"
|
|
@@ -19279,7 +19280,7 @@ const Dropdown$1 = React__default.memo(
|
|
|
19279
19280
|
);
|
|
19280
19281
|
case "bottom":
|
|
19281
19282
|
return /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
19282
|
-
ForwardRef$
|
|
19283
|
+
ForwardRef$p,
|
|
19283
19284
|
{
|
|
19284
19285
|
className: classes$k.container.chevron,
|
|
19285
19286
|
"aria-hidden": "true"
|
|
@@ -25780,7 +25781,7 @@ function ArrowLeftIcon({
|
|
|
25780
25781
|
d: "M10.5 19.5 3 12m0 0 7.5-7.5M3 12h18"
|
|
25781
25782
|
}));
|
|
25782
25783
|
}
|
|
25783
|
-
const ForwardRef$
|
|
25784
|
+
const ForwardRef$k = /* @__PURE__ */ React.forwardRef(ArrowLeftIcon);
|
|
25784
25785
|
function ArrowLongLeftIcon({
|
|
25785
25786
|
title,
|
|
25786
25787
|
titleId,
|
|
@@ -25804,7 +25805,7 @@ function ArrowLongLeftIcon({
|
|
|
25804
25805
|
d: "M6.75 15.75 3 12m0 0 3.75-3.75M3 12h18"
|
|
25805
25806
|
}));
|
|
25806
25807
|
}
|
|
25807
|
-
const ForwardRef$
|
|
25808
|
+
const ForwardRef$j = /* @__PURE__ */ React.forwardRef(ArrowLongLeftIcon);
|
|
25808
25809
|
function ArrowLongRightIcon({
|
|
25809
25810
|
title,
|
|
25810
25811
|
titleId,
|
|
@@ -25828,7 +25829,7 @@ function ArrowLongRightIcon({
|
|
|
25828
25829
|
d: "M17.25 8.25 21 12m0 0-3.75 3.75M21 12H3"
|
|
25829
25830
|
}));
|
|
25830
25831
|
}
|
|
25831
|
-
const ForwardRef$
|
|
25832
|
+
const ForwardRef$i = /* @__PURE__ */ React.forwardRef(ArrowLongRightIcon);
|
|
25832
25833
|
function ArrowRightEndOnRectangleIcon({
|
|
25833
25834
|
title,
|
|
25834
25835
|
titleId,
|
|
@@ -25852,7 +25853,7 @@ function ArrowRightEndOnRectangleIcon({
|
|
|
25852
25853
|
d: "M8.25 9V5.25A2.25 2.25 0 0 1 10.5 3h6a2.25 2.25 0 0 1 2.25 2.25v13.5A2.25 2.25 0 0 1 16.5 21h-6a2.25 2.25 0 0 1-2.25-2.25V15M12 9l3 3m0 0-3 3m3-3H2.25"
|
|
25853
25854
|
}));
|
|
25854
25855
|
}
|
|
25855
|
-
const ForwardRef$
|
|
25856
|
+
const ForwardRef$h = /* @__PURE__ */ React.forwardRef(ArrowRightEndOnRectangleIcon);
|
|
25856
25857
|
function Bars3BottomLeftIcon({
|
|
25857
25858
|
title,
|
|
25858
25859
|
titleId,
|
|
@@ -25876,7 +25877,7 @@ function Bars3BottomLeftIcon({
|
|
|
25876
25877
|
d: "M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25H12"
|
|
25877
25878
|
}));
|
|
25878
25879
|
}
|
|
25879
|
-
const ForwardRef$
|
|
25880
|
+
const ForwardRef$g = /* @__PURE__ */ React.forwardRef(Bars3BottomLeftIcon);
|
|
25880
25881
|
function BellIcon({
|
|
25881
25882
|
title,
|
|
25882
25883
|
titleId,
|
|
@@ -25900,7 +25901,7 @@ function BellIcon({
|
|
|
25900
25901
|
d: "M14.857 17.082a23.848 23.848 0 0 0 5.454-1.31A8.967 8.967 0 0 1 18 9.75V9A6 6 0 0 0 6 9v.75a8.967 8.967 0 0 1-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.255 24.255 0 0 1-5.714 0m5.714 0a3 3 0 1 1-5.714 0"
|
|
25901
25902
|
}));
|
|
25902
25903
|
}
|
|
25903
|
-
const ForwardRef$
|
|
25904
|
+
const ForwardRef$f = /* @__PURE__ */ React.forwardRef(BellIcon);
|
|
25904
25905
|
function BookOpenIcon({
|
|
25905
25906
|
title,
|
|
25906
25907
|
titleId,
|
|
@@ -25924,7 +25925,7 @@ function BookOpenIcon({
|
|
|
25924
25925
|
d: "M12 6.042A8.967 8.967 0 0 0 6 3.75c-1.052 0-2.062.18-3 .512v14.25A8.987 8.987 0 0 1 6 18c2.305 0 4.408.867 6 2.292m0-14.25a8.966 8.966 0 0 1 6-2.292c1.052 0 2.062.18 3 .512v14.25A8.987 8.987 0 0 0 18 18a8.967 8.967 0 0 0-6 2.292m0-14.25v14.25"
|
|
25925
25926
|
}));
|
|
25926
25927
|
}
|
|
25927
|
-
const ForwardRef$
|
|
25928
|
+
const ForwardRef$e = /* @__PURE__ */ React.forwardRef(BookOpenIcon);
|
|
25928
25929
|
function BuildingLibraryIcon({
|
|
25929
25930
|
title,
|
|
25930
25931
|
titleId,
|
|
@@ -25948,7 +25949,7 @@ function BuildingLibraryIcon({
|
|
|
25948
25949
|
d: "M12 21v-8.25M15.75 21v-8.25M8.25 21v-8.25M3 9l9-6 9 6m-1.5 12V10.332A48.36 48.36 0 0 0 12 9.75c-2.551 0-5.056.2-7.5.582V21M3 21h18M12 6.75h.008v.008H12V6.75Z"
|
|
25949
25950
|
}));
|
|
25950
25951
|
}
|
|
25951
|
-
const ForwardRef$
|
|
25952
|
+
const ForwardRef$d = /* @__PURE__ */ React.forwardRef(BuildingLibraryIcon);
|
|
25952
25953
|
function CalendarIcon$1({
|
|
25953
25954
|
title,
|
|
25954
25955
|
titleId,
|
|
@@ -25972,7 +25973,7 @@ function CalendarIcon$1({
|
|
|
25972
25973
|
d: "M6.75 3v2.25M17.25 3v2.25M3 18.75V7.5a2.25 2.25 0 0 1 2.25-2.25h13.5A2.25 2.25 0 0 1 21 7.5v11.25m-18 0A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75m-18 0v-7.5A2.25 2.25 0 0 1 5.25 9h13.5A2.25 2.25 0 0 1 21 11.25v7.5"
|
|
25973
25974
|
}));
|
|
25974
25975
|
}
|
|
25975
|
-
const ForwardRef$
|
|
25976
|
+
const ForwardRef$c = /* @__PURE__ */ React.forwardRef(CalendarIcon$1);
|
|
25976
25977
|
function ChartBarIcon({
|
|
25977
25978
|
title,
|
|
25978
25979
|
titleId,
|
|
@@ -25996,7 +25997,7 @@ function ChartBarIcon({
|
|
|
25996
25997
|
d: "M3 13.125C3 12.504 3.504 12 4.125 12h2.25c.621 0 1.125.504 1.125 1.125v6.75C7.5 20.496 6.996 21 6.375 21h-2.25A1.125 1.125 0 0 1 3 19.875v-6.75ZM9.75 8.625c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125v11.25c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 0 1-1.125-1.125V8.625ZM16.5 4.125c0-.621.504-1.125 1.125-1.125h2.25C20.496 3 21 3.504 21 4.125v15.75c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 0 1-1.125-1.125V4.125Z"
|
|
25997
25998
|
}));
|
|
25998
25999
|
}
|
|
25999
|
-
const ForwardRef$
|
|
26000
|
+
const ForwardRef$b = /* @__PURE__ */ React.forwardRef(ChartBarIcon);
|
|
26000
26001
|
function ClockIcon({
|
|
26001
26002
|
title,
|
|
26002
26003
|
titleId,
|
|
@@ -26020,7 +26021,7 @@ function ClockIcon({
|
|
|
26020
26021
|
d: "M12 6v6h4.5m4.5 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
|
|
26021
26022
|
}));
|
|
26022
26023
|
}
|
|
26023
|
-
const ForwardRef$
|
|
26024
|
+
const ForwardRef$a = /* @__PURE__ */ React.forwardRef(ClockIcon);
|
|
26024
26025
|
function CogIcon({
|
|
26025
26026
|
title,
|
|
26026
26027
|
titleId,
|
|
@@ -26044,7 +26045,7 @@ function CogIcon({
|
|
|
26044
26045
|
d: "M4.5 12a7.5 7.5 0 0 0 15 0m-15 0a7.5 7.5 0 1 1 15 0m-15 0H3m16.5 0H21m-1.5 0H12m-8.457 3.077 1.41-.513m14.095-5.13 1.41-.513M5.106 17.785l1.15-.964m11.49-9.642 1.149-.964M7.501 19.795l.75-1.3m7.5-12.99.75-1.3m-6.063 16.658.26-1.477m2.605-14.772.26-1.477m0 17.726-.26-1.477M10.698 4.614l-.26-1.477M16.5 19.794l-.75-1.299M7.5 4.205 12 12m6.894 5.785-1.149-.964M6.256 7.178l-1.15-.964m15.352 8.864-1.41-.513M4.954 9.435l-1.41-.514M12.002 12l-3.75 6.495"
|
|
26045
26046
|
}));
|
|
26046
26047
|
}
|
|
26047
|
-
const ForwardRef$
|
|
26048
|
+
const ForwardRef$9 = /* @__PURE__ */ React.forwardRef(CogIcon);
|
|
26048
26049
|
function DocumentCheckIcon({
|
|
26049
26050
|
title,
|
|
26050
26051
|
titleId,
|
|
@@ -26068,7 +26069,7 @@ function DocumentCheckIcon({
|
|
|
26068
26069
|
d: "M10.125 2.25h-4.5c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125v-9M10.125 2.25h.375a9 9 0 0 1 9 9v.375M10.125 2.25A3.375 3.375 0 0 1 13.5 5.625v1.5c0 .621.504 1.125 1.125 1.125h1.5a3.375 3.375 0 0 1 3.375 3.375M9 15l2.25 2.25L15 12"
|
|
26069
26070
|
}));
|
|
26070
26071
|
}
|
|
26071
|
-
const ForwardRef$
|
|
26072
|
+
const ForwardRef$8 = /* @__PURE__ */ React.forwardRef(DocumentCheckIcon);
|
|
26072
26073
|
function DocumentTextIcon$1({
|
|
26073
26074
|
title,
|
|
26074
26075
|
titleId,
|
|
@@ -26092,7 +26093,7 @@ function DocumentTextIcon$1({
|
|
|
26092
26093
|
d: "M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m0 12.75h7.5m-7.5 3H12M10.5 2.25H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"
|
|
26093
26094
|
}));
|
|
26094
26095
|
}
|
|
26095
|
-
const ForwardRef$
|
|
26096
|
+
const ForwardRef$7 = /* @__PURE__ */ React.forwardRef(DocumentTextIcon$1);
|
|
26096
26097
|
function LifebuoyIcon({
|
|
26097
26098
|
title,
|
|
26098
26099
|
titleId,
|
|
@@ -26116,7 +26117,7 @@ function LifebuoyIcon({
|
|
|
26116
26117
|
d: "M16.712 4.33a9.027 9.027 0 0 1 1.652 1.306c.51.51.944 1.064 1.306 1.652M16.712 4.33l-3.448 4.138m3.448-4.138a9.014 9.014 0 0 0-9.424 0M19.67 7.288l-4.138 3.448m4.138-3.448a9.014 9.014 0 0 1 0 9.424m-4.138-5.976a3.736 3.736 0 0 0-.88-1.388 3.737 3.737 0 0 0-1.388-.88m2.268 2.268a3.765 3.765 0 0 1 0 2.528m-2.268-4.796a3.765 3.765 0 0 0-2.528 0m4.796 4.796c-.181.506-.475.982-.88 1.388a3.736 3.736 0 0 1-1.388.88m2.268-2.268 4.138 3.448m0 0a9.027 9.027 0 0 1-1.306 1.652c-.51.51-1.064.944-1.652 1.306m0 0-3.448-4.138m3.448 4.138a9.014 9.014 0 0 1-9.424 0m5.976-4.138a3.765 3.765 0 0 1-2.528 0m0 0a3.736 3.736 0 0 1-1.388-.88 3.737 3.737 0 0 1-.88-1.388m2.268 2.268L7.288 19.67m0 0a9.024 9.024 0 0 1-1.652-1.306 9.027 9.027 0 0 1-1.306-1.652m0 0 4.138-3.448M4.33 16.712a9.014 9.014 0 0 1 0-9.424m4.138 5.976a3.765 3.765 0 0 1 0-2.528m0 0c.181-.506.475-.982.88-1.388a3.736 3.736 0 0 1 1.388-.88m-2.268 2.268L4.33 7.288m6.406 1.18L7.288 4.33m0 0a9.024 9.024 0 0 0-1.652 1.306A9.025 9.025 0 0 0 4.33 7.288"
|
|
26117
26118
|
}));
|
|
26118
26119
|
}
|
|
26119
|
-
const ForwardRef$
|
|
26120
|
+
const ForwardRef$6 = /* @__PURE__ */ React.forwardRef(LifebuoyIcon);
|
|
26120
26121
|
function LockClosedIcon({
|
|
26121
26122
|
title,
|
|
26122
26123
|
titleId,
|
|
@@ -26140,7 +26141,7 @@ function LockClosedIcon({
|
|
|
26140
26141
|
d: "M16.5 10.5V6.75a4.5 4.5 0 1 0-9 0v3.75m-.75 11.25h10.5a2.25 2.25 0 0 0 2.25-2.25v-6.75a2.25 2.25 0 0 0-2.25-2.25H6.75a2.25 2.25 0 0 0-2.25 2.25v6.75a2.25 2.25 0 0 0 2.25 2.25Z"
|
|
26141
26142
|
}));
|
|
26142
26143
|
}
|
|
26143
|
-
const ForwardRef$
|
|
26144
|
+
const ForwardRef$5 = /* @__PURE__ */ React.forwardRef(LockClosedIcon);
|
|
26144
26145
|
function MegaphoneIcon({
|
|
26145
26146
|
title,
|
|
26146
26147
|
titleId,
|
|
@@ -26164,7 +26165,7 @@ function MegaphoneIcon({
|
|
|
26164
26165
|
d: "M10.34 15.84c-.688-.06-1.386-.09-2.09-.09H7.5a4.5 4.5 0 1 1 0-9h.75c.704 0 1.402-.03 2.09-.09m0 9.18c.253.962.584 1.892.985 2.783.247.55.06 1.21-.463 1.511l-.657.38c-.551.318-1.26.117-1.527-.461a20.845 20.845 0 0 1-1.44-4.282m3.102.069a18.03 18.03 0 0 1-.59-4.59c0-1.586.205-3.124.59-4.59m0 9.18a23.848 23.848 0 0 1 8.835 2.535M10.34 6.66a23.847 23.847 0 0 0 8.835-2.535m0 0A23.74 23.74 0 0 0 18.795 3m.38 1.125a23.91 23.91 0 0 1 1.014 5.395m-1.014 8.855c-.118.38-.245.754-.38 1.125m.38-1.125a23.91 23.91 0 0 0 1.014-5.395m0-3.46c.495.413.811 1.035.811 1.73 0 .695-.316 1.317-.811 1.73m0-3.46a24.347 24.347 0 0 1 0 3.46"
|
|
26165
26166
|
}));
|
|
26166
26167
|
}
|
|
26167
|
-
const ForwardRef$
|
|
26168
|
+
const ForwardRef$4 = /* @__PURE__ */ React.forwardRef(MegaphoneIcon);
|
|
26168
26169
|
function WalletIcon({
|
|
26169
26170
|
title,
|
|
26170
26171
|
titleId,
|
|
@@ -26188,7 +26189,7 @@ function WalletIcon({
|
|
|
26188
26189
|
d: "M21 12a2.25 2.25 0 0 0-2.25-2.25H15a3 3 0 1 1-6 0H5.25A2.25 2.25 0 0 0 3 12m18 0v6a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 18v-6m18 0V9M3 12V9m18 0a2.25 2.25 0 0 0-2.25-2.25H5.25A2.25 2.25 0 0 0 3 9m18 0V6a2.25 2.25 0 0 0-2.25-2.25H5.25A2.25 2.25 0 0 0 3 6v3"
|
|
26189
26190
|
}));
|
|
26190
26191
|
}
|
|
26191
|
-
const ForwardRef$
|
|
26192
|
+
const ForwardRef$3 = /* @__PURE__ */ React.forwardRef(WalletIcon);
|
|
26192
26193
|
function XCircleIcon({
|
|
26193
26194
|
title,
|
|
26194
26195
|
titleId,
|
|
@@ -26212,7 +26213,7 @@ function XCircleIcon({
|
|
|
26212
26213
|
d: "m9.75 9.75 4.5 4.5m0-4.5-4.5 4.5M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
|
|
26213
26214
|
}));
|
|
26214
26215
|
}
|
|
26215
|
-
const ForwardRef$
|
|
26216
|
+
const ForwardRef$2 = /* @__PURE__ */ React.forwardRef(XCircleIcon);
|
|
26216
26217
|
function XMarkIcon({
|
|
26217
26218
|
title,
|
|
26218
26219
|
titleId,
|
|
@@ -26236,7 +26237,7 @@ function XMarkIcon({
|
|
|
26236
26237
|
d: "M6 18 18 6M6 6l12 12"
|
|
26237
26238
|
}));
|
|
26238
26239
|
}
|
|
26239
|
-
const ForwardRef = /* @__PURE__ */ React.forwardRef(XMarkIcon);
|
|
26240
|
+
const ForwardRef$1 = /* @__PURE__ */ React.forwardRef(XMarkIcon);
|
|
26240
26241
|
const Select = React__default.memo(
|
|
26241
26242
|
(props) => {
|
|
26242
26243
|
const {
|
|
@@ -26341,7 +26342,7 @@ const Select = React__default.memo(
|
|
|
26341
26342
|
const IndicatorsContainer3 = React__default.useCallback(
|
|
26342
26343
|
(props2) => {
|
|
26343
26344
|
return /* @__PURE__ */ jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, { children: [
|
|
26344
|
-
onClear && /* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: "w-6 h-6", onClick: handleClear, children: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$
|
|
26345
|
+
onClear && /* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: "w-6 h-6", onClick: handleClear, children: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$2, { className: "w-6 h-6", onClick: handleClear }) }),
|
|
26345
26346
|
/* @__PURE__ */ jsxRuntimeExports.jsx(components.IndicatorsContainer, { ...props2 })
|
|
26346
26347
|
] });
|
|
26347
26348
|
},
|
|
@@ -26500,7 +26501,7 @@ Select.defaultProps = {
|
|
|
26500
26501
|
const defaultString = "";
|
|
26501
26502
|
const IndicatorSeparator2 = () => null;
|
|
26502
26503
|
const DropdownIndicator2 = (props) => {
|
|
26503
|
-
return /* @__PURE__ */ jsxRuntimeExports.jsx(components.DropdownIndicator, { ...props, children: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$
|
|
26504
|
+
return /* @__PURE__ */ jsxRuntimeExports.jsx(components.DropdownIndicator, { ...props, children: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$a, { className: "w-6 h-6" }) });
|
|
26504
26505
|
};
|
|
26505
26506
|
const Switch = ({
|
|
26506
26507
|
children,
|
|
@@ -39443,7 +39444,7 @@ const Datepicker = React__default.memo((props) => {
|
|
|
39443
39444
|
handleCalendarClose();
|
|
39444
39445
|
};
|
|
39445
39446
|
return /* @__PURE__ */ jsxRuntimeExports.jsxs(StyledHeader, { children: [
|
|
39446
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx("button", { onClick: decreaseMonth, disabled: prevMonthButtonDisabled, children: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$
|
|
39447
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx("button", { onClick: decreaseMonth, disabled: prevMonthButtonDisabled, children: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$j, { className: "w-6 h-6" }) }),
|
|
39447
39448
|
isSelectable ? /* @__PURE__ */ jsxRuntimeExports.jsx(jsxRuntimeExports.Fragment, { children: /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "flex align-center", children: [
|
|
39448
39449
|
/* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: classes$i.date, children: capitalize$1(monthName) }),
|
|
39449
39450
|
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
@@ -39465,7 +39466,7 @@ const Datepicker = React__default.memo((props) => {
|
|
|
39465
39466
|
" ",
|
|
39466
39467
|
date == null ? void 0 : date.getFullYear()
|
|
39467
39468
|
] }) }) }),
|
|
39468
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx("button", { onClick: increaseMonth, disabled: nextMonthButtonDisabled, children: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$
|
|
39469
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx("button", { onClick: increaseMonth, disabled: nextMonthButtonDisabled, children: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$i, { height: 6, width: 6 }) })
|
|
39469
39470
|
] });
|
|
39470
39471
|
},
|
|
39471
39472
|
[handleChange, isSelectable, year]
|
|
@@ -39493,7 +39494,7 @@ const Datepicker = React__default.memo((props) => {
|
|
|
39493
39494
|
ref: calendar2.current,
|
|
39494
39495
|
disabled: props == null ? void 0 : props.disabled,
|
|
39495
39496
|
onClick: open ? handleCalendarClose : handleCalendarOpen,
|
|
39496
|
-
children: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$
|
|
39497
|
+
children: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$c, { className: "w-6 h-6" })
|
|
39497
39498
|
}
|
|
39498
39499
|
),
|
|
39499
39500
|
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
@@ -39531,7 +39532,7 @@ const Datepicker = React__default.memo((props) => {
|
|
|
39531
39532
|
ref: calendar2.current,
|
|
39532
39533
|
disabled: props == null ? void 0 : props.disabled,
|
|
39533
39534
|
onClick: open ? handleCalendarClose : handleCalendarOpen,
|
|
39534
|
-
children: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$
|
|
39535
|
+
children: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$c, { className: "w-6 h-6" })
|
|
39535
39536
|
}
|
|
39536
39537
|
),
|
|
39537
39538
|
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
@@ -40021,7 +40022,7 @@ const Input$1 = React__default.memo(
|
|
|
40021
40022
|
autoComplete: "off"
|
|
40022
40023
|
}
|
|
40023
40024
|
),
|
|
40024
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(StyledIconEdit, { className: classes$f.flow, onClick: handleClickEdit, children: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef, { className: "w-5 h-5 text-info hover:cursor-pointer hover:text-primary" }) })
|
|
40025
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(StyledIconEdit, { className: classes$f.flow, onClick: handleClickEdit, children: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$1, { className: "w-5 h-5 text-info hover:cursor-pointer hover:text-primary" }) })
|
|
40025
40026
|
] });
|
|
40026
40027
|
}
|
|
40027
40028
|
if (AddOn) {
|
|
@@ -40904,7 +40905,7 @@ const Collapse = React__default.memo(
|
|
|
40904
40905
|
open ? classes$b.icon.root : classes$b.icon.container
|
|
40905
40906
|
),
|
|
40906
40907
|
children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
40907
|
-
ForwardRef$
|
|
40908
|
+
ForwardRef$p,
|
|
40908
40909
|
{
|
|
40909
40910
|
className: clsx$1(
|
|
40910
40911
|
classes$b.icon.size,
|
|
@@ -40943,7 +40944,7 @@ const Collapse = React__default.memo(
|
|
|
40943
40944
|
open ? classes$b.icon.root : classes$b.icon.container
|
|
40944
40945
|
),
|
|
40945
40946
|
children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
40946
|
-
ForwardRef$
|
|
40947
|
+
ForwardRef$p,
|
|
40947
40948
|
{
|
|
40948
40949
|
className: clsx$1(
|
|
40949
40950
|
classes$b.icon.size,
|
|
@@ -40975,7 +40976,7 @@ const Collapse = React__default.memo(
|
|
|
40975
40976
|
open ? classes$b.icon.root : classes$b.icon.container
|
|
40976
40977
|
),
|
|
40977
40978
|
children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
40978
|
-
ForwardRef$
|
|
40979
|
+
ForwardRef$p,
|
|
40979
40980
|
{
|
|
40980
40981
|
className: clsx$1(
|
|
40981
40982
|
classes$b.icon.size,
|
|
@@ -41458,7 +41459,7 @@ const Footer = React__default.memo(() => {
|
|
|
41458
41459
|
className: "mobile-btn m-auto w-full justify-center",
|
|
41459
41460
|
onClick: () => handleHelp(),
|
|
41460
41461
|
children: [
|
|
41461
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$
|
|
41462
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$6, { className: "w-6 h-6" }),
|
|
41462
41463
|
/* @__PURE__ */ jsxRuntimeExports.jsx("span", { children: "Mesa de Ayuda" })
|
|
41463
41464
|
]
|
|
41464
41465
|
}
|
|
@@ -41510,7 +41511,7 @@ const Footer = React__default.memo(() => {
|
|
|
41510
41511
|
className: "desktop-btn",
|
|
41511
41512
|
onClick: handleHelp,
|
|
41512
41513
|
children: [
|
|
41513
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$
|
|
41514
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$6, { className: "w-6 h-6" }),
|
|
41514
41515
|
/* @__PURE__ */ jsxRuntimeExports.jsx("span", { children: "Mesa de Ayuda" })
|
|
41515
41516
|
]
|
|
41516
41517
|
}
|
|
@@ -41699,7 +41700,7 @@ const Sidebar = React__default.memo(
|
|
|
41699
41700
|
{
|
|
41700
41701
|
path: environment == null ? void 0 : environment.SSO_SIGN,
|
|
41701
41702
|
title: "Gestor Documental",
|
|
41702
|
-
icon: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$
|
|
41703
|
+
icon: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$7, { className: "h-6 w-6" }),
|
|
41703
41704
|
rules: {
|
|
41704
41705
|
passport: true,
|
|
41705
41706
|
systems: [System.SIGN]
|
|
@@ -41708,19 +41709,19 @@ const Sidebar = React__default.memo(
|
|
|
41708
41709
|
{
|
|
41709
41710
|
path: environment == null ? void 0 : environment.SSO_URL,
|
|
41710
41711
|
title: "Sucursal Virtual",
|
|
41711
|
-
icon: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$
|
|
41712
|
+
icon: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$d, { className: "h-6 w-6" })
|
|
41712
41713
|
}
|
|
41713
41714
|
];
|
|
41714
41715
|
const defaultOptions2 = options2 ?? [
|
|
41715
41716
|
{
|
|
41716
41717
|
path: "/dashboard",
|
|
41717
41718
|
title: "Dashboard",
|
|
41718
|
-
icon: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$
|
|
41719
|
+
icon: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$b, { className: "h-6 w-6" })
|
|
41719
41720
|
},
|
|
41720
41721
|
{
|
|
41721
41722
|
path: "/inscriptions/course/content",
|
|
41722
41723
|
title: "Contenido del Curso",
|
|
41723
|
-
icon: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$
|
|
41724
|
+
icon: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$e, { className: "h-6 w-6" }),
|
|
41724
41725
|
rules: {
|
|
41725
41726
|
system: System.OPTIMUS,
|
|
41726
41727
|
allow: [IN_Permission.CAN_VIEW_COURSE_CONTENT]
|
|
@@ -41729,7 +41730,7 @@ const Sidebar = React__default.memo(
|
|
|
41729
41730
|
{
|
|
41730
41731
|
path: "/inscriptions",
|
|
41731
41732
|
title: "Inscripciones",
|
|
41732
|
-
icon: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$
|
|
41733
|
+
icon: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$8, { className: "h-6 w-6" }),
|
|
41733
41734
|
rules: {
|
|
41734
41735
|
system: System.OPTIMUS,
|
|
41735
41736
|
allow: [IN_Permission.CAN_CREATE_INSCRIPTION]
|
|
@@ -41742,7 +41743,7 @@ const Sidebar = React__default.memo(
|
|
|
41742
41743
|
{
|
|
41743
41744
|
path: "/communications",
|
|
41744
41745
|
title: "Comunicación",
|
|
41745
|
-
icon: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$
|
|
41746
|
+
icon: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$4, { className: "h-6 w-6" }),
|
|
41746
41747
|
rules: {
|
|
41747
41748
|
system: System.OPTIMUS,
|
|
41748
41749
|
allow: [IN_Permission.CAN_GENERATE_SENCE_COMMUNICATION]
|
|
@@ -41752,7 +41753,7 @@ const Sidebar = React__default.memo(
|
|
|
41752
41753
|
{
|
|
41753
41754
|
path: "/communications/liquidations",
|
|
41754
41755
|
title: "Liquidación",
|
|
41755
|
-
icon: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$
|
|
41756
|
+
icon: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$3, { className: "h-6 w-6" }),
|
|
41756
41757
|
rules: {
|
|
41757
41758
|
system: System.OPTIMUS,
|
|
41758
41759
|
allow: [IN_Permission.CAN_GENERATE_SENCE_LIQUIDATION]
|
|
@@ -41776,7 +41777,7 @@ const Sidebar = React__default.memo(
|
|
|
41776
41777
|
"data-testid": "tw-sidebar-icon",
|
|
41777
41778
|
fullWidth: true,
|
|
41778
41779
|
children: /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: classes$8.list.wrap, children: [
|
|
41779
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: classes$8.menu.icon, children: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$
|
|
41780
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: classes$8.menu.icon, children: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$g, {}) }),
|
|
41780
41781
|
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
41781
41782
|
"span",
|
|
41782
41783
|
{
|
|
@@ -41965,14 +41966,14 @@ const Navbar = ({
|
|
|
41965
41966
|
] }) }),
|
|
41966
41967
|
/* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: classes$7.displayright, children: /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: classes$7.menu.root, children: [
|
|
41967
41968
|
/* @__PURE__ */ jsxRuntimeExports.jsx("button", { className: classes$7.menu.button, type: "button", children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
41968
|
-
ForwardRef$
|
|
41969
|
+
ForwardRef$f,
|
|
41969
41970
|
{
|
|
41970
41971
|
"aria-hidden": "true",
|
|
41971
41972
|
className: classes$7.menu.headless
|
|
41972
41973
|
}
|
|
41973
41974
|
) }),
|
|
41974
41975
|
/* @__PURE__ */ jsxRuntimeExports.jsx("button", { className: classes$7.menu.button, type: "button", children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
41975
|
-
ForwardRef$
|
|
41976
|
+
ForwardRef$f,
|
|
41976
41977
|
{
|
|
41977
41978
|
"aria-hidden": "true",
|
|
41978
41979
|
className: classes$7.menu.headless
|
|
@@ -41988,7 +41989,7 @@ const Navbar = ({
|
|
|
41988
41989
|
type: "button",
|
|
41989
41990
|
onClick: handleClickSettings,
|
|
41990
41991
|
children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
41991
|
-
ForwardRef$
|
|
41992
|
+
ForwardRef$9,
|
|
41992
41993
|
{
|
|
41993
41994
|
"aria-hidden": "true",
|
|
41994
41995
|
className: classes$7.menu.headless
|
|
@@ -42062,8 +42063,8 @@ const NavbarDropdown = ({ previousPath }) => {
|
|
|
42062
42063
|
}
|
|
42063
42064
|
),
|
|
42064
42065
|
previousPath && /* @__PURE__ */ jsxRuntimeExports.jsx(BackButton, { onClick: handleBackClick, children: /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { children: [
|
|
42065
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$
|
|
42066
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$
|
|
42066
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$k, { className: "arrow-1" }),
|
|
42067
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$k, { className: "arrow-2" })
|
|
42067
42068
|
] }) }),
|
|
42068
42069
|
/* @__PURE__ */ jsxRuntimeExports.jsxs(UserContainer, { children: [
|
|
42069
42070
|
/* @__PURE__ */ jsxRuntimeExports.jsxs(NameDiv, { children: [
|
|
@@ -42082,12 +42083,12 @@ const NavbarDropdown = ({ previousPath }) => {
|
|
|
42082
42083
|
),
|
|
42083
42084
|
isOpen && /* @__PURE__ */ jsxRuntimeExports.jsxs(UserDropdown, { ref: desktopDropdownRef, children: [
|
|
42084
42085
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("button", { onClick: handleChangePassword, children: [
|
|
42085
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$
|
|
42086
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$5, {}),
|
|
42086
42087
|
" Cambiar contraseña"
|
|
42087
42088
|
] }),
|
|
42088
42089
|
/* @__PURE__ */ jsxRuntimeExports.jsx("span", {}),
|
|
42089
42090
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("button", { onClick: handleLogout, children: [
|
|
42090
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$
|
|
42091
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$h, {}),
|
|
42091
42092
|
" Cerrar Sesión"
|
|
42092
42093
|
] })
|
|
42093
42094
|
] })
|
|
@@ -42110,12 +42111,12 @@ const NavbarDropdown = ({ previousPath }) => {
|
|
|
42110
42111
|
),
|
|
42111
42112
|
isOpen && /* @__PURE__ */ jsxRuntimeExports.jsxs(UserDropdown, { ref: mobileDropdownRef, children: [
|
|
42112
42113
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("button", { onClick: handleChangePassword, children: [
|
|
42113
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$
|
|
42114
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$5, {}),
|
|
42114
42115
|
" Cambiar contraseña"
|
|
42115
42116
|
] }),
|
|
42116
42117
|
/* @__PURE__ */ jsxRuntimeExports.jsx("span", {}),
|
|
42117
42118
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("button", { onClick: handleLogout, children: [
|
|
42118
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$
|
|
42119
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef$h, {}),
|
|
42119
42120
|
" Cerrar Sesión"
|
|
42120
42121
|
] })
|
|
42121
42122
|
] })
|
|
@@ -42683,6 +42684,28 @@ const HeaderContainer = styled.div`
|
|
|
42683
42684
|
cursor: pointer;
|
|
42684
42685
|
`}
|
|
42685
42686
|
`;
|
|
42687
|
+
function ChevronDownIcon({
|
|
42688
|
+
title,
|
|
42689
|
+
titleId,
|
|
42690
|
+
...props
|
|
42691
|
+
}, svgRef) {
|
|
42692
|
+
return /* @__PURE__ */ React.createElement("svg", Object.assign({
|
|
42693
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
42694
|
+
viewBox: "0 0 24 24",
|
|
42695
|
+
fill: "currentColor",
|
|
42696
|
+
"aria-hidden": "true",
|
|
42697
|
+
"data-slot": "icon",
|
|
42698
|
+
ref: svgRef,
|
|
42699
|
+
"aria-labelledby": titleId
|
|
42700
|
+
}, props), title ? /* @__PURE__ */ React.createElement("title", {
|
|
42701
|
+
id: titleId
|
|
42702
|
+
}, title) : null, /* @__PURE__ */ React.createElement("path", {
|
|
42703
|
+
fillRule: "evenodd",
|
|
42704
|
+
d: "M12.53 16.28a.75.75 0 0 1-1.06 0l-7.5-7.5a.75.75 0 0 1 1.06-1.06L12 14.69l6.97-6.97a.75.75 0 1 1 1.06 1.06l-7.5 7.5Z",
|
|
42705
|
+
clipRule: "evenodd"
|
|
42706
|
+
}));
|
|
42707
|
+
}
|
|
42708
|
+
const ForwardRef = /* @__PURE__ */ React.forwardRef(ChevronDownIcon);
|
|
42686
42709
|
const SortIcon = () => /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
42687
42710
|
"svg",
|
|
42688
42711
|
{
|
|
@@ -43069,7 +43092,19 @@ const Status = ({
|
|
|
43069
43092
|
children && children
|
|
43070
43093
|
] }),
|
|
43071
43094
|
/* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: "w-3/5 flex justify-center", children: /* @__PURE__ */ jsxRuntimeExports.jsx(StatusColor, { color: color2, className: classes$5.kind }) }),
|
|
43072
|
-
|
|
43095
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: "w-auto flex justify-end", children: onClick && value === "Borrador" ? /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
43096
|
+
Button,
|
|
43097
|
+
{
|
|
43098
|
+
size: "base",
|
|
43099
|
+
disabled,
|
|
43100
|
+
variant: variant ?? "secondary",
|
|
43101
|
+
orientationIcon: "right",
|
|
43102
|
+
Icon: /* @__PURE__ */ jsxRuntimeExports.jsx(ForwardRef, { className: "h-5 w-5" }),
|
|
43103
|
+
onClick: handleClickDetail,
|
|
43104
|
+
fontSize: "sm",
|
|
43105
|
+
children: /* @__PURE__ */ jsxRuntimeExports.jsx("span", { about: "details", children: "Gestionar" })
|
|
43106
|
+
}
|
|
43107
|
+
) : onClick ? /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
43073
43108
|
Button,
|
|
43074
43109
|
{
|
|
43075
43110
|
size: "base",
|
|
@@ -43079,7 +43114,7 @@ const Status = ({
|
|
|
43079
43114
|
fontSize: "sm",
|
|
43080
43115
|
children: /* @__PURE__ */ jsxRuntimeExports.jsx("span", { about: "details", children: text })
|
|
43081
43116
|
}
|
|
43082
|
-
) })
|
|
43117
|
+
) : null })
|
|
43083
43118
|
] });
|
|
43084
43119
|
};
|
|
43085
43120
|
Status.defaultProps = {
|
|
@@ -43397,7 +43432,7 @@ const Search = React__default.memo(
|
|
|
43397
43432
|
),
|
|
43398
43433
|
IndicatorsContainer: (props) => /* @__PURE__ */ jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, { children: [
|
|
43399
43434
|
onClearInput && /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
43400
|
-
ForwardRef$
|
|
43435
|
+
ForwardRef$2,
|
|
43401
43436
|
{
|
|
43402
43437
|
className: classes$4.icon.xcircle,
|
|
43403
43438
|
onClick: onClearInput
|
|
@@ -59384,7 +59419,7 @@ const Menu2 = (props) => {
|
|
|
59384
59419
|
}
|
|
59385
59420
|
),
|
|
59386
59421
|
/* @__PURE__ */ jsxRuntimeExports.jsx("div", { onClick: handleSeeDetails, children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
59387
|
-
ForwardRef$
|
|
59422
|
+
ForwardRef$p,
|
|
59388
59423
|
{
|
|
59389
59424
|
className: clsx$1(
|
|
59390
59425
|
show ? classes$1.open : classes$1.close,
|
|
@@ -59575,7 +59610,7 @@ const Timeline = ({ events }) => {
|
|
|
59575
59610
|
/* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: classes.timeline.button.category, children: event.category })
|
|
59576
59611
|
] }),
|
|
59577
59612
|
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
59578
|
-
ForwardRef$
|
|
59613
|
+
ForwardRef$p,
|
|
59579
59614
|
{
|
|
59580
59615
|
className: classes.chevronIcon(isCurrentCategoryOpen)
|
|
59581
59616
|
}
|