@geomak/ui 6.33.0 → 6.34.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/chunk-4V4U2W7K.cjs +389 -0
- package/dist/chunk-4V4U2W7K.cjs.map +1 -0
- package/dist/chunk-KAFJJO5O.js +284 -0
- package/dist/chunk-KAFJJO5O.js.map +1 -0
- package/dist/icons/index.cjs +424 -0
- package/dist/icons/index.cjs.map +1 -0
- package/dist/icons/index.d.cts +274 -0
- package/dist/icons/index.d.ts +274 -0
- package/dist/icons/index.js +3 -0
- package/dist/icons/index.js.map +1 -0
- package/dist/index.cjs +339 -609
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -157
- package/dist/index.d.ts +2 -157
- package/dist/index.js +54 -330
- package/dist/index.js.map +1 -1
- package/package.json +6 -1
package/dist/index.js
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
export { icons_default as Icon, createIcon } from './chunk-KAFJJO5O.js';
|
|
1
2
|
import { colors_default } from './chunk-I2P4JJDB.js';
|
|
2
3
|
export { colors_default as COLORS, PALETTE as palette, semanticTokens, vars } from './chunk-I2P4JJDB.js';
|
|
3
|
-
import
|
|
4
|
-
import { jsxs, jsx, Fragment } from 'react/jsx-runtime';
|
|
4
|
+
import React28, { createContext, useState, useEffect, useMemo, useId, useCallback, useRef, useContext, useSyncExternalStore, useLayoutEffect } from 'react';
|
|
5
5
|
import { createPortal } from 'react-dom';
|
|
6
|
+
import { jsxs, jsx, Fragment } from 'react/jsx-runtime';
|
|
6
7
|
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
7
8
|
import * as DropdownMenu from '@radix-ui/react-dropdown-menu';
|
|
8
9
|
import * as Dialog from '@radix-ui/react-dialog';
|
|
@@ -19,283 +20,6 @@ import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
|
19
20
|
import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
|
|
20
21
|
import * as SliderPrimitive from '@radix-ui/react-slider';
|
|
21
22
|
|
|
22
|
-
function createIcon(displayName, content, options = {}) {
|
|
23
|
-
const { viewBox = "0 0 24 24", solid = false } = options;
|
|
24
|
-
const Component = forwardRef(function Icon2({ size = 24, title, strokeWidth = 1.5, ...rest }, ref) {
|
|
25
|
-
const a11y = title ? { role: "img", "aria-label": title } : { "aria-hidden": true, focusable: false };
|
|
26
|
-
return /* @__PURE__ */ jsxs(
|
|
27
|
-
"svg",
|
|
28
|
-
{
|
|
29
|
-
ref,
|
|
30
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
31
|
-
width: size,
|
|
32
|
-
height: size,
|
|
33
|
-
viewBox,
|
|
34
|
-
fill: solid ? "currentColor" : "none",
|
|
35
|
-
stroke: solid ? void 0 : "currentColor",
|
|
36
|
-
strokeWidth: solid ? void 0 : strokeWidth,
|
|
37
|
-
strokeLinecap: solid ? void 0 : "round",
|
|
38
|
-
strokeLinejoin: solid ? void 0 : "round",
|
|
39
|
-
...a11y,
|
|
40
|
-
...rest,
|
|
41
|
-
children: [
|
|
42
|
-
title ? /* @__PURE__ */ jsx("title", { children: title }) : null,
|
|
43
|
-
content
|
|
44
|
-
]
|
|
45
|
-
}
|
|
46
|
-
);
|
|
47
|
-
});
|
|
48
|
-
Component.displayName = displayName;
|
|
49
|
-
return Component;
|
|
50
|
-
}
|
|
51
|
-
var ChevronUp = createIcon("ChevronUp", /* @__PURE__ */ jsx("path", { d: "m4.5 15.75 7.5-7.5 7.5 7.5" }));
|
|
52
|
-
var ChevronDown = createIcon("ChevronDown", /* @__PURE__ */ jsx("path", { d: "m19.5 8.25-7.5 7.5-7.5-7.5" }));
|
|
53
|
-
var ChevronLeft = createIcon("ChevronLeft", /* @__PURE__ */ jsx("path", { d: "M15.75 19.5 8.25 12l7.5-7.5" }));
|
|
54
|
-
var ChevronRight = createIcon("ChevronRight", /* @__PURE__ */ jsx("path", { d: "m8.25 4.5 7.5 7.5-7.5 7.5" }));
|
|
55
|
-
var ChevronsLeft = createIcon("ChevronsLeft", /* @__PURE__ */ jsx("path", { d: "M18.75 19.5 11.25 12l7.5-7.5m-6 15L5.25 12l7.5-7.5" }));
|
|
56
|
-
var ChevronsRight = createIcon("ChevronsRight", /* @__PURE__ */ jsx("path", { d: "m5.25 4.5 7.5 7.5-7.5 7.5m6-15 7.5 7.5-7.5 7.5" }));
|
|
57
|
-
var CaretUp = createIcon("CaretUp", /* @__PURE__ */ jsx("path", { d: "M12 8l6 8H6z" }), { solid: true });
|
|
58
|
-
var CaretDown = createIcon("CaretDown", /* @__PURE__ */ jsx("path", { d: "M12 16 6 8h12z" }), { solid: true });
|
|
59
|
-
var CaretLeft = createIcon("CaretLeft", /* @__PURE__ */ jsx("path", { d: "M8 12l8-6v12z" }), { solid: true });
|
|
60
|
-
var CaretRight = createIcon("CaretRight", /* @__PURE__ */ jsx("path", { d: "M16 12 8 6v12z" }), { solid: true });
|
|
61
|
-
var ArrowUp = createIcon("ArrowUp", /* @__PURE__ */ jsx("path", { d: "M4.5 10.5 12 3m0 0 7.5 7.5M12 3v18" }));
|
|
62
|
-
var ArrowDown = createIcon("ArrowDown", /* @__PURE__ */ jsx("path", { d: "M19.5 13.5 12 21m0 0-7.5-7.5M12 21V3" }));
|
|
63
|
-
var ArrowLeft = createIcon("ArrowLeft", /* @__PURE__ */ jsx("path", { d: "M10.5 19.5 3 12m0 0 7.5-7.5M3 12h18" }));
|
|
64
|
-
var ArrowRight = createIcon("ArrowRight", /* @__PURE__ */ jsx("path", { d: "M13.5 4.5 21 12m0 0-7.5 7.5M21 12H3" }));
|
|
65
|
-
var Menu = createIcon("Menu", /* @__PURE__ */ jsx("path", { d: "M3.75 6.75h16.5M3.75 12h16.5m-16.5 5.25h16.5" }));
|
|
66
|
-
var DotsHorizontal = createIcon("DotsHorizontal", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
67
|
-
/* @__PURE__ */ jsx("circle", { cx: "5", cy: "12", r: "1.6" }),
|
|
68
|
-
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "1.6" }),
|
|
69
|
-
/* @__PURE__ */ jsx("circle", { cx: "19", cy: "12", r: "1.6" })
|
|
70
|
-
] }), { solid: true });
|
|
71
|
-
var DotsVertical = createIcon("DotsVertical", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
72
|
-
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "5", r: "1.6" }),
|
|
73
|
-
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "1.6" }),
|
|
74
|
-
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "19", r: "1.6" })
|
|
75
|
-
] }), { solid: true });
|
|
76
|
-
var ExternalLink = createIcon("ExternalLink", /* @__PURE__ */ jsx("path", { d: "M13.5 6H5.25A2.25 2.25 0 0 0 3 8.25v10.5A2.25 2.25 0 0 0 5.25 21h10.5A2.25 2.25 0 0 0 18 18.75V10.5m-10.5 6L21 3m0 0h-5.25M21 3v5.25" }));
|
|
77
|
-
var X = createIcon("X", /* @__PURE__ */ jsx("path", { d: "M6 18 18 6M6 6l12 12" }));
|
|
78
|
-
var XCircle = createIcon("XCircle", /* @__PURE__ */ jsx("path", { d: "M9.75 9.75l4.5 4.5m0-4.5l-4.5 4.5M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z" }));
|
|
79
|
-
var Plus = createIcon("Plus", /* @__PURE__ */ jsx("path", { d: "M12 4.5v15m7.5-7.5h-15" }));
|
|
80
|
-
var PlusCircle = createIcon("PlusCircle", /* @__PURE__ */ jsx("path", { d: "M12 9v6m3-3H9m12 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z" }));
|
|
81
|
-
var Minus = createIcon("Minus", /* @__PURE__ */ jsx("path", { d: "M19.5 12h-15" }));
|
|
82
|
-
var MinusCircle = createIcon("MinusCircle", /* @__PURE__ */ jsx("path", { d: "M15 12H9m12 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z" }));
|
|
83
|
-
var Check = createIcon("Check", /* @__PURE__ */ jsx("path", { d: "M4.5 12.75l6 6 9-13.5" }));
|
|
84
|
-
var CheckCircle = createIcon("CheckCircle", /* @__PURE__ */ jsx("path", { d: "M9 12.75 11.25 15 15 9.75M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z" }));
|
|
85
|
-
var Search = createIcon("Search", /* @__PURE__ */ jsx("path", { d: "M21 21l-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607Z" }));
|
|
86
|
-
var Edit = createIcon("Edit", /* @__PURE__ */ jsx("path", { d: "M16.862 4.487l1.687-1.688a1.875 1.875 0 1 1 2.652 2.652L10.582 16.07a4.5 4.5 0 0 1-1.897 1.13L6 18l.8-2.685a4.5 4.5 0 0 1 1.13-1.897l8.932-8.931Zm0 0L19.5 7.125M18 14v4.75A2.25 2.25 0 0 1 15.75 21H5.25A2.25 2.25 0 0 1 3 18.75V8.25A2.25 2.25 0 0 1 5.25 6H10" }));
|
|
87
|
-
var Trash = createIcon("Trash", /* @__PURE__ */ jsx("path", { d: "m14.74 9-.346 9m-4.788 0L9.26 9m9.968-3.21c.342.052.682.107 1.022.166m-1.022-.165L18.16 19.673a2.25 2.25 0 0 1-2.244 2.077H8.084a2.25 2.25 0 0 1-2.244-2.077L4.772 5.79m14.456 0a48.108 48.108 0 0 0-3.478-.397m-12 .562c.34-.059.68-.114 1.022-.165m0 0a48.11 48.11 0 0 1 3.478-.397m7.5 0v-.916c0-1.18-.91-2.164-2.09-2.201a51.964 51.964 0 0 0-3.32 0c-1.18.037-2.09 1.022-2.09 2.201v.916m7.5 0a48.667 48.667 0 0 0-7.5 0" }));
|
|
88
|
-
var Copy = createIcon("Copy", /* @__PURE__ */ jsx("path", { d: "M15.666 3.888A2.25 2.25 0 0 0 13.5 2.25h-3c-1.03 0-1.9.693-2.166 1.638m7.332 0c.055.194.084.4.084.612v0a.75.75 0 0 1-.75.75H9a.75.75 0 0 1-.75-.75v0c0-.212.03-.418.084-.612m7.332 0c.646.049 1.288.11 1.927.184 1.1.128 1.907 1.077 1.907 2.185V19.5a2.25 2.25 0 0 1-2.25 2.25H6.75A2.25 2.25 0 0 1 4.5 19.5V6.257c0-1.108.806-2.057 1.907-2.185a48.208 48.208 0 0 1 1.927-.184" }));
|
|
89
|
-
var Clipboard = createIcon("Clipboard", /* @__PURE__ */ jsx("path", { d: "M9 12h3.75M9 15h3.75M9 18h3.75m3 .75H18a2.25 2.25 0 0 0 2.25-2.25V6.108c0-1.135-.845-2.098-1.976-2.192a48.424 48.424 0 0 0-1.123-.08m-5.801 0c-.065.21-.1.433-.1.664 0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75 2.25 2.25 0 0 0-.1-.664m-5.8 0A2.251 2.251 0 0 1 13.5 2.25H15c1.012 0 1.867.668 2.15 1.586m-5.8 0c-.376.023-.75.05-1.124.08C9.095 4.01 8.25 4.973 8.25 6.108V8.25m0 0H4.875c-.621 0-1.125.504-1.125 1.125v11.25c0 .621.504 1.125 1.125 1.125h9.75c.621 0 1.125-.504 1.125-1.125V9.375c0-.621-.504-1.125-1.125-1.125H8.25Z" }));
|
|
90
|
-
var Download = createIcon("Download", /* @__PURE__ */ jsx("path", { d: "M3 16.5v2.25A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75V16.5M16.5 12L12 16.5m0 0L7.5 12m4.5 4.5V3" }));
|
|
91
|
-
var Upload = createIcon("Upload", /* @__PURE__ */ jsx("path", { d: "M3 16.5v2.25A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75V16.5m-13.5-9L12 3m0 0l4.5 4.5M12 3v13.5" }));
|
|
92
|
-
var Save = createIcon("Save", /* @__PURE__ */ jsx("path", { d: "M7.5 3.75H6A2.25 2.25 0 0 0 3.75 6v12A2.25 2.25 0 0 0 6 20.25h12A2.25 2.25 0 0 0 20.25 18V8.31a2.25 2.25 0 0 0-.659-1.591l-2.872-2.872A2.25 2.25 0 0 0 15.129 3.75H15m-7.5 0v3.375c0 .621.504 1.125 1.125 1.125h5.25c.621 0 1.125-.504 1.125-1.125V3.75m-7.5 0H15m-3 11.25a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z" }));
|
|
93
|
-
var Filter = createIcon("Filter", /* @__PURE__ */ jsx("path", { d: "M12 3c2.755 0 5.455.232 8.083.678.533.09.917.556.917 1.096v1.044a2.25 2.25 0 0 1-.659 1.591l-5.432 5.432a2.25 2.25 0 0 0-.659 1.591v2.927a2.25 2.25 0 0 1-1.244 2.013L9.75 21v-6.568a2.25 2.25 0 0 0-.659-1.591L3.659 7.409A2.25 2.25 0 0 1 3 5.818V4.774c0-.54.384-1.006.917-1.096A48.32 48.32 0 0 1 12 3Z" }));
|
|
94
|
-
var Sort = createIcon("Sort", /* @__PURE__ */ jsx("path", { d: "M3 7.5 7.5 3m0 0L12 7.5M7.5 3v13.5m13.5 0L16.5 21m0 0L12 16.5m4.5 4.5V7.5" }));
|
|
95
|
-
var Refresh = createIcon("Refresh", /* @__PURE__ */ jsx("path", { d: "M16.023 9.348h4.992v-.001M2.985 19.644v-4.992m0 0h4.992m-4.993 0 3.181 3.183a8.25 8.25 0 0 0 13.803-3.7M4.031 9.865a8.25 8.25 0 0 1 13.803-3.7l3.181 3.182m0-4.991v4.99" }));
|
|
96
|
-
var Share = createIcon("Share", /* @__PURE__ */ jsx("path", { d: "M7.217 10.907a2.25 2.25 0 1 0 0 2.186m0-2.186c.18.324.283.696.283 1.093s-.103.77-.283 1.093m0-2.186 9.566-5.314m-9.566 7.5 9.566 5.314m0 0a2.25 2.25 0 1 0 3.935 2.186 2.25 2.25 0 0 0-3.935-2.186Zm0-12.814a2.25 2.25 0 1 0 3.933-2.185 2.25 2.25 0 0 0-3.933 2.185Z" }));
|
|
97
|
-
var Print = createIcon("Print", /* @__PURE__ */ jsx("path", { d: "M6.72 13.829c-.24.03-.48.062-.72.096m.72-.096a42.415 42.415 0 0 1 10.56 0m-10.56 0L6.34 18m10.94-4.171c.24.03.48.062.72.096m-.72-.096L17.66 18m0 0 .229 2.523a1.125 1.125 0 0 1-1.12 1.227H7.231c-.662 0-1.18-.568-1.12-1.227L6.34 18m11.318 0h1.091A2.25 2.25 0 0 0 21 15.75V9.456c0-1.081-.768-2.015-1.837-2.175a48.055 48.055 0 0 0-1.913-.247M6.34 18H5.25A2.25 2.25 0 0 1 3 15.75V9.456c0-1.081.768-2.015 1.837-2.175a48.041 48.041 0 0 1 1.913-.247m10.5 0a48.536 48.536 0 0 0-10.5 0m10.5 0V3.375c0-.621-.504-1.125-1.125-1.125h-8.25c-.621 0-1.125.504-1.125 1.125v3.659M18 10.5h.008v.008H18V10.5Z" }));
|
|
98
|
-
var Settings = createIcon("Settings", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
99
|
-
/* @__PURE__ */ jsx("path", { d: "M9.594 3.94c.09-.542.56-.94 1.11-.94h2.593c.55 0 1.02.398 1.11.94l.213 1.281c.063.374.313.686.645.87.074.04.147.083.22.127.324.196.72.257 1.075.124l1.217-.456a1.125 1.125 0 0 1 1.37.49l1.296 2.247a1.125 1.125 0 0 1-.26 1.431l-1.003.827c-.293.241-.438.613-.43.992a7.723 7.723 0 0 1 0 .255c-.008.378.137.75.43.991l1.004.827c.424.35.534.955.26 1.43l-1.298 2.247a1.125 1.125 0 0 1-1.369.491l-1.217-.456c-.355-.133-.75-.072-1.076.124a6.47 6.47 0 0 1-.22.128c-.331.183-.581.495-.644.869l-.213 1.281c-.09.543-.56.94-1.11.94h-2.594c-.55 0-1.019-.397-1.11-.94l-.213-1.281c-.062-.374-.312-.686-.644-.87a6.52 6.52 0 0 1-.22-.127c-.325-.196-.72-.257-1.076-.124l-1.217.456a1.125 1.125 0 0 1-1.369-.49l-1.297-2.247a1.125 1.125 0 0 1 .26-1.431l1.004-.827c.292-.24.437-.613.43-.991a6.932 6.932 0 0 1 0-.255c.007-.38-.138-.751-.43-.992l-1.004-.827a1.125 1.125 0 0 1-.26-1.43l1.297-2.247a1.125 1.125 0 0 1 1.37-.491l1.216.456c.356.133.751.072 1.076-.124.072-.044.146-.086.22-.128.332-.183.582-.495.644-.869l.214-1.28Z" }),
|
|
100
|
-
/* @__PURE__ */ jsx("path", { d: "M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z" })
|
|
101
|
-
] }));
|
|
102
|
-
var Sliders = createIcon("Sliders", /* @__PURE__ */ jsx("path", { d: "M10.5 6h9.75M10.5 6a1.5 1.5 0 1 1-3 0m3 0a1.5 1.5 0 1 0-3 0M3.75 6H7.5m3 12h9.75m-9.75 0a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m-3.75 0H7.5m9-6h3.75m-3.75 0a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m-9.75 0h9.75" }));
|
|
103
|
-
var Maximize = createIcon("Maximize", /* @__PURE__ */ jsx("path", { d: "M3.75 3.75v4.5m0-4.5h4.5m-4.5 0L9 9M3.75 20.25v-4.5m0 4.5h4.5m-4.5 0L9 15M20.25 3.75h-4.5m4.5 0v4.5m0-4.5L15 9m5.25 11.25h-4.5m4.5 0v-4.5m0 4.5L15 15" }));
|
|
104
|
-
var Minimize = createIcon("Minimize", /* @__PURE__ */ jsx("path", { d: "M9 9V4.5M9 9H4.5M9 9 3.75 3.75M9 15v4.5M9 15H4.5M9 15l-5.25 5.25M15 9h4.5M15 9V4.5M15 9l5.25-5.25M15 15h4.5M15 15v4.5m0-4.5 5.25 5.25" }));
|
|
105
|
-
var Info = createIcon("Info", /* @__PURE__ */ jsx("path", { d: "M11.25 11.25l.041-.02a.75.75 0 0 1 1.063.852l-.708 2.836a.75.75 0 0 0 1.063.853l.041-.021M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9-3.75h.008v.008H12V8.25Z" }));
|
|
106
|
-
var Warning = createIcon("Warning", /* @__PURE__ */ jsx("path", { d: "M12 9v3.75m-9.303 3.376c-.866 1.5.217 3.374 1.948 3.374h14.71c1.73 0 2.813-1.874 1.948-3.374L13.949 3.378c-.866-1.5-3.032-1.5-3.898 0L2.697 16.126zM12 15.75h.007v.008H12v-.008Z" }));
|
|
107
|
-
var Error2 = createIcon("Error", /* @__PURE__ */ jsx("path", { d: "M12 9v3.75m9-.75a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9 3.75h.008v.008H12v-.008Z" }));
|
|
108
|
-
var Question = createIcon("Question", /* @__PURE__ */ jsx("path", { d: "M9.879 7.519c1.171-1.025 3.071-1.025 4.242 0 1.172 1.025 1.172 2.687 0 3.712-.203.179-.43.326-.67.442-.745.361-1.45.999-1.45 1.827v.75M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9 5.25h.008v.008H12v-.008Z" }));
|
|
109
|
-
var Ban = createIcon("Ban", /* @__PURE__ */ jsx("path", { d: "M18.364 18.364A9 9 0 0 0 5.636 5.636m12.728 12.728A9 9 0 0 1 5.636 5.636m12.728 12.728L5.636 5.636" }));
|
|
110
|
-
var Bell = createIcon("Bell", /* @__PURE__ */ jsx("path", { d: "M14.857 17.082a23.848 23.848 0 0 0 5.454-1.31A8.967 8.967 0 0 1 18 9.75V9A6 6 0 0 0 6 9v.75a8.967 8.967 0 0 1-2.312 6.022c1.733.64 3.56 1.085 5.455 1.31m5.714 0a24.255 24.255 0 0 1-5.714 0m5.714 0a3 3 0 1 1-5.714 0" }));
|
|
111
|
-
var Play = createIcon("Play", /* @__PURE__ */ jsx("path", { d: "M5.25 5.653c0-.856.917-1.398 1.667-.986l11.54 6.348a1.125 1.125 0 0 1 0 1.971l-11.54 6.347a1.125 1.125 0 0 1-1.667-.985V5.653Z" }));
|
|
112
|
-
var Pause = createIcon("Pause", /* @__PURE__ */ jsx("path", { d: "M15.75 5.25v13.5m-7.5-13.5v13.5" }));
|
|
113
|
-
var Stop = createIcon("Stop", /* @__PURE__ */ jsx("path", { d: "M5.25 7.5A2.25 2.25 0 0 1 7.5 5.25h9a2.25 2.25 0 0 1 2.25 2.25v9a2.25 2.25 0 0 1-2.25 2.25h-9a2.25 2.25 0 0 1-2.25-2.25v-9Z" }));
|
|
114
|
-
var VolumeUp = createIcon("VolumeUp", /* @__PURE__ */ jsx("path", { d: "M19.114 5.636a9 9 0 0 1 0 12.728M16.463 8.288a5.25 5.25 0 0 1 0 7.424M6.75 8.25l4.72-4.72a.75.75 0 0 1 1.28.53v15.88a.75.75 0 0 1-1.28.53l-4.72-4.72H4.51c-.88 0-1.704-.507-1.938-1.354A9.009 9.009 0 0 1 2.25 12c0-.83.112-1.633.322-2.396C2.806 8.756 3.63 8.25 4.51 8.25H6.75Z" }));
|
|
115
|
-
var VolumeOff = createIcon("VolumeOff", /* @__PURE__ */ jsx("path", { d: "M17.25 9.75 19.5 12m0 0 2.25 2.25M19.5 12l2.25-2.25M19.5 12l-2.25 2.25M6.75 8.25l4.72-4.72a.75.75 0 0 1 1.28.53v15.88a.75.75 0 0 1-1.28.53l-4.72-4.72H4.51c-.88 0-1.704-.507-1.938-1.354A9.009 9.009 0 0 1 2.25 12c0-.83.112-1.633.322-2.396C2.806 8.756 3.63 8.25 4.51 8.25H6.75Z" }));
|
|
116
|
-
var Image = createIcon("Image", /* @__PURE__ */ jsx("path", { d: "m2.25 15.75 5.159-5.159a2.25 2.25 0 0 1 3.182 0l5.159 5.159m-1.5-1.5 1.409-1.409a2.25 2.25 0 0 1 3.182 0l2.909 2.909m-18 3.75h16.5a1.5 1.5 0 0 0 1.5-1.5V6a1.5 1.5 0 0 0-1.5-1.5H3.75A1.5 1.5 0 0 0 2.25 6v12a1.5 1.5 0 0 0 1.5 1.5Zm10.5-11.25h.008v.008h-.008V8.25Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Z" }));
|
|
117
|
-
var Video = createIcon("Video", /* @__PURE__ */ jsx("path", { d: "m15.75 10.5 4.72-4.72a.75.75 0 0 1 1.28.53v11.38a.75.75 0 0 1-1.28.53l-4.72-4.72M4.5 18.75h9a2.25 2.25 0 0 0 2.25-2.25v-9a2.25 2.25 0 0 0-2.25-2.25h-9A2.25 2.25 0 0 0 2.25 7.5v9a2.25 2.25 0 0 0 2.25 2.25Z" }));
|
|
118
|
-
var Camera = createIcon("Camera", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
119
|
-
/* @__PURE__ */ jsx("path", { d: "M6.827 6.175A2.31 2.31 0 0 1 5.186 7.23c-.38.054-.757.112-1.134.175C2.999 7.58 2.25 8.507 2.25 9.574V18a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9.574c0-1.067-.75-1.994-1.802-2.169a47.865 47.865 0 0 0-1.134-.175 2.31 2.31 0 0 1-1.64-1.055l-.822-1.316a2.192 2.192 0 0 0-1.736-1.039 48.774 48.774 0 0 0-5.232 0 2.192 2.192 0 0 0-1.736 1.039l-.821 1.316Z" }),
|
|
120
|
-
/* @__PURE__ */ jsx("path", { d: "M16.5 12.75a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM18.75 10.5h.008v.008h-.008V10.5Z" })
|
|
121
|
-
] }));
|
|
122
|
-
var Microphone = createIcon("Microphone", /* @__PURE__ */ jsx("path", { d: "M12 18.75a6 6 0 0 0 6-6v-1.5m-6 7.5a6 6 0 0 1-6-6v-1.5m6 7.5v3.75m-3.75 0h7.5M12 15.75a3 3 0 0 1-3-3V4.5a3 3 0 1 1 6 0v8.25a3 3 0 0 1-3 3Z" }));
|
|
123
|
-
var Mail = createIcon("Mail", /* @__PURE__ */ jsx("path", { d: "M21.75 6.75v10.5a2.25 2.25 0 0 1-2.25 2.25h-15a2.25 2.25 0 0 1-2.25-2.25V6.75m19.5 0A2.25 2.25 0 0 0 19.5 4.5h-15a2.25 2.25 0 0 0-2.25 2.25m19.5 0v.243a2.25 2.25 0 0 1-1.07 1.916l-7.5 4.615a2.25 2.25 0 0 1-2.36 0L3.32 8.91a2.25 2.25 0 0 1-1.07-1.916V6.75" }));
|
|
124
|
-
var Chat = createIcon("Chat", /* @__PURE__ */ jsx("path", { d: "M2.25 12.76c0 1.6 1.123 2.994 2.707 3.227 1.087.16 2.185.283 3.293.369V21l4.184-4.183a1.14 1.14 0 0 1 .778-.332 48.294 48.294 0 0 0 5.83-.498c1.585-.233 2.708-1.626 2.708-3.228V6.741c0-1.602-1.123-2.995-2.707-3.228A48.394 48.394 0 0 0 12 3c-2.392 0-4.744.175-7.043.513C3.373 3.746 2.25 5.14 2.25 6.741v6.019Z" }));
|
|
125
|
-
var Phone = createIcon("Phone", /* @__PURE__ */ jsx("path", { d: "M2.25 6.75c0 8.284 6.716 15 15 15h2.25a2.25 2.25 0 0 0 2.25-2.25v-1.372c0-.516-.351-.966-.852-1.091l-4.423-1.106c-.44-.11-.902.055-1.173.417l-.97 1.293c-.282.376-.769.542-1.21.38a12.035 12.035 0 0 1-7.143-7.143c-.162-.441.004-.928.38-1.21l1.293-.97c.363-.271.527-.734.417-1.173L6.963 3.102a1.125 1.125 0 0 0-1.091-.852H4.5A2.25 2.25 0 0 0 2.25 4.5v2.25Z" }));
|
|
126
|
-
var Send = createIcon("Send", /* @__PURE__ */ jsx("path", { d: "M6 12 3.269 3.125A59.769 59.769 0 0 1 21.485 12 59.768 59.768 0 0 1 3.27 20.875L5.999 12Zm0 0h7.5" }));
|
|
127
|
-
var User = createIcon("User", /* @__PURE__ */ jsx("path", { d: "M15.75 6a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0ZM4.501 20.118a7.5 7.5 0 0 1 14.998 0A17.933 17.933 0 0 1 12 21.75c-2.676 0-5.216-.584-7.499-1.632Z" }));
|
|
128
|
-
var Users = createIcon("Users", /* @__PURE__ */ jsx("path", { d: "M15 19.128a9.38 9.38 0 0 0 2.625.372 9.337 9.337 0 0 0 4.121-.952 4.125 4.125 0 0 0-7.533-2.493M15 19.128v-.003c0-1.113-.285-2.16-.786-3.07M15 19.128v.106A12.318 12.318 0 0 1 8.624 21c-2.331 0-4.512-.645-6.374-1.766l-.001-.109a6.375 6.375 0 0 1 11.964-3.07M12 6.375a3.375 3.375 0 1 1-6.75 0 3.375 3.375 0 0 1 6.75 0Zm8.25 2.25a2.625 2.625 0 1 1-5.25 0 2.625 2.625 0 0 1 5.25 0Z" }));
|
|
129
|
-
var Home = createIcon("Home", /* @__PURE__ */ jsx("path", { d: "m2.25 12 8.954-8.955c.44-.439 1.152-.439 1.591 0L21.75 12M4.5 9.75v10.125c0 .621.504 1.125 1.125 1.125H9.75v-4.875c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21h4.125c.621 0 1.125-.504 1.125-1.125V9.75M8.25 21h8.25" }));
|
|
130
|
-
var Globe = createIcon("Globe", /* @__PURE__ */ jsx("path", { d: "M12 21a9.004 9.004 0 0 0 8.716-6.747M12 21a9.004 9.004 0 0 1-8.716-6.747M12 21c2.485 0 4.5-4.03 4.5-9S14.485 3 12 3m0 18c-2.485 0-4.5-4.03-4.5-9S9.515 3 12 3m0 0a8.997 8.997 0 0 1 7.843 4.582M12 3a8.997 8.997 0 0 0-7.843 4.582m15.686 0A11.953 11.953 0 0 1 12 10.5c-2.998 0-5.74-1.1-7.843-2.918m15.686 0A8.959 8.959 0 0 1 21 12c0 .778-.099 1.533-.284 2.253m0 0A17.919 17.919 0 0 1 12 16.5c-3.162 0-6.133-.815-8.716-2.247m0 0A9.015 9.015 0 0 1 3 12c0-1.605.42-3.113 1.157-4.418" }));
|
|
131
|
-
var MapPin = createIcon("MapPin", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
132
|
-
/* @__PURE__ */ jsx("path", { d: "M15 10.5a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z" }),
|
|
133
|
-
/* @__PURE__ */ jsx("path", { d: "M19.5 10.5c0 7.142-7.5 11.25-7.5 11.25S4.5 17.642 4.5 10.5a7.5 7.5 0 1 1 15 0Z" })
|
|
134
|
-
] }));
|
|
135
|
-
var Calendar = createIcon("Calendar", /* @__PURE__ */ jsx("path", { d: "M6.75 3v2.25M17.25 3v2.25M3 18.75V7.5a2.25 2.25 0 0 1 2.25-2.25h13.5A2.25 2.25 0 0 1 21 7.5v11.25m-18 0A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75m-18 0v-7.5A2.25 2.25 0 0 1 5.25 9h13.5A2.25 2.25 0 0 1 21 11.25v7.5" }));
|
|
136
|
-
var Clock = createIcon("Clock", /* @__PURE__ */ jsx("path", { d: "M12 6v6h4.5m4.5 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z" }));
|
|
137
|
-
var Document = createIcon("Document", /* @__PURE__ */ jsx("path", { d: "M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m0 12.75h7.5m-7.5 3H12M10.5 2.25H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z" }));
|
|
138
|
-
var File = createIcon("File", /* @__PURE__ */ jsx("path", { d: "M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m2.25 0H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z" }));
|
|
139
|
-
var Folder = createIcon("Folder", /* @__PURE__ */ jsx("path", { d: "M2.25 12.75V12A2.25 2.25 0 0 1 4.5 9.75h15A2.25 2.25 0 0 1 21.75 12v.75m-8.69-6.44-2.12-2.12a1.5 1.5 0 0 0-1.061-.44H4.5A2.25 2.25 0 0 0 2.25 6v12a2.25 2.25 0 0 0 2.25 2.25h15A2.25 2.25 0 0 0 21.75 18V9a2.25 2.25 0 0 0-2.25-2.25h-5.379a1.5 1.5 0 0 1-1.06-.44Z" }));
|
|
140
|
-
var Database = createIcon("Database", /* @__PURE__ */ jsx("path", { d: "M20.25 6.375c0 2.278-3.694 4.125-8.25 4.125S3.75 8.653 3.75 6.375m16.5 0c0-2.278-3.694-4.125-8.25-4.125S3.75 4.097 3.75 6.375m16.5 0v11.25c0 2.278-3.694 4.125-8.25 4.125s-8.25-1.847-8.25-4.125V6.375m16.5 0v3.75m-16.5-3.75v3.75m16.5 0v3.75C20.25 16.153 16.556 18 12 18s-8.25-1.847-8.25-4.125v-3.75m16.5 0c0 2.278-3.694 4.125-8.25 4.125s-8.25-1.847-8.25-4.125" }));
|
|
141
|
-
var Grid = createIcon("Grid", /* @__PURE__ */ jsx("path", { d: "M3.75 6A2.25 2.25 0 0 1 6 3.75h2.25A2.25 2.25 0 0 1 10.5 6v2.25a2.25 2.25 0 0 1-2.25 2.25H6a2.25 2.25 0 0 1-2.25-2.25V6ZM3.75 15.75A2.25 2.25 0 0 1 6 13.5h2.25a2.25 2.25 0 0 1 2.25 2.25V18a2.25 2.25 0 0 1-2.25 2.25H6A2.25 2.25 0 0 1 3.75 18v-2.25ZM13.5 6a2.25 2.25 0 0 1 2.25-2.25H18A2.25 2.25 0 0 1 20.25 6v2.25A2.25 2.25 0 0 1 18 10.5h-2.25a2.25 2.25 0 0 1-2.25-2.25V6ZM13.5 15.75a2.25 2.25 0 0 1 2.25-2.25H18a2.25 2.25 0 0 1 2.25 2.25V18A2.25 2.25 0 0 1 18 20.25h-2.25a2.25 2.25 0 0 1-2.25-2.25v-2.25Z" }));
|
|
142
|
-
var List = createIcon("List", /* @__PURE__ */ jsx("path", { d: "M8.25 6.75h12M8.25 12h12m-12 5.25h12M3.75 6.75h.007v.008H3.75V6.75Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0ZM3.75 12h.007v.008H3.75V12Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Zm-.375 5.25h.007v.008H3.75v-.008Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Z" }));
|
|
143
|
-
var Table = createIcon("Table", /* @__PURE__ */ jsx("path", { d: "M3.375 19.5h17.25m-17.25 0a1.125 1.125 0 0 1-1.125-1.125M3.375 19.5h7.5c.621 0 1.125-.504 1.125-1.125m-9.75 0V5.625m0 12.75v-1.5c0-.621.504-1.125 1.125-1.125m18.375 2.625V5.625m0 12.75c0 .621-.504 1.125-1.125 1.125m1.125-1.125v-1.5c0-.621-.504-1.125-1.125-1.125m0 3.75h-7.5A1.125 1.125 0 0 1 12 18.375m9.75-12.75c0-.621-.504-1.125-1.125-1.125H3.375c-.621 0-1.125.504-1.125 1.125m19.5 0v1.5c0 .621-.504 1.125-1.125 1.125M2.25 5.625v1.5c0 .621.504 1.125 1.125 1.125m0 0h17.25m-17.25 0h7.5c.621 0 1.125.504 1.125 1.125M3.375 8.25c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125m17.25-3.75h-7.5c-.621 0-1.125.504-1.125 1.125m8.625-1.125c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125m-17.25 0h7.5m-7.5 0c-.621 0-1.125.504-1.125 1.125v1.5c0 .621.504 1.125 1.125 1.125M12 10.875v-1.5m0 1.5c0 .621-.504 1.125-1.125 1.125M12 10.875c0 .621.504 1.125 1.125 1.125m-2.25 0c.621 0 1.125.504 1.125 1.125M13.125 12h7.5m-7.5 0c-.621 0-1.125.504-1.125 1.125M20.625 12c.621 0 1.125.504 1.125 1.125v1.5c0 .621-.504 1.125-1.125 1.125m-17.25 0h7.5M12 14.625v-1.5m0 1.5c0 .621-.504 1.125-1.125 1.125M12 14.625c0 .621.504 1.125 1.125 1.125m-2.25 0c.621 0 1.125.504 1.125 1.125m0 1.5v-1.5m0 0c0-.621.504-1.125 1.125-1.125m0 0h7.5" }));
|
|
144
|
-
var ChartBar = createIcon("ChartBar", /* @__PURE__ */ jsx("path", { d: "M3 13.125C3 12.504 3.504 12 4.125 12h2.25c.621 0 1.125.504 1.125 1.125v6.75C7.5 20.496 6.996 21 6.375 21h-2.25A1.125 1.125 0 0 1 3 19.875v-6.75ZM9.75 8.625c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125v11.25c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 0 1-1.125-1.125V8.625ZM16.5 4.125c0-.621.504-1.125 1.125-1.125h2.25C20.496 3 21 3.504 21 4.125v15.75c0 .621-.504 1.125-1.125 1.125h-2.25a1.125 1.125 0 0 1-1.125-1.125V4.125Z" }));
|
|
145
|
-
var PieChart = createIcon("PieChart", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
146
|
-
/* @__PURE__ */ jsx("path", { d: "M10.5 6a7.5 7.5 0 1 0 7.5 7.5h-7.5V6Z" }),
|
|
147
|
-
/* @__PURE__ */ jsx("path", { d: "M13.5 10.5H21A7.5 7.5 0 0 0 13.5 3v7.5Z" })
|
|
148
|
-
] }));
|
|
149
|
-
var TrendingUp = createIcon("TrendingUp", /* @__PURE__ */ jsx("path", { d: "M2.25 18 9 11.25l4.306 4.306a11.95 11.95 0 0 1 5.814-5.518l2.74-1.22m0 0-5.94-2.281m5.94 2.28-2.28 5.941" }));
|
|
150
|
-
var TrendingDown = createIcon("TrendingDown", /* @__PURE__ */ jsx("path", { d: "M2.25 6 9 12.75l4.286-4.286a11.948 11.948 0 0 1 4.306 6.43l.776 2.898m0 0 3.182-5.511m-3.182 5.51-5.511-3.181" }));
|
|
151
|
-
var Calculator = createIcon("Calculator", /* @__PURE__ */ jsx("path", { d: "M15.75 15.75V18m-7.5-6.75h.008v.008H8.25v-.008Zm0 2.25h.008v.008H8.25V13.5Zm0 2.25h.008v.008H8.25v-.008Zm0 2.25h.008v.008H8.25V18Zm2.498-6.75h.007v.008h-.007v-.008Zm0 2.25h.007v.008h-.007V13.5Zm0 2.25h.007v.008h-.007v-.008Zm0 2.25h.007v.008h-.007V18Zm2.504-6.75h.008v.008h-.008v-.008Zm0 2.25h.008v.008h-.008V13.5Zm0 2.25h.008v.008h-.008v-.008Zm0 2.25h.008v.008h-.008V18Zm2.498-6.75h.008v.008h-.008v-.008Zm0 2.25h.008v.008h-.008V13.5ZM8.25 6h7.5v2.25h-7.5V6ZM12 2.25c-1.892 0-3.758.11-5.593.322C5.307 2.7 4.5 3.65 4.5 4.757V19.5a2.25 2.25 0 0 0 2.25 2.25h10.5a2.25 2.25 0 0 0 2.25-2.25V4.757c0-1.108-.806-2.057-1.907-2.185A48.507 48.507 0 0 0 12 2.25Z" }));
|
|
152
|
-
var Lock = createIcon("Lock", /* @__PURE__ */ jsx("path", { d: "M16.5 10.5V6.75a4.5 4.5 0 1 0-9 0v3.75m-.75 11.25h10.5a2.25 2.25 0 0 0 2.25-2.25v-6.75a2.25 2.25 0 0 0-2.25-2.25H6.75a2.25 2.25 0 0 0-2.25 2.25v6.75a2.25 2.25 0 0 0 2.25 2.25Z" }));
|
|
153
|
-
var Unlock = createIcon("Unlock", /* @__PURE__ */ jsx("path", { d: "M13.5 10.5V6.75a4.5 4.5 0 1 1 9 0v3.75M3.75 21.75h10.5a2.25 2.25 0 0 0 2.25-2.25v-6.75a2.25 2.25 0 0 0-2.25-2.25H3.75a2.25 2.25 0 0 0-2.25 2.25v6.75a2.25 2.25 0 0 0 2.25 2.25Z" }));
|
|
154
|
-
var Key = createIcon("Key", /* @__PURE__ */ jsx("path", { d: "M15.75 5.25a3 3 0 0 1 3 3m3 0a6 6 0 0 1-7.029 5.912c-.563-.097-1.159.026-1.563.43L10.5 17.25H8.25v2.25H6v2.25H2.25v-2.818c0-.597.237-1.17.659-1.591l6.499-6.499c.404-.404.527-1 .43-1.563A6 6 0 1 1 21.75 8.25Z" }));
|
|
155
|
-
var Shield = createIcon("Shield", /* @__PURE__ */ jsx("path", { d: "M12 9v3.75m0-10.036A11.959 11.959 0 0 1 3.598 6 11.99 11.99 0 0 0 3 9.75c0 5.592 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.31-.21-2.57-.598-3.75h-.152c-3.196 0-6.1-1.249-8.25-3.286Zm0 13.036h.008v.008H12v-.008Z" }));
|
|
156
|
-
var ShieldCheck = createIcon("ShieldCheck", /* @__PURE__ */ jsx("path", { d: "M9 12.75 11.25 15 15 9.75m-3-7.036A11.959 11.959 0 0 1 3.598 6 11.99 11.99 0 0 0 3 9.749c0 5.592 3.824 10.29 9 11.623 5.176-1.332 9-6.03 9-11.622 0-1.31-.21-2.571-.598-3.751h-.152c-3.196 0-6.1-1.248-8.25-3.285Z" }));
|
|
157
|
-
var Star = createIcon("Star", /* @__PURE__ */ jsx("path", { d: "M11.48 3.499a.562.562 0 0 1 1.04 0l2.125 5.111a.563.563 0 0 0 .475.345l5.518.442c.499.04.701.663.321.988l-4.204 3.602a.563.563 0 0 0-.182.557l1.285 5.385a.562.562 0 0 1-.84.61l-4.725-2.885a.562.562 0 0 0-.586 0L6.982 20.54a.562.562 0 0 1-.84-.61l1.285-5.386a.562.562 0 0 0-.182-.557l-4.204-3.602a.562.562 0 0 1 .321-.988l5.518-.442a.563.563 0 0 0 .475-.345L11.48 3.5Z" }));
|
|
158
|
-
var StarFilled = createIcon("StarFilled", /* @__PURE__ */ jsx("path", { d: "M10.788 3.21c.448-1.077 1.976-1.077 2.424 0l2.082 5.007 5.404.433c1.164.093 1.636 1.545.749 2.305l-4.117 3.527 1.257 5.273c.271 1.136-.964 2.033-1.96 1.425L12 18.354 7.373 21.18c-.996.608-2.231-.29-1.96-1.425l1.257-5.273-4.117-3.527c-.887-.76-.415-2.212.749-2.305l5.404-.433 2.082-5.005Z" }), { solid: true });
|
|
159
|
-
var Heart = createIcon("Heart", /* @__PURE__ */ jsx("path", { d: "M21 8.25c0-2.485-2.099-4.5-4.688-4.5-1.935 0-3.597 1.126-4.312 2.733-.715-1.607-2.377-2.733-4.313-2.733C5.1 3.75 3 5.765 3 8.25c0 7.22 9 12 9 12s9-4.78 9-12Z" }));
|
|
160
|
-
var Bookmark = createIcon("Bookmark", /* @__PURE__ */ jsx("path", { d: "M17.593 3.322c1.1.128 1.907 1.077 1.907 2.185V21L12 17.25 4.5 21V5.507c0-1.108.806-2.057 1.907-2.185a48.507 48.507 0 0 1 11.186 0Z" }));
|
|
161
|
-
var Tag = createIcon("Tag", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
162
|
-
/* @__PURE__ */ jsx("path", { d: "M9.568 3H5.25A2.25 2.25 0 0 0 3 5.25v4.318c0 .597.237 1.17.659 1.591l9.581 9.581c.699.699 1.78.872 2.607.33a18.095 18.095 0 0 0 5.223-5.223c.542-.827.369-1.908-.33-2.607L11.16 3.66A2.25 2.25 0 0 0 9.568 3Z" }),
|
|
163
|
-
/* @__PURE__ */ jsx("path", { d: "M6 6h.008v.008H6V6Z" })
|
|
164
|
-
] }));
|
|
165
|
-
var Link = createIcon("Link", /* @__PURE__ */ jsx("path", { d: "M13.19 8.688a4.5 4.5 0 0 1 1.242 7.244l-4.5 4.5a4.5 4.5 0 0 1-6.364-6.364l1.757-1.757m13.35-.622 1.757-1.757a4.5 4.5 0 0 0-6.364-6.364l-4.5 4.5a4.5 4.5 0 0 0 1.242 7.244" }));
|
|
166
|
-
var Eye = createIcon("Eye", /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
167
|
-
/* @__PURE__ */ jsx("path", { d: "M2.036 12.322a1.012 1.012 0 0 1 0-.639C3.423 7.51 7.36 4.5 12 4.5c4.638 0 8.573 3.007 9.963 7.178.07.207.07.431 0 .639C20.577 16.49 16.64 19.5 12 19.5c-4.638 0-8.573-3.007-9.963-7.178Z" }),
|
|
168
|
-
/* @__PURE__ */ jsx("path", { d: "M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z" })
|
|
169
|
-
] }));
|
|
170
|
-
var EyeSlash = createIcon("EyeSlash", /* @__PURE__ */ jsx("path", { d: "M3.98 8.223A10.477 10.477 0 0 0 1.934 12C3.226 16.338 7.244 19.5 12 19.5c.993 0 1.953-.138 2.863-.395M6.228 6.228A10.451 10.451 0 0 1 12 4.5c4.756 0 8.773 3.162 10.065 7.498a10.522 10.522 0 0 1-4.293 5.774M6.228 6.228 3 3m3.228 3.228 3.65 3.65m7.894 7.894L21 21m-3.228-3.228-3.65-3.65m0 0a3 3 0 1 0-4.243-4.243m4.242 4.242L9.88 9.88" }));
|
|
171
|
-
var Bolt = createIcon("Bolt", /* @__PURE__ */ jsx("path", { d: "m3.75 13.5 10.5-11.25L12 10.5h8.25L9.75 21.75 12 13.5H3.75Z" }));
|
|
172
|
-
var Sparkles = createIcon("Sparkles", /* @__PURE__ */ jsx("path", { d: "M9.813 15.904 9 18.75l-.813-2.846a4.5 4.5 0 0 0-3.09-3.09L2.25 12l2.846-.813a4.5 4.5 0 0 0 3.09-3.09L9 5.25l.813 2.846a4.5 4.5 0 0 0 3.09 3.09L15.75 12l-2.846.813a4.5 4.5 0 0 0-3.09 3.09ZM18.259 8.715 18 9.75l-.259-1.035a3.375 3.375 0 0 0-2.455-2.456L14.25 6l1.036-.259a3.375 3.375 0 0 0 2.455-2.456L18 2.25l.259 1.035a3.375 3.375 0 0 0 2.456 2.456L21.75 6l-1.035.259a3.375 3.375 0 0 0-2.456 2.456Z" }));
|
|
173
|
-
var Sun = createIcon("Sun", /* @__PURE__ */ jsx("path", { d: "M12 3v2.25m6.364.386-1.591 1.591M21 12h-2.25m-.386 6.364-1.591-1.591M12 18.75V21m-4.773-4.227-1.591 1.591M5.25 12H3m4.227-4.773L5.636 5.636M15.75 12a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0Z" }));
|
|
174
|
-
var Moon = createIcon("Moon", /* @__PURE__ */ jsx("path", { d: "M21.752 15.002A9.72 9.72 0 0 1 18 15.75c-5.385 0-9.75-4.365-9.75-9.75 0-1.33.266-2.597.748-3.752A9.753 9.753 0 0 0 3 11.25C3 16.635 7.365 21 12.75 21a9.753 9.753 0 0 0 9.002-5.998Z" }));
|
|
175
|
-
var Spinner = createIcon("Spinner", /* @__PURE__ */ jsx("path", { d: "M16.023 9.348h4.992v-.001M2.985 19.644v-4.992m0 0h4.992m-4.993 0 3.181 3.183a8.25 8.25 0 0 0 13.803-3.7M4.031 9.865a8.25 8.25 0 0 1 13.803-3.7l3.181 3.182m0-4.991v4.99" }));
|
|
176
|
-
var Login = createIcon("Login", /* @__PURE__ */ jsx("path", { d: "M15.75 9V5.25A2.25 2.25 0 0 0 13.5 3h-6a2.25 2.25 0 0 0-2.25 2.25v13.5A2.25 2.25 0 0 0 7.5 21h6a2.25 2.25 0 0 0 2.25-2.25V15m3 0 3-3m0 0-3-3m3 3H9" }));
|
|
177
|
-
var Logout = createIcon("Logout", /* @__PURE__ */ jsx("path", { d: "M15.75 9V5.25A2.25 2.25 0 0 0 13.5 3h-6a2.25 2.25 0 0 0-2.25 2.25v13.5A2.25 2.25 0 0 0 7.5 21h6a2.25 2.25 0 0 0 2.25-2.25V15M12 9l-3 3m0 0 3 3m-3-3h12.75" }));
|
|
178
|
-
var Power = createIcon("Power", /* @__PURE__ */ jsx("path", { d: "M5.636 5.636a9 9 0 1 0 12.728 0M12 3v9" }));
|
|
179
|
-
var Icon = {
|
|
180
|
-
ChevronUp,
|
|
181
|
-
ChevronDown,
|
|
182
|
-
ChevronLeft,
|
|
183
|
-
ChevronRight,
|
|
184
|
-
ChevronsLeft,
|
|
185
|
-
ChevronsRight,
|
|
186
|
-
CaretUp,
|
|
187
|
-
CaretDown,
|
|
188
|
-
CaretLeft,
|
|
189
|
-
CaretRight,
|
|
190
|
-
ArrowUp,
|
|
191
|
-
ArrowDown,
|
|
192
|
-
ArrowLeft,
|
|
193
|
-
ArrowRight,
|
|
194
|
-
Menu,
|
|
195
|
-
DotsHorizontal,
|
|
196
|
-
DotsVertical,
|
|
197
|
-
ExternalLink,
|
|
198
|
-
X,
|
|
199
|
-
XCircle,
|
|
200
|
-
Plus,
|
|
201
|
-
PlusCircle,
|
|
202
|
-
Minus,
|
|
203
|
-
MinusCircle,
|
|
204
|
-
Check,
|
|
205
|
-
CheckCircle,
|
|
206
|
-
Search,
|
|
207
|
-
Edit,
|
|
208
|
-
Trash,
|
|
209
|
-
Copy,
|
|
210
|
-
Clipboard,
|
|
211
|
-
Download,
|
|
212
|
-
Upload,
|
|
213
|
-
Save,
|
|
214
|
-
Filter,
|
|
215
|
-
Sort,
|
|
216
|
-
Refresh,
|
|
217
|
-
Share,
|
|
218
|
-
Print,
|
|
219
|
-
Settings,
|
|
220
|
-
Sliders,
|
|
221
|
-
Maximize,
|
|
222
|
-
Minimize,
|
|
223
|
-
Info,
|
|
224
|
-
Warning,
|
|
225
|
-
Error: Error2,
|
|
226
|
-
Question,
|
|
227
|
-
Ban,
|
|
228
|
-
Bell,
|
|
229
|
-
Play,
|
|
230
|
-
Pause,
|
|
231
|
-
Stop,
|
|
232
|
-
VolumeUp,
|
|
233
|
-
VolumeOff,
|
|
234
|
-
Image,
|
|
235
|
-
Video,
|
|
236
|
-
Camera,
|
|
237
|
-
Microphone,
|
|
238
|
-
Mail,
|
|
239
|
-
Chat,
|
|
240
|
-
Phone,
|
|
241
|
-
Send,
|
|
242
|
-
User,
|
|
243
|
-
Users,
|
|
244
|
-
Home,
|
|
245
|
-
Globe,
|
|
246
|
-
MapPin,
|
|
247
|
-
Calendar,
|
|
248
|
-
Clock,
|
|
249
|
-
Document,
|
|
250
|
-
File,
|
|
251
|
-
Folder,
|
|
252
|
-
Database,
|
|
253
|
-
Grid,
|
|
254
|
-
List,
|
|
255
|
-
Table,
|
|
256
|
-
ChartBar,
|
|
257
|
-
PieChart,
|
|
258
|
-
TrendingUp,
|
|
259
|
-
TrendingDown,
|
|
260
|
-
Calculator,
|
|
261
|
-
Lock,
|
|
262
|
-
Unlock,
|
|
263
|
-
Key,
|
|
264
|
-
Shield,
|
|
265
|
-
ShieldCheck,
|
|
266
|
-
Star,
|
|
267
|
-
StarFilled,
|
|
268
|
-
Heart,
|
|
269
|
-
Bookmark,
|
|
270
|
-
Tag,
|
|
271
|
-
Link,
|
|
272
|
-
Eye,
|
|
273
|
-
EyeSlash,
|
|
274
|
-
Bolt,
|
|
275
|
-
Sparkles,
|
|
276
|
-
Sun,
|
|
277
|
-
Moon,
|
|
278
|
-
Spinner,
|
|
279
|
-
Login,
|
|
280
|
-
Logout,
|
|
281
|
-
Power,
|
|
282
|
-
// ── Back-compat aliases (legacy names) ──
|
|
283
|
-
XClose: X,
|
|
284
|
-
Checked: Check,
|
|
285
|
-
Cog: Settings,
|
|
286
|
-
Tweak: Sliders,
|
|
287
|
-
Expand: Maximize,
|
|
288
|
-
Collapse: Minimize,
|
|
289
|
-
ShowMore: DotsVertical,
|
|
290
|
-
Delete: Trash,
|
|
291
|
-
Bookmarks: Bookmark,
|
|
292
|
-
CircleStack: Database,
|
|
293
|
-
Data: Database,
|
|
294
|
-
DoubleChevronRight: ChevronsRight,
|
|
295
|
-
Loading: Spinner,
|
|
296
|
-
PowerOff: Power
|
|
297
|
-
};
|
|
298
|
-
var icons_default = Icon;
|
|
299
23
|
function Portal({ children, target }) {
|
|
300
24
|
const [resolved, setResolved] = useState(null);
|
|
301
25
|
useEffect(() => {
|
|
@@ -515,7 +239,7 @@ var JUSTIFY_CLASS2 = {
|
|
|
515
239
|
end: "justify-items-end",
|
|
516
240
|
stretch: "justify-items-stretch"
|
|
517
241
|
};
|
|
518
|
-
function
|
|
242
|
+
function Grid({
|
|
519
243
|
cols,
|
|
520
244
|
rows,
|
|
521
245
|
gap,
|
|
@@ -822,7 +546,7 @@ var SIZE_CLASSES = {
|
|
|
822
546
|
md: "h-9 px-4 text-sm gap-1.5 rounded-lg",
|
|
823
547
|
lg: "h-11 px-5 text-sm gap-2 rounded-xl"
|
|
824
548
|
};
|
|
825
|
-
var Button =
|
|
549
|
+
var Button = React28.forwardRef(function Button2({
|
|
826
550
|
content,
|
|
827
551
|
variant = "primary",
|
|
828
552
|
size = "md",
|
|
@@ -930,7 +654,7 @@ function MenuButton({
|
|
|
930
654
|
"data-[state=open]:animate-in data-[state=open]:fade-in-0 data-[state=open]:zoom-in-95",
|
|
931
655
|
"data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95"
|
|
932
656
|
].join(" "),
|
|
933
|
-
children: items.map((item) => /* @__PURE__ */ jsxs(
|
|
657
|
+
children: items.map((item) => /* @__PURE__ */ jsxs(React28.Fragment, { children: [
|
|
934
658
|
item.separatorBefore && /* @__PURE__ */ jsx(DropdownMenu.Separator, { className: "my-1 h-px bg-border" }),
|
|
935
659
|
/* @__PURE__ */ jsxs(
|
|
936
660
|
DropdownMenu.Item,
|
|
@@ -1869,9 +1593,9 @@ var SIZES = {
|
|
|
1869
1593
|
sm: { box: "h-7 w-7 text-xs", center: 14, title: "text-xs", desc: "text-[11px]" },
|
|
1870
1594
|
md: { box: "h-9 w-9 text-sm", center: 18, title: "text-sm", desc: "text-xs" }
|
|
1871
1595
|
};
|
|
1872
|
-
var
|
|
1596
|
+
var Check = () => /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 3, "aria-hidden": "true", className: "h-1/2 w-1/2 animate-check-pop", children: /* @__PURE__ */ jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M20 6L9 17l-5-5" }) });
|
|
1873
1597
|
var Cross = () => /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 3, "aria-hidden": "true", className: "h-1/2 w-1/2", children: /* @__PURE__ */ jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M18 6 6 18M6 6l12 12" }) });
|
|
1874
|
-
var
|
|
1598
|
+
var Spinner = () => /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", className: "h-1/2 w-1/2 animate-spin", children: /* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4.755 10.059a7.5 7.5 0 0112.548-3.364l1.903 1.903h-3.183a.75.75 0 100 1.5h4.992a.75.75 0 00.75-.75V4.356a.75.75 0 00-1.5 0v3.18l-1.9-1.9A9 9 0 003.306 9.67a.75.75 0 101.45.388zm15.408 3.352a.75.75 0 00-.919.53 7.5 7.5 0 01-12.548 3.364l-1.902-1.903h3.183a.75.75 0 000-1.5H2.984a.75.75 0 00-.75.75v4.992a.75.75 0 001.5 0v-3.18l1.9 1.9a9 9 0 0015.059-4.035.75.75 0 00-.53-.918z" }) });
|
|
1875
1599
|
function Indicator({ state, index, step, sizeKey }) {
|
|
1876
1600
|
const reduced = useReducedMotion();
|
|
1877
1601
|
const s = SIZES[sizeKey];
|
|
@@ -1883,7 +1607,7 @@ function Indicator({ state, index, step, sizeKey }) {
|
|
|
1883
1607
|
error: "bg-status-error text-white",
|
|
1884
1608
|
pending: "border border-border bg-surface text-foreground-muted"
|
|
1885
1609
|
};
|
|
1886
|
-
const content = step.icon ?? (state === "completed" ? /* @__PURE__ */ jsx(
|
|
1610
|
+
const content = step.icon ?? (state === "completed" ? /* @__PURE__ */ jsx(Check, {}) : state === "error" ? /* @__PURE__ */ jsx(Cross, {}) : state === "loading" ? /* @__PURE__ */ jsx(Spinner, {}) : index + 1);
|
|
1887
1611
|
return /* @__PURE__ */ jsx(
|
|
1888
1612
|
motion.span,
|
|
1889
1613
|
{
|
|
@@ -1972,7 +1696,7 @@ function Stepper({
|
|
|
1972
1696
|
] }, step.key);
|
|
1973
1697
|
}) });
|
|
1974
1698
|
}
|
|
1975
|
-
var
|
|
1699
|
+
var Check2 = () => /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 3, "aria-hidden": "true", className: "h-3 w-3", children: /* @__PURE__ */ jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M20 6L9 17l-5-5" }) });
|
|
1976
1700
|
var Cross2 = () => /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 3, "aria-hidden": "true", className: "h-3 w-3", children: /* @__PURE__ */ jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M18 6 6 18M6 6l12 12" }) });
|
|
1977
1701
|
var NODE = {
|
|
1978
1702
|
complete: "bg-accent text-accent-fg border-accent",
|
|
@@ -2001,7 +1725,7 @@ function Timeline({ events, current, className = "" }) {
|
|
|
2001
1725
|
].join(" "),
|
|
2002
1726
|
children: [
|
|
2003
1727
|
status === "current" && /* @__PURE__ */ jsx("span", { className: "absolute inset-0 animate-breathe rounded-full ring-2 ring-accent/40", "aria-hidden": "true" }),
|
|
2004
|
-
event.icon ?? (status === "complete" ? /* @__PURE__ */ jsx(
|
|
1728
|
+
event.icon ?? (status === "complete" ? /* @__PURE__ */ jsx(Check2, {}) : status === "error" ? /* @__PURE__ */ jsx(Cross2, {}) : /* @__PURE__ */ jsx("span", { className: `h-2 w-2 rounded-full ${status === "current" ? "bg-accent" : "bg-border"}` }))
|
|
2005
1729
|
]
|
|
2006
1730
|
}
|
|
2007
1731
|
),
|
|
@@ -2029,7 +1753,7 @@ function Kbd({
|
|
|
2029
1753
|
style
|
|
2030
1754
|
}) {
|
|
2031
1755
|
if (keys && keys.length > 0) {
|
|
2032
|
-
return /* @__PURE__ */ jsx("span", { className: ["inline-flex items-center gap-1", className].filter(Boolean).join(" "), style, children: keys.map((k, i) => /* @__PURE__ */ jsxs(
|
|
1756
|
+
return /* @__PURE__ */ jsx("span", { className: ["inline-flex items-center gap-1", className].filter(Boolean).join(" "), style, children: keys.map((k, i) => /* @__PURE__ */ jsxs(React28.Fragment, { children: [
|
|
2033
1757
|
i > 0 && /* @__PURE__ */ jsx("span", { className: "text-foreground-muted text-xs select-none", children: separator }),
|
|
2034
1758
|
/* @__PURE__ */ jsx("kbd", { className: [cap, SIZE3[size]].join(" "), children: k })
|
|
2035
1759
|
] }, `${k}-${i}`)) });
|
|
@@ -2121,7 +1845,7 @@ function FlatCarousel({
|
|
|
2121
1845
|
style
|
|
2122
1846
|
}) {
|
|
2123
1847
|
const scrollerRef = useRef(null);
|
|
2124
|
-
const slides =
|
|
1848
|
+
const slides = React28.Children.toArray(children);
|
|
2125
1849
|
const [active, setActive] = useState(0);
|
|
2126
1850
|
const [atStart, setAtStart] = useState(true);
|
|
2127
1851
|
const [atEnd, setAtEnd] = useState(false);
|
|
@@ -2176,7 +1900,7 @@ function RotatingCarousel({
|
|
|
2176
1900
|
className = "",
|
|
2177
1901
|
style
|
|
2178
1902
|
}) {
|
|
2179
|
-
const slides =
|
|
1903
|
+
const slides = React28.Children.toArray(children);
|
|
2180
1904
|
const count = slides.length;
|
|
2181
1905
|
const [active, setActive] = useState(0);
|
|
2182
1906
|
const reduced = useReducedMotion();
|
|
@@ -2381,7 +2105,7 @@ var toDate = (d) => d instanceof Date ? d : new Date(d);
|
|
|
2381
2105
|
var timeLabel = (d) => `${String(d.getHours()).padStart(2, "0")}:${String(d.getMinutes()).padStart(2, "0")}`;
|
|
2382
2106
|
var initials = (name) => (name ?? "").trim().split(/\s+/).slice(0, 2).map((w) => w[0]?.toUpperCase() ?? "").join("") || void 0;
|
|
2383
2107
|
var SendIcon = () => /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 2, "aria-hidden": "true", className: "h-4 w-4", children: /* @__PURE__ */ jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M22 2 11 13M22 2l-7 20-4-9-9-4 20-7z" }) });
|
|
2384
|
-
var
|
|
2108
|
+
var ArrowDown = () => /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 2, "aria-hidden": "true", className: "h-4 w-4", children: /* @__PURE__ */ jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M12 5v14M5 12l7 7 7-7" }) });
|
|
2385
2109
|
function TypingDots() {
|
|
2386
2110
|
return /* @__PURE__ */ jsx("span", { className: "inline-flex items-center gap-1", "aria-hidden": "true", children: [0, 1, 2].map((i) => /* @__PURE__ */ jsx("span", { className: "h-1.5 w-1.5 animate-bounce rounded-full bg-foreground-muted", style: { animationDelay: `${i * 0.15}s` } }, i)) });
|
|
2387
2111
|
}
|
|
@@ -2398,7 +2122,7 @@ function ChatSkeleton() {
|
|
|
2398
2122
|
/* @__PURE__ */ jsx("span", { className: "h-8 animate-pulse rounded-2xl bg-surface", style: { width: r.w } })
|
|
2399
2123
|
] }, i)) });
|
|
2400
2124
|
}
|
|
2401
|
-
function
|
|
2125
|
+
function Chat({
|
|
2402
2126
|
messages,
|
|
2403
2127
|
currentUserId,
|
|
2404
2128
|
onSend,
|
|
@@ -2516,7 +2240,7 @@ function Chat2({
|
|
|
2516
2240
|
onClick: () => scrollToBottom(true),
|
|
2517
2241
|
"aria-label": "Jump to latest",
|
|
2518
2242
|
className: "absolute bottom-3 left-1/2 flex h-8 w-8 -translate-x-1/2 items-center justify-center rounded-full border border-border bg-surface text-foreground-secondary shadow-md transition-colors hover:bg-surface-raised hover:text-foreground focus:outline-none focus-visible:ring-2 focus-visible:ring-accent",
|
|
2519
|
-
children: /* @__PURE__ */ jsx(
|
|
2243
|
+
children: /* @__PURE__ */ jsx(ArrowDown, {})
|
|
2520
2244
|
}
|
|
2521
2245
|
)
|
|
2522
2246
|
] }),
|
|
@@ -2559,8 +2283,8 @@ var TONE2 = {
|
|
|
2559
2283
|
bad: "text-status-error",
|
|
2560
2284
|
neutral: "text-foreground-muted"
|
|
2561
2285
|
};
|
|
2562
|
-
var
|
|
2563
|
-
var
|
|
2286
|
+
var ArrowUp = /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 2.2, "aria-hidden": "true", className: "h-3.5 w-3.5", children: /* @__PURE__ */ jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M12 19V5M5 12l7-7 7 7" }) });
|
|
2287
|
+
var ArrowDown2 = /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 2.2, "aria-hidden": "true", className: "h-3.5 w-3.5", children: /* @__PURE__ */ jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M12 5v14M5 12l7 7 7-7" }) });
|
|
2564
2288
|
function Statistic({
|
|
2565
2289
|
label,
|
|
2566
2290
|
value,
|
|
@@ -2592,7 +2316,7 @@ function Statistic({
|
|
|
2592
2316
|
suffix && /* @__PURE__ */ jsx("span", { className: "text-foreground-muted text-[0.5em] font-medium self-center", children: suffix })
|
|
2593
2317
|
] }),
|
|
2594
2318
|
delta && /* @__PURE__ */ jsxs("div", { className: `mt-1.5 flex items-center gap-1 text-sm font-medium ${align === "center" ? "justify-center" : ""} ${TONE2[deltaTone]}`, children: [
|
|
2595
|
-
dir === "up" ?
|
|
2319
|
+
dir === "up" ? ArrowUp : dir === "down" ? ArrowDown2 : null,
|
|
2596
2320
|
/* @__PURE__ */ jsx("span", { children: delta.value }),
|
|
2597
2321
|
delta.label && /* @__PURE__ */ jsx("span", { className: "text-foreground-muted font-normal", children: delta.label })
|
|
2598
2322
|
] }),
|
|
@@ -3078,8 +2802,8 @@ var normalize = (e) => {
|
|
|
3078
2802
|
const end = e.end ? toDate2(e.end) : new Date(start.getTime() + 36e5);
|
|
3079
2803
|
return { ...e, start, end };
|
|
3080
2804
|
};
|
|
3081
|
-
var
|
|
3082
|
-
var
|
|
2805
|
+
var Spinner2 = () => /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", className: "h-5 w-5 animate-spin text-accent", children: /* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4.755 10.059a7.5 7.5 0 0112.548-3.364l1.903 1.903h-3.183a.75.75 0 100 1.5h4.992a.75.75 0 00.75-.75V4.356a.75.75 0 00-1.5 0v3.18l-1.9-1.9A9 9 0 003.306 9.67a.75.75 0 101.45.388zm15.408 3.352a.75.75 0 00-.919.53 7.5 7.5 0 01-12.548 3.364l-1.902-1.903h3.183a.75.75 0 000-1.5H2.984a.75.75 0 00-.75.75v4.992a.75.75 0 001.5 0v-3.18l1.9 1.9a9 9 0 0015.059-4.035.75.75 0 00-.53-.918z" }) });
|
|
2806
|
+
var Plus = () => /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 2, "aria-hidden": "true", className: "h-4 w-4", children: /* @__PURE__ */ jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M12 5v14M5 12h14" }) });
|
|
3083
2807
|
var Chevron4 = ({ dir }) => /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 2, "aria-hidden": "true", className: "h-4 w-4", children: /* @__PURE__ */ jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: dir === "left" ? "M15 19l-7-7 7-7" : "M9 5l7 7-7 7" }) });
|
|
3084
2808
|
function Scheduler({
|
|
3085
2809
|
events: controlledEvents,
|
|
@@ -3169,7 +2893,7 @@ function Scheduler({
|
|
|
3169
2893
|
}
|
|
3170
2894
|
}
|
|
3171
2895
|
),
|
|
3172
|
-
loading && /* @__PURE__ */ jsx(
|
|
2896
|
+
loading && /* @__PURE__ */ jsx(Spinner2, {})
|
|
3173
2897
|
] }),
|
|
3174
2898
|
/* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
|
|
3175
2899
|
/* @__PURE__ */ jsx(
|
|
@@ -3182,7 +2906,7 @@ function Scheduler({
|
|
|
3182
2906
|
options: [{ value: "month", label: "Month" }, { value: "week", label: "Week" }]
|
|
3183
2907
|
}
|
|
3184
2908
|
),
|
|
3185
|
-
onNewEvent && /* @__PURE__ */ jsx(Button_default, { size: "sm", icon: /* @__PURE__ */ jsx(
|
|
2909
|
+
onNewEvent && /* @__PURE__ */ jsx(Button_default, { size: "sm", icon: /* @__PURE__ */ jsx(Plus, {}), content: "New event", onClick: onNewEvent })
|
|
3186
2910
|
] })
|
|
3187
2911
|
] }),
|
|
3188
2912
|
/* @__PURE__ */ jsx("div", { className: "relative flex-1 overflow-hidden", children: error ? /* @__PURE__ */ jsx(SchedulerError, { onRetry: retry }) : loadEvents && loading && events.length === 0 ? /* @__PURE__ */ jsx(SchedulerSkeleton, { view }) : /* @__PURE__ */ jsx(
|
|
@@ -4759,7 +4483,7 @@ var DENSITY_PADDING = {
|
|
|
4759
4483
|
"comfortable": "py-2.5 px-3",
|
|
4760
4484
|
"spacious": "py-3.5 px-4"
|
|
4761
4485
|
};
|
|
4762
|
-
function
|
|
4486
|
+
function List2({
|
|
4763
4487
|
items,
|
|
4764
4488
|
onItemClick,
|
|
4765
4489
|
activeKey,
|
|
@@ -5092,7 +4816,7 @@ function renderItem(item) {
|
|
|
5092
4816
|
className: ITEM_CLASSNAME,
|
|
5093
4817
|
children: [
|
|
5094
4818
|
/* @__PURE__ */ jsx(ContextMenuLabel, { icon: item.icon, value: item.value }),
|
|
5095
|
-
/* @__PURE__ */ jsx(
|
|
4819
|
+
/* @__PURE__ */ jsx(ChevronRight, {})
|
|
5096
4820
|
]
|
|
5097
4821
|
}
|
|
5098
4822
|
),
|
|
@@ -5125,7 +4849,7 @@ function ContextMenuLabel({ icon, value }) {
|
|
|
5125
4849
|
/* @__PURE__ */ jsx("span", { className: "truncate", children: value })
|
|
5126
4850
|
] });
|
|
5127
4851
|
}
|
|
5128
|
-
function
|
|
4852
|
+
function ChevronRight() {
|
|
5129
4853
|
return /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 2, className: "h-4 w-4 flex-shrink-0", "aria-hidden": "true", children: /* @__PURE__ */ jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M9 5l7 7-7 7" }) });
|
|
5130
4854
|
}
|
|
5131
4855
|
function readDismissed(key) {
|
|
@@ -5384,7 +5108,7 @@ function Wizard({
|
|
|
5384
5108
|
] });
|
|
5385
5109
|
}
|
|
5386
5110
|
var SearchIcon = /* @__PURE__ */ jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", className: "w-4 h-4", "aria-hidden": "true", children: /* @__PURE__ */ jsx("path", { fillRule: "evenodd", d: "M10.5 3.75a6.75 6.75 0 100 13.5 6.75 6.75 0 000-13.5zM2.25 10.5a8.25 8.25 0 1114.59 5.28l4.69 4.69a.75.75 0 11-1.06 1.06l-4.69-4.69A8.25 8.25 0 012.25 10.5z", clipRule: "evenodd" }) });
|
|
5387
|
-
var SearchInput =
|
|
5111
|
+
var SearchInput = React28.forwardRef(function SearchInput2({ value, onChange, disabled, label, htmlFor, placeholder, name, inputStyle, style, layout = "vertical", size = "md", icon, helperText, className }, ref) {
|
|
5388
5112
|
return /* @__PURE__ */ jsx(Field, { className, label, htmlFor, layout, helperText, children: /* @__PURE__ */ jsxs(
|
|
5389
5113
|
"div",
|
|
5390
5114
|
{
|
|
@@ -5583,7 +5307,7 @@ function TableBody({
|
|
|
5583
5307
|
return /* @__PURE__ */ jsx("tbody", { children: rows.map((row, i) => {
|
|
5584
5308
|
const rowKey = getRowKey(row, i);
|
|
5585
5309
|
const isExpanded = expanded.has(rowKey);
|
|
5586
|
-
return /* @__PURE__ */ jsxs(
|
|
5310
|
+
return /* @__PURE__ */ jsxs(React28.Fragment, { children: [
|
|
5587
5311
|
/* @__PURE__ */ jsxs(
|
|
5588
5312
|
"tr",
|
|
5589
5313
|
{
|
|
@@ -5691,7 +5415,7 @@ function Pagination({
|
|
|
5691
5415
|
] })
|
|
5692
5416
|
] });
|
|
5693
5417
|
}
|
|
5694
|
-
function
|
|
5418
|
+
function Table({
|
|
5695
5419
|
columns = [],
|
|
5696
5420
|
rows = [],
|
|
5697
5421
|
getRowKey = defaultGetRowKey,
|
|
@@ -6127,8 +5851,8 @@ function MegaMenuLink({ href, icon, description, active, onClick, children, clas
|
|
|
6127
5851
|
function MegaMenuFeatured({ children, className = "" }) {
|
|
6128
5852
|
return /* @__PURE__ */ jsx("div", { className: ["min-w-0 rounded-lg bg-surface-raised border border-border p-4 flex flex-col", className].filter(Boolean).join(" "), children });
|
|
6129
5853
|
}
|
|
6130
|
-
var elementsOfType = (children, type) =>
|
|
6131
|
-
(c) =>
|
|
5854
|
+
var elementsOfType = (children, type) => React28.Children.toArray(children).filter(
|
|
5855
|
+
(c) => React28.isValidElement(c) && c.type === type
|
|
6132
5856
|
);
|
|
6133
5857
|
var MOBILE_CHEVRON = /* @__PURE__ */ jsx(
|
|
6134
5858
|
"svg",
|
|
@@ -6165,9 +5889,9 @@ function MobileLinkRow({ link, onNavigate }) {
|
|
|
6165
5889
|
);
|
|
6166
5890
|
}
|
|
6167
5891
|
function MobilePanel({ panel, onNavigate }) {
|
|
6168
|
-
const nodes =
|
|
5892
|
+
const nodes = React28.Children.toArray(panel.props.children);
|
|
6169
5893
|
return /* @__PURE__ */ jsx("div", { className: "flex flex-col gap-4 px-2 pb-3 pt-1", children: nodes.map((node, i) => {
|
|
6170
|
-
if (!
|
|
5894
|
+
if (!React28.isValidElement(node)) return null;
|
|
6171
5895
|
const el = node;
|
|
6172
5896
|
if (el.type === MegaMenuSection) {
|
|
6173
5897
|
const { title, children } = el.props;
|
|
@@ -6377,7 +6101,7 @@ function tokenValid(token) {
|
|
|
6377
6101
|
return exp * 1e3 > Date.now();
|
|
6378
6102
|
}
|
|
6379
6103
|
var has = (have, need, all) => all ? need.every((n) => have?.includes(n)) : need.some((n) => have?.includes(n));
|
|
6380
|
-
var
|
|
6104
|
+
var Spinner3 = () => /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", className: "h-6 w-6 animate-spin text-accent", children: /* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4.755 10.059a7.5 7.5 0 0112.548-3.364l1.903 1.903h-3.183a.75.75 0 100 1.5h4.992a.75.75 0 00.75-.75V4.356a.75.75 0 00-1.5 0v3.18l-1.9-1.9A9 9 0 003.306 9.67a.75.75 0 101.45.388zm15.408 3.352a.75.75 0 00-.919.53 7.5 7.5 0 01-12.548 3.364l-1.902-1.903h3.183a.75.75 0 000-1.5H2.984a.75.75 0 00-.75.75v4.992a.75.75 0 001.5 0v-3.18l1.9 1.9a9 9 0 0015.059-4.035.75.75 0 00-.53-.918z" }) });
|
|
6381
6105
|
function SecureLayout({
|
|
6382
6106
|
children,
|
|
6383
6107
|
isAuthenticated,
|
|
@@ -6453,7 +6177,7 @@ function SecureLayout({
|
|
|
6453
6177
|
]);
|
|
6454
6178
|
if (state === "checking") {
|
|
6455
6179
|
if (loadingFallback === null) return null;
|
|
6456
|
-
return /* @__PURE__ */ jsx("div", { className: ["flex min-h-[8rem] items-center justify-center", className].filter(Boolean).join(" "), children: loadingFallback !== void 0 ? loadingFallback : /* @__PURE__ */ jsx(
|
|
6180
|
+
return /* @__PURE__ */ jsx("div", { className: ["flex min-h-[8rem] items-center justify-center", className].filter(Boolean).join(" "), children: loadingFallback !== void 0 ? loadingFallback : /* @__PURE__ */ jsx(Spinner3, {}) });
|
|
6457
6181
|
}
|
|
6458
6182
|
if (state === "denied") {
|
|
6459
6183
|
if (fallback === null) return null;
|
|
@@ -6576,7 +6300,7 @@ function ThemeProvider({
|
|
|
6576
6300
|
className = "",
|
|
6577
6301
|
style
|
|
6578
6302
|
}) {
|
|
6579
|
-
const id =
|
|
6303
|
+
const id = React28.useId().replace(/:/g, "");
|
|
6580
6304
|
const scopeClass = `geo-th-${id}`;
|
|
6581
6305
|
const divRef = useRef(null);
|
|
6582
6306
|
useEffect(() => {
|
|
@@ -7106,7 +6830,7 @@ function Switch({
|
|
|
7106
6830
|
}
|
|
7107
6831
|
);
|
|
7108
6832
|
}
|
|
7109
|
-
function
|
|
6833
|
+
function Tag({ children, onRemove, removeLabel, disabled }) {
|
|
7110
6834
|
return /* @__PURE__ */ jsxs("span", { className: "inline-flex items-center gap-1 rounded-md border border-border bg-surface-raised text-foreground text-xs pl-2 pr-1 py-0.5 max-w-full", children: [
|
|
7111
6835
|
/* @__PURE__ */ jsx("span", { className: "truncate", children }),
|
|
7112
6836
|
onRemove && /* @__PURE__ */ jsx(
|
|
@@ -7190,14 +6914,14 @@ function MultiTagRow({
|
|
|
7190
6914
|
className: "absolute invisible pointer-events-none flex flex-nowrap items-center gap-1.5",
|
|
7191
6915
|
style: { left: -9999, top: -9999 },
|
|
7192
6916
|
children: [
|
|
7193
|
-
values.map((val) => /* @__PURE__ */ jsx("span", { "data-mt": true, children: /* @__PURE__ */ jsx(
|
|
6917
|
+
values.map((val) => /* @__PURE__ */ jsx("span", { "data-mt": true, children: /* @__PURE__ */ jsx(Tag, { removeLabel: "x", onRemove: () => {
|
|
7194
6918
|
}, children: labelFor(val) }) }, `m-${val}`)),
|
|
7195
6919
|
/* @__PURE__ */ jsx("span", { "data-mm": true, children: moreChip(values.length) })
|
|
7196
6920
|
]
|
|
7197
6921
|
}
|
|
7198
6922
|
),
|
|
7199
6923
|
values.slice(0, visibleCount).map((val) => /* @__PURE__ */ jsx(
|
|
7200
|
-
|
|
6924
|
+
Tag,
|
|
7201
6925
|
{
|
|
7202
6926
|
disabled,
|
|
7203
6927
|
removeLabel: `Remove ${labelFor(val)}`,
|
|
@@ -7322,7 +7046,7 @@ function Dropdown({
|
|
|
7322
7046
|
onRemove: removeSelected
|
|
7323
7047
|
}
|
|
7324
7048
|
) : /* @__PURE__ */ jsx("div", { className: "flex-1 min-w-0 flex items-center overflow-hidden", children: /* @__PURE__ */ jsx(
|
|
7325
|
-
|
|
7049
|
+
Tag,
|
|
7326
7050
|
{
|
|
7327
7051
|
disabled,
|
|
7328
7052
|
removeLabel: `Remove ${labelFor(value)}`,
|
|
@@ -8174,7 +7898,7 @@ function DatePicker({
|
|
|
8174
7898
|
},
|
|
8175
7899
|
"aria-label": view === "days" ? "Previous month" : view === "months" ? "Previous year" : "Previous decade",
|
|
8176
7900
|
className: "w-7 h-7 inline-flex items-center justify-center rounded-md hover:bg-surface-raised focus:outline-none focus-visible:ring-2 focus-visible:ring-accent transition-colors",
|
|
8177
|
-
children: /* @__PURE__ */ jsx(
|
|
7901
|
+
children: /* @__PURE__ */ jsx(ChevronLeft, {})
|
|
8178
7902
|
}
|
|
8179
7903
|
),
|
|
8180
7904
|
/* @__PURE__ */ jsxs(
|
|
@@ -8209,7 +7933,7 @@ function DatePicker({
|
|
|
8209
7933
|
},
|
|
8210
7934
|
"aria-label": view === "days" ? "Next month" : view === "months" ? "Next year" : "Next decade",
|
|
8211
7935
|
className: "w-7 h-7 inline-flex items-center justify-center rounded-md hover:bg-surface-raised focus:outline-none focus-visible:ring-2 focus-visible:ring-accent transition-colors",
|
|
8212
|
-
children: /* @__PURE__ */ jsx(
|
|
7936
|
+
children: /* @__PURE__ */ jsx(ChevronRight2, {})
|
|
8213
7937
|
}
|
|
8214
7938
|
)
|
|
8215
7939
|
] }),
|
|
@@ -8324,10 +8048,10 @@ function CalendarIcon() {
|
|
|
8324
8048
|
/* @__PURE__ */ jsx("path", { d: "M3 9h18M8 3v4M16 3v4", strokeLinecap: "round" })
|
|
8325
8049
|
] });
|
|
8326
8050
|
}
|
|
8327
|
-
function
|
|
8051
|
+
function ChevronLeft() {
|
|
8328
8052
|
return /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 2, className: "w-4 h-4", "aria-hidden": "true", children: /* @__PURE__ */ jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M15 19l-7-7 7-7" }) });
|
|
8329
8053
|
}
|
|
8330
|
-
function
|
|
8054
|
+
function ChevronRight2() {
|
|
8331
8055
|
return /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 2, className: "w-4 h-4", "aria-hidden": "true", children: /* @__PURE__ */ jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M9 5l7 7-7 7" }) });
|
|
8332
8056
|
}
|
|
8333
8057
|
var LINE_HEIGHT_PX = 21;
|
|
@@ -8604,7 +8328,7 @@ function TagsInput({
|
|
|
8604
8328
|
onClick: () => inputRef.current?.focus(),
|
|
8605
8329
|
children: [
|
|
8606
8330
|
tags.map((tag, idx) => /* @__PURE__ */ jsx(
|
|
8607
|
-
|
|
8331
|
+
Tag,
|
|
8608
8332
|
{
|
|
8609
8333
|
disabled,
|
|
8610
8334
|
removeLabel: `Remove ${tag}`,
|
|
@@ -8718,7 +8442,7 @@ function OtpInput({
|
|
|
8718
8442
|
emit(valid.join(""));
|
|
8719
8443
|
focusBox(valid.length);
|
|
8720
8444
|
};
|
|
8721
|
-
return /* @__PURE__ */ jsx(Field, { className, label, htmlFor, errorId, errorMessage, required, layout, helperText, children: /* @__PURE__ */ jsx("div", { className: "flex flex-wrap items-center gap-2", role: "group", "aria-label": typeof label === "string" ? label : "One-time code", children: chars.map((char, idx) => /* @__PURE__ */ jsxs(
|
|
8445
|
+
return /* @__PURE__ */ jsx(Field, { className, label, htmlFor, errorId, errorMessage, required, layout, helperText, children: /* @__PURE__ */ jsx("div", { className: "flex flex-wrap items-center gap-2", role: "group", "aria-label": typeof label === "string" ? label : "One-time code", children: chars.map((char, idx) => /* @__PURE__ */ jsxs(React28.Fragment, { children: [
|
|
8722
8446
|
/* @__PURE__ */ jsx(
|
|
8723
8447
|
"input",
|
|
8724
8448
|
{
|
|
@@ -8756,7 +8480,7 @@ function OtpInput({
|
|
|
8756
8480
|
] }, idx)) }) });
|
|
8757
8481
|
}
|
|
8758
8482
|
var ICON_SIZE = { sm: "w-4 h-4", md: "w-5 h-5", lg: "w-7 h-7" };
|
|
8759
|
-
var
|
|
8483
|
+
var Star = (filled) => /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: filled ? "currentColor" : "none", stroke: "currentColor", strokeWidth: filled ? 0 : 1.5, className: "w-full h-full", "aria-hidden": "true", children: /* @__PURE__ */ jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M11.48 3.5a.56.56 0 011.04 0l2.13 4.77 5.18.5a.56.56 0 01.32.97l-3.9 3.46 1.15 5.1a.56.56 0 01-.83.6L12 16.8l-4.57 2.6a.56.56 0 01-.83-.6l1.15-5.1-3.9-3.46a.56.56 0 01.32-.97l5.18-.5L11.48 3.5z" }) });
|
|
8760
8484
|
function Rating({
|
|
8761
8485
|
value,
|
|
8762
8486
|
defaultValue = 0,
|
|
@@ -8768,7 +8492,7 @@ function Rating({
|
|
|
8768
8492
|
label,
|
|
8769
8493
|
size = "md",
|
|
8770
8494
|
disabled,
|
|
8771
|
-
icon =
|
|
8495
|
+
icon = Star,
|
|
8772
8496
|
errorMessage,
|
|
8773
8497
|
name,
|
|
8774
8498
|
layout = "vertical",
|
|
@@ -9478,7 +9202,7 @@ function FeatureGrid({
|
|
|
9478
9202
|
] }, f.key ?? i)) })
|
|
9479
9203
|
] });
|
|
9480
9204
|
}
|
|
9481
|
-
var
|
|
9205
|
+
var Check3 = () => /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 2.5, "aria-hidden": "true", className: "mt-0.5 h-4 w-4 flex-shrink-0 text-accent", children: /* @__PURE__ */ jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M20 6 9 17l-5-5" }) });
|
|
9482
9206
|
function PricingPlans({ plans, eyebrow, title, description, className = "", style }) {
|
|
9483
9207
|
const hasHeader = eyebrow != null || title != null || description != null;
|
|
9484
9208
|
return /* @__PURE__ */ jsxs("section", { className: ["px-2", className].filter(Boolean).join(" "), style, children: [
|
|
@@ -9503,7 +9227,7 @@ function PricingPlans({ plans, eyebrow, title, description, className = "", styl
|
|
|
9503
9227
|
] }),
|
|
9504
9228
|
p.description != null && /* @__PURE__ */ jsx("p", { className: "mt-2 text-sm leading-relaxed text-foreground-secondary", children: p.description }),
|
|
9505
9229
|
/* @__PURE__ */ jsx("ul", { className: "mt-6 flex flex-1 flex-col gap-2.5", children: p.features.map((f, fi) => /* @__PURE__ */ jsxs("li", { className: "flex gap-2 text-sm text-foreground-secondary", children: [
|
|
9506
|
-
/* @__PURE__ */ jsx(
|
|
9230
|
+
/* @__PURE__ */ jsx(Check3, {}),
|
|
9507
9231
|
/* @__PURE__ */ jsx("span", { children: f })
|
|
9508
9232
|
] }, fi)) }),
|
|
9509
9233
|
/* @__PURE__ */ jsx("div", { className: "mt-6", children: /* @__PURE__ */ jsx(
|
|
@@ -9637,7 +9361,7 @@ function SlideShow({
|
|
|
9637
9361
|
);
|
|
9638
9362
|
}
|
|
9639
9363
|
var PlayGlyph = () => /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", className: "h-7 w-7 translate-x-0.5", children: /* @__PURE__ */ jsx("path", { d: "M8 5v14l11-7z" }) });
|
|
9640
|
-
function
|
|
9364
|
+
function Video({
|
|
9641
9365
|
src,
|
|
9642
9366
|
embedUrl,
|
|
9643
9367
|
poster,
|
|
@@ -9774,7 +9498,7 @@ function Blog({
|
|
|
9774
9498
|
post.tag != null && !post.image && /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(Badge, { tone: "accent", variant: "soft", size: "sm", children: post.tag }) }),
|
|
9775
9499
|
/* @__PURE__ */ jsx("h3", { className: "text-base font-semibold leading-snug text-foreground transition-colors group-hover:text-accent", children: post.title }),
|
|
9776
9500
|
post.excerpt != null && /* @__PURE__ */ jsx("p", { className: "line-clamp-3 text-sm leading-relaxed text-foreground-secondary", children: post.excerpt }),
|
|
9777
|
-
meta.length > 0 && /* @__PURE__ */ jsx("div", { className: "mt-auto flex flex-wrap items-center gap-x-2 gap-y-1 pt-3 text-xs text-foreground-muted", children: meta.map((m, j) => /* @__PURE__ */ jsxs(
|
|
9501
|
+
meta.length > 0 && /* @__PURE__ */ jsx("div", { className: "mt-auto flex flex-wrap items-center gap-x-2 gap-y-1 pt-3 text-xs text-foreground-muted", children: meta.map((m, j) => /* @__PURE__ */ jsxs(React28.Fragment, { children: [
|
|
9778
9502
|
j > 0 && /* @__PURE__ */ jsx("span", { "aria-hidden": "true", children: "\xB7" }),
|
|
9779
9503
|
/* @__PURE__ */ jsx("span", { children: m })
|
|
9780
9504
|
] }, j)) })
|
|
@@ -9947,6 +9671,6 @@ function LeadCapture({
|
|
|
9947
9671
|
);
|
|
9948
9672
|
}
|
|
9949
9673
|
|
|
9950
|
-
export { Accordion_default as Accordion, AppShell, AutoComplete, Avatar, Badge, Blog, Box, Breadcrumbs, Button_default as Button, CARD_BRANDS, Card_default as Card, CardCarousel, Cart, CartButton, CartProvider, Catalog, CatalogCarousel, CatalogGrid,
|
|
9674
|
+
export { Accordion_default as Accordion, AppShell, AutoComplete, Avatar, Badge, Blog, Box, Breadcrumbs, Button_default as Button, CARD_BRANDS, Card_default as Card, CardCarousel, Cart, CartButton, CartProvider, Catalog, CatalogCarousel, CatalogGrid, Chat, Checkbox, Checkout, ColorPicker, ContextMenu, CookieConsent, CreditCardForm, DateRangePicker, Drawer, Dropdown, EmptyCart, FAB, FadingBase, FeatureGrid, Field, FieldHelpIcon, FieldLabel, FileInput, Flex, Form, FormContext, FormField, FormStore, Grid, GridCard, IconButton, Jumbotron, Kbd, LeadCapture, List2 as List, LoadingSpinner, LogoutTimer, MegaMenu_default as MegaMenu, MenuButton, Modal, NotificationProvider, NumberInput, OpaqueGridCard, OtpInput, Parallax, Password, PopConfirm, Portal, PricingPlans, RadioGroup, Rating, ScalableContainer, Scheduler, SearchInput_default as SearchInput, SecureLayout, SegmentedControl, Sidebar, SkeletonBox, SkeletonCard, SkeletonCircle, SkeletonText, SlideShow, Slider, Socials, Statistic, Stepper, Switch, Table, Tabs_default as Tabs, TagsInput, DatePicker as Temporal, Testimonials, TextArea, TextInput, ThemeProvider, ThemeSwitch, TimePicker, Timeline, Tooltip, TooltipProvider, TopBar, Tree, TreeSelect, Typography, Video, Wizard, cardNumberError, cvvError, detectBrand, expiryError, fieldShell, formatCardNumber, formatExpiry, isRequired, luhnValid, onlyDigits, patterns, runFieldRules, useBreakpoint, useCart, useFieldArray, useForm, useFormField, useFormStore, useJwt, useLocalStorage, useMediaQuery, useNotification };
|
|
9951
9675
|
//# sourceMappingURL=index.js.map
|
|
9952
9676
|
//# sourceMappingURL=index.js.map
|