@octavius2929-personal/design-system 1.3.0 → 1.4.0
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 +1052 -905
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +29 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +24 -1
- package/dist/index.d.ts +24 -1
- package/dist/index.js +1034 -888
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -117,6 +117,7 @@ __export(index_exports, {
|
|
|
117
117
|
PrinterIcon: () => PrinterIcon,
|
|
118
118
|
Progress: () => Progress,
|
|
119
119
|
Radio: () => Radio,
|
|
120
|
+
RadioGroup: () => RadioGroup,
|
|
120
121
|
RedoIcon: () => RedoIcon,
|
|
121
122
|
RefreshCwIcon: () => RefreshCwIcon,
|
|
122
123
|
SaveIcon: () => SaveIcon,
|
|
@@ -965,7 +966,7 @@ var vertical = "use-styles_vertical__1n7v7yj2";
|
|
|
965
966
|
// src/components/divider/use-styles.ts
|
|
966
967
|
function useStyles5({ vertical: vertical2, hasLabel }) {
|
|
967
968
|
const { themeClass } = useTheme();
|
|
968
|
-
const
|
|
969
|
+
const root25 = (0, import_react14.useMemo)(
|
|
969
970
|
() => [
|
|
970
971
|
themeClass,
|
|
971
972
|
root2,
|
|
@@ -973,23 +974,23 @@ function useStyles5({ vertical: vertical2, hasLabel }) {
|
|
|
973
974
|
].filter(Boolean).join(" "),
|
|
974
975
|
[themeClass, vertical2, hasLabel]
|
|
975
976
|
);
|
|
976
|
-
return { root:
|
|
977
|
+
return { root: root25, line, label };
|
|
977
978
|
}
|
|
978
979
|
|
|
979
980
|
// src/components/divider/index.tsx
|
|
980
981
|
var import_jsx_runtime7 = require("react/jsx-runtime");
|
|
981
|
-
var Divider = (0, import_react15.forwardRef)(function Divider2({ vertical: vertical2, label:
|
|
982
|
-
const hasLabel =
|
|
983
|
-
const { root:
|
|
982
|
+
var Divider = (0, import_react15.forwardRef)(function Divider2({ vertical: vertical2, label: label8, testId, ...rest }, ref) {
|
|
983
|
+
const hasLabel = label8 != null;
|
|
984
|
+
const { root: root25, line: line2, label: labelClass } = useStyles5({ vertical: vertical2, hasLabel });
|
|
984
985
|
const { testId: dataTestId, slot } = useTestId("layout", testId);
|
|
985
986
|
if (hasLabel) {
|
|
986
|
-
return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { ref, role: "separator", className:
|
|
987
|
+
return /* @__PURE__ */ (0, import_jsx_runtime7.jsxs)("div", { ref, role: "separator", className: root25, "data-testid": dataTestId, ...rest, children: [
|
|
987
988
|
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: line2 }),
|
|
988
|
-
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: labelClass, "data-testid": slot("label"), children:
|
|
989
|
+
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: labelClass, "data-testid": slot("label"), children: label8 }),
|
|
989
990
|
/* @__PURE__ */ (0, import_jsx_runtime7.jsx)("span", { className: line2 })
|
|
990
991
|
] });
|
|
991
992
|
}
|
|
992
|
-
return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { ref, role: "separator", className:
|
|
993
|
+
return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)("div", { ref, role: "separator", className: root25, "data-testid": dataTestId, ...rest });
|
|
993
994
|
});
|
|
994
995
|
|
|
995
996
|
// src/components/avatar/index.tsx
|
|
@@ -1010,7 +1011,7 @@ function useStyles6({
|
|
|
1010
1011
|
className
|
|
1011
1012
|
}) {
|
|
1012
1013
|
const { themeClass } = useTheme();
|
|
1013
|
-
const
|
|
1014
|
+
const root25 = (0, import_react16.useMemo)(
|
|
1014
1015
|
() => [
|
|
1015
1016
|
themeClass,
|
|
1016
1017
|
root3,
|
|
@@ -1020,15 +1021,15 @@ function useStyles6({
|
|
|
1020
1021
|
].filter(Boolean).join(" "),
|
|
1021
1022
|
[themeClass, size3, filled, className]
|
|
1022
1023
|
);
|
|
1023
|
-
return { root:
|
|
1024
|
+
return { root: root25 };
|
|
1024
1025
|
}
|
|
1025
1026
|
|
|
1026
1027
|
// src/components/avatar/index.tsx
|
|
1027
1028
|
var import_jsx_runtime8 = require("react/jsx-runtime");
|
|
1028
1029
|
var Avatar = (0, import_react17.forwardRef)(function Avatar2({ size: size3, filled, className, children, testId, ...rest }, ref) {
|
|
1029
|
-
const { root:
|
|
1030
|
+
const { root: root25 } = useStyles6({ size: size3, filled, className });
|
|
1030
1031
|
const { testId: dataTestId } = useTestId("media", testId);
|
|
1031
|
-
return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { ref, className:
|
|
1032
|
+
return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { ref, className: root25, "data-testid": dataTestId, ...rest, children });
|
|
1032
1033
|
});
|
|
1033
1034
|
|
|
1034
1035
|
// src/components/badge/index.tsx
|
|
@@ -1048,20 +1049,20 @@ function useStyles7({
|
|
|
1048
1049
|
className
|
|
1049
1050
|
}) {
|
|
1050
1051
|
const { themeClass } = useTheme();
|
|
1051
|
-
const
|
|
1052
|
+
const root25 = (0, import_react18.useMemo)(
|
|
1052
1053
|
() => [themeClass, root4, className].filter(Boolean).join(" "),
|
|
1053
1054
|
[themeClass, className]
|
|
1054
1055
|
);
|
|
1055
1056
|
const dot3 = (0, import_react18.useMemo)(() => [dot, tone2[tone4]].join(" "), [tone4]);
|
|
1056
|
-
return { root:
|
|
1057
|
+
return { root: root25, dot: dot3 };
|
|
1057
1058
|
}
|
|
1058
1059
|
|
|
1059
1060
|
// src/components/badge/index.tsx
|
|
1060
1061
|
var import_jsx_runtime9 = require("react/jsx-runtime");
|
|
1061
1062
|
var Badge = (0, import_react19.forwardRef)(function Badge2({ count, tone: tone4, className, children, testId, ...rest }, ref) {
|
|
1062
|
-
const { root:
|
|
1063
|
+
const { root: root25, dot: dot3 } = useStyles7({ tone: tone4, className });
|
|
1063
1064
|
const { testId: dataTestId, slot } = useTestId("media", testId);
|
|
1064
|
-
return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("span", { ref, className:
|
|
1065
|
+
return /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)("span", { ref, className: root25, "data-testid": dataTestId, ...rest, children: [
|
|
1065
1066
|
children,
|
|
1066
1067
|
count != null && /* @__PURE__ */ (0, import_jsx_runtime9.jsx)("span", { className: dot3, "data-testid": slot("dot"), children: count })
|
|
1067
1068
|
] });
|
|
@@ -1088,12 +1089,12 @@ function useStyles8({
|
|
|
1088
1089
|
const { themeClass } = useTheme();
|
|
1089
1090
|
const indeterminate2 = value === void 0;
|
|
1090
1091
|
return (0, import_react20.useMemo)(() => {
|
|
1091
|
-
const
|
|
1092
|
+
const root25 = (...classes) => [themeClass, ...classes, className].filter(Boolean).join(" ");
|
|
1092
1093
|
if (variant2 === "circular") {
|
|
1093
|
-
return { track: "", bar: "", spinner:
|
|
1094
|
+
return { track: "", bar: "", spinner: root25(spinner2) };
|
|
1094
1095
|
}
|
|
1095
1096
|
return {
|
|
1096
|
-
track:
|
|
1097
|
+
track: root25(track),
|
|
1097
1098
|
bar: [bar, indeterminate2 && indeterminate].filter(Boolean).join(" "),
|
|
1098
1099
|
spinner: ""
|
|
1099
1100
|
};
|
|
@@ -1192,7 +1193,7 @@ function useStyles9({
|
|
|
1192
1193
|
clickable: clickable2
|
|
1193
1194
|
}) {
|
|
1194
1195
|
const { themeClass } = useTheme();
|
|
1195
|
-
const
|
|
1196
|
+
const root25 = (0, import_react22.useMemo)(
|
|
1196
1197
|
() => [
|
|
1197
1198
|
themeClass,
|
|
1198
1199
|
root5,
|
|
@@ -1201,7 +1202,7 @@ function useStyles9({
|
|
|
1201
1202
|
].filter(Boolean).join(" "),
|
|
1202
1203
|
[themeClass, selected4, tone4, clickable2]
|
|
1203
1204
|
);
|
|
1204
|
-
return { root:
|
|
1205
|
+
return { root: root25, deleteBtn };
|
|
1205
1206
|
}
|
|
1206
1207
|
|
|
1207
1208
|
// src/components/chip/index.tsx
|
|
@@ -1209,7 +1210,7 @@ var import_jsx_runtime12 = require("react/jsx-runtime");
|
|
|
1209
1210
|
var ICON_SIZE2 = 13;
|
|
1210
1211
|
var Chip = (0, import_react23.forwardRef)(function Chip2({ selected: selected4, tone: tone4, onDelete, onClick, startIcon: StartIcon, children, testId, ...rest }, ref) {
|
|
1211
1212
|
const clickable2 = Boolean(onClick);
|
|
1212
|
-
const { root:
|
|
1213
|
+
const { root: root25, deleteBtn: deleteBtn2 } = useStyles9({ selected: selected4, tone: tone4, clickable: clickable2 });
|
|
1213
1214
|
const { testId: dataTestId, slot } = useTestId("media", testId);
|
|
1214
1215
|
const handleDelete = (event) => {
|
|
1215
1216
|
event.stopPropagation();
|
|
@@ -1219,7 +1220,7 @@ var Chip = (0, import_react23.forwardRef)(function Chip2({ selected: selected4,
|
|
|
1219
1220
|
"span",
|
|
1220
1221
|
{
|
|
1221
1222
|
ref,
|
|
1222
|
-
className:
|
|
1223
|
+
className: root25,
|
|
1223
1224
|
onClick,
|
|
1224
1225
|
"data-testid": dataTestId,
|
|
1225
1226
|
"data-state": states({ selected: selected4 }),
|
|
@@ -1280,29 +1281,29 @@ var input = "surfaces_srOnly__1qa7atn0";
|
|
|
1280
1281
|
var root6 = "use-styles_root__9zoga90";
|
|
1281
1282
|
|
|
1282
1283
|
// src/components/checkbox/use-styles.ts
|
|
1283
|
-
function useStyles10({ checked, disabled:
|
|
1284
|
+
function useStyles10({ checked, disabled: disabled4 }) {
|
|
1284
1285
|
const { themeClass } = useTheme();
|
|
1285
|
-
const
|
|
1286
|
-
() => [themeClass, root6,
|
|
1287
|
-
[themeClass,
|
|
1286
|
+
const root25 = (0, import_react24.useMemo)(
|
|
1287
|
+
() => [themeClass, root6, disabled4 && disabled].filter(Boolean).join(" "),
|
|
1288
|
+
[themeClass, disabled4]
|
|
1288
1289
|
);
|
|
1289
1290
|
const box2 = (0, import_react24.useMemo)(
|
|
1290
1291
|
() => [box, checked && boxChecked].filter(Boolean).join(" "),
|
|
1291
1292
|
[checked]
|
|
1292
1293
|
);
|
|
1293
|
-
return { root:
|
|
1294
|
+
return { root: root25, input, box: box2, check };
|
|
1294
1295
|
}
|
|
1295
1296
|
|
|
1296
1297
|
// src/components/checkbox/index.tsx
|
|
1297
1298
|
var import_jsx_runtime14 = require("react/jsx-runtime");
|
|
1298
|
-
var Checkbox = (0, import_react25.forwardRef)(function Checkbox2({ checked = false, onChange, label:
|
|
1299
|
-
const { root:
|
|
1299
|
+
var Checkbox = (0, import_react25.forwardRef)(function Checkbox2({ checked = false, onChange, label: label8, disabled: disabled4 = false, id, testId, ...rest }, ref) {
|
|
1300
|
+
const { root: root25, input: input6, box: box2, check: check2 } = useStyles10({ checked, disabled: disabled4 });
|
|
1300
1301
|
const { testId: dataTestId } = useTestId("toggle", testId);
|
|
1301
1302
|
const handleChange = (e) => {
|
|
1302
|
-
if (
|
|
1303
|
+
if (disabled4) return;
|
|
1303
1304
|
onChange?.(e.target.checked);
|
|
1304
1305
|
};
|
|
1305
|
-
return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("label", { className:
|
|
1306
|
+
return /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("label", { className: root25, "data-testid": dataTestId, "data-state": states({ checked, disabled: disabled4 }), children: [
|
|
1306
1307
|
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
1307
1308
|
"input",
|
|
1308
1309
|
{
|
|
@@ -1311,13 +1312,13 @@ var Checkbox = (0, import_react25.forwardRef)(function Checkbox2({ checked = fal
|
|
|
1311
1312
|
className: input6,
|
|
1312
1313
|
id,
|
|
1313
1314
|
checked,
|
|
1314
|
-
disabled:
|
|
1315
|
+
disabled: disabled4,
|
|
1315
1316
|
onChange: handleChange,
|
|
1316
1317
|
...rest
|
|
1317
1318
|
}
|
|
1318
1319
|
),
|
|
1319
1320
|
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)("span", { className: box2, children: checked && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(CheckIcon, { size: 12, className: check2 }) }),
|
|
1320
|
-
|
|
1321
|
+
label8
|
|
1321
1322
|
] });
|
|
1322
1323
|
});
|
|
1323
1324
|
|
|
@@ -1337,16 +1338,16 @@ var root7 = "use-styles_root__vy61b40";
|
|
|
1337
1338
|
|
|
1338
1339
|
// src/components/radio/use-styles.ts
|
|
1339
1340
|
function useStyles11({
|
|
1340
|
-
disabled:
|
|
1341
|
+
disabled: disabled4,
|
|
1341
1342
|
className
|
|
1342
1343
|
}) {
|
|
1343
1344
|
const { themeClass } = useTheme();
|
|
1344
|
-
const
|
|
1345
|
-
() => [themeClass, root7,
|
|
1346
|
-
[themeClass,
|
|
1345
|
+
const root25 = (0, import_react26.useMemo)(
|
|
1346
|
+
() => [themeClass, root7, disabled4 && disabled2, className].filter(Boolean).join(" "),
|
|
1347
|
+
[themeClass, disabled4, className]
|
|
1347
1348
|
);
|
|
1348
1349
|
return {
|
|
1349
|
-
root:
|
|
1350
|
+
root: root25,
|
|
1350
1351
|
input: input2,
|
|
1351
1352
|
circle,
|
|
1352
1353
|
dot: dot2,
|
|
@@ -1356,10 +1357,10 @@ function useStyles11({
|
|
|
1356
1357
|
|
|
1357
1358
|
// src/components/radio/index.tsx
|
|
1358
1359
|
var import_jsx_runtime15 = require("react/jsx-runtime");
|
|
1359
|
-
var Radio = (0, import_react27.forwardRef)(function Radio2({ checked, onChange, label:
|
|
1360
|
-
const { root:
|
|
1360
|
+
var Radio = (0, import_react27.forwardRef)(function Radio2({ checked, onChange, label: label8, name, value, disabled: disabled4, testId, ...rest }, ref) {
|
|
1361
|
+
const { root: root25, input: input6, circle: circle2, dot: dot3, label: labelClass } = useStyles11({ disabled: disabled4 });
|
|
1361
1362
|
const { testId: dataTestId } = useTestId("toggle", testId);
|
|
1362
|
-
return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("label", { className:
|
|
1363
|
+
return /* @__PURE__ */ (0, import_jsx_runtime15.jsxs)("label", { className: root25, "data-testid": dataTestId, "data-state": states({ checked, disabled: disabled4 }), children: [
|
|
1363
1364
|
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)(
|
|
1364
1365
|
"input",
|
|
1365
1366
|
{
|
|
@@ -1369,53 +1370,198 @@ var Radio = (0, import_react27.forwardRef)(function Radio2({ checked, onChange,
|
|
|
1369
1370
|
name,
|
|
1370
1371
|
value,
|
|
1371
1372
|
checked,
|
|
1372
|
-
disabled:
|
|
1373
|
+
disabled: disabled4,
|
|
1373
1374
|
onChange,
|
|
1374
1375
|
...rest
|
|
1375
1376
|
}
|
|
1376
1377
|
),
|
|
1377
1378
|
/* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: circle2, children: checked && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: dot3 }) }),
|
|
1378
|
-
|
|
1379
|
+
label8 != null && /* @__PURE__ */ (0, import_jsx_runtime15.jsx)("span", { className: labelClass, children: label8 })
|
|
1379
1380
|
] });
|
|
1380
1381
|
});
|
|
1381
1382
|
|
|
1382
|
-
// src/components/
|
|
1383
|
+
// src/components/radio-group/index.tsx
|
|
1383
1384
|
var import_react29 = require("react");
|
|
1384
1385
|
|
|
1385
|
-
// src/components/
|
|
1386
|
+
// src/components/radio-group/use-styles.ts
|
|
1386
1387
|
var import_react28 = require("react");
|
|
1387
1388
|
|
|
1389
|
+
// src/components/radio-group/use-styles.css.ts
|
|
1390
|
+
var disabled3 = "use-styles_disabled__nfghri4";
|
|
1391
|
+
var label3 = "use-styles_label__nfghri1";
|
|
1392
|
+
var list = "use-styles_list__nfghri2";
|
|
1393
|
+
var listHorizontal = "use-styles_listHorizontal__nfghri3";
|
|
1394
|
+
var root8 = "use-styles_root__nfghri0";
|
|
1395
|
+
|
|
1396
|
+
// src/components/radio-group/use-styles.ts
|
|
1397
|
+
function useStyles12({
|
|
1398
|
+
disabled: disabled4,
|
|
1399
|
+
orientation = "vertical"
|
|
1400
|
+
}) {
|
|
1401
|
+
const { themeClass } = useTheme();
|
|
1402
|
+
return (0, import_react28.useMemo)(() => {
|
|
1403
|
+
const root25 = [themeClass, root8, disabled4 && disabled3].filter(Boolean).join(" ");
|
|
1404
|
+
const list3 = [list, orientation === "horizontal" && listHorizontal].filter(Boolean).join(" ");
|
|
1405
|
+
return { root: root25, label: label3, list: list3 };
|
|
1406
|
+
}, [themeClass, disabled4, orientation]);
|
|
1407
|
+
}
|
|
1408
|
+
|
|
1409
|
+
// src/components/radio-group/index.tsx
|
|
1410
|
+
var import_jsx_runtime16 = require("react/jsx-runtime");
|
|
1411
|
+
var RadioGroup = (0, import_react29.forwardRef)(function RadioGroup2({
|
|
1412
|
+
options,
|
|
1413
|
+
value,
|
|
1414
|
+
onChange,
|
|
1415
|
+
name,
|
|
1416
|
+
label: label8,
|
|
1417
|
+
disabled: disabled4,
|
|
1418
|
+
orientation = "vertical",
|
|
1419
|
+
testId,
|
|
1420
|
+
"aria-label": ariaLabel,
|
|
1421
|
+
"aria-labelledby": ariaLabelledBy,
|
|
1422
|
+
...rest
|
|
1423
|
+
}, ref) {
|
|
1424
|
+
const { root: root25, label: labelClass, list: list3 } = useStyles12({ disabled: disabled4, orientation });
|
|
1425
|
+
const { testId: dataTestId } = useTestId("field", testId);
|
|
1426
|
+
const baseId = (0, import_react29.useId)();
|
|
1427
|
+
const labelId = `${baseId}-label`;
|
|
1428
|
+
const groupLabelledBy = [label8 ? labelId : null, ariaLabelledBy].filter(Boolean).join(" ") || void 0;
|
|
1429
|
+
const radioRefs = (0, import_react29.useRef)([]);
|
|
1430
|
+
const optionTestId = (index) => [testId, `option-${index}`].filter(Boolean).join("-");
|
|
1431
|
+
const selectedIndex = options.findIndex((option2) => option2.value === value);
|
|
1432
|
+
const isEnabled = (index) => !disabled4 && !options[index]?.disabled;
|
|
1433
|
+
const enabledIndexes = options.reduce((acc, _option, index) => {
|
|
1434
|
+
if (isEnabled(index)) acc.push(index);
|
|
1435
|
+
return acc;
|
|
1436
|
+
}, []);
|
|
1437
|
+
const firstEnabled = enabledIndexes[0];
|
|
1438
|
+
const lastEnabled = enabledIndexes[enabledIndexes.length - 1];
|
|
1439
|
+
const step2 = (from, delta) => {
|
|
1440
|
+
if (enabledIndexes.length === 0) return from;
|
|
1441
|
+
let index = from;
|
|
1442
|
+
for (let i = 0; i < options.length; i++) {
|
|
1443
|
+
index = (index + delta + options.length) % options.length;
|
|
1444
|
+
if (isEnabled(index)) return index;
|
|
1445
|
+
}
|
|
1446
|
+
return from;
|
|
1447
|
+
};
|
|
1448
|
+
const selectOption = (index) => {
|
|
1449
|
+
const option2 = options[index];
|
|
1450
|
+
if (!option2 || !isEnabled(index)) return;
|
|
1451
|
+
onChange?.(option2.value);
|
|
1452
|
+
radioRefs.current[index]?.focus();
|
|
1453
|
+
};
|
|
1454
|
+
const onKeyDown = (event, index) => {
|
|
1455
|
+
if (disabled4) return;
|
|
1456
|
+
switch (event.key) {
|
|
1457
|
+
case "ArrowRight":
|
|
1458
|
+
case "ArrowDown":
|
|
1459
|
+
event.preventDefault();
|
|
1460
|
+
selectOption(step2(index, 1));
|
|
1461
|
+
break;
|
|
1462
|
+
case "ArrowLeft":
|
|
1463
|
+
case "ArrowUp":
|
|
1464
|
+
event.preventDefault();
|
|
1465
|
+
selectOption(step2(index, -1));
|
|
1466
|
+
break;
|
|
1467
|
+
case "Home":
|
|
1468
|
+
if (firstEnabled !== void 0) {
|
|
1469
|
+
event.preventDefault();
|
|
1470
|
+
selectOption(firstEnabled);
|
|
1471
|
+
}
|
|
1472
|
+
break;
|
|
1473
|
+
case "End":
|
|
1474
|
+
if (lastEnabled !== void 0) {
|
|
1475
|
+
event.preventDefault();
|
|
1476
|
+
selectOption(lastEnabled);
|
|
1477
|
+
}
|
|
1478
|
+
break;
|
|
1479
|
+
default:
|
|
1480
|
+
break;
|
|
1481
|
+
}
|
|
1482
|
+
};
|
|
1483
|
+
return /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)(
|
|
1484
|
+
"div",
|
|
1485
|
+
{
|
|
1486
|
+
ref,
|
|
1487
|
+
role: "radiogroup",
|
|
1488
|
+
className: root25,
|
|
1489
|
+
"aria-label": ariaLabel,
|
|
1490
|
+
"aria-labelledby": groupLabelledBy,
|
|
1491
|
+
"aria-disabled": disabled4 || void 0,
|
|
1492
|
+
"data-testid": dataTestId,
|
|
1493
|
+
"data-state": states({ disabled: disabled4 }),
|
|
1494
|
+
...rest,
|
|
1495
|
+
children: [
|
|
1496
|
+
label8 != null && /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("span", { id: labelId, className: labelClass, children: label8 }),
|
|
1497
|
+
/* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: list3, children: options.map((option2, index) => {
|
|
1498
|
+
const checked = option2.value === value;
|
|
1499
|
+
const optionDisabled = Boolean(disabled4) || Boolean(option2.disabled);
|
|
1500
|
+
const tabbable = checked || selectedIndex === -1 && index === (firstEnabled ?? 0);
|
|
1501
|
+
return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
|
|
1502
|
+
Radio,
|
|
1503
|
+
{
|
|
1504
|
+
ref: (el) => {
|
|
1505
|
+
radioRefs.current[index] = el;
|
|
1506
|
+
},
|
|
1507
|
+
name,
|
|
1508
|
+
value: option2.value,
|
|
1509
|
+
label: option2.label,
|
|
1510
|
+
checked,
|
|
1511
|
+
disabled: optionDisabled,
|
|
1512
|
+
tabIndex: tabbable ? 0 : -1,
|
|
1513
|
+
onChange: () => {
|
|
1514
|
+
if (optionDisabled) return;
|
|
1515
|
+
onChange?.(option2.value);
|
|
1516
|
+
},
|
|
1517
|
+
onKeyDown: (event) => onKeyDown(event, index),
|
|
1518
|
+
testId: optionTestId(index)
|
|
1519
|
+
},
|
|
1520
|
+
option2.value
|
|
1521
|
+
);
|
|
1522
|
+
}) })
|
|
1523
|
+
]
|
|
1524
|
+
}
|
|
1525
|
+
);
|
|
1526
|
+
});
|
|
1527
|
+
|
|
1528
|
+
// src/components/switch/index.tsx
|
|
1529
|
+
var import_react31 = require("react");
|
|
1530
|
+
|
|
1531
|
+
// src/components/switch/use-styles.ts
|
|
1532
|
+
var import_react30 = require("react");
|
|
1533
|
+
|
|
1388
1534
|
// src/components/switch/use-styles.css.ts
|
|
1389
1535
|
var input3 = "surfaces_srOnly__1qa7atn0";
|
|
1390
1536
|
var knob = "use-styles_knob__1r6kem73";
|
|
1391
1537
|
var knobChecked = "use-styles_knobChecked__1r6kem74";
|
|
1392
|
-
var
|
|
1393
|
-
var
|
|
1538
|
+
var label4 = "use-styles_label__1r6kem75";
|
|
1539
|
+
var root9 = "use-styles_root__1r6kem70";
|
|
1394
1540
|
var track2 = "use-styles_track__1r6kem71";
|
|
1395
1541
|
var trackChecked = "use-styles_trackChecked__1r6kem72";
|
|
1396
1542
|
|
|
1397
1543
|
// src/components/switch/use-styles.ts
|
|
1398
|
-
function
|
|
1544
|
+
function useStyles13({ checked }) {
|
|
1399
1545
|
const { themeClass } = useTheme();
|
|
1400
|
-
return (0,
|
|
1546
|
+
return (0, import_react30.useMemo)(
|
|
1401
1547
|
() => ({
|
|
1402
|
-
root: [themeClass,
|
|
1548
|
+
root: [themeClass, root9].filter(Boolean).join(" "),
|
|
1403
1549
|
input: input3,
|
|
1404
1550
|
track: [track2, checked && trackChecked].filter(Boolean).join(" "),
|
|
1405
1551
|
knob: [knob, checked && knobChecked].filter(Boolean).join(" "),
|
|
1406
|
-
label:
|
|
1552
|
+
label: label4
|
|
1407
1553
|
}),
|
|
1408
1554
|
[themeClass, checked]
|
|
1409
1555
|
);
|
|
1410
1556
|
}
|
|
1411
1557
|
|
|
1412
1558
|
// src/components/switch/index.tsx
|
|
1413
|
-
var
|
|
1414
|
-
var Switch = (0,
|
|
1415
|
-
const { root:
|
|
1559
|
+
var import_jsx_runtime17 = require("react/jsx-runtime");
|
|
1560
|
+
var Switch = (0, import_react31.forwardRef)(function Switch2({ checked = false, onChange, label: label8, disabled: disabled4, testId, ...rest }, ref) {
|
|
1561
|
+
const { root: root25, input: input6, track: track4, knob: knob2, label: labelClass } = useStyles13({ checked });
|
|
1416
1562
|
const { testId: dataTestId } = useTestId("toggle", testId);
|
|
1417
|
-
return /* @__PURE__ */ (0,
|
|
1418
|
-
/* @__PURE__ */ (0,
|
|
1563
|
+
return /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("label", { className: root25, "data-testid": dataTestId, "data-state": states({ checked, disabled: disabled4 }), children: [
|
|
1564
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
|
|
1419
1565
|
"input",
|
|
1420
1566
|
{
|
|
1421
1567
|
ref,
|
|
@@ -1424,27 +1570,27 @@ var Switch = (0, import_react29.forwardRef)(function Switch2({ checked = false,
|
|
|
1424
1570
|
"aria-checked": checked,
|
|
1425
1571
|
className: input6,
|
|
1426
1572
|
checked,
|
|
1427
|
-
disabled:
|
|
1573
|
+
disabled: disabled4,
|
|
1428
1574
|
onChange: (event) => {
|
|
1429
|
-
if (
|
|
1575
|
+
if (disabled4) return;
|
|
1430
1576
|
onChange?.(event.target.checked);
|
|
1431
1577
|
},
|
|
1432
1578
|
...rest
|
|
1433
1579
|
}
|
|
1434
1580
|
),
|
|
1435
|
-
/* @__PURE__ */ (0,
|
|
1436
|
-
|
|
1581
|
+
/* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: track4, children: /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: knob2 }) }),
|
|
1582
|
+
label8 != null && /* @__PURE__ */ (0, import_jsx_runtime17.jsx)("span", { className: labelClass, children: label8 })
|
|
1437
1583
|
] });
|
|
1438
1584
|
});
|
|
1439
1585
|
|
|
1440
1586
|
// src/components/text-field/index.tsx
|
|
1441
|
-
var
|
|
1587
|
+
var import_react34 = require("react");
|
|
1442
1588
|
|
|
1443
1589
|
// src/components/base-field/index.tsx
|
|
1444
|
-
var
|
|
1590
|
+
var import_react33 = require("react");
|
|
1445
1591
|
|
|
1446
1592
|
// src/components/base-field/use-styles.ts
|
|
1447
|
-
var
|
|
1593
|
+
var import_react32 = require("react");
|
|
1448
1594
|
|
|
1449
1595
|
// src/components/base-field/use-styles.css.ts
|
|
1450
1596
|
var field = "use-styles_field__1c3cgd3";
|
|
@@ -1456,15 +1602,15 @@ var inputStartPad = "use-styles_inputStartPad__1c3cgd6";
|
|
|
1456
1602
|
var inputTrailingPad = "use-styles_inputTrailingPad__1c3cgd7";
|
|
1457
1603
|
var labelText = "use-styles_labelText__1c3cgd1";
|
|
1458
1604
|
var labelTextError = "use-styles_labelTextError__1c3cgd2";
|
|
1459
|
-
var
|
|
1605
|
+
var root10 = "use-styles_root__1c3cgd0";
|
|
1460
1606
|
var startIconSlot = "use-styles_startIconSlot__1c3cgda";
|
|
1461
1607
|
var trailingSlot = "use-styles_trailingSlot__1c3cgdb";
|
|
1462
1608
|
|
|
1463
1609
|
// src/components/base-field/use-styles.ts
|
|
1464
|
-
function
|
|
1610
|
+
function useStyles14({ error, hasStartIcon, hasTrailing, className }) {
|
|
1465
1611
|
const { themeClass } = useTheme();
|
|
1466
|
-
return (0,
|
|
1467
|
-
const
|
|
1612
|
+
return (0, import_react32.useMemo)(() => {
|
|
1613
|
+
const root25 = [themeClass, root10].filter(Boolean).join(" ");
|
|
1468
1614
|
const labelText2 = [labelText, error && labelTextError].filter(Boolean).join(" ");
|
|
1469
1615
|
const input6 = [
|
|
1470
1616
|
input4,
|
|
@@ -1475,7 +1621,7 @@ function useStyles13({ error, hasStartIcon, hasTrailing, className }) {
|
|
|
1475
1621
|
].filter(Boolean).join(" ");
|
|
1476
1622
|
const helpText2 = [helpText, error && helpTextError].filter(Boolean).join(" ");
|
|
1477
1623
|
return {
|
|
1478
|
-
root:
|
|
1624
|
+
root: root25,
|
|
1479
1625
|
labelText: labelText2,
|
|
1480
1626
|
field,
|
|
1481
1627
|
input: input6,
|
|
@@ -1487,15 +1633,15 @@ function useStyles13({ error, hasStartIcon, hasTrailing, className }) {
|
|
|
1487
1633
|
}
|
|
1488
1634
|
|
|
1489
1635
|
// src/components/base-field/index.tsx
|
|
1490
|
-
var
|
|
1491
|
-
var BaseField = (0,
|
|
1492
|
-
const autoId = (0,
|
|
1636
|
+
var import_jsx_runtime18 = require("react/jsx-runtime");
|
|
1637
|
+
var BaseField = (0, import_react33.forwardRef)(function BaseField2({ label: label8, help, error, startIcon: StartIcon, trailing: trailing2, id, className, testId, children }, ref) {
|
|
1638
|
+
const autoId = (0, import_react33.useId)();
|
|
1493
1639
|
const controlId = id ?? autoId;
|
|
1494
1640
|
const errorMessage = error != null && error !== false && error !== true && error !== "" ? error : null;
|
|
1495
1641
|
const hasError = error === true || errorMessage != null;
|
|
1496
1642
|
const message2 = errorMessage ?? help;
|
|
1497
1643
|
const messageId = message2 != null ? `${controlId}-msg` : void 0;
|
|
1498
|
-
const classes =
|
|
1644
|
+
const classes = useStyles14({
|
|
1499
1645
|
error: hasError,
|
|
1500
1646
|
hasStartIcon: StartIcon != null,
|
|
1501
1647
|
hasTrailing: trailing2 != null,
|
|
@@ -1510,15 +1656,15 @@ var BaseField = (0, import_react31.forwardRef)(function BaseField2({ label: labe
|
|
|
1510
1656
|
"aria-invalid": hasError ? true : void 0,
|
|
1511
1657
|
"data-testid": slot("input")
|
|
1512
1658
|
};
|
|
1513
|
-
return /* @__PURE__ */ (0,
|
|
1514
|
-
|
|
1515
|
-
/* @__PURE__ */ (0,
|
|
1516
|
-
StartIcon != null && /* @__PURE__ */ (0,
|
|
1659
|
+
return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: classes.root, "data-testid": rootTestId, "data-state": states({ error: hasError }), children: [
|
|
1660
|
+
label8 != null && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("label", { htmlFor: controlId, className: classes.labelText, "data-testid": slot("label"), children: label8 }),
|
|
1661
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: classes.field, children: [
|
|
1662
|
+
StartIcon != null && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", { className: classes.startIconSlot, children: /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(StartIcon, { size: 18 }) }),
|
|
1517
1663
|
children(control),
|
|
1518
|
-
trailing2 != null && /* @__PURE__ */ (0,
|
|
1664
|
+
trailing2 != null && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", { className: classes.trailingSlot, children: trailing2 })
|
|
1519
1665
|
] }),
|
|
1520
1666
|
message2 != null && // `aria-live` solo cuando el mensaje es un error: anuncia la validación al aparecer.
|
|
1521
|
-
/* @__PURE__ */ (0,
|
|
1667
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
1522
1668
|
"span",
|
|
1523
1669
|
{
|
|
1524
1670
|
id: messageId,
|
|
@@ -1532,13 +1678,13 @@ var BaseField = (0, import_react31.forwardRef)(function BaseField2({ label: labe
|
|
|
1532
1678
|
});
|
|
1533
1679
|
|
|
1534
1680
|
// src/components/text-field/index.tsx
|
|
1535
|
-
var
|
|
1681
|
+
var import_jsx_runtime19 = (
|
|
1536
1682
|
// En multiline el control es un <textarea>: no reenviamos `controlRef` porque el
|
|
1537
1683
|
// tipo público de la ref es HTMLInputElement (la ref aplica solo a la rama <input>).
|
|
1538
1684
|
require("react/jsx-runtime")
|
|
1539
1685
|
);
|
|
1540
|
-
var TextField = (0,
|
|
1541
|
-
label:
|
|
1686
|
+
var TextField = (0, import_react34.forwardRef)(function TextField2({
|
|
1687
|
+
label: label8,
|
|
1542
1688
|
help,
|
|
1543
1689
|
error,
|
|
1544
1690
|
startIcon,
|
|
@@ -1552,18 +1698,18 @@ var TextField = (0, import_react32.forwardRef)(function TextField2({
|
|
|
1552
1698
|
...rest
|
|
1553
1699
|
}, ref) {
|
|
1554
1700
|
const rawTestId = rest["data-testid"];
|
|
1555
|
-
return /* @__PURE__ */ (0,
|
|
1701
|
+
return /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
1556
1702
|
BaseField,
|
|
1557
1703
|
{
|
|
1558
1704
|
ref,
|
|
1559
|
-
label:
|
|
1705
|
+
label: label8,
|
|
1560
1706
|
help,
|
|
1561
1707
|
error,
|
|
1562
1708
|
startIcon,
|
|
1563
1709
|
id,
|
|
1564
1710
|
className,
|
|
1565
1711
|
testId,
|
|
1566
|
-
children: ({ ref: controlRef, ...control }) => multiline ? /* @__PURE__ */ (0,
|
|
1712
|
+
children: ({ ref: controlRef, ...control }) => multiline ? /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
1567
1713
|
"textarea",
|
|
1568
1714
|
{
|
|
1569
1715
|
...rest,
|
|
@@ -1572,7 +1718,7 @@ var TextField = (0, import_react32.forwardRef)(function TextField2({
|
|
|
1572
1718
|
rows: rows ?? 4,
|
|
1573
1719
|
onChange: (e) => onChange?.(e.target.value)
|
|
1574
1720
|
}
|
|
1575
|
-
) : /* @__PURE__ */ (0,
|
|
1721
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime19.jsx)(
|
|
1576
1722
|
"input",
|
|
1577
1723
|
{
|
|
1578
1724
|
...rest,
|
|
@@ -1588,12 +1734,12 @@ var TextField = (0, import_react32.forwardRef)(function TextField2({
|
|
|
1588
1734
|
});
|
|
1589
1735
|
|
|
1590
1736
|
// src/components/password-field/index.tsx
|
|
1591
|
-
var
|
|
1737
|
+
var import_react36 = require("react");
|
|
1592
1738
|
|
|
1593
1739
|
// src/components/icons/eye/index.tsx
|
|
1594
|
-
var
|
|
1740
|
+
var import_jsx_runtime20 = require("react/jsx-runtime");
|
|
1595
1741
|
function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1596
|
-
return /* @__PURE__ */ (0,
|
|
1742
|
+
return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
|
|
1597
1743
|
"svg",
|
|
1598
1744
|
{
|
|
1599
1745
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1608,17 +1754,17 @@ function EyeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
1608
1754
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1609
1755
|
...rest,
|
|
1610
1756
|
children: [
|
|
1611
|
-
/* @__PURE__ */ (0,
|
|
1612
|
-
/* @__PURE__ */ (0,
|
|
1757
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("path", { d: "M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z" }),
|
|
1758
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("circle", { cx: "12", cy: "12", r: "3" })
|
|
1613
1759
|
]
|
|
1614
1760
|
}
|
|
1615
1761
|
);
|
|
1616
1762
|
}
|
|
1617
1763
|
|
|
1618
1764
|
// src/components/icons/eye-off/index.tsx
|
|
1619
|
-
var
|
|
1765
|
+
var import_jsx_runtime21 = require("react/jsx-runtime");
|
|
1620
1766
|
function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1621
|
-
return /* @__PURE__ */ (0,
|
|
1767
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)(
|
|
1622
1768
|
"svg",
|
|
1623
1769
|
{
|
|
1624
1770
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1633,39 +1779,39 @@ function EyeOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
1633
1779
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1634
1780
|
...rest,
|
|
1635
1781
|
children: [
|
|
1636
|
-
/* @__PURE__ */ (0,
|
|
1637
|
-
/* @__PURE__ */ (0,
|
|
1638
|
-
/* @__PURE__ */ (0,
|
|
1639
|
-
/* @__PURE__ */ (0,
|
|
1782
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", { d: "M9.88 9.88a3 3 0 1 0 4.24 4.24" }),
|
|
1783
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", { d: "M10.73 5.08A10.43 10.43 0 0 1 12 5c7 0 10 7 10 7a13.16 13.16 0 0 1-1.67 2.68" }),
|
|
1784
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", { d: "M6.61 6.61A13.526 13.526 0 0 0 2 12s3 7 10 7a9.74 9.74 0 0 0 5.39-1.61" }),
|
|
1785
|
+
/* @__PURE__ */ (0, import_jsx_runtime21.jsx)("path", { d: "m2 2 20 20" })
|
|
1640
1786
|
]
|
|
1641
1787
|
}
|
|
1642
1788
|
);
|
|
1643
1789
|
}
|
|
1644
1790
|
|
|
1645
1791
|
// src/components/password-field/use-styles.ts
|
|
1646
|
-
var
|
|
1792
|
+
var import_react35 = require("react");
|
|
1647
1793
|
|
|
1648
1794
|
// src/components/password-field/use-styles.css.ts
|
|
1649
1795
|
var revealButton = "use-styles_revealButton__rsu9d50";
|
|
1650
1796
|
|
|
1651
1797
|
// src/components/password-field/use-styles.ts
|
|
1652
|
-
function
|
|
1653
|
-
return (0,
|
|
1798
|
+
function useStyles15() {
|
|
1799
|
+
return (0, import_react35.useMemo)(() => ({ revealButton }), []);
|
|
1654
1800
|
}
|
|
1655
1801
|
|
|
1656
1802
|
// src/components/password-field/index.tsx
|
|
1657
|
-
var
|
|
1658
|
-
var PasswordField = (0,
|
|
1659
|
-
function PasswordField2({ label:
|
|
1660
|
-
const [reveal, setReveal] = (0,
|
|
1661
|
-
const classes =
|
|
1803
|
+
var import_jsx_runtime22 = require("react/jsx-runtime");
|
|
1804
|
+
var PasswordField = (0, import_react36.forwardRef)(
|
|
1805
|
+
function PasswordField2({ label: label8, help, error, startIcon, onChange, id, className, ...rest }, ref) {
|
|
1806
|
+
const [reveal, setReveal] = (0, import_react36.useState)(false);
|
|
1807
|
+
const classes = useStyles15();
|
|
1662
1808
|
const handleChange = (e) => {
|
|
1663
1809
|
onChange?.(e.target.value);
|
|
1664
1810
|
};
|
|
1665
1811
|
const handleToggleMouseDown = (e) => {
|
|
1666
1812
|
e.preventDefault();
|
|
1667
1813
|
};
|
|
1668
|
-
const toggleButton = /* @__PURE__ */ (0,
|
|
1814
|
+
const toggleButton = /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
1669
1815
|
"button",
|
|
1670
1816
|
{
|
|
1671
1817
|
type: "button",
|
|
@@ -1674,21 +1820,21 @@ var PasswordField = (0, import_react34.forwardRef)(
|
|
|
1674
1820
|
"aria-label": reveal ? "Ocultar contrase\xF1a" : "Mostrar contrase\xF1a",
|
|
1675
1821
|
onMouseDown: handleToggleMouseDown,
|
|
1676
1822
|
onClick: () => setReveal((r) => !r),
|
|
1677
|
-
children: reveal ? /* @__PURE__ */ (0,
|
|
1823
|
+
children: reveal ? /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(EyeOffIcon, { size: 18 }) : /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(EyeIcon, { size: 18 })
|
|
1678
1824
|
}
|
|
1679
1825
|
);
|
|
1680
|
-
return /* @__PURE__ */ (0,
|
|
1826
|
+
return /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
1681
1827
|
BaseField,
|
|
1682
1828
|
{
|
|
1683
1829
|
ref,
|
|
1684
|
-
label:
|
|
1830
|
+
label: label8,
|
|
1685
1831
|
help,
|
|
1686
1832
|
error,
|
|
1687
1833
|
startIcon,
|
|
1688
1834
|
trailing: toggleButton,
|
|
1689
1835
|
id,
|
|
1690
1836
|
className,
|
|
1691
|
-
children: (control) => /* @__PURE__ */ (0,
|
|
1837
|
+
children: (control) => /* @__PURE__ */ (0, import_jsx_runtime22.jsx)(
|
|
1692
1838
|
"input",
|
|
1693
1839
|
{
|
|
1694
1840
|
...rest,
|
|
@@ -1703,20 +1849,20 @@ var PasswordField = (0, import_react34.forwardRef)(
|
|
|
1703
1849
|
);
|
|
1704
1850
|
|
|
1705
1851
|
// src/components/money-field/index.tsx
|
|
1706
|
-
var
|
|
1707
|
-
var
|
|
1852
|
+
var import_react37 = require("react");
|
|
1853
|
+
var import_jsx_runtime23 = require("react/jsx-runtime");
|
|
1708
1854
|
function parseAmount(raw) {
|
|
1709
1855
|
const cleaned = raw.replace(/[^0-9.-]/g, "");
|
|
1710
1856
|
if (cleaned === "" || cleaned === "-" || cleaned === ".") return null;
|
|
1711
1857
|
const n = Number.parseFloat(cleaned);
|
|
1712
1858
|
return Number.isNaN(n) ? null : n;
|
|
1713
1859
|
}
|
|
1714
|
-
var MoneyField = (0,
|
|
1860
|
+
var MoneyField = (0, import_react37.forwardRef)(function MoneyField2({
|
|
1715
1861
|
value,
|
|
1716
1862
|
onChange,
|
|
1717
1863
|
currency = "USD",
|
|
1718
1864
|
locale = "en-US",
|
|
1719
|
-
label:
|
|
1865
|
+
label: label8,
|
|
1720
1866
|
help,
|
|
1721
1867
|
error,
|
|
1722
1868
|
startIcon,
|
|
@@ -1726,9 +1872,9 @@ var MoneyField = (0, import_react35.forwardRef)(function MoneyField2({
|
|
|
1726
1872
|
onBlur,
|
|
1727
1873
|
...rest
|
|
1728
1874
|
}, ref) {
|
|
1729
|
-
const [focused, setFocused] = (0,
|
|
1730
|
-
const [draft, setDraft] = (0,
|
|
1731
|
-
const formatter = (0,
|
|
1875
|
+
const [focused, setFocused] = (0, import_react37.useState)(false);
|
|
1876
|
+
const [draft, setDraft] = (0, import_react37.useState)("");
|
|
1877
|
+
const formatter = (0, import_react37.useMemo)(
|
|
1732
1878
|
() => new Intl.NumberFormat(locale, { style: "currency", currency }),
|
|
1733
1879
|
[locale, currency]
|
|
1734
1880
|
);
|
|
@@ -1744,17 +1890,17 @@ var MoneyField = (0, import_react35.forwardRef)(function MoneyField2({
|
|
|
1744
1890
|
onChange?.(parseAmount(draft));
|
|
1745
1891
|
onBlur?.(e);
|
|
1746
1892
|
};
|
|
1747
|
-
return /* @__PURE__ */ (0,
|
|
1893
|
+
return /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
1748
1894
|
BaseField,
|
|
1749
1895
|
{
|
|
1750
1896
|
ref,
|
|
1751
|
-
label:
|
|
1897
|
+
label: label8,
|
|
1752
1898
|
help,
|
|
1753
1899
|
error,
|
|
1754
1900
|
startIcon,
|
|
1755
1901
|
id,
|
|
1756
1902
|
className,
|
|
1757
|
-
children: (control) => /* @__PURE__ */ (0,
|
|
1903
|
+
children: (control) => /* @__PURE__ */ (0, import_jsx_runtime23.jsx)(
|
|
1758
1904
|
"input",
|
|
1759
1905
|
{
|
|
1760
1906
|
...rest,
|
|
@@ -1771,32 +1917,32 @@ var MoneyField = (0, import_react35.forwardRef)(function MoneyField2({
|
|
|
1771
1917
|
});
|
|
1772
1918
|
|
|
1773
1919
|
// src/components/icon-button/index.tsx
|
|
1774
|
-
var
|
|
1920
|
+
var import_react39 = require("react");
|
|
1775
1921
|
|
|
1776
1922
|
// src/components/icon-button/use-styles.ts
|
|
1777
|
-
var
|
|
1923
|
+
var import_react38 = require("react");
|
|
1778
1924
|
|
|
1779
1925
|
// src/components/icon-button/use-styles.css.ts
|
|
1780
1926
|
var accent = "use-styles_accent__18np0q02";
|
|
1781
1927
|
var active = "use-styles_active__18np0q01";
|
|
1782
|
-
var
|
|
1928
|
+
var root11 = "use-styles_root__18np0q00";
|
|
1783
1929
|
|
|
1784
1930
|
// src/components/icon-button/use-styles.ts
|
|
1785
|
-
function
|
|
1931
|
+
function useStyles16({
|
|
1786
1932
|
active: active2 = false,
|
|
1787
1933
|
tone: tone4 = "ink"
|
|
1788
1934
|
}) {
|
|
1789
1935
|
const { themeClass } = useTheme();
|
|
1790
|
-
const
|
|
1791
|
-
() => [themeClass,
|
|
1936
|
+
const root25 = (0, import_react38.useMemo)(
|
|
1937
|
+
() => [themeClass, root11, tone4 === "accent" && accent, active2 && active].filter(Boolean).join(" "),
|
|
1792
1938
|
[themeClass, active2, tone4]
|
|
1793
1939
|
);
|
|
1794
|
-
return { root:
|
|
1940
|
+
return { root: root25 };
|
|
1795
1941
|
}
|
|
1796
1942
|
|
|
1797
1943
|
// src/components/icon-button/index.tsx
|
|
1798
|
-
var
|
|
1799
|
-
var IconButton = (0,
|
|
1944
|
+
var import_jsx_runtime24 = require("react/jsx-runtime");
|
|
1945
|
+
var IconButton = (0, import_react39.forwardRef)(function IconButton2({ icon: Icon, active: active2, tone: tone4, title, type = "button", testId, ...rest }, ref) {
|
|
1800
1946
|
if (typeof process !== "undefined" && process.env.NODE_ENV !== "production") {
|
|
1801
1947
|
const restProps = rest;
|
|
1802
1948
|
const hasName = title.trim() !== "" || restProps["aria-label"] != null || restProps["aria-labelledby"] != null;
|
|
@@ -1804,61 +1950,61 @@ var IconButton = (0, import_react37.forwardRef)(function IconButton2({ icon: Ico
|
|
|
1804
1950
|
console.warn("IconButton: falta un nombre accesible (`title` o `aria-label`).");
|
|
1805
1951
|
}
|
|
1806
1952
|
}
|
|
1807
|
-
const { root:
|
|
1953
|
+
const { root: root25 } = useStyles16({ active: active2, tone: tone4 });
|
|
1808
1954
|
const { testId: dataTestId } = useTestId("button", testId);
|
|
1809
|
-
return /* @__PURE__ */ (0,
|
|
1955
|
+
return /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(
|
|
1810
1956
|
"button",
|
|
1811
1957
|
{
|
|
1812
1958
|
ref,
|
|
1813
1959
|
type,
|
|
1814
|
-
className:
|
|
1960
|
+
className: root25,
|
|
1815
1961
|
"aria-label": title,
|
|
1816
1962
|
title,
|
|
1817
1963
|
"data-testid": dataTestId,
|
|
1818
1964
|
"data-state": states({ active: active2, disabled: rest.disabled }),
|
|
1819
1965
|
...rest,
|
|
1820
|
-
children: /* @__PURE__ */ (0,
|
|
1966
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime24.jsx)(Icon, { size: 18 })
|
|
1821
1967
|
}
|
|
1822
1968
|
);
|
|
1823
1969
|
});
|
|
1824
1970
|
|
|
1825
1971
|
// src/components/card/index.tsx
|
|
1826
|
-
var
|
|
1972
|
+
var import_react41 = require("react");
|
|
1827
1973
|
|
|
1828
1974
|
// src/components/card/use-styles.ts
|
|
1829
|
-
var
|
|
1975
|
+
var import_react40 = require("react");
|
|
1830
1976
|
|
|
1831
1977
|
// src/components/card/use-styles.css.ts
|
|
1832
1978
|
var body = "use-styles_body__1fuvd022";
|
|
1833
1979
|
var footer = "use-styles_footer__1fuvd023";
|
|
1834
1980
|
var header = "use-styles_header__1fuvd021";
|
|
1835
|
-
var
|
|
1981
|
+
var root12 = "use-styles_root__1fuvd020";
|
|
1836
1982
|
|
|
1837
1983
|
// src/components/card/use-styles.ts
|
|
1838
|
-
function
|
|
1984
|
+
function useStyles17() {
|
|
1839
1985
|
const { themeClass } = useTheme();
|
|
1840
|
-
const
|
|
1841
|
-
return { root:
|
|
1986
|
+
const root25 = (0, import_react40.useMemo)(() => `${themeClass} ${root12}`, [themeClass]);
|
|
1987
|
+
return { root: root25, header, body, footer };
|
|
1842
1988
|
}
|
|
1843
1989
|
|
|
1844
1990
|
// src/components/card/index.tsx
|
|
1845
|
-
var
|
|
1846
|
-
var CardRoot = (0,
|
|
1847
|
-
const { root:
|
|
1991
|
+
var import_jsx_runtime25 = require("react/jsx-runtime");
|
|
1992
|
+
var CardRoot = (0, import_react41.forwardRef)(function Card({ children, testId, ...rest }, ref) {
|
|
1993
|
+
const { root: root25 } = useStyles17();
|
|
1848
1994
|
const { testId: dataTestId } = useTestId("layout", testId);
|
|
1849
|
-
return /* @__PURE__ */ (0,
|
|
1995
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { ref, className: root25, "data-testid": dataTestId, ...rest, children });
|
|
1850
1996
|
});
|
|
1851
1997
|
function CardHeader({ children, ...rest }) {
|
|
1852
|
-
const { header: header3 } =
|
|
1853
|
-
return /* @__PURE__ */ (0,
|
|
1998
|
+
const { header: header3 } = useStyles17();
|
|
1999
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { className: header3, ...rest, children });
|
|
1854
2000
|
}
|
|
1855
2001
|
function CardBody({ children, ...rest }) {
|
|
1856
|
-
const { body: body3 } =
|
|
1857
|
-
return /* @__PURE__ */ (0,
|
|
2002
|
+
const { body: body3 } = useStyles17();
|
|
2003
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { className: body3, ...rest, children });
|
|
1858
2004
|
}
|
|
1859
2005
|
function CardFooter({ children, ...rest }) {
|
|
1860
|
-
const { footer: footer2 } =
|
|
1861
|
-
return /* @__PURE__ */ (0,
|
|
2006
|
+
const { footer: footer2 } = useStyles17();
|
|
2007
|
+
return /* @__PURE__ */ (0, import_jsx_runtime25.jsx)("div", { className: footer2, ...rest, children });
|
|
1862
2008
|
}
|
|
1863
2009
|
CardRoot.displayName = "Card";
|
|
1864
2010
|
CardHeader.displayName = "Card.Header";
|
|
@@ -1871,12 +2017,12 @@ var Card2 = Object.assign(CardRoot, {
|
|
|
1871
2017
|
});
|
|
1872
2018
|
|
|
1873
2019
|
// src/components/alert/index.tsx
|
|
1874
|
-
var
|
|
2020
|
+
var import_react43 = require("react");
|
|
1875
2021
|
|
|
1876
2022
|
// src/components/icons/circle-check/index.tsx
|
|
1877
|
-
var
|
|
2023
|
+
var import_jsx_runtime26 = require("react/jsx-runtime");
|
|
1878
2024
|
function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1879
|
-
return /* @__PURE__ */ (0,
|
|
2025
|
+
return /* @__PURE__ */ (0, import_jsx_runtime26.jsxs)(
|
|
1880
2026
|
"svg",
|
|
1881
2027
|
{
|
|
1882
2028
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1891,17 +2037,17 @@ function CircleCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
1891
2037
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1892
2038
|
...rest,
|
|
1893
2039
|
children: [
|
|
1894
|
-
/* @__PURE__ */ (0,
|
|
1895
|
-
/* @__PURE__ */ (0,
|
|
2040
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
2041
|
+
/* @__PURE__ */ (0, import_jsx_runtime26.jsx)("path", { d: "m9 12 2 2 4-4" })
|
|
1896
2042
|
]
|
|
1897
2043
|
}
|
|
1898
2044
|
);
|
|
1899
2045
|
}
|
|
1900
2046
|
|
|
1901
2047
|
// src/components/icons/circle-x/index.tsx
|
|
1902
|
-
var
|
|
2048
|
+
var import_jsx_runtime27 = require("react/jsx-runtime");
|
|
1903
2049
|
function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1904
|
-
return /* @__PURE__ */ (0,
|
|
2050
|
+
return /* @__PURE__ */ (0, import_jsx_runtime27.jsxs)(
|
|
1905
2051
|
"svg",
|
|
1906
2052
|
{
|
|
1907
2053
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1916,18 +2062,18 @@ function CircleXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
1916
2062
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1917
2063
|
...rest,
|
|
1918
2064
|
children: [
|
|
1919
|
-
/* @__PURE__ */ (0,
|
|
1920
|
-
/* @__PURE__ */ (0,
|
|
1921
|
-
/* @__PURE__ */ (0,
|
|
2065
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
2066
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "m15 9-6 6" }),
|
|
2067
|
+
/* @__PURE__ */ (0, import_jsx_runtime27.jsx)("path", { d: "m9 9 6 6" })
|
|
1922
2068
|
]
|
|
1923
2069
|
}
|
|
1924
2070
|
);
|
|
1925
2071
|
}
|
|
1926
2072
|
|
|
1927
2073
|
// src/components/icons/info/index.tsx
|
|
1928
|
-
var
|
|
2074
|
+
var import_jsx_runtime28 = require("react/jsx-runtime");
|
|
1929
2075
|
function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1930
|
-
return /* @__PURE__ */ (0,
|
|
2076
|
+
return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(
|
|
1931
2077
|
"svg",
|
|
1932
2078
|
{
|
|
1933
2079
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1942,18 +2088,18 @@ function InfoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
1942
2088
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1943
2089
|
...rest,
|
|
1944
2090
|
children: [
|
|
1945
|
-
/* @__PURE__ */ (0,
|
|
1946
|
-
/* @__PURE__ */ (0,
|
|
1947
|
-
/* @__PURE__ */ (0,
|
|
2091
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
2092
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "M12 16v-4" }),
|
|
2093
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)("path", { d: "M12 8h.01" })
|
|
1948
2094
|
]
|
|
1949
2095
|
}
|
|
1950
2096
|
);
|
|
1951
2097
|
}
|
|
1952
2098
|
|
|
1953
2099
|
// src/components/icons/triangle-alert/index.tsx
|
|
1954
|
-
var
|
|
2100
|
+
var import_jsx_runtime29 = require("react/jsx-runtime");
|
|
1955
2101
|
function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
1956
|
-
return /* @__PURE__ */ (0,
|
|
2102
|
+
return /* @__PURE__ */ (0, import_jsx_runtime29.jsxs)(
|
|
1957
2103
|
"svg",
|
|
1958
2104
|
{
|
|
1959
2105
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -1968,42 +2114,42 @@ function TriangleAlertIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...res
|
|
|
1968
2114
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
1969
2115
|
...rest,
|
|
1970
2116
|
children: [
|
|
1971
|
-
/* @__PURE__ */ (0,
|
|
1972
|
-
/* @__PURE__ */ (0,
|
|
1973
|
-
/* @__PURE__ */ (0,
|
|
2117
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("path", { d: "m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z" }),
|
|
2118
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("path", { d: "M12 9v4" }),
|
|
2119
|
+
/* @__PURE__ */ (0, import_jsx_runtime29.jsx)("path", { d: "M12 17h.01" })
|
|
1974
2120
|
]
|
|
1975
2121
|
}
|
|
1976
2122
|
);
|
|
1977
2123
|
}
|
|
1978
2124
|
|
|
1979
2125
|
// src/components/alert/use-styles.ts
|
|
1980
|
-
var
|
|
2126
|
+
var import_react42 = require("react");
|
|
1981
2127
|
|
|
1982
2128
|
// src/components/alert/use-styles.css.ts
|
|
1983
2129
|
var content2 = "use-styles_content__ivsh6u6";
|
|
1984
2130
|
var iconSlot = "use-styles_iconSlot__ivsh6u5";
|
|
1985
|
-
var
|
|
2131
|
+
var root13 = "use-styles_root__ivsh6u0";
|
|
1986
2132
|
var severity = { info: "use-styles_severity_info__ivsh6u1", ok: "use-styles_severity_ok__ivsh6u2", warn: "use-styles_severity_warn__ivsh6u3", danger: "use-styles_severity_danger__ivsh6u4" };
|
|
1987
2133
|
|
|
1988
2134
|
// src/components/alert/use-styles.ts
|
|
1989
|
-
function
|
|
2135
|
+
function useStyles18({
|
|
1990
2136
|
severity: severity2 = "info",
|
|
1991
2137
|
className
|
|
1992
2138
|
}) {
|
|
1993
2139
|
const { themeClass } = useTheme();
|
|
1994
|
-
const
|
|
1995
|
-
() => [themeClass,
|
|
2140
|
+
const root25 = (0, import_react42.useMemo)(
|
|
2141
|
+
() => [themeClass, root13, severity[severity2], className].filter(Boolean).join(" "),
|
|
1996
2142
|
[themeClass, severity2, className]
|
|
1997
2143
|
);
|
|
1998
2144
|
return {
|
|
1999
|
-
root:
|
|
2145
|
+
root: root25,
|
|
2000
2146
|
iconSlot,
|
|
2001
2147
|
content: content2
|
|
2002
2148
|
};
|
|
2003
2149
|
}
|
|
2004
2150
|
|
|
2005
2151
|
// src/components/alert/index.tsx
|
|
2006
|
-
var
|
|
2152
|
+
var import_jsx_runtime30 = require("react/jsx-runtime");
|
|
2007
2153
|
var defaultIcons = {
|
|
2008
2154
|
info: InfoIcon,
|
|
2009
2155
|
ok: CircleCheckIcon,
|
|
@@ -2016,11 +2162,11 @@ var roleBySeverity = {
|
|
|
2016
2162
|
warn: "alert",
|
|
2017
2163
|
danger: "alert"
|
|
2018
2164
|
};
|
|
2019
|
-
var Alert = (0,
|
|
2020
|
-
const styles =
|
|
2165
|
+
var Alert = (0, import_react43.forwardRef)(function Alert2({ severity: severity2 = "info", title, icon, className, testId, children, ...rest }, ref) {
|
|
2166
|
+
const styles = useStyles18({ severity: severity2, className });
|
|
2021
2167
|
const { testId: dataTestId, slot } = useTestId("feedback", testId);
|
|
2022
2168
|
const IconComponent = icon ?? defaultIcons[severity2];
|
|
2023
|
-
return /* @__PURE__ */ (0,
|
|
2169
|
+
return /* @__PURE__ */ (0, import_jsx_runtime30.jsxs)(
|
|
2024
2170
|
"div",
|
|
2025
2171
|
{
|
|
2026
2172
|
ref,
|
|
@@ -2029,10 +2175,10 @@ var Alert = (0, import_react41.forwardRef)(function Alert2({ severity: severity2
|
|
|
2029
2175
|
"data-testid": dataTestId,
|
|
2030
2176
|
...rest,
|
|
2031
2177
|
children: [
|
|
2032
|
-
/* @__PURE__ */ (0,
|
|
2033
|
-
/* @__PURE__ */ (0,
|
|
2034
|
-
title != null && /* @__PURE__ */ (0,
|
|
2035
|
-
children != null && /* @__PURE__ */ (0,
|
|
2178
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsx)("span", { className: styles.iconSlot, "data-testid": slot("icon"), children: /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(IconComponent, {}) }),
|
|
2179
|
+
/* @__PURE__ */ (0, import_jsx_runtime30.jsxs)("div", { className: styles.content, "data-testid": slot("content"), children: [
|
|
2180
|
+
title != null && /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(Typography, { variant: "h4", children: title }),
|
|
2181
|
+
children != null && /* @__PURE__ */ (0, import_jsx_runtime30.jsx)(Typography, { variant: "body", color: "muted", children })
|
|
2036
2182
|
] })
|
|
2037
2183
|
]
|
|
2038
2184
|
}
|
|
@@ -2040,10 +2186,10 @@ var Alert = (0, import_react41.forwardRef)(function Alert2({ severity: severity2
|
|
|
2040
2186
|
});
|
|
2041
2187
|
|
|
2042
2188
|
// src/components/tooltip/index.tsx
|
|
2043
|
-
var
|
|
2189
|
+
var import_react45 = require("react");
|
|
2044
2190
|
|
|
2045
2191
|
// src/components/tooltip/use-styles.ts
|
|
2046
|
-
var
|
|
2192
|
+
var import_react44 = require("react");
|
|
2047
2193
|
|
|
2048
2194
|
// src/components/tooltip/use-styles.css.ts
|
|
2049
2195
|
var bubble = "use-styles_bubble__h9kvh1 surfaces_inkySurface__1qa7atn2";
|
|
@@ -2051,15 +2197,15 @@ var placement = { top: "use-styles_placement_top__h9kvh2", bottom: "use-styles_p
|
|
|
2051
2197
|
var wrapper = "use-styles_wrapper__h9kvh0";
|
|
2052
2198
|
|
|
2053
2199
|
// src/components/tooltip/use-styles.ts
|
|
2054
|
-
function
|
|
2200
|
+
function useStyles19({
|
|
2055
2201
|
placement: placement2 = "top"
|
|
2056
2202
|
}) {
|
|
2057
2203
|
const { themeClass } = useTheme();
|
|
2058
|
-
const wrapper4 = (0,
|
|
2204
|
+
const wrapper4 = (0, import_react44.useMemo)(
|
|
2059
2205
|
() => [themeClass, wrapper].filter(Boolean).join(" "),
|
|
2060
2206
|
[themeClass]
|
|
2061
2207
|
);
|
|
2062
|
-
const bubble2 = (0,
|
|
2208
|
+
const bubble2 = (0, import_react44.useMemo)(
|
|
2063
2209
|
() => [bubble, placement[placement2]].filter(Boolean).join(" "),
|
|
2064
2210
|
[placement2]
|
|
2065
2211
|
);
|
|
@@ -2067,14 +2213,14 @@ function useStyles18({
|
|
|
2067
2213
|
}
|
|
2068
2214
|
|
|
2069
2215
|
// src/components/tooltip/index.tsx
|
|
2070
|
-
var
|
|
2216
|
+
var import_jsx_runtime31 = require("react/jsx-runtime");
|
|
2071
2217
|
var HIDE_DELAY = 120;
|
|
2072
|
-
var Tooltip = (0,
|
|
2073
|
-
const [open, setOpen] = (0,
|
|
2074
|
-
const tooltipId = (0,
|
|
2075
|
-
const { wrapper: wrapper4, bubble: bubble2 } =
|
|
2218
|
+
var Tooltip = (0, import_react45.forwardRef)(function Tooltip2({ label: label8, children, placement: placement2, testId }, ref) {
|
|
2219
|
+
const [open, setOpen] = (0, import_react45.useState)(false);
|
|
2220
|
+
const tooltipId = (0, import_react45.useId)();
|
|
2221
|
+
const { wrapper: wrapper4, bubble: bubble2 } = useStyles19({ placement: placement2 });
|
|
2076
2222
|
const { testId: dataTestId, slot } = useTestId("feedback", testId);
|
|
2077
|
-
const hideTimer = (0,
|
|
2223
|
+
const hideTimer = (0, import_react45.useRef)(null);
|
|
2078
2224
|
const clearHide = () => {
|
|
2079
2225
|
if (hideTimer.current) {
|
|
2080
2226
|
clearTimeout(hideTimer.current);
|
|
@@ -2093,7 +2239,7 @@ var Tooltip = (0, import_react43.forwardRef)(function Tooltip2({ label: label7,
|
|
|
2093
2239
|
clearHide();
|
|
2094
2240
|
setOpen(false);
|
|
2095
2241
|
};
|
|
2096
|
-
(0,
|
|
2242
|
+
(0, import_react45.useEffect)(() => {
|
|
2097
2243
|
return () => {
|
|
2098
2244
|
if (hideTimer.current) clearTimeout(hideTimer.current);
|
|
2099
2245
|
};
|
|
@@ -2106,8 +2252,8 @@ var Tooltip = (0, import_react43.forwardRef)(function Tooltip2({ label: label7,
|
|
|
2106
2252
|
};
|
|
2107
2253
|
const previousDescribedBy = children.props["aria-describedby"];
|
|
2108
2254
|
const describedBy = open ? [previousDescribedBy, tooltipId].filter(Boolean).join(" ") : previousDescribedBy;
|
|
2109
|
-
const trigger2 = (0,
|
|
2110
|
-
return /* @__PURE__ */ (0,
|
|
2255
|
+
const trigger2 = (0, import_react45.cloneElement)(children, { "aria-describedby": describedBy });
|
|
2256
|
+
return /* @__PURE__ */ (0, import_jsx_runtime31.jsxs)(
|
|
2111
2257
|
"span",
|
|
2112
2258
|
{
|
|
2113
2259
|
ref,
|
|
@@ -2120,7 +2266,7 @@ var Tooltip = (0, import_react43.forwardRef)(function Tooltip2({ label: label7,
|
|
|
2120
2266
|
onKeyDown: handleKeyDown,
|
|
2121
2267
|
children: [
|
|
2122
2268
|
trigger2,
|
|
2123
|
-
open && /* @__PURE__ */ (0,
|
|
2269
|
+
open && /* @__PURE__ */ (0, import_jsx_runtime31.jsx)(
|
|
2124
2270
|
"span",
|
|
2125
2271
|
{
|
|
2126
2272
|
id: tooltipId,
|
|
@@ -2129,7 +2275,7 @@ var Tooltip = (0, import_react43.forwardRef)(function Tooltip2({ label: label7,
|
|
|
2129
2275
|
"data-testid": slot("bubble"),
|
|
2130
2276
|
onMouseEnter: show,
|
|
2131
2277
|
onMouseLeave: scheduleHide,
|
|
2132
|
-
children:
|
|
2278
|
+
children: label8
|
|
2133
2279
|
}
|
|
2134
2280
|
)
|
|
2135
2281
|
]
|
|
@@ -2138,12 +2284,12 @@ var Tooltip = (0, import_react43.forwardRef)(function Tooltip2({ label: label7,
|
|
|
2138
2284
|
});
|
|
2139
2285
|
|
|
2140
2286
|
// src/components/select/index.tsx
|
|
2141
|
-
var
|
|
2287
|
+
var import_react47 = require("react");
|
|
2142
2288
|
|
|
2143
2289
|
// src/components/icons/chevron-down/index.tsx
|
|
2144
|
-
var
|
|
2290
|
+
var import_jsx_runtime32 = require("react/jsx-runtime");
|
|
2145
2291
|
function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
2146
|
-
return /* @__PURE__ */ (0,
|
|
2292
|
+
return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
|
|
2147
2293
|
"svg",
|
|
2148
2294
|
{
|
|
2149
2295
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2157,36 +2303,36 @@ function ChevronDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
2157
2303
|
strokeLinejoin: "round",
|
|
2158
2304
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
2159
2305
|
...rest,
|
|
2160
|
-
children: /* @__PURE__ */ (0,
|
|
2306
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)("path", { d: "m6 9 6 6 6-6" })
|
|
2161
2307
|
}
|
|
2162
2308
|
);
|
|
2163
2309
|
}
|
|
2164
2310
|
|
|
2165
2311
|
// src/components/select/use-styles.ts
|
|
2166
|
-
var
|
|
2312
|
+
var import_react46 = require("react");
|
|
2167
2313
|
|
|
2168
2314
|
// src/components/select/use-styles.css.ts
|
|
2169
2315
|
var chevron = "use-styles_chevron__1w1czpb4";
|
|
2170
2316
|
var chevronOpen = "use-styles_chevronOpen__1w1czpb5";
|
|
2171
|
-
var
|
|
2317
|
+
var label5 = "use-styles_label__1w1czpb1";
|
|
2172
2318
|
var menu = "use-styles_menu__1w1czpb6 surfaces_panelSurface__1qa7atn1";
|
|
2173
2319
|
var option = "use-styles_option__1w1czpb7";
|
|
2174
2320
|
var optionActive = "use-styles_optionActive__1w1czpb9";
|
|
2175
2321
|
var optionSelected = "use-styles_optionSelected__1w1czpb8";
|
|
2176
2322
|
var placeholder = "use-styles_placeholder__1w1czpb3";
|
|
2177
|
-
var
|
|
2323
|
+
var root14 = "use-styles_root__1w1czpb0";
|
|
2178
2324
|
var trigger = "use-styles_trigger__1w1czpb2";
|
|
2179
2325
|
|
|
2180
2326
|
// src/components/select/use-styles.ts
|
|
2181
|
-
function
|
|
2327
|
+
function useStyles20({
|
|
2182
2328
|
open = false
|
|
2183
2329
|
}) {
|
|
2184
2330
|
const { themeClass } = useTheme();
|
|
2185
|
-
return (0,
|
|
2331
|
+
return (0, import_react46.useMemo)(() => {
|
|
2186
2332
|
const chevron3 = [chevron, open && chevronOpen].filter(Boolean).join(" ");
|
|
2187
2333
|
return {
|
|
2188
|
-
root: [themeClass,
|
|
2189
|
-
label:
|
|
2334
|
+
root: [themeClass, root14].filter(Boolean).join(" "),
|
|
2335
|
+
label: label5,
|
|
2190
2336
|
trigger,
|
|
2191
2337
|
placeholder,
|
|
2192
2338
|
chevron: chevron3,
|
|
@@ -2197,40 +2343,40 @@ function useStyles19({
|
|
|
2197
2343
|
}
|
|
2198
2344
|
|
|
2199
2345
|
// src/components/select/index.tsx
|
|
2200
|
-
var
|
|
2201
|
-
var Select = (0,
|
|
2346
|
+
var import_jsx_runtime33 = require("react/jsx-runtime");
|
|
2347
|
+
var Select = (0, import_react47.forwardRef)(function Select2({
|
|
2202
2348
|
options,
|
|
2203
2349
|
value,
|
|
2204
2350
|
onChange,
|
|
2205
2351
|
placeholder: placeholder2,
|
|
2206
|
-
label:
|
|
2207
|
-
disabled:
|
|
2352
|
+
label: label8,
|
|
2353
|
+
disabled: disabled4,
|
|
2208
2354
|
"aria-label": ariaLabel,
|
|
2209
2355
|
"aria-labelledby": ariaLabelledBy,
|
|
2210
2356
|
...rest
|
|
2211
2357
|
}, ref) {
|
|
2212
|
-
const [open, setOpen] = (0,
|
|
2213
|
-
const [activeIndex, setActiveIndex] = (0,
|
|
2214
|
-
const rootRef = (0,
|
|
2358
|
+
const [open, setOpen] = (0, import_react47.useState)(false);
|
|
2359
|
+
const [activeIndex, setActiveIndex] = (0, import_react47.useState)(0);
|
|
2360
|
+
const rootRef = (0, import_react47.useRef)(null);
|
|
2215
2361
|
const setRootRef = (node) => {
|
|
2216
2362
|
rootRef.current = node;
|
|
2217
2363
|
if (typeof ref === "function") ref(node);
|
|
2218
2364
|
else if (ref) ref.current = node;
|
|
2219
2365
|
};
|
|
2220
|
-
const baseId = (0,
|
|
2366
|
+
const baseId = (0, import_react47.useId)();
|
|
2221
2367
|
const labelId = `${baseId}-label`;
|
|
2222
2368
|
const optionId = (index) => `${baseId}-option-${index}`;
|
|
2223
|
-
const triggerLabelledBy = [
|
|
2369
|
+
const triggerLabelledBy = [label8 ? labelId : null, ariaLabelledBy].filter(Boolean).join(" ") || void 0;
|
|
2224
2370
|
const {
|
|
2225
|
-
root:
|
|
2371
|
+
root: root25,
|
|
2226
2372
|
label: labelClass,
|
|
2227
2373
|
trigger: trigger2,
|
|
2228
2374
|
placeholder: placeholderClass,
|
|
2229
2375
|
chevron: chevron3,
|
|
2230
2376
|
menu: menu2,
|
|
2231
2377
|
optionClass
|
|
2232
|
-
} =
|
|
2233
|
-
(0,
|
|
2378
|
+
} = useStyles20({ open });
|
|
2379
|
+
(0, import_react47.useEffect)(() => {
|
|
2234
2380
|
if (!open) return;
|
|
2235
2381
|
const onPointerDown = (event) => {
|
|
2236
2382
|
if (rootRef.current && !rootRef.current.contains(event.target)) {
|
|
@@ -2256,7 +2402,7 @@ var Select = (0, import_react45.forwardRef)(function Select2({
|
|
|
2256
2402
|
setOpen(true);
|
|
2257
2403
|
};
|
|
2258
2404
|
const handleKeyDown = (event) => {
|
|
2259
|
-
if (
|
|
2405
|
+
if (disabled4) return;
|
|
2260
2406
|
switch (event.key) {
|
|
2261
2407
|
case "Escape":
|
|
2262
2408
|
setOpen(false);
|
|
@@ -2290,21 +2436,21 @@ var Select = (0, import_react45.forwardRef)(function Select2({
|
|
|
2290
2436
|
break;
|
|
2291
2437
|
}
|
|
2292
2438
|
};
|
|
2293
|
-
return /* @__PURE__ */ (0,
|
|
2294
|
-
|
|
2295
|
-
/* @__PURE__ */ (0,
|
|
2439
|
+
return /* @__PURE__ */ (0, import_jsx_runtime33.jsxs)("div", { ref: setRootRef, className: root25, ...rest, children: [
|
|
2440
|
+
label8 && /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { id: labelId, className: labelClass, children: label8 }),
|
|
2441
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsxs)(
|
|
2296
2442
|
"button",
|
|
2297
2443
|
{
|
|
2298
2444
|
type: "button",
|
|
2299
2445
|
className: trigger2,
|
|
2300
|
-
disabled:
|
|
2446
|
+
disabled: disabled4,
|
|
2301
2447
|
"aria-haspopup": "listbox",
|
|
2302
2448
|
"aria-expanded": open,
|
|
2303
2449
|
"aria-label": ariaLabel,
|
|
2304
2450
|
"aria-labelledby": triggerLabelledBy,
|
|
2305
2451
|
"aria-activedescendant": open ? optionId(activeIndex) : void 0,
|
|
2306
2452
|
onClick: () => {
|
|
2307
|
-
if (
|
|
2453
|
+
if (disabled4) return;
|
|
2308
2454
|
if (open) {
|
|
2309
2455
|
setOpen(false);
|
|
2310
2456
|
} else {
|
|
@@ -2313,17 +2459,17 @@ var Select = (0, import_react45.forwardRef)(function Select2({
|
|
|
2313
2459
|
},
|
|
2314
2460
|
onKeyDown: handleKeyDown,
|
|
2315
2461
|
children: [
|
|
2316
|
-
selected4 ? selected4.label : /* @__PURE__ */ (0,
|
|
2317
|
-
/* @__PURE__ */ (0,
|
|
2462
|
+
selected4 ? selected4.label : /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: placeholderClass, children: placeholder2 }),
|
|
2463
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)("span", { className: chevron3, children: /* @__PURE__ */ (0, import_jsx_runtime33.jsx)(ChevronDownIcon, { size: 18 }) })
|
|
2318
2464
|
]
|
|
2319
2465
|
}
|
|
2320
2466
|
),
|
|
2321
|
-
open && /* @__PURE__ */ (0,
|
|
2467
|
+
open && /* @__PURE__ */ (0, import_jsx_runtime33.jsx)("div", { className: menu2, role: "listbox", children: options.map((option2, index) => {
|
|
2322
2468
|
const isSelected = option2.value === value;
|
|
2323
2469
|
const isActive = index === activeIndex;
|
|
2324
2470
|
return (
|
|
2325
2471
|
// biome-ignore lint/a11y/useKeyWithClickEvents: keyboard nav lives on the trigger via aria-activedescendant; options are not focusable.
|
|
2326
|
-
/* @__PURE__ */ (0,
|
|
2472
|
+
/* @__PURE__ */ (0, import_jsx_runtime33.jsx)(
|
|
2327
2473
|
"div",
|
|
2328
2474
|
{
|
|
2329
2475
|
id: optionId(index),
|
|
@@ -2342,29 +2488,29 @@ var Select = (0, import_react45.forwardRef)(function Select2({
|
|
|
2342
2488
|
});
|
|
2343
2489
|
|
|
2344
2490
|
// src/components/slider/index.tsx
|
|
2345
|
-
var
|
|
2491
|
+
var import_react49 = require("react");
|
|
2346
2492
|
|
|
2347
2493
|
// src/components/slider/use-styles.ts
|
|
2348
|
-
var
|
|
2494
|
+
var import_react48 = require("react");
|
|
2349
2495
|
|
|
2350
2496
|
// src/components/slider/use-styles.css.ts
|
|
2351
2497
|
var input5 = "use-styles_input__okw59n3";
|
|
2352
|
-
var
|
|
2498
|
+
var label6 = "use-styles_label__okw59n5";
|
|
2353
2499
|
var range = "use-styles_range__okw59n2";
|
|
2354
|
-
var
|
|
2500
|
+
var root15 = "use-styles_root__okw59n0";
|
|
2355
2501
|
var thumb = "use-styles_thumb__okw59n4";
|
|
2356
2502
|
var track3 = "use-styles_track__okw59n1";
|
|
2357
2503
|
var wrapper2 = "use-styles_wrapper__okw59n6";
|
|
2358
2504
|
|
|
2359
2505
|
// src/components/slider/use-styles.ts
|
|
2360
|
-
function
|
|
2506
|
+
function useStyles21() {
|
|
2361
2507
|
const { themeClass } = useTheme();
|
|
2362
|
-
return (0,
|
|
2363
|
-
const
|
|
2508
|
+
return (0, import_react48.useMemo)(() => {
|
|
2509
|
+
const root25 = [themeClass, root15].filter(Boolean).join(" ");
|
|
2364
2510
|
return {
|
|
2365
2511
|
wrapper: wrapper2,
|
|
2366
|
-
label:
|
|
2367
|
-
root:
|
|
2512
|
+
label: label6,
|
|
2513
|
+
root: root25,
|
|
2368
2514
|
track: track3,
|
|
2369
2515
|
range,
|
|
2370
2516
|
thumb,
|
|
@@ -2374,21 +2520,21 @@ function useStyles20() {
|
|
|
2374
2520
|
}
|
|
2375
2521
|
|
|
2376
2522
|
// src/components/slider/index.tsx
|
|
2377
|
-
var
|
|
2378
|
-
var Slider = (0,
|
|
2379
|
-
const { wrapper: wrapper4, label: labelClass, root:
|
|
2523
|
+
var import_jsx_runtime34 = require("react/jsx-runtime");
|
|
2524
|
+
var Slider = (0, import_react49.forwardRef)(function Slider2({ value = 0, onChange, min = 0, max = 100, step: step2 = 1, disabled: disabled4, label: label8, ...rest }, ref) {
|
|
2525
|
+
const { wrapper: wrapper4, label: labelClass, root: root25, track: track4, range: range2, thumb: thumb2, input: input6 } = useStyles21();
|
|
2380
2526
|
const span = max - min;
|
|
2381
2527
|
const percent = span > 0 ? (value - min) / span * 100 : 0;
|
|
2382
2528
|
const clamped = Math.max(0, Math.min(100, percent));
|
|
2383
2529
|
const handleChange = (e) => {
|
|
2384
2530
|
onChange?.(Number(e.target.value));
|
|
2385
2531
|
};
|
|
2386
|
-
return /* @__PURE__ */ (0,
|
|
2387
|
-
|
|
2388
|
-
/* @__PURE__ */ (0,
|
|
2389
|
-
/* @__PURE__ */ (0,
|
|
2390
|
-
/* @__PURE__ */ (0,
|
|
2391
|
-
/* @__PURE__ */ (0,
|
|
2532
|
+
return /* @__PURE__ */ (0, import_jsx_runtime34.jsxs)("span", { className: wrapper4, children: [
|
|
2533
|
+
label8 ? /* @__PURE__ */ (0, import_jsx_runtime34.jsx)("span", { className: labelClass, children: label8 }) : null,
|
|
2534
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsxs)("span", { className: root25, children: [
|
|
2535
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("span", { className: track4 }),
|
|
2536
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("span", { className: range2, style: { width: `${clamped}%` } }),
|
|
2537
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)(
|
|
2392
2538
|
"input",
|
|
2393
2539
|
{
|
|
2394
2540
|
ref,
|
|
@@ -2398,21 +2544,21 @@ var Slider = (0, import_react47.forwardRef)(function Slider2({ value = 0, onChan
|
|
|
2398
2544
|
max,
|
|
2399
2545
|
step: step2,
|
|
2400
2546
|
value,
|
|
2401
|
-
disabled:
|
|
2547
|
+
disabled: disabled4,
|
|
2402
2548
|
onChange: handleChange,
|
|
2403
2549
|
...rest
|
|
2404
2550
|
}
|
|
2405
2551
|
),
|
|
2406
|
-
/* @__PURE__ */ (0,
|
|
2552
|
+
/* @__PURE__ */ (0, import_jsx_runtime34.jsx)("span", { className: thumb2, style: { left: `${clamped}%` } })
|
|
2407
2553
|
] })
|
|
2408
2554
|
] });
|
|
2409
2555
|
});
|
|
2410
2556
|
|
|
2411
2557
|
// src/components/accordion/index.tsx
|
|
2412
|
-
var
|
|
2558
|
+
var import_react51 = require("react");
|
|
2413
2559
|
|
|
2414
2560
|
// src/components/accordion/use-styles.ts
|
|
2415
|
-
var
|
|
2561
|
+
var import_react50 = require("react");
|
|
2416
2562
|
|
|
2417
2563
|
// src/components/accordion/use-styles.css.ts
|
|
2418
2564
|
var chevron2 = "use-styles_chevron__1cjrdh93";
|
|
@@ -2420,14 +2566,14 @@ var chevronOpen2 = "use-styles_chevronOpen__1cjrdh94";
|
|
|
2420
2566
|
var header2 = "use-styles_header__1cjrdh92";
|
|
2421
2567
|
var item = "use-styles_item__1cjrdh91";
|
|
2422
2568
|
var panel = "use-styles_panel__1cjrdh95";
|
|
2423
|
-
var
|
|
2569
|
+
var root16 = "use-styles_root__1cjrdh90";
|
|
2424
2570
|
|
|
2425
2571
|
// src/components/accordion/use-styles.ts
|
|
2426
|
-
function
|
|
2572
|
+
function useStyles22({ className }) {
|
|
2427
2573
|
const { themeClass } = useTheme();
|
|
2428
|
-
return (0,
|
|
2574
|
+
return (0, import_react50.useMemo)(
|
|
2429
2575
|
() => ({
|
|
2430
|
-
root: [themeClass,
|
|
2576
|
+
root: [themeClass, root16, className].filter(Boolean).join(" "),
|
|
2431
2577
|
item,
|
|
2432
2578
|
header: header2,
|
|
2433
2579
|
chevronFor: (open) => [chevron2, open && chevronOpen2].filter(Boolean).join(" "),
|
|
@@ -2438,10 +2584,10 @@ function useStyles21({ className }) {
|
|
|
2438
2584
|
}
|
|
2439
2585
|
|
|
2440
2586
|
// src/components/accordion/index.tsx
|
|
2441
|
-
var
|
|
2442
|
-
var Accordion = (0,
|
|
2443
|
-
const [open, setOpen] = (0,
|
|
2444
|
-
const { root:
|
|
2587
|
+
var import_jsx_runtime35 = require("react/jsx-runtime");
|
|
2588
|
+
var Accordion = (0, import_react51.forwardRef)(function Accordion2({ items, multiple = false, defaultOpen = [], className, testId }, ref) {
|
|
2589
|
+
const [open, setOpen] = (0, import_react51.useState)(defaultOpen);
|
|
2590
|
+
const { root: root25, item: item3, header: header3, chevronFor, panel: panel3 } = useStyles22({ className });
|
|
2445
2591
|
const { testId: dataTestId, slot } = useTestId("layout", testId);
|
|
2446
2592
|
const toggle = (id) => {
|
|
2447
2593
|
setOpen((current2) => {
|
|
@@ -2450,19 +2596,19 @@ var Accordion = (0, import_react49.forwardRef)(function Accordion2({ items, mult
|
|
|
2450
2596
|
return multiple ? [...current2, id] : [id];
|
|
2451
2597
|
});
|
|
2452
2598
|
};
|
|
2453
|
-
return /* @__PURE__ */ (0,
|
|
2599
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)("div", { ref, className: root25, "data-testid": dataTestId, children: items.map((it) => {
|
|
2454
2600
|
const isOpen = open.includes(it.id);
|
|
2455
2601
|
const panelId = `accordion-panel-${it.id}`;
|
|
2456
2602
|
const headerId = `accordion-header-${it.id}`;
|
|
2457
2603
|
const itemSlot = slot(`item-${it.id}`);
|
|
2458
|
-
return /* @__PURE__ */ (0,
|
|
2604
|
+
return /* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(
|
|
2459
2605
|
"div",
|
|
2460
2606
|
{
|
|
2461
2607
|
className: item3,
|
|
2462
2608
|
"data-testid": itemSlot,
|
|
2463
2609
|
"data-state": states({ expanded: isOpen }),
|
|
2464
2610
|
children: [
|
|
2465
|
-
/* @__PURE__ */ (0,
|
|
2611
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsxs)(
|
|
2466
2612
|
"button",
|
|
2467
2613
|
{
|
|
2468
2614
|
type: "button",
|
|
@@ -2474,11 +2620,11 @@ var Accordion = (0, import_react49.forwardRef)(function Accordion2({ items, mult
|
|
|
2474
2620
|
onClick: () => toggle(it.id),
|
|
2475
2621
|
children: [
|
|
2476
2622
|
it.title,
|
|
2477
|
-
/* @__PURE__ */ (0,
|
|
2623
|
+
/* @__PURE__ */ (0, import_jsx_runtime35.jsx)(ChevronDownIcon, { className: chevronFor(isOpen) })
|
|
2478
2624
|
]
|
|
2479
2625
|
}
|
|
2480
2626
|
),
|
|
2481
|
-
isOpen && /* @__PURE__ */ (0,
|
|
2627
|
+
isOpen && /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
|
2482
2628
|
"div",
|
|
2483
2629
|
{
|
|
2484
2630
|
id: panelId,
|
|
@@ -2497,12 +2643,12 @@ var Accordion = (0, import_react49.forwardRef)(function Accordion2({ items, mult
|
|
|
2497
2643
|
});
|
|
2498
2644
|
|
|
2499
2645
|
// src/components/breadcrumbs/index.tsx
|
|
2500
|
-
var
|
|
2646
|
+
var import_react53 = require("react");
|
|
2501
2647
|
|
|
2502
2648
|
// src/components/icons/chevron-right/index.tsx
|
|
2503
|
-
var
|
|
2649
|
+
var import_jsx_runtime36 = require("react/jsx-runtime");
|
|
2504
2650
|
function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
2505
|
-
return /* @__PURE__ */ (0,
|
|
2651
|
+
return /* @__PURE__ */ (0, import_jsx_runtime36.jsx)(
|
|
2506
2652
|
"svg",
|
|
2507
2653
|
{
|
|
2508
2654
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2516,52 +2662,52 @@ function ChevronRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
2516
2662
|
strokeLinejoin: "round",
|
|
2517
2663
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
2518
2664
|
...rest,
|
|
2519
|
-
children: /* @__PURE__ */ (0,
|
|
2665
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime36.jsx)("path", { d: "m9 18 6-6-6-6" })
|
|
2520
2666
|
}
|
|
2521
2667
|
);
|
|
2522
2668
|
}
|
|
2523
2669
|
|
|
2524
2670
|
// src/components/breadcrumbs/use-styles.ts
|
|
2525
|
-
var
|
|
2671
|
+
var import_react52 = require("react");
|
|
2526
2672
|
|
|
2527
2673
|
// src/components/breadcrumbs/use-styles.css.ts
|
|
2528
2674
|
var crumb = "use-styles_crumb__7u0du61";
|
|
2529
2675
|
var current = "use-styles_current__7u0du62";
|
|
2530
|
-
var
|
|
2676
|
+
var root17 = "use-styles_root__7u0du60";
|
|
2531
2677
|
var separator = "use-styles_separator__7u0du63";
|
|
2532
2678
|
|
|
2533
2679
|
// src/components/breadcrumbs/use-styles.ts
|
|
2534
|
-
function
|
|
2680
|
+
function useStyles23({ className }) {
|
|
2535
2681
|
const { themeClass } = useTheme();
|
|
2536
|
-
const
|
|
2537
|
-
() => [themeClass,
|
|
2682
|
+
const root25 = (0, import_react52.useMemo)(
|
|
2683
|
+
() => [themeClass, root17, className].filter(Boolean).join(" "),
|
|
2538
2684
|
[themeClass, className]
|
|
2539
2685
|
);
|
|
2540
|
-
return { root:
|
|
2686
|
+
return { root: root25, crumb, current, separator };
|
|
2541
2687
|
}
|
|
2542
2688
|
|
|
2543
2689
|
// src/components/breadcrumbs/index.tsx
|
|
2544
|
-
var
|
|
2545
|
-
var Breadcrumbs = (0,
|
|
2546
|
-
const { root:
|
|
2690
|
+
var import_jsx_runtime37 = require("react/jsx-runtime");
|
|
2691
|
+
var Breadcrumbs = (0, import_react53.forwardRef)(function Breadcrumbs2({ items, className, testId, ...rest }, ref) {
|
|
2692
|
+
const { root: root25, crumb: crumb2, current: current2, separator: separator2 } = useStyles23({ className });
|
|
2547
2693
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
2548
|
-
return /* @__PURE__ */ (0,
|
|
2694
|
+
return /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("nav", { ref, "aria-label": "Breadcrumb", className: root25, "data-testid": dataTestId, ...rest, children: items.map((item3, index) => {
|
|
2549
2695
|
const isLast = index === items.length - 1;
|
|
2550
2696
|
const key = index;
|
|
2551
|
-
return /* @__PURE__ */ (0,
|
|
2552
|
-
isLast ? /* @__PURE__ */ (0,
|
|
2553
|
-
!isLast && /* @__PURE__ */ (0,
|
|
2697
|
+
return /* @__PURE__ */ (0, import_jsx_runtime37.jsxs)(import_react53.Fragment, { children: [
|
|
2698
|
+
isLast ? /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("span", { className: current2, "aria-current": "page", "data-testid": slot(`crumb-${index}`), children: item3.label }) : item3.href ? /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("a", { className: crumb2, href: item3.href, "data-testid": slot(`crumb-${index}`), children: item3.label }) : /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("span", { className: crumb2, "data-testid": slot(`crumb-${index}`), children: item3.label }),
|
|
2699
|
+
!isLast && /* @__PURE__ */ (0, import_jsx_runtime37.jsx)("span", { className: separator2, children: /* @__PURE__ */ (0, import_jsx_runtime37.jsx)(ChevronRightIcon, { size: 14 }) })
|
|
2554
2700
|
] }, key);
|
|
2555
2701
|
}) });
|
|
2556
2702
|
});
|
|
2557
2703
|
|
|
2558
2704
|
// src/components/pagination/index.tsx
|
|
2559
|
-
var
|
|
2705
|
+
var import_react55 = require("react");
|
|
2560
2706
|
|
|
2561
2707
|
// src/components/icons/chevron-left/index.tsx
|
|
2562
|
-
var
|
|
2708
|
+
var import_jsx_runtime38 = require("react/jsx-runtime");
|
|
2563
2709
|
function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
2564
|
-
return /* @__PURE__ */ (0,
|
|
2710
|
+
return /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|
|
2565
2711
|
"svg",
|
|
2566
2712
|
{
|
|
2567
2713
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2575,27 +2721,27 @@ function ChevronLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
2575
2721
|
strokeLinejoin: "round",
|
|
2576
2722
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
2577
2723
|
...rest,
|
|
2578
|
-
children: /* @__PURE__ */ (0,
|
|
2724
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("path", { d: "m15 18-6-6 6-6" })
|
|
2579
2725
|
}
|
|
2580
2726
|
);
|
|
2581
2727
|
}
|
|
2582
2728
|
|
|
2583
2729
|
// src/components/pagination/use-styles.ts
|
|
2584
|
-
var
|
|
2730
|
+
var import_react54 = require("react");
|
|
2585
2731
|
|
|
2586
2732
|
// src/components/pagination/use-styles.css.ts
|
|
2587
2733
|
var ellipsis = "use-styles_ellipsis__1azgzoh3";
|
|
2588
2734
|
var nav = "use-styles_nav__1azgzoh4";
|
|
2589
2735
|
var pageActive = "use-styles_pageActive__1azgzoh2";
|
|
2590
2736
|
var pageBtn = "use-styles_pageBtn__1azgzoh1";
|
|
2591
|
-
var
|
|
2737
|
+
var root18 = "use-styles_root__1azgzoh0";
|
|
2592
2738
|
|
|
2593
2739
|
// src/components/pagination/use-styles.ts
|
|
2594
|
-
function
|
|
2740
|
+
function useStyles24() {
|
|
2595
2741
|
const { themeClass } = useTheme();
|
|
2596
|
-
return (0,
|
|
2742
|
+
return (0, import_react54.useMemo)(
|
|
2597
2743
|
() => ({
|
|
2598
|
-
root: [themeClass,
|
|
2744
|
+
root: [themeClass, root18].filter(Boolean).join(" "),
|
|
2599
2745
|
pageBtnFor: (active2) => [pageBtn, active2 && pageActive].filter(Boolean).join(" "),
|
|
2600
2746
|
ellipsis,
|
|
2601
2747
|
nav: [pageBtn, nav].join(" ")
|
|
@@ -2605,7 +2751,7 @@ function useStyles23() {
|
|
|
2605
2751
|
}
|
|
2606
2752
|
|
|
2607
2753
|
// src/components/pagination/index.tsx
|
|
2608
|
-
var
|
|
2754
|
+
var import_jsx_runtime39 = require("react/jsx-runtime");
|
|
2609
2755
|
function buildItems(count, page, siblingCount) {
|
|
2610
2756
|
const total = Math.max(1, count);
|
|
2611
2757
|
const first = 1;
|
|
@@ -2619,15 +2765,15 @@ function buildItems(count, page, siblingCount) {
|
|
|
2619
2765
|
if (last > first) items.push(last);
|
|
2620
2766
|
return items;
|
|
2621
2767
|
}
|
|
2622
|
-
var Pagination = (0,
|
|
2623
|
-
const { root:
|
|
2768
|
+
var Pagination = (0, import_react55.forwardRef)(function Pagination2({ count, page = 1, onChange, siblingCount = 1, testId, ...rest }, ref) {
|
|
2769
|
+
const { root: root25, pageBtnFor, ellipsis: ellipsis2, nav: nav2 } = useStyles24();
|
|
2624
2770
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
2625
2771
|
const total = Math.max(1, count);
|
|
2626
2772
|
const current2 = Math.min(Math.max(1, page), total);
|
|
2627
2773
|
const items = buildItems(total, current2, siblingCount);
|
|
2628
2774
|
const go = (n) => onChange?.(Math.min(Math.max(1, n), total));
|
|
2629
|
-
return /* @__PURE__ */ (0,
|
|
2630
|
-
/* @__PURE__ */ (0,
|
|
2775
|
+
return /* @__PURE__ */ (0, import_jsx_runtime39.jsxs)("nav", { ref, className: root25, "aria-label": "Pagination", "data-testid": dataTestId, ...rest, children: [
|
|
2776
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
2631
2777
|
"button",
|
|
2632
2778
|
{
|
|
2633
2779
|
type: "button",
|
|
@@ -2636,11 +2782,11 @@ var Pagination = (0, import_react53.forwardRef)(function Pagination2({ count, pa
|
|
|
2636
2782
|
disabled: current2 <= 1,
|
|
2637
2783
|
"data-testid": slot("prev"),
|
|
2638
2784
|
onClick: () => go(current2 - 1),
|
|
2639
|
-
children: /* @__PURE__ */ (0,
|
|
2785
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(ChevronLeftIcon, { size: 18 })
|
|
2640
2786
|
}
|
|
2641
2787
|
),
|
|
2642
2788
|
items.map(
|
|
2643
|
-
(item3, index) => item3 === "ellipsis" ? /* @__PURE__ */ (0,
|
|
2789
|
+
(item3, index) => item3 === "ellipsis" ? /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
2644
2790
|
"span",
|
|
2645
2791
|
{
|
|
2646
2792
|
className: ellipsis2,
|
|
@@ -2648,7 +2794,7 @@ var Pagination = (0, import_react53.forwardRef)(function Pagination2({ count, pa
|
|
|
2648
2794
|
children: "\u2026"
|
|
2649
2795
|
},
|
|
2650
2796
|
`ellipsis-${index}`
|
|
2651
|
-
) : /* @__PURE__ */ (0,
|
|
2797
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
2652
2798
|
"button",
|
|
2653
2799
|
{
|
|
2654
2800
|
type: "button",
|
|
@@ -2661,7 +2807,7 @@ var Pagination = (0, import_react53.forwardRef)(function Pagination2({ count, pa
|
|
|
2661
2807
|
item3
|
|
2662
2808
|
)
|
|
2663
2809
|
),
|
|
2664
|
-
/* @__PURE__ */ (0,
|
|
2810
|
+
/* @__PURE__ */ (0, import_jsx_runtime39.jsx)(
|
|
2665
2811
|
"button",
|
|
2666
2812
|
{
|
|
2667
2813
|
type: "button",
|
|
@@ -2670,55 +2816,55 @@ var Pagination = (0, import_react53.forwardRef)(function Pagination2({ count, pa
|
|
|
2670
2816
|
disabled: current2 >= total,
|
|
2671
2817
|
"data-testid": slot("next"),
|
|
2672
2818
|
onClick: () => go(current2 + 1),
|
|
2673
|
-
children: /* @__PURE__ */ (0,
|
|
2819
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(ChevronRightIcon, { size: 18 })
|
|
2674
2820
|
}
|
|
2675
2821
|
)
|
|
2676
2822
|
] });
|
|
2677
2823
|
});
|
|
2678
2824
|
|
|
2679
2825
|
// src/components/stepper/index.tsx
|
|
2680
|
-
var
|
|
2826
|
+
var import_react57 = require("react");
|
|
2681
2827
|
|
|
2682
2828
|
// src/components/stepper/use-styles.ts
|
|
2683
|
-
var
|
|
2829
|
+
var import_react56 = require("react");
|
|
2684
2830
|
|
|
2685
2831
|
// src/components/stepper/use-styles.css.ts
|
|
2686
2832
|
var connector = "use-styles_connector__79pt4e7";
|
|
2687
|
-
var
|
|
2833
|
+
var label7 = "use-styles_label__79pt4e5";
|
|
2688
2834
|
var labelActive = "use-styles_labelActive__79pt4e6";
|
|
2689
2835
|
var marker = "use-styles_marker__79pt4e2";
|
|
2690
2836
|
var markerActive = "use-styles_markerActive__79pt4e3";
|
|
2691
2837
|
var markerDone = "use-styles_markerDone__79pt4e4";
|
|
2692
|
-
var
|
|
2838
|
+
var root19 = "use-styles_root__79pt4e0";
|
|
2693
2839
|
var step = "use-styles_step__79pt4e1";
|
|
2694
2840
|
|
|
2695
2841
|
// src/components/stepper/use-styles.ts
|
|
2696
|
-
function
|
|
2842
|
+
function useStyles25({ className }) {
|
|
2697
2843
|
const { themeClass } = useTheme();
|
|
2698
|
-
return (0,
|
|
2699
|
-
const
|
|
2844
|
+
return (0, import_react56.useMemo)(() => {
|
|
2845
|
+
const root25 = [themeClass, root19, className].filter(Boolean).join(" ");
|
|
2700
2846
|
const markerFor = (state) => [
|
|
2701
2847
|
marker,
|
|
2702
2848
|
state === "active" && markerActive,
|
|
2703
2849
|
state === "done" && markerDone
|
|
2704
2850
|
].filter(Boolean).join(" ");
|
|
2705
|
-
const labelFor = (active2) => [
|
|
2706
|
-
return { root:
|
|
2851
|
+
const labelFor = (active2) => [label7, active2 && labelActive].filter(Boolean).join(" ");
|
|
2852
|
+
return { root: root25, step, connector, markerFor, labelFor };
|
|
2707
2853
|
}, [themeClass, className]);
|
|
2708
2854
|
}
|
|
2709
2855
|
|
|
2710
2856
|
// src/components/stepper/index.tsx
|
|
2711
|
-
var
|
|
2712
|
-
var Stepper = (0,
|
|
2713
|
-
const { root:
|
|
2857
|
+
var import_jsx_runtime40 = require("react/jsx-runtime");
|
|
2858
|
+
var Stepper = (0, import_react57.forwardRef)(function Stepper2({ steps, active: active2 = 0, className, testId, ...rest }, ref) {
|
|
2859
|
+
const { root: root25, step: step2, connector: connector2, markerFor, labelFor } = useStyles25({ className });
|
|
2714
2860
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
2715
|
-
return /* @__PURE__ */ (0,
|
|
2861
|
+
return /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("div", { ref, className: root25, "data-testid": dataTestId, ...rest, children: steps.map((s, index) => {
|
|
2716
2862
|
const state = index < active2 ? "done" : index === active2 ? "active" : "upcoming";
|
|
2717
2863
|
const isActive = state === "active";
|
|
2718
2864
|
return (
|
|
2719
2865
|
// biome-ignore lint/suspicious/noArrayIndexKey: steps are a static, ordered list with no stable id.
|
|
2720
|
-
/* @__PURE__ */ (0,
|
|
2721
|
-
/* @__PURE__ */ (0,
|
|
2866
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(import_react57.Fragment, { children: [
|
|
2867
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsxs)(
|
|
2722
2868
|
"div",
|
|
2723
2869
|
{
|
|
2724
2870
|
className: step2,
|
|
@@ -2726,47 +2872,47 @@ var Stepper = (0, import_react55.forwardRef)(function Stepper2({ steps, active:
|
|
|
2726
2872
|
"data-testid": slot(`step-${index}`),
|
|
2727
2873
|
"data-state": states({ done: state === "done", active: isActive }),
|
|
2728
2874
|
children: [
|
|
2729
|
-
/* @__PURE__ */ (0,
|
|
2730
|
-
/* @__PURE__ */ (0,
|
|
2875
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("span", { className: markerFor(state), children: state === "done" ? /* @__PURE__ */ (0, import_jsx_runtime40.jsx)(CheckIcon, { size: 14 }) : index + 1 }),
|
|
2876
|
+
/* @__PURE__ */ (0, import_jsx_runtime40.jsx)("span", { className: labelFor(isActive), children: s.label })
|
|
2731
2877
|
]
|
|
2732
2878
|
}
|
|
2733
2879
|
),
|
|
2734
|
-
index < steps.length - 1 && /* @__PURE__ */ (0,
|
|
2880
|
+
index < steps.length - 1 && /* @__PURE__ */ (0, import_jsx_runtime40.jsx)("span", { "data-part": "connector", className: connector2 })
|
|
2735
2881
|
] }, index)
|
|
2736
2882
|
);
|
|
2737
2883
|
}) });
|
|
2738
2884
|
});
|
|
2739
2885
|
|
|
2740
2886
|
// src/components/tabs/index.tsx
|
|
2741
|
-
var
|
|
2887
|
+
var import_react59 = require("react");
|
|
2742
2888
|
|
|
2743
2889
|
// src/components/tabs/use-styles.ts
|
|
2744
|
-
var
|
|
2890
|
+
var import_react58 = require("react");
|
|
2745
2891
|
|
|
2746
2892
|
// src/components/tabs/use-styles.css.ts
|
|
2747
2893
|
var panel2 = "use-styles_panel__1l4m7t43";
|
|
2748
|
-
var
|
|
2894
|
+
var root20 = "use-styles_root__1l4m7t40";
|
|
2749
2895
|
var tab = "use-styles_tab__1l4m7t41";
|
|
2750
2896
|
var tabActive = "use-styles_tabActive__1l4m7t42";
|
|
2751
2897
|
|
|
2752
2898
|
// src/components/tabs/use-styles.ts
|
|
2753
|
-
function
|
|
2899
|
+
function useStyles26() {
|
|
2754
2900
|
const { themeClass } = useTheme();
|
|
2755
|
-
return (0,
|
|
2756
|
-
const
|
|
2901
|
+
return (0, import_react58.useMemo)(() => {
|
|
2902
|
+
const root25 = [themeClass, root20].filter(Boolean).join(" ");
|
|
2757
2903
|
const tabClass = (active2) => [tab, active2 && tabActive].filter(Boolean).join(" ");
|
|
2758
|
-
return { root:
|
|
2904
|
+
return { root: root25, tab, tabClass, panel: panel2 };
|
|
2759
2905
|
}, [themeClass]);
|
|
2760
2906
|
}
|
|
2761
2907
|
|
|
2762
2908
|
// src/components/tabs/index.tsx
|
|
2763
|
-
var
|
|
2909
|
+
var import_jsx_runtime41 = require("react/jsx-runtime");
|
|
2764
2910
|
var ICON_SIZE3 = 16;
|
|
2765
|
-
var Tabs = (0,
|
|
2766
|
-
const { root:
|
|
2911
|
+
var Tabs = (0, import_react59.forwardRef)(function Tabs2({ items, value, onChange, testId, ...rest }, ref) {
|
|
2912
|
+
const { root: root25, tabClass, panel: panel3 } = useStyles26();
|
|
2767
2913
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
2768
|
-
const baseId = (0,
|
|
2769
|
-
const tabRefs = (0,
|
|
2914
|
+
const baseId = (0, import_react59.useId)();
|
|
2915
|
+
const tabRefs = (0, import_react59.useRef)([]);
|
|
2770
2916
|
const hasPanels = items.some((item3) => item3.content !== void 0);
|
|
2771
2917
|
const activeIndex = items.findIndex((item3) => item3.value === value);
|
|
2772
2918
|
const tabId = (v) => `${baseId}-tab-${v}`;
|
|
@@ -2798,12 +2944,12 @@ var Tabs = (0, import_react57.forwardRef)(function Tabs2({ items, value, onChang
|
|
|
2798
2944
|
break;
|
|
2799
2945
|
}
|
|
2800
2946
|
};
|
|
2801
|
-
return /* @__PURE__ */ (0,
|
|
2802
|
-
/* @__PURE__ */ (0,
|
|
2947
|
+
return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(import_jsx_runtime41.Fragment, { children: [
|
|
2948
|
+
/* @__PURE__ */ (0, import_jsx_runtime41.jsx)("div", { ref, role: "tablist", className: root25, "data-testid": dataTestId, ...rest, children: items.map((item3, index) => {
|
|
2803
2949
|
const active2 = item3.value === value;
|
|
2804
2950
|
const tabbable = active2 || activeIndex === -1 && index === 0;
|
|
2805
2951
|
const ItemIcon = item3.icon;
|
|
2806
|
-
return /* @__PURE__ */ (0,
|
|
2952
|
+
return /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)(
|
|
2807
2953
|
"button",
|
|
2808
2954
|
{
|
|
2809
2955
|
ref: (el) => {
|
|
@@ -2821,14 +2967,14 @@ var Tabs = (0, import_react57.forwardRef)(function Tabs2({ items, value, onChang
|
|
|
2821
2967
|
onClick: () => onChange?.(item3.value),
|
|
2822
2968
|
onKeyDown: (event) => onKeyDown(event, index),
|
|
2823
2969
|
children: [
|
|
2824
|
-
ItemIcon ? /* @__PURE__ */ (0,
|
|
2970
|
+
ItemIcon ? /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(ItemIcon, { size: ICON_SIZE3 }) : null,
|
|
2825
2971
|
item3.label
|
|
2826
2972
|
]
|
|
2827
2973
|
},
|
|
2828
2974
|
item3.value
|
|
2829
2975
|
);
|
|
2830
2976
|
}) }),
|
|
2831
|
-
hasPanels && items.map((item3) => /* @__PURE__ */ (0,
|
|
2977
|
+
hasPanels && items.map((item3) => /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(
|
|
2832
2978
|
"div",
|
|
2833
2979
|
{
|
|
2834
2980
|
role: "tabpanel",
|
|
@@ -2846,24 +2992,24 @@ var Tabs = (0, import_react57.forwardRef)(function Tabs2({ items, value, onChang
|
|
|
2846
2992
|
});
|
|
2847
2993
|
|
|
2848
2994
|
// src/components/menu/index.tsx
|
|
2849
|
-
var
|
|
2995
|
+
var import_react61 = require("react");
|
|
2850
2996
|
|
|
2851
2997
|
// src/components/menu/use-styles.ts
|
|
2852
|
-
var
|
|
2998
|
+
var import_react60 = require("react");
|
|
2853
2999
|
|
|
2854
3000
|
// src/components/menu/use-styles.css.ts
|
|
2855
3001
|
var danger = "use-styles_danger__1uyxaj3";
|
|
2856
3002
|
var item2 = "use-styles_item__1uyxaj2";
|
|
2857
|
-
var
|
|
3003
|
+
var list2 = "use-styles_list__1uyxaj1 surfaces_panelSurface__1qa7atn1";
|
|
2858
3004
|
var wrapper3 = "use-styles_wrapper__1uyxaj0";
|
|
2859
3005
|
|
|
2860
3006
|
// src/components/menu/use-styles.ts
|
|
2861
|
-
function
|
|
3007
|
+
function useStyles27() {
|
|
2862
3008
|
const { themeClass } = useTheme();
|
|
2863
|
-
return (0,
|
|
3009
|
+
return (0, import_react60.useMemo)(
|
|
2864
3010
|
() => ({
|
|
2865
3011
|
wrapper: [themeClass, wrapper3].filter(Boolean).join(" "),
|
|
2866
|
-
list,
|
|
3012
|
+
list: list2,
|
|
2867
3013
|
item: item2,
|
|
2868
3014
|
dangerItem: [item2, danger].join(" ")
|
|
2869
3015
|
}),
|
|
@@ -2872,24 +3018,24 @@ function useStyles26() {
|
|
|
2872
3018
|
}
|
|
2873
3019
|
|
|
2874
3020
|
// src/components/menu/index.tsx
|
|
2875
|
-
var
|
|
3021
|
+
var import_jsx_runtime42 = require("react/jsx-runtime");
|
|
2876
3022
|
var ICON_SIZE4 = 16;
|
|
2877
3023
|
function assignRef(ref, value) {
|
|
2878
3024
|
if (typeof ref === "function") ref(value);
|
|
2879
3025
|
else if (ref) ref.current = value;
|
|
2880
3026
|
}
|
|
2881
|
-
var Menu = (0,
|
|
2882
|
-
const { wrapper: wrapper4, list:
|
|
3027
|
+
var Menu = (0, import_react61.forwardRef)(function Menu2({ trigger: trigger2, items, testId }, ref) {
|
|
3028
|
+
const { wrapper: wrapper4, list: list3, item: item3, dangerItem } = useStyles27();
|
|
2883
3029
|
const { testId: rootTestId, slot } = useTestId("menu", testId);
|
|
2884
|
-
const [open, setOpen] = (0,
|
|
2885
|
-
const [alignEnd, setAlignEnd] = (0,
|
|
2886
|
-
const rootRef = (0,
|
|
3030
|
+
const [open, setOpen] = (0, import_react61.useState)(false);
|
|
3031
|
+
const [alignEnd, setAlignEnd] = (0, import_react61.useState)(false);
|
|
3032
|
+
const rootRef = (0, import_react61.useRef)(null);
|
|
2887
3033
|
const setRootRef = (node) => {
|
|
2888
3034
|
rootRef.current = node;
|
|
2889
3035
|
assignRef(ref, node);
|
|
2890
3036
|
};
|
|
2891
|
-
const listRef = (0,
|
|
2892
|
-
const triggerRef = (0,
|
|
3037
|
+
const listRef = (0, import_react61.useRef)(null);
|
|
3038
|
+
const triggerRef = (0, import_react61.useRef)(null);
|
|
2893
3039
|
const getMenuItems = () => Array.from(listRef.current?.querySelectorAll('[role="menuitem"]') ?? []);
|
|
2894
3040
|
const focusItemAt = (index) => {
|
|
2895
3041
|
const menuItems = getMenuItems();
|
|
@@ -2901,7 +3047,7 @@ var Menu = (0, import_react59.forwardRef)(function Menu2({ trigger: trigger2, it
|
|
|
2901
3047
|
setOpen(false);
|
|
2902
3048
|
triggerRef.current?.focus();
|
|
2903
3049
|
};
|
|
2904
|
-
(0,
|
|
3050
|
+
(0, import_react61.useLayoutEffect)(() => {
|
|
2905
3051
|
if (!open) {
|
|
2906
3052
|
setAlignEnd(false);
|
|
2907
3053
|
return;
|
|
@@ -2913,7 +3059,7 @@ var Menu = (0, import_react59.forwardRef)(function Menu2({ trigger: trigger2, it
|
|
|
2913
3059
|
const viewport = document.documentElement.clientWidth;
|
|
2914
3060
|
setAlignEnd(rootLeft + listEl.offsetWidth > viewport);
|
|
2915
3061
|
}, [open]);
|
|
2916
|
-
(0,
|
|
3062
|
+
(0, import_react61.useEffect)(() => {
|
|
2917
3063
|
if (!open) return;
|
|
2918
3064
|
listRef.current?.querySelector('[role="menuitem"]')?.focus();
|
|
2919
3065
|
const onDocMouseDown = (event) => {
|
|
@@ -2969,7 +3115,7 @@ var Menu = (0, import_react59.forwardRef)(function Menu2({ trigger: trigger2, it
|
|
|
2969
3115
|
triggerRef.current = node;
|
|
2970
3116
|
assignRef(consumerRef, node);
|
|
2971
3117
|
};
|
|
2972
|
-
const clonedTrigger = (0,
|
|
3118
|
+
const clonedTrigger = (0, import_react61.cloneElement)(trigger2, {
|
|
2973
3119
|
ref: mergedTriggerRef,
|
|
2974
3120
|
"aria-haspopup": "menu",
|
|
2975
3121
|
"aria-expanded": open,
|
|
@@ -2978,7 +3124,7 @@ var Menu = (0, import_react59.forwardRef)(function Menu2({ trigger: trigger2, it
|
|
|
2978
3124
|
setOpen((prev) => !prev);
|
|
2979
3125
|
}
|
|
2980
3126
|
});
|
|
2981
|
-
return /* @__PURE__ */ (0,
|
|
3127
|
+
return /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(
|
|
2982
3128
|
"div",
|
|
2983
3129
|
{
|
|
2984
3130
|
ref: setRootRef,
|
|
@@ -2987,18 +3133,18 @@ var Menu = (0, import_react59.forwardRef)(function Menu2({ trigger: trigger2, it
|
|
|
2987
3133
|
"data-state": open ? "open" : "closed",
|
|
2988
3134
|
children: [
|
|
2989
3135
|
clonedTrigger,
|
|
2990
|
-
open && /* @__PURE__ */ (0,
|
|
3136
|
+
open && /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(
|
|
2991
3137
|
"div",
|
|
2992
3138
|
{
|
|
2993
3139
|
ref: listRef,
|
|
2994
3140
|
role: "menu",
|
|
2995
|
-
className:
|
|
3141
|
+
className: list3,
|
|
2996
3142
|
"data-align": alignEnd ? "end" : "start",
|
|
2997
3143
|
"data-testid": slot("list"),
|
|
2998
3144
|
onKeyDown: onMenuKeyDown,
|
|
2999
3145
|
children: items.map((entry, index) => {
|
|
3000
3146
|
const ItemIcon = entry.icon;
|
|
3001
|
-
return /* @__PURE__ */ (0,
|
|
3147
|
+
return /* @__PURE__ */ (0, import_jsx_runtime42.jsxs)(
|
|
3002
3148
|
"button",
|
|
3003
3149
|
{
|
|
3004
3150
|
type: "button",
|
|
@@ -3011,7 +3157,7 @@ var Menu = (0, import_react59.forwardRef)(function Menu2({ trigger: trigger2, it
|
|
|
3011
3157
|
setOpen(false);
|
|
3012
3158
|
},
|
|
3013
3159
|
children: [
|
|
3014
|
-
ItemIcon ? /* @__PURE__ */ (0,
|
|
3160
|
+
ItemIcon ? /* @__PURE__ */ (0, import_jsx_runtime42.jsx)(ItemIcon, { size: ICON_SIZE4 }) : null,
|
|
3015
3161
|
entry.label
|
|
3016
3162
|
]
|
|
3017
3163
|
},
|
|
@@ -3026,11 +3172,11 @@ var Menu = (0, import_react59.forwardRef)(function Menu2({ trigger: trigger2, it
|
|
|
3026
3172
|
});
|
|
3027
3173
|
|
|
3028
3174
|
// src/components/dialog/index.tsx
|
|
3029
|
-
var
|
|
3175
|
+
var import_react63 = require("react");
|
|
3030
3176
|
var import_react_dom = require("react-dom");
|
|
3031
3177
|
|
|
3032
3178
|
// src/components/dialog/use-styles.ts
|
|
3033
|
-
var
|
|
3179
|
+
var import_react62 = require("react");
|
|
3034
3180
|
|
|
3035
3181
|
// src/components/dialog/use-styles.css.ts
|
|
3036
3182
|
var actions = "use-styles_actions__5tstu83";
|
|
@@ -3039,9 +3185,9 @@ var overlay = "use-styles_overlay__5tstu80";
|
|
|
3039
3185
|
var surface2 = "use-styles_surface__5tstu81";
|
|
3040
3186
|
|
|
3041
3187
|
// src/components/dialog/use-styles.ts
|
|
3042
|
-
function
|
|
3188
|
+
function useStyles28() {
|
|
3043
3189
|
const { themeClass } = useTheme();
|
|
3044
|
-
return (0,
|
|
3190
|
+
return (0, import_react62.useMemo)(
|
|
3045
3191
|
() => ({
|
|
3046
3192
|
overlay: [themeClass, overlay].filter(Boolean).join(" "),
|
|
3047
3193
|
surface: surface2,
|
|
@@ -3053,24 +3199,24 @@ function useStyles27() {
|
|
|
3053
3199
|
}
|
|
3054
3200
|
|
|
3055
3201
|
// src/components/dialog/index.tsx
|
|
3056
|
-
var
|
|
3202
|
+
var import_jsx_runtime43 = require("react/jsx-runtime");
|
|
3057
3203
|
var FOCUSABLE = 'a[href], button:not([disabled]), textarea:not([disabled]), input:not([disabled]), select:not([disabled]), [tabindex]:not([tabindex="-1"])';
|
|
3058
3204
|
function assignRef2(ref, value) {
|
|
3059
3205
|
if (typeof ref === "function") ref(value);
|
|
3060
3206
|
else if (ref) ref.current = value;
|
|
3061
3207
|
}
|
|
3062
|
-
var Dialog = (0,
|
|
3063
|
-
const { overlay: overlay2, surface: surface3, body: body3, actions: actionsClass } =
|
|
3208
|
+
var Dialog = (0, import_react63.forwardRef)(function Dialog2({ open, onClose, title, actions: actions3, children, testId }, ref) {
|
|
3209
|
+
const { overlay: overlay2, surface: surface3, body: body3, actions: actionsClass } = useStyles28();
|
|
3064
3210
|
const { testId: rootTestId, slot } = useTestId("dialog", testId);
|
|
3065
|
-
const surfaceRef = (0,
|
|
3211
|
+
const surfaceRef = (0, import_react63.useRef)(null);
|
|
3066
3212
|
const setSurfaceRef = (node) => {
|
|
3067
3213
|
surfaceRef.current = node;
|
|
3068
3214
|
assignRef2(ref, node);
|
|
3069
3215
|
};
|
|
3070
|
-
const previouslyFocused = (0,
|
|
3071
|
-
const generatedId = (0,
|
|
3216
|
+
const previouslyFocused = (0, import_react63.useRef)(null);
|
|
3217
|
+
const generatedId = (0, import_react63.useId)();
|
|
3072
3218
|
const titleId = title != null ? generatedId : void 0;
|
|
3073
|
-
(0,
|
|
3219
|
+
(0, import_react63.useEffect)(() => {
|
|
3074
3220
|
if (!open) return;
|
|
3075
3221
|
const onKeyDown = (event) => {
|
|
3076
3222
|
if (event.key === "Escape") onClose();
|
|
@@ -3078,13 +3224,13 @@ var Dialog = (0, import_react61.forwardRef)(function Dialog2({ open, onClose, ti
|
|
|
3078
3224
|
document.addEventListener("keydown", onKeyDown);
|
|
3079
3225
|
return () => document.removeEventListener("keydown", onKeyDown);
|
|
3080
3226
|
}, [open, onClose]);
|
|
3081
|
-
(0,
|
|
3227
|
+
(0, import_react63.useEffect)(() => {
|
|
3082
3228
|
if (!open) return;
|
|
3083
3229
|
previouslyFocused.current = document.activeElement;
|
|
3084
3230
|
surfaceRef.current?.focus();
|
|
3085
3231
|
return () => previouslyFocused.current?.focus?.();
|
|
3086
3232
|
}, [open]);
|
|
3087
|
-
(0,
|
|
3233
|
+
(0, import_react63.useEffect)(() => {
|
|
3088
3234
|
if (!open) return;
|
|
3089
3235
|
const previousOverflow = document.body.style.overflow;
|
|
3090
3236
|
document.body.style.overflow = "hidden";
|
|
@@ -3122,7 +3268,7 @@ var Dialog = (0, import_react61.forwardRef)(function Dialog2({ open, onClose, ti
|
|
|
3122
3268
|
};
|
|
3123
3269
|
return (0, import_react_dom.createPortal)(
|
|
3124
3270
|
// biome-ignore lint/a11y/useKeyWithClickEvents: ESC handled by a document keydown listener.
|
|
3125
|
-
/* @__PURE__ */ (0,
|
|
3271
|
+
/* @__PURE__ */ (0, import_jsx_runtime43.jsx)("div", { className: overlay2, "data-testid": slot("overlay"), onClick: onClose, children: /* @__PURE__ */ (0, import_jsx_runtime43.jsxs)(
|
|
3126
3272
|
"div",
|
|
3127
3273
|
{
|
|
3128
3274
|
ref: setSurfaceRef,
|
|
@@ -3135,9 +3281,9 @@ var Dialog = (0, import_react61.forwardRef)(function Dialog2({ open, onClose, ti
|
|
|
3135
3281
|
onClick: stop,
|
|
3136
3282
|
onKeyDown: onSurfaceKeyDown,
|
|
3137
3283
|
children: [
|
|
3138
|
-
title != null && /* @__PURE__ */ (0,
|
|
3139
|
-
children != null && /* @__PURE__ */ (0,
|
|
3140
|
-
actions3 != null && /* @__PURE__ */ (0,
|
|
3284
|
+
title != null && /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(Typography, { variant: "h3", as: "h2", id: titleId, children: title }),
|
|
3285
|
+
children != null && /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("div", { className: body3, children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(Typography, { variant: "body", color: "muted", children }) }),
|
|
3286
|
+
actions3 != null && /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("div", { className: actionsClass, children: actions3 })
|
|
3141
3287
|
]
|
|
3142
3288
|
}
|
|
3143
3289
|
) }),
|
|
@@ -3146,23 +3292,23 @@ var Dialog = (0, import_react61.forwardRef)(function Dialog2({ open, onClose, ti
|
|
|
3146
3292
|
});
|
|
3147
3293
|
|
|
3148
3294
|
// src/components/snackbar/index.tsx
|
|
3149
|
-
var
|
|
3295
|
+
var import_react65 = require("react");
|
|
3150
3296
|
var import_react_dom2 = require("react-dom");
|
|
3151
3297
|
|
|
3152
3298
|
// src/components/snackbar/use-styles.ts
|
|
3153
|
-
var
|
|
3299
|
+
var import_react64 = require("react");
|
|
3154
3300
|
|
|
3155
3301
|
// src/components/snackbar/use-styles.css.ts
|
|
3156
3302
|
var closeBtn = "use-styles_closeBtn__ihzsep2";
|
|
3157
3303
|
var message = "use-styles_message__ihzsep1";
|
|
3158
|
-
var
|
|
3304
|
+
var root21 = "use-styles_root__ihzsep0 surfaces_inkySurface__1qa7atn2";
|
|
3159
3305
|
|
|
3160
3306
|
// src/components/snackbar/use-styles.ts
|
|
3161
|
-
function
|
|
3307
|
+
function useStyles29() {
|
|
3162
3308
|
const { themeClass } = useTheme();
|
|
3163
|
-
return (0,
|
|
3309
|
+
return (0, import_react64.useMemo)(
|
|
3164
3310
|
() => ({
|
|
3165
|
-
root: [themeClass,
|
|
3311
|
+
root: [themeClass, root21].filter(Boolean).join(" "),
|
|
3166
3312
|
message,
|
|
3167
3313
|
closeBtn
|
|
3168
3314
|
}),
|
|
@@ -3171,24 +3317,24 @@ function useStyles28() {
|
|
|
3171
3317
|
}
|
|
3172
3318
|
|
|
3173
3319
|
// src/components/snackbar/index.tsx
|
|
3174
|
-
var
|
|
3320
|
+
var import_jsx_runtime44 = require("react/jsx-runtime");
|
|
3175
3321
|
var DEFAULT_DURATION = 5e3;
|
|
3176
|
-
var Snackbar = (0,
|
|
3177
|
-
const { root:
|
|
3322
|
+
var Snackbar = (0, import_react65.forwardRef)(function Snackbar2({ open, message: message2, action, onClose, duration = DEFAULT_DURATION, testId }, ref) {
|
|
3323
|
+
const { root: root25, message: messageClass, closeBtn: closeBtn2 } = useStyles29();
|
|
3178
3324
|
const { testId: dataTestId, slot } = useTestId("feedback", testId);
|
|
3179
|
-
const onCloseRef = (0,
|
|
3180
|
-
(0,
|
|
3325
|
+
const onCloseRef = (0, import_react65.useRef)(onClose);
|
|
3326
|
+
(0, import_react65.useEffect)(() => {
|
|
3181
3327
|
onCloseRef.current = onClose;
|
|
3182
3328
|
}, [onClose]);
|
|
3183
|
-
const interactingRef = (0,
|
|
3184
|
-
const timeoutRef = (0,
|
|
3185
|
-
const clearTimer = (0,
|
|
3329
|
+
const interactingRef = (0, import_react65.useRef)({ hover: false, focus: false });
|
|
3330
|
+
const timeoutRef = (0, import_react65.useRef)();
|
|
3331
|
+
const clearTimer = (0, import_react65.useCallback)(() => {
|
|
3186
3332
|
if (timeoutRef.current !== void 0) {
|
|
3187
3333
|
clearTimeout(timeoutRef.current);
|
|
3188
3334
|
timeoutRef.current = void 0;
|
|
3189
3335
|
}
|
|
3190
3336
|
}, []);
|
|
3191
|
-
const scheduleTimer = (0,
|
|
3337
|
+
const scheduleTimer = (0, import_react65.useCallback)(() => {
|
|
3192
3338
|
clearTimer();
|
|
3193
3339
|
if (!open || duration == null || !onCloseRef.current) return;
|
|
3194
3340
|
if (interactingRef.current.hover || interactingRef.current.focus) return;
|
|
@@ -3196,7 +3342,7 @@ var Snackbar = (0, import_react63.forwardRef)(function Snackbar2({ open, message
|
|
|
3196
3342
|
onCloseRef.current?.();
|
|
3197
3343
|
}, duration);
|
|
3198
3344
|
}, [open, duration, clearTimer]);
|
|
3199
|
-
(0,
|
|
3345
|
+
(0, import_react65.useEffect)(() => {
|
|
3200
3346
|
scheduleTimer();
|
|
3201
3347
|
return clearTimer;
|
|
3202
3348
|
}, [scheduleTimer, clearTimer]);
|
|
@@ -3218,21 +3364,21 @@ var Snackbar = (0, import_react63.forwardRef)(function Snackbar2({ open, message
|
|
|
3218
3364
|
};
|
|
3219
3365
|
if (!open || typeof document === "undefined") return null;
|
|
3220
3366
|
return (0, import_react_dom2.createPortal)(
|
|
3221
|
-
/* @__PURE__ */ (0,
|
|
3367
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.jsxs)(
|
|
3222
3368
|
"div",
|
|
3223
3369
|
{
|
|
3224
3370
|
ref,
|
|
3225
3371
|
role: "status",
|
|
3226
|
-
className:
|
|
3372
|
+
className: root25,
|
|
3227
3373
|
"data-testid": dataTestId,
|
|
3228
3374
|
onMouseEnter: handleMouseEnter,
|
|
3229
3375
|
onMouseLeave: handleMouseLeave,
|
|
3230
3376
|
onFocus: handleFocus,
|
|
3231
3377
|
onBlur: handleBlur,
|
|
3232
3378
|
children: [
|
|
3233
|
-
/* @__PURE__ */ (0,
|
|
3379
|
+
/* @__PURE__ */ (0, import_jsx_runtime44.jsx)("span", { className: messageClass, "data-testid": slot("message"), children: message2 }),
|
|
3234
3380
|
action,
|
|
3235
|
-
onClose && /* @__PURE__ */ (0,
|
|
3381
|
+
onClose && /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
|
|
3236
3382
|
"button",
|
|
3237
3383
|
{
|
|
3238
3384
|
type: "button",
|
|
@@ -3240,7 +3386,7 @@ var Snackbar = (0, import_react63.forwardRef)(function Snackbar2({ open, message
|
|
|
3240
3386
|
className: closeBtn2,
|
|
3241
3387
|
"data-testid": slot("close"),
|
|
3242
3388
|
onClick: onClose,
|
|
3243
|
-
children: /* @__PURE__ */ (0,
|
|
3389
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(XIcon, { size: 18 })
|
|
3244
3390
|
}
|
|
3245
3391
|
)
|
|
3246
3392
|
]
|
|
@@ -3251,27 +3397,27 @@ var Snackbar = (0, import_react63.forwardRef)(function Snackbar2({ open, message
|
|
|
3251
3397
|
});
|
|
3252
3398
|
|
|
3253
3399
|
// src/components/table/index.tsx
|
|
3254
|
-
var
|
|
3400
|
+
var import_react67 = require("react");
|
|
3255
3401
|
|
|
3256
3402
|
// src/components/table/use-styles.ts
|
|
3257
|
-
var
|
|
3403
|
+
var import_react66 = require("react");
|
|
3258
3404
|
|
|
3259
3405
|
// src/components/table/use-styles.css.ts
|
|
3260
3406
|
var alignRight = "use-styles_alignRight__1n2cz6i3";
|
|
3261
3407
|
var caption = "use-styles_caption__1n2cz6i4";
|
|
3262
|
-
var
|
|
3408
|
+
var root22 = "use-styles_root__1n2cz6i0";
|
|
3263
3409
|
var td = "use-styles_td__1n2cz6i2";
|
|
3264
3410
|
var th = "use-styles_th__1n2cz6i1";
|
|
3265
3411
|
|
|
3266
3412
|
// src/components/table/use-styles.ts
|
|
3267
|
-
function
|
|
3413
|
+
function useStyles30({ className }) {
|
|
3268
3414
|
const { themeClass } = useTheme();
|
|
3269
|
-
const
|
|
3270
|
-
() => [themeClass,
|
|
3415
|
+
const root25 = (0, import_react66.useMemo)(
|
|
3416
|
+
() => [themeClass, root22, className].filter(Boolean).join(" "),
|
|
3271
3417
|
[themeClass, className]
|
|
3272
3418
|
);
|
|
3273
3419
|
return {
|
|
3274
|
-
root:
|
|
3420
|
+
root: root25,
|
|
3275
3421
|
th,
|
|
3276
3422
|
td,
|
|
3277
3423
|
alignRight,
|
|
@@ -3280,87 +3426,87 @@ function useStyles29({ className }) {
|
|
|
3280
3426
|
}
|
|
3281
3427
|
|
|
3282
3428
|
// src/components/table/index.tsx
|
|
3283
|
-
var
|
|
3429
|
+
var import_jsx_runtime45 = require("react/jsx-runtime");
|
|
3284
3430
|
function TableInner({ columns, rows, getRowKey, className, caption: caption2, testId, ...rest }, ref) {
|
|
3285
|
-
const { root:
|
|
3431
|
+
const { root: root25, th: th2, td: td2, alignRight: alignRight2, caption: captionClass } = useStyles30({ className });
|
|
3286
3432
|
const { testId: dataTestId, slot } = useTestId("list", testId);
|
|
3287
3433
|
const headClass = (column) => column.align === "right" ? `${th2} ${alignRight2}` : th2;
|
|
3288
3434
|
const cellClass = (column) => column.align === "right" ? `${td2} ${alignRight2}` : td2;
|
|
3289
|
-
return /* @__PURE__ */ (0,
|
|
3290
|
-
caption2 != null && /* @__PURE__ */ (0,
|
|
3291
|
-
/* @__PURE__ */ (0,
|
|
3292
|
-
/* @__PURE__ */ (0,
|
|
3435
|
+
return /* @__PURE__ */ (0, import_jsx_runtime45.jsxs)("table", { ref, className: root25, "data-testid": dataTestId, ...rest, children: [
|
|
3436
|
+
caption2 != null && /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("caption", { className: captionClass, children: caption2 }),
|
|
3437
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)("thead", { children: /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("tr", { children: columns.map((column) => /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("th", { scope: "col", className: headClass(column), children: column.header }, column.key)) }) }),
|
|
3438
|
+
/* @__PURE__ */ (0, import_jsx_runtime45.jsx)("tbody", { children: rows.map((row, index) => /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("tr", { "data-testid": slot(`row-${index}`), children: columns.map((column) => /* @__PURE__ */ (0, import_jsx_runtime45.jsx)("td", { className: cellClass(column), children: column.render ? column.render(row) : String(row[column.key]) }, column.key)) }, getRowKey ? getRowKey(row, index) : index)) })
|
|
3293
3439
|
] });
|
|
3294
3440
|
}
|
|
3295
|
-
var TableForwarded = (0,
|
|
3441
|
+
var TableForwarded = (0, import_react67.forwardRef)(TableInner);
|
|
3296
3442
|
TableForwarded.displayName = "Table";
|
|
3297
3443
|
var Table = TableForwarded;
|
|
3298
3444
|
|
|
3299
3445
|
// src/components/app-bar/index.tsx
|
|
3300
|
-
var
|
|
3446
|
+
var import_react69 = require("react");
|
|
3301
3447
|
|
|
3302
3448
|
// src/components/app-bar/use-styles.ts
|
|
3303
|
-
var
|
|
3449
|
+
var import_react68 = require("react");
|
|
3304
3450
|
|
|
3305
3451
|
// src/components/app-bar/use-styles.css.ts
|
|
3306
3452
|
var actions2 = "use-styles_actions__1h133nh2";
|
|
3307
3453
|
var brand = "use-styles_brand__1h133nh1";
|
|
3308
|
-
var
|
|
3454
|
+
var root23 = "use-styles_root__1h133nh0";
|
|
3309
3455
|
|
|
3310
3456
|
// src/components/app-bar/use-styles.ts
|
|
3311
|
-
function
|
|
3457
|
+
function useStyles31({ className }) {
|
|
3312
3458
|
const { themeClass } = useTheme();
|
|
3313
|
-
const
|
|
3314
|
-
() => [themeClass,
|
|
3459
|
+
const root25 = (0, import_react68.useMemo)(
|
|
3460
|
+
() => [themeClass, root23, className].filter(Boolean).join(" "),
|
|
3315
3461
|
[themeClass, className]
|
|
3316
3462
|
);
|
|
3317
|
-
return { root:
|
|
3463
|
+
return { root: root25, brand, actions: actions2 };
|
|
3318
3464
|
}
|
|
3319
3465
|
|
|
3320
3466
|
// src/components/app-bar/index.tsx
|
|
3321
|
-
var
|
|
3322
|
-
var AppBar = (0,
|
|
3323
|
-
const styles =
|
|
3467
|
+
var import_jsx_runtime46 = require("react/jsx-runtime");
|
|
3468
|
+
var AppBar = (0, import_react69.forwardRef)(function AppBar2({ brand: brand2, actions: actions3, className, children, testId, ...rest }, ref) {
|
|
3469
|
+
const styles = useStyles31({ className });
|
|
3324
3470
|
const { testId: dataTestId, slot } = useTestId("nav", testId);
|
|
3325
|
-
return /* @__PURE__ */ (0,
|
|
3326
|
-
brand2 !== void 0 ? /* @__PURE__ */ (0,
|
|
3471
|
+
return /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)("header", { ref, className: styles.root, "data-testid": dataTestId, ...rest, children: [
|
|
3472
|
+
brand2 !== void 0 ? /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("div", { className: styles.brand, "data-testid": slot("brand"), children: brand2 }) : null,
|
|
3327
3473
|
children,
|
|
3328
|
-
actions3 !== void 0 ? /* @__PURE__ */ (0,
|
|
3474
|
+
actions3 !== void 0 ? /* @__PURE__ */ (0, import_jsx_runtime46.jsx)("div", { className: styles.actions, "data-testid": slot("actions"), children: actions3 }) : null
|
|
3329
3475
|
] });
|
|
3330
3476
|
});
|
|
3331
3477
|
|
|
3332
3478
|
// src/components/list-item/index.tsx
|
|
3333
|
-
var
|
|
3479
|
+
var import_react71 = require("react");
|
|
3334
3480
|
|
|
3335
3481
|
// src/components/list-item/use-styles.ts
|
|
3336
|
-
var
|
|
3482
|
+
var import_react70 = require("react");
|
|
3337
3483
|
|
|
3338
3484
|
// src/components/list-item/use-styles.css.ts
|
|
3339
3485
|
var content3 = "use-styles_content__kbreq13";
|
|
3340
3486
|
var leading = "use-styles_leading__kbreq12";
|
|
3341
|
-
var
|
|
3487
|
+
var root24 = "use-styles_root__kbreq10";
|
|
3342
3488
|
var selected3 = "use-styles_selected__kbreq11";
|
|
3343
3489
|
var trailing = "use-styles_trailing__kbreq14";
|
|
3344
3490
|
|
|
3345
3491
|
// src/components/list-item/use-styles.ts
|
|
3346
|
-
function
|
|
3492
|
+
function useStyles32({
|
|
3347
3493
|
selected: selected4,
|
|
3348
3494
|
className
|
|
3349
3495
|
}) {
|
|
3350
3496
|
const { themeClass } = useTheme();
|
|
3351
|
-
const
|
|
3352
|
-
() => [themeClass,
|
|
3497
|
+
const root25 = (0, import_react70.useMemo)(
|
|
3498
|
+
() => [themeClass, root24, selected4 && selected3, className].filter(Boolean).join(" "),
|
|
3353
3499
|
[themeClass, selected4, className]
|
|
3354
3500
|
);
|
|
3355
|
-
return { root:
|
|
3501
|
+
return { root: root25, leading, content: content3, trailing };
|
|
3356
3502
|
}
|
|
3357
3503
|
|
|
3358
3504
|
// src/components/list-item/index.tsx
|
|
3359
|
-
var
|
|
3360
|
-
var ListItem = (0,
|
|
3361
|
-
const styles =
|
|
3505
|
+
var import_jsx_runtime47 = require("react/jsx-runtime");
|
|
3506
|
+
var ListItem = (0, import_react71.forwardRef)(function ListItem2({ leading: leading2, trailing: trailing2, selected: selected4, className, testId, children, ...rest }, ref) {
|
|
3507
|
+
const styles = useStyles32({ selected: selected4, className });
|
|
3362
3508
|
const { testId: dataTestId, slot } = useTestId("list", testId);
|
|
3363
|
-
return /* @__PURE__ */ (0,
|
|
3509
|
+
return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
|
|
3364
3510
|
"div",
|
|
3365
3511
|
{
|
|
3366
3512
|
ref,
|
|
@@ -3369,18 +3515,18 @@ var ListItem = (0, import_react69.forwardRef)(function ListItem2({ leading: lead
|
|
|
3369
3515
|
"data-state": states({ selected: selected4 }),
|
|
3370
3516
|
...rest,
|
|
3371
3517
|
children: [
|
|
3372
|
-
leading2 != null && /* @__PURE__ */ (0,
|
|
3373
|
-
/* @__PURE__ */ (0,
|
|
3374
|
-
trailing2 != null && /* @__PURE__ */ (0,
|
|
3518
|
+
leading2 != null && /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("span", { className: styles.leading, "data-testid": slot("leading"), children: leading2 }),
|
|
3519
|
+
/* @__PURE__ */ (0, import_jsx_runtime47.jsx)("span", { className: styles.content, "data-testid": slot("content"), children }),
|
|
3520
|
+
trailing2 != null && /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("span", { className: styles.trailing, "data-testid": slot("trailing"), children: trailing2 })
|
|
3375
3521
|
]
|
|
3376
3522
|
}
|
|
3377
3523
|
);
|
|
3378
3524
|
});
|
|
3379
3525
|
|
|
3380
3526
|
// src/components/icons/alert-circle/index.tsx
|
|
3381
|
-
var
|
|
3527
|
+
var import_jsx_runtime48 = require("react/jsx-runtime");
|
|
3382
3528
|
function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3383
|
-
return /* @__PURE__ */ (0,
|
|
3529
|
+
return /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)(
|
|
3384
3530
|
"svg",
|
|
3385
3531
|
{
|
|
3386
3532
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3395,18 +3541,18 @@ function AlertCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
3395
3541
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3396
3542
|
...rest,
|
|
3397
3543
|
children: [
|
|
3398
|
-
/* @__PURE__ */ (0,
|
|
3399
|
-
/* @__PURE__ */ (0,
|
|
3400
|
-
/* @__PURE__ */ (0,
|
|
3544
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
3545
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("line", { x1: "12", x2: "12", y1: "8", y2: "12" }),
|
|
3546
|
+
/* @__PURE__ */ (0, import_jsx_runtime48.jsx)("line", { x1: "12", x2: "12.01", y1: "16", y2: "16" })
|
|
3401
3547
|
]
|
|
3402
3548
|
}
|
|
3403
3549
|
);
|
|
3404
3550
|
}
|
|
3405
3551
|
|
|
3406
3552
|
// src/components/icons/archive/index.tsx
|
|
3407
|
-
var
|
|
3553
|
+
var import_jsx_runtime49 = require("react/jsx-runtime");
|
|
3408
3554
|
function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3409
|
-
return /* @__PURE__ */ (0,
|
|
3555
|
+
return /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)(
|
|
3410
3556
|
"svg",
|
|
3411
3557
|
{
|
|
3412
3558
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3421,18 +3567,18 @@ function ArchiveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3421
3567
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3422
3568
|
...rest,
|
|
3423
3569
|
children: [
|
|
3424
|
-
/* @__PURE__ */ (0,
|
|
3425
|
-
/* @__PURE__ */ (0,
|
|
3426
|
-
/* @__PURE__ */ (0,
|
|
3570
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("rect", { width: "20", height: "5", x: "2", y: "3", rx: "1" }),
|
|
3571
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("path", { d: "M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8" }),
|
|
3572
|
+
/* @__PURE__ */ (0, import_jsx_runtime49.jsx)("path", { d: "M10 12h4" })
|
|
3427
3573
|
]
|
|
3428
3574
|
}
|
|
3429
3575
|
);
|
|
3430
3576
|
}
|
|
3431
3577
|
|
|
3432
3578
|
// src/components/icons/arrow-down/index.tsx
|
|
3433
|
-
var
|
|
3579
|
+
var import_jsx_runtime50 = require("react/jsx-runtime");
|
|
3434
3580
|
function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3435
|
-
return /* @__PURE__ */ (0,
|
|
3581
|
+
return /* @__PURE__ */ (0, import_jsx_runtime50.jsxs)(
|
|
3436
3582
|
"svg",
|
|
3437
3583
|
{
|
|
3438
3584
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3447,17 +3593,17 @@ function ArrowDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
3447
3593
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3448
3594
|
...rest,
|
|
3449
3595
|
children: [
|
|
3450
|
-
/* @__PURE__ */ (0,
|
|
3451
|
-
/* @__PURE__ */ (0,
|
|
3596
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { d: "M12 5v14" }),
|
|
3597
|
+
/* @__PURE__ */ (0, import_jsx_runtime50.jsx)("path", { d: "m19 12-7 7-7-7" })
|
|
3452
3598
|
]
|
|
3453
3599
|
}
|
|
3454
3600
|
);
|
|
3455
3601
|
}
|
|
3456
3602
|
|
|
3457
3603
|
// src/components/icons/arrow-left/index.tsx
|
|
3458
|
-
var
|
|
3604
|
+
var import_jsx_runtime51 = require("react/jsx-runtime");
|
|
3459
3605
|
function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3460
|
-
return /* @__PURE__ */ (0,
|
|
3606
|
+
return /* @__PURE__ */ (0, import_jsx_runtime51.jsxs)(
|
|
3461
3607
|
"svg",
|
|
3462
3608
|
{
|
|
3463
3609
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3472,17 +3618,17 @@ function ArrowLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
3472
3618
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3473
3619
|
...rest,
|
|
3474
3620
|
children: [
|
|
3475
|
-
/* @__PURE__ */ (0,
|
|
3476
|
-
/* @__PURE__ */ (0,
|
|
3621
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "m12 19-7-7 7-7" }),
|
|
3622
|
+
/* @__PURE__ */ (0, import_jsx_runtime51.jsx)("path", { d: "M19 12H5" })
|
|
3477
3623
|
]
|
|
3478
3624
|
}
|
|
3479
3625
|
);
|
|
3480
3626
|
}
|
|
3481
3627
|
|
|
3482
3628
|
// src/components/icons/arrow-right/index.tsx
|
|
3483
|
-
var
|
|
3629
|
+
var import_jsx_runtime52 = require("react/jsx-runtime");
|
|
3484
3630
|
function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3485
|
-
return /* @__PURE__ */ (0,
|
|
3631
|
+
return /* @__PURE__ */ (0, import_jsx_runtime52.jsxs)(
|
|
3486
3632
|
"svg",
|
|
3487
3633
|
{
|
|
3488
3634
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3497,17 +3643,17 @@ function ArrowRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
|
|
|
3497
3643
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3498
3644
|
...rest,
|
|
3499
3645
|
children: [
|
|
3500
|
-
/* @__PURE__ */ (0,
|
|
3501
|
-
/* @__PURE__ */ (0,
|
|
3646
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { d: "M5 12h14" }),
|
|
3647
|
+
/* @__PURE__ */ (0, import_jsx_runtime52.jsx)("path", { d: "m12 5 7 7-7 7" })
|
|
3502
3648
|
]
|
|
3503
3649
|
}
|
|
3504
3650
|
);
|
|
3505
3651
|
}
|
|
3506
3652
|
|
|
3507
3653
|
// src/components/icons/arrow-up/index.tsx
|
|
3508
|
-
var
|
|
3654
|
+
var import_jsx_runtime53 = require("react/jsx-runtime");
|
|
3509
3655
|
function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3510
|
-
return /* @__PURE__ */ (0,
|
|
3656
|
+
return /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)(
|
|
3511
3657
|
"svg",
|
|
3512
3658
|
{
|
|
3513
3659
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3522,17 +3668,17 @@ function ArrowUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3522
3668
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3523
3669
|
...rest,
|
|
3524
3670
|
children: [
|
|
3525
|
-
/* @__PURE__ */ (0,
|
|
3526
|
-
/* @__PURE__ */ (0,
|
|
3671
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("path", { d: "m5 12 7-7 7 7" }),
|
|
3672
|
+
/* @__PURE__ */ (0, import_jsx_runtime53.jsx)("path", { d: "M12 19V5" })
|
|
3527
3673
|
]
|
|
3528
3674
|
}
|
|
3529
3675
|
);
|
|
3530
3676
|
}
|
|
3531
3677
|
|
|
3532
3678
|
// src/components/icons/at-sign/index.tsx
|
|
3533
|
-
var
|
|
3679
|
+
var import_jsx_runtime54 = require("react/jsx-runtime");
|
|
3534
3680
|
function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3535
|
-
return /* @__PURE__ */ (0,
|
|
3681
|
+
return /* @__PURE__ */ (0, import_jsx_runtime54.jsxs)(
|
|
3536
3682
|
"svg",
|
|
3537
3683
|
{
|
|
3538
3684
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3547,17 +3693,17 @@ function AtSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3547
3693
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3548
3694
|
...rest,
|
|
3549
3695
|
children: [
|
|
3550
|
-
/* @__PURE__ */ (0,
|
|
3551
|
-
/* @__PURE__ */ (0,
|
|
3696
|
+
/* @__PURE__ */ (0, import_jsx_runtime54.jsx)("circle", { cx: "12", cy: "12", r: "4" }),
|
|
3697
|
+
/* @__PURE__ */ (0, import_jsx_runtime54.jsx)("path", { d: "M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8" })
|
|
3552
3698
|
]
|
|
3553
3699
|
}
|
|
3554
3700
|
);
|
|
3555
3701
|
}
|
|
3556
3702
|
|
|
3557
3703
|
// src/components/icons/bell/index.tsx
|
|
3558
|
-
var
|
|
3704
|
+
var import_jsx_runtime55 = require("react/jsx-runtime");
|
|
3559
3705
|
function BellIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3560
|
-
return /* @__PURE__ */ (0,
|
|
3706
|
+
return /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)(
|
|
3561
3707
|
"svg",
|
|
3562
3708
|
{
|
|
3563
3709
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3572,17 +3718,17 @@ function BellIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3572
3718
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3573
3719
|
...rest,
|
|
3574
3720
|
children: [
|
|
3575
|
-
/* @__PURE__ */ (0,
|
|
3576
|
-
/* @__PURE__ */ (0,
|
|
3721
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M6 8a6 6 0 0 1 12 0c0 7 3 9 3 9H3s3-2 3-9" }),
|
|
3722
|
+
/* @__PURE__ */ (0, import_jsx_runtime55.jsx)("path", { d: "M10.3 21a1.94 1.94 0 0 0 3.4 0" })
|
|
3577
3723
|
]
|
|
3578
3724
|
}
|
|
3579
3725
|
);
|
|
3580
3726
|
}
|
|
3581
3727
|
|
|
3582
3728
|
// src/components/icons/bell-off/index.tsx
|
|
3583
|
-
var
|
|
3729
|
+
var import_jsx_runtime56 = require("react/jsx-runtime");
|
|
3584
3730
|
function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3585
|
-
return /* @__PURE__ */ (0,
|
|
3731
|
+
return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)(
|
|
3586
3732
|
"svg",
|
|
3587
3733
|
{
|
|
3588
3734
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3597,19 +3743,19 @@ function BellOffIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3597
3743
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3598
3744
|
...rest,
|
|
3599
3745
|
children: [
|
|
3600
|
-
/* @__PURE__ */ (0,
|
|
3601
|
-
/* @__PURE__ */ (0,
|
|
3602
|
-
/* @__PURE__ */ (0,
|
|
3603
|
-
/* @__PURE__ */ (0,
|
|
3746
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("path", { d: "M8.7 3A6 6 0 0 1 18 8a21.3 21.3 0 0 0 .6 5" }),
|
|
3747
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("path", { d: "M17 17H3s3-2 3-9a4.67 4.67 0 0 1 .3-1.7" }),
|
|
3748
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("path", { d: "M10.3 21a1.94 1.94 0 0 0 3.4 0" }),
|
|
3749
|
+
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("path", { d: "m2 2 20 20" })
|
|
3604
3750
|
]
|
|
3605
3751
|
}
|
|
3606
3752
|
);
|
|
3607
3753
|
}
|
|
3608
3754
|
|
|
3609
3755
|
// src/components/icons/bookmark/index.tsx
|
|
3610
|
-
var
|
|
3756
|
+
var import_jsx_runtime57 = require("react/jsx-runtime");
|
|
3611
3757
|
function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3612
|
-
return /* @__PURE__ */ (0,
|
|
3758
|
+
return /* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
3613
3759
|
"svg",
|
|
3614
3760
|
{
|
|
3615
3761
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3623,15 +3769,15 @@ function BookmarkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
3623
3769
|
strokeLinejoin: "round",
|
|
3624
3770
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3625
3771
|
...rest,
|
|
3626
|
-
children: /* @__PURE__ */ (0,
|
|
3772
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("path", { d: "m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" })
|
|
3627
3773
|
}
|
|
3628
3774
|
);
|
|
3629
3775
|
}
|
|
3630
3776
|
|
|
3631
3777
|
// src/components/icons/calendar/index.tsx
|
|
3632
|
-
var
|
|
3778
|
+
var import_jsx_runtime58 = require("react/jsx-runtime");
|
|
3633
3779
|
function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3634
|
-
return /* @__PURE__ */ (0,
|
|
3780
|
+
return /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)(
|
|
3635
3781
|
"svg",
|
|
3636
3782
|
{
|
|
3637
3783
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3646,19 +3792,19 @@ function CalendarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
3646
3792
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3647
3793
|
...rest,
|
|
3648
3794
|
children: [
|
|
3649
|
-
/* @__PURE__ */ (0,
|
|
3650
|
-
/* @__PURE__ */ (0,
|
|
3651
|
-
/* @__PURE__ */ (0,
|
|
3652
|
-
/* @__PURE__ */ (0,
|
|
3795
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)("path", { d: "M8 2v4" }),
|
|
3796
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)("path", { d: "M16 2v4" }),
|
|
3797
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)("rect", { width: "18", height: "18", x: "3", y: "4", rx: "2" }),
|
|
3798
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)("path", { d: "M3 10h18" })
|
|
3653
3799
|
]
|
|
3654
3800
|
}
|
|
3655
3801
|
);
|
|
3656
3802
|
}
|
|
3657
3803
|
|
|
3658
3804
|
// src/components/icons/camera/index.tsx
|
|
3659
|
-
var
|
|
3805
|
+
var import_jsx_runtime59 = require("react/jsx-runtime");
|
|
3660
3806
|
function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3661
|
-
return /* @__PURE__ */ (0,
|
|
3807
|
+
return /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)(
|
|
3662
3808
|
"svg",
|
|
3663
3809
|
{
|
|
3664
3810
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3673,17 +3819,17 @@ function CameraIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3673
3819
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3674
3820
|
...rest,
|
|
3675
3821
|
children: [
|
|
3676
|
-
/* @__PURE__ */ (0,
|
|
3677
|
-
/* @__PURE__ */ (0,
|
|
3822
|
+
/* @__PURE__ */ (0, import_jsx_runtime59.jsx)("path", { d: "M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3l-2.5-3z" }),
|
|
3823
|
+
/* @__PURE__ */ (0, import_jsx_runtime59.jsx)("circle", { cx: "12", cy: "13", r: "3" })
|
|
3678
3824
|
]
|
|
3679
3825
|
}
|
|
3680
3826
|
);
|
|
3681
3827
|
}
|
|
3682
3828
|
|
|
3683
3829
|
// src/components/icons/chevron-up/index.tsx
|
|
3684
|
-
var
|
|
3830
|
+
var import_jsx_runtime60 = require("react/jsx-runtime");
|
|
3685
3831
|
function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3686
|
-
return /* @__PURE__ */ (0,
|
|
3832
|
+
return /* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
|
|
3687
3833
|
"svg",
|
|
3688
3834
|
{
|
|
3689
3835
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3697,15 +3843,15 @@ function ChevronUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
3697
3843
|
strokeLinejoin: "round",
|
|
3698
3844
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3699
3845
|
...rest,
|
|
3700
|
-
children: /* @__PURE__ */ (0,
|
|
3846
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime60.jsx)("path", { d: "m18 15-6-6-6 6" })
|
|
3701
3847
|
}
|
|
3702
3848
|
);
|
|
3703
3849
|
}
|
|
3704
3850
|
|
|
3705
3851
|
// src/components/icons/chevrons-left/index.tsx
|
|
3706
|
-
var
|
|
3852
|
+
var import_jsx_runtime61 = require("react/jsx-runtime");
|
|
3707
3853
|
function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3708
|
-
return /* @__PURE__ */ (0,
|
|
3854
|
+
return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(
|
|
3709
3855
|
"svg",
|
|
3710
3856
|
{
|
|
3711
3857
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3720,17 +3866,17 @@ function ChevronsLeftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
3720
3866
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3721
3867
|
...rest,
|
|
3722
3868
|
children: [
|
|
3723
|
-
/* @__PURE__ */ (0,
|
|
3724
|
-
/* @__PURE__ */ (0,
|
|
3869
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)("path", { d: "m11 17-5-5 5-5" }),
|
|
3870
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)("path", { d: "m18 17-5-5 5-5" })
|
|
3725
3871
|
]
|
|
3726
3872
|
}
|
|
3727
3873
|
);
|
|
3728
3874
|
}
|
|
3729
3875
|
|
|
3730
3876
|
// src/components/icons/chevrons-right/index.tsx
|
|
3731
|
-
var
|
|
3877
|
+
var import_jsx_runtime62 = require("react/jsx-runtime");
|
|
3732
3878
|
function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3733
|
-
return /* @__PURE__ */ (0,
|
|
3879
|
+
return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)(
|
|
3734
3880
|
"svg",
|
|
3735
3881
|
{
|
|
3736
3882
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3745,17 +3891,17 @@ function ChevronsRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...res
|
|
|
3745
3891
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3746
3892
|
...rest,
|
|
3747
3893
|
children: [
|
|
3748
|
-
/* @__PURE__ */ (0,
|
|
3749
|
-
/* @__PURE__ */ (0,
|
|
3894
|
+
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)("path", { d: "m6 17 5-5-5-5" }),
|
|
3895
|
+
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)("path", { d: "m13 17 5-5-5-5" })
|
|
3750
3896
|
]
|
|
3751
3897
|
}
|
|
3752
3898
|
);
|
|
3753
3899
|
}
|
|
3754
3900
|
|
|
3755
3901
|
// src/components/icons/clipboard/index.tsx
|
|
3756
|
-
var
|
|
3902
|
+
var import_jsx_runtime63 = require("react/jsx-runtime");
|
|
3757
3903
|
function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3758
|
-
return /* @__PURE__ */ (0,
|
|
3904
|
+
return /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)(
|
|
3759
3905
|
"svg",
|
|
3760
3906
|
{
|
|
3761
3907
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3770,17 +3916,17 @@ function ClipboardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
3770
3916
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3771
3917
|
...rest,
|
|
3772
3918
|
children: [
|
|
3773
|
-
/* @__PURE__ */ (0,
|
|
3774
|
-
/* @__PURE__ */ (0,
|
|
3919
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)("rect", { width: "8", height: "4", x: "8", y: "2", rx: "1", ry: "1" }),
|
|
3920
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)("path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" })
|
|
3775
3921
|
]
|
|
3776
3922
|
}
|
|
3777
3923
|
);
|
|
3778
3924
|
}
|
|
3779
3925
|
|
|
3780
3926
|
// src/components/icons/clock/index.tsx
|
|
3781
|
-
var
|
|
3927
|
+
var import_jsx_runtime64 = require("react/jsx-runtime");
|
|
3782
3928
|
function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3783
|
-
return /* @__PURE__ */ (0,
|
|
3929
|
+
return /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)(
|
|
3784
3930
|
"svg",
|
|
3785
3931
|
{
|
|
3786
3932
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3795,17 +3941,17 @@ function ClockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3795
3941
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3796
3942
|
...rest,
|
|
3797
3943
|
children: [
|
|
3798
|
-
/* @__PURE__ */ (0,
|
|
3799
|
-
/* @__PURE__ */ (0,
|
|
3944
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
3945
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)("polyline", { points: "12 6 12 12 16 14" })
|
|
3800
3946
|
]
|
|
3801
3947
|
}
|
|
3802
3948
|
);
|
|
3803
3949
|
}
|
|
3804
3950
|
|
|
3805
3951
|
// src/components/icons/cloud/index.tsx
|
|
3806
|
-
var
|
|
3952
|
+
var import_jsx_runtime65 = require("react/jsx-runtime");
|
|
3807
3953
|
function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3808
|
-
return /* @__PURE__ */ (0,
|
|
3954
|
+
return /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
3809
3955
|
"svg",
|
|
3810
3956
|
{
|
|
3811
3957
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3819,15 +3965,15 @@ function CloudIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3819
3965
|
strokeLinejoin: "round",
|
|
3820
3966
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3821
3967
|
...rest,
|
|
3822
|
-
children: /* @__PURE__ */ (0,
|
|
3968
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("path", { d: "M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z" })
|
|
3823
3969
|
}
|
|
3824
3970
|
);
|
|
3825
3971
|
}
|
|
3826
3972
|
|
|
3827
3973
|
// src/components/icons/copy/index.tsx
|
|
3828
|
-
var
|
|
3974
|
+
var import_jsx_runtime66 = require("react/jsx-runtime");
|
|
3829
3975
|
function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3830
|
-
return /* @__PURE__ */ (0,
|
|
3976
|
+
return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
|
|
3831
3977
|
"svg",
|
|
3832
3978
|
{
|
|
3833
3979
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3842,17 +3988,17 @@ function CopyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3842
3988
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3843
3989
|
...rest,
|
|
3844
3990
|
children: [
|
|
3845
|
-
/* @__PURE__ */ (0,
|
|
3846
|
-
/* @__PURE__ */ (0,
|
|
3991
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)("rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2" }),
|
|
3992
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)("path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2" })
|
|
3847
3993
|
]
|
|
3848
3994
|
}
|
|
3849
3995
|
);
|
|
3850
3996
|
}
|
|
3851
3997
|
|
|
3852
3998
|
// src/components/icons/corner-down-right/index.tsx
|
|
3853
|
-
var
|
|
3999
|
+
var import_jsx_runtime67 = require("react/jsx-runtime");
|
|
3854
4000
|
function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3855
|
-
return /* @__PURE__ */ (0,
|
|
4001
|
+
return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(
|
|
3856
4002
|
"svg",
|
|
3857
4003
|
{
|
|
3858
4004
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3867,17 +4013,17 @@ function CornerDownRightIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...r
|
|
|
3867
4013
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3868
4014
|
...rest,
|
|
3869
4015
|
children: [
|
|
3870
|
-
/* @__PURE__ */ (0,
|
|
3871
|
-
/* @__PURE__ */ (0,
|
|
4016
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)("polyline", { points: "15 10 20 15 15 20" }),
|
|
4017
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)("path", { d: "M4 4v7a4 4 0 0 0 4 4h12" })
|
|
3872
4018
|
]
|
|
3873
4019
|
}
|
|
3874
4020
|
);
|
|
3875
4021
|
}
|
|
3876
4022
|
|
|
3877
4023
|
// src/components/icons/credit-card/index.tsx
|
|
3878
|
-
var
|
|
4024
|
+
var import_jsx_runtime68 = require("react/jsx-runtime");
|
|
3879
4025
|
function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3880
|
-
return /* @__PURE__ */ (0,
|
|
4026
|
+
return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
|
|
3881
4027
|
"svg",
|
|
3882
4028
|
{
|
|
3883
4029
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3892,17 +4038,17 @@ function CreditCardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
|
|
|
3892
4038
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3893
4039
|
...rest,
|
|
3894
4040
|
children: [
|
|
3895
|
-
/* @__PURE__ */ (0,
|
|
3896
|
-
/* @__PURE__ */ (0,
|
|
4041
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)("rect", { width: "20", height: "14", x: "2", y: "5", rx: "2" }),
|
|
4042
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)("line", { x1: "2", x2: "22", y1: "10", y2: "10" })
|
|
3897
4043
|
]
|
|
3898
4044
|
}
|
|
3899
4045
|
);
|
|
3900
4046
|
}
|
|
3901
4047
|
|
|
3902
4048
|
// src/components/icons/dollar-sign/index.tsx
|
|
3903
|
-
var
|
|
4049
|
+
var import_jsx_runtime69 = require("react/jsx-runtime");
|
|
3904
4050
|
function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3905
|
-
return /* @__PURE__ */ (0,
|
|
4051
|
+
return /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(
|
|
3906
4052
|
"svg",
|
|
3907
4053
|
{
|
|
3908
4054
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3917,17 +4063,17 @@ function DollarSignIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
|
|
|
3917
4063
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3918
4064
|
...rest,
|
|
3919
4065
|
children: [
|
|
3920
|
-
/* @__PURE__ */ (0,
|
|
3921
|
-
/* @__PURE__ */ (0,
|
|
4066
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "22" }),
|
|
4067
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)("path", { d: "M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6" })
|
|
3922
4068
|
]
|
|
3923
4069
|
}
|
|
3924
4070
|
);
|
|
3925
4071
|
}
|
|
3926
4072
|
|
|
3927
4073
|
// src/components/icons/download/index.tsx
|
|
3928
|
-
var
|
|
4074
|
+
var import_jsx_runtime70 = require("react/jsx-runtime");
|
|
3929
4075
|
function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3930
|
-
return /* @__PURE__ */ (0,
|
|
4076
|
+
return /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(
|
|
3931
4077
|
"svg",
|
|
3932
4078
|
{
|
|
3933
4079
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3942,18 +4088,18 @@ function DownloadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
3942
4088
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3943
4089
|
...rest,
|
|
3944
4090
|
children: [
|
|
3945
|
-
/* @__PURE__ */ (0,
|
|
3946
|
-
/* @__PURE__ */ (0,
|
|
3947
|
-
/* @__PURE__ */ (0,
|
|
4091
|
+
/* @__PURE__ */ (0, import_jsx_runtime70.jsx)("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
4092
|
+
/* @__PURE__ */ (0, import_jsx_runtime70.jsx)("polyline", { points: "7 10 12 15 17 10" }),
|
|
4093
|
+
/* @__PURE__ */ (0, import_jsx_runtime70.jsx)("line", { x1: "12", x2: "12", y1: "15", y2: "3" })
|
|
3948
4094
|
]
|
|
3949
4095
|
}
|
|
3950
4096
|
);
|
|
3951
4097
|
}
|
|
3952
4098
|
|
|
3953
4099
|
// src/components/icons/external-link/index.tsx
|
|
3954
|
-
var
|
|
4100
|
+
var import_jsx_runtime71 = require("react/jsx-runtime");
|
|
3955
4101
|
function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3956
|
-
return /* @__PURE__ */ (0,
|
|
4102
|
+
return /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
|
|
3957
4103
|
"svg",
|
|
3958
4104
|
{
|
|
3959
4105
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3968,18 +4114,18 @@ function ExternalLinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
3968
4114
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3969
4115
|
...rest,
|
|
3970
4116
|
children: [
|
|
3971
|
-
/* @__PURE__ */ (0,
|
|
3972
|
-
/* @__PURE__ */ (0,
|
|
3973
|
-
/* @__PURE__ */ (0,
|
|
4117
|
+
/* @__PURE__ */ (0, import_jsx_runtime71.jsx)("path", { d: "M15 3h6v6" }),
|
|
4118
|
+
/* @__PURE__ */ (0, import_jsx_runtime71.jsx)("path", { d: "M10 14 21 3" }),
|
|
4119
|
+
/* @__PURE__ */ (0, import_jsx_runtime71.jsx)("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" })
|
|
3974
4120
|
]
|
|
3975
4121
|
}
|
|
3976
4122
|
);
|
|
3977
4123
|
}
|
|
3978
4124
|
|
|
3979
4125
|
// src/components/icons/file/index.tsx
|
|
3980
|
-
var
|
|
4126
|
+
var import_jsx_runtime72 = require("react/jsx-runtime");
|
|
3981
4127
|
function FileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
3982
|
-
return /* @__PURE__ */ (0,
|
|
4128
|
+
return /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
|
|
3983
4129
|
"svg",
|
|
3984
4130
|
{
|
|
3985
4131
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3994,17 +4140,17 @@ function FileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
3994
4140
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
3995
4141
|
...rest,
|
|
3996
4142
|
children: [
|
|
3997
|
-
/* @__PURE__ */ (0,
|
|
3998
|
-
/* @__PURE__ */ (0,
|
|
4143
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
|
|
4144
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" })
|
|
3999
4145
|
]
|
|
4000
4146
|
}
|
|
4001
4147
|
);
|
|
4002
4148
|
}
|
|
4003
4149
|
|
|
4004
4150
|
// src/components/icons/file-text/index.tsx
|
|
4005
|
-
var
|
|
4151
|
+
var import_jsx_runtime73 = require("react/jsx-runtime");
|
|
4006
4152
|
function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4007
|
-
return /* @__PURE__ */ (0,
|
|
4153
|
+
return /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)(
|
|
4008
4154
|
"svg",
|
|
4009
4155
|
{
|
|
4010
4156
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4019,20 +4165,20 @@ function FileTextIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
4019
4165
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4020
4166
|
...rest,
|
|
4021
4167
|
children: [
|
|
4022
|
-
/* @__PURE__ */ (0,
|
|
4023
|
-
/* @__PURE__ */ (0,
|
|
4024
|
-
/* @__PURE__ */ (0,
|
|
4025
|
-
/* @__PURE__ */ (0,
|
|
4026
|
-
/* @__PURE__ */ (0,
|
|
4168
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)("path", { d: "M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z" }),
|
|
4169
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)("path", { d: "M14 2v4a2 2 0 0 0 2 2h4" }),
|
|
4170
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)("path", { d: "M16 13H8" }),
|
|
4171
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)("path", { d: "M16 17H8" }),
|
|
4172
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)("path", { d: "M10 9H8" })
|
|
4027
4173
|
]
|
|
4028
4174
|
}
|
|
4029
4175
|
);
|
|
4030
4176
|
}
|
|
4031
4177
|
|
|
4032
4178
|
// src/components/icons/filter/index.tsx
|
|
4033
|
-
var
|
|
4179
|
+
var import_jsx_runtime74 = require("react/jsx-runtime");
|
|
4034
4180
|
function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4035
|
-
return /* @__PURE__ */ (0,
|
|
4181
|
+
return /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
|
|
4036
4182
|
"svg",
|
|
4037
4183
|
{
|
|
4038
4184
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4046,15 +4192,15 @@ function FilterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4046
4192
|
strokeLinejoin: "round",
|
|
4047
4193
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4048
4194
|
...rest,
|
|
4049
|
-
children: /* @__PURE__ */ (0,
|
|
4195
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("polygon", { points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" })
|
|
4050
4196
|
}
|
|
4051
4197
|
);
|
|
4052
4198
|
}
|
|
4053
4199
|
|
|
4054
4200
|
// src/components/icons/fingerprint/index.tsx
|
|
4055
|
-
var
|
|
4201
|
+
var import_jsx_runtime75 = require("react/jsx-runtime");
|
|
4056
4202
|
function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4057
|
-
return /* @__PURE__ */ (0,
|
|
4203
|
+
return /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(
|
|
4058
4204
|
"svg",
|
|
4059
4205
|
{
|
|
4060
4206
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4069,24 +4215,24 @@ function FingerprintIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
4069
4215
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4070
4216
|
...rest,
|
|
4071
4217
|
children: [
|
|
4072
|
-
/* @__PURE__ */ (0,
|
|
4073
|
-
/* @__PURE__ */ (0,
|
|
4074
|
-
/* @__PURE__ */ (0,
|
|
4075
|
-
/* @__PURE__ */ (0,
|
|
4076
|
-
/* @__PURE__ */ (0,
|
|
4077
|
-
/* @__PURE__ */ (0,
|
|
4078
|
-
/* @__PURE__ */ (0,
|
|
4079
|
-
/* @__PURE__ */ (0,
|
|
4080
|
-
/* @__PURE__ */ (0,
|
|
4218
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("path", { d: "M2 12C2 6.5 6.5 2 12 2a10 10 0 0 1 8 4" }),
|
|
4219
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("path", { d: "M5 19.5C5.5 18 6 15 6 12c0-.7.12-1.37.34-2" }),
|
|
4220
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("path", { d: "M17.29 21.02c.12-.6.43-2.3.5-3.02" }),
|
|
4221
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("path", { d: "M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4" }),
|
|
4222
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("path", { d: "M8.65 22c.21-.66.45-1.32.57-2" }),
|
|
4223
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("path", { d: "M14 13.12c0 2.38 0 6.38-1 8.88" }),
|
|
4224
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("path", { d: "M2 16h.01" }),
|
|
4225
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("path", { d: "M21.8 16c.2-2 .131-5.354 0-6" }),
|
|
4226
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("path", { d: "M9 6.8a6 6 0 0 1 9 5.2c0 .47 0 1.17-.02 2" })
|
|
4081
4227
|
]
|
|
4082
4228
|
}
|
|
4083
4229
|
);
|
|
4084
4230
|
}
|
|
4085
4231
|
|
|
4086
4232
|
// src/components/icons/folder/index.tsx
|
|
4087
|
-
var
|
|
4233
|
+
var import_jsx_runtime76 = require("react/jsx-runtime");
|
|
4088
4234
|
function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4089
|
-
return /* @__PURE__ */ (0,
|
|
4235
|
+
return /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
|
|
4090
4236
|
"svg",
|
|
4091
4237
|
{
|
|
4092
4238
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4100,15 +4246,15 @@ function FolderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4100
4246
|
strokeLinejoin: "round",
|
|
4101
4247
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4102
4248
|
...rest,
|
|
4103
|
-
children: /* @__PURE__ */ (0,
|
|
4249
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("path", { d: "M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z" })
|
|
4104
4250
|
}
|
|
4105
4251
|
);
|
|
4106
4252
|
}
|
|
4107
4253
|
|
|
4108
4254
|
// src/components/icons/folder-open/index.tsx
|
|
4109
|
-
var
|
|
4255
|
+
var import_jsx_runtime77 = require("react/jsx-runtime");
|
|
4110
4256
|
function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4111
|
-
return /* @__PURE__ */ (0,
|
|
4257
|
+
return /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
|
|
4112
4258
|
"svg",
|
|
4113
4259
|
{
|
|
4114
4260
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4122,15 +4268,15 @@ function FolderOpenIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
|
|
|
4122
4268
|
strokeLinejoin: "round",
|
|
4123
4269
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4124
4270
|
...rest,
|
|
4125
|
-
children: /* @__PURE__ */ (0,
|
|
4271
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("path", { d: "m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2" })
|
|
4126
4272
|
}
|
|
4127
4273
|
);
|
|
4128
4274
|
}
|
|
4129
4275
|
|
|
4130
4276
|
// src/components/icons/gift/index.tsx
|
|
4131
|
-
var
|
|
4277
|
+
var import_jsx_runtime78 = require("react/jsx-runtime");
|
|
4132
4278
|
function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4133
|
-
return /* @__PURE__ */ (0,
|
|
4279
|
+
return /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
|
|
4134
4280
|
"svg",
|
|
4135
4281
|
{
|
|
4136
4282
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4145,19 +4291,19 @@ function GiftIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4145
4291
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4146
4292
|
...rest,
|
|
4147
4293
|
children: [
|
|
4148
|
-
/* @__PURE__ */ (0,
|
|
4149
|
-
/* @__PURE__ */ (0,
|
|
4150
|
-
/* @__PURE__ */ (0,
|
|
4151
|
-
/* @__PURE__ */ (0,
|
|
4294
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)("rect", { x: "3", y: "8", width: "18", height: "4", rx: "1" }),
|
|
4295
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)("path", { d: "M12 8v13" }),
|
|
4296
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)("path", { d: "M19 12v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-7" }),
|
|
4297
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)("path", { d: "M7.5 8a2.5 2.5 0 0 1 0-5A4.8 8 0 0 1 12 8a4.8 8 0 0 1 4.5-5 2.5 2.5 0 0 1 0 5" })
|
|
4152
4298
|
]
|
|
4153
4299
|
}
|
|
4154
4300
|
);
|
|
4155
4301
|
}
|
|
4156
4302
|
|
|
4157
4303
|
// src/components/icons/github/index.tsx
|
|
4158
|
-
var
|
|
4304
|
+
var import_jsx_runtime79 = require("react/jsx-runtime");
|
|
4159
4305
|
function GitHubIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4160
|
-
return /* @__PURE__ */ (0,
|
|
4306
|
+
return /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
4161
4307
|
"svg",
|
|
4162
4308
|
{
|
|
4163
4309
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4171,15 +4317,15 @@ function GitHubIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4171
4317
|
strokeLinejoin: "round",
|
|
4172
4318
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4173
4319
|
...rest,
|
|
4174
|
-
children: /* @__PURE__ */ (0,
|
|
4320
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("path", { d: "M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22" })
|
|
4175
4321
|
}
|
|
4176
4322
|
);
|
|
4177
4323
|
}
|
|
4178
4324
|
|
|
4179
4325
|
// src/components/icons/globe/index.tsx
|
|
4180
|
-
var
|
|
4326
|
+
var import_jsx_runtime80 = require("react/jsx-runtime");
|
|
4181
4327
|
function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4182
|
-
return /* @__PURE__ */ (0,
|
|
4328
|
+
return /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(
|
|
4183
4329
|
"svg",
|
|
4184
4330
|
{
|
|
4185
4331
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4194,18 +4340,18 @@ function GlobeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4194
4340
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4195
4341
|
...rest,
|
|
4196
4342
|
children: [
|
|
4197
|
-
/* @__PURE__ */ (0,
|
|
4198
|
-
/* @__PURE__ */ (0,
|
|
4199
|
-
/* @__PURE__ */ (0,
|
|
4343
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
4344
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)("path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20" }),
|
|
4345
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)("path", { d: "M2 12h20" })
|
|
4200
4346
|
]
|
|
4201
4347
|
}
|
|
4202
4348
|
);
|
|
4203
4349
|
}
|
|
4204
4350
|
|
|
4205
4351
|
// src/components/icons/grid/index.tsx
|
|
4206
|
-
var
|
|
4352
|
+
var import_jsx_runtime81 = require("react/jsx-runtime");
|
|
4207
4353
|
function GridIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4208
|
-
return /* @__PURE__ */ (0,
|
|
4354
|
+
return /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)(
|
|
4209
4355
|
"svg",
|
|
4210
4356
|
{
|
|
4211
4357
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4220,20 +4366,20 @@ function GridIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4220
4366
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4221
4367
|
...rest,
|
|
4222
4368
|
children: [
|
|
4223
|
-
/* @__PURE__ */ (0,
|
|
4224
|
-
/* @__PURE__ */ (0,
|
|
4225
|
-
/* @__PURE__ */ (0,
|
|
4226
|
-
/* @__PURE__ */ (0,
|
|
4227
|
-
/* @__PURE__ */ (0,
|
|
4369
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
4370
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)("path", { d: "M3 9h18" }),
|
|
4371
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)("path", { d: "M3 15h18" }),
|
|
4372
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)("path", { d: "M9 3v18" }),
|
|
4373
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)("path", { d: "M15 3v18" })
|
|
4228
4374
|
]
|
|
4229
4375
|
}
|
|
4230
4376
|
);
|
|
4231
4377
|
}
|
|
4232
4378
|
|
|
4233
4379
|
// src/components/icons/heart/index.tsx
|
|
4234
|
-
var
|
|
4380
|
+
var import_jsx_runtime82 = require("react/jsx-runtime");
|
|
4235
4381
|
function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4236
|
-
return /* @__PURE__ */ (0,
|
|
4382
|
+
return /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
|
|
4237
4383
|
"svg",
|
|
4238
4384
|
{
|
|
4239
4385
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4247,15 +4393,15 @@ function HeartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4247
4393
|
strokeLinejoin: "round",
|
|
4248
4394
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4249
4395
|
...rest,
|
|
4250
|
-
children: /* @__PURE__ */ (0,
|
|
4396
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("path", { d: "M19 14c1.49-1.46 3-3.21 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.76 0-3 .5-4.5 2-1.5-1.5-2.74-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4.05 3 5.5l7 7Z" })
|
|
4251
4397
|
}
|
|
4252
4398
|
);
|
|
4253
4399
|
}
|
|
4254
4400
|
|
|
4255
4401
|
// src/components/icons/help-circle/index.tsx
|
|
4256
|
-
var
|
|
4402
|
+
var import_jsx_runtime83 = require("react/jsx-runtime");
|
|
4257
4403
|
function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4258
|
-
return /* @__PURE__ */ (0,
|
|
4404
|
+
return /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)(
|
|
4259
4405
|
"svg",
|
|
4260
4406
|
{
|
|
4261
4407
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4270,18 +4416,18 @@ function HelpCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
|
|
|
4270
4416
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4271
4417
|
...rest,
|
|
4272
4418
|
children: [
|
|
4273
|
-
/* @__PURE__ */ (0,
|
|
4274
|
-
/* @__PURE__ */ (0,
|
|
4275
|
-
/* @__PURE__ */ (0,
|
|
4419
|
+
/* @__PURE__ */ (0, import_jsx_runtime83.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
4420
|
+
/* @__PURE__ */ (0, import_jsx_runtime83.jsx)("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
|
|
4421
|
+
/* @__PURE__ */ (0, import_jsx_runtime83.jsx)("path", { d: "M12 17h.01" })
|
|
4276
4422
|
]
|
|
4277
4423
|
}
|
|
4278
4424
|
);
|
|
4279
4425
|
}
|
|
4280
4426
|
|
|
4281
4427
|
// src/components/icons/home/index.tsx
|
|
4282
|
-
var
|
|
4428
|
+
var import_jsx_runtime84 = require("react/jsx-runtime");
|
|
4283
4429
|
function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4284
|
-
return /* @__PURE__ */ (0,
|
|
4430
|
+
return /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)(
|
|
4285
4431
|
"svg",
|
|
4286
4432
|
{
|
|
4287
4433
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4296,17 +4442,17 @@ function HomeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4296
4442
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4297
4443
|
...rest,
|
|
4298
4444
|
children: [
|
|
4299
|
-
/* @__PURE__ */ (0,
|
|
4300
|
-
/* @__PURE__ */ (0,
|
|
4445
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)("path", { d: "m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" }),
|
|
4446
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)("polyline", { points: "9 22 9 12 15 12 15 22" })
|
|
4301
4447
|
]
|
|
4302
4448
|
}
|
|
4303
4449
|
);
|
|
4304
4450
|
}
|
|
4305
4451
|
|
|
4306
4452
|
// src/components/icons/image/index.tsx
|
|
4307
|
-
var
|
|
4453
|
+
var import_jsx_runtime85 = require("react/jsx-runtime");
|
|
4308
4454
|
function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4309
|
-
return /* @__PURE__ */ (0,
|
|
4455
|
+
return /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
|
|
4310
4456
|
"svg",
|
|
4311
4457
|
{
|
|
4312
4458
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4321,18 +4467,18 @@ function ImageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4321
4467
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4322
4468
|
...rest,
|
|
4323
4469
|
children: [
|
|
4324
|
-
/* @__PURE__ */ (0,
|
|
4325
|
-
/* @__PURE__ */ (0,
|
|
4326
|
-
/* @__PURE__ */ (0,
|
|
4470
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2", ry: "2" }),
|
|
4471
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("circle", { cx: "9", cy: "9", r: "2" }),
|
|
4472
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("path", { d: "m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21" })
|
|
4327
4473
|
]
|
|
4328
4474
|
}
|
|
4329
4475
|
);
|
|
4330
4476
|
}
|
|
4331
4477
|
|
|
4332
4478
|
// src/components/icons/inbox/index.tsx
|
|
4333
|
-
var
|
|
4479
|
+
var import_jsx_runtime86 = require("react/jsx-runtime");
|
|
4334
4480
|
function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4335
|
-
return /* @__PURE__ */ (0,
|
|
4481
|
+
return /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(
|
|
4336
4482
|
"svg",
|
|
4337
4483
|
{
|
|
4338
4484
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4347,17 +4493,17 @@ function InboxIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4347
4493
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4348
4494
|
...rest,
|
|
4349
4495
|
children: [
|
|
4350
|
-
/* @__PURE__ */ (0,
|
|
4351
|
-
/* @__PURE__ */ (0,
|
|
4496
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("polyline", { points: "22 12 16 12 14 15 10 15 8 12 2 12" }),
|
|
4497
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("path", { d: "M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z" })
|
|
4352
4498
|
]
|
|
4353
4499
|
}
|
|
4354
4500
|
);
|
|
4355
4501
|
}
|
|
4356
4502
|
|
|
4357
4503
|
// src/components/icons/key/index.tsx
|
|
4358
|
-
var
|
|
4504
|
+
var import_jsx_runtime87 = require("react/jsx-runtime");
|
|
4359
4505
|
function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4360
|
-
return /* @__PURE__ */ (0,
|
|
4506
|
+
return /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
|
|
4361
4507
|
"svg",
|
|
4362
4508
|
{
|
|
4363
4509
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4372,18 +4518,18 @@ function KeyIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4372
4518
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4373
4519
|
...rest,
|
|
4374
4520
|
children: [
|
|
4375
|
-
/* @__PURE__ */ (0,
|
|
4376
|
-
/* @__PURE__ */ (0,
|
|
4377
|
-
/* @__PURE__ */ (0,
|
|
4521
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("path", { d: "m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L21 4.5" }),
|
|
4522
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("path", { d: "m21 2-9.6 9.6" }),
|
|
4523
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("circle", { cx: "7.5", cy: "15.5", r: "5.5" })
|
|
4378
4524
|
]
|
|
4379
4525
|
}
|
|
4380
4526
|
);
|
|
4381
4527
|
}
|
|
4382
4528
|
|
|
4383
4529
|
// src/components/icons/layout/index.tsx
|
|
4384
|
-
var
|
|
4530
|
+
var import_jsx_runtime88 = require("react/jsx-runtime");
|
|
4385
4531
|
function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4386
|
-
return /* @__PURE__ */ (0,
|
|
4532
|
+
return /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)(
|
|
4387
4533
|
"svg",
|
|
4388
4534
|
{
|
|
4389
4535
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4398,19 +4544,19 @@ function LayoutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4398
4544
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4399
4545
|
...rest,
|
|
4400
4546
|
children: [
|
|
4401
|
-
/* @__PURE__ */ (0,
|
|
4402
|
-
/* @__PURE__ */ (0,
|
|
4403
|
-
/* @__PURE__ */ (0,
|
|
4404
|
-
/* @__PURE__ */ (0,
|
|
4547
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)("rect", { width: "7", height: "9", x: "3", y: "3", rx: "1" }),
|
|
4548
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)("rect", { width: "7", height: "5", x: "14", y: "3", rx: "1" }),
|
|
4549
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)("rect", { width: "7", height: "9", x: "14", y: "12", rx: "1" }),
|
|
4550
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)("rect", { width: "7", height: "5", x: "3", y: "16", rx: "1" })
|
|
4405
4551
|
]
|
|
4406
4552
|
}
|
|
4407
4553
|
);
|
|
4408
4554
|
}
|
|
4409
4555
|
|
|
4410
4556
|
// src/components/icons/link/index.tsx
|
|
4411
|
-
var
|
|
4557
|
+
var import_jsx_runtime89 = require("react/jsx-runtime");
|
|
4412
4558
|
function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4413
|
-
return /* @__PURE__ */ (0,
|
|
4559
|
+
return /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)(
|
|
4414
4560
|
"svg",
|
|
4415
4561
|
{
|
|
4416
4562
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4425,17 +4571,17 @@ function LinkIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4425
4571
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4426
4572
|
...rest,
|
|
4427
4573
|
children: [
|
|
4428
|
-
/* @__PURE__ */ (0,
|
|
4429
|
-
/* @__PURE__ */ (0,
|
|
4574
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" }),
|
|
4575
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" })
|
|
4430
4576
|
]
|
|
4431
4577
|
}
|
|
4432
4578
|
);
|
|
4433
4579
|
}
|
|
4434
4580
|
|
|
4435
4581
|
// src/components/icons/list/index.tsx
|
|
4436
|
-
var
|
|
4582
|
+
var import_jsx_runtime90 = require("react/jsx-runtime");
|
|
4437
4583
|
function ListIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4438
|
-
return /* @__PURE__ */ (0,
|
|
4584
|
+
return /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)(
|
|
4439
4585
|
"svg",
|
|
4440
4586
|
{
|
|
4441
4587
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4450,21 +4596,21 @@ function ListIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4450
4596
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4451
4597
|
...rest,
|
|
4452
4598
|
children: [
|
|
4453
|
-
/* @__PURE__ */ (0,
|
|
4454
|
-
/* @__PURE__ */ (0,
|
|
4455
|
-
/* @__PURE__ */ (0,
|
|
4456
|
-
/* @__PURE__ */ (0,
|
|
4457
|
-
/* @__PURE__ */ (0,
|
|
4458
|
-
/* @__PURE__ */ (0,
|
|
4599
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "8", x2: "21", y1: "6", y2: "6" }),
|
|
4600
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "8", x2: "21", y1: "12", y2: "12" }),
|
|
4601
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "8", x2: "21", y1: "18", y2: "18" }),
|
|
4602
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "3", x2: "3.01", y1: "6", y2: "6" }),
|
|
4603
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "3", x2: "3.01", y1: "12", y2: "12" }),
|
|
4604
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)("line", { x1: "3", x2: "3.01", y1: "18", y2: "18" })
|
|
4459
4605
|
]
|
|
4460
4606
|
}
|
|
4461
4607
|
);
|
|
4462
4608
|
}
|
|
4463
4609
|
|
|
4464
4610
|
// src/components/icons/loader/index.tsx
|
|
4465
|
-
var
|
|
4611
|
+
var import_jsx_runtime91 = require("react/jsx-runtime");
|
|
4466
4612
|
function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4467
|
-
return /* @__PURE__ */ (0,
|
|
4613
|
+
return /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)(
|
|
4468
4614
|
"svg",
|
|
4469
4615
|
{
|
|
4470
4616
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4479,23 +4625,23 @@ function LoaderIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4479
4625
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4480
4626
|
...rest,
|
|
4481
4627
|
children: [
|
|
4482
|
-
/* @__PURE__ */ (0,
|
|
4483
|
-
/* @__PURE__ */ (0,
|
|
4484
|
-
/* @__PURE__ */ (0,
|
|
4485
|
-
/* @__PURE__ */ (0,
|
|
4486
|
-
/* @__PURE__ */ (0,
|
|
4487
|
-
/* @__PURE__ */ (0,
|
|
4488
|
-
/* @__PURE__ */ (0,
|
|
4489
|
-
/* @__PURE__ */ (0,
|
|
4628
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "6" }),
|
|
4629
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)("line", { x1: "12", x2: "12", y1: "18", y2: "22" }),
|
|
4630
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)("line", { x1: "4.93", x2: "7.76", y1: "4.93", y2: "7.76" }),
|
|
4631
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)("line", { x1: "16.24", x2: "19.07", y1: "16.24", y2: "19.07" }),
|
|
4632
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)("line", { x1: "2", x2: "6", y1: "12", y2: "12" }),
|
|
4633
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)("line", { x1: "18", x2: "22", y1: "12", y2: "12" }),
|
|
4634
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)("line", { x1: "4.93", x2: "7.76", y1: "19.07", y2: "16.24" }),
|
|
4635
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)("line", { x1: "16.24", x2: "19.07", y1: "7.76", y2: "4.93" })
|
|
4490
4636
|
]
|
|
4491
4637
|
}
|
|
4492
4638
|
);
|
|
4493
4639
|
}
|
|
4494
4640
|
|
|
4495
4641
|
// src/components/icons/lock/index.tsx
|
|
4496
|
-
var
|
|
4642
|
+
var import_jsx_runtime92 = require("react/jsx-runtime");
|
|
4497
4643
|
function LockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4498
|
-
return /* @__PURE__ */ (0,
|
|
4644
|
+
return /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(
|
|
4499
4645
|
"svg",
|
|
4500
4646
|
{
|
|
4501
4647
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4510,17 +4656,17 @@ function LockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4510
4656
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4511
4657
|
...rest,
|
|
4512
4658
|
children: [
|
|
4513
|
-
/* @__PURE__ */ (0,
|
|
4514
|
-
/* @__PURE__ */ (0,
|
|
4659
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
|
|
4660
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)("path", { d: "M7 11V7a5 5 0 0 1 10 0v4" })
|
|
4515
4661
|
]
|
|
4516
4662
|
}
|
|
4517
4663
|
);
|
|
4518
4664
|
}
|
|
4519
4665
|
|
|
4520
4666
|
// src/components/icons/log-in/index.tsx
|
|
4521
|
-
var
|
|
4667
|
+
var import_jsx_runtime93 = require("react/jsx-runtime");
|
|
4522
4668
|
function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4523
|
-
return /* @__PURE__ */ (0,
|
|
4669
|
+
return /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(
|
|
4524
4670
|
"svg",
|
|
4525
4671
|
{
|
|
4526
4672
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4535,18 +4681,18 @@ function LogInIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4535
4681
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4536
4682
|
...rest,
|
|
4537
4683
|
children: [
|
|
4538
|
-
/* @__PURE__ */ (0,
|
|
4539
|
-
/* @__PURE__ */ (0,
|
|
4540
|
-
/* @__PURE__ */ (0,
|
|
4684
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)("path", { d: "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" }),
|
|
4685
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)("polyline", { points: "10 17 15 12 10 7" }),
|
|
4686
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)("line", { x1: "15", x2: "3", y1: "12", y2: "12" })
|
|
4541
4687
|
]
|
|
4542
4688
|
}
|
|
4543
4689
|
);
|
|
4544
4690
|
}
|
|
4545
4691
|
|
|
4546
4692
|
// src/components/icons/log-out/index.tsx
|
|
4547
|
-
var
|
|
4693
|
+
var import_jsx_runtime94 = require("react/jsx-runtime");
|
|
4548
4694
|
function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4549
|
-
return /* @__PURE__ */ (0,
|
|
4695
|
+
return /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)(
|
|
4550
4696
|
"svg",
|
|
4551
4697
|
{
|
|
4552
4698
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4561,18 +4707,18 @@ function LogOutIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4561
4707
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4562
4708
|
...rest,
|
|
4563
4709
|
children: [
|
|
4564
|
-
/* @__PURE__ */ (0,
|
|
4565
|
-
/* @__PURE__ */ (0,
|
|
4566
|
-
/* @__PURE__ */ (0,
|
|
4710
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
|
|
4711
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)("polyline", { points: "16 17 21 12 16 7" }),
|
|
4712
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)("line", { x1: "21", x2: "9", y1: "12", y2: "12" })
|
|
4567
4713
|
]
|
|
4568
4714
|
}
|
|
4569
4715
|
);
|
|
4570
4716
|
}
|
|
4571
4717
|
|
|
4572
4718
|
// src/components/icons/mail/index.tsx
|
|
4573
|
-
var
|
|
4719
|
+
var import_jsx_runtime95 = require("react/jsx-runtime");
|
|
4574
4720
|
function MailIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4575
|
-
return /* @__PURE__ */ (0,
|
|
4721
|
+
return /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)(
|
|
4576
4722
|
"svg",
|
|
4577
4723
|
{
|
|
4578
4724
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4587,17 +4733,17 @@ function MailIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4587
4733
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4588
4734
|
...rest,
|
|
4589
4735
|
children: [
|
|
4590
|
-
/* @__PURE__ */ (0,
|
|
4591
|
-
/* @__PURE__ */ (0,
|
|
4736
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)("rect", { width: "20", height: "16", x: "2", y: "4", rx: "2" }),
|
|
4737
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)("path", { d: "m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7" })
|
|
4592
4738
|
]
|
|
4593
4739
|
}
|
|
4594
4740
|
);
|
|
4595
4741
|
}
|
|
4596
4742
|
|
|
4597
4743
|
// src/components/icons/map-pin/index.tsx
|
|
4598
|
-
var
|
|
4744
|
+
var import_jsx_runtime96 = require("react/jsx-runtime");
|
|
4599
4745
|
function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4600
|
-
return /* @__PURE__ */ (0,
|
|
4746
|
+
return /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
|
|
4601
4747
|
"svg",
|
|
4602
4748
|
{
|
|
4603
4749
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4612,17 +4758,17 @@ function MapPinIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4612
4758
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4613
4759
|
...rest,
|
|
4614
4760
|
children: [
|
|
4615
|
-
/* @__PURE__ */ (0,
|
|
4616
|
-
/* @__PURE__ */ (0,
|
|
4761
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("path", { d: "M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0" }),
|
|
4762
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)("circle", { cx: "12", cy: "10", r: "3" })
|
|
4617
4763
|
]
|
|
4618
4764
|
}
|
|
4619
4765
|
);
|
|
4620
4766
|
}
|
|
4621
4767
|
|
|
4622
4768
|
// src/components/icons/maximize/index.tsx
|
|
4623
|
-
var
|
|
4769
|
+
var import_jsx_runtime97 = require("react/jsx-runtime");
|
|
4624
4770
|
function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4625
|
-
return /* @__PURE__ */ (0,
|
|
4771
|
+
return /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)(
|
|
4626
4772
|
"svg",
|
|
4627
4773
|
{
|
|
4628
4774
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4637,19 +4783,19 @@ function MaximizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
4637
4783
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4638
4784
|
...rest,
|
|
4639
4785
|
children: [
|
|
4640
|
-
/* @__PURE__ */ (0,
|
|
4641
|
-
/* @__PURE__ */ (0,
|
|
4642
|
-
/* @__PURE__ */ (0,
|
|
4643
|
-
/* @__PURE__ */ (0,
|
|
4786
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)("path", { d: "M8 3H5a2 2 0 0 0-2 2v3" }),
|
|
4787
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)("path", { d: "M21 8V5a2 2 0 0 0-2-2h-3" }),
|
|
4788
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)("path", { d: "M3 16v3a2 2 0 0 0 2 2h3" }),
|
|
4789
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)("path", { d: "M16 21h3a2 2 0 0 0 2-2v-3" })
|
|
4644
4790
|
]
|
|
4645
4791
|
}
|
|
4646
4792
|
);
|
|
4647
4793
|
}
|
|
4648
4794
|
|
|
4649
4795
|
// src/components/icons/menu/index.tsx
|
|
4650
|
-
var
|
|
4796
|
+
var import_jsx_runtime98 = require("react/jsx-runtime");
|
|
4651
4797
|
function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4652
|
-
return /* @__PURE__ */ (0,
|
|
4798
|
+
return /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)(
|
|
4653
4799
|
"svg",
|
|
4654
4800
|
{
|
|
4655
4801
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4664,18 +4810,18 @@ function MenuIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4664
4810
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4665
4811
|
...rest,
|
|
4666
4812
|
children: [
|
|
4667
|
-
/* @__PURE__ */ (0,
|
|
4668
|
-
/* @__PURE__ */ (0,
|
|
4669
|
-
/* @__PURE__ */ (0,
|
|
4813
|
+
/* @__PURE__ */ (0, import_jsx_runtime98.jsx)("line", { x1: "4", x2: "20", y1: "12", y2: "12" }),
|
|
4814
|
+
/* @__PURE__ */ (0, import_jsx_runtime98.jsx)("line", { x1: "4", x2: "20", y1: "6", y2: "6" }),
|
|
4815
|
+
/* @__PURE__ */ (0, import_jsx_runtime98.jsx)("line", { x1: "4", x2: "20", y1: "18", y2: "18" })
|
|
4670
4816
|
]
|
|
4671
4817
|
}
|
|
4672
4818
|
);
|
|
4673
4819
|
}
|
|
4674
4820
|
|
|
4675
4821
|
// src/components/icons/message-circle/index.tsx
|
|
4676
|
-
var
|
|
4822
|
+
var import_jsx_runtime99 = require("react/jsx-runtime");
|
|
4677
4823
|
function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4678
|
-
return /* @__PURE__ */ (0,
|
|
4824
|
+
return /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
|
|
4679
4825
|
"svg",
|
|
4680
4826
|
{
|
|
4681
4827
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4689,15 +4835,15 @@ function MessageCircleIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...res
|
|
|
4689
4835
|
strokeLinejoin: "round",
|
|
4690
4836
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4691
4837
|
...rest,
|
|
4692
|
-
children: /* @__PURE__ */ (0,
|
|
4838
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)("path", { d: "M7.9 20A9 9 0 1 0 4 16.1L2 22Z" })
|
|
4693
4839
|
}
|
|
4694
4840
|
);
|
|
4695
4841
|
}
|
|
4696
4842
|
|
|
4697
4843
|
// src/components/icons/message-square/index.tsx
|
|
4698
|
-
var
|
|
4844
|
+
var import_jsx_runtime100 = require("react/jsx-runtime");
|
|
4699
4845
|
function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4700
|
-
return /* @__PURE__ */ (0,
|
|
4846
|
+
return /* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
4701
4847
|
"svg",
|
|
4702
4848
|
{
|
|
4703
4849
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4711,15 +4857,15 @@ function MessageSquareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...res
|
|
|
4711
4857
|
strokeLinejoin: "round",
|
|
4712
4858
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4713
4859
|
...rest,
|
|
4714
|
-
children: /* @__PURE__ */ (0,
|
|
4860
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("path", { d: "M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z" })
|
|
4715
4861
|
}
|
|
4716
4862
|
);
|
|
4717
4863
|
}
|
|
4718
4864
|
|
|
4719
4865
|
// src/components/icons/mic/index.tsx
|
|
4720
|
-
var
|
|
4866
|
+
var import_jsx_runtime101 = require("react/jsx-runtime");
|
|
4721
4867
|
function MicIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4722
|
-
return /* @__PURE__ */ (0,
|
|
4868
|
+
return /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)(
|
|
4723
4869
|
"svg",
|
|
4724
4870
|
{
|
|
4725
4871
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4734,18 +4880,18 @@ function MicIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4734
4880
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4735
4881
|
...rest,
|
|
4736
4882
|
children: [
|
|
4737
|
-
/* @__PURE__ */ (0,
|
|
4738
|
-
/* @__PURE__ */ (0,
|
|
4739
|
-
/* @__PURE__ */ (0,
|
|
4883
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)("path", { d: "M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z" }),
|
|
4884
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)("path", { d: "M19 10v2a7 7 0 0 1-14 0v-2" }),
|
|
4885
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)("line", { x1: "12", x2: "12", y1: "19", y2: "22" })
|
|
4740
4886
|
]
|
|
4741
4887
|
}
|
|
4742
4888
|
);
|
|
4743
4889
|
}
|
|
4744
4890
|
|
|
4745
4891
|
// src/components/icons/minimize/index.tsx
|
|
4746
|
-
var
|
|
4892
|
+
var import_jsx_runtime102 = require("react/jsx-runtime");
|
|
4747
4893
|
function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4748
|
-
return /* @__PURE__ */ (0,
|
|
4894
|
+
return /* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(
|
|
4749
4895
|
"svg",
|
|
4750
4896
|
{
|
|
4751
4897
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4760,19 +4906,19 @@ function MinimizeIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
4760
4906
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4761
4907
|
...rest,
|
|
4762
4908
|
children: [
|
|
4763
|
-
/* @__PURE__ */ (0,
|
|
4764
|
-
/* @__PURE__ */ (0,
|
|
4765
|
-
/* @__PURE__ */ (0,
|
|
4766
|
-
/* @__PURE__ */ (0,
|
|
4909
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("path", { d: "M8 3v3a2 2 0 0 1-2 2H3" }),
|
|
4910
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("path", { d: "M21 8h-3a2 2 0 0 1-2-2V3" }),
|
|
4911
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("path", { d: "M3 16h3a2 2 0 0 1 2 2v3" }),
|
|
4912
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("path", { d: "M16 21v-3a2 2 0 0 1 2-2h3" })
|
|
4767
4913
|
]
|
|
4768
4914
|
}
|
|
4769
4915
|
);
|
|
4770
4916
|
}
|
|
4771
4917
|
|
|
4772
4918
|
// src/components/icons/minus/index.tsx
|
|
4773
|
-
var
|
|
4919
|
+
var import_jsx_runtime103 = require("react/jsx-runtime");
|
|
4774
4920
|
function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4775
|
-
return /* @__PURE__ */ (0,
|
|
4921
|
+
return /* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
|
|
4776
4922
|
"svg",
|
|
4777
4923
|
{
|
|
4778
4924
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4786,15 +4932,15 @@ function MinusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4786
4932
|
strokeLinejoin: "round",
|
|
4787
4933
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4788
4934
|
...rest,
|
|
4789
|
-
children: /* @__PURE__ */ (0,
|
|
4935
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime103.jsx)("path", { d: "M5 12h14" })
|
|
4790
4936
|
}
|
|
4791
4937
|
);
|
|
4792
4938
|
}
|
|
4793
4939
|
|
|
4794
4940
|
// src/components/icons/moon/index.tsx
|
|
4795
|
-
var
|
|
4941
|
+
var import_jsx_runtime104 = require("react/jsx-runtime");
|
|
4796
4942
|
function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4797
|
-
return /* @__PURE__ */ (0,
|
|
4943
|
+
return /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
4798
4944
|
"svg",
|
|
4799
4945
|
{
|
|
4800
4946
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4808,15 +4954,15 @@ function MoonIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4808
4954
|
strokeLinejoin: "round",
|
|
4809
4955
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4810
4956
|
...rest,
|
|
4811
|
-
children: /* @__PURE__ */ (0,
|
|
4957
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("path", { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" })
|
|
4812
4958
|
}
|
|
4813
4959
|
);
|
|
4814
4960
|
}
|
|
4815
4961
|
|
|
4816
4962
|
// src/components/icons/more-horizontal/index.tsx
|
|
4817
|
-
var
|
|
4963
|
+
var import_jsx_runtime105 = require("react/jsx-runtime");
|
|
4818
4964
|
function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4819
|
-
return /* @__PURE__ */ (0,
|
|
4965
|
+
return /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)(
|
|
4820
4966
|
"svg",
|
|
4821
4967
|
{
|
|
4822
4968
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4831,18 +4977,18 @@ function MoreHorizontalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...re
|
|
|
4831
4977
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4832
4978
|
...rest,
|
|
4833
4979
|
children: [
|
|
4834
|
-
/* @__PURE__ */ (0,
|
|
4835
|
-
/* @__PURE__ */ (0,
|
|
4836
|
-
/* @__PURE__ */ (0,
|
|
4980
|
+
/* @__PURE__ */ (0, import_jsx_runtime105.jsx)("circle", { cx: "12", cy: "12", r: "1" }),
|
|
4981
|
+
/* @__PURE__ */ (0, import_jsx_runtime105.jsx)("circle", { cx: "19", cy: "12", r: "1" }),
|
|
4982
|
+
/* @__PURE__ */ (0, import_jsx_runtime105.jsx)("circle", { cx: "5", cy: "12", r: "1" })
|
|
4837
4983
|
]
|
|
4838
4984
|
}
|
|
4839
4985
|
);
|
|
4840
4986
|
}
|
|
4841
4987
|
|
|
4842
4988
|
// src/components/icons/more-vertical/index.tsx
|
|
4843
|
-
var
|
|
4989
|
+
var import_jsx_runtime106 = require("react/jsx-runtime");
|
|
4844
4990
|
function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4845
|
-
return /* @__PURE__ */ (0,
|
|
4991
|
+
return /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)(
|
|
4846
4992
|
"svg",
|
|
4847
4993
|
{
|
|
4848
4994
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4857,18 +5003,18 @@ function MoreVerticalIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
4857
5003
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4858
5004
|
...rest,
|
|
4859
5005
|
children: [
|
|
4860
|
-
/* @__PURE__ */ (0,
|
|
4861
|
-
/* @__PURE__ */ (0,
|
|
4862
|
-
/* @__PURE__ */ (0,
|
|
5006
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)("circle", { cx: "12", cy: "12", r: "1" }),
|
|
5007
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)("circle", { cx: "12", cy: "5", r: "1" }),
|
|
5008
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)("circle", { cx: "12", cy: "19", r: "1" })
|
|
4863
5009
|
]
|
|
4864
5010
|
}
|
|
4865
5011
|
);
|
|
4866
5012
|
}
|
|
4867
5013
|
|
|
4868
5014
|
// src/components/icons/package/index.tsx
|
|
4869
|
-
var
|
|
5015
|
+
var import_jsx_runtime107 = require("react/jsx-runtime");
|
|
4870
5016
|
function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4871
|
-
return /* @__PURE__ */ (0,
|
|
5017
|
+
return /* @__PURE__ */ (0, import_jsx_runtime107.jsxs)(
|
|
4872
5018
|
"svg",
|
|
4873
5019
|
{
|
|
4874
5020
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4883,18 +5029,18 @@ function PackageIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4883
5029
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4884
5030
|
...rest,
|
|
4885
5031
|
children: [
|
|
4886
|
-
/* @__PURE__ */ (0,
|
|
4887
|
-
/* @__PURE__ */ (0,
|
|
4888
|
-
/* @__PURE__ */ (0,
|
|
5032
|
+
/* @__PURE__ */ (0, import_jsx_runtime107.jsx)("path", { d: "M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z" }),
|
|
5033
|
+
/* @__PURE__ */ (0, import_jsx_runtime107.jsx)("path", { d: "M3.3 7 12 12l8.7-5" }),
|
|
5034
|
+
/* @__PURE__ */ (0, import_jsx_runtime107.jsx)("path", { d: "M12 22V12" })
|
|
4889
5035
|
]
|
|
4890
5036
|
}
|
|
4891
5037
|
);
|
|
4892
5038
|
}
|
|
4893
5039
|
|
|
4894
5040
|
// src/components/icons/paperclip/index.tsx
|
|
4895
|
-
var
|
|
5041
|
+
var import_jsx_runtime108 = require("react/jsx-runtime");
|
|
4896
5042
|
function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4897
|
-
return /* @__PURE__ */ (0,
|
|
5043
|
+
return /* @__PURE__ */ (0, import_jsx_runtime108.jsx)(
|
|
4898
5044
|
"svg",
|
|
4899
5045
|
{
|
|
4900
5046
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4908,15 +5054,15 @@ function PaperclipIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
4908
5054
|
strokeLinejoin: "round",
|
|
4909
5055
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4910
5056
|
...rest,
|
|
4911
|
-
children: /* @__PURE__ */ (0,
|
|
5057
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime108.jsx)("path", { d: "M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l8.57-8.57A4 4 0 1 1 18 8.84l-8.59 8.57a2 2 0 0 1-2.83-2.83l8.49-8.48" })
|
|
4912
5058
|
}
|
|
4913
5059
|
);
|
|
4914
5060
|
}
|
|
4915
5061
|
|
|
4916
5062
|
// src/components/icons/pause/index.tsx
|
|
4917
|
-
var
|
|
5063
|
+
var import_jsx_runtime109 = require("react/jsx-runtime");
|
|
4918
5064
|
function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4919
|
-
return /* @__PURE__ */ (0,
|
|
5065
|
+
return /* @__PURE__ */ (0, import_jsx_runtime109.jsxs)(
|
|
4920
5066
|
"svg",
|
|
4921
5067
|
{
|
|
4922
5068
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4931,17 +5077,17 @@ function PauseIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4931
5077
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4932
5078
|
...rest,
|
|
4933
5079
|
children: [
|
|
4934
|
-
/* @__PURE__ */ (0,
|
|
4935
|
-
/* @__PURE__ */ (0,
|
|
5080
|
+
/* @__PURE__ */ (0, import_jsx_runtime109.jsx)("rect", { x: "14", y: "4", width: "4", height: "16", rx: "1" }),
|
|
5081
|
+
/* @__PURE__ */ (0, import_jsx_runtime109.jsx)("rect", { x: "6", y: "4", width: "4", height: "16", rx: "1" })
|
|
4936
5082
|
]
|
|
4937
5083
|
}
|
|
4938
5084
|
);
|
|
4939
5085
|
}
|
|
4940
5086
|
|
|
4941
5087
|
// src/components/icons/pencil/index.tsx
|
|
4942
|
-
var
|
|
5088
|
+
var import_jsx_runtime110 = require("react/jsx-runtime");
|
|
4943
5089
|
function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4944
|
-
return /* @__PURE__ */ (0,
|
|
5090
|
+
return /* @__PURE__ */ (0, import_jsx_runtime110.jsxs)(
|
|
4945
5091
|
"svg",
|
|
4946
5092
|
{
|
|
4947
5093
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4956,17 +5102,17 @@ function PencilIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4956
5102
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4957
5103
|
...rest,
|
|
4958
5104
|
children: [
|
|
4959
|
-
/* @__PURE__ */ (0,
|
|
4960
|
-
/* @__PURE__ */ (0,
|
|
5105
|
+
/* @__PURE__ */ (0, import_jsx_runtime110.jsx)("path", { d: "M17 3a2.85 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z" }),
|
|
5106
|
+
/* @__PURE__ */ (0, import_jsx_runtime110.jsx)("path", { d: "m15 5 4 4" })
|
|
4961
5107
|
]
|
|
4962
5108
|
}
|
|
4963
5109
|
);
|
|
4964
5110
|
}
|
|
4965
5111
|
|
|
4966
5112
|
// src/components/icons/phone/index.tsx
|
|
4967
|
-
var
|
|
5113
|
+
var import_jsx_runtime111 = require("react/jsx-runtime");
|
|
4968
5114
|
function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4969
|
-
return /* @__PURE__ */ (0,
|
|
5115
|
+
return /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
|
|
4970
5116
|
"svg",
|
|
4971
5117
|
{
|
|
4972
5118
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4980,15 +5126,15 @@ function PhoneIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
4980
5126
|
strokeLinejoin: "round",
|
|
4981
5127
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
4982
5128
|
...rest,
|
|
4983
|
-
children: /* @__PURE__ */ (0,
|
|
5129
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)("path", { d: "M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z" })
|
|
4984
5130
|
}
|
|
4985
5131
|
);
|
|
4986
5132
|
}
|
|
4987
5133
|
|
|
4988
5134
|
// src/components/icons/play/index.tsx
|
|
4989
|
-
var
|
|
5135
|
+
var import_jsx_runtime112 = require("react/jsx-runtime");
|
|
4990
5136
|
function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
4991
|
-
return /* @__PURE__ */ (0,
|
|
5137
|
+
return /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(
|
|
4992
5138
|
"svg",
|
|
4993
5139
|
{
|
|
4994
5140
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5002,15 +5148,15 @@ function PlayIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5002
5148
|
strokeLinejoin: "round",
|
|
5003
5149
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5004
5150
|
...rest,
|
|
5005
|
-
children: /* @__PURE__ */ (0,
|
|
5151
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime112.jsx)("polygon", { points: "6 3 20 12 6 21 6 3" })
|
|
5006
5152
|
}
|
|
5007
5153
|
);
|
|
5008
5154
|
}
|
|
5009
5155
|
|
|
5010
5156
|
// src/components/icons/plus/index.tsx
|
|
5011
|
-
var
|
|
5157
|
+
var import_jsx_runtime113 = require("react/jsx-runtime");
|
|
5012
5158
|
function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5013
|
-
return /* @__PURE__ */ (0,
|
|
5159
|
+
return /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(
|
|
5014
5160
|
"svg",
|
|
5015
5161
|
{
|
|
5016
5162
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5025,17 +5171,17 @@ function PlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5025
5171
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5026
5172
|
...rest,
|
|
5027
5173
|
children: [
|
|
5028
|
-
/* @__PURE__ */ (0,
|
|
5029
|
-
/* @__PURE__ */ (0,
|
|
5174
|
+
/* @__PURE__ */ (0, import_jsx_runtime113.jsx)("path", { d: "M5 12h14" }),
|
|
5175
|
+
/* @__PURE__ */ (0, import_jsx_runtime113.jsx)("path", { d: "M12 5v14" })
|
|
5030
5176
|
]
|
|
5031
5177
|
}
|
|
5032
5178
|
);
|
|
5033
5179
|
}
|
|
5034
5180
|
|
|
5035
5181
|
// src/components/icons/printer/index.tsx
|
|
5036
|
-
var
|
|
5182
|
+
var import_jsx_runtime114 = require("react/jsx-runtime");
|
|
5037
5183
|
function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5038
|
-
return /* @__PURE__ */ (0,
|
|
5184
|
+
return /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(
|
|
5039
5185
|
"svg",
|
|
5040
5186
|
{
|
|
5041
5187
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5050,18 +5196,18 @@ function PrinterIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5050
5196
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5051
5197
|
...rest,
|
|
5052
5198
|
children: [
|
|
5053
|
-
/* @__PURE__ */ (0,
|
|
5054
|
-
/* @__PURE__ */ (0,
|
|
5055
|
-
/* @__PURE__ */ (0,
|
|
5199
|
+
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)("polyline", { points: "6 9 6 2 18 2 18 9" }),
|
|
5200
|
+
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)("path", { d: "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2" }),
|
|
5201
|
+
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)("rect", { width: "12", height: "8", x: "6", y: "14" })
|
|
5056
5202
|
]
|
|
5057
5203
|
}
|
|
5058
5204
|
);
|
|
5059
5205
|
}
|
|
5060
5206
|
|
|
5061
5207
|
// src/components/icons/redo/index.tsx
|
|
5062
|
-
var
|
|
5208
|
+
var import_jsx_runtime115 = require("react/jsx-runtime");
|
|
5063
5209
|
function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5064
|
-
return /* @__PURE__ */ (0,
|
|
5210
|
+
return /* @__PURE__ */ (0, import_jsx_runtime115.jsxs)(
|
|
5065
5211
|
"svg",
|
|
5066
5212
|
{
|
|
5067
5213
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5076,17 +5222,17 @@ function RedoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5076
5222
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5077
5223
|
...rest,
|
|
5078
5224
|
children: [
|
|
5079
|
-
/* @__PURE__ */ (0,
|
|
5080
|
-
/* @__PURE__ */ (0,
|
|
5225
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "M21 7v6h-6" }),
|
|
5226
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)("path", { d: "M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7" })
|
|
5081
5227
|
]
|
|
5082
5228
|
}
|
|
5083
5229
|
);
|
|
5084
5230
|
}
|
|
5085
5231
|
|
|
5086
5232
|
// src/components/icons/refresh-cw/index.tsx
|
|
5087
|
-
var
|
|
5233
|
+
var import_jsx_runtime116 = require("react/jsx-runtime");
|
|
5088
5234
|
function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5089
|
-
return /* @__PURE__ */ (0,
|
|
5235
|
+
return /* @__PURE__ */ (0, import_jsx_runtime116.jsxs)(
|
|
5090
5236
|
"svg",
|
|
5091
5237
|
{
|
|
5092
5238
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5101,19 +5247,19 @@ function RefreshCwIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
5101
5247
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5102
5248
|
...rest,
|
|
5103
5249
|
children: [
|
|
5104
|
-
/* @__PURE__ */ (0,
|
|
5105
|
-
/* @__PURE__ */ (0,
|
|
5106
|
-
/* @__PURE__ */ (0,
|
|
5107
|
-
/* @__PURE__ */ (0,
|
|
5250
|
+
/* @__PURE__ */ (0, import_jsx_runtime116.jsx)("path", { d: "M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8" }),
|
|
5251
|
+
/* @__PURE__ */ (0, import_jsx_runtime116.jsx)("path", { d: "M21 3v5h-5" }),
|
|
5252
|
+
/* @__PURE__ */ (0, import_jsx_runtime116.jsx)("path", { d: "M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16" }),
|
|
5253
|
+
/* @__PURE__ */ (0, import_jsx_runtime116.jsx)("path", { d: "M3 21v-5h5" })
|
|
5108
5254
|
]
|
|
5109
5255
|
}
|
|
5110
5256
|
);
|
|
5111
5257
|
}
|
|
5112
5258
|
|
|
5113
5259
|
// src/components/icons/save/index.tsx
|
|
5114
|
-
var
|
|
5260
|
+
var import_jsx_runtime117 = require("react/jsx-runtime");
|
|
5115
5261
|
function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5116
|
-
return /* @__PURE__ */ (0,
|
|
5262
|
+
return /* @__PURE__ */ (0, import_jsx_runtime117.jsxs)(
|
|
5117
5263
|
"svg",
|
|
5118
5264
|
{
|
|
5119
5265
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5128,18 +5274,18 @@ function SaveIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5128
5274
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5129
5275
|
...rest,
|
|
5130
5276
|
children: [
|
|
5131
|
-
/* @__PURE__ */ (0,
|
|
5132
|
-
/* @__PURE__ */ (0,
|
|
5133
|
-
/* @__PURE__ */ (0,
|
|
5277
|
+
/* @__PURE__ */ (0, import_jsx_runtime117.jsx)("path", { d: "M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z" }),
|
|
5278
|
+
/* @__PURE__ */ (0, import_jsx_runtime117.jsx)("path", { d: "M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7" }),
|
|
5279
|
+
/* @__PURE__ */ (0, import_jsx_runtime117.jsx)("path", { d: "M7 3v4a1 1 0 0 0 1 1h7" })
|
|
5134
5280
|
]
|
|
5135
5281
|
}
|
|
5136
5282
|
);
|
|
5137
5283
|
}
|
|
5138
5284
|
|
|
5139
5285
|
// src/components/icons/search/index.tsx
|
|
5140
|
-
var
|
|
5286
|
+
var import_jsx_runtime118 = require("react/jsx-runtime");
|
|
5141
5287
|
function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5142
|
-
return /* @__PURE__ */ (0,
|
|
5288
|
+
return /* @__PURE__ */ (0, import_jsx_runtime118.jsxs)(
|
|
5143
5289
|
"svg",
|
|
5144
5290
|
{
|
|
5145
5291
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5154,17 +5300,17 @@ function SearchIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5154
5300
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5155
5301
|
...rest,
|
|
5156
5302
|
children: [
|
|
5157
|
-
/* @__PURE__ */ (0,
|
|
5158
|
-
/* @__PURE__ */ (0,
|
|
5303
|
+
/* @__PURE__ */ (0, import_jsx_runtime118.jsx)("circle", { cx: "11", cy: "11", r: "8" }),
|
|
5304
|
+
/* @__PURE__ */ (0, import_jsx_runtime118.jsx)("path", { d: "m21 21-4.3-4.3" })
|
|
5159
5305
|
]
|
|
5160
5306
|
}
|
|
5161
5307
|
);
|
|
5162
5308
|
}
|
|
5163
5309
|
|
|
5164
5310
|
// src/components/icons/send/index.tsx
|
|
5165
|
-
var
|
|
5311
|
+
var import_jsx_runtime119 = require("react/jsx-runtime");
|
|
5166
5312
|
function SendIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5167
|
-
return /* @__PURE__ */ (0,
|
|
5313
|
+
return /* @__PURE__ */ (0, import_jsx_runtime119.jsxs)(
|
|
5168
5314
|
"svg",
|
|
5169
5315
|
{
|
|
5170
5316
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5179,17 +5325,17 @@ function SendIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5179
5325
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5180
5326
|
...rest,
|
|
5181
5327
|
children: [
|
|
5182
|
-
/* @__PURE__ */ (0,
|
|
5183
|
-
/* @__PURE__ */ (0,
|
|
5328
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)("line", { x1: "22", x2: "11", y1: "2", y2: "13" }),
|
|
5329
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)("polygon", { points: "22 2 15 22 11 13 2 9 22 2" })
|
|
5184
5330
|
]
|
|
5185
5331
|
}
|
|
5186
5332
|
);
|
|
5187
5333
|
}
|
|
5188
5334
|
|
|
5189
5335
|
// src/components/icons/settings/index.tsx
|
|
5190
|
-
var
|
|
5336
|
+
var import_jsx_runtime120 = require("react/jsx-runtime");
|
|
5191
5337
|
function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5192
|
-
return /* @__PURE__ */ (0,
|
|
5338
|
+
return /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(
|
|
5193
5339
|
"svg",
|
|
5194
5340
|
{
|
|
5195
5341
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5204,17 +5350,17 @@ function SettingsIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
5204
5350
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5205
5351
|
...rest,
|
|
5206
5352
|
children: [
|
|
5207
|
-
/* @__PURE__ */ (0,
|
|
5208
|
-
/* @__PURE__ */ (0,
|
|
5353
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("path", { d: "M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z" }),
|
|
5354
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("circle", { cx: "12", cy: "12", r: "3" })
|
|
5209
5355
|
]
|
|
5210
5356
|
}
|
|
5211
5357
|
);
|
|
5212
5358
|
}
|
|
5213
5359
|
|
|
5214
5360
|
// src/components/icons/share/index.tsx
|
|
5215
|
-
var
|
|
5361
|
+
var import_jsx_runtime121 = require("react/jsx-runtime");
|
|
5216
5362
|
function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5217
|
-
return /* @__PURE__ */ (0,
|
|
5363
|
+
return /* @__PURE__ */ (0, import_jsx_runtime121.jsxs)(
|
|
5218
5364
|
"svg",
|
|
5219
5365
|
{
|
|
5220
5366
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5229,18 +5375,18 @@ function ShareIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5229
5375
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5230
5376
|
...rest,
|
|
5231
5377
|
children: [
|
|
5232
|
-
/* @__PURE__ */ (0,
|
|
5233
|
-
/* @__PURE__ */ (0,
|
|
5234
|
-
/* @__PURE__ */ (0,
|
|
5378
|
+
/* @__PURE__ */ (0, import_jsx_runtime121.jsx)("path", { d: "M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8" }),
|
|
5379
|
+
/* @__PURE__ */ (0, import_jsx_runtime121.jsx)("polyline", { points: "16 6 12 2 8 6" }),
|
|
5380
|
+
/* @__PURE__ */ (0, import_jsx_runtime121.jsx)("line", { x1: "12", x2: "12", y1: "2", y2: "15" })
|
|
5235
5381
|
]
|
|
5236
5382
|
}
|
|
5237
5383
|
);
|
|
5238
5384
|
}
|
|
5239
5385
|
|
|
5240
5386
|
// src/components/icons/shield/index.tsx
|
|
5241
|
-
var
|
|
5387
|
+
var import_jsx_runtime122 = require("react/jsx-runtime");
|
|
5242
5388
|
function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5243
|
-
return /* @__PURE__ */ (0,
|
|
5389
|
+
return /* @__PURE__ */ (0, import_jsx_runtime122.jsx)(
|
|
5244
5390
|
"svg",
|
|
5245
5391
|
{
|
|
5246
5392
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5254,15 +5400,15 @@ function ShieldIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5254
5400
|
strokeLinejoin: "round",
|
|
5255
5401
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5256
5402
|
...rest,
|
|
5257
|
-
children: /* @__PURE__ */ (0,
|
|
5403
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime122.jsx)("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" })
|
|
5258
5404
|
}
|
|
5259
5405
|
);
|
|
5260
5406
|
}
|
|
5261
5407
|
|
|
5262
5408
|
// src/components/icons/shield-check/index.tsx
|
|
5263
|
-
var
|
|
5409
|
+
var import_jsx_runtime123 = require("react/jsx-runtime");
|
|
5264
5410
|
function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5265
|
-
return /* @__PURE__ */ (0,
|
|
5411
|
+
return /* @__PURE__ */ (0, import_jsx_runtime123.jsxs)(
|
|
5266
5412
|
"svg",
|
|
5267
5413
|
{
|
|
5268
5414
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5277,17 +5423,17 @@ function ShieldCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
5277
5423
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5278
5424
|
...rest,
|
|
5279
5425
|
children: [
|
|
5280
|
-
/* @__PURE__ */ (0,
|
|
5281
|
-
/* @__PURE__ */ (0,
|
|
5426
|
+
/* @__PURE__ */ (0, import_jsx_runtime123.jsx)("path", { d: "M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z" }),
|
|
5427
|
+
/* @__PURE__ */ (0, import_jsx_runtime123.jsx)("path", { d: "m9 12 2 2 4-4" })
|
|
5282
5428
|
]
|
|
5283
5429
|
}
|
|
5284
5430
|
);
|
|
5285
5431
|
}
|
|
5286
5432
|
|
|
5287
5433
|
// src/components/icons/shopping-bag/index.tsx
|
|
5288
|
-
var
|
|
5434
|
+
var import_jsx_runtime124 = require("react/jsx-runtime");
|
|
5289
5435
|
function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5290
|
-
return /* @__PURE__ */ (0,
|
|
5436
|
+
return /* @__PURE__ */ (0, import_jsx_runtime124.jsxs)(
|
|
5291
5437
|
"svg",
|
|
5292
5438
|
{
|
|
5293
5439
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5302,18 +5448,18 @@ function ShoppingBagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
5302
5448
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5303
5449
|
...rest,
|
|
5304
5450
|
children: [
|
|
5305
|
-
/* @__PURE__ */ (0,
|
|
5306
|
-
/* @__PURE__ */ (0,
|
|
5307
|
-
/* @__PURE__ */ (0,
|
|
5451
|
+
/* @__PURE__ */ (0, import_jsx_runtime124.jsx)("path", { d: "M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z" }),
|
|
5452
|
+
/* @__PURE__ */ (0, import_jsx_runtime124.jsx)("path", { d: "M3 6h18" }),
|
|
5453
|
+
/* @__PURE__ */ (0, import_jsx_runtime124.jsx)("path", { d: "M16 10a4 4 0 0 1-8 0" })
|
|
5308
5454
|
]
|
|
5309
5455
|
}
|
|
5310
5456
|
);
|
|
5311
5457
|
}
|
|
5312
5458
|
|
|
5313
5459
|
// src/components/icons/shopping-cart/index.tsx
|
|
5314
|
-
var
|
|
5460
|
+
var import_jsx_runtime125 = require("react/jsx-runtime");
|
|
5315
5461
|
function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5316
|
-
return /* @__PURE__ */ (0,
|
|
5462
|
+
return /* @__PURE__ */ (0, import_jsx_runtime125.jsxs)(
|
|
5317
5463
|
"svg",
|
|
5318
5464
|
{
|
|
5319
5465
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5328,18 +5474,18 @@ function ShoppingCartIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
5328
5474
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5329
5475
|
...rest,
|
|
5330
5476
|
children: [
|
|
5331
|
-
/* @__PURE__ */ (0,
|
|
5332
|
-
/* @__PURE__ */ (0,
|
|
5333
|
-
/* @__PURE__ */ (0,
|
|
5477
|
+
/* @__PURE__ */ (0, import_jsx_runtime125.jsx)("circle", { cx: "8", cy: "21", r: "1" }),
|
|
5478
|
+
/* @__PURE__ */ (0, import_jsx_runtime125.jsx)("circle", { cx: "19", cy: "21", r: "1" }),
|
|
5479
|
+
/* @__PURE__ */ (0, import_jsx_runtime125.jsx)("path", { d: "M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12" })
|
|
5334
5480
|
]
|
|
5335
5481
|
}
|
|
5336
5482
|
);
|
|
5337
5483
|
}
|
|
5338
5484
|
|
|
5339
5485
|
// src/components/icons/sidebar/index.tsx
|
|
5340
|
-
var
|
|
5486
|
+
var import_jsx_runtime126 = require("react/jsx-runtime");
|
|
5341
5487
|
function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5342
|
-
return /* @__PURE__ */ (0,
|
|
5488
|
+
return /* @__PURE__ */ (0, import_jsx_runtime126.jsxs)(
|
|
5343
5489
|
"svg",
|
|
5344
5490
|
{
|
|
5345
5491
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5354,17 +5500,17 @@ function SidebarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5354
5500
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5355
5501
|
...rest,
|
|
5356
5502
|
children: [
|
|
5357
|
-
/* @__PURE__ */ (0,
|
|
5358
|
-
/* @__PURE__ */ (0,
|
|
5503
|
+
/* @__PURE__ */ (0, import_jsx_runtime126.jsx)("rect", { width: "18", height: "18", x: "3", y: "3", rx: "2" }),
|
|
5504
|
+
/* @__PURE__ */ (0, import_jsx_runtime126.jsx)("path", { d: "M9 3v18" })
|
|
5359
5505
|
]
|
|
5360
5506
|
}
|
|
5361
5507
|
);
|
|
5362
5508
|
}
|
|
5363
5509
|
|
|
5364
5510
|
// src/components/icons/skip-back/index.tsx
|
|
5365
|
-
var
|
|
5511
|
+
var import_jsx_runtime127 = require("react/jsx-runtime");
|
|
5366
5512
|
function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5367
|
-
return /* @__PURE__ */ (0,
|
|
5513
|
+
return /* @__PURE__ */ (0, import_jsx_runtime127.jsxs)(
|
|
5368
5514
|
"svg",
|
|
5369
5515
|
{
|
|
5370
5516
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5379,17 +5525,17 @@ function SkipBackIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
5379
5525
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5380
5526
|
...rest,
|
|
5381
5527
|
children: [
|
|
5382
|
-
/* @__PURE__ */ (0,
|
|
5383
|
-
/* @__PURE__ */ (0,
|
|
5528
|
+
/* @__PURE__ */ (0, import_jsx_runtime127.jsx)("polygon", { points: "19 20 9 12 19 4 19 20" }),
|
|
5529
|
+
/* @__PURE__ */ (0, import_jsx_runtime127.jsx)("line", { x1: "5", x2: "5", y1: "19", y2: "5" })
|
|
5384
5530
|
]
|
|
5385
5531
|
}
|
|
5386
5532
|
);
|
|
5387
5533
|
}
|
|
5388
5534
|
|
|
5389
5535
|
// src/components/icons/skip-forward/index.tsx
|
|
5390
|
-
var
|
|
5536
|
+
var import_jsx_runtime128 = require("react/jsx-runtime");
|
|
5391
5537
|
function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5392
|
-
return /* @__PURE__ */ (0,
|
|
5538
|
+
return /* @__PURE__ */ (0, import_jsx_runtime128.jsxs)(
|
|
5393
5539
|
"svg",
|
|
5394
5540
|
{
|
|
5395
5541
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5404,17 +5550,17 @@ function SkipForwardIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest
|
|
|
5404
5550
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5405
5551
|
...rest,
|
|
5406
5552
|
children: [
|
|
5407
|
-
/* @__PURE__ */ (0,
|
|
5408
|
-
/* @__PURE__ */ (0,
|
|
5553
|
+
/* @__PURE__ */ (0, import_jsx_runtime128.jsx)("polygon", { points: "5 4 15 12 5 20 5 4" }),
|
|
5554
|
+
/* @__PURE__ */ (0, import_jsx_runtime128.jsx)("line", { x1: "19", x2: "19", y1: "5", y2: "19" })
|
|
5409
5555
|
]
|
|
5410
5556
|
}
|
|
5411
5557
|
);
|
|
5412
5558
|
}
|
|
5413
5559
|
|
|
5414
5560
|
// src/components/icons/sliders/index.tsx
|
|
5415
|
-
var
|
|
5561
|
+
var import_jsx_runtime129 = require("react/jsx-runtime");
|
|
5416
5562
|
function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5417
|
-
return /* @__PURE__ */ (0,
|
|
5563
|
+
return /* @__PURE__ */ (0, import_jsx_runtime129.jsxs)(
|
|
5418
5564
|
"svg",
|
|
5419
5565
|
{
|
|
5420
5566
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5429,24 +5575,24 @@ function SlidersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5429
5575
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5430
5576
|
...rest,
|
|
5431
5577
|
children: [
|
|
5432
|
-
/* @__PURE__ */ (0,
|
|
5433
|
-
/* @__PURE__ */ (0,
|
|
5434
|
-
/* @__PURE__ */ (0,
|
|
5435
|
-
/* @__PURE__ */ (0,
|
|
5436
|
-
/* @__PURE__ */ (0,
|
|
5437
|
-
/* @__PURE__ */ (0,
|
|
5438
|
-
/* @__PURE__ */ (0,
|
|
5439
|
-
/* @__PURE__ */ (0,
|
|
5440
|
-
/* @__PURE__ */ (0,
|
|
5578
|
+
/* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "21", x2: "14", y1: "4", y2: "4" }),
|
|
5579
|
+
/* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "10", x2: "3", y1: "4", y2: "4" }),
|
|
5580
|
+
/* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "21", x2: "12", y1: "12", y2: "12" }),
|
|
5581
|
+
/* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "8", x2: "3", y1: "12", y2: "12" }),
|
|
5582
|
+
/* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "21", x2: "16", y1: "20", y2: "20" }),
|
|
5583
|
+
/* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "12", x2: "3", y1: "20", y2: "20" }),
|
|
5584
|
+
/* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "14", x2: "14", y1: "2", y2: "6" }),
|
|
5585
|
+
/* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "8", x2: "8", y1: "10", y2: "14" }),
|
|
5586
|
+
/* @__PURE__ */ (0, import_jsx_runtime129.jsx)("line", { x1: "16", x2: "16", y1: "18", y2: "22" })
|
|
5441
5587
|
]
|
|
5442
5588
|
}
|
|
5443
5589
|
);
|
|
5444
5590
|
}
|
|
5445
5591
|
|
|
5446
5592
|
// src/components/icons/smile/index.tsx
|
|
5447
|
-
var
|
|
5593
|
+
var import_jsx_runtime130 = require("react/jsx-runtime");
|
|
5448
5594
|
function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5449
|
-
return /* @__PURE__ */ (0,
|
|
5595
|
+
return /* @__PURE__ */ (0, import_jsx_runtime130.jsxs)(
|
|
5450
5596
|
"svg",
|
|
5451
5597
|
{
|
|
5452
5598
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5461,19 +5607,19 @@ function SmileIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5461
5607
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5462
5608
|
...rest,
|
|
5463
5609
|
children: [
|
|
5464
|
-
/* @__PURE__ */ (0,
|
|
5465
|
-
/* @__PURE__ */ (0,
|
|
5466
|
-
/* @__PURE__ */ (0,
|
|
5467
|
-
/* @__PURE__ */ (0,
|
|
5610
|
+
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)("circle", { cx: "12", cy: "12", r: "10" }),
|
|
5611
|
+
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)("path", { d: "M8 14s1.5 2 4 2 4-2 4-2" }),
|
|
5612
|
+
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)("line", { x1: "9", x2: "9.01", y1: "9", y2: "9" }),
|
|
5613
|
+
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)("line", { x1: "15", x2: "15.01", y1: "9", y2: "9" })
|
|
5468
5614
|
]
|
|
5469
5615
|
}
|
|
5470
5616
|
);
|
|
5471
5617
|
}
|
|
5472
5618
|
|
|
5473
5619
|
// src/components/icons/star/index.tsx
|
|
5474
|
-
var
|
|
5620
|
+
var import_jsx_runtime131 = require("react/jsx-runtime");
|
|
5475
5621
|
function StarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5476
|
-
return /* @__PURE__ */ (0,
|
|
5622
|
+
return /* @__PURE__ */ (0, import_jsx_runtime131.jsx)(
|
|
5477
5623
|
"svg",
|
|
5478
5624
|
{
|
|
5479
5625
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5487,15 +5633,15 @@ function StarIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5487
5633
|
strokeLinejoin: "round",
|
|
5488
5634
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5489
5635
|
...rest,
|
|
5490
|
-
children: /* @__PURE__ */ (0,
|
|
5636
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime131.jsx)("polygon", { points: "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2" })
|
|
5491
5637
|
}
|
|
5492
5638
|
);
|
|
5493
5639
|
}
|
|
5494
5640
|
|
|
5495
5641
|
// src/components/icons/sun/index.tsx
|
|
5496
|
-
var
|
|
5642
|
+
var import_jsx_runtime132 = require("react/jsx-runtime");
|
|
5497
5643
|
function SunIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5498
|
-
return /* @__PURE__ */ (0,
|
|
5644
|
+
return /* @__PURE__ */ (0, import_jsx_runtime132.jsxs)(
|
|
5499
5645
|
"svg",
|
|
5500
5646
|
{
|
|
5501
5647
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5510,24 +5656,24 @@ function SunIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5510
5656
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5511
5657
|
...rest,
|
|
5512
5658
|
children: [
|
|
5513
|
-
/* @__PURE__ */ (0,
|
|
5514
|
-
/* @__PURE__ */ (0,
|
|
5515
|
-
/* @__PURE__ */ (0,
|
|
5516
|
-
/* @__PURE__ */ (0,
|
|
5517
|
-
/* @__PURE__ */ (0,
|
|
5518
|
-
/* @__PURE__ */ (0,
|
|
5519
|
-
/* @__PURE__ */ (0,
|
|
5520
|
-
/* @__PURE__ */ (0,
|
|
5521
|
-
/* @__PURE__ */ (0,
|
|
5659
|
+
/* @__PURE__ */ (0, import_jsx_runtime132.jsx)("circle", { cx: "12", cy: "12", r: "4" }),
|
|
5660
|
+
/* @__PURE__ */ (0, import_jsx_runtime132.jsx)("path", { d: "M12 2v2" }),
|
|
5661
|
+
/* @__PURE__ */ (0, import_jsx_runtime132.jsx)("path", { d: "M12 20v2" }),
|
|
5662
|
+
/* @__PURE__ */ (0, import_jsx_runtime132.jsx)("path", { d: "m4.93 4.93 1.41 1.41" }),
|
|
5663
|
+
/* @__PURE__ */ (0, import_jsx_runtime132.jsx)("path", { d: "m17.66 17.66 1.41 1.41" }),
|
|
5664
|
+
/* @__PURE__ */ (0, import_jsx_runtime132.jsx)("path", { d: "M2 12h2" }),
|
|
5665
|
+
/* @__PURE__ */ (0, import_jsx_runtime132.jsx)("path", { d: "M20 12h2" }),
|
|
5666
|
+
/* @__PURE__ */ (0, import_jsx_runtime132.jsx)("path", { d: "m6.34 17.66-1.41 1.41" }),
|
|
5667
|
+
/* @__PURE__ */ (0, import_jsx_runtime132.jsx)("path", { d: "m19.07 4.93-1.41 1.41" })
|
|
5522
5668
|
]
|
|
5523
5669
|
}
|
|
5524
5670
|
);
|
|
5525
5671
|
}
|
|
5526
5672
|
|
|
5527
5673
|
// src/components/icons/tag/index.tsx
|
|
5528
|
-
var
|
|
5674
|
+
var import_jsx_runtime133 = require("react/jsx-runtime");
|
|
5529
5675
|
function TagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5530
|
-
return /* @__PURE__ */ (0,
|
|
5676
|
+
return /* @__PURE__ */ (0, import_jsx_runtime133.jsxs)(
|
|
5531
5677
|
"svg",
|
|
5532
5678
|
{
|
|
5533
5679
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5542,17 +5688,17 @@ function TagIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5542
5688
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5543
5689
|
...rest,
|
|
5544
5690
|
children: [
|
|
5545
|
-
/* @__PURE__ */ (0,
|
|
5546
|
-
/* @__PURE__ */ (0,
|
|
5691
|
+
/* @__PURE__ */ (0, import_jsx_runtime133.jsx)("path", { d: "M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z" }),
|
|
5692
|
+
/* @__PURE__ */ (0, import_jsx_runtime133.jsx)("circle", { cx: "7.5", cy: "7.5", r: ".5", fill: "currentColor" })
|
|
5547
5693
|
]
|
|
5548
5694
|
}
|
|
5549
5695
|
);
|
|
5550
5696
|
}
|
|
5551
5697
|
|
|
5552
5698
|
// src/components/icons/thumbs-down/index.tsx
|
|
5553
|
-
var
|
|
5699
|
+
var import_jsx_runtime134 = require("react/jsx-runtime");
|
|
5554
5700
|
function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5555
|
-
return /* @__PURE__ */ (0,
|
|
5701
|
+
return /* @__PURE__ */ (0, import_jsx_runtime134.jsxs)(
|
|
5556
5702
|
"svg",
|
|
5557
5703
|
{
|
|
5558
5704
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5567,17 +5713,17 @@ function ThumbsDownIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }
|
|
|
5567
5713
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5568
5714
|
...rest,
|
|
5569
5715
|
children: [
|
|
5570
|
-
/* @__PURE__ */ (0,
|
|
5571
|
-
/* @__PURE__ */ (0,
|
|
5716
|
+
/* @__PURE__ */ (0, import_jsx_runtime134.jsx)("path", { d: "M17 14V2" }),
|
|
5717
|
+
/* @__PURE__ */ (0, import_jsx_runtime134.jsx)("path", { d: "M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z" })
|
|
5572
5718
|
]
|
|
5573
5719
|
}
|
|
5574
5720
|
);
|
|
5575
5721
|
}
|
|
5576
5722
|
|
|
5577
5723
|
// src/components/icons/thumbs-up/index.tsx
|
|
5578
|
-
var
|
|
5724
|
+
var import_jsx_runtime135 = require("react/jsx-runtime");
|
|
5579
5725
|
function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5580
|
-
return /* @__PURE__ */ (0,
|
|
5726
|
+
return /* @__PURE__ */ (0, import_jsx_runtime135.jsxs)(
|
|
5581
5727
|
"svg",
|
|
5582
5728
|
{
|
|
5583
5729
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5592,17 +5738,17 @@ function ThumbsUpIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
5592
5738
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5593
5739
|
...rest,
|
|
5594
5740
|
children: [
|
|
5595
|
-
/* @__PURE__ */ (0,
|
|
5596
|
-
/* @__PURE__ */ (0,
|
|
5741
|
+
/* @__PURE__ */ (0, import_jsx_runtime135.jsx)("path", { d: "M7 10v12" }),
|
|
5742
|
+
/* @__PURE__ */ (0, import_jsx_runtime135.jsx)("path", { d: "M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z" })
|
|
5597
5743
|
]
|
|
5598
5744
|
}
|
|
5599
5745
|
);
|
|
5600
5746
|
}
|
|
5601
5747
|
|
|
5602
5748
|
// src/components/icons/trash/index.tsx
|
|
5603
|
-
var
|
|
5749
|
+
var import_jsx_runtime136 = require("react/jsx-runtime");
|
|
5604
5750
|
function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5605
|
-
return /* @__PURE__ */ (0,
|
|
5751
|
+
return /* @__PURE__ */ (0, import_jsx_runtime136.jsxs)(
|
|
5606
5752
|
"svg",
|
|
5607
5753
|
{
|
|
5608
5754
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5617,18 +5763,18 @@ function TrashIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5617
5763
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5618
5764
|
...rest,
|
|
5619
5765
|
children: [
|
|
5620
|
-
/* @__PURE__ */ (0,
|
|
5621
|
-
/* @__PURE__ */ (0,
|
|
5622
|
-
/* @__PURE__ */ (0,
|
|
5766
|
+
/* @__PURE__ */ (0, import_jsx_runtime136.jsx)("path", { d: "M3 6h18" }),
|
|
5767
|
+
/* @__PURE__ */ (0, import_jsx_runtime136.jsx)("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6" }),
|
|
5768
|
+
/* @__PURE__ */ (0, import_jsx_runtime136.jsx)("path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
|
|
5623
5769
|
]
|
|
5624
5770
|
}
|
|
5625
5771
|
);
|
|
5626
5772
|
}
|
|
5627
5773
|
|
|
5628
5774
|
// src/components/icons/undo/index.tsx
|
|
5629
|
-
var
|
|
5775
|
+
var import_jsx_runtime137 = require("react/jsx-runtime");
|
|
5630
5776
|
function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5631
|
-
return /* @__PURE__ */ (0,
|
|
5777
|
+
return /* @__PURE__ */ (0, import_jsx_runtime137.jsxs)(
|
|
5632
5778
|
"svg",
|
|
5633
5779
|
{
|
|
5634
5780
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5643,17 +5789,17 @@ function UndoIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5643
5789
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5644
5790
|
...rest,
|
|
5645
5791
|
children: [
|
|
5646
|
-
/* @__PURE__ */ (0,
|
|
5647
|
-
/* @__PURE__ */ (0,
|
|
5792
|
+
/* @__PURE__ */ (0, import_jsx_runtime137.jsx)("path", { d: "M3 7v6h6" }),
|
|
5793
|
+
/* @__PURE__ */ (0, import_jsx_runtime137.jsx)("path", { d: "M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13" })
|
|
5648
5794
|
]
|
|
5649
5795
|
}
|
|
5650
5796
|
);
|
|
5651
5797
|
}
|
|
5652
5798
|
|
|
5653
5799
|
// src/components/icons/unlock/index.tsx
|
|
5654
|
-
var
|
|
5800
|
+
var import_jsx_runtime138 = require("react/jsx-runtime");
|
|
5655
5801
|
function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5656
|
-
return /* @__PURE__ */ (0,
|
|
5802
|
+
return /* @__PURE__ */ (0, import_jsx_runtime138.jsxs)(
|
|
5657
5803
|
"svg",
|
|
5658
5804
|
{
|
|
5659
5805
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5668,17 +5814,17 @@ function UnlockIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5668
5814
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5669
5815
|
...rest,
|
|
5670
5816
|
children: [
|
|
5671
|
-
/* @__PURE__ */ (0,
|
|
5672
|
-
/* @__PURE__ */ (0,
|
|
5817
|
+
/* @__PURE__ */ (0, import_jsx_runtime138.jsx)("rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2" }),
|
|
5818
|
+
/* @__PURE__ */ (0, import_jsx_runtime138.jsx)("path", { d: "M7 11V7a5 5 0 0 1 9.9-1" })
|
|
5673
5819
|
]
|
|
5674
5820
|
}
|
|
5675
5821
|
);
|
|
5676
5822
|
}
|
|
5677
5823
|
|
|
5678
5824
|
// src/components/icons/upload/index.tsx
|
|
5679
|
-
var
|
|
5825
|
+
var import_jsx_runtime139 = require("react/jsx-runtime");
|
|
5680
5826
|
function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5681
|
-
return /* @__PURE__ */ (0,
|
|
5827
|
+
return /* @__PURE__ */ (0, import_jsx_runtime139.jsxs)(
|
|
5682
5828
|
"svg",
|
|
5683
5829
|
{
|
|
5684
5830
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5693,18 +5839,18 @@ function UploadIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5693
5839
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5694
5840
|
...rest,
|
|
5695
5841
|
children: [
|
|
5696
|
-
/* @__PURE__ */ (0,
|
|
5697
|
-
/* @__PURE__ */ (0,
|
|
5698
|
-
/* @__PURE__ */ (0,
|
|
5842
|
+
/* @__PURE__ */ (0, import_jsx_runtime139.jsx)("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
|
|
5843
|
+
/* @__PURE__ */ (0, import_jsx_runtime139.jsx)("polyline", { points: "17 8 12 3 7 8" }),
|
|
5844
|
+
/* @__PURE__ */ (0, import_jsx_runtime139.jsx)("line", { x1: "12", x2: "12", y1: "3", y2: "15" })
|
|
5699
5845
|
]
|
|
5700
5846
|
}
|
|
5701
5847
|
);
|
|
5702
5848
|
}
|
|
5703
5849
|
|
|
5704
5850
|
// src/components/icons/user/index.tsx
|
|
5705
|
-
var
|
|
5851
|
+
var import_jsx_runtime140 = require("react/jsx-runtime");
|
|
5706
5852
|
function UserIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5707
|
-
return /* @__PURE__ */ (0,
|
|
5853
|
+
return /* @__PURE__ */ (0, import_jsx_runtime140.jsxs)(
|
|
5708
5854
|
"svg",
|
|
5709
5855
|
{
|
|
5710
5856
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5719,17 +5865,17 @@ function UserIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5719
5865
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5720
5866
|
...rest,
|
|
5721
5867
|
children: [
|
|
5722
|
-
/* @__PURE__ */ (0,
|
|
5723
|
-
/* @__PURE__ */ (0,
|
|
5868
|
+
/* @__PURE__ */ (0, import_jsx_runtime140.jsx)("path", { d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2" }),
|
|
5869
|
+
/* @__PURE__ */ (0, import_jsx_runtime140.jsx)("circle", { cx: "12", cy: "7", r: "4" })
|
|
5724
5870
|
]
|
|
5725
5871
|
}
|
|
5726
5872
|
);
|
|
5727
5873
|
}
|
|
5728
5874
|
|
|
5729
5875
|
// src/components/icons/user-check/index.tsx
|
|
5730
|
-
var
|
|
5876
|
+
var import_jsx_runtime141 = require("react/jsx-runtime");
|
|
5731
5877
|
function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5732
|
-
return /* @__PURE__ */ (0,
|
|
5878
|
+
return /* @__PURE__ */ (0, import_jsx_runtime141.jsxs)(
|
|
5733
5879
|
"svg",
|
|
5734
5880
|
{
|
|
5735
5881
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5744,18 +5890,18 @@ function UserCheckIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
5744
5890
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5745
5891
|
...rest,
|
|
5746
5892
|
children: [
|
|
5747
|
-
/* @__PURE__ */ (0,
|
|
5748
|
-
/* @__PURE__ */ (0,
|
|
5749
|
-
/* @__PURE__ */ (0,
|
|
5893
|
+
/* @__PURE__ */ (0, import_jsx_runtime141.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
5894
|
+
/* @__PURE__ */ (0, import_jsx_runtime141.jsx)("circle", { cx: "9", cy: "7", r: "4" }),
|
|
5895
|
+
/* @__PURE__ */ (0, import_jsx_runtime141.jsx)("polyline", { points: "16 11 18 13 22 9" })
|
|
5750
5896
|
]
|
|
5751
5897
|
}
|
|
5752
5898
|
);
|
|
5753
5899
|
}
|
|
5754
5900
|
|
|
5755
5901
|
// src/components/icons/user-plus/index.tsx
|
|
5756
|
-
var
|
|
5902
|
+
var import_jsx_runtime142 = require("react/jsx-runtime");
|
|
5757
5903
|
function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5758
|
-
return /* @__PURE__ */ (0,
|
|
5904
|
+
return /* @__PURE__ */ (0, import_jsx_runtime142.jsxs)(
|
|
5759
5905
|
"svg",
|
|
5760
5906
|
{
|
|
5761
5907
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5770,19 +5916,19 @@ function UserPlusIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest })
|
|
|
5770
5916
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5771
5917
|
...rest,
|
|
5772
5918
|
children: [
|
|
5773
|
-
/* @__PURE__ */ (0,
|
|
5774
|
-
/* @__PURE__ */ (0,
|
|
5775
|
-
/* @__PURE__ */ (0,
|
|
5776
|
-
/* @__PURE__ */ (0,
|
|
5919
|
+
/* @__PURE__ */ (0, import_jsx_runtime142.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
5920
|
+
/* @__PURE__ */ (0, import_jsx_runtime142.jsx)("circle", { cx: "9", cy: "7", r: "4" }),
|
|
5921
|
+
/* @__PURE__ */ (0, import_jsx_runtime142.jsx)("line", { x1: "19", x2: "19", y1: "8", y2: "14" }),
|
|
5922
|
+
/* @__PURE__ */ (0, import_jsx_runtime142.jsx)("line", { x1: "22", x2: "16", y1: "11", y2: "11" })
|
|
5777
5923
|
]
|
|
5778
5924
|
}
|
|
5779
5925
|
);
|
|
5780
5926
|
}
|
|
5781
5927
|
|
|
5782
5928
|
// src/components/icons/users/index.tsx
|
|
5783
|
-
var
|
|
5929
|
+
var import_jsx_runtime143 = require("react/jsx-runtime");
|
|
5784
5930
|
function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5785
|
-
return /* @__PURE__ */ (0,
|
|
5931
|
+
return /* @__PURE__ */ (0, import_jsx_runtime143.jsxs)(
|
|
5786
5932
|
"svg",
|
|
5787
5933
|
{
|
|
5788
5934
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5797,19 +5943,19 @@ function UsersIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5797
5943
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5798
5944
|
...rest,
|
|
5799
5945
|
children: [
|
|
5800
|
-
/* @__PURE__ */ (0,
|
|
5801
|
-
/* @__PURE__ */ (0,
|
|
5802
|
-
/* @__PURE__ */ (0,
|
|
5803
|
-
/* @__PURE__ */ (0,
|
|
5946
|
+
/* @__PURE__ */ (0, import_jsx_runtime143.jsx)("path", { d: "M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" }),
|
|
5947
|
+
/* @__PURE__ */ (0, import_jsx_runtime143.jsx)("circle", { cx: "9", cy: "7", r: "4" }),
|
|
5948
|
+
/* @__PURE__ */ (0, import_jsx_runtime143.jsx)("path", { d: "M22 21v-2a4 4 0 0 0-3-3.87" }),
|
|
5949
|
+
/* @__PURE__ */ (0, import_jsx_runtime143.jsx)("path", { d: "M16 3.13a4 4 0 0 1 0 7.75" })
|
|
5804
5950
|
]
|
|
5805
5951
|
}
|
|
5806
5952
|
);
|
|
5807
5953
|
}
|
|
5808
5954
|
|
|
5809
5955
|
// src/components/icons/volume-2/index.tsx
|
|
5810
|
-
var
|
|
5956
|
+
var import_jsx_runtime144 = require("react/jsx-runtime");
|
|
5811
5957
|
function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5812
|
-
return /* @__PURE__ */ (0,
|
|
5958
|
+
return /* @__PURE__ */ (0, import_jsx_runtime144.jsxs)(
|
|
5813
5959
|
"svg",
|
|
5814
5960
|
{
|
|
5815
5961
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5824,18 +5970,18 @@ function Volume2Icon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5824
5970
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5825
5971
|
...rest,
|
|
5826
5972
|
children: [
|
|
5827
|
-
/* @__PURE__ */ (0,
|
|
5828
|
-
/* @__PURE__ */ (0,
|
|
5829
|
-
/* @__PURE__ */ (0,
|
|
5973
|
+
/* @__PURE__ */ (0, import_jsx_runtime144.jsx)("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
|
|
5974
|
+
/* @__PURE__ */ (0, import_jsx_runtime144.jsx)("path", { d: "M15.54 8.46a5 5 0 0 1 0 7.07" }),
|
|
5975
|
+
/* @__PURE__ */ (0, import_jsx_runtime144.jsx)("path", { d: "M19.07 4.93a10 10 0 0 1 0 14.14" })
|
|
5830
5976
|
]
|
|
5831
5977
|
}
|
|
5832
5978
|
);
|
|
5833
5979
|
}
|
|
5834
5980
|
|
|
5835
5981
|
// src/components/icons/volume-x/index.tsx
|
|
5836
|
-
var
|
|
5982
|
+
var import_jsx_runtime145 = require("react/jsx-runtime");
|
|
5837
5983
|
function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5838
|
-
return /* @__PURE__ */ (0,
|
|
5984
|
+
return /* @__PURE__ */ (0, import_jsx_runtime145.jsxs)(
|
|
5839
5985
|
"svg",
|
|
5840
5986
|
{
|
|
5841
5987
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5850,18 +5996,18 @@ function VolumeXIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5850
5996
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5851
5997
|
...rest,
|
|
5852
5998
|
children: [
|
|
5853
|
-
/* @__PURE__ */ (0,
|
|
5854
|
-
/* @__PURE__ */ (0,
|
|
5855
|
-
/* @__PURE__ */ (0,
|
|
5999
|
+
/* @__PURE__ */ (0, import_jsx_runtime145.jsx)("polygon", { points: "11 5 6 9 2 9 2 15 6 15 11 19 11 5" }),
|
|
6000
|
+
/* @__PURE__ */ (0, import_jsx_runtime145.jsx)("line", { x1: "22", x2: "16", y1: "9", y2: "15" }),
|
|
6001
|
+
/* @__PURE__ */ (0, import_jsx_runtime145.jsx)("line", { x1: "16", x2: "22", y1: "9", y2: "15" })
|
|
5856
6002
|
]
|
|
5857
6003
|
}
|
|
5858
6004
|
);
|
|
5859
6005
|
}
|
|
5860
6006
|
|
|
5861
6007
|
// src/components/icons/wifi/index.tsx
|
|
5862
|
-
var
|
|
6008
|
+
var import_jsx_runtime146 = require("react/jsx-runtime");
|
|
5863
6009
|
function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5864
|
-
return /* @__PURE__ */ (0,
|
|
6010
|
+
return /* @__PURE__ */ (0, import_jsx_runtime146.jsxs)(
|
|
5865
6011
|
"svg",
|
|
5866
6012
|
{
|
|
5867
6013
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5876,19 +6022,19 @@ function WifiIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5876
6022
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5877
6023
|
...rest,
|
|
5878
6024
|
children: [
|
|
5879
|
-
/* @__PURE__ */ (0,
|
|
5880
|
-
/* @__PURE__ */ (0,
|
|
5881
|
-
/* @__PURE__ */ (0,
|
|
5882
|
-
/* @__PURE__ */ (0,
|
|
6025
|
+
/* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M12 20h.01" }),
|
|
6026
|
+
/* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M2 8.82a15 15 0 0 1 20 0" }),
|
|
6027
|
+
/* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M5 12.859a10 10 0 0 1 14 0" }),
|
|
6028
|
+
/* @__PURE__ */ (0, import_jsx_runtime146.jsx)("path", { d: "M8.5 16.429a5 5 0 0 1 7 0" })
|
|
5883
6029
|
]
|
|
5884
6030
|
}
|
|
5885
6031
|
);
|
|
5886
6032
|
}
|
|
5887
6033
|
|
|
5888
6034
|
// src/components/icons/zap/index.tsx
|
|
5889
|
-
var
|
|
6035
|
+
var import_jsx_runtime147 = require("react/jsx-runtime");
|
|
5890
6036
|
function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
5891
|
-
return /* @__PURE__ */ (0,
|
|
6037
|
+
return /* @__PURE__ */ (0, import_jsx_runtime147.jsx)(
|
|
5892
6038
|
"svg",
|
|
5893
6039
|
{
|
|
5894
6040
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5902,7 +6048,7 @@ function ZapIcon({ size: size3 = 20, strokeWidth = 1.75, title, ...rest }) {
|
|
|
5902
6048
|
strokeLinejoin: "round",
|
|
5903
6049
|
...title ? { role: "img", "aria-label": title } : { "aria-hidden": true },
|
|
5904
6050
|
...rest,
|
|
5905
|
-
children: /* @__PURE__ */ (0,
|
|
6051
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime147.jsx)("polygon", { points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2" })
|
|
5906
6052
|
}
|
|
5907
6053
|
);
|
|
5908
6054
|
}
|
|
@@ -6120,6 +6266,7 @@ var iconCatalog = [
|
|
|
6120
6266
|
PrinterIcon,
|
|
6121
6267
|
Progress,
|
|
6122
6268
|
Radio,
|
|
6269
|
+
RadioGroup,
|
|
6123
6270
|
RedoIcon,
|
|
6124
6271
|
RefreshCwIcon,
|
|
6125
6272
|
SaveIcon,
|