bmi-next 1.0.76 → 1.0.77
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/icons/icons.d.ts +2 -1
- package/dist/icons/icons.js +19 -9
- package/package.json +1 -1
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" | "Table" | "Autorizaciones" | "Warning" | "Person" | "StepInProgress" | "StepPending" | "StepDone" | "StepBlocked" | "IconoVida" | "IconoSalud" | "Planet" | "KeyboardArrowDown" | "USD" | "GT" | "EUR" | "DO" | "CR" | "CO" | "ToastInfo" | "ToastCancel";
|
|
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" | "Table" | "Autorizaciones" | "Warning" | "Person" | "StepInProgress" | "StepPending" | "StepDone" | "StepBlocked" | "IconoVida" | "IconoSalud" | "Planet" | "KeyboardArrowDown" | "USD" | "GT" | "EUR" | "DO" | "CR" | "CO" | "Certificado" | "ToastInfo" | "ToastCancel";
|
|
2
2
|
interface IconProps {
|
|
3
3
|
width?: number;
|
|
4
4
|
height?: number;
|
|
@@ -111,6 +111,7 @@ export declare const CR: React.FC<IconProps>;
|
|
|
111
111
|
export declare const CO: React.FC<IconProps>;
|
|
112
112
|
export declare const Planet: React.FC<IconProps>;
|
|
113
113
|
export declare const KeyboardArrowDown: React.FC<IconProps>;
|
|
114
|
+
export declare const Certificado: React.FC<IconProps>;
|
|
114
115
|
export declare const ToastInfo: React.FC<IconProps>;
|
|
115
116
|
export declare const ToastCancel: React.FC<IconProps>;
|
|
116
117
|
export {};
|
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 M4 = ({
|
|
3
3
|
name: l,
|
|
4
4
|
width: a,
|
|
5
5
|
height: L,
|
|
@@ -210,10 +210,12 @@ const l4 = ({
|
|
|
210
210
|
return /* @__PURE__ */ C(Q1, { width: a, height: L });
|
|
211
211
|
case "CO":
|
|
212
212
|
return /* @__PURE__ */ C(X1, { width: a, height: L });
|
|
213
|
+
case "Certificado":
|
|
214
|
+
return /* @__PURE__ */ C(C4, { width: a, height: L });
|
|
213
215
|
case "ToastInfo":
|
|
214
|
-
return /* @__PURE__ */ C(C4, { width: a, height: L, fill: t });
|
|
215
|
-
case "ToastCancel":
|
|
216
216
|
return /* @__PURE__ */ C(L4, { width: a, height: L, fill: t });
|
|
217
|
+
case "ToastCancel":
|
|
218
|
+
return /* @__PURE__ */ C(a4, { width: a, height: L, fill: t });
|
|
217
219
|
default:
|
|
218
220
|
return null;
|
|
219
221
|
}
|
|
@@ -1560,7 +1562,7 @@ const l4 = ({
|
|
|
1560
1562
|
) })
|
|
1561
1563
|
]
|
|
1562
1564
|
}
|
|
1563
|
-
),
|
|
1565
|
+
), t4 = ({
|
|
1564
1566
|
width: l = 20,
|
|
1565
1567
|
height: a = 20,
|
|
1566
1568
|
fill: L = "#749CFF"
|
|
@@ -7711,6 +7713,13 @@ const l4 = ({
|
|
|
7711
7713
|
)
|
|
7712
7714
|
}
|
|
7713
7715
|
), C4 = ({
|
|
7716
|
+
width: l = 36,
|
|
7717
|
+
height: a = 36,
|
|
7718
|
+
fill: L = "#2054A5"
|
|
7719
|
+
}) => /* @__PURE__ */ M("svg", { width: l, height: a, viewBox: "0 0 36 36", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [
|
|
7720
|
+
/* @__PURE__ */ C("mask", { id: "mask0_6650_147644", style: { maskType: "alpha" }, maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "36", height: "36", children: /* @__PURE__ */ C("rect", { width: "36", height: "36", fill: "#D9D9D9" }) }),
|
|
7721
|
+
/* @__PURE__ */ C("g", { mask: "url(#mask0_6650_147644)", children: /* @__PURE__ */ C("path", { d: "M18.0003 17.8995L15.2204 20.0134C15.0731 20.1169 14.9285 20.1199 14.7865 20.0224C14.6445 19.9252 14.5995 19.7957 14.6515 19.6339L15.7105 16.1993L12.8646 13.986C12.7196 13.8865 12.6789 13.758 12.7424 13.6005C12.8056 13.443 12.92 13.3643 13.0855 13.3643H16.5404L17.6613 9.8408C17.7193 9.6753 17.8323 9.59255 18.0003 9.59255C18.1683 9.59255 18.2813 9.6753 18.3393 9.8408L19.435 13.3643H22.9113C23.073 13.3643 23.1871 13.443 23.2536 13.6005C23.3202 13.758 23.2809 13.8865 23.1359 13.986L20.2863 16.1993L21.3115 19.6339C21.3635 19.7957 21.3242 19.9252 21.1934 20.0224C21.0629 20.1199 20.924 20.1169 20.7768 20.0134L18.0003 17.8995ZM18.0003 31.7344L10.8704 34.1115C10.4126 34.271 9.98477 34.2037 9.58677 33.9094C9.18877 33.6154 8.98977 33.2302 8.98977 32.7537V23.2377C7.88327 22.0764 7.06652 20.7818 6.53952 19.3538C6.01252 17.9255 5.74902 16.4583 5.74902 14.952C5.74902 11.503 6.92865 8.59892 9.2879 6.23967C11.6471 3.88067 14.5513 2.70117 18.0003 2.70117C21.4493 2.70117 24.3544 3.88067 26.7156 6.23967C29.0769 8.59892 30.2575 11.503 30.2575 14.952C30.2575 16.4583 29.993 17.9255 29.464 19.3538C28.935 20.7818 28.1173 22.0764 27.0108 23.2377V32.7537C27.0108 33.2302 26.8118 33.6154 26.4138 33.9094C26.0158 34.2037 25.5899 34.271 25.1361 34.1115L18.0003 31.7344ZM24.6734 21.6285C26.4981 19.8058 27.4105 17.5813 27.4105 14.955C27.4105 12.329 26.4981 10.1037 24.6734 8.27892C22.8486 6.45417 20.6243 5.5418 18.0003 5.5418C15.3763 5.5418 13.1519 6.45417 11.3271 8.27892C9.5024 10.1037 8.59002 12.329 8.59002 14.955C8.59002 17.5813 9.5024 19.8058 11.3271 21.6285C13.1519 23.4513 15.3763 24.3627 18.0003 24.3627C20.6243 24.3627 22.8486 23.4513 24.6734 21.6285ZM11.6001 31.032L18.0003 29.0937L24.4004 31.032V25.3178C23.4359 25.9618 22.4031 26.438 21.3021 26.7465C20.2009 27.055 19.1003 27.2093 18.0003 27.2093C16.9003 27.2093 15.7996 27.055 14.6984 26.7465C13.5974 26.438 12.5646 25.9618 11.6001 25.3178V31.032Z", fill: L }) })
|
|
7722
|
+
] }), L4 = ({
|
|
7714
7723
|
width: l = 20,
|
|
7715
7724
|
height: a = 20,
|
|
7716
7725
|
fill: L = "black"
|
|
@@ -7747,7 +7756,7 @@ const l4 = ({
|
|
|
7747
7756
|
/* @__PURE__ */ C("g", { mask: "url(#info_svg__a)", children: /* @__PURE__ */ C("path", { fill: L, d: "M0 0h20v20H0z" }) })
|
|
7748
7757
|
]
|
|
7749
7758
|
}
|
|
7750
|
-
),
|
|
7759
|
+
), a4 = ({
|
|
7751
7760
|
width: l = 20,
|
|
7752
7761
|
height: a = 20,
|
|
7753
7762
|
fill: L = "black"
|
|
@@ -7805,6 +7814,7 @@ export {
|
|
|
7805
7814
|
Z1 as Carnet,
|
|
7806
7815
|
B1 as Celular,
|
|
7807
7816
|
D1 as CercaDeMi,
|
|
7817
|
+
C4 as Certificado,
|
|
7808
7818
|
a1 as Check,
|
|
7809
7819
|
b as CheckCircle,
|
|
7810
7820
|
V1 as CircleDenied,
|
|
@@ -7837,7 +7847,7 @@ export {
|
|
|
7837
7847
|
S as Help,
|
|
7838
7848
|
i as HideEye,
|
|
7839
7849
|
i1 as History,
|
|
7840
|
-
|
|
7850
|
+
M4 as Icon,
|
|
7841
7851
|
R1 as IconoSalud,
|
|
7842
7852
|
G1 as IconoVida,
|
|
7843
7853
|
D as Impagos,
|
|
@@ -7878,11 +7888,11 @@ export {
|
|
|
7878
7888
|
j1 as StepInProgress,
|
|
7879
7889
|
I1 as StepPending,
|
|
7880
7890
|
w1 as Sthetoscope,
|
|
7881
|
-
|
|
7891
|
+
t4 as SwapVertical,
|
|
7882
7892
|
S1 as Table,
|
|
7883
7893
|
v as Telefono,
|
|
7884
|
-
|
|
7885
|
-
|
|
7894
|
+
a4 as ToastCancel,
|
|
7895
|
+
L4 as ToastInfo,
|
|
7886
7896
|
Q as Trash,
|
|
7887
7897
|
W1 as USD,
|
|
7888
7898
|
O as Unsubscribe,
|
package/package.json
CHANGED