bmi-next-brokers 2.2.5 → 2.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/FileUpload/CompactFileUpload.js +42 -42
- package/dist/icons/Icon.js +1 -1
- package/dist/icons/components/AccountBalance.js +18 -1
- package/dist/icons/components/AccountCircle.d.ts +3 -0
- package/dist/icons/components/AccountCircle.js +22 -0
- package/dist/icons/components/ChevronRight.js +37 -8
- package/dist/icons/components/Contacto.js +18 -1
- package/dist/icons/components/DocumentoTick.js +36 -7
- package/dist/icons/components/PriceChange.js +18 -1
- package/dist/icons/components/index.d.ts +1 -0
- package/dist/icons/components/index.js +254 -252
- package/dist/icons/index.d.ts +1 -0
- package/dist/icons/index.js +344 -342
- package/dist/index-S4_4Z0mU.js +352 -0
- package/package.json +1 -1
- package/dist/index-CKEe2RWw.js +0 -350
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { jsx as e, jsxs as r, Fragment as
|
|
2
|
-
import { useState as
|
|
1
|
+
import { jsx as e, jsxs as r, Fragment as $ } from "react/jsx-runtime";
|
|
2
|
+
import { useState as k, useRef as X, useEffect as T } from "react";
|
|
3
3
|
import { Icon as h } from "../../icons/Icon.js";
|
|
4
4
|
import { Spinner as Y } from "../Spinner/Spinner.js";
|
|
5
|
-
import { Button as
|
|
5
|
+
import { Button as W } from "../Button/Button.js";
|
|
6
6
|
import '../../assets/CompactFileUpload.css';const Z = "_inputContainer_g5trv_1", tt = "_compactFileUploadContainer_g5trv_9", et = "_fullWidth_g5trv_26", nt = "_dragOver_g5trv_35", at = "_variant_document_g5trv_41", ct = "_icon_g5trv_41", ot = "_variant_add_g5trv_45", it = "_disabled_g5trv_50", lt = "_error_g5trv_61", rt = "_warning_g5trv_69", st = "_inverted_g5trv_78", mt = "_uploadContent_g5trv_103", dt = "_textContent_g5trv_113", pt = "_dragText_g5trv_123", _t = "_hiddenInput_g5trv_153", ht = "_compactFileContent_g5trv_166", vt = "_compactFileIcon_g5trv_174", ut = "_compactIconBackground_g5trv_182", gt = "_compactFileText_g5trv_190", ft = "_compactLabel_g5trv_202", Ct = "_compactFileName_g5trv_209", xt = "_compactStatusText_g5trv_210", Nt = "_success_g5trv_221", Ft = "_loading_g5trv_229", It = "_addIconWrapper_g5trv_233", bt = "_browseText_g5trv_239", wt = "_compactVisibilityIcon_g5trv_246", Dt = "_compactActions_g5trv_255", yt = "_deleteText_g5trv_262", t = {
|
|
7
7
|
inputContainer: Z,
|
|
8
8
|
compactFileUploadContainer: tt,
|
|
@@ -34,7 +34,7 @@ import '../../assets/CompactFileUpload.css';const Z = "_inputContainer_g5trv_1",
|
|
|
34
34
|
compactActions: Dt,
|
|
35
35
|
deleteText: yt
|
|
36
36
|
}, Bt = ({
|
|
37
|
-
variant:
|
|
37
|
+
variant: L = "document",
|
|
38
38
|
label: v,
|
|
39
39
|
error: o,
|
|
40
40
|
success: a,
|
|
@@ -42,11 +42,11 @@ import '../../assets/CompactFileUpload.css';const Z = "_inputContainer_g5trv_1",
|
|
|
42
42
|
loading: c,
|
|
43
43
|
defaultFile: b = null,
|
|
44
44
|
disabled: m = !1,
|
|
45
|
-
inverted:
|
|
46
|
-
browseText:
|
|
45
|
+
inverted: j = !1,
|
|
46
|
+
browseText: B = "Seleccionar archivo",
|
|
47
47
|
clearFileText: g = "Eliminar",
|
|
48
48
|
allowedTypes: d,
|
|
49
|
-
inspectFileFunction:
|
|
49
|
+
inspectFileFunction: E = () => {
|
|
50
50
|
console.warn(
|
|
51
51
|
"No hay función asignada para ver el archivo. Hay que pasarla al componente como prop inspectFileFunction."
|
|
52
52
|
);
|
|
@@ -56,32 +56,32 @@ import '../../assets/CompactFileUpload.css';const Z = "_inputContainer_g5trv_1",
|
|
|
56
56
|
onFileSelect: C,
|
|
57
57
|
onSuccessAction: x,
|
|
58
58
|
statusIconBorderRadius: D = "50%",
|
|
59
|
-
customIcon:
|
|
60
|
-
customInspectIcon:
|
|
61
|
-
fullWidth:
|
|
62
|
-
...
|
|
59
|
+
customIcon: O = "Documentos",
|
|
60
|
+
customInspectIcon: R = "Visibility",
|
|
61
|
+
fullWidth: A = !1,
|
|
62
|
+
...S
|
|
63
63
|
}) => {
|
|
64
|
-
const [
|
|
65
|
-
|
|
64
|
+
const [U, N] = k(!1), [i, F] = k(null), _ = X(null);
|
|
65
|
+
T(() => {
|
|
66
66
|
F(b ?? null);
|
|
67
|
-
}, [b]),
|
|
67
|
+
}, [b]), T(() => {
|
|
68
68
|
if (!i) return;
|
|
69
69
|
const n = [];
|
|
70
70
|
o && n.push("error"), a && n.push("success"), c && n.push("loading"), n.length > 1 && console.warn(
|
|
71
71
|
`⚠️ CompactFileUpload: Múltiples estados detectados (${n.join(", ")}). Solo un estado debe estar activo a la vez.`
|
|
72
72
|
);
|
|
73
73
|
}, [o, a, c, i]);
|
|
74
|
-
const
|
|
74
|
+
const V = (n) => {
|
|
75
75
|
n.preventDefault(), m || N(!0);
|
|
76
|
-
},
|
|
76
|
+
}, M = (n) => {
|
|
77
77
|
n.preventDefault(), N(!1);
|
|
78
|
-
},
|
|
78
|
+
}, z = (n) => {
|
|
79
79
|
n.preventDefault();
|
|
80
|
-
},
|
|
80
|
+
}, q = (n) => {
|
|
81
81
|
if (n.preventDefault(), N(!1), m) return;
|
|
82
82
|
const s = n.dataTransfer.files;
|
|
83
83
|
y(s);
|
|
84
|
-
},
|
|
84
|
+
}, H = async (n) => {
|
|
85
85
|
const s = n.target.files;
|
|
86
86
|
y(s);
|
|
87
87
|
}, y = async (n) => {
|
|
@@ -111,37 +111,37 @@ import '../../assets/CompactFileUpload.css';const Z = "_inputContainer_g5trv_1",
|
|
|
111
111
|
return l.items.add(s), l.files;
|
|
112
112
|
})() : null
|
|
113
113
|
));
|
|
114
|
-
},
|
|
114
|
+
}, P = () => {
|
|
115
115
|
!i && !m && _.current && _.current.click();
|
|
116
|
-
},
|
|
116
|
+
}, G = () => {
|
|
117
117
|
F(null), _.current && (_.current.value = "");
|
|
118
118
|
}, J = () => {
|
|
119
|
-
|
|
119
|
+
G();
|
|
120
120
|
}, K = () => {
|
|
121
|
-
x == null || x()
|
|
121
|
+
x == null || x();
|
|
122
122
|
}, Q = [
|
|
123
123
|
t.compactFileUploadContainer,
|
|
124
|
-
|
|
125
|
-
t[`variant_${
|
|
124
|
+
A && t.fullWidth,
|
|
125
|
+
t[`variant_${L}`],
|
|
126
126
|
!i && u ? t.warning : "",
|
|
127
127
|
i && !c && !a && o ? t.error : "",
|
|
128
128
|
i && !o && !a && c ? t.loading : "",
|
|
129
129
|
i && !o && !c && a ? t.success : "",
|
|
130
130
|
m ? t.disabled : "",
|
|
131
|
-
|
|
132
|
-
|
|
131
|
+
j ? t.inverted : "",
|
|
132
|
+
U ? t.dragOver : ""
|
|
133
133
|
].filter(Boolean).join(" ");
|
|
134
134
|
return /* @__PURE__ */ e("div", { className: t.inputContainer, children: /* @__PURE__ */ r(
|
|
135
135
|
"div",
|
|
136
136
|
{
|
|
137
137
|
className: Q,
|
|
138
|
-
onDragEnter:
|
|
139
|
-
onDragLeave:
|
|
140
|
-
onDragOver:
|
|
141
|
-
onDrop:
|
|
142
|
-
onClick:
|
|
138
|
+
onDragEnter: V,
|
|
139
|
+
onDragLeave: M,
|
|
140
|
+
onDragOver: z,
|
|
141
|
+
onDrop: q,
|
|
142
|
+
onClick: P,
|
|
143
143
|
style: { cursor: m ? "not-allowed" : "pointer" },
|
|
144
|
-
...
|
|
144
|
+
...S,
|
|
145
145
|
children: [
|
|
146
146
|
/* @__PURE__ */ e(
|
|
147
147
|
"input",
|
|
@@ -149,7 +149,7 @@ import '../../assets/CompactFileUpload.css';const Z = "_inputContainer_g5trv_1",
|
|
|
149
149
|
ref: _,
|
|
150
150
|
type: "file",
|
|
151
151
|
className: t.hiddenInput,
|
|
152
|
-
onChange:
|
|
152
|
+
onChange: H,
|
|
153
153
|
disabled: m,
|
|
154
154
|
accept: d == null ? void 0 : d.join(",")
|
|
155
155
|
}
|
|
@@ -196,7 +196,7 @@ import '../../assets/CompactFileUpload.css';const Z = "_inputContainer_g5trv_1",
|
|
|
196
196
|
children: /* @__PURE__ */ e(
|
|
197
197
|
h,
|
|
198
198
|
{
|
|
199
|
-
name: o ? "CancelIcon" : a ? "CheckIcon" :
|
|
199
|
+
name: o ? "CancelIcon" : a ? "CheckIcon" : O,
|
|
200
200
|
fill: "white",
|
|
201
201
|
height: 20,
|
|
202
202
|
width: 20
|
|
@@ -207,7 +207,7 @@ import '../../assets/CompactFileUpload.css';const Z = "_inputContainer_g5trv_1",
|
|
|
207
207
|
}
|
|
208
208
|
) }),
|
|
209
209
|
/* @__PURE__ */ r("div", { className: t.compactFileText, children: [
|
|
210
|
-
!o && !c && !a && /* @__PURE__ */ r(
|
|
210
|
+
!o && !c && !a && /* @__PURE__ */ r($, { children: [
|
|
211
211
|
v && /* @__PURE__ */ e("span", { className: `small1Medium ${t.compactLabel}`, children: v }),
|
|
212
212
|
/* @__PURE__ */ e("span", { className: `small3Regular ${t.compactFileName}`, children: i == null ? void 0 : i.name })
|
|
213
213
|
] }),
|
|
@@ -233,11 +233,11 @@ import '../../assets/CompactFileUpload.css';const Z = "_inputContainer_g5trv_1",
|
|
|
233
233
|
"div",
|
|
234
234
|
{
|
|
235
235
|
className: t.compactVisibilityIcon,
|
|
236
|
-
onClick:
|
|
236
|
+
onClick: E,
|
|
237
237
|
children: /* @__PURE__ */ e(
|
|
238
238
|
h,
|
|
239
239
|
{
|
|
240
|
-
name:
|
|
240
|
+
name: R,
|
|
241
241
|
fill: "#2054A5",
|
|
242
242
|
height: 24,
|
|
243
243
|
width: 24
|
|
@@ -246,7 +246,7 @@ import '../../assets/CompactFileUpload.css';const Z = "_inputContainer_g5trv_1",
|
|
|
246
246
|
}
|
|
247
247
|
),
|
|
248
248
|
(o || a) && /* @__PURE__ */ e(
|
|
249
|
-
|
|
249
|
+
W,
|
|
250
250
|
{
|
|
251
251
|
variant: g ? "outline" : "ghost",
|
|
252
252
|
icon: {
|
|
@@ -302,7 +302,7 @@ import '../../assets/CompactFileUpload.css';const Z = "_inputContainer_g5trv_1",
|
|
|
302
302
|
/* @__PURE__ */ e("span", { className: `small3Regular ${t.compactStatusText}`, children: u })
|
|
303
303
|
] }),
|
|
304
304
|
/* @__PURE__ */ e("div", { className: t.compactActions, children: /* @__PURE__ */ e(
|
|
305
|
-
|
|
305
|
+
W,
|
|
306
306
|
{
|
|
307
307
|
variant: "outline",
|
|
308
308
|
icon: {
|
|
@@ -312,7 +312,7 @@ import '../../assets/CompactFileUpload.css';const Z = "_inputContainer_g5trv_1",
|
|
|
312
312
|
children: "Subir doc"
|
|
313
313
|
}
|
|
314
314
|
) })
|
|
315
|
-
] }) : /* @__PURE__ */ e(
|
|
315
|
+
] }) : /* @__PURE__ */ e($, { children: /* @__PURE__ */ r("div", { className: t.textContent, children: [
|
|
316
316
|
/* @__PURE__ */ e(
|
|
317
317
|
"div",
|
|
318
318
|
{
|
|
@@ -323,7 +323,7 @@ import '../../assets/CompactFileUpload.css';const Z = "_inputContainer_g5trv_1",
|
|
|
323
323
|
children: /* @__PURE__ */ e("div", { style: { marginTop: "3px" }, children: /* @__PURE__ */ e(h, { name: "Add", fill: "white", height: 27, width: 27 }) })
|
|
324
324
|
}
|
|
325
325
|
),
|
|
326
|
-
/* @__PURE__ */ e("span", { className: `small1Medium ${t.browseText}`, children:
|
|
326
|
+
/* @__PURE__ */ e("span", { className: `small1Medium ${t.browseText}`, children: B })
|
|
327
327
|
] }) }) })
|
|
328
328
|
]
|
|
329
329
|
}
|
package/dist/icons/Icon.js
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
import { jsx as a } from "react/jsx-runtime";
|
|
2
|
-
const e = (q) => /* @__PURE__ */ a(
|
|
2
|
+
const e = (q) => /* @__PURE__ */ a(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
fill: "none",
|
|
7
|
+
viewBox: "0 0 15 15",
|
|
8
|
+
width: "1em",
|
|
9
|
+
height: "1em",
|
|
10
|
+
...q,
|
|
11
|
+
children: /* @__PURE__ */ a(
|
|
12
|
+
"path",
|
|
13
|
+
{
|
|
14
|
+
fill: "currentColor",
|
|
15
|
+
d: "M1.814 11.424V7.063q0-.314.215-.528a.72.72 0 0 1 .527-.215q.312 0 .53.215a.71.71 0 0 1 .216.528v4.365q0 .314-.213.528a.71.71 0 0 1-.525.214.73.73 0 0 1-.531-.216.72.72 0 0 1-.22-.53m4.796.004V7.063a.72.72 0 0 1 .213-.528.71.71 0 0 1 .525-.215q.312 0 .53.215a.71.71 0 0 1 .217.528v4.365q0 .314-.213.528a.71.71 0 0 1-.526.214.73.73 0 0 1-.529-.214.71.71 0 0 1-.217-.528m-5.832 3.06a.75.75 0 0 1-.553-.225.75.75 0 0 1-.225-.55.76.76 0 0 1 .225-.553.75.75 0 0 1 .553-.229h13.149q.327 0 .553.225.225.225.225.55a.76.76 0 0 1-.226.553.75.75 0 0 1-.552.229zm10.624-3.064V7.063q0-.314.216-.528a.72.72 0 0 1 .527-.215q.312 0 .53.215a.71.71 0 0 1 .216.528v4.365a.72.72 0 0 1-.213.528.71.71 0 0 1-.525.214.73.73 0 0 1-.531-.216.72.72 0 0 1-.22-.53m2.282-5.87H.914a.88.88 0 0 1-.648-.265A.88.88 0 0 1 0 4.644v-.562q0-.252.138-.487a.82.82 0 0 1 .37-.343L6.663.177Q6.986 0 7.353 0q.364 0 .69.177l6.107 3.052a1 1 0 0 1 .403.37q.152.245.152.54v.39q0 .432-.295.73a.98.98 0 0 1-.726.296M2.504 4H12.2L7.352 1.584z"
|
|
16
|
+
}
|
|
17
|
+
)
|
|
18
|
+
}
|
|
19
|
+
);
|
|
3
20
|
export {
|
|
4
21
|
e as default
|
|
5
22
|
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { jsx as t } from "react/jsx-runtime";
|
|
2
|
+
const e = (q) => /* @__PURE__ */ t(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
fill: "none",
|
|
7
|
+
viewBox: "0 0 29 29",
|
|
8
|
+
width: "1em",
|
|
9
|
+
height: "1em",
|
|
10
|
+
...q,
|
|
11
|
+
children: /* @__PURE__ */ t(
|
|
12
|
+
"path",
|
|
13
|
+
{
|
|
14
|
+
fill: "currentColor",
|
|
15
|
+
d: "M5.17 21.888q2.09-1.5 4.298-2.32t4.699-.82q2.49 0 4.71.82t4.31 2.32q1.451-1.76 2.118-3.672a12.2 12.2 0 0 0 .667-4.05q0-4.992-3.406-8.4-3.405-3.405-8.4-3.405-4.992 0-8.4 3.406-3.405 3.405-3.405 8.4 0 2.136.679 4.049t2.13 3.671m8.992-6.54q-2.061 0-3.472-1.416-1.41-1.414-1.41-3.477-.001-2.06 1.414-3.472 1.415-1.41 3.477-1.41 2.061-.001 3.473 1.414 1.41 1.416 1.41 3.477t-1.415 3.473q-1.415 1.41-3.477 1.41m.016 12.985q-2.927 0-5.513-1.115a14.4 14.4 0 0 1-4.51-3.04 14.4 14.4 0 0 1-3.04-4.504Q0 17.094 0 14.16q0-2.932 1.116-5.507a14.4 14.4 0 0 1 3.04-4.498 14.4 14.4 0 0 1 4.504-3.04Q11.24 0 14.173 0t5.507 1.116a14.4 14.4 0 0 1 4.498 3.04 14.4 14.4 0 0 1 3.04 4.498q1.115 2.574 1.115 5.502 0 2.925-1.115 5.512a14.4 14.4 0 0 1-3.04 4.51 14.4 14.4 0 0 1-4.499 3.04q-2.574 1.115-5.501 1.115m-.011-2.36a12.4 12.4 0 0 0 3.718-.561q1.795-.561 3.46-1.848a13.8 13.8 0 0 0-3.471-1.824 11.2 11.2 0 0 0-3.707-.632q-1.9 0-3.707.632a13.8 13.8 0 0 0-3.471 1.824q1.665 1.287 3.459 1.848a12.4 12.4 0 0 0 3.719.56m0-12.987q1.11 0 1.818-.708t.708-1.818-.708-1.818q-.71-.71-1.818-.709-1.11 0-1.818.709-.71.708-.709 1.818 0 1.11.709 1.818.708.708 1.818.708"
|
|
16
|
+
}
|
|
17
|
+
)
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
export {
|
|
21
|
+
e as default
|
|
22
|
+
};
|
|
@@ -1,10 +1,39 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
const
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { jsxs as r, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
const l = (h) => /* @__PURE__ */ r(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
fill: "none",
|
|
7
|
+
viewBox: "0 0 18 18",
|
|
8
|
+
width: "1em",
|
|
9
|
+
height: "1em",
|
|
10
|
+
...h,
|
|
11
|
+
children: [
|
|
12
|
+
/* @__PURE__ */ e(
|
|
13
|
+
"mask",
|
|
14
|
+
{
|
|
15
|
+
id: "chevron_right_svg__a",
|
|
16
|
+
width: 18,
|
|
17
|
+
height: 18,
|
|
18
|
+
x: 0,
|
|
19
|
+
y: 0,
|
|
20
|
+
maskUnits: "userSpaceOnUse",
|
|
21
|
+
style: {
|
|
22
|
+
maskType: "alpha"
|
|
23
|
+
},
|
|
24
|
+
children: /* @__PURE__ */ e("path", { fill: "currentColor", d: "M0 0h18v18H0z" })
|
|
25
|
+
}
|
|
26
|
+
),
|
|
27
|
+
/* @__PURE__ */ e("g", { mask: "url(#chevron_right_svg__a)", children: /* @__PURE__ */ e(
|
|
28
|
+
"path",
|
|
29
|
+
{
|
|
30
|
+
fill: "currentColor",
|
|
31
|
+
d: "M9.643 9 6.64 5.997a.755.755 0 0 1 0-1.1.755.755 0 0 1 1.106.006l3.552 3.552a.9.9 0 0 1 .165.255.76.76 0 0 1 0 .587.8.8 0 0 1-.165.248l-3.552 3.552a.72.72 0 0 1-.547.234.78.78 0 0 1-.54-.247.755.755 0 0 1 0-1.1z"
|
|
32
|
+
}
|
|
33
|
+
) })
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
);
|
|
8
37
|
export {
|
|
9
|
-
|
|
38
|
+
l as default
|
|
10
39
|
};
|
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
import { jsx as t } from "react/jsx-runtime";
|
|
2
|
-
const e = (
|
|
2
|
+
const e = (o) => /* @__PURE__ */ t(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
fill: "none",
|
|
7
|
+
viewBox: "0 0 15 13",
|
|
8
|
+
width: "1em",
|
|
9
|
+
height: "1em",
|
|
10
|
+
...o,
|
|
11
|
+
children: /* @__PURE__ */ t(
|
|
12
|
+
"path",
|
|
13
|
+
{
|
|
14
|
+
fill: "currentColor",
|
|
15
|
+
d: "M14.53 1.384 6.421 11.701a.81.81 0 0 1-.74.334.82.82 0 0 1-.678-.43L.124 3.151a.82.82 0 0 1-.034-.803.81.81 0 0 1 .66-.473L13.736.012q.58-.082.867.414.288.499-.075.958M5.843 9.752l6.184-7.838-9.88 1.436L3.21 5.187l4.75-.923-3.175 3.65z"
|
|
16
|
+
}
|
|
17
|
+
)
|
|
18
|
+
}
|
|
19
|
+
);
|
|
3
20
|
export {
|
|
4
21
|
e as default
|
|
5
22
|
};
|
|
@@ -1,10 +1,39 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
const s = (t) => /* @__PURE__ */
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { jsxs as l, jsx as e } from "react/jsx-runtime";
|
|
2
|
+
const s = (t) => /* @__PURE__ */ l(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
fill: "none",
|
|
7
|
+
viewBox: "0 0 25 25",
|
|
8
|
+
width: "1em",
|
|
9
|
+
height: "1em",
|
|
10
|
+
...t,
|
|
11
|
+
children: [
|
|
12
|
+
/* @__PURE__ */ e(
|
|
13
|
+
"mask",
|
|
14
|
+
{
|
|
15
|
+
id: "documento_tick_svg__a",
|
|
16
|
+
width: 25,
|
|
17
|
+
height: 25,
|
|
18
|
+
x: 0,
|
|
19
|
+
y: 0,
|
|
20
|
+
maskUnits: "userSpaceOnUse",
|
|
21
|
+
style: {
|
|
22
|
+
maskType: "alpha"
|
|
23
|
+
},
|
|
24
|
+
children: /* @__PURE__ */ e("path", { fill: "currentColor", d: "M0 0h25v25H0z" })
|
|
25
|
+
}
|
|
26
|
+
),
|
|
27
|
+
/* @__PURE__ */ e("g", { mask: "url(#documento_tick_svg__a)", children: /* @__PURE__ */ e(
|
|
28
|
+
"path",
|
|
29
|
+
{
|
|
30
|
+
fill: "currentColor",
|
|
31
|
+
d: "m11.432 15.938-1.41-1.435a.9.9 0 0 0-.328-.22 1 1 0 0 0-.365-.064q-.19 0-.37.065a.985.985 0 0 0-.625.938q0 .428.286.716l2.161 2.161a.945.945 0 0 0 .656.26 1 1 0 0 0 .352-.065.9.9 0 0 0 .294-.195l4.401-4.401a.97.97 0 0 0 .287-.706.95.95 0 0 0-.291-.7.97.97 0 0 0-.703-.287.95.95 0 0 0-.699.287zM6.868 22.5q-.775 0-1.321-.55A1.81 1.81 0 0 1 5 20.624V4.375q0-.774.55-1.324.552-.55 1.325-.551h7.344q.37 0 .706.13.334.13.622.417l3.906 3.906A1.8 1.8 0 0 1 20 8.281v12.344q0 .774-.551 1.324-.552.55-1.325.551zM13.75 7.813V4.374H6.875v16.25h11.25V8.75h-3.437a.9.9 0 0 1-.668-.27.9.9 0 0 1-.27-.668"
|
|
32
|
+
}
|
|
33
|
+
) })
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
);
|
|
8
37
|
export {
|
|
9
38
|
s as default
|
|
10
39
|
};
|
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
import { jsx as t } from "react/jsx-runtime";
|
|
2
|
-
const e = (q) => /* @__PURE__ */ t(
|
|
2
|
+
const e = (q) => /* @__PURE__ */ t(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
fill: "none",
|
|
7
|
+
viewBox: "0 0 81 61",
|
|
8
|
+
width: "1em",
|
|
9
|
+
height: "1em",
|
|
10
|
+
...q,
|
|
11
|
+
children: /* @__PURE__ */ t(
|
|
12
|
+
"path",
|
|
13
|
+
{
|
|
14
|
+
fill: "currentColor",
|
|
15
|
+
d: "M8.473 60.46q-3.52 0-5.996-2.478Q0 55.505 0 51.982V8.445q0-3.522 2.477-5.983T8.473 0h63.114q3.52 0 5.996 2.478 2.477 2.477 2.477 5.999v43.539q0 3.522-2.477 5.983t-5.996 2.46zm0-8.473h63.114V8.473H8.473zM32.68 37.58H19.205q-1.562 0-2.618 1.05-1.057 1.05-1.057 2.603t1.057 2.625 2.618 1.072h4.9v1.225q0 1.562 1.05 2.618 1.05 1.057 2.604 1.057 1.553 0 2.624-1.057t1.072-2.618V44.93h3.675q2.082 0 3.491-1.409t1.409-3.491v-8.575q0-2.082-1.409-3.491t-3.491-1.41H22.88V22.88h13.475q1.562 0 2.618-1.05 1.057-1.05 1.057-2.604 0-1.553-1.057-2.624t-2.618-1.072h-4.9v-1.225q0-1.562-1.05-2.618-1.05-1.057-2.604-1.057-1.553 0-2.624 1.056t-1.072 2.619v1.225H20.43q-2.082 0-3.491 1.409t-1.41 3.49v8.576q0 2.082 1.41 3.491t3.49 1.409h12.25zm25.21 6.64 4.865-4.865q.584-.584.242-1.179t-1.077-.596h-9.48q-.735 0-1.077.596-.342.595.242 1.18l4.864 4.863q.304.356.707.356.404 0 .714-.356m-5.45-21.34h9.48q.735 0 1.077-.596.342-.595-.242-1.18L57.89 16.24q-.303-.355-.706-.355t-.715.355l-4.864 4.865q-.584.584-.242 1.179t1.077.596"
|
|
16
|
+
}
|
|
17
|
+
)
|
|
18
|
+
}
|
|
19
|
+
);
|
|
3
20
|
export {
|
|
4
21
|
e as default
|
|
5
22
|
};
|
|
@@ -7,6 +7,7 @@ export { default as Guatemala } from './Guatemala';
|
|
|
7
7
|
export { default as Internacional } from './Internacional';
|
|
8
8
|
export { default as RepDominicana } from './RepDominicana';
|
|
9
9
|
export { default as AccountBalance } from './AccountBalance';
|
|
10
|
+
export { default as AccountCircle } from './AccountCircle';
|
|
10
11
|
export { default as Add } from './Add';
|
|
11
12
|
export { default as AddAPhoto } from './AddAPhoto';
|
|
12
13
|
export { default as AddIcon } from './AddIcon';
|