bmi-next-brokers 1.1.8 → 1.2.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.
- package/dist/assets/CompactFileUpload.css +1 -1
- package/dist/assets/FileUpload.css +1 -1
- package/dist/assets/index7.css +1 -1
- package/dist/components/Button/Button.d.ts +1 -1
- package/dist/components/FileUpload/CompactFileUpload.d.ts +1 -0
- package/dist/components/FileUpload/CompactFileUpload.js +157 -162
- package/dist/components/FileUpload/FileUpload.js +119 -117
- package/dist/components/modal/index.d.ts +3 -0
- package/dist/components/modal/index.js +90 -75
- package/dist/icons/Icon.js +1 -1
- package/dist/icons/components/ArrowForward.js +37 -8
- package/dist/icons/components/ComputerCancel.d.ts +3 -0
- package/dist/icons/components/ComputerCancel.js +39 -0
- package/dist/icons/components/Notifications.js +8 -37
- package/dist/icons/components/Paid.d.ts +3 -0
- package/dist/icons/components/Paid.js +22 -0
- package/dist/icons/components/ProductIcon.d.ts +3 -0
- package/dist/icons/components/ProductIcon.js +39 -0
- package/dist/icons/components/Upload.d.ts +3 -0
- package/dist/icons/components/Upload.js +39 -0
- package/dist/icons/components/index.d.ts +4 -1
- package/dist/icons/components/index.js +106 -100
- package/dist/icons/index.d.ts +4 -0
- package/dist/icons/index.js +160 -152
- package/dist/index-9HOVLbts.js +222 -0
- package/package.json +1 -1
- package/dist/index-CYre5lRF.js +0 -214
|
@@ -1,10 +1,39 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
const
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { jsxs as e, jsx as r } from "react/jsx-runtime";
|
|
2
|
+
const s = (a) => /* @__PURE__ */ e(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
fill: "none",
|
|
7
|
+
viewBox: "0 0 20 20",
|
|
8
|
+
width: "1em",
|
|
9
|
+
height: "1em",
|
|
10
|
+
...a,
|
|
11
|
+
children: [
|
|
12
|
+
/* @__PURE__ */ r(
|
|
13
|
+
"mask",
|
|
14
|
+
{
|
|
15
|
+
id: "arrow_forward_svg__a",
|
|
16
|
+
width: 20,
|
|
17
|
+
height: 20,
|
|
18
|
+
x: 0,
|
|
19
|
+
y: 0,
|
|
20
|
+
maskUnits: "userSpaceOnUse",
|
|
21
|
+
style: {
|
|
22
|
+
maskType: "alpha"
|
|
23
|
+
},
|
|
24
|
+
children: /* @__PURE__ */ r("path", { fill: "currentColor", d: "M0 0h20v20H0z" })
|
|
25
|
+
}
|
|
26
|
+
),
|
|
27
|
+
/* @__PURE__ */ r("g", { mask: "url(#arrow_forward_svg__a)", children: /* @__PURE__ */ r(
|
|
28
|
+
"path",
|
|
29
|
+
{
|
|
30
|
+
fill: "currentColor",
|
|
31
|
+
d: "M13.48 10.835H3.334V9.168H13.48L8.813 4.502 10 3.335l6.667 6.667L10 16.668l-1.187-1.166z"
|
|
32
|
+
}
|
|
33
|
+
) })
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
);
|
|
8
37
|
export {
|
|
9
|
-
|
|
38
|
+
s as default
|
|
10
39
|
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { jsxs as l, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
const r = (a) => /* @__PURE__ */ l(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
fill: "none",
|
|
7
|
+
viewBox: "0 0 34 34",
|
|
8
|
+
width: "1em",
|
|
9
|
+
height: "1em",
|
|
10
|
+
...a,
|
|
11
|
+
children: [
|
|
12
|
+
/* @__PURE__ */ e(
|
|
13
|
+
"mask",
|
|
14
|
+
{
|
|
15
|
+
id: "computer_cancel_svg__a",
|
|
16
|
+
width: 34,
|
|
17
|
+
height: 34,
|
|
18
|
+
x: 0,
|
|
19
|
+
y: 0,
|
|
20
|
+
maskUnits: "userSpaceOnUse",
|
|
21
|
+
style: {
|
|
22
|
+
maskType: "alpha"
|
|
23
|
+
},
|
|
24
|
+
children: /* @__PURE__ */ e("path", { fill: "currentColor", d: "M0 0h33.714v33.714H0z" })
|
|
25
|
+
}
|
|
26
|
+
),
|
|
27
|
+
/* @__PURE__ */ e("g", { mask: "url(#computer_cancel_svg__a)", children: /* @__PURE__ */ e(
|
|
28
|
+
"path",
|
|
29
|
+
{
|
|
30
|
+
fill: "currentColor",
|
|
31
|
+
d: "m16.858 16.717 2.634 2.669q.42.42 1 .421.58 0 1.001-.421.422-.422.422-1.001 0-.58-.422-1.001l-2.669-2.634 2.67-2.634q.42-.42.42-1t-.42-1.002a1.37 1.37 0 0 0-1.001-.421q-.58 0-1.001.421l-2.634 2.67-2.634-2.67a1.37 1.37 0 0 0-1.001-.421q-.58 0-1.001.421-.421.422-.421 1.001 0 .58.42 1.001l2.67 2.634-2.67 2.634q-.42.422-.42 1 0 .58.42 1.002.422.42 1.002.421.58 0 1-.421zM2.81 29.5a1.36 1.36 0 0 1-1-.404 1.36 1.36 0 0 1-.405-1q0-.598.404-1.002a1.36 1.36 0 0 1 1.001-.404h28.095q.597 0 1.001.404t.404 1.001-.404 1.001a1.36 1.36 0 0 1-1 .404zm2.81-4.214a2.7 2.7 0 0 1-1.985-.826 2.7 2.7 0 0 1-.825-1.984V7.024q0-1.16.825-1.984a2.7 2.7 0 0 1 1.985-.826h22.476q1.158 0 1.984.826.825.825.825 1.984v15.452q0 1.159-.825 1.985-.825.825-1.984.825zm0-2.81h22.476V7.024H5.62z"
|
|
32
|
+
}
|
|
33
|
+
) })
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
);
|
|
37
|
+
export {
|
|
38
|
+
r as default
|
|
39
|
+
};
|
|
@@ -1,39 +1,10 @@
|
|
|
1
|
-
import { jsxs as a, jsx as
|
|
2
|
-
const
|
|
3
|
-
"
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
width: "1em",
|
|
9
|
-
height: "1em",
|
|
10
|
-
...i,
|
|
11
|
-
children: [
|
|
12
|
-
/* @__PURE__ */ t(
|
|
13
|
-
"mask",
|
|
14
|
-
{
|
|
15
|
-
id: "notifications_svg__a",
|
|
16
|
-
width: 20,
|
|
17
|
-
height: 20,
|
|
18
|
-
x: 0,
|
|
19
|
-
y: 0,
|
|
20
|
-
maskUnits: "userSpaceOnUse",
|
|
21
|
-
style: {
|
|
22
|
-
maskType: "alpha"
|
|
23
|
-
},
|
|
24
|
-
children: /* @__PURE__ */ t("path", { fill: "currentColor", d: "M0 0h20v20H0z" })
|
|
25
|
-
}
|
|
26
|
-
),
|
|
27
|
-
/* @__PURE__ */ t("g", { mask: "url(#notifications_svg__a)", children: /* @__PURE__ */ t(
|
|
28
|
-
"path",
|
|
29
|
-
{
|
|
30
|
-
fill: "currentColor",
|
|
31
|
-
d: "M4.703 15.67a.85.85 0 0 1-.617-.248.82.82 0 0 1-.254-.611q0-.363.25-.616a.83.83 0 0 1 .615-.253h.075V9.11q0-1.877 1.142-3.315t2.973-1.785V2.947q0-.465.325-.79t.79-.325q.463 0 .789.325.325.325.325.79V4.01q1.835.348 2.975 1.783 1.14 1.434 1.14 3.317v4.83h.075q.364 0 .614.25a.83.83 0 0 1 .25.61.84.84 0 0 1-.25.616.83.83 0 0 1-.613.254zm5.299 2.556q-.645 0-1.1-.457a1.5 1.5 0 0 1-.455-1.098h3.114q0 .65-.458 1.102a1.5 1.5 0 0 1-1.101.453m-3.5-4.284h7V9.11q0-1.458-1.021-2.48-1.021-1.02-2.48-1.02-1.458 0-2.479 1.02-1.02 1.022-1.02 2.48z"
|
|
32
|
-
}
|
|
33
|
-
) })
|
|
34
|
-
]
|
|
35
|
-
}
|
|
36
|
-
);
|
|
1
|
+
import { jsxs as a, jsx as i } from "react/jsx-runtime";
|
|
2
|
+
const h = (t) => /* @__PURE__ */ a("svg", { xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 20 20", width: "1em", height: "1em", ...t, children: [
|
|
3
|
+
/* @__PURE__ */ i("mask", { id: "notifications_svg__a", width: 20, height: 20, x: 0, y: 0, maskUnits: "userSpaceOnUse", style: {
|
|
4
|
+
maskType: "alpha"
|
|
5
|
+
}, children: /* @__PURE__ */ i("path", { fill: "currentColor", d: "M0 0h20v20H0z" }) }),
|
|
6
|
+
/* @__PURE__ */ i("g", { mask: "url(#notifications_svg__a)", children: /* @__PURE__ */ i("path", { fill: "#2054A5", d: "M4.703 15.67a.85.85 0 0 1-.617-.248.82.82 0 0 1-.254-.611q0-.363.25-.616a.83.83 0 0 1 .615-.253h.075V9.11q0-1.877 1.142-3.315t2.973-1.785V2.947q0-.465.325-.79t.79-.325q.463 0 .789.325.325.325.325.79V4.01q1.835.348 2.975 1.783 1.14 1.434 1.14 3.317v4.83h.075q.364 0 .614.25a.83.83 0 0 1 .25.61.84.84 0 0 1-.25.616.83.83 0 0 1-.613.254zm5.299 2.556q-.645 0-1.1-.457a1.5 1.5 0 0 1-.455-1.098h3.114q0 .65-.458 1.102a1.5 1.5 0 0 1-1.101.453m-3.5-4.284h7V9.11q0-1.458-1.021-2.48-1.021-1.02-2.48-1.02-1.458 0-2.479 1.02-1.02 1.022-1.02 2.48z" }) })
|
|
7
|
+
] });
|
|
37
8
|
export {
|
|
38
|
-
|
|
9
|
+
h as default
|
|
39
10
|
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { jsx as a } from "react/jsx-runtime";
|
|
2
|
+
const e = (q) => /* @__PURE__ */ a(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
fill: "none",
|
|
7
|
+
viewBox: "0 0 14 14",
|
|
8
|
+
width: "1em",
|
|
9
|
+
height: "1em",
|
|
10
|
+
...q,
|
|
11
|
+
children: /* @__PURE__ */ a(
|
|
12
|
+
"path",
|
|
13
|
+
{
|
|
14
|
+
fill: "currentColor",
|
|
15
|
+
d: "M6.536 13.071a6.4 6.4 0 0 1-2.54-.51 6.6 6.6 0 0 1-2.083-1.403A6.6 6.6 0 0 1 .51 9.075 6.4 6.4 0 0 1 0 6.535Q0 5.17.51 3.988t1.403-2.075A6.6 6.6 0 0 1 3.996.51 6.4 6.4 0 0 1 6.536 0Q7.9 0 9.083.51a6.6 6.6 0 0 1 3.478 3.478q.51 1.182.51 2.548a6.4 6.4 0 0 1-.51 2.539 6.58 6.58 0 0 1-3.478 3.486q-1.182.51-2.548.51m0-1.383q2.15 0 3.651-1.501t1.5-3.651-1.5-3.652-3.651-1.5q-2.15 0-3.652 1.5-1.5 1.5-1.5 3.652 0 2.15 1.5 3.651t3.652 1.5m-.017-.753q.245 0 .422-.148a.5.5 0 0 0 .176-.405v-.206q.81-.133 1.338-.7a1.92 1.92 0 0 0 .529-1.357q0-.762-.487-1.322-.488-.56-1.4-.877-.946-.333-1.288-.6a.82.82 0 0 1-.342-.671q0-.31.29-.512.291-.203.738-.203.32 0 .569.096t.418.287q.179.216.4.275.22.06.415-.036a.57.57 0 0 0 .295-.322.45.45 0 0 0-.053-.406 1.96 1.96 0 0 0-.617-.614 2.5 2.5 0 0 0-.805-.319v-.206a.5.5 0 0 0-.17-.408.6.6 0 0 0-.412-.146.6.6 0 0 0-.411.147.5.5 0 0 0-.17.407v.206q-.767.19-1.208.683a1.61 1.61 0 0 0-.442 1.108q0 .732.497 1.26.497.53 1.699.979.781.292 1.068.56a.84.84 0 0 1 .286.634q0 .417-.33.71-.33.291-.855.291-.425 0-.776-.208a1.45 1.45 0 0 1-.546-.58A.74.74 0 0 0 5 8.026a.53.53 0 0 0-.434-.002.52.52 0 0 0-.333.324.55.55 0 0 0 .029.445q.27.52.716.879.446.358.959.487v.215q0 .255.168.407a.6.6 0 0 0 .414.154"
|
|
16
|
+
}
|
|
17
|
+
)
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
export {
|
|
21
|
+
e as default
|
|
22
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { jsxs as l, jsx as a } from "react/jsx-runtime";
|
|
2
|
+
const r = (t) => /* @__PURE__ */ l(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
fill: "none",
|
|
7
|
+
viewBox: "0 0 16 16",
|
|
8
|
+
width: "1em",
|
|
9
|
+
height: "1em",
|
|
10
|
+
...t,
|
|
11
|
+
children: [
|
|
12
|
+
/* @__PURE__ */ a(
|
|
13
|
+
"mask",
|
|
14
|
+
{
|
|
15
|
+
id: "product_icon_svg__a",
|
|
16
|
+
width: 16,
|
|
17
|
+
height: 16,
|
|
18
|
+
x: 0,
|
|
19
|
+
y: 0,
|
|
20
|
+
maskUnits: "userSpaceOnUse",
|
|
21
|
+
style: {
|
|
22
|
+
maskType: "alpha"
|
|
23
|
+
},
|
|
24
|
+
children: /* @__PURE__ */ a("path", { fill: "currentColor", d: "M0 0h16v16H0z" })
|
|
25
|
+
}
|
|
26
|
+
),
|
|
27
|
+
/* @__PURE__ */ a("g", { mask: "url(#product_icon_svg__a)", children: /* @__PURE__ */ a(
|
|
28
|
+
"path",
|
|
29
|
+
{
|
|
30
|
+
fill: "currentcolor",
|
|
31
|
+
d: "M8.233 10.833a2.2 2.2 0 0 1-1.616.667A2.2 2.2 0 0 1 5 10.833a2.2 2.2 0 0 1-.667-1.608q0-.942.667-1.608l2.767-2.784a2.2 2.2 0 0 1 1.616-.666q.951 0 1.617.666.666.667.667 1.609 0 .941-.667 1.608zm-2.3-.95q.384.384.792.275t.558-.258l.917-.933-1.333-1.334-.934.917a.91.91 0 0 0-.283.667q0 .383.283.666m4.134-4.1q-.384-.383-.792-.275-.408.11-.558.259L7.8 6.7l1.333 1.333.934-.916a.91.91 0 0 0 .283-.667.91.91 0 0 0-.283-.667m-6.734 8.05q-.55 0-.941-.391A1.28 1.28 0 0 1 2 12.5V3.167q0-.55.392-.942.391-.392.941-.392h2.8q.217-.6.725-.966Q7.368.5 8 .5q.633 0 1.142.367.508.366.725.966h2.8q.55 0 .941.392.392.391.392.942V12.5q0 .55-.392.942a1.28 1.28 0 0 1-.941.391zm0-1.333h9.334V3.167H3.333zM8 2.667a.486.486 0 0 0 .5-.5.486.486 0 0 0-.5-.5.486.486 0 0 0-.5.5.486.486 0 0 0 .5.5"
|
|
32
|
+
}
|
|
33
|
+
) })
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
);
|
|
37
|
+
export {
|
|
38
|
+
r as default
|
|
39
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { jsxs as e, jsx as a } from "react/jsx-runtime";
|
|
2
|
+
const t = (l) => /* @__PURE__ */ e(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
fill: "none",
|
|
7
|
+
viewBox: "0 0 16 16",
|
|
8
|
+
width: "1em",
|
|
9
|
+
height: "1em",
|
|
10
|
+
...l,
|
|
11
|
+
children: [
|
|
12
|
+
/* @__PURE__ */ a(
|
|
13
|
+
"mask",
|
|
14
|
+
{
|
|
15
|
+
id: "upload_svg__a",
|
|
16
|
+
width: 16,
|
|
17
|
+
height: 16,
|
|
18
|
+
x: 0,
|
|
19
|
+
y: 0,
|
|
20
|
+
maskUnits: "userSpaceOnUse",
|
|
21
|
+
style: {
|
|
22
|
+
maskType: "alpha"
|
|
23
|
+
},
|
|
24
|
+
children: /* @__PURE__ */ a("path", { fill: "currentColor", d: "M0 0h16v16H0z" })
|
|
25
|
+
}
|
|
26
|
+
),
|
|
27
|
+
/* @__PURE__ */ a("g", { mask: "url(#upload_svg__a)", children: /* @__PURE__ */ a(
|
|
28
|
+
"path",
|
|
29
|
+
{
|
|
30
|
+
fill: "currentColor",
|
|
31
|
+
d: "M4.443 12.936q-.575 0-.977-.405a1.34 1.34 0 0 1-.402-.979v-.508a.67.67 0 0 1 .2-.492.66.66 0 0 1 .489-.2q.29 0 .492.2a.66.66 0 0 1 .203.492v.508h7.104v-.508a.67.67 0 0 1 .2-.492.66.66 0 0 1 .488-.2q.29 0 .493.2a.66.66 0 0 1 .202.492v.508q0 .575-.404.98-.405.403-.98.403zm2.865-8.029L6.067 6.15a.67.67 0 0 1-.982.008.68.68 0 0 1 .008-.981l2.422-2.427a.8.8 0 0 1 .227-.147.68.68 0 0 1 .522 0 .7.7 0 0 1 .22.147l2.427 2.426a.667.667 0 0 1 .008.961.678.678 0 0 1-.986-.004L8.692 4.907V9.66a.67.67 0 0 1-.2.492.66.66 0 0 1-.489.2.68.68 0 0 1-.492-.2.66.66 0 0 1-.203-.492z"
|
|
32
|
+
}
|
|
33
|
+
) })
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
);
|
|
37
|
+
export {
|
|
38
|
+
t as default
|
|
39
|
+
};
|
|
@@ -7,7 +7,6 @@ export { default as AlertIcon } from './AlertIcon';
|
|
|
7
7
|
export { default as Apnfd } from './Apnfd';
|
|
8
8
|
export { default as Approve } from './Approve';
|
|
9
9
|
export { default as ArrowBack } from './ArrowBack';
|
|
10
|
-
export { default as ArrowForward } from './ArrowForward';
|
|
11
10
|
export { default as ArrowsOutward } from './ArrowsOutward';
|
|
12
11
|
export { default as AttachFile } from './AttachFile';
|
|
13
12
|
export { default as BusinessCenter } from './BusinessCenter';
|
|
@@ -20,6 +19,7 @@ export { default as CheckIcon } from './CheckIcon';
|
|
|
20
19
|
export { default as ChevronLeft } from './ChevronLeft';
|
|
21
20
|
export { default as Close } from './Close';
|
|
22
21
|
export { default as Comisiones } from './Comisiones';
|
|
22
|
+
export { default as ComputerCancel } from './ComputerCancel';
|
|
23
23
|
export { default as ComunicacionesIcon } from './ComunicacionesIcon';
|
|
24
24
|
export { default as ContentCopy } from './ContentCopy';
|
|
25
25
|
export { default as ConyugeIcon } from './ConyugeIcon';
|
|
@@ -61,12 +61,14 @@ export { default as Notes } from './Notes';
|
|
|
61
61
|
export { default as Notifications } from './Notifications';
|
|
62
62
|
export { default as NumPolizaIcon } from './NumPolizaIcon';
|
|
63
63
|
export { default as OpenInFull } from './OpenInFull';
|
|
64
|
+
export { default as Paid } from './Paid';
|
|
64
65
|
export { default as Pep } from './Pep';
|
|
65
66
|
export { default as Person } from './Person';
|
|
66
67
|
export { default as PersonCancel } from './PersonCancel';
|
|
67
68
|
export { default as PhotoLibrary } from './PhotoLibrary';
|
|
68
69
|
export { default as Planet } from './Planet';
|
|
69
70
|
export { default as PolizaIcon } from './PolizaIcon';
|
|
71
|
+
export { default as ProductIcon } from './ProductIcon';
|
|
70
72
|
export { default as Public } from './Public';
|
|
71
73
|
export { default as ReembolsosIcon } from './ReembolsosIcon';
|
|
72
74
|
export { default as Refresh } from './Refresh';
|
|
@@ -80,6 +82,7 @@ export { default as SmallFamily } from './SmallFamily';
|
|
|
80
82
|
export { default as Smartphone } from './Smartphone';
|
|
81
83
|
export { default as Tutoriales } from './Tutoriales';
|
|
82
84
|
export { default as UnfoldMore } from './UnfoldMore';
|
|
85
|
+
export { default as Upload } from './Upload';
|
|
83
86
|
export { default as VerifiedUser } from './VerifiedUser';
|
|
84
87
|
export { default as Visibility } from './Visibility';
|
|
85
88
|
export { default as VisibilityOff } from './VisibilityOff';
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
import { default as
|
|
1
|
+
import { default as a } from "./ArrowDown.js";
|
|
2
2
|
import { default as t } from "./ArrowUp.js";
|
|
3
3
|
import { default as l } from "./Add.js";
|
|
4
|
-
import { default as
|
|
4
|
+
import { default as s } from "./AddAPhoto.js";
|
|
5
5
|
import { default as u } from "./AddIcon.js";
|
|
6
6
|
import { default as x } from "./AlertIcon.js";
|
|
7
7
|
import { default as i } from "./Apnfd.js";
|
|
8
8
|
import { default as I } from "./Approve.js";
|
|
9
|
-
import { default as
|
|
10
|
-
import { default as
|
|
11
|
-
import { default as
|
|
12
|
-
import { default as
|
|
13
|
-
import { default as M } from "./
|
|
14
|
-
import { default as S } from "./
|
|
15
|
-
import { default as R } from "./
|
|
16
|
-
import { default as
|
|
17
|
-
import { default as
|
|
18
|
-
import { default as
|
|
19
|
-
import { default as v } from "./
|
|
20
|
-
import { default as W } from "./
|
|
21
|
-
import { default as K } from "./
|
|
22
|
-
import { default as T } from "./
|
|
9
|
+
import { default as h } from "./ArrowBack.js";
|
|
10
|
+
import { default as P } from "./ArrowsOutward.js";
|
|
11
|
+
import { default as w } from "./AttachFile.js";
|
|
12
|
+
import { default as F } from "./BusinessCenter.js";
|
|
13
|
+
import { default as M } from "./CalendarIcon.js";
|
|
14
|
+
import { default as S } from "./Call.js";
|
|
15
|
+
import { default as R } from "./CancelIcon.js";
|
|
16
|
+
import { default as k } from "./Certificado.js";
|
|
17
|
+
import { default as H } from "./ChatBubble.js";
|
|
18
|
+
import { default as O } from "./CheckIcon.js";
|
|
19
|
+
import { default as v } from "./ChevronLeft.js";
|
|
20
|
+
import { default as W } from "./Close.js";
|
|
21
|
+
import { default as K } from "./Comisiones.js";
|
|
22
|
+
import { default as T } from "./ComputerCancel.js";
|
|
23
23
|
import { default as G } from "./ComunicacionesIcon.js";
|
|
24
24
|
import { default as Q } from "./ContentCopy.js";
|
|
25
25
|
import { default as Y } from "./ConyugeIcon.js";
|
|
26
26
|
import { default as _ } from "./CotizacionesIcon.js";
|
|
27
27
|
import { default as oo } from "./Credentials.js";
|
|
28
|
-
import { default as
|
|
28
|
+
import { default as ao } from "./CreditCard.js";
|
|
29
29
|
import { default as to } from "./DashboardIcon.js";
|
|
30
30
|
import { default as lo } from "./Delete.js";
|
|
31
31
|
import { default as po } from "./DeniedIcon.js";
|
|
@@ -33,15 +33,15 @@ import { default as mo } from "./Distance.js";
|
|
|
33
33
|
import { default as no } from "./Documentos.js";
|
|
34
34
|
import { default as co } from "./DownloadIcon.js";
|
|
35
35
|
import { default as Co } from "./EditIcon.js";
|
|
36
|
-
import { default as
|
|
36
|
+
import { default as Ao } from "./Female.js";
|
|
37
37
|
import { default as bo } from "./Filter.js";
|
|
38
|
-
import { default as
|
|
38
|
+
import { default as yo } from "./Folder.js";
|
|
39
39
|
import { default as Do } from "./FondosExtranjero.js";
|
|
40
40
|
import { default as go } from "./Fumador.js";
|
|
41
41
|
import { default as Lo } from "./HeadsetMic.js";
|
|
42
|
-
import { default as
|
|
43
|
-
import { default as
|
|
44
|
-
import { default as
|
|
42
|
+
import { default as Uo } from "./HeightIcon.js";
|
|
43
|
+
import { default as Bo } from "./Help.js";
|
|
44
|
+
import { default as No } from "./HistorialIcon.js";
|
|
45
45
|
import { default as Vo } from "./IdCodigoBroker.js";
|
|
46
46
|
import { default as zo } from "./Info.js";
|
|
47
47
|
import { default as Eo } from "./InfoFinanciera.js";
|
|
@@ -52,69 +52,72 @@ import { default as Xo } from "./LocationSearching.js";
|
|
|
52
52
|
import { default as Zo } from "./LockIcon.js";
|
|
53
53
|
import { default as $o } from "./MailIcon.js";
|
|
54
54
|
import { default as ee } from "./Male.js";
|
|
55
|
-
import { default as
|
|
55
|
+
import { default as re } from "./MasAcciones.js";
|
|
56
56
|
import { default as fe } from "./Medical.js";
|
|
57
|
-
import { default as
|
|
57
|
+
import { default as de } from "./Menu.js";
|
|
58
58
|
import { default as pe } from "./MoreVert.js";
|
|
59
59
|
import { default as me } from "./NextIcon.js";
|
|
60
60
|
import { default as ne } from "./Notes.js";
|
|
61
61
|
import { default as ce } from "./Notifications.js";
|
|
62
62
|
import { default as Ce } from "./NumPolizaIcon.js";
|
|
63
|
-
import { default as
|
|
64
|
-
import { default as be } from "./
|
|
65
|
-
import { default as
|
|
66
|
-
import { default as De } from "./
|
|
67
|
-
import { default as ge } from "./
|
|
68
|
-
import { default as Le } from "./
|
|
69
|
-
import { default as
|
|
70
|
-
import { default as
|
|
71
|
-
import { default as
|
|
72
|
-
import { default as Ve } from "./
|
|
73
|
-
import { default as ze } from "./
|
|
74
|
-
import { default as Ee } from "./
|
|
75
|
-
import { default as je } from "./
|
|
76
|
-
import { default as qe } from "./
|
|
77
|
-
import { default as Je } from "./
|
|
78
|
-
import { default as Xe } from "./
|
|
79
|
-
import { default as Ze } from "./
|
|
80
|
-
import { default as $e } from "./
|
|
81
|
-
import { default as
|
|
82
|
-
import { default as
|
|
83
|
-
import { default as
|
|
84
|
-
import { default as
|
|
85
|
-
import { default as
|
|
86
|
-
import { default as
|
|
87
|
-
import { default as
|
|
88
|
-
import { default as
|
|
63
|
+
import { default as Ae } from "./OpenInFull.js";
|
|
64
|
+
import { default as be } from "./Paid.js";
|
|
65
|
+
import { default as ye } from "./Pep.js";
|
|
66
|
+
import { default as De } from "./Person.js";
|
|
67
|
+
import { default as ge } from "./PersonCancel.js";
|
|
68
|
+
import { default as Le } from "./PhotoLibrary.js";
|
|
69
|
+
import { default as Ue } from "./Planet.js";
|
|
70
|
+
import { default as Be } from "./PolizaIcon.js";
|
|
71
|
+
import { default as Ne } from "./ProductIcon.js";
|
|
72
|
+
import { default as Ve } from "./Public.js";
|
|
73
|
+
import { default as ze } from "./ReembolsosIcon.js";
|
|
74
|
+
import { default as Ee } from "./Refresh.js";
|
|
75
|
+
import { default as je } from "./Renovaciones.js";
|
|
76
|
+
import { default as qe } from "./Replay.js";
|
|
77
|
+
import { default as Je } from "./Reply.js";
|
|
78
|
+
import { default as Xe } from "./SearchIcon.js";
|
|
79
|
+
import { default as Ze } from "./Send.js";
|
|
80
|
+
import { default as $e } from "./Share.js";
|
|
81
|
+
import { default as ea } from "./SmallFamily.js";
|
|
82
|
+
import { default as ra } from "./Smartphone.js";
|
|
83
|
+
import { default as fa } from "./Tutoriales.js";
|
|
84
|
+
import { default as da } from "./UnfoldMore.js";
|
|
85
|
+
import { default as pa } from "./Upload.js";
|
|
86
|
+
import { default as ma } from "./VerifiedUser.js";
|
|
87
|
+
import { default as na } from "./Visibility.js";
|
|
88
|
+
import { default as ca } from "./VisibilityOff.js";
|
|
89
|
+
import { default as Ca } from "./Warning.js";
|
|
90
|
+
import { default as Aa } from "./WeightIcon.js";
|
|
91
|
+
import { default as ba } from "./Whatsapp.js";
|
|
89
92
|
export {
|
|
90
93
|
l as Add,
|
|
91
|
-
|
|
94
|
+
s as AddAPhoto,
|
|
92
95
|
u as AddIcon,
|
|
93
96
|
x as AlertIcon,
|
|
94
97
|
i as Apnfd,
|
|
95
98
|
I as Approve,
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
w as ArrowForward,
|
|
99
|
+
h as ArrowBack,
|
|
100
|
+
a as ArrowDown,
|
|
99
101
|
t as ArrowUp,
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
102
|
+
P as ArrowsOutward,
|
|
103
|
+
w as AttachFile,
|
|
104
|
+
F as BusinessCenter,
|
|
105
|
+
M as CalendarIcon,
|
|
106
|
+
S as Call,
|
|
107
|
+
R as CancelIcon,
|
|
108
|
+
k as Certificado,
|
|
109
|
+
H as ChatBubble,
|
|
110
|
+
O as CheckIcon,
|
|
111
|
+
v as ChevronLeft,
|
|
112
|
+
W as Close,
|
|
113
|
+
K as Comisiones,
|
|
114
|
+
T as ComputerCancel,
|
|
112
115
|
G as ComunicacionesIcon,
|
|
113
116
|
Q as ContentCopy,
|
|
114
117
|
Y as ConyugeIcon,
|
|
115
118
|
_ as CotizacionesIcon,
|
|
116
119
|
oo as Credentials,
|
|
117
|
-
|
|
120
|
+
ao as CreditCard,
|
|
118
121
|
to as DashboardIcon,
|
|
119
122
|
lo as Delete,
|
|
120
123
|
po as DeniedIcon,
|
|
@@ -122,15 +125,15 @@ export {
|
|
|
122
125
|
no as Documentos,
|
|
123
126
|
co as DownloadIcon,
|
|
124
127
|
Co as EditIcon,
|
|
125
|
-
|
|
128
|
+
Ao as Female,
|
|
126
129
|
bo as Filter,
|
|
127
|
-
|
|
130
|
+
yo as Folder,
|
|
128
131
|
Do as FondosExtranjero,
|
|
129
132
|
go as Fumador,
|
|
130
133
|
Lo as HeadsetMic,
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
+
Uo as HeightIcon,
|
|
135
|
+
Bo as Help,
|
|
136
|
+
No as HistorialIcon,
|
|
134
137
|
Vo as IdCodigoBroker,
|
|
135
138
|
zo as Info,
|
|
136
139
|
Eo as InfoFinanciera,
|
|
@@ -141,38 +144,41 @@ export {
|
|
|
141
144
|
Zo as LockIcon,
|
|
142
145
|
$o as MailIcon,
|
|
143
146
|
ee as Male,
|
|
144
|
-
|
|
147
|
+
re as MasAcciones,
|
|
145
148
|
fe as Medical,
|
|
146
|
-
|
|
149
|
+
de as Menu,
|
|
147
150
|
pe as MoreVert,
|
|
148
151
|
me as NextIcon,
|
|
149
152
|
ne as Notes,
|
|
150
153
|
ce as Notifications,
|
|
151
154
|
Ce as NumPolizaIcon,
|
|
152
|
-
|
|
153
|
-
be as
|
|
154
|
-
|
|
155
|
-
De as
|
|
156
|
-
ge as
|
|
157
|
-
Le as
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
Ve as
|
|
162
|
-
ze as
|
|
163
|
-
Ee as
|
|
164
|
-
je as
|
|
165
|
-
qe as
|
|
166
|
-
Je as
|
|
167
|
-
Xe as
|
|
168
|
-
Ze as
|
|
169
|
-
$e as
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
155
|
+
Ae as OpenInFull,
|
|
156
|
+
be as Paid,
|
|
157
|
+
ye as Pep,
|
|
158
|
+
De as Person,
|
|
159
|
+
ge as PersonCancel,
|
|
160
|
+
Le as PhotoLibrary,
|
|
161
|
+
Ue as Planet,
|
|
162
|
+
Be as PolizaIcon,
|
|
163
|
+
Ne as ProductIcon,
|
|
164
|
+
Ve as Public,
|
|
165
|
+
ze as ReembolsosIcon,
|
|
166
|
+
Ee as Refresh,
|
|
167
|
+
je as Renovaciones,
|
|
168
|
+
qe as Replay,
|
|
169
|
+
Je as Reply,
|
|
170
|
+
Xe as SearchIcon,
|
|
171
|
+
Ze as Send,
|
|
172
|
+
$e as Share,
|
|
173
|
+
ea as SmallFamily,
|
|
174
|
+
ra as Smartphone,
|
|
175
|
+
fa as Tutoriales,
|
|
176
|
+
da as UnfoldMore,
|
|
177
|
+
pa as Upload,
|
|
178
|
+
ma as VerifiedUser,
|
|
179
|
+
na as Visibility,
|
|
180
|
+
ca as VisibilityOff,
|
|
181
|
+
Ca as Warning,
|
|
182
|
+
Aa as WeightIcon,
|
|
183
|
+
ba as Whatsapp
|
|
178
184
|
};
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ export { default as Close } from './components/Close';
|
|
|
29
29
|
export { default as ClosePanel } from './components/ClosePanel';
|
|
30
30
|
export { default as CobrarIcon } from './components/CobrarIcon';
|
|
31
31
|
export { default as Comisiones } from './components/Comisiones';
|
|
32
|
+
export { default as ComputerCancel } from './components/ComputerCancel';
|
|
32
33
|
export { default as ComunicacionesIcon } from './components/ComunicacionesIcon';
|
|
33
34
|
export { default as ContentCopy } from './components/ContentCopy';
|
|
34
35
|
export { default as ConyugeIcon } from './components/ConyugeIcon';
|
|
@@ -72,12 +73,14 @@ export { default as Notifications } from './components/Notifications';
|
|
|
72
73
|
export { default as NumPolizaIcon } from './components/NumPolizaIcon';
|
|
73
74
|
export { default as OpenInFull } from './components/OpenInFull';
|
|
74
75
|
export { default as OpenPanel } from './components/OpenPanel';
|
|
76
|
+
export { default as Paid } from './components/Paid';
|
|
75
77
|
export { default as Pep } from './components/Pep';
|
|
76
78
|
export { default as Person } from './components/Person';
|
|
77
79
|
export { default as PersonCancel } from './components/PersonCancel';
|
|
78
80
|
export { default as PhotoLibrary } from './components/PhotoLibrary';
|
|
79
81
|
export { default as Planet } from './components/Planet';
|
|
80
82
|
export { default as PolizaIcon } from './components/PolizaIcon';
|
|
83
|
+
export { default as ProductIcon } from './components/ProductIcon';
|
|
81
84
|
export { default as Public } from './components/Public';
|
|
82
85
|
export { default as ReembolsosIcon } from './components/ReembolsosIcon';
|
|
83
86
|
export { default as Refresh } from './components/Refresh';
|
|
@@ -95,6 +98,7 @@ export { default as StepInProgress } from './components/StepInProgress';
|
|
|
95
98
|
export { default as StepPending } from './components/StepPending';
|
|
96
99
|
export { default as Tutoriales } from './components/Tutoriales';
|
|
97
100
|
export { default as UnfoldMore } from './components/UnfoldMore';
|
|
101
|
+
export { default as Upload } from './components/Upload';
|
|
98
102
|
export { default as UserGroup } from './components/UserGroup';
|
|
99
103
|
export { default as VerifiedUser } from './components/VerifiedUser';
|
|
100
104
|
export { default as Visibility } from './components/Visibility';
|