@pismo/marola 1.0.0-beta.19 → 1.0.0-beta.20
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/Dialog/Backdrop.d.ts +3 -3
- package/dist/components/Dialog/Backdrop.js +8 -7
- package/dist/components/Dialog/CloseIconButton.d.ts +1 -2
- package/dist/components/Dialog/CloseIconButton.js +15 -18
- package/dist/components/Dialog/Dialog.js +56 -56
- package/dist/components/Icon/Icon.js +39 -29
- package/dist/components/Icon/types.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import { ModalBackdropSlotProps } from '@mui/base';
|
|
2
|
+
|
|
3
|
+
declare const Backdrop: import('react').ForwardRefExoticComponent<ModalBackdropSlotProps & {
|
|
4
4
|
className: string;
|
|
5
5
|
} & import('react').RefAttributes<HTMLDivElement>>;
|
|
6
6
|
export default Backdrop;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { jsx as a } from "react/jsx-runtime";
|
|
2
|
-
import { forwardRef as
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
})
|
|
2
|
+
import { forwardRef as s } from "react";
|
|
3
|
+
import { c as t } from "../../clsx-DB4S2d7J.js";
|
|
4
|
+
import { s as m } from "../../Dialog.module-D9e4RsKo.js";
|
|
5
|
+
const l = s(
|
|
6
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
7
|
+
({ ownerState: e, ...r }, o) => /* @__PURE__ */ a("div", { ...r, className: t(m.dialog__backdrop, r.className), ref: o })
|
|
8
|
+
);
|
|
8
9
|
export {
|
|
9
|
-
|
|
10
|
+
l as default
|
|
10
11
|
};
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
export interface CloseIconButtonProps {
|
|
2
2
|
handleOnClose: () => void;
|
|
3
|
-
className: string;
|
|
4
3
|
}
|
|
5
|
-
declare const CloseIconButton: ({ handleOnClose
|
|
4
|
+
declare const CloseIconButton: ({ handleOnClose }: CloseIconButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
5
|
export default CloseIconButton;
|
|
@@ -1,20 +1,17 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { Icon as
|
|
3
|
-
import { s as
|
|
4
|
-
import { B as
|
|
5
|
-
const
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
}
|
|
16
|
-
);
|
|
17
|
-
};
|
|
1
|
+
import { jsx as o } from "react/jsx-runtime";
|
|
2
|
+
import { Icon as t } from "../Icon/Icon.js";
|
|
3
|
+
import { s as i } from "../../Dialog.module-D9e4RsKo.js";
|
|
4
|
+
import { B as s } from "../../Button-DiLqcAJG.js";
|
|
5
|
+
const n = ({ handleOnClose: r }) => /* @__PURE__ */ o(
|
|
6
|
+
s,
|
|
7
|
+
{
|
|
8
|
+
className: i["dialog__close-icon"],
|
|
9
|
+
"aria-description": "Close dialog",
|
|
10
|
+
onClick: r,
|
|
11
|
+
"data-testid": "dialog-close-button",
|
|
12
|
+
children: /* @__PURE__ */ o(t, { icon: "circle-xmark", size: 32, color: "var(--gray-75)" })
|
|
13
|
+
}
|
|
14
|
+
);
|
|
18
15
|
export {
|
|
19
|
-
|
|
16
|
+
n as default
|
|
20
17
|
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { jsxs as
|
|
1
|
+
import { jsxs as $, jsx as S } from "react/jsx-runtime";
|
|
2
2
|
import { c as se } from "../../clsx-DB4S2d7J.js";
|
|
3
3
|
import ie from "./Actions.js";
|
|
4
4
|
import ae from "./Backdrop.js";
|
|
5
5
|
import le from "./CloseIconButton.js";
|
|
6
6
|
import ce from "./Content.js";
|
|
7
|
-
import { s as
|
|
7
|
+
import { s as z } from "../../Dialog.module-D9e4RsKo.js";
|
|
8
8
|
import ee from "./DialogTitle.js";
|
|
9
9
|
import { u as te, P as i, f as de, b as C, g as ue, a as fe, _ as pe, c as G, d as be, e as he } from "../../useSlotProps-kRhf7Gil.js";
|
|
10
10
|
import * as f from "react";
|
|
@@ -18,7 +18,7 @@ function J(...e) {
|
|
|
18
18
|
}, () => {
|
|
19
19
|
});
|
|
20
20
|
}
|
|
21
|
-
function
|
|
21
|
+
function Y(e) {
|
|
22
22
|
return A(e).defaultView || window;
|
|
23
23
|
}
|
|
24
24
|
function Te(e) {
|
|
@@ -51,7 +51,7 @@ function ke(e) {
|
|
|
51
51
|
}));
|
|
52
52
|
}), o.sort((n, s) => n.tabIndex === s.tabIndex ? n.documentOrder - s.documentOrder : n.tabIndex - s.tabIndex).map((n) => n.node).concat(t);
|
|
53
53
|
}
|
|
54
|
-
function
|
|
54
|
+
function Pe() {
|
|
55
55
|
return !0;
|
|
56
56
|
}
|
|
57
57
|
function j(e) {
|
|
@@ -61,7 +61,7 @@ function j(e) {
|
|
|
61
61
|
disableEnforceFocus: n = !1,
|
|
62
62
|
disableRestoreFocus: s = !1,
|
|
63
63
|
getTabbable: r = ke,
|
|
64
|
-
isEnabled: a =
|
|
64
|
+
isEnabled: a = Pe,
|
|
65
65
|
open: d
|
|
66
66
|
} = e, p = f.useRef(!1), x = f.useRef(null), h = f.useRef(null), m = f.useRef(null), R = f.useRef(null), g = f.useRef(!1), c = f.useRef(null), w = te(t.ref, c), I = f.useRef(null);
|
|
67
67
|
f.useEffect(() => {
|
|
@@ -115,13 +115,13 @@ function j(e) {
|
|
|
115
115
|
m.current === null && (m.current = l.relatedTarget), g.current = !0, R.current = l.target;
|
|
116
116
|
const v = t.props.onFocus;
|
|
117
117
|
v && v(l);
|
|
118
|
-
},
|
|
118
|
+
}, N = (l) => {
|
|
119
119
|
m.current === null && (m.current = l.relatedTarget), g.current = !0;
|
|
120
120
|
};
|
|
121
|
-
return /* @__PURE__ */
|
|
121
|
+
return /* @__PURE__ */ $(f.Fragment, {
|
|
122
122
|
children: [/* @__PURE__ */ S("div", {
|
|
123
123
|
tabIndex: d ? 0 : -1,
|
|
124
|
-
onFocus:
|
|
124
|
+
onFocus: N,
|
|
125
125
|
ref: x,
|
|
126
126
|
"data-testid": "sentinelStart"
|
|
127
127
|
}), /* @__PURE__ */ f.cloneElement(t, {
|
|
@@ -129,7 +129,7 @@ function j(e) {
|
|
|
129
129
|
onFocus: O
|
|
130
130
|
}), /* @__PURE__ */ S("div", {
|
|
131
131
|
tabIndex: d ? 0 : -1,
|
|
132
|
-
onFocus:
|
|
132
|
+
onFocus: N,
|
|
133
133
|
ref: h,
|
|
134
134
|
"data-testid": "sentinelEnd"
|
|
135
135
|
})]
|
|
@@ -190,15 +190,15 @@ process.env.NODE_ENV !== "production" && (j.propTypes = {
|
|
|
190
190
|
open: i.bool.isRequired
|
|
191
191
|
});
|
|
192
192
|
process.env.NODE_ENV !== "production" && (j.propTypes = Ee(j.propTypes));
|
|
193
|
-
function
|
|
193
|
+
function Ne(e) {
|
|
194
194
|
const t = A(e);
|
|
195
|
-
return t.body === e ?
|
|
195
|
+
return t.body === e ? Y(e).innerWidth > t.documentElement.clientWidth : e.scrollHeight > e.clientHeight;
|
|
196
196
|
}
|
|
197
|
-
function
|
|
197
|
+
function _(e, t) {
|
|
198
198
|
t ? e.setAttribute("aria-hidden", "true") : e.removeAttribute("aria-hidden");
|
|
199
199
|
}
|
|
200
200
|
function Q(e) {
|
|
201
|
-
return parseInt(
|
|
201
|
+
return parseInt(Y(e).getComputedStyle(e).paddingRight, 10) || 0;
|
|
202
202
|
}
|
|
203
203
|
function Ce(e) {
|
|
204
204
|
const o = ["TEMPLATE", "SCRIPT", "STYLE", "LINK", "MAP", "META", "NOSCRIPT", "PICTURE", "COL", "COLGROUP", "PARAM", "SLOT", "SOURCE", "TRACK"].indexOf(e.tagName) !== -1, n = e.tagName === "INPUT" && e.getAttribute("type") === "hidden";
|
|
@@ -208,17 +208,17 @@ function Z(e, t, o, n, s) {
|
|
|
208
208
|
const r = [t, o, ...n];
|
|
209
209
|
[].forEach.call(e.children, (a) => {
|
|
210
210
|
const d = r.indexOf(a) === -1, p = !Ce(a);
|
|
211
|
-
d && p &&
|
|
211
|
+
d && p && _(a, s);
|
|
212
212
|
});
|
|
213
213
|
}
|
|
214
|
-
function
|
|
214
|
+
function V(e, t) {
|
|
215
215
|
let o = -1;
|
|
216
216
|
return e.some((n, s) => t(n) ? (o = s, !0) : !1), o;
|
|
217
217
|
}
|
|
218
218
|
function Ie(e, t) {
|
|
219
219
|
const o = [], n = e.container;
|
|
220
220
|
if (!t.disableScrollLock) {
|
|
221
|
-
if (
|
|
221
|
+
if (Ne(n)) {
|
|
222
222
|
const a = Te(A(n));
|
|
223
223
|
o.push({
|
|
224
224
|
value: n.style.paddingRight,
|
|
@@ -238,7 +238,7 @@ function Ie(e, t) {
|
|
|
238
238
|
if (n.parentNode instanceof DocumentFragment)
|
|
239
239
|
r = A(n).body;
|
|
240
240
|
else {
|
|
241
|
-
const a = n.parentElement, d =
|
|
241
|
+
const a = n.parentElement, d = Y(n);
|
|
242
242
|
r = (a == null ? void 0 : a.nodeName) === "HTML" && d.getComputedStyle(a).overflowY === "scroll" ? a : n;
|
|
243
243
|
}
|
|
244
244
|
o.push({
|
|
@@ -279,10 +279,10 @@ class Se {
|
|
|
279
279
|
let n = this.modals.indexOf(t);
|
|
280
280
|
if (n !== -1)
|
|
281
281
|
return n;
|
|
282
|
-
n = this.modals.length, this.modals.push(t), t.modalRef &&
|
|
282
|
+
n = this.modals.length, this.modals.push(t), t.modalRef && _(t.modalRef, !1);
|
|
283
283
|
const s = Fe(o);
|
|
284
284
|
Z(o, t.mount, t.modalRef, s, !0);
|
|
285
|
-
const r =
|
|
285
|
+
const r = V(this.containers, (a) => a.container === o);
|
|
286
286
|
return r !== -1 ? (this.containers[r].modals.push(t), n) : (this.containers.push({
|
|
287
287
|
modals: [t],
|
|
288
288
|
container: o,
|
|
@@ -291,19 +291,19 @@ class Se {
|
|
|
291
291
|
}), n);
|
|
292
292
|
}
|
|
293
293
|
mount(t, o) {
|
|
294
|
-
const n =
|
|
294
|
+
const n = V(this.containers, (r) => r.modals.indexOf(t) !== -1), s = this.containers[n];
|
|
295
295
|
s.restore || (s.restore = Ie(s, o));
|
|
296
296
|
}
|
|
297
297
|
remove(t, o = !0) {
|
|
298
298
|
const n = this.modals.indexOf(t);
|
|
299
299
|
if (n === -1)
|
|
300
300
|
return n;
|
|
301
|
-
const s =
|
|
301
|
+
const s = V(this.containers, (a) => a.modals.indexOf(t) !== -1), r = this.containers[s];
|
|
302
302
|
if (r.modals.splice(r.modals.indexOf(t), 1), this.modals.splice(n, 1), r.modals.length === 0)
|
|
303
|
-
r.restore && r.restore(), t.modalRef &&
|
|
303
|
+
r.restore && r.restore(), t.modalRef && _(t.modalRef, o), Z(r.container, t.mount, t.modalRef, r.hiddenSiblings, !1), this.containers.splice(s, 1);
|
|
304
304
|
else {
|
|
305
305
|
const a = r.modals[r.modals.length - 1];
|
|
306
|
-
a.modalRef &&
|
|
306
|
+
a.modalRef && _(a.modalRef, !1);
|
|
307
307
|
}
|
|
308
308
|
return n;
|
|
309
309
|
}
|
|
@@ -332,7 +332,7 @@ function De(e) {
|
|
|
332
332
|
onClose: x,
|
|
333
333
|
open: h,
|
|
334
334
|
rootRef: m
|
|
335
|
-
} = e, R = f.useRef({}), g = f.useRef(null), c = f.useRef(null), w = te(c, m), [I, O] = f.useState(!h),
|
|
335
|
+
} = e, R = f.useRef({}), g = f.useRef(null), c = f.useRef(null), w = te(c, m), [I, O] = f.useState(!h), N = we(p);
|
|
336
336
|
let l = !0;
|
|
337
337
|
(e["aria-hidden"] === "false" || e["aria-hidden"] === !1) && (l = !1);
|
|
338
338
|
const v = () => A(g.current), k = () => (R.current.modalRef = c.current, R.current.mount = g.current, R.current), M = () => {
|
|
@@ -343,32 +343,32 @@ function De(e) {
|
|
|
343
343
|
const b = Ae(t) || v().body;
|
|
344
344
|
s.add(k(), b), c.current && M();
|
|
345
345
|
}), T = f.useCallback(() => s.isTopModal(k()), [s]), L = X((b) => {
|
|
346
|
-
g.current = b, b && (h && T() ? M() : c.current &&
|
|
346
|
+
g.current = b, b && (h && T() ? M() : c.current && _(c.current, l));
|
|
347
347
|
}), y = f.useCallback(() => {
|
|
348
348
|
s.remove(k(), l);
|
|
349
349
|
}, [l, s]);
|
|
350
350
|
f.useEffect(() => () => {
|
|
351
351
|
y();
|
|
352
352
|
}, [y]), f.useEffect(() => {
|
|
353
|
-
h ? E() : (!
|
|
354
|
-
}, [h, y,
|
|
353
|
+
h ? E() : (!N || !r) && y();
|
|
354
|
+
}, [h, y, N, r, E]);
|
|
355
355
|
const D = (b) => (u) => {
|
|
356
|
-
var
|
|
357
|
-
(
|
|
356
|
+
var P;
|
|
357
|
+
(P = b.onKeyDown) == null || P.call(b, u), !(u.key !== "Escape" || u.which === 229 || // Wait until IME is settled.
|
|
358
358
|
!T()) && (o || (u.stopPropagation(), x && x(u, "escapeKeyDown")));
|
|
359
359
|
}, F = (b) => (u) => {
|
|
360
|
-
var
|
|
361
|
-
(
|
|
360
|
+
var P;
|
|
361
|
+
(P = b.onClick) == null || P.call(b, u), u.target === u.currentTarget && x && x(u, "backdropClick");
|
|
362
362
|
};
|
|
363
363
|
return {
|
|
364
364
|
getRootProps: (b = {}) => {
|
|
365
365
|
const u = de(e);
|
|
366
366
|
delete u.onTransitionEnter, delete u.onTransitionExited;
|
|
367
|
-
const
|
|
367
|
+
const P = C({}, u, b);
|
|
368
368
|
return C({
|
|
369
369
|
role: "presentation"
|
|
370
|
-
},
|
|
371
|
-
onKeyDown: D(
|
|
370
|
+
}, P, {
|
|
371
|
+
onKeyDown: D(P),
|
|
372
372
|
ref: w
|
|
373
373
|
});
|
|
374
374
|
},
|
|
@@ -396,7 +396,7 @@ function De(e) {
|
|
|
396
396
|
portalRef: L,
|
|
397
397
|
isTopModal: T,
|
|
398
398
|
exited: I,
|
|
399
|
-
hasTransition:
|
|
399
|
+
hasTransition: N
|
|
400
400
|
};
|
|
401
401
|
}
|
|
402
402
|
const oe = "Modal";
|
|
@@ -430,7 +430,7 @@ const Le = ["children", "closeAfterTransition", "container", "disableAutoFocus",
|
|
|
430
430
|
onBackdropClick: w,
|
|
431
431
|
open: I,
|
|
432
432
|
slotProps: O = {},
|
|
433
|
-
slots:
|
|
433
|
+
slots: N = {}
|
|
434
434
|
} = t, l = pe(t, Le), v = C({}, t, {
|
|
435
435
|
closeAfterTransition: r,
|
|
436
436
|
disableAutoFocus: d,
|
|
@@ -454,22 +454,22 @@ const Le = ["children", "closeAfterTransition", "container", "disableAutoFocus",
|
|
|
454
454
|
})), F = C({}, v, {
|
|
455
455
|
exited: y,
|
|
456
456
|
hasTransition: D
|
|
457
|
-
}), H = He(F),
|
|
458
|
-
if (s.props.tabIndex === void 0 && (
|
|
457
|
+
}), H = He(F), U = {};
|
|
458
|
+
if (s.props.tabIndex === void 0 && (U.tabIndex = "-1"), D) {
|
|
459
459
|
const {
|
|
460
460
|
onEnter: B,
|
|
461
461
|
onExited: W
|
|
462
462
|
} = E();
|
|
463
|
-
|
|
463
|
+
U.onEnter = B, U.onExited = W;
|
|
464
464
|
}
|
|
465
|
-
const q = (n =
|
|
465
|
+
const q = (n = N.root) != null ? n : "div", b = G({
|
|
466
466
|
elementType: q,
|
|
467
467
|
externalSlotProps: O.root,
|
|
468
468
|
externalForwardedProps: l,
|
|
469
469
|
getSlotProps: k,
|
|
470
470
|
className: H.root,
|
|
471
471
|
ownerState: F
|
|
472
|
-
}), u =
|
|
472
|
+
}), u = N.backdrop, P = G({
|
|
473
473
|
elementType: u,
|
|
474
474
|
externalSlotProps: O.backdrop,
|
|
475
475
|
getSlotProps: (B) => M(C({}, B, {
|
|
@@ -484,14 +484,14 @@ const Le = ["children", "closeAfterTransition", "container", "disableAutoFocus",
|
|
|
484
484
|
ref: T,
|
|
485
485
|
container: a,
|
|
486
486
|
disablePortal: h,
|
|
487
|
-
children: /* @__PURE__ */
|
|
488
|
-
children: [!g && u ? /* @__PURE__ */ S(u, C({},
|
|
487
|
+
children: /* @__PURE__ */ $(q, C({}, b, {
|
|
488
|
+
children: [!g && u ? /* @__PURE__ */ S(u, C({}, P)) : null, /* @__PURE__ */ S(j, {
|
|
489
489
|
disableEnforceFocus: p,
|
|
490
490
|
disableAutoFocus: d,
|
|
491
491
|
disableRestoreFocus: m,
|
|
492
492
|
isEnabled: L,
|
|
493
493
|
open: I,
|
|
494
|
-
children: /* @__PURE__ */ f.cloneElement(s,
|
|
494
|
+
children: /* @__PURE__ */ f.cloneElement(s, U)
|
|
495
495
|
})]
|
|
496
496
|
}))
|
|
497
497
|
});
|
|
@@ -615,32 +615,32 @@ process.env.NODE_ENV !== "production" && (re.propTypes = {
|
|
|
615
615
|
root: i.elementType
|
|
616
616
|
})
|
|
617
617
|
});
|
|
618
|
-
const
|
|
618
|
+
const K = ({ children: e, dialogTitle: t, dialogSubtitle: o, onClose: n, ...s }) => /* @__PURE__ */ S(
|
|
619
619
|
re,
|
|
620
620
|
{
|
|
621
621
|
onClose: n,
|
|
622
622
|
slots: { backdrop: ae },
|
|
623
623
|
...s,
|
|
624
|
-
className: se(
|
|
624
|
+
className: se(z.dialog, s.className),
|
|
625
625
|
"aria-labelledby": "alert-dialog-title",
|
|
626
626
|
"aria-describedby": "alert-dialog-description",
|
|
627
|
-
children: /* @__PURE__ */
|
|
628
|
-
!!n && /* @__PURE__ */ S(le, { handleOnClose: n
|
|
627
|
+
children: /* @__PURE__ */ $("section", { className: z.dialog__panel, children: [
|
|
628
|
+
!!n && /* @__PURE__ */ S(le, { handleOnClose: n }),
|
|
629
629
|
/* @__PURE__ */ S(ee, { title: t, subTitle: o }),
|
|
630
630
|
e
|
|
631
631
|
] })
|
|
632
632
|
}
|
|
633
633
|
);
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
634
|
+
K.Title = ee;
|
|
635
|
+
K.Title.displayName = "Dialog.Title";
|
|
636
|
+
K.Content = ce;
|
|
637
|
+
K.Content.displayName = "Dialog.Content";
|
|
638
|
+
K.Actions = ie;
|
|
639
|
+
K.Actions.displayName = "Dialog.Actions";
|
|
640
640
|
export {
|
|
641
641
|
ie as Actions,
|
|
642
642
|
ce as Content,
|
|
643
|
-
|
|
643
|
+
K as Dialog,
|
|
644
644
|
ee as DialogTitle,
|
|
645
|
-
|
|
645
|
+
K as default
|
|
646
646
|
};
|
|
@@ -55,22 +55,31 @@ const s = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.
|
|
|
55
55
|
color: "currentcolor",
|
|
56
56
|
width: "1em",
|
|
57
57
|
height: "1em"
|
|
58
|
-
}, ...t }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("style", null, ".fa-secondary{opacity:.4}")), /* @__PURE__ */ e.createElement("path", { className: "fa-primary", d: "M5.112 9.196C13.29-1.236 28.37-3.065 38.81 5.112L630.8 469.1C641.2 477.3 643.1 492.4 634.9 502.8C626.7 513.2 611.6 515.1 601.2 506.9L9.196 42.89C-1.236 34.71-3.065 19.63 5.112 9.196V9.196z" }), /* @__PURE__ */ e.createElement("path", { className: "fa-secondary", d: "M446.6 324.7C457.7 304.3 464 280.9 464 256C464 176.5 399.5 112 320 112C282.7 112 248.6 126.2 223.1 149.5L150.7 92.77C195 58.27 251.8 32 320 32C400.8 32 465.5 68.84 512.6 112.6C559.4 156 590.7 207.1 605.5 243.7C608.8 251.6 608.8 260.4 605.5 268.3C592.1 300.6 565.2 346.1 525.6 386.7L446.6 324.7zM313.4 220.3C317.6 211.8 320 202.2 320 192C320 180.5 316.1 169.7 311.6 160.4C314.4 160.1 317.2 160 320 160C373 160 416 202.1 416 256C416 269.7 413.1 282.7 407.1 294.5L313.4 220.3zM320 480C239.2 480 174.5 443.2 127.4 399.4C80.62 355.1 49.34 304 34.46 268.3C31.18 260.4 31.18 251.6 34.46 243.7C44 220.8 60.29 191.2 83.09 161.5L177.4 235.8C176.5 242.4 176 249.1 176 256C176 335.5 240.5 400 320 400C338.7 400 356.6 396.4 373 389.9L446.2 447.5C409.9 467.1 367.8 480 320 480H320z" })), v = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", "data-waves-icon": "fa/duotone/
|
|
58
|
+
}, ...t }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("style", null, ".fa-secondary{opacity:.4}")), /* @__PURE__ */ e.createElement("path", { className: "fa-primary", d: "M5.112 9.196C13.29-1.236 28.37-3.065 38.81 5.112L630.8 469.1C641.2 477.3 643.1 492.4 634.9 502.8C626.7 513.2 611.6 515.1 601.2 506.9L9.196 42.89C-1.236 34.71-3.065 19.63 5.112 9.196V9.196z" }), /* @__PURE__ */ e.createElement("path", { className: "fa-secondary", d: "M446.6 324.7C457.7 304.3 464 280.9 464 256C464 176.5 399.5 112 320 112C282.7 112 248.6 126.2 223.1 149.5L150.7 92.77C195 58.27 251.8 32 320 32C400.8 32 465.5 68.84 512.6 112.6C559.4 156 590.7 207.1 605.5 243.7C608.8 251.6 608.8 260.4 605.5 268.3C592.1 300.6 565.2 346.1 525.6 386.7L446.6 324.7zM313.4 220.3C317.6 211.8 320 202.2 320 192C320 180.5 316.1 169.7 311.6 160.4C314.4 160.1 317.2 160 320 160C373 160 416 202.1 416 256C416 269.7 413.1 282.7 407.1 294.5L313.4 220.3zM320 480C239.2 480 174.5 443.2 127.4 399.4C80.62 355.1 49.34 304 34.46 268.3C31.18 260.4 31.18 251.6 34.46 243.7C44 220.8 60.29 191.2 83.09 161.5L177.4 235.8C176.5 242.4 176 249.1 176 256C176 335.5 240.5 400 320 400C338.7 400 356.6 396.4 373 389.9L446.2 447.5C409.9 467.1 367.8 480 320 480H320z" })), v = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", "data-waves-icon": "fa/duotone/filter-list", fill: "currentColor", color: "currentColor", width: "1em", height: "1em", style: {
|
|
59
59
|
fill: "currentcolor",
|
|
60
60
|
color: "currentcolor",
|
|
61
61
|
width: "1em",
|
|
62
62
|
height: "1em"
|
|
63
|
-
}, ...t }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("style", null,
|
|
63
|
+
}, ...t }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("style", null, `
|
|
64
|
+
.fa-secondary {
|
|
65
|
+
opacity: 0.4;
|
|
66
|
+
}
|
|
67
|
+
`)), /* @__PURE__ */ e.createElement("path", { className: "fa-primary", d: "M480 64C497.7 64 512 78.33 512 96C512 113.7 497.7 128 480 128H416C398.3 128 384 113.7 384 96C384 78.33 398.3 64 416 64H480zM320 256C320 238.3 334.3 224 352 224H480C497.7 224 512 238.3 512 256C512 273.7 497.7 288 480 288H352C334.3 288 320 273.7 320 256zM320 416C320 398.3 334.3 384 352 384H480C497.7 384 512 398.3 512 416C512 433.7 497.7 448 480 448H352C334.3 448 320 433.7 320 416z" }), /* @__PURE__ */ e.createElement("path", { className: "fa-secondary", d: "M3.459 87.73C9.886 73.3 24.2 64 39.1 64H312C327.8 64 342.1 73.3 348.5 87.73C354.1 102.2 352.3 119 341.7 130.8L240 243.8V416C240 428.1 233.2 439.2 222.3 444.6C211.5 450 198.5 448.9 188.8 441.6L124.8 393.6C116.7 387.6 112 378.1 112 368V243.8L10.27 130.8C-.3002 119-2.968 102.2 3.459 87.73H3.459z" })), y = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", "data-waves-icon": "fa/duotone/folder-magnifying-glass", fill: "currentColor", color: "currentColor", width: "1em", height: "1em", style: {
|
|
64
68
|
fill: "currentcolor",
|
|
65
69
|
color: "currentcolor",
|
|
66
70
|
width: "1em",
|
|
67
71
|
height: "1em"
|
|
68
|
-
}, ...t }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("style", null, ".fa-secondary{opacity:.4}")), /* @__PURE__ */ e.createElement("path", { className: "fa-primary", d: "
|
|
72
|
+
}, ...t }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("style", null, ".fa-secondary{opacity:.4}")), /* @__PURE__ */ e.createElement("path", { className: "fa-primary", d: "M376.1 375l-48.67-48.67C338.1 310.5 344 292 344 272c0-57.44-46.56-104-104-104S136 214.6 136 272s46.56 104 104 104c19.1 0 38.5-5.922 54.36-15.71l48.67 48.67C347.7 413.7 353.8 416 360 416s12.28-2.344 16.97-7.031C386.3 399.6 386.3 384.4 376.1 375zM240 328c-30.88 0-56-25.12-56-56c0-30.88 25.12-56 56-56c30.88 0 56 25.12 56 56C296 302.9 270.9 328 240 328z" }), /* @__PURE__ */ e.createElement("path", { className: "fa-secondary", d: "M464 96h-192l-64-64h-160C21.5 32 0 53.5 0 80v352C0 458.5 21.5 480 48 480h416c26.5 0 48-21.5 48-48v-288C512 117.5 490.5 96 464 96zM376.1 408.1C372.3 413.7 366.2 416 360 416s-12.28-2.344-16.97-7.031l-48.67-48.67C278.5 370.1 259.1 376 240 376c-57.44 0-104-46.56-104-104S182.6 168 240 168s104 46.56 104 104c0 20-5.922 38.5-15.71 54.36l48.67 48.67C386.3 384.4 386.3 399.6 376.1 408.1zM240 216c-30.88 0-56 25.12-56 56c0 30.88 25.12 56 56 56c30.88 0 56-25.12 56-56C296 241.1 270.9 216 240 216z" })), p = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 448 512", "data-waves-icon": "fa/duotone/lock-keyhole", fill: "currentColor", color: "currentColor", width: "1em", height: "1em", style: {
|
|
69
73
|
fill: "currentcolor",
|
|
70
74
|
color: "currentcolor",
|
|
71
75
|
width: "1em",
|
|
72
76
|
height: "1em"
|
|
73
|
-
}, ...t }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("style", null, ".fa-secondary{opacity:.4}")), /* @__PURE__ */ e.createElement("path", { className: "fa-primary", d: "
|
|
77
|
+
}, ...t }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("style", null, ".fa-secondary{opacity:.4}")), /* @__PURE__ */ e.createElement("path", { className: "fa-primary", d: "M384 192C419.3 192 448 220.7 448 256V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V256C0 220.7 28.65 192 64 192H384zM256 320C256 302.3 241.7 288 224 288C206.3 288 192 302.3 192 320V384C192 401.7 206.3 416 224 416C241.7 416 256 401.7 256 384V320z" }), /* @__PURE__ */ e.createElement("path", { className: "fa-secondary", d: "M224 64C179.8 64 144 99.82 144 144V192H80V144C80 64.47 144.5 0 224 0C303.5 0 368 64.47 368 144V192H304V144C304 99.82 268.2 64 224 64z" })), E = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", "data-waves-icon": "fa/duotone/magnifying-glass", fill: "currentColor", color: "currentColor", width: "1em", height: "1em", style: {
|
|
78
|
+
fill: "currentcolor",
|
|
79
|
+
color: "currentcolor",
|
|
80
|
+
width: "1em",
|
|
81
|
+
height: "1em"
|
|
82
|
+
}, ...t }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("style", null, ".fa-secondary{opacity:.4}")), /* @__PURE__ */ e.createElement("path", { className: "fa-primary", d: "M500.3 443.7l-119.7-119.7c-15.03 22.3-34.26 41.54-56.57 56.57l119.7 119.7c15.62 15.62 40.95 15.62 56.57 0C515.9 484.7 515.9 459.3 500.3 443.7z" }), /* @__PURE__ */ e.createElement("path", { className: "fa-secondary", d: "M207.1 0C93.12 0-.0002 93.13-.0002 208S93.12 416 207.1 416s208-93.13 208-208S322.9 0 207.1 0zM207.1 336c-70.58 0-128-57.42-128-128c0-70.58 57.42-128 128-128s128 57.42 128 128C335.1 278.6 278.6 336 207.1 336z" })), H = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", "data-waves-icon": "fa/duotone/money-bill-trend-up", fill: "currentColor", color: "currentColor", width: "1em", height: "1em", style: {
|
|
74
83
|
fill: "currentcolor",
|
|
75
84
|
color: "currentcolor",
|
|
76
85
|
width: "1em",
|
|
@@ -80,47 +89,47 @@ const s = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.
|
|
|
80
89
|
color: "currentcolor",
|
|
81
90
|
width: "1em",
|
|
82
91
|
height: "1em"
|
|
83
|
-
}, ...t }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("style", null, ".fa-secondary{opacity:.4}")), /* @__PURE__ */ e.createElement("path", { className: "fa-primary", d: "M392.4 21.66C414.3-.2135 449.7-.2135 471.6 21.66L490.3 40.4C512.2 62.27 512.2 97.73 490.3 119.6L460.3 149.7L362.3 51.72L392.4 21.66zM437.7 172.3L270.3 339.6C264.2 345.8 256.7 350.4 248.4 353.2L159.6 382.8C150.1 385.6 141.5 383.4 135 376.1C128.6 370.5 126.4 361 129.2 352.4L158.8 263.6C161.6 255.3 166.2 247.8 172.4 241.7L339.7 74.34L437.7 172.3z" }), /* @__PURE__ */ e.createElement("path", { className: "fa-secondary", d: "M0 160C0 106.1 42.98 64 96 64H192C209.7 64 224 78.33 224 96C224 113.7 209.7 128 192 128H96C78.33 128 64 142.3 64 160V416C64 433.7 78.33 448 96 448H352C369.7 448 384 433.7 384 416V320C384 302.3 398.3 288 416 288C433.7 288 448 302.3 448 320V416C448 469 405 512 352 512H96C42.98 512 0 469 0 416V160z" })),
|
|
92
|
+
}, ...t }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("style", null, ".fa-secondary{opacity:.4}")), /* @__PURE__ */ e.createElement("path", { className: "fa-primary", d: "M392.4 21.66C414.3-.2135 449.7-.2135 471.6 21.66L490.3 40.4C512.2 62.27 512.2 97.73 490.3 119.6L460.3 149.7L362.3 51.72L392.4 21.66zM437.7 172.3L270.3 339.6C264.2 345.8 256.7 350.4 248.4 353.2L159.6 382.8C150.1 385.6 141.5 383.4 135 376.1C128.6 370.5 126.4 361 129.2 352.4L158.8 263.6C161.6 255.3 166.2 247.8 172.4 241.7L339.7 74.34L437.7 172.3z" }), /* @__PURE__ */ e.createElement("path", { className: "fa-secondary", d: "M0 160C0 106.1 42.98 64 96 64H192C209.7 64 224 78.33 224 96C224 113.7 209.7 128 192 128H96C78.33 128 64 142.3 64 160V416C64 433.7 78.33 448 96 448H352C369.7 448 384 433.7 384 416V320C384 302.3 398.3 288 416 288C433.7 288 448 302.3 448 320V416C448 469 405 512 352 512H96C42.98 512 0 469 0 416V160z" })), z = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 576 512", "data-waves-icon": "fa/duotone/piggy-bank", fill: "currentColor", color: "currentColor", width: "1em", height: "1em", style: {
|
|
84
93
|
fill: "currentcolor",
|
|
85
94
|
color: "currentcolor",
|
|
86
95
|
width: "1em",
|
|
87
96
|
height: "1em"
|
|
88
|
-
}, ...t }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("style", null, ".fa-secondary{opacity:.4}")), /* @__PURE__ */ e.createElement("path", { className: "fa-primary", d: "M512 96L493.2 171.1C509.1 185.9 521.9 203.9 530.7 224H544C561.7 224 576 238.3 576 256V352C576 369.7 561.7 384 544 384H512C502.9 396.1 492.1 406.9 480 416V480C480 497.7 465.7 512 448 512H416C398.3 512 384 497.7 384 480V448H256V480C256 497.7 241.7 512 224 512H192C174.3 512 160 497.7 160 480V416C125.1 389.8 101.3 349.8 96.79 304H68C30.44 304 0 273.6 0 236C0 198.4 30.44 168 68 168H72C85.25 168 96 178.7 96 192C96 205.3 85.25 216 72 216H68C56.95 216 48 224.1 48 236C48 247 56.95 256 68 256H99.2C114 182.1 178.6 128 256 128H384C391.8 128 399.5 128.6 407 129.6C424.6 109.1 450.8 96 480 96H512zM424 288C437.3 288 448 277.3 448 264C448 250.7 437.3 240 424 240C410.7 240 400 250.7 400 264C400 277.3 410.7 288 424 288z" }), /* @__PURE__ */ e.createElement("path", { className: "fa-secondary", d: "M400 96L399.1 96.66C394.7 96.22 389.4 96 384 96H256C239.5 96 223.5 98.08 208.2 102C208.1 100 208 98.02 208 96C208 42.98 250.1 0 304 0C357 0 400 42.98 400 96z" })),
|
|
97
|
+
}, ...t }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("style", null, ".fa-secondary{opacity:.4}")), /* @__PURE__ */ e.createElement("path", { className: "fa-primary", d: "M512 96L493.2 171.1C509.1 185.9 521.9 203.9 530.7 224H544C561.7 224 576 238.3 576 256V352C576 369.7 561.7 384 544 384H512C502.9 396.1 492.1 406.9 480 416V480C480 497.7 465.7 512 448 512H416C398.3 512 384 497.7 384 480V448H256V480C256 497.7 241.7 512 224 512H192C174.3 512 160 497.7 160 480V416C125.1 389.8 101.3 349.8 96.79 304H68C30.44 304 0 273.6 0 236C0 198.4 30.44 168 68 168H72C85.25 168 96 178.7 96 192C96 205.3 85.25 216 72 216H68C56.95 216 48 224.1 48 236C48 247 56.95 256 68 256H99.2C114 182.1 178.6 128 256 128H384C391.8 128 399.5 128.6 407 129.6C424.6 109.1 450.8 96 480 96H512zM424 288C437.3 288 448 277.3 448 264C448 250.7 437.3 240 424 240C410.7 240 400 250.7 400 264C400 277.3 410.7 288 424 288z" }), /* @__PURE__ */ e.createElement("path", { className: "fa-secondary", d: "M400 96L399.1 96.66C394.7 96.22 389.4 96 384 96H256C239.5 96 223.5 98.08 208.2 102C208.1 100 208 98.02 208 96C208 42.98 250.1 0 304 0C357 0 400 42.98 400 96z" })), L = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", "data-waves-icon": "fa/duotone/rectangle-history", fill: "currentColor", color: "currentColor", width: "1em", height: "1em", style: {
|
|
89
98
|
fill: "currentcolor",
|
|
90
99
|
color: "currentcolor",
|
|
91
100
|
width: "1em",
|
|
92
101
|
height: "1em"
|
|
93
|
-
}, ...t }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("style", null, ".fa-secondary{opacity:.4}")), /* @__PURE__ */ e.createElement("path", { className: "fa-primary", d: "M448 160C483.3 160 512 188.7 512 224V448C512 483.3 483.3 512 448 512H64C28.65 512 0 483.3 0 448V224C0 188.7 28.65 160 64 160H448z" }), /* @__PURE__ */ e.createElement("path", { className: "fa-secondary", d: "M440 128H72C58.75 128 48 117.3 48 104C48 90.75 58.75 80 72 80H440C453.3 80 464 90.75 464 104C464 117.3 453.3 128 440 128zM392 48H120C106.7 48 96 37.25 96 24C96 10.75 106.7 0 120 0H392C405.3 0 416 10.75 416 24C416 37.25 405.3 48 392 48z" })),
|
|
102
|
+
}, ...t }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("style", null, ".fa-secondary{opacity:.4}")), /* @__PURE__ */ e.createElement("path", { className: "fa-primary", d: "M448 160C483.3 160 512 188.7 512 224V448C512 483.3 483.3 512 448 512H64C28.65 512 0 483.3 0 448V224C0 188.7 28.65 160 64 160H448z" }), /* @__PURE__ */ e.createElement("path", { className: "fa-secondary", d: "M440 128H72C58.75 128 48 117.3 48 104C48 90.75 58.75 80 72 80H440C453.3 80 464 90.75 464 104C464 117.3 453.3 128 440 128zM392 48H120C106.7 48 96 37.25 96 24C96 10.75 106.7 0 120 0H392C405.3 0 416 10.75 416 24C416 37.25 405.3 48 392 48z" })), V = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 448 512", "data-waves-icon": "fa/duotone/trash-can", fill: "currentColor", color: "currentColor", width: "1em", height: "1em", style: {
|
|
94
103
|
fill: "currentcolor",
|
|
95
104
|
color: "currentcolor",
|
|
96
105
|
width: "1em",
|
|
97
106
|
height: "1em"
|
|
98
|
-
}, ...t }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("style", null, ".fa-secondary{opacity:.4}")), /* @__PURE__ */ e.createElement("path", { className: "fa-primary", d: "M284.2 0C296.3 0 307.4 6.848 312.8 17.69L320 32H416C433.7 32 448 46.33 448 64C448 81.67 433.7 96 416 96H32C14.33 96 0 81.67 0 64C0 46.33 14.33 32 32 32H128L135.2 17.69C140.6 6.848 151.7 0 163.8 0H284.2z" }), /* @__PURE__ */ e.createElement("path", { className: "fa-secondary", d: "M416 448C416 483.3 387.3 512 352 512H96C60.65 512 32 483.3 32 448V96H416V448zM144 176C144 167.2 136.8 160 128 160C119.2 160 112 167.2 112 176V400C112 408.8 119.2 416 128 416C136.8 416 144 408.8 144 400V176zM240 176C240 167.2 232.8 160 224 160C215.2 160 208 167.2 208 176V400C208 408.8 215.2 416 224 416C232.8 416 240 408.8 240 400V176zM336 176C336 167.2 328.8 160 320 160C311.2 160 304 167.2 304 176V400C304 408.8 311.2 416 320 416C328.8 416 336 408.8 336 400V176z" })),
|
|
107
|
+
}, ...t }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("style", null, ".fa-secondary{opacity:.4}")), /* @__PURE__ */ e.createElement("path", { className: "fa-primary", d: "M284.2 0C296.3 0 307.4 6.848 312.8 17.69L320 32H416C433.7 32 448 46.33 448 64C448 81.67 433.7 96 416 96H32C14.33 96 0 81.67 0 64C0 46.33 14.33 32 32 32H128L135.2 17.69C140.6 6.848 151.7 0 163.8 0H284.2z" }), /* @__PURE__ */ e.createElement("path", { className: "fa-secondary", d: "M416 448C416 483.3 387.3 512 352 512H96C60.65 512 32 483.3 32 448V96H416V448zM144 176C144 167.2 136.8 160 128 160C119.2 160 112 167.2 112 176V400C112 408.8 119.2 416 128 416C136.8 416 144 408.8 144 400V176zM240 176C240 167.2 232.8 160 224 160C215.2 160 208 167.2 208 176V400C208 408.8 215.2 416 224 416C232.8 416 240 408.8 240 400V176zM336 176C336 167.2 328.8 160 320 160C311.2 160 304 167.2 304 176V400C304 408.8 311.2 416 320 416C328.8 416 336 408.8 336 400V176z" })), x = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 448 512", "data-waves-icon": "fa/duotone/trash", fill: "currentColor", color: "currentColor", width: "1em", height: "1em", style: {
|
|
99
108
|
fill: "currentcolor",
|
|
100
109
|
color: "currentcolor",
|
|
101
110
|
width: "1em",
|
|
102
111
|
height: "1em"
|
|
103
|
-
}, ...t }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("style", null, ".fa-secondary{opacity:.4}")), /* @__PURE__ */ e.createElement("path", { className: "fa-primary", d: "M284.2 0C296.3 0 307.4 6.848 312.8 17.69L320 32H416C433.7 32 448 46.33 448 64C448 81.67 433.7 96 416 96H32C14.33 96 0 81.67 0 64C0 46.33 14.33 32 32 32H128L135.2 17.69C140.6 6.848 151.7 0 163.8 0H284.2z" }), /* @__PURE__ */ e.createElement("path", { className: "fa-secondary", d: "M32 96H416L394.6 466.8C393.1 492.2 372.1 512 346.7 512H101.3C75.87 512 54.86 492.2 53.39 466.8L32 96z" })),
|
|
112
|
+
}, ...t }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("style", null, ".fa-secondary{opacity:.4}")), /* @__PURE__ */ e.createElement("path", { className: "fa-primary", d: "M284.2 0C296.3 0 307.4 6.848 312.8 17.69L320 32H416C433.7 32 448 46.33 448 64C448 81.67 433.7 96 416 96H32C14.33 96 0 81.67 0 64C0 46.33 14.33 32 32 32H128L135.2 17.69C140.6 6.848 151.7 0 163.8 0H284.2z" }), /* @__PURE__ */ e.createElement("path", { className: "fa-secondary", d: "M32 96H416L394.6 466.8C393.1 492.2 372.1 512 346.7 512H101.3C75.87 512 54.86 492.2 53.39 466.8L32 96z" })), S = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 640 512", "data-waves-icon": "fa/duotone/user-group", fill: "currentColor", color: "currentColor", width: "1em", height: "1em", style: {
|
|
104
113
|
fill: "currentcolor",
|
|
105
114
|
color: "currentcolor",
|
|
106
115
|
width: "1em",
|
|
107
116
|
height: "1em"
|
|
108
|
-
}, ...t }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("style", null, ".fa-secondary{opacity:.4}")), /* @__PURE__ */ e.createElement("path", { className: "fa-primary", d: "M224 256c70.7 0 128-57.31 128-128S294.7 0 224 0C153.3 0 96 57.31 96 128S153.3 256 224 256zM274.7 304H173.3c-95.73 0-173.3 77.6-173.3 173.3C0 496.5 15.52 512 34.66 512H413.3C432.5 512 448 496.5 448 477.3C448 381.6 370.4 304 274.7 304z" }), /* @__PURE__ */ e.createElement("path", { className: "fa-secondary", d: "M479.1 320h-73.85C451.2 357.7 480 414.1 480 477.3C480 490.1 476.2 501.9 470 512h138C625.7 512 640 497.6 640 479.1C640 391.6 568.4 320 479.1 320zM432 256C493.9 256 544 205.9 544 144S493.9 32 432 32c-25.11 0-48.04 8.555-66.72 22.51C376.8 76.63 384 101.4 384 128c0 35.52-11.93 68.14-31.59 94.71C372.7 243.2 400.8 256 432 256z" })),
|
|
117
|
+
}, ...t }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("style", null, ".fa-secondary{opacity:.4}")), /* @__PURE__ */ e.createElement("path", { className: "fa-primary", d: "M224 256c70.7 0 128-57.31 128-128S294.7 0 224 0C153.3 0 96 57.31 96 128S153.3 256 224 256zM274.7 304H173.3c-95.73 0-173.3 77.6-173.3 173.3C0 496.5 15.52 512 34.66 512H413.3C432.5 512 448 496.5 448 477.3C448 381.6 370.4 304 274.7 304z" }), /* @__PURE__ */ e.createElement("path", { className: "fa-secondary", d: "M479.1 320h-73.85C451.2 357.7 480 414.1 480 477.3C480 490.1 476.2 501.9 470 512h138C625.7 512 640 497.6 640 479.1C640 391.6 568.4 320 479.1 320zM432 256C493.9 256 544 205.9 544 144S493.9 32 432 32c-25.11 0-48.04 8.555-66.72 22.51C376.8 76.63 384 101.4 384 128c0 35.52-11.93 68.14-31.59 94.71C372.7 243.2 400.8 256 432 256z" })), N = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 640 512", "data-waves-icon": "fa/duotone/warehouse-full", fill: "currentColor", color: "currentColor", width: "1em", height: "1em", style: {
|
|
109
118
|
fill: "currentcolor",
|
|
110
119
|
color: "currentcolor",
|
|
111
120
|
width: "1em",
|
|
112
121
|
height: "1em"
|
|
113
|
-
}, ...t }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("style", null, ".fa-secondary{opacity:.4}")), /* @__PURE__ */ e.createElement("path", { className: "fa-primary", d: "M40.23 111.9L308.1 4.753C315.7 1.702 324.3 1.702 331.9 4.753L599.8 111.9C624.1 121.6 640 145.2 640 171.3V488C640 501.3 629.3 512 616 512H568C554.7 512 544 501.3 544 488V223.1C544 206.3 529.7 191.1 512 191.1H128C110.3 191.1 96 206.3 96 223.1V488C96 501.3 85.25 512 72 512H24C10.75 512 0 501.3 0 488V171.3C0 145.2 15.93 121.6 40.23 111.9z" }), /* @__PURE__ */ e.createElement("path", { className: "fa-secondary", d: "M128 248C128 234.7 138.7 224 152 224H296C309.3 224 320 234.7 320 248V328C320 341.3 309.3 352 296 352H152C138.7 352 128 341.3 128 328V248zM352 408C352 394.7 362.7 384 376 384H488C501.3 384 512 394.7 512 408V488C512 501.3 501.3 512 488 512H376C362.7 512 352 501.3 352 488V408zM296 384C309.3 384 320 394.7 320 408V488C320 501.3 309.3 512 296 512H152C138.7 512 128 501.3 128 488V408C128 394.7 138.7 384 152 384H296z" })),
|
|
122
|
+
}, ...t }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("style", null, ".fa-secondary{opacity:.4}")), /* @__PURE__ */ e.createElement("path", { className: "fa-primary", d: "M40.23 111.9L308.1 4.753C315.7 1.702 324.3 1.702 331.9 4.753L599.8 111.9C624.1 121.6 640 145.2 640 171.3V488C640 501.3 629.3 512 616 512H568C554.7 512 544 501.3 544 488V223.1C544 206.3 529.7 191.1 512 191.1H128C110.3 191.1 96 206.3 96 223.1V488C96 501.3 85.25 512 72 512H24C10.75 512 0 501.3 0 488V171.3C0 145.2 15.93 121.6 40.23 111.9z" }), /* @__PURE__ */ e.createElement("path", { className: "fa-secondary", d: "M128 248C128 234.7 138.7 224 152 224H296C309.3 224 320 234.7 320 248V328C320 341.3 309.3 352 296 352H152C138.7 352 128 341.3 128 328V248zM352 408C352 394.7 362.7 384 376 384H488C501.3 384 512 394.7 512 408V488C512 501.3 501.3 512 488 512H376C362.7 512 352 501.3 352 488V408zM296 384C309.3 384 320 394.7 320 408V488C320 501.3 309.3 512 296 512H152C138.7 512 128 501.3 128 488V408C128 394.7 138.7 384 152 384H296z" })), B = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 320 512", "data-waves-icon": "fa/duotone/xmark", fill: "currentColor", color: "currentColor", width: "1em", height: "1em", style: {
|
|
114
123
|
fill: "currentcolor",
|
|
115
124
|
color: "currentcolor",
|
|
116
125
|
width: "1em",
|
|
117
126
|
height: "1em"
|
|
118
|
-
}, ...t }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("style", null, ".fa-secondary{opacity:.4}")), /* @__PURE__ */ e.createElement("path", { className: "fa-secondary", d: "M310.6 361.4c12.5 12.5 12.5 32.75 0 45.25C304.4 412.9 296.2 416 288 416s-16.38-3.125-22.62-9.375L160 301.3L54.63 406.6C48.38 412.9 40.19 416 32 416S15.63 412.9 9.375 406.6c-12.5-12.5-12.5-32.75 0-45.25l105.4-105.4L9.375 150.6c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L160 210.8l105.4-105.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-105.4 105.4L310.6 361.4z" })),
|
|
127
|
+
}, ...t }, /* @__PURE__ */ e.createElement("defs", null, /* @__PURE__ */ e.createElement("style", null, ".fa-secondary{opacity:.4}")), /* @__PURE__ */ e.createElement("path", { className: "fa-secondary", d: "M310.6 361.4c12.5 12.5 12.5 32.75 0 45.25C304.4 412.9 296.2 416 288 416s-16.38-3.125-22.62-9.375L160 301.3L54.63 406.6C48.38 412.9 40.19 416 32 416S15.63 412.9 9.375 406.6c-12.5-12.5-12.5-32.75 0-45.25l105.4-105.4L9.375 150.6c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L160 210.8l105.4-105.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-105.4 105.4L310.6 361.4z" })), k = (t) => /* @__PURE__ */ e.createElement("svg", { viewBox: "0 0 664 652", xmlns: "http://www.w3.org/2000/svg", "data-waves-icon": "pi/logo", fill: "currentColor", color: "currentColor", width: "1em", height: "1em", style: {
|
|
119
128
|
fill: "currentcolor",
|
|
120
129
|
color: "currentcolor",
|
|
121
130
|
width: "1em",
|
|
122
131
|
height: "1em"
|
|
123
|
-
}, ...t }, /* @__PURE__ */ e.createElement("path", { d: "M391.42 125.965C448.039 184.645 504.938 243.615 565.81 185.331C583.085 168.806 588.671 138.702 583.932 117.95C552.33 -20.4551 366.687 -26.094 284.964 44.5249L285.069 45.0613C321.006 52.9875 356.159 89.4202 391.42 125.965Z" }), /* @__PURE__ */ e.createElement("path", { d: "M522.431 495.702C448.189 455.82 486.69 383.483 525.002 311.503C548.862 266.674 572.648 221.983 569.081 185.356L569.559 185.09C661.976 240.991 713.98 419.291 592.114 492.115C573.842 503.035 543.486 507.025 522.431 495.702V495.702Z" }), /* @__PURE__ */ e.createElement("path", { d: "M213.844 550.355C228.833 467.423 309.526 481.686 389.823 495.879C439.831 504.719 489.685 513.531 523.417 498.82L523.818 499.192C499.211 604.36 345.708 708.916 238.789 615.519C222.757 601.516 209.582 573.878 213.844 550.355Z" }), /* @__PURE__ */ e.createElement("path", { d: "M284.035 48.1638C320.656 124.068 246.989 159.959 173.686 195.673C128.033 217.916 82.5196 240.09 63.8762 271.819L63.3335 271.753C21.4251 172.207 84.1548 -2.6076 225.552 10.1071C246.753 12.0131 273.657 26.6279 284.035 48.1638Z" }), /* @__PURE__ */ e.createElement("path", { d: "M172.699 424.293C161.384 343.54 150.014 262.389 66.5079 273.761C42.819 276.977 20.6057 298.048 12.2415 317.622C-43.5448 448.169 103.33 561.849 210.954 552.754L211.185 552.258C186.77 524.722 179.745 474.585 172.699 424.293Z" })),
|
|
132
|
+
}, ...t }, /* @__PURE__ */ e.createElement("path", { d: "M391.42 125.965C448.039 184.645 504.938 243.615 565.81 185.331C583.085 168.806 588.671 138.702 583.932 117.95C552.33 -20.4551 366.687 -26.094 284.964 44.5249L285.069 45.0613C321.006 52.9875 356.159 89.4202 391.42 125.965Z" }), /* @__PURE__ */ e.createElement("path", { d: "M522.431 495.702C448.189 455.82 486.69 383.483 525.002 311.503C548.862 266.674 572.648 221.983 569.081 185.356L569.559 185.09C661.976 240.991 713.98 419.291 592.114 492.115C573.842 503.035 543.486 507.025 522.431 495.702V495.702Z" }), /* @__PURE__ */ e.createElement("path", { d: "M213.844 550.355C228.833 467.423 309.526 481.686 389.823 495.879C439.831 504.719 489.685 513.531 523.417 498.82L523.818 499.192C499.211 604.36 345.708 708.916 238.789 615.519C222.757 601.516 209.582 573.878 213.844 550.355Z" }), /* @__PURE__ */ e.createElement("path", { d: "M284.035 48.1638C320.656 124.068 246.989 159.959 173.686 195.673C128.033 217.916 82.5196 240.09 63.8762 271.819L63.3335 271.753C21.4251 172.207 84.1548 -2.6076 225.552 10.1071C246.753 12.0131 273.657 26.6279 284.035 48.1638Z" }), /* @__PURE__ */ e.createElement("path", { d: "M172.699 424.293C161.384 343.54 150.014 262.389 66.5079 273.761C42.819 276.977 20.6057 298.048 12.2415 317.622C-43.5448 448.169 103.33 561.849 210.954 552.754L211.185 552.258C186.77 524.722 179.745 474.585 172.699 424.293Z" })), b = Object.fromEntries(
|
|
124
133
|
Object.entries(
|
|
125
134
|
/* @__PURE__ */ Object.assign({
|
|
126
135
|
"./assets/fa/duotone/arrow-down-arrow-up.svg": s,
|
|
@@ -134,31 +143,32 @@ const s = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.
|
|
|
134
143
|
"./assets/fa/duotone/circle-info.svg": u,
|
|
135
144
|
"./assets/fa/duotone/circle-xmark.svg": g,
|
|
136
145
|
"./assets/fa/duotone/eye-slash.svg": f,
|
|
137
|
-
"./assets/fa/duotone/
|
|
138
|
-
"./assets/fa/duotone/
|
|
139
|
-
"./assets/fa/duotone/
|
|
140
|
-
"./assets/fa/duotone/
|
|
146
|
+
"./assets/fa/duotone/filter-list.svg": v,
|
|
147
|
+
"./assets/fa/duotone/folder-magnifying-glass.svg": y,
|
|
148
|
+
"./assets/fa/duotone/lock-keyhole.svg": p,
|
|
149
|
+
"./assets/fa/duotone/magnifying-glass.svg": E,
|
|
150
|
+
"./assets/fa/duotone/money-bill-trend-up.svg": H,
|
|
141
151
|
"./assets/fa/duotone/pen-to-square.svg": M,
|
|
142
|
-
"./assets/fa/duotone/piggy-bank.svg":
|
|
143
|
-
"./assets/fa/duotone/rectangle-history.svg":
|
|
144
|
-
"./assets/fa/duotone/trash-can.svg":
|
|
145
|
-
"./assets/fa/duotone/trash.svg":
|
|
146
|
-
"./assets/fa/duotone/user-group.svg":
|
|
147
|
-
"./assets/fa/duotone/warehouse-full.svg":
|
|
148
|
-
"./assets/fa/duotone/xmark.svg":
|
|
149
|
-
"./assets/pi/logo.svg":
|
|
152
|
+
"./assets/fa/duotone/piggy-bank.svg": z,
|
|
153
|
+
"./assets/fa/duotone/rectangle-history.svg": L,
|
|
154
|
+
"./assets/fa/duotone/trash-can.svg": V,
|
|
155
|
+
"./assets/fa/duotone/trash.svg": x,
|
|
156
|
+
"./assets/fa/duotone/user-group.svg": S,
|
|
157
|
+
"./assets/fa/duotone/warehouse-full.svg": N,
|
|
158
|
+
"./assets/fa/duotone/xmark.svg": B,
|
|
159
|
+
"./assets/pi/logo.svg": k
|
|
150
160
|
})
|
|
151
161
|
).map(([t, l]) => {
|
|
152
162
|
var o, r;
|
|
153
163
|
return [(r = (o = t.split("/")) == null ? void 0 : o.at(-1)) == null ? void 0 : r.split(".svg")[0], l];
|
|
154
164
|
})
|
|
155
|
-
),
|
|
156
|
-
const r =
|
|
165
|
+
), R = ({ icon: t, size: l, color: o }) => {
|
|
166
|
+
const r = b[t] ?? /* @__PURE__ */ c("span", { title: t, children: [
|
|
157
167
|
"ERROR ICON ",
|
|
158
|
-
/* @__PURE__ */ a(
|
|
168
|
+
/* @__PURE__ */ a(R, { icon: "circle-exclamation" })
|
|
159
169
|
] });
|
|
160
170
|
return r && /* @__PURE__ */ a(r, { style: { color: o, height: l, width: l } });
|
|
161
171
|
};
|
|
162
172
|
export {
|
|
163
|
-
|
|
173
|
+
R as Icon
|
|
164
174
|
};
|
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
* This file is automatically generated. Any changes will be lost.
|
|
3
3
|
* run "yarn generate-icon-types" or "yarn build" to regenerate it.
|
|
4
4
|
*/
|
|
5
|
-
export type IconName = 'arrow-down-arrow-up' | 'arrow-left' | 'calendar-days' | 'chevron-down' | 'chevron-up' | 'circle-arrow-right' | 'circle-check' | 'circle-exclamation' | 'circle-info' | 'circle-xmark' | 'eye-slash' | 'folder-magnifying-glass' | 'lock-keyhole' | 'magnifying-glass' | 'money-bill-trend-up' | 'pen-to-square' | 'piggy-bank' | 'rectangle-history' | 'trash-can' | 'trash' | 'user-group' | 'warehouse-full' | 'xmark' | 'logo';
|
|
5
|
+
export type IconName = 'arrow-down-arrow-up' | 'arrow-left' | 'calendar-days' | 'chevron-down' | 'chevron-up' | 'circle-arrow-right' | 'circle-check' | 'circle-exclamation' | 'circle-info' | 'circle-xmark' | 'eye-slash' | 'filter-list' | 'folder-magnifying-glass' | 'lock-keyhole' | 'magnifying-glass' | 'money-bill-trend-up' | 'pen-to-square' | 'piggy-bank' | 'rectangle-history' | 'trash-can' | 'trash' | 'user-group' | 'warehouse-full' | 'xmark' | 'logo';
|