bmi-next-brokers 2.3.8 → 2.4.0

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.
@@ -1 +1 @@
1
- ._tooltip_11uqe_1{position:fixed;background-color:#fff;color:#000;border:1px solid rgba(0,0,0,.2);border-radius:6px;z-index:9000}._scrollableContent_11uqe_10{display:flex;padding:8px;overflow-y:auto;word-wrap:break-word}._scrollableContent_11uqe_10::-webkit-scrollbar{display:none}._tooltip_11uqe_1:before{content:"";position:absolute;width:0;height:0}._right_11uqe_30{transform:translateY(-50%)}._right_11uqe_30:before{top:calc(50% + var(--arrow-offset, 0px));left:-6px;transform:translateY(-50%);border-top:6px solid transparent;border-bottom:6px solid transparent;border-right:6px solid rgba(0,0,0,.1)}._left_11uqe_44{transform:translateY(-50%)}._left_11uqe_44:before{top:calc(50% + var(--arrow-offset, 0px));right:-6px;transform:translateY(-50%);border-top:6px solid transparent;border-bottom:6px solid transparent;border-left:6px solid rgba(0,0,0,.1)}._top_11uqe_58{transform:translate(-50%)}._top_11uqe_58:before{bottom:-6px;left:calc(50% + var(--arrow-offset, 0px));transform:translate(-50%);border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid rgba(0,0,0,.1)}._bottom_11uqe_72{transform:translate(-50%)}._bottom_11uqe_72:before{top:-6px;left:calc(50% + var(--arrow-offset, 0px));transform:translate(-50%);border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid rgba(0,0,0,.1)}
1
+ ._tooltip_mbgpt_1{position:fixed;background-color:#eef3fc;border:1px solid #2054a5;border-radius:6px;z-index:9000;font-size:12px;font-family:var(--font-regular);line-height:normal;color:#2054a5}._scrollableContent_mbgpt_13{display:flex;padding:8px;overflow-y:auto;word-wrap:break-word}._scrollableContent_mbgpt_13::-webkit-scrollbar{display:none}._tooltip_mbgpt_1:before,._tooltip_mbgpt_1:after{content:"";position:absolute;width:0;height:0}._right_mbgpt_34{transform:translateY(-50%)}._right_mbgpt_34:before{top:calc(50% + var(--arrow-offset, 0px));left:-8px;transform:translateY(-50%);border-top:7px solid transparent;border-bottom:7px solid transparent;border-right:8px solid #2054a5}._right_mbgpt_34:after{top:calc(50% + var(--arrow-offset, 0px));left:-6px;transform:translateY(-50%);border-top:6px solid transparent;border-bottom:6px solid transparent;border-right:7px solid #eef3fc}._left_mbgpt_59{transform:translateY(-50%)}._left_mbgpt_59:before{top:calc(50% + var(--arrow-offset, 0px));right:-8px;transform:translateY(-50%);border-top:7px solid transparent;border-bottom:7px solid transparent;border-left:8px solid #2054a5}._left_mbgpt_59:after{top:calc(50% + var(--arrow-offset, 0px));right:-6px;transform:translateY(-50%);border-top:6px solid transparent;border-bottom:6px solid transparent;border-left:7px solid #eef3fc}._top_mbgpt_82{transform:translate(-50%)}._top_mbgpt_82:before{bottom:-8px;left:calc(50% + var(--arrow-offset, 0px));transform:translate(-50%);border-left:7px solid transparent;border-right:7px solid transparent;border-top:8px solid #2054a5}._top_mbgpt_82:after{bottom:-6px;left:calc(50% + var(--arrow-offset, 0px));transform:translate(-50%);border-left:6px solid transparent;border-right:6px solid transparent;border-top:7px solid #eef3fc}._bottom_mbgpt_105{transform:translate(-50%)}._bottom_mbgpt_105:before{top:-8px;left:calc(50% + var(--arrow-offset, 0px));transform:translate(-50%);border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:8px solid #2054a5}._bottom_mbgpt_105:after{top:-6px;left:calc(50% + var(--arrow-offset, 0px));transform:translate(-50%);border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:7px solid #eef3fc}
@@ -18,7 +18,7 @@ import '../../assets/index.css';const p = "_badge_c0j5t_1", _ = "_fullWidth_c0j5
18
18
  ...A
19
19
  }) => {
20
20
  const m = {
21
- small: "small5Medium",
21
+ small: "small4Medium",
22
22
  medium: "small3Medium",
23
23
  large: "small3Medium"
24
24
  }, i = {
@@ -30,7 +30,7 @@ import '../../../assets/index14.css';const I = "_menuItem_16vvj_1", p = "_conten
30
30
  o && /* @__PURE__ */ r("span", { className: "bodyRegular", children: e.label }),
31
31
  e.iconBefore && o && /* @__PURE__ */ r("div", { className: t.iconBefore, children: /* @__PURE__ */ r(s, { name: e.iconBefore, width: 20, height: 20 }) })
32
32
  ] }),
33
- !o && /* @__PURE__ */ r(u, { target: c.current, visible: v, gap: 20, children: e.label })
33
+ !o && /* @__PURE__ */ r(u, { target: c.current, visible: v, gap: 20, delay: 0, children: e.label })
34
34
  ]
35
35
  }
36
36
  );
@@ -1,3 +1,7 @@
1
+ /**
2
+ * Posicionamiento del Tooltip
3
+ */
4
+ type Placement = "right" | "left" | "top" | "bottom";
1
5
  /**
2
6
  * Interfaz de props Tooltip.
3
7
  */
@@ -6,6 +10,9 @@ interface TooltipProps extends React.HTMLAttributes<HTMLDivElement> {
6
10
  children: React.ReactNode;
7
11
  visible: boolean;
8
12
  gap?: number;
13
+ defaultPlacement?: Placement;
14
+ /** Milisegundos de hover antes de mostrar el tooltip. Por defecto 1000 ms. */
15
+ delay?: number;
9
16
  }
10
- export declare const Tooltip: ({ target, children, visible, style, gap, }: TooltipProps) => import('react').ReactPortal | null;
17
+ export declare const Tooltip: ({ target, children, visible, style, gap, defaultPlacement, delay, }: TooltipProps) => import('react').ReactPortal | null;
11
18
  export {};
