bmi-next 1.0.68 → 1.0.70
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/assets/index2.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.
|
|
1
|
+
._stepsContainer_1ftfq_1{display:flex;flex-direction:column;align-items:center}._stepWrapper_1ftfq_7{display:flex;justify-content:center;align-items:center;width:100%}._step_1ftfq_1{flex:1;min-width:0;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:4px}._iconLine_1ftfq_24{display:flex;justify-content:center;align-items:center;width:100%;gap:4px}._stepSeparator_1ftfq_32{flex:1;height:4px;background:#2054a5}._stepSeparatorPending_1ftfq_37{opacity:.3;background:#2054a5}._textWrapper_1ftfq_42{display:flex;flex-direction:column;justify-content:center;align-items:center;padding-right:4px;width:100%;box-sizing:border-box;transition:all .3s ease}._stepTitle_1ftfq_53,._stepState_1ftfq_54{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%;font-family:Poppins Regular}._start_1ftfq_62{text-align:start}._middle_1ftfq_66{text-align:center}._end_1ftfq_70{text-align:end}._stepTitle_1ftfq_53{color:#000;font-size:16px;line-height:19.2px}._stepTitle_1ftfq_53._stepInProgress_1ftfq_80{font-family:Poppins Medium}._stepState_1ftfq_54{color:#000;font-size:13px;line-height:15.6px}._stepTitle_1ftfq_53._stepPending_1ftfq_90{color:#cbd5e1}._stepState_1ftfq_54._stepPending_1ftfq_90{color:#e2e8f0}._stepState_1ftfq_54._stepCompleted_1ftfq_98{color:#65a30d}._stepState_1ftfq_54._stepInProgress_1ftfq_80,._stepState_1ftfq_54._stepBlocked_1ftfq_103{color:#2054a5}._iconDiv_1ftfq_107{display:flex;justify-content:center;align-items:center;flex-shrink:0;aspect-ratio:1/1}._iconDiv_1ftfq_107 svg{width:30px;height:30px}@media (max-width: 697px){._textWrapper_1ftfq_42{display:none}}@media (max-width: 1280px){._iconDiv_1ftfq_107 svg{width:22px;height:22px}}@media (max-width: 1280px){._stepSeparator_1ftfq_32{height:2px}._stepTitle_1ftfq_53{font-size:12px;line-height:14.4px}._stepState_1ftfq_54{font-size:11px;line-height:13.2px}}
|
|
@@ -5,10 +5,12 @@ import { default as React } from 'react';
|
|
|
5
5
|
export interface Step {
|
|
6
6
|
title: string;
|
|
7
7
|
stateText?: string;
|
|
8
|
+
disabled?: boolean;
|
|
8
9
|
}
|
|
9
10
|
interface StepperProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
10
11
|
steps: Step[];
|
|
11
12
|
currentStep: number;
|
|
13
|
+
english?: boolean;
|
|
12
14
|
}
|
|
13
15
|
/**
|
|
14
16
|
* Componente Stepper
|
|
@@ -23,25 +25,26 @@ interface StepperProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
23
25
|
* Props:
|
|
24
26
|
* @param steps Lista de pasos a mostrar. Cada paso debe tener:
|
|
25
27
|
* - `title` texto principal del paso.
|
|
26
|
-
* - `stateText
|
|
28
|
+
* - `stateText` texto del estado, si no se pasa se usa uno por defecto:
|
|
27
29
|
* "Pendiente", "En Proceso" o "Completado".
|
|
30
|
+
* - `disabled` opcional, indica si el paso está deshabilitado.
|
|
31
|
+
* - `english` opcional, indica si el texto del estado está en inglés o no. Por defecto false.
|
|
28
32
|
* @param currentStep Número del paso actual (1-indexado). El icono y los separadores se ajustan según este valor.
|
|
29
33
|
*
|
|
30
34
|
* Ejemplo de uso:
|
|
31
35
|
*
|
|
32
|
-
*
|
|
36
|
+
* ```tsx
|
|
33
37
|
* const steps: Step[] = [
|
|
34
38
|
* { title: "Tus datos", stateText: "Texto personalizado estado" },
|
|
35
39
|
* { title: "Datos cónyuge" },
|
|
36
|
-
* { title: "Confirmar Datos" },
|
|
40
|
+
* { title: "Confirmar Datos", disabled: true },
|
|
37
41
|
* { title: "Finalizar Proceso" },
|
|
38
42
|
* ];
|
|
39
43
|
*
|
|
40
44
|
* const [currentStep, setCurrentStep] = useState(1);
|
|
41
45
|
*
|
|
42
|
-
* <Stepper steps={steps} currentStep={currentStep} />
|
|
46
|
+
* <Stepper steps={steps} currentStep={currentStep} english={true} />
|
|
43
47
|
* ```
|
|
44
|
-
*
|
|
45
48
|
*/
|
|
46
49
|
export declare const Stepper: React.FC<StepperProps>;
|
|
47
50
|
export {};
|
|
@@ -1,52 +1,67 @@
|
|
|
1
|
-
import { jsx as
|
|
1
|
+
import { jsx as r, jsxs as c } from "react/jsx-runtime";
|
|
2
2
|
import "../../index-BDcINW1T.js";
|
|
3
|
-
import { Icon as
|
|
3
|
+
import { Icon as l } from "../../icons/icons.js";
|
|
4
4
|
import "react";
|
|
5
|
-
import '../../assets/index2.css';const m = "
|
|
5
|
+
import '../../assets/index2.css';const m = "_stepsContainer_1ftfq_1", g = "_stepWrapper_1ftfq_7", P = "_step_1ftfq_1", q = "_iconLine_1ftfq_24", C = "_stepSeparator_1ftfq_32", N = "_stepSeparatorPending_1ftfq_37", v = "_textWrapper_1ftfq_42", S = "_stepTitle_1ftfq_53", $ = "_stepState_1ftfq_54", h = "_start_1ftfq_62", u = "_middle_1ftfq_66", T = "_end_1ftfq_70", W = "_stepInProgress_1ftfq_80", B = "_stepPending_1ftfq_90", D = "_stepCompleted_1ftfq_98", b = "_stepBlocked_1ftfq_103", k = "_iconDiv_1ftfq_107", s = {
|
|
6
6
|
stepsContainer: m,
|
|
7
|
-
stepWrapper:
|
|
8
|
-
step:
|
|
9
|
-
iconLine:
|
|
10
|
-
stepSeparator:
|
|
11
|
-
stepSeparatorPending:
|
|
12
|
-
textWrapper:
|
|
13
|
-
stepTitle:
|
|
14
|
-
stepState:
|
|
15
|
-
start:
|
|
16
|
-
middle:
|
|
17
|
-
end:
|
|
18
|
-
stepInProgress:
|
|
19
|
-
stepPending:
|
|
20
|
-
stepCompleted:
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
7
|
+
stepWrapper: g,
|
|
8
|
+
step: P,
|
|
9
|
+
iconLine: q,
|
|
10
|
+
stepSeparator: C,
|
|
11
|
+
stepSeparatorPending: N,
|
|
12
|
+
textWrapper: v,
|
|
13
|
+
stepTitle: S,
|
|
14
|
+
stepState: $,
|
|
15
|
+
start: h,
|
|
16
|
+
middle: u,
|
|
17
|
+
end: T,
|
|
18
|
+
stepInProgress: W,
|
|
19
|
+
stepPending: B,
|
|
20
|
+
stepCompleted: D,
|
|
21
|
+
stepBlocked: b,
|
|
22
|
+
iconDiv: k
|
|
23
|
+
}, I = (t, e, o) => o && t + 1 < e ? "StepBlocked" : t + 1 < e ? "StepDone" : t + 1 === e ? "StepInProgress" : "StepPending", L = (t, e, o) => o && t + 1 < e ? s.stepBlocked : t + 1 < e ? s.stepCompleted : t + 1 === e ? s.stepInProgress : s.stepPending, j = (t, e, o, p, n) => p && t + 1 < e ? n ? "N/A" : "No aplica" : e > o || t + 1 < e ? n ? "Completed" : "Completado" : t + 1 === e ? n ? "In progress" : "En Proceso" : n ? "Pending" : "Pendiente", y = (t, e) => t === 0 ? "start" : t === e - 1 ? "end" : "middle", F = ({
|
|
24
|
+
steps: t,
|
|
25
|
+
currentStep: e,
|
|
26
|
+
english: o = !1,
|
|
27
|
+
...p
|
|
28
|
+
}) => t != null && t.length ? /* @__PURE__ */ r("div", { className: s.stepsContainer, ...p, children: /* @__PURE__ */ r("div", { className: s.stepWrapper, children: t.map((n, a) => {
|
|
29
|
+
const d = I(a, e, n.disabled), i = y(a, t.length), _ = L(a, e, n.disabled), f = n.stateText ? n.stateText : j(
|
|
30
|
+
a,
|
|
31
|
+
e,
|
|
32
|
+
t.length,
|
|
33
|
+
n.disabled,
|
|
34
|
+
o
|
|
35
|
+
);
|
|
36
|
+
return /* @__PURE__ */ c(
|
|
37
|
+
"div",
|
|
38
|
+
{
|
|
39
|
+
className: `${s.step} ${s[i]} ${n.disabled ? s.stepDisabled : ""}`,
|
|
40
|
+
children: [
|
|
41
|
+
/* @__PURE__ */ c("div", { className: s.iconLine, children: [
|
|
42
|
+
i !== "start" && /* @__PURE__ */ r(
|
|
43
|
+
"div",
|
|
44
|
+
{
|
|
45
|
+
className: `${s.stepSeparator} ${e - 1 >= a ? "" : s.stepSeparatorPending}`
|
|
46
|
+
}
|
|
47
|
+
),
|
|
48
|
+
/* @__PURE__ */ r("div", { className: s.iconDiv, children: /* @__PURE__ */ r(l, { name: d }) }),
|
|
49
|
+
i !== "end" && /* @__PURE__ */ r(
|
|
50
|
+
"div",
|
|
51
|
+
{
|
|
52
|
+
className: `${s.stepSeparator} ${e - 1 > a ? "" : s.stepSeparatorPending}`
|
|
53
|
+
}
|
|
54
|
+
)
|
|
55
|
+
] }),
|
|
56
|
+
/* @__PURE__ */ c("div", { className: s.textWrapper, children: [
|
|
57
|
+
/* @__PURE__ */ r("span", { className: `${s.stepTitle} ${_}`, children: n.title }),
|
|
58
|
+
/* @__PURE__ */ r("span", { className: `${s.stepState} ${_}`, children: f })
|
|
59
|
+
] })
|
|
60
|
+
]
|
|
61
|
+
},
|
|
62
|
+
a
|
|
63
|
+
);
|
|
49
64
|
}) }) }) : null;
|
|
50
65
|
export {
|
|
51
|
-
|
|
66
|
+
F as Stepper
|
|
52
67
|
};
|
package/dist/icons/icons.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type IconName = "Exclamation" | "Email" | "Password" | "ShowEye" | "HideEye" | "ArrowDown" | "Search" | "Masculino" | "Femenino" | "Height" | "Weight" | "Smoke" | "SmokeOff" | "Upload" | "Telefono" | "EmailFill" | "Whatsapp" | "Close" | "Lock" | "Envelope" | "CollapseMenu" | "ExpandMenu" | "Notification" | "Users" | "Pagos" | "Impagos" | "Configuracion" | "LockPassword" | "Logout" | "AddCard" | "Add" | "Help" | "Unsubscribe" | "CheckCircle" | "Disable" | "Edit" | "Delete" | "Save" | "Eye" | "Mail" | "Resend" | "Reset" | "SwapVertical" | "Clip" | "Send" | "Trash" | "ReInit" | "CircleDolar" | "Sort" | "Pencil" | "Check" | "LogoBMI+" | "ArrowLeft" | "ArrowRight" | "AddDocument" | "Family" | "User" | "Carnet" | "Savings" | "History" | "Docs" | "Filters" | "DownloadDoc" | "Biometric" | "Aetna" | "BMI" | "CircleDenied" | "ArrowForwardBtn" | "Share" | "Gallery" | "Camera" | "Sthetoscope" | "Shield" | "LogoBMIHorizontal" | "LogoBMIVertical" | "Profesional" | "BusquedaCiudad" | "Medico" | "Laboratorio" | "CercaDeMi" | "CuadroMedico" | "Celular" | "Headset" | "Internet" | "Calendar" | "Autorizaciones" | "Warning" | "Person" | "StepInProgress" | "StepPending" | "StepDone" | "IconoVida" | "IconoSalud" | "Planet" | "KeyboardArrowDown" | "USD" | "GT" | "EUR" | "DO" | "CR" | "CO";
|
|
1
|
+
export type IconName = "Exclamation" | "Email" | "Password" | "ShowEye" | "HideEye" | "ArrowDown" | "Search" | "Masculino" | "Femenino" | "Height" | "Weight" | "Smoke" | "SmokeOff" | "Upload" | "Telefono" | "EmailFill" | "Whatsapp" | "Close" | "Lock" | "Envelope" | "CollapseMenu" | "ExpandMenu" | "Notification" | "Users" | "Pagos" | "Impagos" | "Configuracion" | "LockPassword" | "Logout" | "AddCard" | "Add" | "Help" | "Unsubscribe" | "CheckCircle" | "Disable" | "Edit" | "Delete" | "Save" | "Eye" | "Mail" | "Resend" | "Reset" | "SwapVertical" | "Clip" | "Send" | "Trash" | "ReInit" | "CircleDolar" | "Sort" | "Pencil" | "Check" | "LogoBMI+" | "ArrowLeft" | "ArrowRight" | "AddDocument" | "Family" | "User" | "Carnet" | "Savings" | "History" | "Docs" | "Filters" | "DownloadDoc" | "Biometric" | "Aetna" | "BMI" | "CircleDenied" | "ArrowForwardBtn" | "Share" | "Gallery" | "Camera" | "Sthetoscope" | "Shield" | "LogoBMIHorizontal" | "LogoBMIVertical" | "Profesional" | "BusquedaCiudad" | "Medico" | "Laboratorio" | "CercaDeMi" | "CuadroMedico" | "Celular" | "Headset" | "Internet" | "Calendar" | "Autorizaciones" | "Warning" | "Person" | "StepInProgress" | "StepPending" | "StepDone" | "StepBlocked" | "IconoVida" | "IconoSalud" | "Planet" | "KeyboardArrowDown" | "USD" | "GT" | "EUR" | "DO" | "CR" | "CO";
|
|
2
2
|
interface IconProps {
|
|
3
3
|
width?: number;
|
|
4
4
|
height?: number;
|
|
@@ -97,6 +97,7 @@ export declare const Autorizaciones: React.FC<IconProps>;
|
|
|
97
97
|
export declare const Warning: React.FC<IconProps>;
|
|
98
98
|
export declare const Person: React.FC<IconProps>;
|
|
99
99
|
export declare const StepDone: React.FC<IconProps>;
|
|
100
|
+
export declare const StepBlocked: React.FC<IconProps>;
|
|
100
101
|
export declare const StepInProgress: React.FC<IconProps>;
|
|
101
102
|
export declare const StepPending: React.FC<IconProps>;
|
|
102
103
|
export declare const IconoVida: React.FC<IconProps>;
|
package/dist/icons/icons.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as C, jsxs as M } from "react/jsx-runtime";
|
|
2
|
-
const
|
|
2
|
+
const C4 = ({
|
|
3
3
|
name: l,
|
|
4
4
|
width: a,
|
|
5
5
|
height: L,
|
|
@@ -181,31 +181,33 @@ const $1 = ({
|
|
|
181
181
|
case "Person":
|
|
182
182
|
return /* @__PURE__ */ C(b1, { width: a, height: L, fill: t });
|
|
183
183
|
case "StepInProgress":
|
|
184
|
-
return /* @__PURE__ */ C(q1, { width: a, height: L, fill: t });
|
|
185
|
-
case "StepPending":
|
|
186
184
|
return /* @__PURE__ */ C(P1, { width: a, height: L, fill: t });
|
|
185
|
+
case "StepPending":
|
|
186
|
+
return /* @__PURE__ */ C(j1, { width: a, height: L, fill: t });
|
|
187
187
|
case "StepDone":
|
|
188
188
|
return /* @__PURE__ */ C(T1, { width: a, height: L, fill: t });
|
|
189
|
+
case "StepBlocked":
|
|
190
|
+
return /* @__PURE__ */ C(q1, { width: a, height: L, fill: t });
|
|
189
191
|
case "IconoVida":
|
|
190
|
-
return /* @__PURE__ */ C(j1, { width: a, height: L, fill: t });
|
|
191
|
-
case "IconoSalud":
|
|
192
192
|
return /* @__PURE__ */ C(I1, { width: a, height: L, fill: t });
|
|
193
|
+
case "IconoSalud":
|
|
194
|
+
return /* @__PURE__ */ C(G1, { width: a, height: L, fill: t });
|
|
193
195
|
case "Planet":
|
|
194
|
-
return /* @__PURE__ */ C(Q1, { width: a, height: L, fill: t });
|
|
195
|
-
case "KeyboardArrowDown":
|
|
196
196
|
return /* @__PURE__ */ C(X1, { width: a, height: L, fill: t });
|
|
197
|
+
case "KeyboardArrowDown":
|
|
198
|
+
return /* @__PURE__ */ C(Y1, { width: a, height: L, fill: t });
|
|
197
199
|
case "USD":
|
|
198
|
-
return /* @__PURE__ */ C(G1, { width: a, height: L });
|
|
199
|
-
case "GT":
|
|
200
200
|
return /* @__PURE__ */ C(R1, { width: a, height: L });
|
|
201
|
-
case "
|
|
201
|
+
case "GT":
|
|
202
202
|
return /* @__PURE__ */ C(W1, { width: a, height: L });
|
|
203
|
-
case "
|
|
203
|
+
case "EUR":
|
|
204
204
|
return /* @__PURE__ */ C(K1, { width: a, height: L });
|
|
205
|
-
case "
|
|
205
|
+
case "DO":
|
|
206
206
|
return /* @__PURE__ */ C(N1, { width: a, height: L });
|
|
207
|
-
case "
|
|
207
|
+
case "CR":
|
|
208
208
|
return /* @__PURE__ */ C(J1, { width: a, height: L });
|
|
209
|
+
case "CO":
|
|
210
|
+
return /* @__PURE__ */ C(Q1, { width: a, height: L });
|
|
209
211
|
default:
|
|
210
212
|
return null;
|
|
211
213
|
}
|
|
@@ -1552,7 +1554,7 @@ const $1 = ({
|
|
|
1552
1554
|
) })
|
|
1553
1555
|
]
|
|
1554
1556
|
}
|
|
1555
|
-
),
|
|
1557
|
+
), L4 = ({
|
|
1556
1558
|
width: l = 20,
|
|
1557
1559
|
height: a = 20,
|
|
1558
1560
|
fill: L = "#749CFF"
|
|
@@ -3207,6 +3209,50 @@ const $1 = ({
|
|
|
3207
3209
|
]
|
|
3208
3210
|
}
|
|
3209
3211
|
), q1 = ({
|
|
3212
|
+
width: l = 20,
|
|
3213
|
+
height: a = 20,
|
|
3214
|
+
fill: L = "#2054A5"
|
|
3215
|
+
}) => /* @__PURE__ */ M(
|
|
3216
|
+
"svg",
|
|
3217
|
+
{
|
|
3218
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3219
|
+
width: l,
|
|
3220
|
+
height: a,
|
|
3221
|
+
viewBox: "0 0 20 20",
|
|
3222
|
+
fill: "none",
|
|
3223
|
+
children: [
|
|
3224
|
+
/* @__PURE__ */ C("circle", { cx: "10", cy: "10", r: "10", fill: L }),
|
|
3225
|
+
/* @__PURE__ */ C(
|
|
3226
|
+
"mask",
|
|
3227
|
+
{
|
|
3228
|
+
id: "mask0_4056_18128",
|
|
3229
|
+
maskUnits: "userSpaceOnUse",
|
|
3230
|
+
x: "0",
|
|
3231
|
+
y: "0",
|
|
3232
|
+
width: "20",
|
|
3233
|
+
height: "20",
|
|
3234
|
+
children: /* @__PURE__ */ C(
|
|
3235
|
+
"rect",
|
|
3236
|
+
{
|
|
3237
|
+
x: "0.894043",
|
|
3238
|
+
y: "0.894043",
|
|
3239
|
+
width: "18.2119",
|
|
3240
|
+
height: "18.2119",
|
|
3241
|
+
fill: "#D9D9D9"
|
|
3242
|
+
}
|
|
3243
|
+
)
|
|
3244
|
+
}
|
|
3245
|
+
),
|
|
3246
|
+
/* @__PURE__ */ C("g", { mask: "url(#mask0_4056_18128)", children: /* @__PURE__ */ C(
|
|
3247
|
+
"path",
|
|
3248
|
+
{
|
|
3249
|
+
d: "M5.44703 10.7588C5.23203 10.7588 5.05181 10.6861 4.90637 10.5406C4.76092 10.3952 4.6882 10.215 4.6882 9.99998C4.6882 9.78498 4.76092 9.60476 4.90637 9.45931C5.05181 9.31387 5.23203 9.24115 5.44703 9.24115H14.553C14.768 9.24115 14.9482 9.31387 15.0937 9.45931C15.2391 9.60476 15.3118 9.78498 15.3118 9.99998C15.3118 10.215 15.2391 10.3952 15.0937 10.5406C14.9482 10.6861 14.768 10.7588 14.553 10.7588H5.44703Z",
|
|
3250
|
+
fill: "white"
|
|
3251
|
+
}
|
|
3252
|
+
) })
|
|
3253
|
+
]
|
|
3254
|
+
}
|
|
3255
|
+
), P1 = ({
|
|
3210
3256
|
width: l = 28,
|
|
3211
3257
|
height: a = 28,
|
|
3212
3258
|
fill: L = "#2054A5"
|
|
@@ -3234,7 +3280,7 @@ const $1 = ({
|
|
|
3234
3280
|
/* @__PURE__ */ C("circle", { cx: "14", cy: "14", r: "7", fill: L })
|
|
3235
3281
|
]
|
|
3236
3282
|
}
|
|
3237
|
-
),
|
|
3283
|
+
), j1 = ({
|
|
3238
3284
|
width: l = 28,
|
|
3239
3285
|
height: a = 28,
|
|
3240
3286
|
fill: L = "#2054A5"
|
|
@@ -3248,7 +3294,7 @@ const $1 = ({
|
|
|
3248
3294
|
fill: "none",
|
|
3249
3295
|
children: /* @__PURE__ */ C("g", { opacity: "0.3", children: /* @__PURE__ */ C("circle", { cx: "14", cy: "14", r: "14", fill: L }) })
|
|
3250
3296
|
}
|
|
3251
|
-
),
|
|
3297
|
+
), I1 = ({
|
|
3252
3298
|
width: l = 90,
|
|
3253
3299
|
height: a = 90,
|
|
3254
3300
|
fill: L = "#000"
|
|
@@ -3268,7 +3314,7 @@ const $1 = ({
|
|
|
3268
3314
|
}
|
|
3269
3315
|
)
|
|
3270
3316
|
}
|
|
3271
|
-
),
|
|
3317
|
+
), G1 = ({
|
|
3272
3318
|
width: l = 123,
|
|
3273
3319
|
height: a = 95,
|
|
3274
3320
|
fill: L = "#C9E1F6"
|
|
@@ -3288,7 +3334,7 @@ const $1 = ({
|
|
|
3288
3334
|
}
|
|
3289
3335
|
)
|
|
3290
3336
|
}
|
|
3291
|
-
),
|
|
3337
|
+
), R1 = ({ width: l = 30, height: a = 30 }) => /* @__PURE__ */ M(
|
|
3292
3338
|
"svg",
|
|
3293
3339
|
{
|
|
3294
3340
|
width: l,
|
|
@@ -3682,7 +3728,7 @@ const $1 = ({
|
|
|
3682
3728
|
/* @__PURE__ */ C("defs", { children: /* @__PURE__ */ C("clipPath", { id: "clip0_4929_41732", children: /* @__PURE__ */ C("rect", { width: l, height: a, fill: "white" }) }) })
|
|
3683
3729
|
]
|
|
3684
3730
|
}
|
|
3685
|
-
),
|
|
3731
|
+
), W1 = ({ width: l = 30, height: a = 30 }) => /* @__PURE__ */ M(
|
|
3686
3732
|
"svg",
|
|
3687
3733
|
{
|
|
3688
3734
|
width: l,
|
|
@@ -5527,7 +5573,7 @@ const $1 = ({
|
|
|
5527
5573
|
] })
|
|
5528
5574
|
]
|
|
5529
5575
|
}
|
|
5530
|
-
),
|
|
5576
|
+
), K1 = ({ width: l = 30, height: a = 30 }) => /* @__PURE__ */ M(
|
|
5531
5577
|
"svg",
|
|
5532
5578
|
{
|
|
5533
5579
|
width: l,
|
|
@@ -6403,7 +6449,7 @@ const $1 = ({
|
|
|
6403
6449
|
/* @__PURE__ */ C("defs", { children: /* @__PURE__ */ C("clipPath", { id: "clip0_4929_41733", children: /* @__PURE__ */ C("rect", { width: "30", height: "30", fill: "white" }) }) })
|
|
6404
6450
|
]
|
|
6405
6451
|
}
|
|
6406
|
-
),
|
|
6452
|
+
), N1 = ({ width: l = 30, height: a = 30 }) => /* @__PURE__ */ M(
|
|
6407
6453
|
"svg",
|
|
6408
6454
|
{
|
|
6409
6455
|
width: l,
|
|
@@ -7496,7 +7542,7 @@ const $1 = ({
|
|
|
7496
7542
|
] })
|
|
7497
7543
|
]
|
|
7498
7544
|
}
|
|
7499
|
-
),
|
|
7545
|
+
), J1 = ({ width: l = 30, height: a = 30 }) => /* @__PURE__ */ M(
|
|
7500
7546
|
"svg",
|
|
7501
7547
|
{
|
|
7502
7548
|
width: l,
|
|
@@ -7543,7 +7589,7 @@ const $1 = ({
|
|
|
7543
7589
|
] })
|
|
7544
7590
|
]
|
|
7545
7591
|
}
|
|
7546
|
-
),
|
|
7592
|
+
), Q1 = ({ width: l = 30, height: a = 30 }) => /* @__PURE__ */ M(
|
|
7547
7593
|
"svg",
|
|
7548
7594
|
{
|
|
7549
7595
|
width: l,
|
|
@@ -7584,7 +7630,7 @@ const $1 = ({
|
|
|
7584
7630
|
] })
|
|
7585
7631
|
]
|
|
7586
7632
|
}
|
|
7587
|
-
),
|
|
7633
|
+
), X1 = ({
|
|
7588
7634
|
width: l = 16,
|
|
7589
7635
|
height: a = 16,
|
|
7590
7636
|
fill: L = "#D9D9D9"
|
|
@@ -7618,7 +7664,7 @@ const $1 = ({
|
|
|
7618
7664
|
) })
|
|
7619
7665
|
]
|
|
7620
7666
|
}
|
|
7621
|
-
),
|
|
7667
|
+
), Y1 = ({
|
|
7622
7668
|
width: l = 9,
|
|
7623
7669
|
height: a = 6,
|
|
7624
7670
|
fill: L = "black"
|
|
@@ -7652,8 +7698,8 @@ export {
|
|
|
7652
7698
|
H1 as BMI,
|
|
7653
7699
|
d1 as Biometric,
|
|
7654
7700
|
A1 as BusquedaCiudad,
|
|
7655
|
-
|
|
7656
|
-
|
|
7701
|
+
Q1 as CO,
|
|
7702
|
+
J1 as CR,
|
|
7657
7703
|
S1 as Calendar,
|
|
7658
7704
|
m1 as Camera,
|
|
7659
7705
|
Z1 as Carnet,
|
|
@@ -7668,12 +7714,12 @@ export {
|
|
|
7668
7714
|
F as CollapseMenu,
|
|
7669
7715
|
B as Configuracion,
|
|
7670
7716
|
y1 as CuadroMedico,
|
|
7671
|
-
|
|
7717
|
+
N1 as DO,
|
|
7672
7718
|
P as Delete,
|
|
7673
7719
|
T as Disable,
|
|
7674
7720
|
s1 as Docs,
|
|
7675
7721
|
n1 as DownloadDoc,
|
|
7676
|
-
|
|
7722
|
+
K1 as EUR,
|
|
7677
7723
|
q as Edit,
|
|
7678
7724
|
h as Email,
|
|
7679
7725
|
m as EmailFill,
|
|
@@ -7684,19 +7730,19 @@ export {
|
|
|
7684
7730
|
c1 as Family,
|
|
7685
7731
|
d as Femenino,
|
|
7686
7732
|
r1 as Filters,
|
|
7687
|
-
|
|
7733
|
+
W1 as GT,
|
|
7688
7734
|
v1 as Gallery,
|
|
7689
7735
|
U1 as Headset,
|
|
7690
7736
|
p as Height,
|
|
7691
7737
|
_ as Help,
|
|
7692
7738
|
i as HideEye,
|
|
7693
7739
|
i1 as History,
|
|
7694
|
-
|
|
7695
|
-
|
|
7696
|
-
|
|
7740
|
+
C4 as Icon,
|
|
7741
|
+
G1 as IconoSalud,
|
|
7742
|
+
I1 as IconoVida,
|
|
7697
7743
|
D as Impagos,
|
|
7698
7744
|
E1 as Internet,
|
|
7699
|
-
|
|
7745
|
+
Y1 as KeyboardArrowDown,
|
|
7700
7746
|
x1 as Laboratorio,
|
|
7701
7747
|
z as Lock,
|
|
7702
7748
|
U as LockPassword,
|
|
@@ -7712,7 +7758,7 @@ export {
|
|
|
7712
7758
|
Z as Password,
|
|
7713
7759
|
L1 as Pencil,
|
|
7714
7760
|
b1 as Person,
|
|
7715
|
-
|
|
7761
|
+
X1 as Planet,
|
|
7716
7762
|
F1 as Profesional,
|
|
7717
7763
|
X as ReInit,
|
|
7718
7764
|
R as Resend,
|
|
@@ -7727,14 +7773,15 @@ export {
|
|
|
7727
7773
|
V as Smoke,
|
|
7728
7774
|
o as SmokeOff,
|
|
7729
7775
|
$ as Sort,
|
|
7776
|
+
q1 as StepBlocked,
|
|
7730
7777
|
T1 as StepDone,
|
|
7731
|
-
|
|
7732
|
-
|
|
7778
|
+
P1 as StepInProgress,
|
|
7779
|
+
j1 as StepPending,
|
|
7733
7780
|
w1 as Sthetoscope,
|
|
7734
|
-
|
|
7781
|
+
L4 as SwapVertical,
|
|
7735
7782
|
v as Telefono,
|
|
7736
7783
|
Q as Trash,
|
|
7737
|
-
|
|
7784
|
+
R1 as USD,
|
|
7738
7785
|
O as Unsubscribe,
|
|
7739
7786
|
f as Upload,
|
|
7740
7787
|
h1 as User,
|
package/package.json
CHANGED