bmi-next-brokers 1.4.3 → 1.4.5
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/index7.css +1 -1
- package/dist/components/modal/index.d.ts +10 -1
- package/dist/components/modal/index.js +141 -128
- package/dist/icons/Icon.js +1 -1
- package/dist/icons/components/AddAlert.js +36 -7
- package/dist/icons/components/Aetna.js +18 -1
- package/dist/icons/components/AnchorEmpty.js +36 -7
- package/dist/icons/components/AnchorFill.js +37 -8
- package/dist/icons/components/ArrowForward.js +37 -8
- package/dist/icons/components/Assignment.js +37 -8
- package/dist/icons/components/BmiLogo.js +1 -1
- package/dist/icons/components/CheckCircle.js +36 -7
- package/dist/icons/components/ColectivosIcon.d.ts +3 -0
- package/dist/icons/components/ColectivosIcon.js +39 -0
- package/dist/icons/components/Colombia.d.ts +3 -0
- package/dist/icons/components/Colombia.js +14 -0
- package/dist/icons/components/Comunicaciones.js +36 -7
- package/dist/icons/components/CostaRica.d.ts +3 -0
- package/dist/icons/components/CostaRica.js +14 -0
- package/dist/icons/components/Ecuador.d.ts +3 -0
- package/dist/icons/components/Ecuador.js +456 -0
- package/dist/icons/components/Facturas.js +36 -7
- package/dist/icons/components/Guatemala.d.ts +3 -0
- package/dist/icons/components/Guatemala.js +286 -0
- package/dist/icons/components/Headset.js +37 -8
- package/dist/icons/components/Home.js +37 -8
- package/dist/icons/components/Hospital.js +27 -4
- package/dist/icons/components/Internacional.d.ts +3 -0
- package/dist/icons/components/Internacional.js +14 -0
- package/dist/icons/components/Password.d.ts +3 -0
- package/dist/icons/components/Password.js +22 -0
- package/dist/icons/components/RepDominicana.d.ts +3 -0
- package/dist/icons/components/RepDominicana.js +160 -0
- package/dist/icons/components/Schedule.js +36 -7
- package/dist/icons/components/Stethoscope.js +35 -6
- package/dist/icons/components/Swich.js +37 -8
- package/dist/icons/components/index.d.ts +31 -16
- package/dist/icons/components/index.js +230 -200
- package/dist/icons/index.d.ts +8 -0
- package/dist/icons/index.js +238 -222
- package/dist/index-j6ne-W8k.js +298 -0
- package/package.json +1 -1
- package/dist/index-ZeG929jL.js +0 -282
package/dist/assets/index7.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.
|
|
1
|
+
._modalOverlay_1yekd_1{position:fixed;top:0;left:0;width:100%;height:100%;background-color:#0009;display:flex;justify-content:center;align-items:center;animation:_overlayFadeIn_1yekd_1 .25s ease-in-out forwards;overflow:hidden}._modalOverlay_1yekd_1._closing_1yekd_15{animation:_overlayFadeOut_1yekd_1 .25s ease-in-out forwards}@keyframes _overlayFadeIn_1yekd_1{0%{opacity:0}to{opacity:1}}@keyframes _overlayFadeOut_1yekd_1{0%{opacity:1}to{opacity:0}}._modalLayout_1yekd_37{display:flex;gap:20px;justify-content:center;align-items:flex-start}._modal_1yekd_1{display:flex;flex-direction:column;border-radius:24px;background-color:#fff;box-shadow:0 4px 6px #0000001a;max-height:calc(100dvh - 15px);margin-inline:15px}._modalHeader_1yekd_55{display:flex;justify-content:space-between;align-items:center;padding:16px 20px;gap:8px}._modalHeader_1yekd_55._withBorder_1yekd_63{border-bottom:1px solid var(--Blacks-Transparencias-Black-20, rgba(0, 0, 0, .2))}._modalTitle_1yekd_68{color:var(--Blacks-Black, #000);font-size:20px;font-style:normal;font-weight:600;line-height:24px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:100%}._closeIcon_1yekd_80{display:flex;flex-direction:column;border-radius:50%;background-color:#d9d9d9;align-items:center;justify-content:center;aspect-ratio:1/1;padding:6.2px;cursor:pointer;margin-left:auto}._modalBody_1yekd_93{display:flex;flex-direction:column;flex:1;padding:0 16px 16px}._modalBody_1yekd_93::-webkit-scrollbar{display:none}._modalFooter_1yekd_104._withBorder_1yekd_63{border-top:1px solid var(--Blacks-Transparencias-Black-20, rgba(0, 0, 0, .2))}._buttonsDiv_1yekd_109{display:grid;grid-template-columns:1fr 1fr;margin-left:auto;width:fit-content;gap:19px;padding-inline:16px;margin-block:16px}._buttonsDiv_1yekd_109._fullWidthFooter_1yekd_119{width:100%}._buttonsDiv_1yekd_109 :only-child{grid-column:2}
|
|
@@ -26,6 +26,8 @@ export interface ModalProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
|
26
26
|
onClose?: (() => Promise<void> | void) | false;
|
|
27
27
|
closeModal: () => void;
|
|
28
28
|
withScroll?: boolean;
|
|
29
|
+
fullWidthFooter?: boolean;
|
|
30
|
+
helperElement?: React.ReactNode;
|
|
29
31
|
}
|
|
30
32
|
/**
|
|
31
33
|
* Modal con overlay, header, body y footer configurable.
|
|
@@ -51,11 +53,15 @@ export interface ModalProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
|
51
53
|
* @param onClickOverlay - Callback opcional al hacer click fuera del modal. Si se pasa `false`, el overlay no cierra el modal ni ejecuta acción.
|
|
52
54
|
* @param onClose - Callback opcional al pulsar el icono de cierre. Si se pasa `false`, no se renderiza el icono de cierre.
|
|
53
55
|
* @param closeModal - Función obligatoria que cierra el modal desde el exterior.
|
|
56
|
+
* @param withScroll - Scroll automático en modalBody. Aparece línea de separación en el header y en el footer.
|
|
57
|
+
* @param fullWidthFooter - Footer ocupa el 100% del ancho en lugar de fit-content.
|
|
58
|
+
* @param helperElement - Componente a renderizar como helper a la derecha del modal, dentro del mismo layout de overlay.
|
|
54
59
|
*
|
|
55
60
|
* @example
|
|
56
61
|
* ```tsx
|
|
57
62
|
* import { useState } from "react";
|
|
58
63
|
* import { Modal, Button } from "bmi-next-brokers";
|
|
64
|
+
* import MiComponente from "@componentes";
|
|
59
65
|
*
|
|
60
66
|
* export default function Example() {
|
|
61
67
|
* const [isOpen, setIsOpen] = useState(false);
|
|
@@ -72,12 +78,15 @@ export interface ModalProps extends React.HTMLAttributes<HTMLSpanElement> {
|
|
|
72
78
|
* closeModal={() => setIsOpen(false)}
|
|
73
79
|
* title="Ejemplo de Modal"
|
|
74
80
|
* width={500}
|
|
81
|
+
* fullWidthFooter
|
|
82
|
+
* withScroll={false}
|
|
83
|
+
* helperElement={< MiComponente />}
|
|
75
84
|
* confirmButton={{
|
|
76
85
|
* text: "Guardar",
|
|
77
86
|
* action: handleConfirm,
|
|
78
87
|
* variant: "brand",
|
|
79
88
|
* size: "small",
|
|
80
|
-
* loading: false
|
|
89
|
+
* loading: false,
|
|
81
90
|
* id: "form"
|
|
82
91
|
* }}
|
|
83
92
|
* cancelButton={{
|
|
@@ -1,148 +1,161 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { useRef as
|
|
3
|
-
import { Icon as
|
|
4
|
-
import { useScrollLock as
|
|
5
|
-
import { Button as
|
|
6
|
-
import { r as
|
|
7
|
-
import '../../assets/index7.css';const
|
|
8
|
-
modalOverlay:
|
|
9
|
-
closing:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
1
|
+
import { jsx as a, jsxs as h } from "react/jsx-runtime";
|
|
2
|
+
import { useRef as C, useState as v, useEffect as M } from "react";
|
|
3
|
+
import { Icon as P } from "../../icons/Icon.js";
|
|
4
|
+
import { useScrollLock as q } from "../../hooks/useScrollLock.js";
|
|
5
|
+
import { Button as E } from "../Button/Button.js";
|
|
6
|
+
import { r as G } from "../../index-CGDUIzcq.js";
|
|
7
|
+
import '../../assets/index7.css';const J = "_modalOverlay_1yekd_1", K = "_closing_1yekd_15", Q = "_modalLayout_1yekd_37", U = "_modal_1yekd_1", n = "_modalHeader_1yekd_55", u = "_withBorder_1yekd_63", B = "_modalTitle_1yekd_68", ee = "_closeIcon_1yekd_80", se = "_modalBody_1yekd_93", le = "_modalFooter_1yekd_104", de = "_buttonsDiv_1yekd_109", ae = "_fullWidthFooter_1yekd_119", l = {
|
|
8
|
+
modalOverlay: J,
|
|
9
|
+
closing: K,
|
|
10
|
+
modalLayout: Q,
|
|
11
|
+
modal: U,
|
|
12
|
+
modalHeader: n,
|
|
13
|
+
withBorder: u,
|
|
14
|
+
modalTitle: B,
|
|
15
|
+
closeIcon: ee,
|
|
16
|
+
modalBody: se,
|
|
17
|
+
modalFooter: le,
|
|
18
|
+
buttonsDiv: de,
|
|
19
|
+
fullWidthFooter: ae
|
|
20
|
+
}, me = ({
|
|
21
|
+
isOpen: m,
|
|
22
|
+
title: k,
|
|
23
|
+
children: b,
|
|
24
|
+
width: N = 752,
|
|
25
|
+
confirmButton: e,
|
|
26
|
+
cancelButton: s,
|
|
27
|
+
zIndex: I,
|
|
28
|
+
className: S,
|
|
29
|
+
style: $,
|
|
30
|
+
onClickOverlay: _,
|
|
31
|
+
onClose: o,
|
|
32
|
+
closeModal: L,
|
|
33
|
+
withScroll: O = !0,
|
|
34
|
+
fullWidthFooter: F = !1,
|
|
35
|
+
helperElement: H,
|
|
32
36
|
...x
|
|
33
37
|
}) => {
|
|
34
|
-
const
|
|
35
|
-
|
|
36
|
-
const
|
|
37
|
-
|
|
38
|
-
|
|
38
|
+
const g = C(null), [D, t] = v(!1), y = C(null), [T, c] = v(!1), [z, R] = v(!1);
|
|
39
|
+
q(m);
|
|
40
|
+
const i = () => {
|
|
41
|
+
t(!0), setTimeout(() => {
|
|
42
|
+
L(), t(!1);
|
|
39
43
|
}, 250);
|
|
40
|
-
},
|
|
44
|
+
}, W = async (d) => {
|
|
41
45
|
var r;
|
|
42
|
-
(r =
|
|
43
|
-
},
|
|
44
|
-
|
|
46
|
+
(r = g.current) != null && r.contains(d.target) || _ !== !1 && (typeof _ == "function" && await _(), i());
|
|
47
|
+
}, j = async () => {
|
|
48
|
+
o !== !1 && (typeof o == "function" && await o(), i());
|
|
45
49
|
}, A = async () => {
|
|
46
|
-
|
|
47
|
-
},
|
|
48
|
-
|
|
49
|
-
},
|
|
50
|
-
return
|
|
51
|
-
if (!
|
|
52
|
-
const
|
|
53
|
-
|
|
50
|
+
e != null && e.action && await e.action(), i();
|
|
51
|
+
}, Y = async () => {
|
|
52
|
+
s != null && s.action && await s.action(), i();
|
|
53
|
+
}, V = s && Object.keys(s).length > 0, X = e && Object.keys(e).length > 0, w = V && (s.show ?? !0), p = X && (e.show ?? !0), Z = `${l.modal} ${S || ""}`;
|
|
54
|
+
return M(() => {
|
|
55
|
+
if (!y.current) return;
|
|
56
|
+
const d = y.current, r = () => {
|
|
57
|
+
R(d.scrollTop > 0), c(d.scrollHeight > d.clientHeight);
|
|
54
58
|
};
|
|
55
|
-
r(),
|
|
56
|
-
const
|
|
57
|
-
return
|
|
58
|
-
|
|
59
|
+
r(), d.addEventListener("scroll", r);
|
|
60
|
+
const f = new ResizeObserver(r);
|
|
61
|
+
return f.observe(d), () => {
|
|
62
|
+
d.removeEventListener("scroll", r), f.disconnect();
|
|
59
63
|
};
|
|
60
|
-
}, [
|
|
61
|
-
/* @__PURE__ */
|
|
64
|
+
}, [b]), m ? G.createPortal(
|
|
65
|
+
/* @__PURE__ */ a(
|
|
62
66
|
"div",
|
|
63
67
|
{
|
|
64
68
|
className: `${l.modalOverlay} ${D ? l.closing : ""}`,
|
|
65
|
-
style: { zIndex: 3e3 + (
|
|
66
|
-
onClick:
|
|
67
|
-
children: /* @__PURE__ */
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
69
|
+
style: { zIndex: 3e3 + (I || 0) },
|
|
70
|
+
onClick: W,
|
|
71
|
+
children: /* @__PURE__ */ h("div", { className: l.modalLayout, children: [
|
|
72
|
+
/* @__PURE__ */ h(
|
|
73
|
+
"div",
|
|
74
|
+
{
|
|
75
|
+
className: Z,
|
|
76
|
+
style: { width: N, ...$ },
|
|
77
|
+
ref: g,
|
|
78
|
+
...x,
|
|
79
|
+
children: [
|
|
80
|
+
/* @__PURE__ */ h(
|
|
81
|
+
"div",
|
|
82
|
+
{
|
|
83
|
+
className: `${l.modalHeader} ${z ? l.withBorder : ""}`,
|
|
84
|
+
children: [
|
|
85
|
+
k && /* @__PURE__ */ a("span", { className: l.modalTitle, children: k }),
|
|
86
|
+
o !== !1 && /* @__PURE__ */ a("div", { className: l.closeIcon, onClick: j, children: /* @__PURE__ */ a(
|
|
87
|
+
P,
|
|
88
|
+
{
|
|
89
|
+
name: "Close",
|
|
90
|
+
width: 12,
|
|
91
|
+
height: 12,
|
|
92
|
+
fill: "var(--Blacks-Transparencias-Black-40, rgba(0, 0, 0, 0.40)"
|
|
93
|
+
}
|
|
94
|
+
) })
|
|
95
|
+
]
|
|
96
|
+
}
|
|
97
|
+
),
|
|
98
|
+
/* @__PURE__ */ a(
|
|
99
|
+
"div",
|
|
100
|
+
{
|
|
101
|
+
className: l.modalBody,
|
|
102
|
+
style: {
|
|
103
|
+
overflowY: O ? "auto" : "hidden"
|
|
104
|
+
},
|
|
105
|
+
ref: y,
|
|
106
|
+
children: b
|
|
107
|
+
}
|
|
108
|
+
),
|
|
109
|
+
(w || p) && /* @__PURE__ */ a(
|
|
110
|
+
"div",
|
|
111
|
+
{
|
|
112
|
+
className: `${l.modalFooter} ${T ? l.withBorder : ""}`,
|
|
113
|
+
children: /* @__PURE__ */ h(
|
|
114
|
+
"div",
|
|
83
115
|
{
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
onClick: F,
|
|
114
|
-
disabled: (e == null ? void 0 : e.disabled) || !1,
|
|
115
|
-
size: (e == null ? void 0 : e.size) || "small",
|
|
116
|
-
loading: e == null ? void 0 : e.loading,
|
|
117
|
-
fullWidth: !0,
|
|
118
|
-
children: (e == null ? void 0 : e.text) || "Cancelar"
|
|
119
|
-
}
|
|
120
|
-
),
|
|
121
|
-
c && /* @__PURE__ */ d(
|
|
122
|
-
N,
|
|
123
|
-
{
|
|
124
|
-
type: "submit",
|
|
125
|
-
form: s == null ? void 0 : s.id,
|
|
126
|
-
variant: (s == null ? void 0 : s.variant) || "brand",
|
|
127
|
-
onClick: A,
|
|
128
|
-
disabled: (s == null ? void 0 : s.disabled) || !1,
|
|
129
|
-
size: (s == null ? void 0 : s.size) || "small",
|
|
130
|
-
loading: s == null ? void 0 : s.loading,
|
|
131
|
-
fullWidth: !0,
|
|
132
|
-
children: (s == null ? void 0 : s.text) || "Confirmar"
|
|
116
|
+
className: `${l.buttonsDiv} ${F ? l.fullWidthFooter : ""}`,
|
|
117
|
+
children: [
|
|
118
|
+
w && /* @__PURE__ */ a(
|
|
119
|
+
E,
|
|
120
|
+
{
|
|
121
|
+
variant: (s == null ? void 0 : s.variant) || "outline",
|
|
122
|
+
onClick: Y,
|
|
123
|
+
disabled: (s == null ? void 0 : s.disabled) || !1,
|
|
124
|
+
size: (s == null ? void 0 : s.size) || "small",
|
|
125
|
+
loading: s == null ? void 0 : s.loading,
|
|
126
|
+
fullWidth: !0,
|
|
127
|
+
children: (s == null ? void 0 : s.text) || "Cancelar"
|
|
128
|
+
}
|
|
129
|
+
),
|
|
130
|
+
p && /* @__PURE__ */ a(
|
|
131
|
+
E,
|
|
132
|
+
{
|
|
133
|
+
type: "submit",
|
|
134
|
+
form: e == null ? void 0 : e.id,
|
|
135
|
+
variant: (e == null ? void 0 : e.variant) || "brand",
|
|
136
|
+
onClick: A,
|
|
137
|
+
disabled: (e == null ? void 0 : e.disabled) || !1,
|
|
138
|
+
size: (e == null ? void 0 : e.size) || "small",
|
|
139
|
+
loading: e == null ? void 0 : e.loading,
|
|
140
|
+
fullWidth: !0,
|
|
141
|
+
children: (e == null ? void 0 : e.text) || "Confirmar"
|
|
142
|
+
}
|
|
143
|
+
)
|
|
144
|
+
]
|
|
133
145
|
}
|
|
134
146
|
)
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
147
|
+
}
|
|
148
|
+
)
|
|
149
|
+
]
|
|
150
|
+
}
|
|
151
|
+
),
|
|
152
|
+
H
|
|
153
|
+
] })
|
|
141
154
|
}
|
|
142
155
|
),
|
|
143
156
|
document.getElementById("root") || document.body
|
|
144
157
|
) : null;
|
|
145
158
|
};
|
|
146
159
|
export {
|
|
147
|
-
|
|
160
|
+
me as Modal
|
|
148
161
|
};
|
package/dist/icons/Icon.js
CHANGED
|
@@ -1,10 +1,39 @@
|
|
|
1
1
|
import { jsxs as t, jsx as h } from "react/jsx-runtime";
|
|
2
|
-
const
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
2
|
+
const r = (e) => /* @__PURE__ */ t(
|
|
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
|
+
...e,
|
|
11
|
+
children: [
|
|
12
|
+
/* @__PURE__ */ h(
|
|
13
|
+
"mask",
|
|
14
|
+
{
|
|
15
|
+
id: "add_alert_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__ */ h("path", { fill: "currentColor", d: "M0 0h18v18H0z" })
|
|
25
|
+
}
|
|
26
|
+
),
|
|
27
|
+
/* @__PURE__ */ h("g", { mask: "url(#add_alert_svg__a)", children: /* @__PURE__ */ h(
|
|
28
|
+
"path",
|
|
29
|
+
{
|
|
30
|
+
fill: "currentColor",
|
|
31
|
+
d: "M8.25 11.25h1.5v-1.5h1.5v-1.5h-1.5v-1.5h-1.5v1.5h-1.5v1.5h1.5zm-5.25 3v-1.5h1.5V7.5q0-1.556.938-2.766A4.33 4.33 0 0 1 7.874 3.15v-.525q0-.468.328-.797Q8.532 1.5 9 1.5t.797.328q.328.328.328.797v.525q1.5.375 2.438 1.584.937 1.21.937 2.766v5.25H15v1.5zm6 2.25q-.619 0-1.06-.44A1.45 1.45 0 0 1 7.5 15h3q0 .619-.44 1.06-.442.44-1.06.44m-3-3.75h6V7.5q0-1.237-.881-2.119A2.9 2.9 0 0 0 9 4.5q-1.237 0-2.119.881A2.9 2.9 0 0 0 6 7.5z"
|
|
32
|
+
}
|
|
33
|
+
) })
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
);
|
|
8
37
|
export {
|
|
9
|
-
|
|
38
|
+
r as default
|
|
10
39
|
};
|
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
import { jsx as c } from "react/jsx-runtime";
|
|
2
|
-
const v = (h) => /* @__PURE__ */ c(
|
|
2
|
+
const v = (h) => /* @__PURE__ */ c(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
fill: "none",
|
|
7
|
+
viewBox: "0 0 77 15",
|
|
8
|
+
width: "1em",
|
|
9
|
+
height: "1em",
|
|
10
|
+
...h,
|
|
11
|
+
children: /* @__PURE__ */ c(
|
|
12
|
+
"path",
|
|
13
|
+
{
|
|
14
|
+
fill: "currentColor",
|
|
15
|
+
d: "M71.15 11.191c0-1.01.118-2.473.118-4.179 0-3.158-1.3-4.34-4.82-4.34-1.705 0-3.203.243-4.133.65l.118 2.508c.812-.442 1.985-.848 3.122-.848 1.625 0 2.067.65 2.067 2.229v.244h-.523c-3.972 0-5.84 1.218-5.84 3.447s1.138 3.646 4.423 3.646c1.741 0 3.402-.243 5.631-.243-.162-.849-.162-2.193-.162-3.123zm-4.62 1.21c-1.218 0-1.742-.407-1.742-1.418s.65-1.543 2.31-1.543h.488c0 .93-.036 2.067.036 2.834-.28.081-.686.117-1.092.117zm-30.64-.118c-1.985 0-3.041-1.01-3.041-2.635v-.082c.36 0 1.056.037 1.462.037 3.529 0 5.306-1.092 5.306-3.484 0-2.067-1.498-3.402-4.702-3.402-3.934 0-5.469 1.741-5.839 4.864-.568-.036-1.218-.036-2.067-.036V7.02c0-3.158-1.3-4.34-4.819-4.34-1.706 0-3.204.243-4.133.65l.117 2.508c.812-.442 1.986-.848 3.123-.848 1.624 0 2.112.65 2.112 2.229v.244h-.524c-3.97 0-5.84 1.218-5.84 3.447s1.138 3.646 4.423 3.646c1.742 0 3.403-.243 5.632-.243-.163-.93-.163-2.266-.163-3.16 0-.486.036-1.055.036-1.705.93 0 1.625.045 2.067.045.325 3.728 2.265 5.063 6.245 5.063 1.463 0 2.96-.243 3.773-.604l-.117-2.51c-.768.488-1.869.849-3.042.849zm-13.582.117c-1.219 0-1.742-.406-1.742-1.417 0-1.01.65-1.543 2.31-1.543h.487c0 .93-.036 2.067.037 2.834-.28.081-.731.117-1.092.117zm10.505-4.819c0-1.58.487-2.753 1.949-2.753.812 0 1.38.443 1.38 1.219 0 1.092-.73 1.624-2.274 1.624-.36 0-.767 0-1.055-.036zm26.993 1.498V6.85c0-2.879-1.254-4.133-4.819-4.133-1.986 0-3.402.36-5.632.36.118 2.031.118 4.504.118 6.038s-.036 4.377-.118 5.27h3.809c-.081-.893-.163-3.528-.163-5.27 0-1.01 0-2.229.037-3.853.36-.118.848-.244 1.38-.244 1.336 0 1.787.605 1.787 2.346V9.07c0 1.58-.036 4.377-.117 5.27h3.809c0-.893-.082-3.483-.082-5.27zm-12.003 2.753.163 2.509c-.28.08-1.219.243-2.428.243-2.51 0-3.854-1.056-3.854-3.646 0-2.03.036-4.26.036-5.469h-1.3c.046-.568 0-1.336 0-1.904C42.37 3.24 42.976 2.148 43.3 0h2.148c-.082.893-.118 2.148-.163 3.041h2.274V5.47h-2.31v4.422c0 1.706.361 2.194 1.498 2.194.406 0 .849-.082 1.056-.244zM4.438 1.66c.487 0 .93.162 1.3.523l2.111 2.112 2.112-2.112a1.78 1.78 0 0 1 1.3-.523c.442 0 .93.162 1.3.523l2.59 2.59a1.804 1.804 0 0 1 0 2.59l-7.292 7.257-7.31-7.284a1.804 1.804 0 0 1 0-2.59l2.59-2.59a1.9 1.9 0 0 1 1.299-.487m67.444 1.047h1.985v.406H73.1v2.03h-.487v-2.03h-.767zm2.427 0h.65l.325 1.055c.081.325.244.93.244.93s.162-.605.243-.93l.325-1.055h.65v2.427h-.442v-.893c0-.442.036-1.092.036-1.092s-.162.568-.28 1.056l-.28.93h-.442l-.28-.93a11 11 0 0 1-.28-1.056s.046.686.046 1.092v.893h-.442V2.717z"
|
|
16
|
+
}
|
|
17
|
+
)
|
|
18
|
+
}
|
|
19
|
+
);
|
|
3
20
|
export {
|
|
4
21
|
v as default
|
|
5
22
|
};
|
|
@@ -1,10 +1,39 @@
|
|
|
1
1
|
import { jsxs as h, jsx as a } from "react/jsx-runtime";
|
|
2
|
-
const
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
2
|
+
const r = (e) => /* @__PURE__ */ h(
|
|
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
|
+
...e,
|
|
11
|
+
children: [
|
|
12
|
+
/* @__PURE__ */ a(
|
|
13
|
+
"mask",
|
|
14
|
+
{
|
|
15
|
+
id: "anchor_empty_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(#anchor_empty_svg__a)", children: /* @__PURE__ */ a(
|
|
28
|
+
"path",
|
|
29
|
+
{
|
|
30
|
+
fill: "currentColor",
|
|
31
|
+
d: "M10.667 3.333V8L11.8 9.133a.67.67 0 0 1 .2.484V10a.65.65 0 0 1-.192.475.65.65 0 0 1-.475.192H8.667v3.9a.65.65 0 0 1-.192.475.65.65 0 0 1-.475.191.65.65 0 0 1-.475-.191.65.65 0 0 1-.192-.475v-3.9H4.667a.65.65 0 0 1-.475-.192A.65.65 0 0 1 4 10v-.383a.7.7 0 0 1 .2-.484L5.333 8V3.333a.65.65 0 0 1-.475-.191.65.65 0 0 1-.191-.475q0-.285.191-.475A.65.65 0 0 1 5.333 2h5.334q.283 0 .475.192a.65.65 0 0 1 .191.475.65.65 0 0 1-.191.475.65.65 0 0 1-.475.191m-4.767 6h4.2l-.767-.766V3.333H6.667v5.234z"
|
|
32
|
+
}
|
|
33
|
+
) })
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
);
|
|
8
37
|
export {
|
|
9
|
-
|
|
38
|
+
r as default
|
|
10
39
|
};
|
|
@@ -1,10 +1,39 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
const
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { jsxs as e, jsx as a } from "react/jsx-runtime";
|
|
2
|
+
const r = (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: "anchor_fill_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(#anchor_fill_svg__a)", children: /* @__PURE__ */ a(
|
|
28
|
+
"path",
|
|
29
|
+
{
|
|
30
|
+
fill: "currentColor",
|
|
31
|
+
d: "M10.667 3.333V8L11.8 9.133a.67.67 0 0 1 .2.484V10a.65.65 0 0 1-.192.475.65.65 0 0 1-.475.192H8.667v3.9a.65.65 0 0 1-.192.475.65.65 0 0 1-.475.191.65.65 0 0 1-.475-.191.65.65 0 0 1-.192-.475v-3.9H4.667a.65.65 0 0 1-.475-.192A.65.65 0 0 1 4 10v-.383a.7.7 0 0 1 .2-.484L5.333 8V3.333a.65.65 0 0 1-.475-.191.65.65 0 0 1-.191-.475q0-.285.191-.475A.65.65 0 0 1 5.333 2h5.334q.283 0 .475.192a.65.65 0 0 1 .191.475.65.65 0 0 1-.191.475.65.65 0 0 1-.475.191"
|
|
32
|
+
}
|
|
33
|
+
) })
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
);
|
|
8
37
|
export {
|
|
9
|
-
|
|
38
|
+
r as default
|
|
10
39
|
};
|
|
@@ -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
|
};
|
|
@@ -1,10 +1,39 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
const
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { jsxs as h, jsx as s } from "react/jsx-runtime";
|
|
2
|
+
const a = (e) => /* @__PURE__ */ h(
|
|
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
|
+
...e,
|
|
11
|
+
children: [
|
|
12
|
+
/* @__PURE__ */ s(
|
|
13
|
+
"mask",
|
|
14
|
+
{
|
|
15
|
+
id: "assignment_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__ */ s("path", { fill: "currentColor", d: "M0 0h18v18H0z" })
|
|
25
|
+
}
|
|
26
|
+
),
|
|
27
|
+
/* @__PURE__ */ s("g", { mask: "url(#assignment_svg__a)", children: /* @__PURE__ */ s(
|
|
28
|
+
"path",
|
|
29
|
+
{
|
|
30
|
+
fill: "currentColor",
|
|
31
|
+
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-.44H6.9q.243-.675.816-1.087Q8.286.75 9 .75q.713 0 1.284.413.572.411.816 1.087h3.15q.619 0 1.06.44.44.442.44 1.06v10.5q0 .619-.44 1.06-.442.44-1.06.44zm0-1.5h10.5V3.75H3.75zm1.5-1.5h5.25v-1.5H5.25zm0-3h7.5v-1.5h-7.5zm0-3h7.5v-1.5h-7.5zM9 3.188a.546.546 0 0 0 .563-.563A.546.546 0 0 0 9 2.063a.546.546 0 0 0-.562.562.546.546 0 0 0 .562.563"
|
|
32
|
+
}
|
|
33
|
+
) })
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
);
|
|
8
37
|
export {
|
|
9
|
-
|
|
38
|
+
a as default
|
|
10
39
|
};
|