@@ -1,107 +1,130 @@
1
- import { jsx as B } from "react/jsx-runtime";
2
- import { useRef as M, useState as g, useLayoutEffect as E, useEffect as $ } from "react";
3
- import { createPortal as A } from "react-dom";
4
- import '../../assets/index8.css';const N = "_tooltip_11uqe_1", V = "_scrollableContent_11uqe_10", I = "_right_11uqe_30", S = "_left_11uqe_44", k = "_top_11uqe_58", D = "_bottom_11uqe_72", _ = {
5
- tooltip: N,
6
- scrollableContent: V,
7
- right: I,
8
- left: S,
9
- top: k,
10
- bottom: D
11
- }, Q = ({
1
+ import { jsx as j } from "react/jsx-runtime";
2
+ import { useRef as D, useState as a, useEffect as k, useLayoutEffect as L } from "react";
3
+ import { createPortal as F } from "react-dom";
4
+ import '../../assets/index8.css';const G = "_tooltip_mbgpt_1", J = "_scrollableContent_mbgpt_13", K = "_right_mbgpt_34", Q = "_left_mbgpt_59", U = "_top_mbgpt_82", X = "_bottom_mbgpt_105", g = {
5
+ tooltip: G,
6
+ scrollableContent: J,
7
+ right: K,
8
+ left: Q,
9
+ top: U,
10
+ bottom: X
11
+ }, nt = ({
12
12
  target: e,
13
- children: C,
14
- visible: s,
15
- style: j,
16
- gap: u = 12
13
+ children: v,
14
+ visible: _,
15
+ style: O,
16
+ gap: r = 12,
17
+ defaultPlacement: h = "right",
18
+ delay: C = 500
17
19
  }) => {
18
- const n = M(null), [q, p] = g("top"), [v, m] = g({ top: 0, left: 0 }), [y, b] = g(0), x = 15, l = 7.5, i = () => {
20
+ const n = D(null), [c, x] = a(!1), [W, y] = a(h);
21
+ k(() => {
22
+ if (!_) {
23
+ x(!1);
24
+ return;
25
+ }
26
+ const t = setTimeout(() => x(!0), C);
27
+ return () => clearTimeout(t);
28
+ }, [_, C]);
29
+ const [R, H] = a({ top: 0, left: 0 }), [$, T] = a(0), z = 15, f = 7.5, l = () => {
19
30
  if (!e || !n.current) return;
20
- const t = e.getBoundingClientRect(), w = n.current.offsetWidth, c = n.current.offsetHeight, h = window.innerHeight, L = window.innerWidth - t.right, O = t.left, P = h - t.bottom, T = (o) => {
21
- const r = l, f = h - c - l;
22
- return Math.max(r, Math.min(o, f));
23
- }, R = (o) => {
24
- const r = o + c / 2, f = o - c / 2;
25
- return r + l > h ? h - c / 2 - l : f - l < 0 ? c / 2 + l : o;
26
- }, a = (o) => {
31
+ const t = e.getBoundingClientRect(), b = n.current.offsetWidth, s = n.current.offsetHeight, m = window.innerHeight, M = window.innerWidth - t.right, P = t.left, A = m - t.bottom, B = (o) => {
32
+ const i = f, u = m - s - f;
33
+ return Math.max(i, Math.min(o, u));
34
+ }, E = (o) => {
35
+ const i = o + s / 2, u = o - s / 2;
36
+ return i + f > m ? m - s / 2 - f : u - f < 0 ? s / 2 + f : o;
37
+ }, N = (o) => {
27
38
  if (!e || !n.current) return;
28
- const r = e.getBoundingClientRect(), f = r.left + r.width / 2, d = n.current.getBoundingClientRect(), W = d.left + d.width / 2;
39
+ const i = e.getBoundingClientRect(), u = i.left + i.width / 2, p = n.current.getBoundingClientRect(), V = p.left + p.width / 2;
29
40
  if (o === "right" || o === "left") {
30
- const z = r.top + r.height / 2, H = d.top + d.height / 2;
31
- b(z - H);
41
+ const I = i.top + i.height / 2, q = p.top + p.height / 2;
42
+ T(I - q);
32
43
  } else
33
- b(f - W);
34
- };
35
- if (L >= w) {
36
- p("right");
37
- const o = t.top + t.height / 2;
38
- m({
39
- top: R(o),
40
- left: t.right + u
41
- //a la derecha del target con gap
42
- }), setTimeout(() => a("right"), 0);
43
- } else if (O >= w) {
44
- p("left");
45
- const o = t.top + t.height / 2;
46
- m({
47
- top: R(o),
48
- left: t.right - t.width - w - u
49
- //a la izquierda del target con gap
50
- }), setTimeout(() => a("left"), 0);
51
- } else if (P >= c) {
52
- p("bottom");
53
- const o = t.bottom + u;
54
- m({
55
- top: T(o),
56
- //reajustar posición
57
- left: t.left + t.width / 2
58
- //centrado en el target
59
- }), setTimeout(() => a("bottom"), 0);
60
- } else {
61
- p("top");
62
- const o = t.top - c - u;
63
- m({
64
- top: T(o),
65
- //reajustar posición
66
- left: t.left + t.width / 2
67
- //centrado en el target
68
- }), setTimeout(() => a("top"), 0);
44
+ T(u - V);
45
+ }, S = (o) => {
46
+ switch (o) {
47
+ case "right":
48
+ return M >= b + r;
49
+ case "left":
50
+ return P >= b + r;
51
+ case "bottom":
52
+ return A >= s + r;
53
+ case "top":
54
+ return t.top >= s + r;
55
+ }
56
+ }, w = [
57
+ h,
58
+ ...{
59
+ top: ["bottom", "right", "left"],
60
+ bottom: ["top", "right", "left"],
61
+ right: ["left", "top", "bottom"],
62
+ left: ["right", "top", "bottom"]
63
+ }[h]
64
+ ].find(S) ?? h;
65
+ let d = { top: 0, left: 0 };
66
+ switch (w) {
67
+ case "right":
68
+ d = {
69
+ top: E(t.top + t.height / 2),
70
+ left: t.right + r
71
+ };
72
+ break;
73
+ case "left":
74
+ d = {
75
+ top: E(t.top + t.height / 2),
76
+ left: t.right - t.width - b - r
77
+ };
78
+ break;
79
+ case "bottom":
80
+ d = {
81
+ top: B(t.bottom + r),
82
+ left: t.left + t.width / 2
83
+ };
84
+ break;
85
+ case "top":
86
+ d = {
87
+ top: B(t.top - s - r),
88
+ left: t.left + t.width / 2
89
+ };
90
+ break;
69
91
  }
92
+ y(w), H(d), setTimeout(() => N(w), 0);
70
93
  };
71
- return E(() => {
72
- s && i();
73
- }, [s, C]), E(() => {
74
- if (!n.current || !s) return;
75
- const t = new ResizeObserver(i);
94
+ return L(() => {
95
+ c && l();
96
+ }, [c, v]), L(() => {
97
+ if (!n.current || !c) return;
98
+ const t = new ResizeObserver(l);
76
99
  return t.observe(n.current), () => t.disconnect();
77
- }, [s]), $(() => {
78
- if (!e || !s) return;
79
- const t = new ResizeObserver(i);
80
- return t.observe(e), window.addEventListener("scroll", i, !0), window.addEventListener("resize", i), () => {
81
- t.disconnect(), window.removeEventListener("scroll", i, !0), window.removeEventListener("resize", i);
100
+ }, [c]), k(() => {
101
+ if (!e || !c) return;
102
+ const t = new ResizeObserver(l);
103
+ return t.observe(e), window.addEventListener("scroll", l, !0), window.addEventListener("resize", l), () => {
104
+ t.disconnect(), window.removeEventListener("scroll", l, !0), window.removeEventListener("resize", l);
82
105
  };
83
- }, [e, s]), !s || !e ? null : A(
84
- /* @__PURE__ */ B(
106
+ }, [e, c]), !c || !e ? null : F(
107
+ /* @__PURE__ */ j(
85
108
  "div",
86
109
  {
87
110
  ref: n,
88
- className: `small3Medium ${_.tooltip} ${_[q]}`,
111
+ className: `${g.tooltip} ${g[W]}`,
89
112
  style: {
90
- top: v.top,
91
- left: v.left,
92
- "--arrow-offset": `${y}px`,
113
+ top: R.top,
114
+ left: R.left,
115
+ "--arrow-offset": `${$}px`,
93
116
  //posición flecha tooltip
94
- ...j
117
+ ...O
95
118
  },
96
- children: /* @__PURE__ */ B(
119
+ children: /* @__PURE__ */ j(
97
120
  "div",
98
121
  {
99
- className: _.scrollableContent,
122
+ className: g.scrollableContent,
100
123
  style: {
101
- maxWidth: `calc(85dvw - ${x}px)`,
102
- maxHeight: `calc(100dvh - ${x}px)`
124
+ maxWidth: `calc(85dvw - ${z}px)`,
125
+ maxHeight: `calc(100dvh - ${z}px)`
103
126
  },
104
- children: C
127
+ children: v
105
128
  }
106
129
  )
107
130
  }
@@ -110,5 +133,5 @@ import '../../assets/index8.css';const N = "_tooltip_11uqe_1", V = "_scrollableC
110
133
  );
111
134
  };
112
135
  export {
113
- Q as Tooltip
136
+ nt as Tooltip
114
137
  };
@@ -1,5 +1,5 @@
1
1
  import { jsx as i } from "react/jsx-runtime";
2
- import { I as p } from "../index-8v4OdgDb.js";
2
+ import { I as p } from "../index-DTMxVGVo.js";
3
3
  const m = ({
4
4
  name: o,
5
5
  width: c = 20,
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgSave: (props: SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
3
+ export default SvgSave;
@@ -0,0 +1,10 @@
1
+ import { jsxs as s, jsx as a } from "react/jsx-runtime";
2
+ const t = (e) => /* @__PURE__ */ s("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 18 18", width: "1em", height: "1em", ...e, children: [
3
+ /* @__PURE__ */ a("mask", { id: "save_svg__a", width: 18, height: 18, x: 0, y: 0, maskUnits: "userSpaceOnUse", style: {
4
+ maskType: "alpha"
5
+ }, children: /* @__PURE__ */ a("path", { fill: "currentColor", d: "M0 0h18v18H0z" }) }),
6
+ /* @__PURE__ */ a("g", { mask: "url(#save_svg__a)", children: /* @__PURE__ */ a("path", { fill: "#2054A5", d: "M3.75 15.75q-.62 0-1.06-.44a1.45 1.45 0 0 1-.44-1.06V3.75q0-.62.44-1.06.442-.44 1.06-.44h8.381a1.48 1.48 0 0 1 1.05.431L15.32 4.82q.206.206.318.478t.113.572v8.381q0 .619-.44 1.06-.442.44-1.06.44zm10.5-9.862L12.113 3.75H3.75v10.5h10.5zm-3.656 6.956a2.17 2.17 0 0 0 .656-1.594 2.17 2.17 0 0 0-.656-1.594A2.17 2.17 0 0 0 9 9a2.17 2.17 0 0 0-1.594.656 2.17 2.17 0 0 0-.656 1.594q0 .937.656 1.594A2.17 2.17 0 0 0 9 13.5a2.17 2.17 0 0 0 1.594-.656M5.25 7.5h5.25q.319 0 .534-.216a.73.73 0 0 0 .216-.534v-1.5a.73.73 0 0 0-.216-.534.73.73 0 0 0-.534-.216H5.25a.73.73 0 0 0-.534.216.73.73 0 0 0-.216.534v1.5q0 .319.216.534a.73.73 0 0 0 .534.216" }) })
7
+ ] });
8
+ export {
9
+ t as default
10
+ };
@@ -116,6 +116,7 @@ export { default as Refresh } from './Refresh';
116
116
  export { default as Renovaciones } from './Renovaciones';
117
117
  export { default as Replay } from './Replay';
118
118
  export { default as Reply } from './Reply';
119
+ export { default as Save } from './Save';
119
120
  export { default as SearchIcon } from './SearchIcon';
120
121
  export { default as Send } from './Send';
121
122
  export { default as Share } from './Share';
@@ -9,11 +9,11 @@ import { default as C } from "./RepDominicana.js";
9
9
  import { default as A } from "./AccountBalance.js";
10
10
  import { default as D } from "./AccountCircle.js";
11
11
  import { default as w } from "./Add.js";
12
- import { default as S } from "./AddAPhoto.js";
12
+ import { default as R } from "./AddAPhoto.js";
13
13
  import { default as b } from "./AddIcon.js";
14
14
  import { default as y } from "./AdminMeds.js";
15
15
  import { default as k } from "./AlertIcon.js";
16
- import { default as v } from "./AmericanExpress.js";
16
+ import { default as B } from "./AmericanExpress.js";
17
17
  import { default as L } from "./AmericanExpressRounded.js";
18
18
  import { default as V } from "./Apnfd.js";
19
19
  import { default as O } from "./Approve.js";
@@ -35,11 +35,11 @@ import { default as co } from "./Checkbook.js";
35
35
  import { default as Io } from "./ChevronLeft.js";
36
36
  import { default as ho } from "./Close.js";
37
37
  import { default as Po } from "./CloseDrawer.js";
38
- import { default as Ro } from "./ColectivosIcon.js";
38
+ import { default as So } from "./ColectivosIcon.js";
39
39
  import { default as go } from "./Comisiones.js";
40
40
  import { default as Fo } from "./CompareArrows.js";
41
41
  import { default as Mo } from "./ComputerCancel.js";
42
- import { default as Bo } from "./ComunicacionesIcon.js";
42
+ import { default as vo } from "./ComunicacionesIcon.js";
43
43
  import { default as Eo } from "./Contacto.js";
44
44
  import { default as Uo } from "./ContentCopy.js";
45
45
  import { default as Ho } from "./ConyugeIcon.js";
@@ -62,11 +62,11 @@ import { default as ce } from "./Documentos.js";
62
62
  import { default as Ie } from "./Dot.js";
63
63
  import { default as he } from "./DownloadIcon.js";
64
64
  import { default as Pe } from "./EditIcon.js";
65
- import { default as Re } from "./EstadosUnidos.js";
65
+ import { default as Se } from "./EstadosUnidos.js";
66
66
  import { default as ge } from "./Europa.js";
67
67
  import { default as Fe } from "./FallbackCardRounded.js";
68
68
  import { default as Me } from "./Female.js";
69
- import { default as Be } from "./Filter.js";
69
+ import { default as ve } from "./Filter.js";
70
70
  import { default as Ee } from "./FilterAlt.js";
71
71
  import { default as Ue } from "./Folder.js";
72
72
  import { default as He } from "./FondosExtranjero.js";
@@ -89,11 +89,11 @@ import { default as cr } from "./Male.js";
89
89
  import { default as Ir } from "./MasAcciones.js";
90
90
  import { default as hr } from "./Mastercard.js";
91
91
  import { default as Pr } from "./MastercardRounded.js";
92
- import { default as Rr } from "./Medical.js";
92
+ import { default as Sr } from "./Medical.js";
93
93
  import { default as gr } from "./Menu.js";
94
94
  import { default as Fr } from "./MoreVert.js";
95
95
  import { default as Mr } from "./NextIcon.js";
96
- import { default as Br } from "./Notes.js";
96
+ import { default as vr } from "./Notes.js";
97
97
  import { default as Er } from "./Notifications.js";
98
98
  import { default as Ur } from "./NumPolizaIcon.js";
99
99
  import { default as Hr } from "./OpenInFull.js";
@@ -116,39 +116,40 @@ import { default as ca } from "./Refresh.js";
116
116
  import { default as Ia } from "./Renovaciones.js";
117
117
  import { default as ha } from "./Replay.js";
118
118
  import { default as Pa } from "./Reply.js";
119
- import { default as Ra } from "./SearchIcon.js";
120
- import { default as ga } from "./Send.js";
121
- import { default as Fa } from "./Share.js";
122
- import { default as Ma } from "./ShieldWithHeart.js";
123
- import { default as Ba } from "./SmallFamily.js";
124
- import { default as Ea } from "./Smartphone.js";
125
- import { default as Ua } from "./SortArrowsAsc.js";
126
- import { default as Ha } from "./SortArrowsDefault.js";
127
- import { default as Wa } from "./SortArrowsDesc.js";
128
- import { default as za } from "./StepBlocked.js";
129
- import { default as ja } from "./StepDone.js";
130
- import { default as Ta } from "./StepInProgress.js";
131
- import { default as Ja } from "./StepPending.js";
132
- import { default as Xa } from "./Tutoriales.js";
133
- import { default as Za } from "./UnfoldMore.js";
134
- import { default as $a } from "./Upload.js";
135
- import { default as et } from "./VerifiedUser.js";
136
- import { default as at } from "./Visa.js";
137
- import { default as ft } from "./VisaRounded.js";
138
- import { default as dt } from "./Visibility.js";
139
- import { default as ut } from "./VisibilityOff.js";
140
- import { default as mt } from "./Warning.js";
141
- import { default as nt } from "./WeightIcon.js";
142
- import { default as ct } from "./Whatsapp.js";
119
+ import { default as Sa } from "./Save.js";
120
+ import { default as ga } from "./SearchIcon.js";
121
+ import { default as Fa } from "./Send.js";
122
+ import { default as Ma } from "./Share.js";
123
+ import { default as va } from "./ShieldWithHeart.js";
124
+ import { default as Ea } from "./SmallFamily.js";
125
+ import { default as Ua } from "./Smartphone.js";
126
+ import { default as Ha } from "./SortArrowsAsc.js";
127
+ import { default as Wa } from "./SortArrowsDefault.js";
128
+ import { default as za } from "./SortArrowsDesc.js";
129
+ import { default as ja } from "./StepBlocked.js";
130
+ import { default as Ta } from "./StepDone.js";
131
+ import { default as Ja } from "./StepInProgress.js";
132
+ import { default as Xa } from "./StepPending.js";
133
+ import { default as Za } from "./Tutoriales.js";
134
+ import { default as $a } from "./UnfoldMore.js";
135
+ import { default as et } from "./Upload.js";
136
+ import { default as at } from "./VerifiedUser.js";
137
+ import { default as ft } from "./Visa.js";
138
+ import { default as dt } from "./VisaRounded.js";
139
+ import { default as ut } from "./Visibility.js";
140
+ import { default as mt } from "./VisibilityOff.js";
141
+ import { default as nt } from "./Warning.js";
142
+ import { default as ct } from "./WeightIcon.js";
143
+ import { default as It } from "./Whatsapp.js";
143
144
  export {
144
145
  A as AccountBalance,
145
146
  D as AccountCircle,
146
147
  w as Add,
147
- S as AddAPhoto,
148
+ R as AddAPhoto,
148
149
  b as AddIcon,
149
150
  y as AdminMeds,
150
151
  k as AlertIcon,
151
- v as AmericanExpress,
152
+ B as AmericanExpress,
152
153
  L as AmericanExpressRounded,
153
154
  V as Apnfd,
154
155
  O as Approve,
@@ -172,12 +173,12 @@ export {
172
173
  Io as ChevronLeft,
173
174
  ho as Close,
174
175
  Po as CloseDrawer,
175
- Ro as ColectivosIcon,
176
+ So as ColectivosIcon,
176
177
  s as Colombia,
177
178
  go as Comisiones,
178
179
  Fo as CompareArrows,
179
180
  Mo as ComputerCancel,
180
- Bo as ComunicacionesIcon,
181
+ vo as ComunicacionesIcon,
181
182
  Eo as Contacto,
182
183
  Uo as ContentCopy,
183
184
  Ho as ConyugeIcon,
@@ -202,11 +203,11 @@ export {
202
203
  he as DownloadIcon,
203
204
  p as Ecuador,
204
205
  Pe as EditIcon,
205
- Re as EstadosUnidos,
206
+ Se as EstadosUnidos,
206
207
  ge as Europa,
207
208
  Fe as FallbackCardRounded,
208
209
  Me as Female,
209
- Be as Filter,
210
+ ve as Filter,
210
211
  Ee as FilterAlt,
211
212
  Ue as Folder,
212
213
  He as FondosExtranjero,
@@ -231,11 +232,11 @@ export {
231
232
  Ir as MasAcciones,
232
233
  hr as Mastercard,
233
234
  Pr as MastercardRounded,
234
- Rr as Medical,
235
+ Sr as Medical,
235
236
  gr as Menu,
236
237
  Fr as MoreVert,
237
238
  Mr as NextIcon,
238
- Br as Notes,
239
+ vr as Notes,
239
240
  Er as Notifications,
240
241
  Ur as NumPolizaIcon,
241
242
  Hr as OpenInFull,
@@ -259,28 +260,29 @@ export {
259
260
  C as RepDominicana,
260
261
  ha as Replay,
261
262
  Pa as Reply,
262
- Ra as SearchIcon,
263
- ga as Send,
264
- Fa as Share,
265
- Ma as ShieldWithHeart,
266
- Ba as SmallFamily,
267
- Ea as Smartphone,
268
- Ua as SortArrowsAsc,
269
- Ha as SortArrowsDefault,
270
- Wa as SortArrowsDesc,
271
- za as StepBlocked,
272
- ja as StepDone,
273
- Ta as StepInProgress,
274
- Ja as StepPending,
275
- Xa as Tutoriales,
276
- Za as UnfoldMore,
277
- $a as Upload,
278
- et as VerifiedUser,
279
- at as Visa,
280
- ft as VisaRounded,
281
- dt as Visibility,
282
- ut as VisibilityOff,
283
- mt as Warning,
284
- nt as WeightIcon,
285
- ct as Whatsapp
263
+ Sa as Save,
264
+ ga as SearchIcon,
265
+ Fa as Send,
266
+ Ma as Share,
267
+ va as ShieldWithHeart,
268
+ Ea as SmallFamily,
269
+ Ua as Smartphone,
270
+ Ha as SortArrowsAsc,
271
+ Wa as SortArrowsDefault,
272
+ za as SortArrowsDesc,
273
+ ja as StepBlocked,
274
+ Ta as StepDone,
275
+ Ja as StepInProgress,
276
+ Xa as StepPending,
277
+ Za as Tutoriales,
278
+ $a as UnfoldMore,
279
+ et as Upload,
280
+ at as VerifiedUser,
281
+ ft as Visa,
282
+ dt as VisaRounded,
283
+ ut as Visibility,
284
+ mt as VisibilityOff,
285
+ nt as Warning,
286
+ ct as WeightIcon,
287
+ It as Whatsapp
286
288
  };
@@ -156,6 +156,7 @@ export { default as RepDominicana } from './components/RepDominicana';
156
156
  export { default as Replay } from './components/Replay';
157
157
  export { default as Reply } from './components/Reply';
158
158
  export { default as Riñones } from './components/Riñones';
159
+ export { default as Save } from './components/Save';
159
160
  export { default as Schedule } from './components/Schedule';
160
161
  export { default as SearchIcon } from './components/SearchIcon';
161
162
  export { default as Send } from './components/Send';
@@ -9,7 +9,7 @@ import { default as C } from "./components/Aetna.js";
9
9
  import { default as I } from "./components/AlertIcon.js";
10
10
  import { default as w } from "./components/AmericanExpress.js";
11
11
  import { default as D } from "./components/AmericanExpressRounded.js";
12
- import { default as R } from "./components/AnchorEmpty.js";
12
+ import { default as S } from "./components/AnchorEmpty.js";
13
13
  import { default as F } from "./components/AnchorFill.js";
14
14
  import { default as b } from "./components/Apnfd.js";
15
15
  import { default as y } from "./components/Approve.js";
@@ -36,7 +36,7 @@ import { default as Ao } from "./components/BusinessCenter.js";
36
36
  import { default as ho } from "./components/CalendarIcon.js";
37
37
  import { default as go } from "./components/Call.js";
38
38
  import { default as Po } from "./components/CancelIcon.js";
39
- import { default as So } from "./components/Cerebro.js";
39
+ import { default as Ro } from "./components/Cerebro.js";
40
40
  import { default as Mo } from "./components/Certificado.js";
41
41
  import { default as ko } from "./components/ChatBubble.js";
42
42
  import { default as Bo } from "./components/CheckCircle.js";
@@ -63,7 +63,7 @@ import { default as Ae } from "./components/CostaRica.js";
63
63
  import { default as he } from "./components/CotizacionesIcon.js";
64
64
  import { default as ge } from "./components/Credentials.js";
65
65
  import { default as Pe } from "./components/CreditCard.js";
66
- import { default as Se } from "./components/CruzGrafica.js";
66
+ import { default as Re } from "./components/CruzGrafica.js";
67
67
  import { default as Me } from "./components/CurrencyExchange.js";
68
68
  import { default as ke } from "./components/DashboardIcon.js";
69
69
  import { default as Be } from "./components/DatosIcon.js";
@@ -90,7 +90,7 @@ import { default as Ar } from "./components/Female.js";
90
90
  import { default as hr } from "./components/Filter.js";
91
91
  import { default as gr } from "./components/FilterAlt.js";
92
92
  import { default as Pr } from "./components/Folder.js";
93
- import { default as Sr } from "./components/FondosExtranjero.js";
93
+ import { default as Rr } from "./components/FondosExtranjero.js";
94
94
  import { default as Mr } from "./components/Fumador.js";
95
95
  import { default as kr } from "./components/Ginecologia.js";
96
96
  import { default as Br } from "./components/Guatemala.js";
@@ -117,7 +117,7 @@ import { default as Aa } from "./components/LogOut.js";
117
117
  import { default as ha } from "./components/MailIcon.js";
118
118
  import { default as ga } from "./components/Male.js";
119
119
  import { default as Pa } from "./components/Mancuerna.js";
120
- import { default as Sa } from "./components/MasAcciones.js";
120
+ import { default as Ra } from "./components/MasAcciones.js";
121
121
  import { default as Ma } from "./components/Mastercard.js";
122
122
  import { default as ka } from "./components/MastercardRounded.js";
123
123
  import { default as Ba } from "./components/Medicacion.js";
@@ -144,7 +144,7 @@ import { default as At } from "./components/PhotoLibrary.js";
144
144
  import { default as ht } from "./components/Piel.js";
145
145
  import { default as gt } from "./components/Planet.js";
146
146
  import { default as Pt } from "./components/PolizaIcon.js";
147
- import { default as St } from "./components/PriceChange.js";
147
+ import { default as Rt } from "./components/PriceChange.js";
148
148
  import { default as Mt } from "./components/ProductIcon.js";
149
149
  import { default as kt } from "./components/Public.js";
150
150
  import { default as Bt } from "./components/Pulmones.js";
@@ -156,39 +156,40 @@ import { default as Nt } from "./components/RepDominicana.js";
156
156
  import { default as Gt } from "./components/Replay.js";
157
157
  import { default as jt } from "./components/Reply.js";
158
158
  import { default as Jt } from "./components/Riñones.js";
159
- import { default as Xt } from "./components/Schedule.js";
160
- import { default as Zt } from "./components/SearchIcon.js";
161
- import { default as $t } from "./components/Send.js";
162
- import { default as ef } from "./components/Settings.js";
163
- import { default as af } from "./components/Share.js";
164
- import { default as ff } from "./components/ShieldWithHeart.js";
165
- import { default as df } from "./components/SmallFamily.js";
166
- import { default as uf } from "./components/Smartphone.js";
167
- import { default as mf } from "./components/SortArrowsAsc.js";
168
- import { default as nf } from "./components/SortArrowsDefault.js";
169
- import { default as Cf } from "./components/SortArrowsDesc.js";
170
- import { default as If } from "./components/StepBlocked.js";
171
- import { default as wf } from "./components/StepDone.js";
172
- import { default as Df } from "./components/StepInProgress.js";
173
- import { default as Rf } from "./components/StepPending.js";
174
- import { default as Ff } from "./components/Stethoscope.js";
175
- import { default as bf } from "./components/Swich.js";
176
- import { default as yf } from "./components/TrendingDown.js";
177
- import { default as vf } from "./components/TrendingUp.js";
178
- import { default as Ef } from "./components/Tutoriales.js";
179
- import { default as Uf } from "./components/UnfoldMore.js";
180
- import { default as Tf } from "./components/Upload.js";
181
- import { default as Wf } from "./components/UserGroup.js";
182
- import { default as zf } from "./components/VerifiedUser.js";
183
- import { default as Kf } from "./components/Virus.js";
184
- import { default as qf } from "./components/Visa.js";
185
- import { default as Qf } from "./components/VisaRounded.js";
186
- import { default as Yf } from "./components/Visibility.js";
187
- import { default as _f } from "./components/VisibilityOff.js";
188
- import { default as os } from "./components/Warning.js";
189
- import { default as rs } from "./components/WavingHand.js";
190
- import { default as ts } from "./components/WeightIcon.js";
191
- import { default as ss } from "./components/Whatsapp.js";
159
+ import { default as Xt } from "./components/Save.js";
160
+ import { default as Zt } from "./components/Schedule.js";
161
+ import { default as $t } from "./components/SearchIcon.js";
162
+ import { default as ef } from "./components/Send.js";
163
+ import { default as af } from "./components/Settings.js";
164
+ import { default as ff } from "./components/Share.js";
165
+ import { default as df } from "./components/ShieldWithHeart.js";
166
+ import { default as uf } from "./components/SmallFamily.js";
167
+ import { default as mf } from "./components/Smartphone.js";
168
+ import { default as nf } from "./components/SortArrowsAsc.js";
169
+ import { default as Cf } from "./components/SortArrowsDefault.js";
170
+ import { default as If } from "./components/SortArrowsDesc.js";
171
+ import { default as wf } from "./components/StepBlocked.js";
172
+ import { default as Df } from "./components/StepDone.js";
173
+ import { default as Sf } from "./components/StepInProgress.js";
174
+ import { default as Ff } from "./components/StepPending.js";
175
+ import { default as bf } from "./components/Stethoscope.js";
176
+ import { default as yf } from "./components/Swich.js";
177
+ import { default as vf } from "./components/TrendingDown.js";
178
+ import { default as Ef } from "./components/TrendingUp.js";
179
+ import { default as Uf } from "./components/Tutoriales.js";
180
+ import { default as Tf } from "./components/UnfoldMore.js";
181
+ import { default as Wf } from "./components/Upload.js";
182
+ import { default as zf } from "./components/UserGroup.js";
183
+ import { default as Kf } from "./components/VerifiedUser.js";
184
+ import { default as qf } from "./components/Virus.js";
185
+ import { default as Qf } from "./components/Visa.js";
186
+ import { default as Yf } from "./components/VisaRounded.js";
187
+ import { default as _f } from "./components/Visibility.js";
188
+ import { default as os } from "./components/VisibilityOff.js";
189
+ import { default as rs } from "./components/Warning.js";
190
+ import { default as ts } from "./components/WavingHand.js";
191
+ import { default as ss } from "./components/WeightIcon.js";
192
+ import { default as ls } from "./components/Whatsapp.js";
192
193
  export {
193
194
  r as AccountBalance,
194
195
  t as AccountCircle,
@@ -201,7 +202,7 @@ export {
201
202
  I as AlertIcon,
202
203
  w as AmericanExpress,
203
204
  D as AmericanExpressRounded,
204
- R as AnchorEmpty,
205
+ S as AnchorEmpty,
205
206
  F as AnchorFill,
206
207
  b as Apnfd,
207
208
  y as Approve,
@@ -228,7 +229,7 @@ export {
228
229
  ho as CalendarIcon,
229
230
  go as Call,
230
231
  Po as CancelIcon,
231
- So as Cerebro,
232
+ Ro as Cerebro,
232
233
  Mo as Certificado,
233
234
  ko as ChatBubble,
234
235
  Bo as CheckCircle,
@@ -255,7 +256,7 @@ export {
255
256
  he as CotizacionesIcon,
256
257
  ge as Credentials,
257
258
  Pe as CreditCard,
258
- Se as CruzGrafica,
259
+ Re as CruzGrafica,
259
260
  Me as CurrencyExchange,
260
261
  ke as DashboardIcon,
261
262
  Be as DatosIcon,
@@ -282,7 +283,7 @@ export {
282
283
  hr as Filter,
283
284
  gr as FilterAlt,
284
285
  Pr as Folder,
285
- Sr as FondosExtranjero,
286
+ Rr as FondosExtranjero,
286
287
  Mr as Fumador,
287
288
  kr as Ginecologia,
288
289
  Br as Guatemala,
@@ -309,7 +310,7 @@ export {
309
310
  ha as MailIcon,
310
311
  ga as Male,
311
312
  Pa as Mancuerna,
312
- Sa as MasAcciones,
313
+ Ra as MasAcciones,
313
314
  Ma as Mastercard,
314
315
  ka as MastercardRounded,
315
316
  Ba as Medicacion,
@@ -336,7 +337,7 @@ export {
336
337
  ht as Piel,
337
338
  gt as Planet,
338
339
  Pt as PolizaIcon,
339
- St as PriceChange,
340
+ Rt as PriceChange,
340
341
  Mt as ProductIcon,
341
342
  kt as Public,
342
343
  Bt as Pulmones,
@@ -348,37 +349,38 @@ export {
348
349
  Gt as Replay,
349
350
  jt as Reply,
350
351
  Jt as Riñones,
351
- Xt as Schedule,
352
- Zt as SearchIcon,
353
- $t as Send,
354
- ef as Settings,
355
- af as Share,
356
- ff as ShieldWithHeart,
357
- df as SmallFamily,
358
- uf as Smartphone,
359
- mf as SortArrowsAsc,
360
- nf as SortArrowsDefault,
361
- Cf as SortArrowsDesc,
362
- If as StepBlocked,
363
- wf as StepDone,
364
- Df as StepInProgress,
365
- Rf as StepPending,
366
- Ff as Stethoscope,
367
- bf as Swich,
368
- yf as TrendingDown,
369
- vf as TrendingUp,
370
- Ef as Tutoriales,
371
- Uf as UnfoldMore,
372
- Tf as Upload,
373
- Wf as UserGroup,
374
- zf as VerifiedUser,
375
- Kf as Virus,
376
- qf as Visa,
377
- Qf as VisaRounded,
378
- Yf as Visibility,
379
- _f as VisibilityOff,
380
- os as Warning,
381
- rs as WavingHand,
382
- ts as WeightIcon,
383
- ss as Whatsapp
352
+ Xt as Save,
353
+ Zt as Schedule,
354
+ $t as SearchIcon,
355
+ ef as Send,
356
+ af as Settings,
357
+ ff as Share,
358
+ df as ShieldWithHeart,
359
+ uf as SmallFamily,
360
+ mf as Smartphone,
361
+ nf as SortArrowsAsc,
362
+ Cf as SortArrowsDefault,
363
+ If as SortArrowsDesc,
364
+ wf as StepBlocked,
365
+ Df as StepDone,
366
+ Sf as StepInProgress,
367
+ Ff as StepPending,
368
+ bf as Stethoscope,
369
+ yf as Swich,
370
+ vf as TrendingDown,
371
+ Ef as TrendingUp,
372
+ Uf as Tutoriales,
373
+ Tf as UnfoldMore,
374
+ Wf as Upload,
375
+ zf as UserGroup,
376
+ Kf as VerifiedUser,
377
+ qf as Virus,
378
+ Qf as Visa,
379
+ Yf as VisaRounded,
380
+ _f as Visibility,
381
+ os as VisibilityOff,
382
+ rs as Warning,
383
+ ts as WavingHand,
384
+ ss as WeightIcon,
385
+ ls as Whatsapp
384
386
  };
@@ -156,40 +156,41 @@ import qr from "./icons/components/RepDominicana.js";
156
156
  import Jr from "./icons/components/Replay.js";
157
157
  import Qr from "./icons/components/Reply.js";
158
158
  import Xr from "./icons/components/Riñones.js";
159
- import Yr from "./icons/components/Schedule.js";
160
- import Zr from "./icons/components/SearchIcon.js";
161
- import $r from "./icons/components/Send.js";
162
- import om from "./icons/components/Settings.js";
163
- import rm from "./icons/components/Share.js";
164
- import mm from "./icons/components/ShieldWithHeart.js";
165
- import im from "./icons/components/SmallFamily.js";
166
- import tm from "./icons/components/Smartphone.js";
167
- import em from "./icons/components/SortArrowsAsc.js";
168
- import nm from "./icons/components/SortArrowsDefault.js";
169
- import pm from "./icons/components/SortArrowsDesc.js";
170
- import gm from "./icons/components/StepBlocked.js";
171
- import am from "./icons/components/StepDone.js";
172
- import Sm from "./icons/components/StepInProgress.js";
173
- import fm from "./icons/components/StepPending.js";
174
- import vm from "./icons/components/Stethoscope.js";
175
- import cm from "./icons/components/Swich.js";
176
- import sm from "./icons/components/TrendingDown.js";
177
- import dm from "./icons/components/TrendingUp.js";
178
- import lm from "./icons/components/Tutoriales.js";
179
- import Cm from "./icons/components/UnfoldMore.js";
180
- import Am from "./icons/components/Upload.js";
181
- import um from "./icons/components/UserGroup.js";
182
- import Im from "./icons/components/VerifiedUser.js";
183
- import hm from "./icons/components/Virus.js";
184
- import wm from "./icons/components/Visa.js";
185
- import Dm from "./icons/components/VisaRounded.js";
186
- import Pm from "./icons/components/Visibility.js";
187
- import Rm from "./icons/components/VisibilityOff.js";
188
- import bm from "./icons/components/Warning.js";
189
- import Mm from "./icons/components/WavingHand.js";
190
- import Fm from "./icons/components/WeightIcon.js";
191
- import km from "./icons/components/Whatsapp.js";
192
- const nn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
159
+ import Yr from "./icons/components/Save.js";
160
+ import Zr from "./icons/components/Schedule.js";
161
+ import $r from "./icons/components/SearchIcon.js";
162
+ import om from "./icons/components/Send.js";
163
+ import rm from "./icons/components/Settings.js";
164
+ import mm from "./icons/components/Share.js";
165
+ import im from "./icons/components/ShieldWithHeart.js";
166
+ import tm from "./icons/components/SmallFamily.js";
167
+ import em from "./icons/components/Smartphone.js";
168
+ import nm from "./icons/components/SortArrowsAsc.js";
169
+ import pm from "./icons/components/SortArrowsDefault.js";
170
+ import gm from "./icons/components/SortArrowsDesc.js";
171
+ import am from "./icons/components/StepBlocked.js";
172
+ import Sm from "./icons/components/StepDone.js";
173
+ import fm from "./icons/components/StepInProgress.js";
174
+ import vm from "./icons/components/StepPending.js";
175
+ import cm from "./icons/components/Stethoscope.js";
176
+ import sm from "./icons/components/Swich.js";
177
+ import dm from "./icons/components/TrendingDown.js";
178
+ import lm from "./icons/components/TrendingUp.js";
179
+ import Cm from "./icons/components/Tutoriales.js";
180
+ import Am from "./icons/components/UnfoldMore.js";
181
+ import um from "./icons/components/Upload.js";
182
+ import Im from "./icons/components/UserGroup.js";
183
+ import hm from "./icons/components/VerifiedUser.js";
184
+ import wm from "./icons/components/Virus.js";
185
+ import Dm from "./icons/components/Visa.js";
186
+ import Pm from "./icons/components/VisaRounded.js";
187
+ import Rm from "./icons/components/Visibility.js";
188
+ import bm from "./icons/components/VisibilityOff.js";
189
+ import Mm from "./icons/components/Warning.js";
190
+ import Fm from "./icons/components/WavingHand.js";
191
+ import km from "./icons/components/WeightIcon.js";
192
+ import ym from "./icons/components/Whatsapp.js";
193
+ const gn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
193
194
  __proto__: null,
194
195
  AccountBalance: o,
195
196
  AccountCircle: r,
@@ -349,40 +350,41 @@ const nn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
349
350
  Replay: Jr,
350
351
  Reply: Qr,
351
352
  Riñones: Xr,
352
- Schedule: Yr,
353
- SearchIcon: Zr,
354
- Send: $r,
355
- Settings: om,
356
- Share: rm,
357
- ShieldWithHeart: mm,
358
- SmallFamily: im,
359
- Smartphone: tm,
360
- SortArrowsAsc: em,
361
- SortArrowsDefault: nm,
362
- SortArrowsDesc: pm,
363
- StepBlocked: gm,
364
- StepDone: am,
365
- StepInProgress: Sm,
366
- StepPending: fm,
367
- Stethoscope: vm,
368
- Swich: cm,
369
- TrendingDown: sm,
370
- TrendingUp: dm,
371
- Tutoriales: lm,
372
- UnfoldMore: Cm,
373
- Upload: Am,
374
- UserGroup: um,
375
- VerifiedUser: Im,
376
- Virus: hm,
377
- Visa: wm,
378
- VisaRounded: Dm,
379
- Visibility: Pm,
380
- VisibilityOff: Rm,
381
- Warning: bm,
382
- WavingHand: Mm,
383
- WeightIcon: Fm,
384
- Whatsapp: km
353
+ Save: Yr,
354
+ Schedule: Zr,
355
+ SearchIcon: $r,
356
+ Send: om,
357
+ Settings: rm,
358
+ Share: mm,
359
+ ShieldWithHeart: im,
360
+ SmallFamily: tm,
361
+ Smartphone: em,
362
+ SortArrowsAsc: nm,
363
+ SortArrowsDefault: pm,
364
+ SortArrowsDesc: gm,
365
+ StepBlocked: am,
366
+ StepDone: Sm,
367
+ StepInProgress: fm,
368
+ StepPending: vm,
369
+ Stethoscope: cm,
370
+ Swich: sm,
371
+ TrendingDown: dm,
372
+ TrendingUp: lm,
373
+ Tutoriales: Cm,
374
+ UnfoldMore: Am,
375
+ Upload: um,
376
+ UserGroup: Im,
377
+ VerifiedUser: hm,
378
+ Virus: wm,
379
+ Visa: Dm,
380
+ VisaRounded: Pm,
381
+ Visibility: Rm,
382
+ VisibilityOff: bm,
383
+ Warning: Mm,
384
+ WavingHand: Fm,
385
+ WeightIcon: km,
386
+ Whatsapp: ym
385
387
  }, Symbol.toStringTag, { value: "Module" }));
386
388
  export {
387
- nn as I
389
+ gn as I
388
390
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bmi-next-brokers",
3
3
  "description": "Componentes de UI para proyecto BMI Next Brokers",
4
- "version": "2.3.8",
4
+ "version": "2.4.0",
5
5
  "author": "BMI Ahorro España",
6
6
  "contributors": [
7
7
  "José Ramón Jiménez <jrjimenez@bmicos.com>",