bmi-next-brokers 1.3.0 → 1.3.1
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.d.ts +1 -1
- package/dist/components/FileUpload/CompactFileUpload.js +58 -56
- package/dist/icons/Icon.js +1 -1
- package/dist/icons/components/CompareArrows.d.ts +3 -0
- package/dist/icons/components/CompareArrows.js +22 -0
- package/dist/icons/components/index.d.ts +3 -2
- package/dist/icons/components/index.js +116 -114
- package/dist/icons/index.d.ts +1 -0
- package/dist/icons/index.js +178 -176
- package/dist/index-DM9KWo94.js +250 -0
- package/package.json +1 -1
- package/dist/index-D2qcqwKe.js +0 -248
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
export type CompactFileUploadVariant = "document" | "add";
|
|
3
|
-
export interface CompactFileUploadProps {
|
|
3
|
+
export interface CompactFileUploadProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
4
4
|
variant?: CompactFileUploadVariant;
|
|
5
5
|
label?: string;
|
|
6
6
|
helperText?: string;
|
|
@@ -1,39 +1,39 @@
|
|
|
1
1
|
import { jsx as n, jsxs as l, Fragment as y } from "react/jsx-runtime";
|
|
2
|
-
import { useState as b, useRef as
|
|
2
|
+
import { useState as b, useRef as z, useEffect as q } from "react";
|
|
3
3
|
import { Icon as u } from "../../icons/Icon.js";
|
|
4
|
-
import { Spinner as
|
|
4
|
+
import { Spinner as H } from "../Spinner/Spinner.js";
|
|
5
5
|
import { Button as T } from "../Button/Button.js";
|
|
6
|
-
import '../../assets/CompactFileUpload.css';const
|
|
7
|
-
inputContainer:
|
|
8
|
-
compactFileUploadContainer:
|
|
9
|
-
fullWidth:
|
|
10
|
-
dragOver:
|
|
11
|
-
variant_document:
|
|
12
|
-
icon:
|
|
13
|
-
variant_add:
|
|
14
|
-
disabled:
|
|
15
|
-
error:
|
|
16
|
-
warning:
|
|
17
|
-
inverted:
|
|
18
|
-
uploadContent:
|
|
19
|
-
textContent:
|
|
20
|
-
dragText:
|
|
21
|
-
hiddenInput:
|
|
22
|
-
compactFileContent:
|
|
23
|
-
compactFileIcon:
|
|
24
|
-
compactIconBackground:
|
|
25
|
-
compactFileText:
|
|
26
|
-
compactLabel:
|
|
27
|
-
compactFileName:
|
|
28
|
-
compactStatusText:
|
|
29
|
-
success:
|
|
30
|
-
loading:
|
|
31
|
-
addIconWrapper:
|
|
32
|
-
browseText:
|
|
33
|
-
compactVisibilityIcon:
|
|
34
|
-
compactActions:
|
|
35
|
-
deleteText:
|
|
36
|
-
},
|
|
6
|
+
import '../../assets/CompactFileUpload.css';const G = "_inputContainer_84wrd_1", J = "_compactFileUploadContainer_84wrd_9", K = "_fullWidth_84wrd_26", P = "_dragOver_84wrd_35", Q = "_variant_document_84wrd_41", X = "_icon_84wrd_41", Y = "_variant_add_84wrd_45", Z = "_disabled_84wrd_50", tt = "_error_84wrd_61", nt = "_warning_84wrd_69", et = "_inverted_84wrd_78", at = "_uploadContent_84wrd_103", ct = "_textContent_84wrd_113", ot = "_dragText_84wrd_123", it = "_hiddenInput_84wrd_153", rt = "_compactFileContent_84wrd_166", lt = "_compactFileIcon_84wrd_174", st = "_compactIconBackground_84wrd_182", dt = "_compactFileText_84wrd_190", mt = "_compactLabel_84wrd_202", pt = "_compactFileName_84wrd_209", _t = "_compactStatusText_84wrd_210", ht = "_success_84wrd_221", ut = "_loading_84wrd_229", ft = "_addIconWrapper_84wrd_233", vt = "_browseText_84wrd_239", wt = "_compactVisibilityIcon_84wrd_246", Ct = "_compactActions_84wrd_255", gt = "_deleteText_84wrd_262", t = {
|
|
7
|
+
inputContainer: G,
|
|
8
|
+
compactFileUploadContainer: J,
|
|
9
|
+
fullWidth: K,
|
|
10
|
+
dragOver: P,
|
|
11
|
+
variant_document: Q,
|
|
12
|
+
icon: X,
|
|
13
|
+
variant_add: Y,
|
|
14
|
+
disabled: Z,
|
|
15
|
+
error: tt,
|
|
16
|
+
warning: nt,
|
|
17
|
+
inverted: et,
|
|
18
|
+
uploadContent: at,
|
|
19
|
+
textContent: ct,
|
|
20
|
+
dragText: ot,
|
|
21
|
+
hiddenInput: it,
|
|
22
|
+
compactFileContent: rt,
|
|
23
|
+
compactFileIcon: lt,
|
|
24
|
+
compactIconBackground: st,
|
|
25
|
+
compactFileText: dt,
|
|
26
|
+
compactLabel: mt,
|
|
27
|
+
compactFileName: pt,
|
|
28
|
+
compactStatusText: _t,
|
|
29
|
+
success: ht,
|
|
30
|
+
loading: ut,
|
|
31
|
+
addIconWrapper: ft,
|
|
32
|
+
browseText: vt,
|
|
33
|
+
compactVisibilityIcon: wt,
|
|
34
|
+
compactActions: Ct,
|
|
35
|
+
deleteText: gt
|
|
36
|
+
}, Tt = ({
|
|
37
37
|
variant: D = "document",
|
|
38
38
|
label: f,
|
|
39
39
|
error: a,
|
|
@@ -53,29 +53,30 @@ import '../../assets/CompactFileUpload.css';const H = "_inputContainer_84wrd_1",
|
|
|
53
53
|
maxFileSize: x,
|
|
54
54
|
onFileSelect: p,
|
|
55
55
|
statusIconBorderRadius: N = "50%",
|
|
56
|
-
fullWidth: W = !1
|
|
56
|
+
fullWidth: W = !1,
|
|
57
|
+
...j
|
|
57
58
|
}) => {
|
|
58
|
-
const [
|
|
59
|
+
const [B, w] = b(!1), [i, I] = b(
|
|
59
60
|
g || null
|
|
60
|
-
), h =
|
|
61
|
-
|
|
61
|
+
), h = z(null);
|
|
62
|
+
q(() => {
|
|
62
63
|
if (!i) return;
|
|
63
64
|
const e = [];
|
|
64
65
|
a && e.push("error"), c && e.push("success"), o && e.push("loading"), e.length > 1 && console.warn(
|
|
65
66
|
`⚠️ CompactFileUpload: Múltiples estados detectados (${e.join(", ")}). Solo un estado debe estar activo a la vez.`
|
|
66
67
|
);
|
|
67
68
|
}, [a, c, o, i]);
|
|
68
|
-
const
|
|
69
|
+
const E = (e) => {
|
|
69
70
|
e.preventDefault(), d || w(!0);
|
|
70
|
-
}, E = (e) => {
|
|
71
|
-
e.preventDefault(), w(!1);
|
|
72
71
|
}, L = (e) => {
|
|
73
|
-
e.preventDefault();
|
|
72
|
+
e.preventDefault(), w(!1);
|
|
74
73
|
}, O = (e) => {
|
|
74
|
+
e.preventDefault();
|
|
75
|
+
}, R = (e) => {
|
|
75
76
|
if (e.preventDefault(), w(!1), d) return;
|
|
76
77
|
const s = e.dataTransfer.files;
|
|
77
78
|
F(s);
|
|
78
|
-
},
|
|
79
|
+
}, U = async (e) => {
|
|
79
80
|
const s = e.target.files;
|
|
80
81
|
F(s);
|
|
81
82
|
}, F = async (e) => {
|
|
@@ -105,11 +106,11 @@ import '../../assets/CompactFileUpload.css';const H = "_inputContainer_84wrd_1",
|
|
|
105
106
|
return r.items.add(s), r.files;
|
|
106
107
|
})() : null
|
|
107
108
|
));
|
|
108
|
-
},
|
|
109
|
+
}, V = () => {
|
|
109
110
|
!d && h.current && h.current.click();
|
|
110
|
-
},
|
|
111
|
+
}, M = async () => {
|
|
111
112
|
await (p == null ? void 0 : p(null)), I(null), h.current && (h.current.value = "");
|
|
112
|
-
},
|
|
113
|
+
}, S = [
|
|
113
114
|
t.compactFileUploadContainer,
|
|
114
115
|
W && t.fullWidth,
|
|
115
116
|
t[`variant_${D}`],
|
|
@@ -119,19 +120,20 @@ import '../../assets/CompactFileUpload.css';const H = "_inputContainer_84wrd_1",
|
|
|
119
120
|
i && !a && !o && c ? t.success : "",
|
|
120
121
|
d ? t.disabled : "",
|
|
121
122
|
k ? t.inverted : "",
|
|
122
|
-
|
|
123
|
+
B ? t.dragOver : ""
|
|
123
124
|
].filter(Boolean).join(" ");
|
|
124
125
|
return /* @__PURE__ */ n("div", { className: t.inputContainer, children: /* @__PURE__ */ l(
|
|
125
126
|
"div",
|
|
126
127
|
{
|
|
127
|
-
className:
|
|
128
|
-
onDragEnter:
|
|
129
|
-
onDragLeave:
|
|
130
|
-
onDragOver:
|
|
131
|
-
onDrop:
|
|
128
|
+
className: S,
|
|
129
|
+
onDragEnter: E,
|
|
130
|
+
onDragLeave: L,
|
|
131
|
+
onDragOver: O,
|
|
132
|
+
onDrop: R,
|
|
132
133
|
onClick: i ? () => {
|
|
133
|
-
} :
|
|
134
|
+
} : V,
|
|
134
135
|
style: { cursor: d ? "not-allowed" : "pointer" },
|
|
136
|
+
...j,
|
|
135
137
|
children: [
|
|
136
138
|
/* @__PURE__ */ n(
|
|
137
139
|
"input",
|
|
@@ -139,7 +141,7 @@ import '../../assets/CompactFileUpload.css';const H = "_inputContainer_84wrd_1",
|
|
|
139
141
|
ref: h,
|
|
140
142
|
type: "file",
|
|
141
143
|
className: t.hiddenInput,
|
|
142
|
-
onChange:
|
|
144
|
+
onChange: U,
|
|
143
145
|
disabled: d,
|
|
144
146
|
accept: m == null ? void 0 : m.join(",")
|
|
145
147
|
}
|
|
@@ -165,7 +167,7 @@ import '../../assets/CompactFileUpload.css';const H = "_inputContainer_84wrd_1",
|
|
|
165
167
|
margin: "4px"
|
|
166
168
|
},
|
|
167
169
|
children: /* @__PURE__ */ n(
|
|
168
|
-
|
|
170
|
+
H,
|
|
169
171
|
{
|
|
170
172
|
size: 10,
|
|
171
173
|
color: "primary",
|
|
@@ -242,7 +244,7 @@ import '../../assets/CompactFileUpload.css';const H = "_inputContainer_84wrd_1",
|
|
|
242
244
|
name: "CancelIcon",
|
|
243
245
|
position: "before"
|
|
244
246
|
},
|
|
245
|
-
onClick:
|
|
247
|
+
onClick: M,
|
|
246
248
|
children: a ? "Eliminar" : o ? "Cancelar" : ""
|
|
247
249
|
}
|
|
248
250
|
)
|
|
@@ -317,5 +319,5 @@ import '../../assets/CompactFileUpload.css';const H = "_inputContainer_84wrd_1",
|
|
|
317
319
|
) });
|
|
318
320
|
};
|
|
319
321
|
export {
|
|
320
|
-
|
|
322
|
+
Tt as CompactFileUpload
|
|
321
323
|
};
|
package/dist/icons/Icon.js
CHANGED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { jsx as a } from "react/jsx-runtime";
|
|
2
|
+
const r = (l) => /* @__PURE__ */ a(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
fill: "none",
|
|
7
|
+
viewBox: "0 0 17 13",
|
|
8
|
+
width: "1em",
|
|
9
|
+
height: "1em",
|
|
10
|
+
...l,
|
|
11
|
+
children: /* @__PURE__ */ a(
|
|
12
|
+
"path",
|
|
13
|
+
{
|
|
14
|
+
fill: "currentColor",
|
|
15
|
+
d: "M5.98 9.657H.832a.8.8 0 0 1-.593-.24.8.8 0 0 1-.24-.594q0-.354.24-.593.24-.24.593-.24H5.98L4.417 6.428a.78.78 0 0 1-.23-.573.85.85 0 0 1 .23-.594.8.8 0 0 1 .593-.25q.345 0 .594.25l2.98 2.979a.7.7 0 0 1 .176.27.9.9 0 0 1 .053.313.9.9 0 0 1-.053.313.7.7 0 0 1-.177.27l-3 3a.76.76 0 0 1-.583.24.84.84 0 0 1-.583-.26.88.88 0 0 1-.24-.583.76.76 0 0 1 .24-.584zm4.708-5 1.562 1.562q.23.23.23.573 0 .344-.23.594a.81.81 0 0 1-.594.25.81.81 0 0 1-.594-.25l-2.979-2.98a.7.7 0 0 1-.177-.27.9.9 0 0 1-.052-.313q0-.166.052-.312a.7.7 0 0 1 .177-.271l3-3a.76.76 0 0 1 .584-.24.84.84 0 0 1 .583.26.88.88 0 0 1 .24.584.76.76 0 0 1-.24.584L10.688 2.99h5.145q.354 0 .594.24t.24.593-.24.594a.8.8 0 0 1-.594.24z"
|
|
16
|
+
}
|
|
17
|
+
)
|
|
18
|
+
}
|
|
19
|
+
);
|
|
20
|
+
export {
|
|
21
|
+
r as default
|
|
22
|
+
};
|
|
@@ -2,7 +2,6 @@ export { default as ArrowDown } from './ArrowDown';
|
|
|
2
2
|
export { default as ArrowUp } from './ArrowUp';
|
|
3
3
|
export { default as Add } from './Add';
|
|
4
4
|
export { default as AddAPhoto } from './AddAPhoto';
|
|
5
|
-
export { default as AddAlert } from './AddAlert';
|
|
6
5
|
export { default as AddIcon } from './AddIcon';
|
|
7
6
|
export { default as AlertIcon } from './AlertIcon';
|
|
8
7
|
export { default as AmericanExpress } from './AmericanExpress';
|
|
@@ -11,7 +10,6 @@ export { default as Apnfd } from './Apnfd';
|
|
|
11
10
|
export { default as Approve } from './Approve';
|
|
12
11
|
export { default as ArrowBack } from './ArrowBack';
|
|
13
12
|
export { default as ArrowsOutward } from './ArrowsOutward';
|
|
14
|
-
export { default as Assignment } from './Assignment';
|
|
15
13
|
export { default as AttachFile } from './AttachFile';
|
|
16
14
|
export { default as BusinessCenter } from './BusinessCenter';
|
|
17
15
|
export { default as CalendarIcon } from './CalendarIcon';
|
|
@@ -22,7 +20,9 @@ export { default as ChatBubble } from './ChatBubble';
|
|
|
22
20
|
export { default as CheckIcon } from './CheckIcon';
|
|
23
21
|
export { default as Checkbook } from './Checkbook';
|
|
24
22
|
export { default as ChevronLeft } from './ChevronLeft';
|
|
23
|
+
export { default as Close } from './Close';
|
|
25
24
|
export { default as Comisiones } from './Comisiones';
|
|
25
|
+
export { default as CompareArrows } from './CompareArrows';
|
|
26
26
|
export { default as ComputerCancel } from './ComputerCancel';
|
|
27
27
|
export { default as ComunicacionesIcon } from './ComunicacionesIcon';
|
|
28
28
|
export { default as ContentCopy } from './ContentCopy';
|
|
@@ -69,6 +69,7 @@ export { default as Menu } from './Menu';
|
|
|
69
69
|
export { default as MoreVert } from './MoreVert';
|
|
70
70
|
export { default as NextIcon } from './NextIcon';
|
|
71
71
|
export { default as Notes } from './Notes';
|
|
72
|
+
export { default as Notifications } from './Notifications';
|
|
72
73
|
export { default as NumPolizaIcon } from './NumPolizaIcon';
|
|
73
74
|
export { default as OpenInFull } from './OpenInFull';
|
|
74
75
|
export { default as Paid } from './Paid';
|
|
@@ -2,27 +2,27 @@ import { default as r } from "./ArrowDown.js";
|
|
|
2
2
|
import { default as t } from "./ArrowUp.js";
|
|
3
3
|
import { default as d } from "./Add.js";
|
|
4
4
|
import { default as l } from "./AddAPhoto.js";
|
|
5
|
-
import { default as p } from "./
|
|
6
|
-
import { default as x } from "./
|
|
7
|
-
import { default as i } from "./
|
|
8
|
-
import { default as I } from "./
|
|
9
|
-
import { default as A } from "./
|
|
10
|
-
import { default as b } from "./
|
|
11
|
-
import { default as P } from "./
|
|
12
|
-
import { default as
|
|
13
|
-
import { default as F } from "./
|
|
14
|
-
import { default as g } from "./
|
|
15
|
-
import { default as S } from "./
|
|
16
|
-
import { default as v } from "./
|
|
17
|
-
import { default as U } from "./
|
|
18
|
-
import { default as E } from "./
|
|
19
|
-
import { default as
|
|
20
|
-
import { default as
|
|
21
|
-
import { default as K } from "./
|
|
22
|
-
import { default as T } from "./
|
|
23
|
-
import { default as G } from "./
|
|
24
|
-
import { default as Q } from "./
|
|
25
|
-
import { default as Y } from "./
|
|
5
|
+
import { default as p } from "./AddIcon.js";
|
|
6
|
+
import { default as x } from "./AlertIcon.js";
|
|
7
|
+
import { default as i } from "./AmericanExpress.js";
|
|
8
|
+
import { default as I } from "./AmericanExpressRounded.js";
|
|
9
|
+
import { default as A } from "./Apnfd.js";
|
|
10
|
+
import { default as b } from "./Approve.js";
|
|
11
|
+
import { default as P } from "./ArrowBack.js";
|
|
12
|
+
import { default as R } from "./ArrowsOutward.js";
|
|
13
|
+
import { default as F } from "./AttachFile.js";
|
|
14
|
+
import { default as g } from "./BusinessCenter.js";
|
|
15
|
+
import { default as S } from "./CalendarIcon.js";
|
|
16
|
+
import { default as v } from "./Call.js";
|
|
17
|
+
import { default as U } from "./CancelIcon.js";
|
|
18
|
+
import { default as E } from "./Certificado.js";
|
|
19
|
+
import { default as N } from "./ChatBubble.js";
|
|
20
|
+
import { default as z } from "./CheckIcon.js";
|
|
21
|
+
import { default as K } from "./Checkbook.js";
|
|
22
|
+
import { default as T } from "./ChevronLeft.js";
|
|
23
|
+
import { default as G } from "./Close.js";
|
|
24
|
+
import { default as Q } from "./Comisiones.js";
|
|
25
|
+
import { default as Y } from "./CompareArrows.js";
|
|
26
26
|
import { default as _ } from "./ComputerCancel.js";
|
|
27
27
|
import { default as oo } from "./ComunicacionesIcon.js";
|
|
28
28
|
import { default as ro } from "./ContentCopy.js";
|
|
@@ -35,7 +35,7 @@ import { default as co } from "./Delete.js";
|
|
|
35
35
|
import { default as Co } from "./DeniedIcon.js";
|
|
36
36
|
import { default as ho } from "./Diners.js";
|
|
37
37
|
import { default as Do } from "./DinersRounded.js";
|
|
38
|
-
import { default as
|
|
38
|
+
import { default as wo } from "./Discover.js";
|
|
39
39
|
import { default as yo } from "./DiscoverRounded.js";
|
|
40
40
|
import { default as Mo } from "./Distance.js";
|
|
41
41
|
import { default as ko } from "./Documentos.js";
|
|
@@ -43,7 +43,7 @@ import { default as Vo } from "./DownloadIcon.js";
|
|
|
43
43
|
import { default as Lo } from "./EditIcon.js";
|
|
44
44
|
import { default as Bo } from "./FallbackCardRounded.js";
|
|
45
45
|
import { default as Ho } from "./Female.js";
|
|
46
|
-
import { default as
|
|
46
|
+
import { default as Oo } from "./Filter.js";
|
|
47
47
|
import { default as Wo } from "./Folder.js";
|
|
48
48
|
import { default as jo } from "./FondosExtranjero.js";
|
|
49
49
|
import { default as qo } from "./Fumador.js";
|
|
@@ -62,72 +62,73 @@ import { default as ce } from "./LockIcon.js";
|
|
|
62
62
|
import { default as Ce } from "./MailIcon.js";
|
|
63
63
|
import { default as he } from "./Male.js";
|
|
64
64
|
import { default as De } from "./MasAcciones.js";
|
|
65
|
-
import { default as
|
|
65
|
+
import { default as we } from "./Mastercard.js";
|
|
66
66
|
import { default as ye } from "./MastercardRounded.js";
|
|
67
67
|
import { default as Me } from "./Medical.js";
|
|
68
68
|
import { default as ke } from "./Menu.js";
|
|
69
69
|
import { default as Ve } from "./MoreVert.js";
|
|
70
70
|
import { default as Le } from "./NextIcon.js";
|
|
71
71
|
import { default as Be } from "./Notes.js";
|
|
72
|
-
import { default as He } from "./
|
|
73
|
-
import { default as
|
|
74
|
-
import { default as We } 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 er } from "./
|
|
82
|
-
import { default as ar } from "./
|
|
83
|
-
import { default as fr } from "./
|
|
84
|
-
import { default as sr } from "./
|
|
85
|
-
import { default as ur } from "./
|
|
86
|
-
import { default as mr } from "./
|
|
87
|
-
import { default as nr } from "./
|
|
88
|
-
import { default as cr } from "./
|
|
89
|
-
import { default as Cr } from "./
|
|
90
|
-
import { default as hr } from "./
|
|
91
|
-
import { default as Dr } from "./
|
|
92
|
-
import { default as
|
|
93
|
-
import { default as yr } from "./
|
|
94
|
-
import { default as Mr } from "./
|
|
95
|
-
import { default as kr } from "./
|
|
96
|
-
import { default as Vr } from "./
|
|
97
|
-
import { default as Lr } from "./
|
|
98
|
-
import { default as Br } from "./
|
|
99
|
-
import { default as Hr } from "./
|
|
100
|
-
import { default as
|
|
101
|
-
import { default as Wr } from "./
|
|
102
|
-
import { default as jr } from "./
|
|
103
|
-
import { default as qr } from "./
|
|
104
|
-
import { default as Jr } from "./
|
|
72
|
+
import { default as He } from "./Notifications.js";
|
|
73
|
+
import { default as Oe } from "./NumPolizaIcon.js";
|
|
74
|
+
import { default as We } from "./OpenInFull.js";
|
|
75
|
+
import { default as je } from "./Paid.js";
|
|
76
|
+
import { default as qe } from "./Pep.js";
|
|
77
|
+
import { default as Je } from "./Person.js";
|
|
78
|
+
import { default as Xe } from "./PersonCancel.js";
|
|
79
|
+
import { default as Ze } from "./PhotoLibrary.js";
|
|
80
|
+
import { default as $e } from "./Planet.js";
|
|
81
|
+
import { default as er } from "./PolizaIcon.js";
|
|
82
|
+
import { default as ar } from "./PriceChange.js";
|
|
83
|
+
import { default as fr } from "./ProductIcon.js";
|
|
84
|
+
import { default as sr } from "./Public.js";
|
|
85
|
+
import { default as ur } from "./ReembolsosIcon.js";
|
|
86
|
+
import { default as mr } from "./Refresh.js";
|
|
87
|
+
import { default as nr } from "./Renovaciones.js";
|
|
88
|
+
import { default as cr } from "./Replay.js";
|
|
89
|
+
import { default as Cr } from "./Reply.js";
|
|
90
|
+
import { default as hr } from "./SearchIcon.js";
|
|
91
|
+
import { default as Dr } from "./Send.js";
|
|
92
|
+
import { default as wr } from "./Share.js";
|
|
93
|
+
import { default as yr } from "./SmallFamily.js";
|
|
94
|
+
import { default as Mr } from "./Smartphone.js";
|
|
95
|
+
import { default as kr } from "./Tutoriales.js";
|
|
96
|
+
import { default as Vr } from "./UnfoldMore.js";
|
|
97
|
+
import { default as Lr } from "./Upload.js";
|
|
98
|
+
import { default as Br } from "./VerifiedUser.js";
|
|
99
|
+
import { default as Hr } from "./Visa.js";
|
|
100
|
+
import { default as Or } from "./VisaRounded.js";
|
|
101
|
+
import { default as Wr } from "./Visibility.js";
|
|
102
|
+
import { default as jr } from "./VisibilityOff.js";
|
|
103
|
+
import { default as qr } from "./Warning.js";
|
|
104
|
+
import { default as Jr } from "./WeightIcon.js";
|
|
105
|
+
import { default as Xr } from "./Whatsapp.js";
|
|
105
106
|
export {
|
|
106
107
|
d as Add,
|
|
107
108
|
l as AddAPhoto,
|
|
108
|
-
p as
|
|
109
|
-
x as
|
|
110
|
-
i as
|
|
111
|
-
I as
|
|
112
|
-
A as
|
|
113
|
-
b as
|
|
114
|
-
P as
|
|
115
|
-
w as ArrowBack,
|
|
109
|
+
p as AddIcon,
|
|
110
|
+
x as AlertIcon,
|
|
111
|
+
i as AmericanExpress,
|
|
112
|
+
I as AmericanExpressRounded,
|
|
113
|
+
A as Apnfd,
|
|
114
|
+
b as Approve,
|
|
115
|
+
P as ArrowBack,
|
|
116
116
|
r as ArrowDown,
|
|
117
117
|
t as ArrowUp,
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
N as
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
118
|
+
R as ArrowsOutward,
|
|
119
|
+
F as AttachFile,
|
|
120
|
+
g as BusinessCenter,
|
|
121
|
+
S as CalendarIcon,
|
|
122
|
+
v as Call,
|
|
123
|
+
U as CancelIcon,
|
|
124
|
+
E as Certificado,
|
|
125
|
+
N as ChatBubble,
|
|
126
|
+
z as CheckIcon,
|
|
127
|
+
K as Checkbook,
|
|
128
|
+
T as ChevronLeft,
|
|
129
|
+
G as Close,
|
|
130
|
+
Q as Comisiones,
|
|
131
|
+
Y as CompareArrows,
|
|
131
132
|
_ as ComputerCancel,
|
|
132
133
|
oo as ComunicacionesIcon,
|
|
133
134
|
ro as ContentCopy,
|
|
@@ -140,7 +141,7 @@ export {
|
|
|
140
141
|
Co as DeniedIcon,
|
|
141
142
|
ho as Diners,
|
|
142
143
|
Do as DinersRounded,
|
|
143
|
-
|
|
144
|
+
wo as Discover,
|
|
144
145
|
yo as DiscoverRounded,
|
|
145
146
|
Mo as Distance,
|
|
146
147
|
ko as Documentos,
|
|
@@ -148,7 +149,7 @@ export {
|
|
|
148
149
|
Lo as EditIcon,
|
|
149
150
|
Bo as FallbackCardRounded,
|
|
150
151
|
Ho as Female,
|
|
151
|
-
|
|
152
|
+
Oo as Filter,
|
|
152
153
|
Wo as Folder,
|
|
153
154
|
jo as FondosExtranjero,
|
|
154
155
|
qo as Fumador,
|
|
@@ -167,44 +168,45 @@ export {
|
|
|
167
168
|
Ce as MailIcon,
|
|
168
169
|
he as Male,
|
|
169
170
|
De as MasAcciones,
|
|
170
|
-
|
|
171
|
+
we as Mastercard,
|
|
171
172
|
ye as MastercardRounded,
|
|
172
173
|
Me as Medical,
|
|
173
174
|
ke as Menu,
|
|
174
175
|
Ve as MoreVert,
|
|
175
176
|
Le as NextIcon,
|
|
176
177
|
Be as Notes,
|
|
177
|
-
He as
|
|
178
|
-
|
|
179
|
-
We as
|
|
180
|
-
je as
|
|
181
|
-
qe as
|
|
182
|
-
Je as
|
|
183
|
-
Xe as
|
|
184
|
-
Ze as
|
|
185
|
-
$e as
|
|
186
|
-
er as
|
|
187
|
-
ar as
|
|
188
|
-
fr as
|
|
189
|
-
sr as
|
|
190
|
-
ur as
|
|
191
|
-
mr as
|
|
192
|
-
nr as
|
|
193
|
-
cr as
|
|
194
|
-
Cr as
|
|
195
|
-
hr as
|
|
196
|
-
Dr as
|
|
197
|
-
|
|
198
|
-
yr as
|
|
199
|
-
Mr as
|
|
200
|
-
kr as
|
|
201
|
-
Vr as
|
|
202
|
-
Lr as
|
|
203
|
-
Br as
|
|
204
|
-
Hr as
|
|
205
|
-
|
|
206
|
-
Wr as
|
|
207
|
-
jr as
|
|
208
|
-
qr as
|
|
209
|
-
Jr as
|
|
178
|
+
He as Notifications,
|
|
179
|
+
Oe as NumPolizaIcon,
|
|
180
|
+
We as OpenInFull,
|
|
181
|
+
je as Paid,
|
|
182
|
+
qe as Pep,
|
|
183
|
+
Je as Person,
|
|
184
|
+
Xe as PersonCancel,
|
|
185
|
+
Ze as PhotoLibrary,
|
|
186
|
+
$e as Planet,
|
|
187
|
+
er as PolizaIcon,
|
|
188
|
+
ar as PriceChange,
|
|
189
|
+
fr as ProductIcon,
|
|
190
|
+
sr as Public,
|
|
191
|
+
ur as ReembolsosIcon,
|
|
192
|
+
mr as Refresh,
|
|
193
|
+
nr as Renovaciones,
|
|
194
|
+
cr as Replay,
|
|
195
|
+
Cr as Reply,
|
|
196
|
+
hr as SearchIcon,
|
|
197
|
+
Dr as Send,
|
|
198
|
+
wr as Share,
|
|
199
|
+
yr as SmallFamily,
|
|
200
|
+
Mr as Smartphone,
|
|
201
|
+
kr as Tutoriales,
|
|
202
|
+
Vr as UnfoldMore,
|
|
203
|
+
Lr as Upload,
|
|
204
|
+
Br as VerifiedUser,
|
|
205
|
+
Hr as Visa,
|
|
206
|
+
Or as VisaRounded,
|
|
207
|
+
Wr as Visibility,
|
|
208
|
+
jr as VisibilityOff,
|
|
209
|
+
qr as Warning,
|
|
210
|
+
Jr as WeightIcon,
|
|
211
|
+
Xr as Whatsapp
|
|
210
212
|
};
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -32,6 +32,7 @@ export { default as Close } from './components/Close';
|
|
|
32
32
|
export { default as ClosePanel } from './components/ClosePanel';
|
|
33
33
|
export { default as CobrarIcon } from './components/CobrarIcon';
|
|
34
34
|
export { default as Comisiones } from './components/Comisiones';
|
|
35
|
+
export { default as CompareArrows } from './components/CompareArrows';
|
|
35
36
|
export { default as ComputerCancel } from './components/ComputerCancel';
|
|
36
37
|
export { default as ComunicacionesIcon } from './components/ComunicacionesIcon';
|
|
37
38
|
export { default as ContentCopy } from './components/ContentCopy';
|