@szymonpiatek/designsystem 0.0.4 → 0.0.6
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/index.cjs +272 -891
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +99 -742
- package/dist/index.js.map +1 -1
- package/package.json +9 -5
package/dist/index.js
CHANGED
|
@@ -1,16 +1,36 @@
|
|
|
1
1
|
import { forwardRef, useId, useRef, useEffect, useState, useCallback, useMemo, Fragment as Fragment$1 } from 'react';
|
|
2
|
-
import { styled, alpha, keyframes
|
|
3
|
-
import
|
|
2
|
+
import { styled, alpha, keyframes, createTheme, useTheme, ThemeProvider } from '@mui/material/styles';
|
|
3
|
+
import CircularProgress from '@mui/material/CircularProgress';
|
|
4
4
|
import { jsxs, jsx, Fragment } from 'react/jsx-runtime';
|
|
5
|
+
import ExpandMoreIcon from '@mui/icons-material/ExpandMore';
|
|
6
|
+
import FileUploadIcon from '@mui/icons-material/FileUpload';
|
|
7
|
+
import CloudUploadMuiIcon from '@mui/icons-material/CloudUpload';
|
|
8
|
+
import InsertDriveFileIcon from '@mui/icons-material/InsertDriveFile';
|
|
9
|
+
import DeleteOutlinedIcon from '@mui/icons-material/DeleteOutlined';
|
|
10
|
+
import CloseIcon from '@mui/icons-material/Close';
|
|
11
|
+
import CheckIcon from '@mui/icons-material/Check';
|
|
12
|
+
import VisibilityIcon from '@mui/icons-material/Visibility';
|
|
13
|
+
import VisibilityOffIcon from '@mui/icons-material/VisibilityOff';
|
|
14
|
+
import SearchMuiIcon from '@mui/icons-material/Search';
|
|
5
15
|
import { getCountryCallingCode } from 'libphonenumber-js';
|
|
16
|
+
import CalendarMonthIcon from '@mui/icons-material/CalendarMonth';
|
|
17
|
+
import AccessTimeIcon from '@mui/icons-material/AccessTime';
|
|
18
|
+
import ChevronLeftIcon from '@mui/icons-material/ChevronLeft';
|
|
19
|
+
import ChevronRightIcon from '@mui/icons-material/ChevronRight';
|
|
20
|
+
import KeyboardArrowUpIcon from '@mui/icons-material/KeyboardArrowUp';
|
|
21
|
+
import KeyboardArrowDownIcon from '@mui/icons-material/KeyboardArrowDown';
|
|
22
|
+
import { keyframes as keyframes$1 } from '@emotion/react';
|
|
23
|
+
import ArticleIcon from '@mui/icons-material/Article';
|
|
24
|
+
import CheckCircleOutlinedIcon from '@mui/icons-material/CheckCircleOutlined';
|
|
25
|
+
import HighlightOffIcon from '@mui/icons-material/HighlightOff';
|
|
6
26
|
import { createPortal } from 'react-dom';
|
|
27
|
+
import KeyboardDoubleArrowLeftIcon from '@mui/icons-material/KeyboardDoubleArrowLeft';
|
|
28
|
+
import KeyboardDoubleArrowRightIcon from '@mui/icons-material/KeyboardDoubleArrowRight';
|
|
29
|
+
import ArrowForwardIcon from '@mui/icons-material/ArrowForward';
|
|
30
|
+
import MenuIcon from '@mui/icons-material/Menu';
|
|
7
31
|
import CssBaseline from '@mui/material/CssBaseline';
|
|
8
32
|
|
|
9
33
|
// src/components/atoms/buttons/Button/Button.tsx
|
|
10
|
-
var spin = keyframes`
|
|
11
|
-
from { transform: rotate(0deg); }
|
|
12
|
-
to { transform: rotate(360deg); }
|
|
13
|
-
`;
|
|
14
34
|
var sizeMap = {
|
|
15
35
|
sm: { padding: "0.25rem 0.75rem", fontSize: "0.75rem", gap: "0.25rem" },
|
|
16
36
|
md: { padding: "0.5rem 1.25rem", fontSize: "0.875rem", gap: "0.375rem" },
|
|
@@ -79,8 +99,7 @@ var IconSlot = styled("span")({
|
|
|
79
99
|
alignItems: "center"
|
|
80
100
|
});
|
|
81
101
|
var Spinner = styled("span")({
|
|
82
|
-
display: "inline-flex"
|
|
83
|
-
animation: `${spin} 700ms linear infinite`
|
|
102
|
+
display: "inline-flex"
|
|
84
103
|
});
|
|
85
104
|
var Button = forwardRef(
|
|
86
105
|
({
|
|
@@ -112,21 +131,7 @@ var Button = forwardRef(
|
|
|
112
131
|
"aria-label": ariaLabel,
|
|
113
132
|
"aria-current": ariaCurrent,
|
|
114
133
|
children: [
|
|
115
|
-
loading ? /* @__PURE__ */ jsx(Spinner, { "aria-hidden": "true", children: /* @__PURE__ */
|
|
116
|
-
"svg",
|
|
117
|
-
{
|
|
118
|
-
width: "1em",
|
|
119
|
-
height: "1em",
|
|
120
|
-
viewBox: "0 0 24 24",
|
|
121
|
-
fill: "none",
|
|
122
|
-
stroke: "currentColor",
|
|
123
|
-
strokeWidth: "2",
|
|
124
|
-
children: [
|
|
125
|
-
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10", strokeOpacity: "0.25" }),
|
|
126
|
-
/* @__PURE__ */ jsx("path", { d: "M12 2a10 10 0 0 1 10 10" })
|
|
127
|
-
]
|
|
128
|
-
}
|
|
129
|
-
) }) : startIcon && /* @__PURE__ */ jsx(IconSlot, { children: startIcon }),
|
|
134
|
+
loading ? /* @__PURE__ */ jsx(Spinner, { "aria-hidden": "true", children: /* @__PURE__ */ jsx(CircularProgress, { size: "1em", color: "inherit", thickness: 5 }) }) : startIcon && /* @__PURE__ */ jsx(IconSlot, { children: startIcon }),
|
|
130
135
|
/* @__PURE__ */ jsx("span", { children }),
|
|
131
136
|
endIcon && /* @__PURE__ */ jsx(IconSlot, { children: endIcon })
|
|
132
137
|
]
|
|
@@ -179,21 +184,7 @@ var DropdownPanel = styled("div")(({ theme }) => ({
|
|
|
179
184
|
borderRadius: theme.shape.borderRadius,
|
|
180
185
|
boxShadow: theme.shadows[4]
|
|
181
186
|
}));
|
|
182
|
-
var Chevron = () => /* @__PURE__ */ jsx(
|
|
183
|
-
"svg",
|
|
184
|
-
{
|
|
185
|
-
viewBox: "0 0 24 24",
|
|
186
|
-
width: "1em",
|
|
187
|
-
height: "1em",
|
|
188
|
-
fill: "none",
|
|
189
|
-
stroke: "currentColor",
|
|
190
|
-
strokeWidth: 2,
|
|
191
|
-
strokeLinecap: "round",
|
|
192
|
-
strokeLinejoin: "round",
|
|
193
|
-
"aria-hidden": true,
|
|
194
|
-
children: /* @__PURE__ */ jsx("polyline", { points: "6 9 12 15 18 9" })
|
|
195
|
-
}
|
|
196
|
-
);
|
|
187
|
+
var Chevron = () => /* @__PURE__ */ jsx(ExpandMoreIcon, { "aria-hidden": true, sx: { fontSize: "1em" } });
|
|
197
188
|
var inputColors = (theme, error) => ({
|
|
198
189
|
borderColor: error ? theme.palette.error.main : theme.palette.divider,
|
|
199
190
|
"&:hover:not(:focus-within):not([data-disabled])": {
|
|
@@ -426,99 +417,11 @@ var formatSize = (bytes) => {
|
|
|
426
417
|
if (bytes < 1024 ** 2) return `${(bytes / 1024).toFixed(1)} KB`;
|
|
427
418
|
return `${(bytes / 1024 ** 2).toFixed(1)} MB`;
|
|
428
419
|
};
|
|
429
|
-
var UploadArrowIcon = ({ size = 13 }) => /* @__PURE__ */
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
viewBox: "0 0 24 24",
|
|
435
|
-
fill: "none",
|
|
436
|
-
stroke: "currentColor",
|
|
437
|
-
strokeWidth: 2.5,
|
|
438
|
-
strokeLinecap: "round",
|
|
439
|
-
strokeLinejoin: "round",
|
|
440
|
-
"aria-hidden": true,
|
|
441
|
-
children: [
|
|
442
|
-
/* @__PURE__ */ jsx("polyline", { points: "17 8 12 3 7 8" }),
|
|
443
|
-
/* @__PURE__ */ jsx("line", { x1: "12", y1: "3", x2: "12", y2: "15" }),
|
|
444
|
-
/* @__PURE__ */ jsx("path", { d: "M4 15v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-4" })
|
|
445
|
-
]
|
|
446
|
-
}
|
|
447
|
-
);
|
|
448
|
-
var CloudUploadIcon = ({ size }) => /* @__PURE__ */ jsxs(
|
|
449
|
-
"svg",
|
|
450
|
-
{
|
|
451
|
-
width: size,
|
|
452
|
-
height: size,
|
|
453
|
-
viewBox: "0 0 24 24",
|
|
454
|
-
fill: "none",
|
|
455
|
-
stroke: "currentColor",
|
|
456
|
-
strokeWidth: 1.5,
|
|
457
|
-
strokeLinecap: "round",
|
|
458
|
-
strokeLinejoin: "round",
|
|
459
|
-
"aria-hidden": true,
|
|
460
|
-
children: [
|
|
461
|
-
/* @__PURE__ */ jsx("polyline", { points: "16 16 12 12 8 16" }),
|
|
462
|
-
/* @__PURE__ */ jsx("line", { x1: "12", y1: "12", x2: "12", y2: "21" }),
|
|
463
|
-
/* @__PURE__ */ jsx("path", { d: "M20.39 18.39A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.3" })
|
|
464
|
-
]
|
|
465
|
-
}
|
|
466
|
-
);
|
|
467
|
-
var FileDocIcon = ({ size }) => /* @__PURE__ */ jsxs(
|
|
468
|
-
"svg",
|
|
469
|
-
{
|
|
470
|
-
width: size,
|
|
471
|
-
height: size,
|
|
472
|
-
viewBox: "0 0 24 24",
|
|
473
|
-
fill: "none",
|
|
474
|
-
stroke: "currentColor",
|
|
475
|
-
strokeWidth: 1.75,
|
|
476
|
-
strokeLinecap: "round",
|
|
477
|
-
strokeLinejoin: "round",
|
|
478
|
-
"aria-hidden": true,
|
|
479
|
-
children: [
|
|
480
|
-
/* @__PURE__ */ jsx("path", { d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" }),
|
|
481
|
-
/* @__PURE__ */ jsx("polyline", { points: "14 2 14 8 20 8" })
|
|
482
|
-
]
|
|
483
|
-
}
|
|
484
|
-
);
|
|
485
|
-
var TrashIcon = ({ size = 12 }) => /* @__PURE__ */ jsxs(
|
|
486
|
-
"svg",
|
|
487
|
-
{
|
|
488
|
-
width: size,
|
|
489
|
-
height: size,
|
|
490
|
-
viewBox: "0 0 24 24",
|
|
491
|
-
fill: "none",
|
|
492
|
-
stroke: "currentColor",
|
|
493
|
-
strokeWidth: 2.5,
|
|
494
|
-
strokeLinecap: "round",
|
|
495
|
-
strokeLinejoin: "round",
|
|
496
|
-
"aria-hidden": true,
|
|
497
|
-
children: [
|
|
498
|
-
/* @__PURE__ */ jsx("polyline", { points: "3 6 5 6 21 6" }),
|
|
499
|
-
/* @__PURE__ */ jsx("path", { d: "M19 6l-1 14a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2L5 6" }),
|
|
500
|
-
/* @__PURE__ */ jsx("path", { d: "M10 11v6M14 11v6" }),
|
|
501
|
-
/* @__PURE__ */ jsx("path", { d: "M9 6V4a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2" })
|
|
502
|
-
]
|
|
503
|
-
}
|
|
504
|
-
);
|
|
505
|
-
var XIcon = () => /* @__PURE__ */ jsxs(
|
|
506
|
-
"svg",
|
|
507
|
-
{
|
|
508
|
-
width: "11",
|
|
509
|
-
height: "11",
|
|
510
|
-
viewBox: "0 0 24 24",
|
|
511
|
-
fill: "none",
|
|
512
|
-
stroke: "currentColor",
|
|
513
|
-
strokeWidth: 2.5,
|
|
514
|
-
strokeLinecap: "round",
|
|
515
|
-
"aria-hidden": true,
|
|
516
|
-
children: [
|
|
517
|
-
/* @__PURE__ */ jsx("line", { x1: "18", y1: "6", x2: "6", y2: "18" }),
|
|
518
|
-
/* @__PURE__ */ jsx("line", { x1: "6", y1: "6", x2: "18", y2: "18" })
|
|
519
|
-
]
|
|
520
|
-
}
|
|
521
|
-
);
|
|
420
|
+
var UploadArrowIcon = ({ size = 13 }) => /* @__PURE__ */ jsx(FileUploadIcon, { "aria-hidden": true, style: { fontSize: size } });
|
|
421
|
+
var CloudUploadIcon = ({ size }) => /* @__PURE__ */ jsx(CloudUploadMuiIcon, { "aria-hidden": true, style: { fontSize: size } });
|
|
422
|
+
var FileDocIcon = ({ size }) => /* @__PURE__ */ jsx(InsertDriveFileIcon, { "aria-hidden": true, style: { fontSize: size } });
|
|
423
|
+
var TrashIcon = ({ size = 12 }) => /* @__PURE__ */ jsx(DeleteOutlinedIcon, { "aria-hidden": true, style: { fontSize: size } });
|
|
424
|
+
var XIcon = () => /* @__PURE__ */ jsx(CloseIcon, { "aria-hidden": true, style: { fontSize: 11 } });
|
|
522
425
|
var Root3 = styled("div")(({ $fullWidth }) => ({
|
|
523
426
|
display: $fullWidth ? "block" : "inline-block",
|
|
524
427
|
width: $fullWidth ? "100%" : "auto"
|
|
@@ -1456,21 +1359,7 @@ var CheckboxBox = styled("span")(({ theme, $checked }) => ({
|
|
|
1456
1359
|
flexShrink: 0,
|
|
1457
1360
|
transition: "background-color 150ms ease, border-color 150ms ease"
|
|
1458
1361
|
}));
|
|
1459
|
-
var CheckmarkIcon = () => /* @__PURE__ */ jsx(
|
|
1460
|
-
"svg",
|
|
1461
|
-
{
|
|
1462
|
-
viewBox: "0 0 24 24",
|
|
1463
|
-
width: "0.65rem",
|
|
1464
|
-
height: "0.65rem",
|
|
1465
|
-
fill: "none",
|
|
1466
|
-
stroke: "currentColor",
|
|
1467
|
-
strokeWidth: 3,
|
|
1468
|
-
strokeLinecap: "round",
|
|
1469
|
-
strokeLinejoin: "round",
|
|
1470
|
-
"aria-hidden": true,
|
|
1471
|
-
children: /* @__PURE__ */ jsx("polyline", { points: "20 6 9 17 4 12" })
|
|
1472
|
-
}
|
|
1473
|
-
);
|
|
1362
|
+
var CheckmarkIcon = () => /* @__PURE__ */ jsx(CheckIcon, { "aria-hidden": true, style: { width: "0.65rem", height: "0.65rem" } });
|
|
1474
1363
|
var renderTrigger = (value, options, placeholder) => {
|
|
1475
1364
|
const MultiSelectTrigger = () => {
|
|
1476
1365
|
if (value.length === 0) {
|
|
@@ -1531,42 +1420,8 @@ var ToggleButton = styled("button")(({ theme }) => ({
|
|
|
1531
1420
|
cursor: "not-allowed"
|
|
1532
1421
|
}
|
|
1533
1422
|
}));
|
|
1534
|
-
var EyeIcon = () => /* @__PURE__ */
|
|
1535
|
-
|
|
1536
|
-
{
|
|
1537
|
-
viewBox: "0 0 24 24",
|
|
1538
|
-
width: "1em",
|
|
1539
|
-
height: "1em",
|
|
1540
|
-
fill: "none",
|
|
1541
|
-
stroke: "currentColor",
|
|
1542
|
-
strokeWidth: 2,
|
|
1543
|
-
strokeLinecap: "round",
|
|
1544
|
-
strokeLinejoin: "round",
|
|
1545
|
-
"aria-hidden": true,
|
|
1546
|
-
children: [
|
|
1547
|
-
/* @__PURE__ */ jsx("path", { d: "M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z" }),
|
|
1548
|
-
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "3" })
|
|
1549
|
-
]
|
|
1550
|
-
}
|
|
1551
|
-
);
|
|
1552
|
-
var EyeOffIcon = () => /* @__PURE__ */ jsxs(
|
|
1553
|
-
"svg",
|
|
1554
|
-
{
|
|
1555
|
-
viewBox: "0 0 24 24",
|
|
1556
|
-
width: "1em",
|
|
1557
|
-
height: "1em",
|
|
1558
|
-
fill: "none",
|
|
1559
|
-
stroke: "currentColor",
|
|
1560
|
-
strokeWidth: 2,
|
|
1561
|
-
strokeLinecap: "round",
|
|
1562
|
-
strokeLinejoin: "round",
|
|
1563
|
-
"aria-hidden": true,
|
|
1564
|
-
children: [
|
|
1565
|
-
/* @__PURE__ */ jsx("path", { d: "M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24" }),
|
|
1566
|
-
/* @__PURE__ */ jsx("line", { x1: "1", y1: "1", x2: "23", y2: "23" })
|
|
1567
|
-
]
|
|
1568
|
-
}
|
|
1569
|
-
);
|
|
1423
|
+
var EyeIcon = () => /* @__PURE__ */ jsx(VisibilityIcon, { "aria-hidden": true, sx: { fontSize: "1em" } });
|
|
1424
|
+
var EyeOffIcon = () => /* @__PURE__ */ jsx(VisibilityOffIcon, { "aria-hidden": true, sx: { fontSize: "1em" } });
|
|
1570
1425
|
var PasswordInput = forwardRef(
|
|
1571
1426
|
({ disabled, showPasswordLabel = "Poka\u017C has\u0142o", hidePasswordLabel = "Ukryj has\u0142o", ...props }, ref) => {
|
|
1572
1427
|
const [show, setShow] = useState(false);
|
|
@@ -1607,42 +1462,8 @@ var ClearButton = styled("button")(({ theme }) => ({
|
|
|
1607
1462
|
color: theme.palette.text.primary
|
|
1608
1463
|
}
|
|
1609
1464
|
}));
|
|
1610
|
-
var SearchIcon = () => /* @__PURE__ */
|
|
1611
|
-
|
|
1612
|
-
{
|
|
1613
|
-
viewBox: "0 0 24 24",
|
|
1614
|
-
width: "1em",
|
|
1615
|
-
height: "1em",
|
|
1616
|
-
fill: "none",
|
|
1617
|
-
stroke: "currentColor",
|
|
1618
|
-
strokeWidth: 2,
|
|
1619
|
-
strokeLinecap: "round",
|
|
1620
|
-
strokeLinejoin: "round",
|
|
1621
|
-
"aria-hidden": true,
|
|
1622
|
-
children: [
|
|
1623
|
-
/* @__PURE__ */ jsx("circle", { cx: "11", cy: "11", r: "8" }),
|
|
1624
|
-
/* @__PURE__ */ jsx("line", { x1: "21", y1: "21", x2: "16.65", y2: "16.65" })
|
|
1625
|
-
]
|
|
1626
|
-
}
|
|
1627
|
-
);
|
|
1628
|
-
var XIcon2 = () => /* @__PURE__ */ jsxs(
|
|
1629
|
-
"svg",
|
|
1630
|
-
{
|
|
1631
|
-
viewBox: "0 0 24 24",
|
|
1632
|
-
width: "1em",
|
|
1633
|
-
height: "1em",
|
|
1634
|
-
fill: "none",
|
|
1635
|
-
stroke: "currentColor",
|
|
1636
|
-
strokeWidth: 2,
|
|
1637
|
-
strokeLinecap: "round",
|
|
1638
|
-
strokeLinejoin: "round",
|
|
1639
|
-
"aria-hidden": true,
|
|
1640
|
-
children: [
|
|
1641
|
-
/* @__PURE__ */ jsx("line", { x1: "18", y1: "6", x2: "6", y2: "18" }),
|
|
1642
|
-
/* @__PURE__ */ jsx("line", { x1: "6", y1: "6", x2: "18", y2: "18" })
|
|
1643
|
-
]
|
|
1644
|
-
}
|
|
1645
|
-
);
|
|
1465
|
+
var SearchIcon = () => /* @__PURE__ */ jsx(SearchMuiIcon, { "aria-hidden": true, sx: { fontSize: "1em" } });
|
|
1466
|
+
var XIcon2 = () => /* @__PURE__ */ jsx(CloseIcon, { "aria-hidden": true, sx: { fontSize: "1em" } });
|
|
1646
1467
|
var SearchInput = forwardRef(
|
|
1647
1468
|
({ value, onChange, onClear, clearAriaLabel = "Wyczy\u015B\u0107", ...props }, forwardedRef) => {
|
|
1648
1469
|
const innerRef = useRef(null);
|
|
@@ -1692,21 +1513,7 @@ var SearchInput = forwardRef(
|
|
|
1692
1513
|
}
|
|
1693
1514
|
);
|
|
1694
1515
|
SearchInput.displayName = "SearchInput";
|
|
1695
|
-
var Checkmark = () => /* @__PURE__ */ jsx(
|
|
1696
|
-
"svg",
|
|
1697
|
-
{
|
|
1698
|
-
viewBox: "0 0 24 24",
|
|
1699
|
-
width: "1em",
|
|
1700
|
-
height: "1em",
|
|
1701
|
-
fill: "none",
|
|
1702
|
-
stroke: "currentColor",
|
|
1703
|
-
strokeWidth: 2.5,
|
|
1704
|
-
strokeLinecap: "round",
|
|
1705
|
-
strokeLinejoin: "round",
|
|
1706
|
-
"aria-hidden": true,
|
|
1707
|
-
children: /* @__PURE__ */ jsx("polyline", { points: "20 6 9 17 4 12" })
|
|
1708
|
-
}
|
|
1709
|
-
);
|
|
1516
|
+
var Checkmark = () => /* @__PURE__ */ jsx(CheckIcon, { "aria-hidden": true, sx: { fontSize: "1em" } });
|
|
1710
1517
|
var renderOption2 = (selected) => {
|
|
1711
1518
|
const SelectOption = (option) => /* @__PURE__ */ jsxs(
|
|
1712
1519
|
"span",
|
|
@@ -4191,7 +3998,7 @@ var AdornmentButton = styled("button")(({ theme }) => ({
|
|
|
4191
3998
|
padding: 0,
|
|
4192
3999
|
...adornmentStyles({ theme })
|
|
4193
4000
|
}));
|
|
4194
|
-
var popIn = keyframes
|
|
4001
|
+
var popIn = keyframes`
|
|
4195
4002
|
from { opacity: 0; transform: translateY(4px) scale(0.98); }
|
|
4196
4003
|
to { opacity: 1; transform: translateY(0) scale(1); }
|
|
4197
4004
|
`;
|
|
@@ -4355,133 +4162,25 @@ var ActionBtn = styled("button")(({ theme, $primary }) => ({
|
|
|
4355
4162
|
"&:focus-visible": { outline: `2px solid ${theme.palette.primary.main}`, outlineOffset: "1px" }
|
|
4356
4163
|
}));
|
|
4357
4164
|
function IconCalendar() {
|
|
4358
|
-
return /* @__PURE__ */
|
|
4359
|
-
"svg",
|
|
4360
|
-
{
|
|
4361
|
-
width: "16",
|
|
4362
|
-
height: "16",
|
|
4363
|
-
viewBox: "0 0 24 24",
|
|
4364
|
-
fill: "none",
|
|
4365
|
-
stroke: "currentColor",
|
|
4366
|
-
strokeWidth: 1.75,
|
|
4367
|
-
strokeLinecap: "round",
|
|
4368
|
-
strokeLinejoin: "round",
|
|
4369
|
-
"aria-hidden": "true",
|
|
4370
|
-
children: [
|
|
4371
|
-
/* @__PURE__ */ jsx("rect", { x: "3", y: "4", width: "18", height: "18", rx: "2" }),
|
|
4372
|
-
/* @__PURE__ */ jsx("line", { x1: "16", y1: "2", x2: "16", y2: "6" }),
|
|
4373
|
-
/* @__PURE__ */ jsx("line", { x1: "8", y1: "2", x2: "8", y2: "6" }),
|
|
4374
|
-
/* @__PURE__ */ jsx("line", { x1: "3", y1: "10", x2: "21", y2: "10" })
|
|
4375
|
-
]
|
|
4376
|
-
}
|
|
4377
|
-
);
|
|
4165
|
+
return /* @__PURE__ */ jsx(CalendarMonthIcon, { "aria-hidden": "true", style: { fontSize: 16 } });
|
|
4378
4166
|
}
|
|
4379
4167
|
function IconClock() {
|
|
4380
|
-
return /* @__PURE__ */
|
|
4381
|
-
"svg",
|
|
4382
|
-
{
|
|
4383
|
-
width: "16",
|
|
4384
|
-
height: "16",
|
|
4385
|
-
viewBox: "0 0 24 24",
|
|
4386
|
-
fill: "none",
|
|
4387
|
-
stroke: "currentColor",
|
|
4388
|
-
strokeWidth: 1.75,
|
|
4389
|
-
strokeLinecap: "round",
|
|
4390
|
-
strokeLinejoin: "round",
|
|
4391
|
-
"aria-hidden": "true",
|
|
4392
|
-
children: [
|
|
4393
|
-
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10" }),
|
|
4394
|
-
/* @__PURE__ */ jsx("polyline", { points: "12 6 12 12 16 14" })
|
|
4395
|
-
]
|
|
4396
|
-
}
|
|
4397
|
-
);
|
|
4168
|
+
return /* @__PURE__ */ jsx(AccessTimeIcon, { "aria-hidden": "true", style: { fontSize: 16 } });
|
|
4398
4169
|
}
|
|
4399
4170
|
function IconChevronLeft() {
|
|
4400
|
-
return /* @__PURE__ */ jsx(
|
|
4401
|
-
"svg",
|
|
4402
|
-
{
|
|
4403
|
-
width: "16",
|
|
4404
|
-
height: "16",
|
|
4405
|
-
viewBox: "0 0 24 24",
|
|
4406
|
-
fill: "none",
|
|
4407
|
-
stroke: "currentColor",
|
|
4408
|
-
strokeWidth: 2,
|
|
4409
|
-
strokeLinecap: "round",
|
|
4410
|
-
strokeLinejoin: "round",
|
|
4411
|
-
"aria-hidden": "true",
|
|
4412
|
-
children: /* @__PURE__ */ jsx("polyline", { points: "15 18 9 12 15 6" })
|
|
4413
|
-
}
|
|
4414
|
-
);
|
|
4171
|
+
return /* @__PURE__ */ jsx(ChevronLeftIcon, { "aria-hidden": "true", style: { fontSize: 16 } });
|
|
4415
4172
|
}
|
|
4416
4173
|
function IconChevronRight() {
|
|
4417
|
-
return /* @__PURE__ */ jsx(
|
|
4418
|
-
"svg",
|
|
4419
|
-
{
|
|
4420
|
-
width: "16",
|
|
4421
|
-
height: "16",
|
|
4422
|
-
viewBox: "0 0 24 24",
|
|
4423
|
-
fill: "none",
|
|
4424
|
-
stroke: "currentColor",
|
|
4425
|
-
strokeWidth: 2,
|
|
4426
|
-
strokeLinecap: "round",
|
|
4427
|
-
strokeLinejoin: "round",
|
|
4428
|
-
"aria-hidden": "true",
|
|
4429
|
-
children: /* @__PURE__ */ jsx("polyline", { points: "9 18 15 12 9 6" })
|
|
4430
|
-
}
|
|
4431
|
-
);
|
|
4174
|
+
return /* @__PURE__ */ jsx(ChevronRightIcon, { "aria-hidden": "true", style: { fontSize: 16 } });
|
|
4432
4175
|
}
|
|
4433
4176
|
function IconChevronUp() {
|
|
4434
|
-
return /* @__PURE__ */ jsx(
|
|
4435
|
-
"svg",
|
|
4436
|
-
{
|
|
4437
|
-
width: "12",
|
|
4438
|
-
height: "12",
|
|
4439
|
-
viewBox: "0 0 24 24",
|
|
4440
|
-
fill: "none",
|
|
4441
|
-
stroke: "currentColor",
|
|
4442
|
-
strokeWidth: 2.5,
|
|
4443
|
-
strokeLinecap: "round",
|
|
4444
|
-
strokeLinejoin: "round",
|
|
4445
|
-
"aria-hidden": "true",
|
|
4446
|
-
children: /* @__PURE__ */ jsx("polyline", { points: "18 15 12 9 6 15" })
|
|
4447
|
-
}
|
|
4448
|
-
);
|
|
4177
|
+
return /* @__PURE__ */ jsx(KeyboardArrowUpIcon, { "aria-hidden": "true", style: { fontSize: 12 } });
|
|
4449
4178
|
}
|
|
4450
4179
|
function IconChevronDown() {
|
|
4451
|
-
return /* @__PURE__ */ jsx(
|
|
4452
|
-
"svg",
|
|
4453
|
-
{
|
|
4454
|
-
width: "12",
|
|
4455
|
-
height: "12",
|
|
4456
|
-
viewBox: "0 0 24 24",
|
|
4457
|
-
fill: "none",
|
|
4458
|
-
stroke: "currentColor",
|
|
4459
|
-
strokeWidth: 2.5,
|
|
4460
|
-
strokeLinecap: "round",
|
|
4461
|
-
strokeLinejoin: "round",
|
|
4462
|
-
"aria-hidden": "true",
|
|
4463
|
-
children: /* @__PURE__ */ jsx("polyline", { points: "6 9 12 15 18 9" })
|
|
4464
|
-
}
|
|
4465
|
-
);
|
|
4180
|
+
return /* @__PURE__ */ jsx(KeyboardArrowDownIcon, { "aria-hidden": "true", style: { fontSize: 12 } });
|
|
4466
4181
|
}
|
|
4467
4182
|
function IconX() {
|
|
4468
|
-
return /* @__PURE__ */
|
|
4469
|
-
"svg",
|
|
4470
|
-
{
|
|
4471
|
-
width: "14",
|
|
4472
|
-
height: "14",
|
|
4473
|
-
viewBox: "0 0 24 24",
|
|
4474
|
-
fill: "none",
|
|
4475
|
-
stroke: "currentColor",
|
|
4476
|
-
strokeWidth: 2,
|
|
4477
|
-
strokeLinecap: "round",
|
|
4478
|
-
"aria-hidden": "true",
|
|
4479
|
-
children: [
|
|
4480
|
-
/* @__PURE__ */ jsx("line", { x1: "18", y1: "6", x2: "6", y2: "18" }),
|
|
4481
|
-
/* @__PURE__ */ jsx("line", { x1: "6", y1: "6", x2: "18", y2: "18" })
|
|
4482
|
-
]
|
|
4483
|
-
}
|
|
4484
|
-
);
|
|
4183
|
+
return /* @__PURE__ */ jsx(CloseIcon, { "aria-hidden": "true", style: { fontSize: 14 } });
|
|
4485
4184
|
}
|
|
4486
4185
|
var DateTimePicker = forwardRef(
|
|
4487
4186
|
({
|
|
@@ -5139,7 +4838,7 @@ function SectionHeading({
|
|
|
5139
4838
|
] });
|
|
5140
4839
|
}
|
|
5141
4840
|
var sectionHeadingAligns = ["center", "left", "right"];
|
|
5142
|
-
var shimmer = keyframes`
|
|
4841
|
+
var shimmer = keyframes$1`
|
|
5143
4842
|
0% { background-position: -200% 0; }
|
|
5144
4843
|
100% { background-position: 200% 0; }
|
|
5145
4844
|
`;
|
|
@@ -5197,10 +4896,10 @@ var SIZE_MAP = {
|
|
|
5197
4896
|
lg: "2rem",
|
|
5198
4897
|
xl: "3rem"
|
|
5199
4898
|
};
|
|
5200
|
-
var
|
|
5201
|
-
var fade = keyframes`0%,100%{opacity:.15} 50%{opacity:1}`;
|
|
5202
|
-
var scalePulse = keyframes`0%,100%{transform:scale(0.6);opacity:.4} 50%{transform:scale(1);opacity:1}`;
|
|
5203
|
-
var barAnim = keyframes`0%,100%{transform:scaleY(.4);opacity:.5} 50%{transform:scaleY(1);opacity:1}`;
|
|
4899
|
+
var spin = keyframes$1`to { transform: rotate(360deg); }`;
|
|
4900
|
+
var fade = keyframes$1`0%,100%{opacity:.15} 50%{opacity:1}`;
|
|
4901
|
+
var scalePulse = keyframes$1`0%,100%{transform:scale(0.6);opacity:.4} 50%{transform:scale(1);opacity:1}`;
|
|
4902
|
+
var barAnim = keyframes$1`0%,100%{transform:scaleY(.4);opacity:.5} 50%{transform:scaleY(1);opacity:1}`;
|
|
5204
4903
|
var Root10 = styled("span", {
|
|
5205
4904
|
shouldForwardProp: (p) => !["$size", "$color"].includes(p)
|
|
5206
4905
|
})(({ theme, $size, $color }) => {
|
|
@@ -5220,7 +4919,7 @@ var Root10 = styled("span", {
|
|
|
5220
4919
|
flexShrink: 0
|
|
5221
4920
|
};
|
|
5222
4921
|
});
|
|
5223
|
-
var RingSvg = styled("svg")({ animation: `${
|
|
4922
|
+
var RingSvg = styled("svg")({ animation: `${spin} 700ms linear infinite` });
|
|
5224
4923
|
function Ring() {
|
|
5225
4924
|
return /* @__PURE__ */ jsxs(RingSvg, { viewBox: "0 0 24 24", fill: "none", "aria-hidden": "true", children: [
|
|
5226
4925
|
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "10", stroke: "currentColor", strokeWidth: "3", strokeOpacity: "0.25" }),
|
|
@@ -5301,7 +5000,7 @@ var HEIGHT_MAP = {
|
|
|
5301
5000
|
md: "0.75rem",
|
|
5302
5001
|
lg: "1.25rem"
|
|
5303
5002
|
};
|
|
5304
|
-
var stripeAnim = keyframes`from{background-position:1rem 0}to{background-position:0 0}`;
|
|
5003
|
+
var stripeAnim = keyframes$1`from{background-position:1rem 0}to{background-position:0 0}`;
|
|
5305
5004
|
function getFillColor(variant, theme) {
|
|
5306
5005
|
switch (variant) {
|
|
5307
5006
|
case "success":
|
|
@@ -5643,6 +5342,9 @@ var StyledSection = styled("section")(({ theme }) => ({
|
|
|
5643
5342
|
}));
|
|
5644
5343
|
var Section = forwardRef(({ children, ...rest }, ref) => /* @__PURE__ */ jsx(StyledSection, { ref, ...rest, children }));
|
|
5645
5344
|
Section.displayName = "Section";
|
|
5345
|
+
var StyledMain = styled("main")({});
|
|
5346
|
+
var Main = forwardRef(({ children, ...rest }, ref) => /* @__PURE__ */ jsx(StyledMain, { ref, ...rest, children }));
|
|
5347
|
+
Main.displayName = "Main";
|
|
5646
5348
|
var getTypographyStyles = (theme) => ({
|
|
5647
5349
|
fontFamily: theme.typography.fontFamily,
|
|
5648
5350
|
"& h1": { fontSize: "2.25rem", fontWeight: 500, letterSpacing: "-0.025em" },
|
|
@@ -5798,11 +5500,6 @@ var getHeaderSpacingStyles = () => ({
|
|
|
5798
5500
|
var spacingStyles = {
|
|
5799
5501
|
"& > * + *": { marginTop: "1.5rem" }
|
|
5800
5502
|
};
|
|
5801
|
-
var StyledMain = styled("main")(({ theme }) => ({
|
|
5802
|
-
...getTypographyStyles(theme)
|
|
5803
|
-
}));
|
|
5804
|
-
var Main = forwardRef(({ children, ...rest }, ref) => /* @__PURE__ */ jsx(StyledMain, { ref, ...rest, children }));
|
|
5805
|
-
Main.displayName = "Main";
|
|
5806
5503
|
var StyledProse = styled("div")(({ theme }) => ({
|
|
5807
5504
|
...getTypographyStyles(theme),
|
|
5808
5505
|
...spacingStyles
|
|
@@ -6153,28 +5850,7 @@ var Overlay = styled("div")({
|
|
|
6153
5850
|
background: "linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 50%)",
|
|
6154
5851
|
pointerEvents: "none"
|
|
6155
5852
|
});
|
|
6156
|
-
var FileTextIcon = () => /* @__PURE__ */
|
|
6157
|
-
"svg",
|
|
6158
|
-
{
|
|
6159
|
-
width: "32",
|
|
6160
|
-
height: "32",
|
|
6161
|
-
viewBox: "0 0 24 24",
|
|
6162
|
-
fill: "none",
|
|
6163
|
-
stroke: "currentColor",
|
|
6164
|
-
strokeWidth: "1.5",
|
|
6165
|
-
strokeLinecap: "round",
|
|
6166
|
-
strokeLinejoin: "round",
|
|
6167
|
-
"aria-hidden": "true",
|
|
6168
|
-
style: { opacity: 0.3 },
|
|
6169
|
-
children: [
|
|
6170
|
-
/* @__PURE__ */ jsx("path", { d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z" }),
|
|
6171
|
-
/* @__PURE__ */ jsx("polyline", { points: "14 2 14 8 20 8" }),
|
|
6172
|
-
/* @__PURE__ */ jsx("line", { x1: "16", y1: "13", x2: "8", y2: "13" }),
|
|
6173
|
-
/* @__PURE__ */ jsx("line", { x1: "16", y1: "17", x2: "8", y2: "17" }),
|
|
6174
|
-
/* @__PURE__ */ jsx("polyline", { points: "10 9 9 9 8 9" })
|
|
6175
|
-
]
|
|
6176
|
-
}
|
|
6177
|
-
);
|
|
5853
|
+
var FileTextIcon = () => /* @__PURE__ */ jsx(ArticleIcon, { "aria-hidden": "true", style: { fontSize: 32, opacity: 0.3 } });
|
|
6178
5854
|
function toAspectRatioCss(ratio) {
|
|
6179
5855
|
if (typeof ratio === "number") return String(ratio);
|
|
6180
5856
|
return ratio.replace("/", " / ");
|
|
@@ -6495,48 +6171,11 @@ var CtaLink = styled("a", {
|
|
|
6495
6171
|
var CtaWrapper = styled("div")({
|
|
6496
6172
|
marginTop: "1.5rem"
|
|
6497
6173
|
});
|
|
6498
|
-
function
|
|
6499
|
-
return /* @__PURE__ */
|
|
6500
|
-
"svg",
|
|
6501
|
-
{
|
|
6502
|
-
width: "16",
|
|
6503
|
-
height: "16",
|
|
6504
|
-
viewBox: "0 0 16 16",
|
|
6505
|
-
fill: "none",
|
|
6506
|
-
"aria-hidden": "true",
|
|
6507
|
-
style: { flexShrink: 0 },
|
|
6508
|
-
children: [
|
|
6509
|
-
/* @__PURE__ */ jsx("circle", { cx: "8", cy: "8", r: "7", fill: "currentColor", fillOpacity: "0.15" }),
|
|
6510
|
-
/* @__PURE__ */ jsx(
|
|
6511
|
-
"path",
|
|
6512
|
-
{
|
|
6513
|
-
d: "M5 8l2 2 4-4",
|
|
6514
|
-
stroke: "currentColor",
|
|
6515
|
-
strokeWidth: "1.5",
|
|
6516
|
-
strokeLinecap: "round",
|
|
6517
|
-
strokeLinejoin: "round"
|
|
6518
|
-
}
|
|
6519
|
-
)
|
|
6520
|
-
]
|
|
6521
|
-
}
|
|
6522
|
-
);
|
|
6174
|
+
function CheckIcon3() {
|
|
6175
|
+
return /* @__PURE__ */ jsx(CheckCircleOutlinedIcon, { "aria-hidden": "true", style: { fontSize: 16, flexShrink: 0 } });
|
|
6523
6176
|
}
|
|
6524
6177
|
function XIcon3() {
|
|
6525
|
-
return /* @__PURE__ */
|
|
6526
|
-
"svg",
|
|
6527
|
-
{
|
|
6528
|
-
width: "16",
|
|
6529
|
-
height: "16",
|
|
6530
|
-
viewBox: "0 0 16 16",
|
|
6531
|
-
fill: "none",
|
|
6532
|
-
"aria-hidden": "true",
|
|
6533
|
-
style: { flexShrink: 0 },
|
|
6534
|
-
children: [
|
|
6535
|
-
/* @__PURE__ */ jsx("circle", { cx: "8", cy: "8", r: "7", fill: "currentColor", fillOpacity: "0.10" }),
|
|
6536
|
-
/* @__PURE__ */ jsx("path", { d: "M6 6l4 4M10 6l-4 4", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round" })
|
|
6537
|
-
]
|
|
6538
|
-
}
|
|
6539
|
-
);
|
|
6178
|
+
return /* @__PURE__ */ jsx(HighlightOffIcon, { "aria-hidden": "true", style: { fontSize: 16, flexShrink: 0 } });
|
|
6540
6179
|
}
|
|
6541
6180
|
var PricingCard = forwardRef(
|
|
6542
6181
|
({
|
|
@@ -6573,7 +6212,7 @@ var PricingCard = forwardRef(
|
|
|
6573
6212
|
/* @__PURE__ */ jsx(FeatureList, { children: features.map((feature, i) => {
|
|
6574
6213
|
const included = feature.included !== false;
|
|
6575
6214
|
return /* @__PURE__ */ jsxs(FeatureItem, { $included: included, children: [
|
|
6576
|
-
included ? /* @__PURE__ */ jsx(
|
|
6215
|
+
included ? /* @__PURE__ */ jsx(CheckIcon3, {}) : /* @__PURE__ */ jsx(XIcon3, {}),
|
|
6577
6216
|
feature.text
|
|
6578
6217
|
] }, i);
|
|
6579
6218
|
}) })
|
|
@@ -6855,7 +6494,7 @@ var ValueCell = styled("td", {
|
|
|
6855
6494
|
fontWeight: $highlight ? 700 : 400,
|
|
6856
6495
|
backgroundColor: $highlight ? theme.palette.mode === "dark" ? "rgba(99,102,241,0.08)" : "rgba(99,102,241,0.06)" : "transparent"
|
|
6857
6496
|
}));
|
|
6858
|
-
var BoolIcon = ({ value }) => /* @__PURE__ */ jsx("span", { "aria-label": value ? "Tak" : "Nie", style: { fontSize: "1.125rem" }, children: value ?
|
|
6497
|
+
var BoolIcon = ({ value }) => /* @__PURE__ */ jsx("span", { "aria-label": value ? "Tak" : "Nie", style: { display: "inline-flex", fontSize: "1.125rem" }, children: value ? /* @__PURE__ */ jsx(CheckIcon, {}) : /* @__PURE__ */ jsx(CloseIcon, {}) });
|
|
6859
6498
|
function formatValue(v) {
|
|
6860
6499
|
if (typeof v === "boolean") return /* @__PURE__ */ jsx(BoolIcon, { value: v });
|
|
6861
6500
|
return String(v);
|
|
@@ -6916,7 +6555,7 @@ function CompareTool({
|
|
|
6916
6555
|
}) })
|
|
6917
6556
|
] }) });
|
|
6918
6557
|
}
|
|
6919
|
-
var
|
|
6558
|
+
var spin2 = keyframes`to { transform: rotate(360deg); }`;
|
|
6920
6559
|
var Root20 = styled("div")({
|
|
6921
6560
|
display: "flex",
|
|
6922
6561
|
flexDirection: "column",
|
|
@@ -6990,7 +6629,7 @@ var Spinner4 = styled("span")({
|
|
|
6990
6629
|
border: "2px solid rgba(255,255,255,0.3)",
|
|
6991
6630
|
borderTopColor: "#fff",
|
|
6992
6631
|
borderRadius: "50%",
|
|
6993
|
-
animation: `${
|
|
6632
|
+
animation: `${spin2} 600ms linear infinite`,
|
|
6994
6633
|
verticalAlign: "middle"
|
|
6995
6634
|
});
|
|
6996
6635
|
var Message = styled("p", {
|
|
@@ -7175,7 +6814,8 @@ var Root22 = styled("div")(({ theme, $variant }) => ({
|
|
|
7175
6814
|
display: "flex",
|
|
7176
6815
|
alignItems: "center",
|
|
7177
6816
|
justifyContent: "center",
|
|
7178
|
-
|
|
6817
|
+
flexWrap: "wrap",
|
|
6818
|
+
gap: "0 1rem",
|
|
7179
6819
|
width: "100%",
|
|
7180
6820
|
padding: "0.75rem 1rem",
|
|
7181
6821
|
fontFamily: theme.typography.fontFamily,
|
|
@@ -7360,7 +7000,7 @@ var Trigger2 = styled("button")(({ theme }) => ({
|
|
|
7360
7000
|
borderRadius: "2px"
|
|
7361
7001
|
}
|
|
7362
7002
|
}));
|
|
7363
|
-
var ChevronIcon2 = styled(
|
|
7003
|
+
var ChevronIcon2 = styled(ExpandMoreIcon, {
|
|
7364
7004
|
shouldForwardProp: (prop) => prop !== "$open"
|
|
7365
7005
|
})(({ $open }) => ({
|
|
7366
7006
|
width: "1.25rem",
|
|
@@ -7386,18 +7026,7 @@ var FaqItem = forwardRef(
|
|
|
7386
7026
|
return /* @__PURE__ */ jsxs(Root25, { ref, ...props, children: [
|
|
7387
7027
|
/* @__PURE__ */ jsxs(Trigger2, { type: "button", "aria-expanded": open, onClick: () => setOpen((prev) => !prev), children: [
|
|
7388
7028
|
item.question,
|
|
7389
|
-
/* @__PURE__ */ jsx(
|
|
7390
|
-
ChevronIcon2,
|
|
7391
|
-
{
|
|
7392
|
-
$open: open,
|
|
7393
|
-
viewBox: "0 0 24 24",
|
|
7394
|
-
fill: "none",
|
|
7395
|
-
stroke: "currentColor",
|
|
7396
|
-
strokeWidth: 2,
|
|
7397
|
-
"aria-hidden": "true",
|
|
7398
|
-
children: /* @__PURE__ */ jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M19 9l-7 7-7-7" })
|
|
7399
|
-
}
|
|
7400
|
-
)
|
|
7029
|
+
/* @__PURE__ */ jsx(ChevronIcon2, { $open: open, "aria-hidden": "true" })
|
|
7401
7030
|
] }),
|
|
7402
7031
|
open && /* @__PURE__ */ jsx(Panel, { role: "region", children: /* @__PURE__ */ jsx(PanelInner, { children: item.answer }) })
|
|
7403
7032
|
] });
|
|
@@ -7736,23 +7365,7 @@ var Description6 = styled("div")(({ theme }) => ({
|
|
|
7736
7365
|
}));
|
|
7737
7366
|
function StatusIcon({ status }) {
|
|
7738
7367
|
if (status === "error") {
|
|
7739
|
-
return /* @__PURE__ */
|
|
7740
|
-
"svg",
|
|
7741
|
-
{
|
|
7742
|
-
width: "10",
|
|
7743
|
-
height: "10",
|
|
7744
|
-
viewBox: "0 0 24 24",
|
|
7745
|
-
fill: "none",
|
|
7746
|
-
stroke: "currentColor",
|
|
7747
|
-
strokeWidth: 3,
|
|
7748
|
-
strokeLinecap: "round",
|
|
7749
|
-
"aria-hidden": "true",
|
|
7750
|
-
children: [
|
|
7751
|
-
/* @__PURE__ */ jsx("line", { x1: "18", y1: "6", x2: "6", y2: "18" }),
|
|
7752
|
-
/* @__PURE__ */ jsx("line", { x1: "6", y1: "6", x2: "18", y2: "18" })
|
|
7753
|
-
]
|
|
7754
|
-
}
|
|
7755
|
-
);
|
|
7368
|
+
return /* @__PURE__ */ jsx(CloseIcon, { "aria-hidden": "true", style: { fontSize: 10 } });
|
|
7756
7369
|
}
|
|
7757
7370
|
return null;
|
|
7758
7371
|
}
|
|
@@ -7925,20 +7538,7 @@ function Carousel({
|
|
|
7925
7538
|
"aria-label": "Poprzedni slajd",
|
|
7926
7539
|
onClick: prev,
|
|
7927
7540
|
disabled: !loop && index === 0,
|
|
7928
|
-
children: /* @__PURE__ */ jsx(
|
|
7929
|
-
"svg",
|
|
7930
|
-
{
|
|
7931
|
-
width: "16",
|
|
7932
|
-
height: "16",
|
|
7933
|
-
viewBox: "0 0 24 24",
|
|
7934
|
-
fill: "none",
|
|
7935
|
-
stroke: "currentColor",
|
|
7936
|
-
strokeWidth: 2.5,
|
|
7937
|
-
strokeLinecap: "round",
|
|
7938
|
-
strokeLinejoin: "round",
|
|
7939
|
-
children: /* @__PURE__ */ jsx("polyline", { points: "15 18 9 12 15 6" })
|
|
7940
|
-
}
|
|
7941
|
-
)
|
|
7541
|
+
children: /* @__PURE__ */ jsx(ChevronLeftIcon, { "aria-hidden": true, style: { fontSize: 16 } })
|
|
7942
7542
|
}
|
|
7943
7543
|
),
|
|
7944
7544
|
/* @__PURE__ */ jsx(
|
|
@@ -7948,20 +7548,7 @@ function Carousel({
|
|
|
7948
7548
|
"aria-label": "Nast\u0119pny slajd",
|
|
7949
7549
|
onClick: next,
|
|
7950
7550
|
disabled: !loop && index === count - 1,
|
|
7951
|
-
children: /* @__PURE__ */ jsx(
|
|
7952
|
-
"svg",
|
|
7953
|
-
{
|
|
7954
|
-
width: "16",
|
|
7955
|
-
height: "16",
|
|
7956
|
-
viewBox: "0 0 24 24",
|
|
7957
|
-
fill: "none",
|
|
7958
|
-
stroke: "currentColor",
|
|
7959
|
-
strokeWidth: 2.5,
|
|
7960
|
-
strokeLinecap: "round",
|
|
7961
|
-
strokeLinejoin: "round",
|
|
7962
|
-
children: /* @__PURE__ */ jsx("polyline", { points: "9 18 15 12 9 6" })
|
|
7963
|
-
}
|
|
7964
|
-
)
|
|
7551
|
+
children: /* @__PURE__ */ jsx(ChevronRightIcon, { "aria-hidden": true, style: { fontSize: 16 } })
|
|
7965
7552
|
}
|
|
7966
7553
|
)
|
|
7967
7554
|
] })
|
|
@@ -8043,8 +7630,8 @@ function VideoPlayer({
|
|
|
8043
7630
|
}
|
|
8044
7631
|
) }) });
|
|
8045
7632
|
}
|
|
8046
|
-
var fadeIn = keyframes`from { opacity: 0; } to { opacity: 1; }`;
|
|
8047
|
-
var zoomIn = keyframes`from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); }`;
|
|
7633
|
+
var fadeIn = keyframes$1`from { opacity: 0; } to { opacity: 1; }`;
|
|
7634
|
+
var zoomIn = keyframes$1`from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); }`;
|
|
8048
7635
|
var Grid = styled("div", {
|
|
8049
7636
|
shouldForwardProp: (prop) => !["$columns", "$gap"].includes(prop)
|
|
8050
7637
|
})(({ $columns, $gap }) => ({
|
|
@@ -8233,22 +7820,7 @@ function Lightbox({ images, columns = 3, gap = 8, className }) {
|
|
|
8233
7820
|
" / ",
|
|
8234
7821
|
count
|
|
8235
7822
|
] }),
|
|
8236
|
-
/* @__PURE__ */ jsx(CloseButton, { "aria-label": "Zamknij", onClick: close, children: /* @__PURE__ */
|
|
8237
|
-
"svg",
|
|
8238
|
-
{
|
|
8239
|
-
width: "18",
|
|
8240
|
-
height: "18",
|
|
8241
|
-
viewBox: "0 0 24 24",
|
|
8242
|
-
fill: "none",
|
|
8243
|
-
stroke: "currentColor",
|
|
8244
|
-
strokeWidth: 2.5,
|
|
8245
|
-
strokeLinecap: "round",
|
|
8246
|
-
children: [
|
|
8247
|
-
/* @__PURE__ */ jsx("line", { x1: "18", y1: "6", x2: "6", y2: "18" }),
|
|
8248
|
-
/* @__PURE__ */ jsx("line", { x1: "6", y1: "6", x2: "18", y2: "18" })
|
|
8249
|
-
]
|
|
8250
|
-
}
|
|
8251
|
-
) }),
|
|
7823
|
+
/* @__PURE__ */ jsx(CloseButton, { "aria-label": "Zamknij", onClick: close, children: /* @__PURE__ */ jsx(CloseIcon, { "aria-hidden": true, style: { fontSize: 18 } }) }),
|
|
8252
7824
|
/* @__PURE__ */ jsx(
|
|
8253
7825
|
LightboxImage,
|
|
8254
7826
|
{
|
|
@@ -8269,20 +7841,7 @@ function Lightbox({ images, columns = 3, gap = 8, className }) {
|
|
|
8269
7841
|
e.stopPropagation();
|
|
8270
7842
|
prev();
|
|
8271
7843
|
},
|
|
8272
|
-
children: /* @__PURE__ */ jsx(
|
|
8273
|
-
"svg",
|
|
8274
|
-
{
|
|
8275
|
-
width: "20",
|
|
8276
|
-
height: "20",
|
|
8277
|
-
viewBox: "0 0 24 24",
|
|
8278
|
-
fill: "none",
|
|
8279
|
-
stroke: "currentColor",
|
|
8280
|
-
strokeWidth: 2.5,
|
|
8281
|
-
strokeLinecap: "round",
|
|
8282
|
-
strokeLinejoin: "round",
|
|
8283
|
-
children: /* @__PURE__ */ jsx("polyline", { points: "15 18 9 12 15 6" })
|
|
8284
|
-
}
|
|
8285
|
-
)
|
|
7844
|
+
children: /* @__PURE__ */ jsx(ChevronLeftIcon, { "aria-hidden": true, style: { fontSize: 20 } })
|
|
8286
7845
|
}
|
|
8287
7846
|
),
|
|
8288
7847
|
/* @__PURE__ */ jsx(
|
|
@@ -8294,20 +7853,7 @@ function Lightbox({ images, columns = 3, gap = 8, className }) {
|
|
|
8294
7853
|
e.stopPropagation();
|
|
8295
7854
|
next();
|
|
8296
7855
|
},
|
|
8297
|
-
children: /* @__PURE__ */ jsx(
|
|
8298
|
-
"svg",
|
|
8299
|
-
{
|
|
8300
|
-
width: "20",
|
|
8301
|
-
height: "20",
|
|
8302
|
-
viewBox: "0 0 24 24",
|
|
8303
|
-
fill: "none",
|
|
8304
|
-
stroke: "currentColor",
|
|
8305
|
-
strokeWidth: 2.5,
|
|
8306
|
-
strokeLinecap: "round",
|
|
8307
|
-
strokeLinejoin: "round",
|
|
8308
|
-
children: /* @__PURE__ */ jsx("polyline", { points: "9 18 15 12 9 6" })
|
|
8309
|
-
}
|
|
8310
|
-
)
|
|
7856
|
+
children: /* @__PURE__ */ jsx(ChevronRightIcon, { "aria-hidden": true, style: { fontSize: 20 } })
|
|
8311
7857
|
}
|
|
8312
7858
|
)
|
|
8313
7859
|
] })
|
|
@@ -8462,72 +8008,10 @@ function buildPageItems(currentPage, totalPages, siblingCount) {
|
|
|
8462
8008
|
);
|
|
8463
8009
|
return [1, DOTS, ...middleRange, DOTS, totalPages];
|
|
8464
8010
|
}
|
|
8465
|
-
var ChevronLeft = () => /* @__PURE__ */ jsx(
|
|
8466
|
-
|
|
8467
|
-
|
|
8468
|
-
|
|
8469
|
-
height: "1em",
|
|
8470
|
-
viewBox: "0 0 24 24",
|
|
8471
|
-
fill: "none",
|
|
8472
|
-
stroke: "currentColor",
|
|
8473
|
-
strokeWidth: "2",
|
|
8474
|
-
strokeLinecap: "round",
|
|
8475
|
-
strokeLinejoin: "round",
|
|
8476
|
-
"aria-hidden": "true",
|
|
8477
|
-
children: /* @__PURE__ */ jsx("polyline", { points: "15 18 9 12 15 6" })
|
|
8478
|
-
}
|
|
8479
|
-
);
|
|
8480
|
-
var ChevronRight = () => /* @__PURE__ */ jsx(
|
|
8481
|
-
"svg",
|
|
8482
|
-
{
|
|
8483
|
-
width: "1em",
|
|
8484
|
-
height: "1em",
|
|
8485
|
-
viewBox: "0 0 24 24",
|
|
8486
|
-
fill: "none",
|
|
8487
|
-
stroke: "currentColor",
|
|
8488
|
-
strokeWidth: "2",
|
|
8489
|
-
strokeLinecap: "round",
|
|
8490
|
-
strokeLinejoin: "round",
|
|
8491
|
-
"aria-hidden": "true",
|
|
8492
|
-
children: /* @__PURE__ */ jsx("polyline", { points: "9 18 15 12 9 6" })
|
|
8493
|
-
}
|
|
8494
|
-
);
|
|
8495
|
-
var ChevronsLeft = () => /* @__PURE__ */ jsxs(
|
|
8496
|
-
"svg",
|
|
8497
|
-
{
|
|
8498
|
-
width: "1em",
|
|
8499
|
-
height: "1em",
|
|
8500
|
-
viewBox: "0 0 24 24",
|
|
8501
|
-
fill: "none",
|
|
8502
|
-
stroke: "currentColor",
|
|
8503
|
-
strokeWidth: "2",
|
|
8504
|
-
strokeLinecap: "round",
|
|
8505
|
-
strokeLinejoin: "round",
|
|
8506
|
-
"aria-hidden": "true",
|
|
8507
|
-
children: [
|
|
8508
|
-
/* @__PURE__ */ jsx("polyline", { points: "11 17 6 12 11 7" }),
|
|
8509
|
-
/* @__PURE__ */ jsx("polyline", { points: "18 17 13 12 18 7" })
|
|
8510
|
-
]
|
|
8511
|
-
}
|
|
8512
|
-
);
|
|
8513
|
-
var ChevronsRight = () => /* @__PURE__ */ jsxs(
|
|
8514
|
-
"svg",
|
|
8515
|
-
{
|
|
8516
|
-
width: "1em",
|
|
8517
|
-
height: "1em",
|
|
8518
|
-
viewBox: "0 0 24 24",
|
|
8519
|
-
fill: "none",
|
|
8520
|
-
stroke: "currentColor",
|
|
8521
|
-
strokeWidth: "2",
|
|
8522
|
-
strokeLinecap: "round",
|
|
8523
|
-
strokeLinejoin: "round",
|
|
8524
|
-
"aria-hidden": "true",
|
|
8525
|
-
children: [
|
|
8526
|
-
/* @__PURE__ */ jsx("polyline", { points: "13 17 18 12 13 7" }),
|
|
8527
|
-
/* @__PURE__ */ jsx("polyline", { points: "6 17 11 12 6 7" })
|
|
8528
|
-
]
|
|
8529
|
-
}
|
|
8530
|
-
);
|
|
8011
|
+
var ChevronLeft = () => /* @__PURE__ */ jsx(ChevronLeftIcon, { "aria-hidden": "true", sx: { fontSize: "1em" } });
|
|
8012
|
+
var ChevronRight = () => /* @__PURE__ */ jsx(ChevronRightIcon, { "aria-hidden": "true", sx: { fontSize: "1em" } });
|
|
8013
|
+
var ChevronsLeft = () => /* @__PURE__ */ jsx(KeyboardDoubleArrowLeftIcon, { "aria-hidden": "true", sx: { fontSize: "1em" } });
|
|
8014
|
+
var ChevronsRight = () => /* @__PURE__ */ jsx(KeyboardDoubleArrowRightIcon, { "aria-hidden": "true", sx: { fontSize: "1em" } });
|
|
8531
8015
|
var PaginationBar = ({
|
|
8532
8016
|
currentPage,
|
|
8533
8017
|
totalPages,
|
|
@@ -8658,7 +8142,7 @@ var Trigger3 = styled("button", {
|
|
|
8658
8142
|
outlineOffset: "-2px"
|
|
8659
8143
|
}
|
|
8660
8144
|
}));
|
|
8661
|
-
var ChevronIcon3 = styled(
|
|
8145
|
+
var ChevronIcon3 = styled(ExpandMoreIcon, {
|
|
8662
8146
|
shouldForwardProp: (p) => p !== "$open"
|
|
8663
8147
|
})(({ $open }) => ({
|
|
8664
8148
|
width: "1.125rem",
|
|
@@ -8726,18 +8210,7 @@ var Accordion = forwardRef(
|
|
|
8726
8210
|
onClick: () => toggle(item.key, item.disabled),
|
|
8727
8211
|
children: [
|
|
8728
8212
|
item.header,
|
|
8729
|
-
/* @__PURE__ */ jsx(
|
|
8730
|
-
ChevronIcon3,
|
|
8731
|
-
{
|
|
8732
|
-
$open: isOpen,
|
|
8733
|
-
viewBox: "0 0 24 24",
|
|
8734
|
-
fill: "none",
|
|
8735
|
-
stroke: "currentColor",
|
|
8736
|
-
strokeWidth: 2,
|
|
8737
|
-
"aria-hidden": "true",
|
|
8738
|
-
children: /* @__PURE__ */ jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M19 9l-7 7-7-7" })
|
|
8739
|
-
}
|
|
8740
|
-
)
|
|
8213
|
+
/* @__PURE__ */ jsx(ChevronIcon3, { $open: isOpen, "aria-hidden": "true" })
|
|
8741
8214
|
]
|
|
8742
8215
|
}
|
|
8743
8216
|
),
|
|
@@ -8748,8 +8221,8 @@ var Accordion = forwardRef(
|
|
|
8748
8221
|
);
|
|
8749
8222
|
Accordion.displayName = "Accordion";
|
|
8750
8223
|
var accordionVariants = ["default", "bordered", "separated"];
|
|
8751
|
-
var fadeIn2 = keyframes`from{opacity:0;transform:translateY(0.5rem)}to{opacity:1;transform:translateY(0)}`;
|
|
8752
|
-
var fadeOut = keyframes`from{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(0.5rem)}`;
|
|
8224
|
+
var fadeIn2 = keyframes$1`from{opacity:0;transform:translateY(0.5rem)}to{opacity:1;transform:translateY(0)}`;
|
|
8225
|
+
var fadeOut = keyframes$1`from{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(0.5rem)}`;
|
|
8753
8226
|
var POSITION_MAP = {
|
|
8754
8227
|
"bottom-right": { right: "1.5rem", bottom: "1.5rem" },
|
|
8755
8228
|
"bottom-left": { left: "1.5rem", bottom: "1.5rem" },
|
|
@@ -8833,21 +8306,7 @@ function BackToTop({
|
|
|
8833
8306
|
$visible: visible,
|
|
8834
8307
|
$position: position,
|
|
8835
8308
|
onClick: scrollToTop,
|
|
8836
|
-
children: /* @__PURE__ */ jsx(
|
|
8837
|
-
"svg",
|
|
8838
|
-
{
|
|
8839
|
-
width: "18",
|
|
8840
|
-
height: "18",
|
|
8841
|
-
viewBox: "0 0 24 24",
|
|
8842
|
-
fill: "none",
|
|
8843
|
-
stroke: "currentColor",
|
|
8844
|
-
strokeWidth: 2.5,
|
|
8845
|
-
strokeLinecap: "round",
|
|
8846
|
-
strokeLinejoin: "round",
|
|
8847
|
-
"aria-hidden": "true",
|
|
8848
|
-
children: /* @__PURE__ */ jsx("polyline", { points: "18 15 12 9 6 15" })
|
|
8849
|
-
}
|
|
8850
|
-
)
|
|
8309
|
+
children: /* @__PURE__ */ jsx(KeyboardArrowUpIcon, { "aria-hidden": "true", style: { fontSize: 18 } })
|
|
8851
8310
|
}
|
|
8852
8311
|
);
|
|
8853
8312
|
}
|
|
@@ -9132,11 +8591,11 @@ var List3 = forwardRef(
|
|
|
9132
8591
|
List3.displayName = "List";
|
|
9133
8592
|
var listVariants = ["default", "bordered", "separated"];
|
|
9134
8593
|
var listSizes = ["sm", "md", "lg"];
|
|
9135
|
-
var scrollLeft = keyframes
|
|
8594
|
+
var scrollLeft = keyframes`
|
|
9136
8595
|
from { transform: translateX(0); }
|
|
9137
8596
|
to { transform: translateX(-50%); }
|
|
9138
8597
|
`;
|
|
9139
|
-
var scrollRight = keyframes
|
|
8598
|
+
var scrollRight = keyframes`
|
|
9140
8599
|
from { transform: translateX(-50%); }
|
|
9141
8600
|
to { transform: translateX(0); }
|
|
9142
8601
|
`;
|
|
@@ -9182,8 +8641,8 @@ var Marquee = forwardRef(
|
|
|
9182
8641
|
Marquee.displayName = "Marquee";
|
|
9183
8642
|
var marqueeDirections = ["left", "right"];
|
|
9184
8643
|
var marqueeSpeeds = ["slow", "normal", "fast"];
|
|
9185
|
-
var fadeIn3 = keyframes`from { opacity: 0; } to { opacity: 1; }`;
|
|
9186
|
-
var slideUp = keyframes`from { opacity: 0; transform: translateY(1rem) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); }`;
|
|
8644
|
+
var fadeIn3 = keyframes$1`from { opacity: 0; } to { opacity: 1; }`;
|
|
8645
|
+
var slideUp = keyframes$1`from { opacity: 0; transform: translateY(1rem) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); }`;
|
|
9187
8646
|
var SIZE_MAP2 = {
|
|
9188
8647
|
sm: "24rem",
|
|
9189
8648
|
md: "32rem",
|
|
@@ -9321,22 +8780,7 @@ function Modal({
|
|
|
9321
8780
|
children: [
|
|
9322
8781
|
(title || !hideCloseButton) && /* @__PURE__ */ jsxs(Header, { children: [
|
|
9323
8782
|
title ? /* @__PURE__ */ jsx(Title5, { id: "modal-title", children: title }) : /* @__PURE__ */ jsx("span", {}),
|
|
9324
|
-
!hideCloseButton && /* @__PURE__ */ jsx(CloseButton2, { "aria-label": "Zamknij", onClick: onClose, children: /* @__PURE__ */
|
|
9325
|
-
"svg",
|
|
9326
|
-
{
|
|
9327
|
-
width: "16",
|
|
9328
|
-
height: "16",
|
|
9329
|
-
viewBox: "0 0 24 24",
|
|
9330
|
-
fill: "none",
|
|
9331
|
-
stroke: "currentColor",
|
|
9332
|
-
strokeWidth: 2,
|
|
9333
|
-
strokeLinecap: "round",
|
|
9334
|
-
children: [
|
|
9335
|
-
/* @__PURE__ */ jsx("line", { x1: "18", y1: "6", x2: "6", y2: "18" }),
|
|
9336
|
-
/* @__PURE__ */ jsx("line", { x1: "6", y1: "6", x2: "18", y2: "18" })
|
|
9337
|
-
]
|
|
9338
|
-
}
|
|
9339
|
-
) })
|
|
8783
|
+
!hideCloseButton && /* @__PURE__ */ jsx(CloseButton2, { "aria-label": "Zamknij", onClick: onClose, children: /* @__PURE__ */ jsx(CloseIcon, { "aria-hidden": true, style: { fontSize: 16 } }) })
|
|
9340
8784
|
] }),
|
|
9341
8785
|
children && /* @__PURE__ */ jsx(Body, { children }),
|
|
9342
8786
|
footer && /* @__PURE__ */ jsx(Footer3, { children: footer })
|
|
@@ -10205,16 +9649,7 @@ var Connector = styled("div")(({ theme }) => ({
|
|
|
10205
9649
|
}
|
|
10206
9650
|
}));
|
|
10207
9651
|
function ArrowIcon() {
|
|
10208
|
-
return /* @__PURE__ */ jsx(
|
|
10209
|
-
"path",
|
|
10210
|
-
{
|
|
10211
|
-
d: "M5 12h14M13 6l6 6-6 6",
|
|
10212
|
-
stroke: "currentColor",
|
|
10213
|
-
strokeWidth: "1.5",
|
|
10214
|
-
strokeLinecap: "round",
|
|
10215
|
-
strokeLinejoin: "round"
|
|
10216
|
-
}
|
|
10217
|
-
) });
|
|
9652
|
+
return /* @__PURE__ */ jsx(ArrowForwardIcon, { "aria-hidden": "true", style: { fontSize: 24 } });
|
|
10218
9653
|
}
|
|
10219
9654
|
function ProcessSection({ title, description, steps, ...props }) {
|
|
10220
9655
|
return /* @__PURE__ */ jsx(Section3, { ...props, children: /* @__PURE__ */ jsxs(Inner2, { children: [
|
|
@@ -10359,11 +9794,11 @@ var TestimonialsSection = forwardRef(
|
|
|
10359
9794
|
);
|
|
10360
9795
|
TestimonialsSection.displayName = "TestimonialsSection";
|
|
10361
9796
|
var testimonialsSectionColumns = [1, 2, 3];
|
|
10362
|
-
var fadeIn4 = keyframes`
|
|
9797
|
+
var fadeIn4 = keyframes$1`
|
|
10363
9798
|
from { opacity: 0; }
|
|
10364
9799
|
to { opacity: 1; }
|
|
10365
9800
|
`;
|
|
10366
|
-
var slideDown = keyframes`
|
|
9801
|
+
var slideDown = keyframes$1`
|
|
10367
9802
|
from { opacity: 0; transform: translateY(-8px) scale(0.98); }
|
|
10368
9803
|
to { opacity: 1; transform: translateY(0) scale(1); }
|
|
10369
9804
|
`;
|
|
@@ -10398,7 +9833,7 @@ var SearchRow = styled("div")(({ theme }) => ({
|
|
|
10398
9833
|
borderBottom: `1px solid ${theme.palette.divider}`,
|
|
10399
9834
|
flexShrink: 0
|
|
10400
9835
|
}));
|
|
10401
|
-
var
|
|
9836
|
+
var SearchIconWrap = styled("div")(({ theme }) => ({
|
|
10402
9837
|
flexShrink: 0,
|
|
10403
9838
|
color: theme.palette.text.secondary,
|
|
10404
9839
|
display: "flex"
|
|
@@ -10614,23 +10049,7 @@ function CommandPalette({
|
|
|
10614
10049
|
"aria-describedby": `${id}-hint`,
|
|
10615
10050
|
children: [
|
|
10616
10051
|
/* @__PURE__ */ jsxs(SearchRow, { children: [
|
|
10617
|
-
/* @__PURE__ */ jsx(
|
|
10618
|
-
"svg",
|
|
10619
|
-
{
|
|
10620
|
-
width: "18",
|
|
10621
|
-
height: "18",
|
|
10622
|
-
viewBox: "0 0 24 24",
|
|
10623
|
-
fill: "none",
|
|
10624
|
-
stroke: "currentColor",
|
|
10625
|
-
strokeWidth: "2",
|
|
10626
|
-
strokeLinecap: "round",
|
|
10627
|
-
strokeLinejoin: "round",
|
|
10628
|
-
children: [
|
|
10629
|
-
/* @__PURE__ */ jsx("circle", { cx: "11", cy: "11", r: "8" }),
|
|
10630
|
-
/* @__PURE__ */ jsx("line", { x1: "21", y1: "21", x2: "16.65", y2: "16.65" })
|
|
10631
|
-
]
|
|
10632
|
-
}
|
|
10633
|
-
) }),
|
|
10052
|
+
/* @__PURE__ */ jsx(SearchIconWrap, { "aria-hidden": "true", children: /* @__PURE__ */ jsx(SearchMuiIcon, { style: { fontSize: 18 } }) }),
|
|
10634
10053
|
/* @__PURE__ */ jsx(
|
|
10635
10054
|
SearchInput3,
|
|
10636
10055
|
{
|
|
@@ -10721,7 +10140,7 @@ var DEFAULT_CATEGORIES = [
|
|
|
10721
10140
|
defaultEnabled: false
|
|
10722
10141
|
}
|
|
10723
10142
|
];
|
|
10724
|
-
var slideUp2 = keyframes`
|
|
10143
|
+
var slideUp2 = keyframes$1`
|
|
10725
10144
|
from { opacity: 0; transform: translateY(100%); }
|
|
10726
10145
|
to { opacity: 1; transform: translateY(0); }
|
|
10727
10146
|
`;
|
|
@@ -11243,69 +10662,7 @@ var MobileNavLink = styled("a", {
|
|
|
11243
10662
|
}
|
|
11244
10663
|
}));
|
|
11245
10664
|
function HamburgerIcon({ open }) {
|
|
11246
|
-
return /* @__PURE__ */ jsx(
|
|
11247
|
-
/* @__PURE__ */ jsx(
|
|
11248
|
-
"line",
|
|
11249
|
-
{
|
|
11250
|
-
x1: "4",
|
|
11251
|
-
y1: "4",
|
|
11252
|
-
x2: "20",
|
|
11253
|
-
y2: "20",
|
|
11254
|
-
stroke: "currentColor",
|
|
11255
|
-
strokeWidth: "2",
|
|
11256
|
-
strokeLinecap: "round"
|
|
11257
|
-
}
|
|
11258
|
-
),
|
|
11259
|
-
/* @__PURE__ */ jsx(
|
|
11260
|
-
"line",
|
|
11261
|
-
{
|
|
11262
|
-
x1: "20",
|
|
11263
|
-
y1: "4",
|
|
11264
|
-
x2: "4",
|
|
11265
|
-
y2: "20",
|
|
11266
|
-
stroke: "currentColor",
|
|
11267
|
-
strokeWidth: "2",
|
|
11268
|
-
strokeLinecap: "round"
|
|
11269
|
-
}
|
|
11270
|
-
)
|
|
11271
|
-
] }) : /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
11272
|
-
/* @__PURE__ */ jsx(
|
|
11273
|
-
"line",
|
|
11274
|
-
{
|
|
11275
|
-
x1: "4",
|
|
11276
|
-
y1: "7",
|
|
11277
|
-
x2: "20",
|
|
11278
|
-
y2: "7",
|
|
11279
|
-
stroke: "currentColor",
|
|
11280
|
-
strokeWidth: "2",
|
|
11281
|
-
strokeLinecap: "round"
|
|
11282
|
-
}
|
|
11283
|
-
),
|
|
11284
|
-
/* @__PURE__ */ jsx(
|
|
11285
|
-
"line",
|
|
11286
|
-
{
|
|
11287
|
-
x1: "4",
|
|
11288
|
-
y1: "12",
|
|
11289
|
-
x2: "20",
|
|
11290
|
-
y2: "12",
|
|
11291
|
-
stroke: "currentColor",
|
|
11292
|
-
strokeWidth: "2",
|
|
11293
|
-
strokeLinecap: "round"
|
|
11294
|
-
}
|
|
11295
|
-
),
|
|
11296
|
-
/* @__PURE__ */ jsx(
|
|
11297
|
-
"line",
|
|
11298
|
-
{
|
|
11299
|
-
x1: "4",
|
|
11300
|
-
y1: "17",
|
|
11301
|
-
x2: "20",
|
|
11302
|
-
y2: "17",
|
|
11303
|
-
stroke: "currentColor",
|
|
11304
|
-
strokeWidth: "2",
|
|
11305
|
-
strokeLinecap: "round"
|
|
11306
|
-
}
|
|
11307
|
-
)
|
|
11308
|
-
] }) });
|
|
10665
|
+
return open ? /* @__PURE__ */ jsx(CloseIcon, { "aria-hidden": "true", style: { fontSize: 24 } }) : /* @__PURE__ */ jsx(MenuIcon, { "aria-hidden": "true", style: { fontSize: 24 } });
|
|
11309
10666
|
}
|
|
11310
10667
|
function Navbar({
|
|
11311
10668
|
logo,
|