@windrun-huaiin/base-ui 3.5.1 → 3.7.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/components/client/index.js +324 -506
- package/dist/components/client/index.js.map +1 -1
- package/dist/components/client/index.mjs +176 -432
- package/dist/components/client/index.mjs.map +1 -1
- package/dist/components/index.js +200 -343
- package/dist/components/index.js.map +1 -1
- package/dist/components/index.mjs +107 -305
- package/dist/components/index.mjs.map +1 -1
- package/dist/index.js +351 -541
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +158 -421
- package/dist/index.mjs.map +1 -1
- package/dist/lib/index.js +202 -351
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/index.mjs +111 -315
- package/dist/lib/index.mjs.map +1 -1
- package/dist/ui/index.js +334 -510
- package/dist/ui/index.js.map +1 -1
- package/dist/ui/index.mjs +150 -399
- package/dist/ui/index.mjs.map +1 -1
- package/package.json +10 -11
- package/src/components/global-icon.tsx +6 -4
@@ -1,13 +1,43 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
var
|
1
|
+
'use strict';
|
2
|
+
|
3
|
+
var React30 = require('react');
|
4
|
+
var jsxRuntime = require('react/jsx-runtime');
|
5
|
+
var lucideReact = require('lucide-react');
|
6
|
+
var clsx = require('clsx');
|
7
|
+
var tailwindMerge = require('tailwind-merge');
|
8
|
+
var nextIntl = require('next-intl');
|
9
|
+
var navigation = require('next/navigation');
|
10
|
+
var DropdownMenuPrimitive = require('@radix-ui/react-dropdown-menu');
|
11
|
+
var Script = require('next/script');
|
12
|
+
|
13
|
+
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
14
|
+
|
15
|
+
function _interopNamespace(e) {
|
16
|
+
if (e && e.__esModule) return e;
|
17
|
+
var n = Object.create(null);
|
18
|
+
if (e) {
|
19
|
+
Object.keys(e).forEach(function (k) {
|
20
|
+
if (k !== 'default') {
|
21
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
22
|
+
Object.defineProperty(n, k, d.get ? d : {
|
23
|
+
enumerable: true,
|
24
|
+
get: function () { return e[k]; }
|
25
|
+
});
|
26
|
+
}
|
27
|
+
});
|
28
|
+
}
|
29
|
+
n.default = e;
|
30
|
+
return Object.freeze(n);
|
31
|
+
}
|
32
|
+
|
33
|
+
var React30__namespace = /*#__PURE__*/_interopNamespace(React30);
|
34
|
+
var DropdownMenuPrimitive__namespace = /*#__PURE__*/_interopNamespace(DropdownMenuPrimitive);
|
35
|
+
var Script__default = /*#__PURE__*/_interopDefault(Script);
|
36
|
+
|
4
37
|
var __defProp = Object.defineProperty;
|
5
38
|
var __defProps = Object.defineProperties;
|
6
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
7
39
|
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
8
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
9
40
|
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
10
|
-
var __getProtoOf = Object.getPrototypeOf;
|
11
41
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
12
42
|
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
13
43
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
@@ -39,50 +69,15 @@ var __export = (target, all) => {
|
|
39
69
|
for (var name in all)
|
40
70
|
__defProp(target, name, { get: all[name], enumerable: true });
|
41
71
|
};
|
42
|
-
var __copyProps = (to, from, except, desc) => {
|
43
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
44
|
-
for (let key of __getOwnPropNames(from))
|
45
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
46
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
47
|
-
}
|
48
|
-
return to;
|
49
|
-
};
|
50
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
51
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
52
|
-
// file that has been converted to a CommonJS file using a Babel-
|
53
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
54
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
55
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
56
|
-
mod
|
57
|
-
));
|
58
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
59
|
-
|
60
|
-
// src/components/client/index.ts
|
61
|
-
var client_exports = {};
|
62
|
-
__export(client_exports, {
|
63
|
-
GoogleAnalyticsScript: () => GoogleAnalyticsScript,
|
64
|
-
LanguageDetector: () => LanguageDetector,
|
65
|
-
LanguageSwitcher: () => LanguageSwitcher,
|
66
|
-
MicrosoftClarityScript: () => MicrosoftClarityScript,
|
67
|
-
NotFoundPage: () => NotFoundPage,
|
68
|
-
useGoogleAnalytics: () => useGoogleAnalytics
|
69
|
-
});
|
70
|
-
module.exports = __toCommonJS(client_exports);
|
71
|
-
|
72
|
-
// src/assets/github.tsx
|
73
|
-
var import_react = __toESM(require("react"));
|
74
72
|
|
75
73
|
// src/lib/theme-util.ts
|
76
74
|
var themeIconColor = process.env.NEXT_PUBLIC_STYLE_ICON_COLOR || "text-purple-500";
|
77
75
|
var themeSvgIconColor = process.env.NEXT_PUBLIC_STYLE_SVG_ICON_COLOR || "#AC62FD";
|
78
76
|
var themeSvgIconSize = process.env.NEXT_PUBLIC_STYLE_SVG_ICON_SIZE || 18;
|
79
|
-
|
80
|
-
// src/assets/github.tsx
|
81
|
-
var import_jsx_runtime = require("react/jsx-runtime");
|
82
|
-
var GitHubIcon = import_react.default.forwardRef(
|
77
|
+
var GitHubIcon = React30__namespace.default.forwardRef(
|
83
78
|
(_a, ref) => {
|
84
79
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
85
|
-
return /* @__PURE__ */
|
80
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
86
81
|
"svg",
|
87
82
|
__spreadProps(__spreadValues({
|
88
83
|
ref,
|
@@ -91,7 +86,7 @@ var GitHubIcon = import_react.default.forwardRef(
|
|
91
86
|
}, props), {
|
92
87
|
viewBox: "0 0 1024 1024",
|
93
88
|
xmlns: "http://www.w3.org/2000/svg",
|
94
|
-
children: /* @__PURE__ */
|
89
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
95
90
|
"path",
|
96
91
|
{
|
97
92
|
d: "M512 0C229.283787 0 0.142041 234.942803 0.142041 524.867683c0 231.829001 146.647305 428.553077 350.068189 497.952484 25.592898 4.819996 34.976961-11.38884 34.976961-25.294314 0-12.45521-0.469203-45.470049-0.725133-89.276559-142.381822 31.735193-172.453477-70.380469-172.453477-70.380469-23.246882-60.569859-56.816233-76.693384-56.816234-76.693385-46.493765-32.58829 3.540351-31.948468 3.540351-31.948467 51.356415 3.71097 78.356923 54.086324 78.356923 54.086324 45.683323 80.19108 119.817417 57.072162 148.993321 43.593236 4.649376-33.91059 17.915029-57.029508 32.50298-70.167195-113.675122-13.222997-233.151301-58.223843-233.1513-259.341366 0-57.285437 19.919806-104.163095 52.678715-140.846248-5.246544-13.265652-22.820334-66.626844 4.990615-138.884127 0 0 42.996069-14.076094 140.760939 53.787741 40.863327-11.644769 84.627183-17.445825 128.177764-17.6591 43.465272 0.213274 87.271782 6.014331 128.135109 17.6591 97.679561-67.906489 140.59032-53.787741 140.59032-53.787741 27.938914 72.257282 10.407779 125.618474 5.118579 138.884127 32.844219 36.683154 52.593405 83.560812 52.593405 140.846248 0 201.586726-119.646798 245.990404-233.663158 258.957473 18.341577 16.208835 34.721032 48.199958 34.721032 97.210357 0 70.167195-0.639822 126.7275-0.639823 143.960051 0 14.033439 9.213443 30.370239 35.190235 25.209005 203.250265-69.527373 349.769606-266.123484 349.769605-497.867175C1023.857959 234.942803 794.673558 0 512 0",
|
@@ -105,14 +100,10 @@ var GitHubIcon = import_react.default.forwardRef(
|
|
105
100
|
);
|
106
101
|
GitHubIcon.displayName = "GitHub";
|
107
102
|
var github_default = GitHubIcon;
|
108
|
-
|
109
|
-
// src/assets/d8.tsx
|
110
|
-
var import_react2 = __toESM(require("react"));
|
111
|
-
var import_jsx_runtime2 = require("react/jsx-runtime");
|
112
|
-
var D8Icon = import_react2.default.forwardRef(
|
103
|
+
var D8Icon = React30__namespace.default.forwardRef(
|
113
104
|
(_a, ref) => {
|
114
105
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
115
|
-
return /* @__PURE__ */
|
106
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
116
107
|
"svg",
|
117
108
|
__spreadProps(__spreadValues({
|
118
109
|
ref,
|
@@ -122,21 +113,21 @@ var D8Icon = import_react2.default.forwardRef(
|
|
122
113
|
viewBox: "0 0 1024 1024",
|
123
114
|
xmlns: "http://www.w3.org/2000/svg",
|
124
115
|
children: [
|
125
|
-
/* @__PURE__ */
|
116
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
126
117
|
"path",
|
127
118
|
{
|
128
119
|
d: "M376.832 80.896C187.392 142.336 61.44 313.344 61.44 513.024c0 290.816 277.504 506.88 558.08 434.176C842.752 888.832 993.28 665.6 955.392 445.44 908.288 168.96 635.904-2.048 376.832 80.896zM624.64 134.144c103.424 25.6 214.016 131.072 256 241.664 32.768 87.04 26.624 220.16-15.36 305.152-37.888 77.824-106.496 146.432-184.32 185.344-56.32 26.624-70.656 29.696-168.96 29.696-95.232 0-114.688-3.072-165.888-27.648-157.696-73.728-253.952-251.904-225.28-416.768 41.984-239.616 264.192-378.88 503.808-317.44z",
|
129
120
|
fill: themeSvgIconColor
|
130
121
|
}
|
131
122
|
),
|
132
|
-
/* @__PURE__ */
|
123
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
133
124
|
"path",
|
134
125
|
{
|
135
126
|
d: "M462.848 227.328L460.8 286.72h-35.84c-19.456 0-35.84 4.096-35.84 10.24 0 5.12 11.264 10.24 24.576 10.24 14.336 0 27.648 3.072 29.696 7.168 2.048 5.12-17.408 91.136-43.008 192.512l-47.104 184.32-32.768 3.072c-68.608 7.168-30.72 22.528 53.248 22.528h86.016l4.096 64.512 3.072 63.488 2.048-64.512 2.048-63.488 44.032 1.024c56.32 2.048 123.904-25.6 155.648-64.512 45.056-54.272 26.624-134.144-34.816-153.6-9.216-3.072-1.024-12.288 23.552-26.624 21.504-12.288 41.984-20.48 47.104-17.408 19.456 12.288 35.84-73.728 20.48-112.64-14.336-38.912-66.56-56.32-167.936-56.32h-87.04l-4.096-59.392-3.072-58.368-2.048 58.368z m190.464 96.256c52.224 36.864 10.24 136.192-67.584 157.696C532.48 495.616 460.8 494.592 460.8 478.208c0-6.144 4.096-28.672 9.216-48.128 6.144-19.456 15.36-55.296 21.504-79.872l11.264-43.008h63.488c40.96 0 71.68 6.144 87.04 16.384z m-24.576 211.968c19.456 26.624 19.456 30.72 6.144 70.656-22.528 64.512-66.56 90.112-154.624 90.112-41.984 0-70.656-4.096-70.656-10.24s10.24-50.176 21.504-98.304l22.528-87.04 76.8 3.072c70.656 3.072 78.848 5.12 98.304 31.744z",
|
136
127
|
fill: themeSvgIconColor
|
137
128
|
}
|
138
129
|
),
|
139
|
-
/* @__PURE__ */
|
130
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
140
131
|
"path",
|
141
132
|
{
|
142
133
|
d: "M227.328 421.888c-7.168 7.168-12.288 18.432-12.288 25.6 0 18.432-10.24 16.384-33.792-5.12-19.456-16.384-20.48-16.384-8.192 5.12 6.144 13.312 16.384 23.552 21.504 23.552 19.456 0 10.24 22.528-10.24 27.648-19.456 5.12-20.48 6.144-3.072 19.456 12.288 9.216 14.336 16.384 7.168 21.504-6.144 5.12-14.336 17.408-17.408 28.672-7.168 20.48-7.168 20.48 8.192 0 13.312-16.384 19.456-18.432 35.84-7.168 24.576 15.36 58.368 16.384 66.56 2.048 12.288-20.48 46.08-11.264 47.104 12.288 1.024 19.456 2.048 19.456 6.144 5.12 3.072-10.24-3.072-27.648-13.312-38.912-16.384-18.432-16.384-19.456 7.168-28.672 24.576-10.24 24.576-10.24 2.048-10.24C317.44 501.76 307.2 496.64 307.2 491.52v-18.432c0-4.096 6.144-7.168 12.288-7.168 7.168 0 14.336-9.216 16.384-19.456 4.096-19.456 3.072-19.456-14.336-2.048-17.408 18.432-18.432 17.408-37.888-8.192-20.48-28.672-36.864-33.792-56.32-14.336zM750.592 427.008c-1.024 10.24-5.12 37.888-9.216 61.44-4.096 29.696-3.072 49.152 6.144 59.392 8.192 10.24 9.216 15.36 1.024 15.36-6.144 0-17.408 14.336-26.624 30.72-18.432 34.816-6.144 71.68 22.528 71.68 15.36 0 15.36-1.024-1.024-13.312-17.408-12.288-17.408-16.384-2.048-51.2 15.36-37.888 43.008-50.176 53.248-24.576 3.072 8.192-1.024 27.648-7.168 44.032-7.168 16.384-13.312 38.912-14.336 49.152-1.024 10.24-10.24 25.6-20.48 32.768-11.264 8.192-14.336 14.336-9.216 14.336 23.552 0 44.032-28.672 59.392-80.896 20.48-68.608 20.48-72.704 1.024-72.704-16.384 0-20.48-12.288-8.192-23.552 3.072-4.096 12.288-2.048 19.456 4.096 16.384 13.312 45.056 5.12 44.032-13.312 0-10.24-2.048-10.24-6.144-1.024-2.048 7.168-9.216 13.312-15.36 13.312-10.24 0-6.144-45.056 8.192-100.352 4.096-12.288 2.048-22.528-4.096-22.528-5.12 0-15.36 21.504-22.528 48.128-13.312 54.272-26.624 74.752-47.104 74.752-17.408 0-19.456-53.248-3.072-83.968 8.192-15.36 8.192-24.576-3.072-34.816-12.288-12.288-14.336-11.264-15.36 3.072zM696.32 695.296c0 6.144 5.12 13.312 10.24 16.384 6.144 3.072 10.24-1.024 10.24-9.216 0-9.216-4.096-16.384-10.24-16.384-5.12 0-10.24 4.096-10.24 9.216z",
|
@@ -150,14 +141,10 @@ var D8Icon = import_react2.default.forwardRef(
|
|
150
141
|
);
|
151
142
|
D8Icon.displayName = "D8";
|
152
143
|
var d8_default = D8Icon;
|
153
|
-
|
154
|
-
// src/assets/clerk.tsx
|
155
|
-
var import_react3 = __toESM(require("react"));
|
156
|
-
var import_jsx_runtime3 = require("react/jsx-runtime");
|
157
|
-
var ClerkIcon = import_react3.default.forwardRef(
|
144
|
+
var ClerkIcon = React30__namespace.default.forwardRef(
|
158
145
|
(_a, ref) => {
|
159
146
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
160
|
-
return /* @__PURE__ */
|
147
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
161
148
|
"svg",
|
162
149
|
__spreadProps(__spreadValues({
|
163
150
|
ref,
|
@@ -166,7 +153,7 @@ var ClerkIcon = import_react3.default.forwardRef(
|
|
166
153
|
}, props), {
|
167
154
|
viewBox: "0 0 24 24",
|
168
155
|
xmlns: "http://www.w3.org/2000/svg",
|
169
|
-
children: /* @__PURE__ */
|
156
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
170
157
|
"path",
|
171
158
|
{
|
172
159
|
d: "M 21.255071,20.629393 18.43951,17.813831 a 0.5590077,0.5590077 0 0 0 -0.6841,-0.08209 6.6983195,6.6983195 0 0 1 -6.920164,0 0.56291684,0.56291684 0 0 0 -0.6841,0.08209 l -2.8155614,2.815562 a 0.56291684,0.56291684 0 0 0 -0.1006604,0.674327 0.55705312,0.55705312 0 0 0 0.1622295,0.181775 11.727434,11.727434 0 0 0 13.7924393,0 0.56682599,0.56682599 0 0 0 0.233572,-0.413392 0.56291684,0.56291684 0 0 0 -0.168094,-0.44271 z m 0.002,-17.2666924 -2.814584,2.8145842 A 0.55607584,0.55607584 0 0 1 17.757364,6.2593769 6.7012514,6.7012514 0 0 0 8.7985821,8.1699714 6.7061378,6.7061378 0 0 0 7.6043383,11.778112 6.7041832,6.7041832 0 0 0 8.5601242,15.456617 0.55998498,0.55998498 0 0 1 8.4790095,16.13974 L 5.663448,18.954324 A 0.55412127,0.55412127 0 0 1 4.8190727,18.892755 11.720593,11.720593 0 0 1 6.8899421,2.9121717 11.717661,11.717661 0 0 1 21.19448,2.5163708 0.55314398,0.55314398 0 0 1 21.42121,2.9248764 0.55705312,0.55705312 0 0 1 21.257026,3.3627006 Z M 14.300703,15.345206 a 3.3491597,3.3491597 0 1 0 0,-6.698319 3.3491597,3.3491597 0 0 0 0,6.698319 z",
|
@@ -181,14 +168,10 @@ var ClerkIcon = import_react3.default.forwardRef(
|
|
181
168
|
);
|
182
169
|
ClerkIcon.displayName = "Clerk";
|
183
170
|
var clerk_default = ClerkIcon;
|
184
|
-
|
185
|
-
// src/assets/iterm.tsx
|
186
|
-
var import_react4 = __toESM(require("react"));
|
187
|
-
var import_jsx_runtime4 = require("react/jsx-runtime");
|
188
|
-
var ItermIcon = import_react4.default.forwardRef(
|
171
|
+
var ItermIcon = React30__namespace.default.forwardRef(
|
189
172
|
(_a, ref) => {
|
190
173
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
191
|
-
return /* @__PURE__ */
|
174
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
192
175
|
"svg",
|
193
176
|
__spreadProps(__spreadValues({
|
194
177
|
ref,
|
@@ -197,7 +180,7 @@ var ItermIcon = import_react4.default.forwardRef(
|
|
197
180
|
}, props), {
|
198
181
|
viewBox: "0 0 24 24",
|
199
182
|
xmlns: "http://www.w3.org/2000/svg",
|
200
|
-
children: /* @__PURE__ */
|
183
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
201
184
|
"path",
|
202
185
|
{
|
203
186
|
d: "M24 5.359v13.282A5.36 5.36 0 0 1 18.641 24H5.359A5.36 5.36 0 0 1 0 18.641V5.359A5.36 5.36 0 0 1 5.359 0h13.282A5.36 5.36 0 0 1 24 5.359m-.932-.233A4.196 4.196 0 0 0 18.874.932H5.126A4.196 4.196 0 0 0 .932 5.126v13.748a4.196 4.196 0 0 0 4.194 4.194h13.748a4.196 4.196 0 0 0 4.194-4.194zm-.816.233v13.282a3.613 3.613 0 0 1-3.611 3.611H5.359a3.613 3.613 0 0 1-3.611-3.611V5.359a3.613 3.613 0 0 1 3.611-3.611h13.282a3.613 3.613 0 0 1 3.611 3.611M8.854 4.194v6.495h.962V4.194zM5.483 9.493v1.085h.597V9.48q.283-.037.508-.133.373-.165.575-.448.208-.284.208-.649a.9.9 0 0 0-.171-.568 1.4 1.4 0 0 0-.426-.388 3 3 0 0 0-.544-.261 32 32 0 0 0-.545-.209 1.8 1.8 0 0 1-.426-.216q-.164-.12-.164-.284 0-.223.179-.351.18-.126.485-.127.344 0 .575.105.239.105.5.298l.433-.5a2.3 2.3 0 0 0-.605-.433 1.6 1.6 0 0 0-.582-.159v-.968h-.597v.978a2 2 0 0 0-.477.127 1.2 1.2 0 0 0-.545.411q-.194.268-.194.634 0 .335.164.56.164.224.418.38a4 4 0 0 0 .552.262q.291.104.545.209.261.104.425.238a.39.39 0 0 1 .165.321q0 .225-.187.359-.18.134-.537.134-.381 0-.717-.134a4.4 4.4 0 0 1-.649-.351l-.388.589q.209.173.477.306.276.135.575.217.191.046.373.064",
|
@@ -212,14 +195,10 @@ var ItermIcon = import_react4.default.forwardRef(
|
|
212
195
|
);
|
213
196
|
ItermIcon.displayName = "Iterm";
|
214
197
|
var iterm_default = ItermIcon;
|
215
|
-
|
216
|
-
// src/assets/markdown.tsx
|
217
|
-
var import_react5 = __toESM(require("react"));
|
218
|
-
var import_jsx_runtime5 = require("react/jsx-runtime");
|
219
|
-
var MarkdownIcon = import_react5.default.forwardRef(
|
198
|
+
var MarkdownIcon = React30__namespace.default.forwardRef(
|
220
199
|
(_a, ref) => {
|
221
200
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
222
|
-
return /* @__PURE__ */
|
201
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
223
202
|
"svg",
|
224
203
|
__spreadProps(__spreadValues({
|
225
204
|
ref,
|
@@ -228,7 +207,7 @@ var MarkdownIcon = import_react5.default.forwardRef(
|
|
228
207
|
}, props), {
|
229
208
|
viewBox: "0 0 1024 1024",
|
230
209
|
xmlns: "http://www.w3.org/2000/svg",
|
231
|
-
children: /* @__PURE__ */
|
210
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
232
211
|
"path",
|
233
212
|
{
|
234
213
|
d: "M20.48 327.76192a163.84 163.84 0 0 1 163.84-163.84h655.36a163.84 163.84 0 0 1 163.84 163.84v327.68a163.84 163.84 0 0 1-163.84 163.84H184.32a163.84 163.84 0 0 1-163.84-163.84v-327.68z m163.84-81.92a81.92 81.92 0 0 0-81.92 81.92v327.68a81.92 81.92 0 0 0 81.92 81.92h655.36a81.92 81.92 0 0 0 81.92-81.92v-327.68a81.92 81.92 0 0 0-81.92-81.92H184.32z m68.97664 84.00896a40.96 40.96 0 0 1 45.71136 14.336L389.12 464.24064l90.112-120.13568a40.96 40.96 0 0 1 73.728 24.576v245.76a40.96 40.96 0 0 1-81.92 0v-122.88l-49.152 65.536a41.04192 41.04192 0 0 1-65.536 0l-49.152-65.536v122.88a40.96 40.96 0 1 1-81.92 0v-245.76a40.96 40.96 0 0 1 28.01664-38.87104zM757.76 368.76288a40.96 40.96 0 0 0-81.92 0v146.8416l-12.00128-12.00128a40.96 40.96 0 0 0-57.91744 57.91744l81.92 81.92a40.96 40.96 0 0 0 57.91744 0l81.92-81.92a40.96 40.96 0 0 0-57.91744-57.91744l-12.00128 12.00128V368.72192z",
|
@@ -242,14 +221,10 @@ var MarkdownIcon = import_react5.default.forwardRef(
|
|
242
221
|
);
|
243
222
|
MarkdownIcon.displayName = "Markdown";
|
244
223
|
var markdown_default = MarkdownIcon;
|
245
|
-
|
246
|
-
// src/assets/mdx.tsx
|
247
|
-
var import_react6 = __toESM(require("react"));
|
248
|
-
var import_jsx_runtime6 = require("react/jsx-runtime");
|
249
|
-
var MDXIcon = import_react6.default.forwardRef(
|
224
|
+
var MDXIcon = React30__namespace.default.forwardRef(
|
250
225
|
(_a, ref) => {
|
251
226
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
252
|
-
return /* @__PURE__ */
|
227
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
253
228
|
"svg",
|
254
229
|
__spreadProps(__spreadValues({
|
255
230
|
ref,
|
@@ -259,7 +234,7 @@ var MDXIcon = import_react6.default.forwardRef(
|
|
259
234
|
viewBox: "0 0 1024 1024",
|
260
235
|
xmlns: "http://www.w3.org/2000/svg",
|
261
236
|
children: [
|
262
|
-
/* @__PURE__ */
|
237
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
263
238
|
"path",
|
264
239
|
{
|
265
240
|
d: "M20.48 327.76192a163.84 163.84 0 0 1 163.84-163.84h655.36a163.84 163.84 0 0 1 163.84 163.84v327.68a163.84 163.84 0 0 1-163.84 163.84H184.32a163.84 163.84 0 0 1-163.84-163.84v-327.68z m163.84-81.92a81.92 81.92 0 0 0-81.92 81.92v327.68a81.92 81.92 0 0 0 81.92 81.92h655.36a81.92 81.92 0 0 0 81.92-81.92v-327.68a81.92 81.92 0 0 0-81.92-81.92H184.32z m68.97664 84.00896a40.96 40.96 0 0 1 45.71136 14.336L389.12 464.24064l90.112-120.13568a40.96 40.96 0 0 1 73.728 24.576v245.76a40.96 40.96 0 0 1-81.92 0v-122.88l-49.152 65.536a41.04192 41.04192 0 0 1-65.536 0l-49.152-65.536v122.88a40.96 40.96 0 1 1-81.92 0v-245.76a40.96 40.96 0 0 1 28.01664-38.87104zM757.76 368.76288a40.96 40.96 0 0 0-81.92 0v146.8416l-12.00128-12.00128a40.96 40.96 0 0 0-57.91744 57.91744l81.92 81.92a40.96 40.96 0 0 0 57.91744 0l81.92-81.92a40.96 40.96 0 0 0-57.91744-57.91744l-12.00128 12.00128V368.72192z",
|
@@ -275,7 +250,7 @@ var MDXIcon = import_react6.default.forwardRef(
|
|
275
250
|
}
|
276
251
|
}
|
277
252
|
),
|
278
|
-
/* @__PURE__ */
|
253
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
279
254
|
"circle",
|
280
255
|
{
|
281
256
|
id: "path3",
|
@@ -293,7 +268,7 @@ var MDXIcon = import_react6.default.forwardRef(
|
|
293
268
|
}
|
294
269
|
}
|
295
270
|
),
|
296
|
-
/* @__PURE__ */
|
271
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
297
272
|
"circle",
|
298
273
|
{
|
299
274
|
id: "path3-6",
|
@@ -310,7 +285,7 @@ var MDXIcon = import_react6.default.forwardRef(
|
|
310
285
|
}
|
311
286
|
}
|
312
287
|
),
|
313
|
-
/* @__PURE__ */
|
288
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
314
289
|
"circle",
|
315
290
|
{
|
316
291
|
id: "path3-6-8",
|
@@ -327,7 +302,7 @@ var MDXIcon = import_react6.default.forwardRef(
|
|
327
302
|
}
|
328
303
|
}
|
329
304
|
),
|
330
|
-
/* @__PURE__ */
|
305
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
331
306
|
"circle",
|
332
307
|
{
|
333
308
|
id: "path3-6-8-7",
|
@@ -344,7 +319,7 @@ var MDXIcon = import_react6.default.forwardRef(
|
|
344
319
|
}
|
345
320
|
}
|
346
321
|
),
|
347
|
-
/* @__PURE__ */
|
322
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
348
323
|
"circle",
|
349
324
|
{
|
350
325
|
id: "path3-6-4",
|
@@ -368,14 +343,10 @@ var MDXIcon = import_react6.default.forwardRef(
|
|
368
343
|
);
|
369
344
|
MDXIcon.displayName = "MDX";
|
370
345
|
var mdx_default = MDXIcon;
|
371
|
-
|
372
|
-
// src/assets/html.tsx
|
373
|
-
var import_react7 = __toESM(require("react"));
|
374
|
-
var import_jsx_runtime7 = require("react/jsx-runtime");
|
375
|
-
var HtmlIcon = import_react7.default.forwardRef(
|
346
|
+
var HtmlIcon = React30__namespace.default.forwardRef(
|
376
347
|
(_a, ref) => {
|
377
348
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
378
|
-
return /* @__PURE__ */
|
349
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
379
350
|
"svg",
|
380
351
|
__spreadProps(__spreadValues({
|
381
352
|
ref,
|
@@ -384,7 +355,7 @@ var HtmlIcon = import_react7.default.forwardRef(
|
|
384
355
|
}, props), {
|
385
356
|
viewBox: "0 0 32 32",
|
386
357
|
xmlns: "http://www.w3.org/2000/svg",
|
387
|
-
children: /* @__PURE__ */
|
358
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
388
359
|
"path",
|
389
360
|
{
|
390
361
|
fill: themeSvgIconColor,
|
@@ -397,14 +368,10 @@ var HtmlIcon = import_react7.default.forwardRef(
|
|
397
368
|
);
|
398
369
|
HtmlIcon.displayName = "Html";
|
399
370
|
var html_default = HtmlIcon;
|
400
|
-
|
401
|
-
// src/assets/json.tsx
|
402
|
-
var import_react8 = __toESM(require("react"));
|
403
|
-
var import_jsx_runtime8 = require("react/jsx-runtime");
|
404
|
-
var JsonIcon = import_react8.default.forwardRef(
|
371
|
+
var JsonIcon = React30__namespace.default.forwardRef(
|
405
372
|
(_a, ref) => {
|
406
373
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
407
|
-
return /* @__PURE__ */
|
374
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
408
375
|
"svg",
|
409
376
|
__spreadProps(__spreadValues({
|
410
377
|
ref,
|
@@ -413,7 +380,7 @@ var JsonIcon = import_react8.default.forwardRef(
|
|
413
380
|
}, props), {
|
414
381
|
viewBox: "0 -960 960 960",
|
415
382
|
xmlns: "http://www.w3.org/2000/svg",
|
416
|
-
children: /* @__PURE__ */
|
383
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
417
384
|
"path",
|
418
385
|
{
|
419
386
|
fill: themeSvgIconColor,
|
@@ -426,14 +393,10 @@ var JsonIcon = import_react8.default.forwardRef(
|
|
426
393
|
);
|
427
394
|
JsonIcon.displayName = "Json";
|
428
395
|
var json_default = JsonIcon;
|
429
|
-
|
430
|
-
// src/assets/xml.tsx
|
431
|
-
var import_react9 = __toESM(require("react"));
|
432
|
-
var import_jsx_runtime9 = require("react/jsx-runtime");
|
433
|
-
var XMLIcon = import_react9.default.forwardRef(
|
396
|
+
var XMLIcon = React30__namespace.default.forwardRef(
|
434
397
|
(_a, ref) => {
|
435
398
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
436
|
-
return /* @__PURE__ */
|
399
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
437
400
|
"svg",
|
438
401
|
__spreadProps(__spreadValues({
|
439
402
|
ref,
|
@@ -442,7 +405,7 @@ var XMLIcon = import_react9.default.forwardRef(
|
|
442
405
|
}, props), {
|
443
406
|
viewBox: "0 0 1024 1024",
|
444
407
|
xmlns: "http://www.w3.org/2000/svg",
|
445
|
-
children: /* @__PURE__ */
|
408
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
446
409
|
"path",
|
447
410
|
{
|
448
411
|
d: "M354.40128 0c-87.04 0-157.44 70.55872-157.44 157.59872v275.68128H78.72c-21.6576 0-39.36256 17.69984-39.36256 39.36256v236.31872c0 21.6576 17.69984 39.35744 39.36256 39.35744h118.24128v118.08256c0 87.04 70.4 157.59872 157.44 157.59872h472.63744c87.04 0 157.59872-70.55872 157.59872-157.59872V315.0336c0-41.74848-38.9888-81.93024-107.52-149.27872l-29.11744-29.12256L818.87744 107.52C751.5392 38.9888 711.39328 0 669.59872 0H354.4064z m0 78.72h287.20128c28.35456 7.0912 27.99616 42.1376 27.99616 76.8v120.16128c0 21.6576 17.69984 39.35744 39.36256 39.35744h118.07744c39.38816 0 78.87872-0.0256 78.87872 39.36256v512c0 43.32032-35.55328 78.87872-78.87872 78.87872H354.4064c-43.32544 0-78.72-35.5584-78.72-78.87872v-118.08256h393.91744c21.66272 0 39.36256-17.69472 39.36256-39.35744V472.64256c0-21.66272-17.69984-39.36256-39.36256-39.36256H275.68128V157.59872c0-43.32032 35.39456-78.87872 78.72-78.87872zM145.12128 507.36128h23.99744l39.36256 67.2 40.32-67.2h23.04l-50.88256 83.51744 54.72256 92.16h-24.96l-43.20256-75.83744-43.19744 75.83744h-23.04l54.71744-92.16-50.87744-83.51744z m154.55744 0h32.64l49.92 143.03744h0.96256l48.95744-143.03744h33.60256v175.67744h-22.08256v-106.55744c0-10.88 0.32256-26.56256 0.96256-47.04256h-0.96256l-52.79744 153.6h-19.2l-52.80256-153.6h-0.95744c1.28 22.4 1.92 38.72256 1.92 48.96256v104.63744H299.6736V507.36128z m214.08256 0h22.07744v155.52h69.12v20.15744h-91.19744V507.36128z",
|
@@ -456,14 +419,10 @@ var XMLIcon = import_react9.default.forwardRef(
|
|
456
419
|
);
|
457
420
|
XMLIcon.displayName = "XML";
|
458
421
|
var xml_default = XMLIcon;
|
459
|
-
|
460
|
-
// src/assets/yaml.tsx
|
461
|
-
var import_react10 = __toESM(require("react"));
|
462
|
-
var import_jsx_runtime10 = require("react/jsx-runtime");
|
463
|
-
var YamlIcon = import_react10.default.forwardRef(
|
422
|
+
var YamlIcon = React30__namespace.default.forwardRef(
|
464
423
|
(_a, ref) => {
|
465
424
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
466
|
-
return /* @__PURE__ */
|
425
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
467
426
|
"svg",
|
468
427
|
__spreadProps(__spreadValues({
|
469
428
|
ref,
|
@@ -472,7 +431,7 @@ var YamlIcon = import_react10.default.forwardRef(
|
|
472
431
|
}, props), {
|
473
432
|
viewBox: "0 0 1024 1024",
|
474
433
|
xmlns: "http://www.w3.org/2000/svg",
|
475
|
-
children: /* @__PURE__ */
|
434
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
476
435
|
"path",
|
477
436
|
{
|
478
437
|
d: "M354.401 0c-87.04 0-157.44 70.559-157.44 157.599V433.28H78.72c-21.658 0-39.363 17.7-39.363 39.363V708.96c0 21.658 17.7 39.358 39.363 39.358h118.241V866.4c0 87.04 70.4 157.599 157.44 157.599H827.04c87.04 0 157.598-70.559 157.598-157.599V315.034c0-41.749-38.988-81.93-107.52-149.28L848 136.633l-29.123-29.112C751.54 38.989 711.393 0 669.6 0H354.406z m0 78.72h287.202c28.354 7.091 27.996 42.138 27.996 76.8v120.161c0 21.658 17.7 39.358 39.362 39.358H827.04c39.388 0 78.878-0.026 78.878 39.362v512c0 43.32-35.553 78.879-78.878 78.879H354.406c-43.325 0-78.72-35.558-78.72-78.879V748.32h393.918c21.663 0 39.362-17.695 39.362-39.358V472.643c0-21.663-17.7-39.363-39.362-39.363H275.68V157.599c0-43.32 35.395-78.879 78.72-78.879z m-93.127 427.679h20.162l65.28 176.64h-23.04l-19.2-54.718h-65.28l-19.2 54.718h-23.04l64.318-176.64z m-181.438 0.962h23.998l40.32 89.278 41.282-89.278h23.998l-53.76 107.52v68.158h-22.078v-67.2L79.836 507.36z m290.878 0h32.64l49.92 143.038h0.962l48.958-143.038h33.602V683.04h-22.082V576.48c0-10.88 0.322-26.562 0.962-47.042h-0.962l-52.798 153.6h-19.2l-52.802-153.6h-0.958c1.28 22.4 1.92 38.722 1.92 48.962V683.04h-20.162V507.36z m214.082 0h22.078v155.52h69.12v20.158h-91.188V507.36z m-312.96 23.04c-1.92 8.96-4.802 18.238-8.642 27.838l-17.28 50.882h51.84l-18.238-50.882c-3.84-10.88-6.4-20.158-7.68-27.838z",
|
@@ -486,14 +445,10 @@ var YamlIcon = import_react10.default.forwardRef(
|
|
486
445
|
);
|
487
446
|
YamlIcon.displayName = "Yaml";
|
488
447
|
var yaml_default = YamlIcon;
|
489
|
-
|
490
|
-
// src/assets/csv.tsx
|
491
|
-
var import_react11 = __toESM(require("react"));
|
492
|
-
var import_jsx_runtime11 = require("react/jsx-runtime");
|
493
|
-
var CSVIcon = import_react11.default.forwardRef(
|
448
|
+
var CSVIcon = React30__namespace.default.forwardRef(
|
494
449
|
(_a, ref) => {
|
495
450
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
496
|
-
return /* @__PURE__ */
|
451
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
497
452
|
"svg",
|
498
453
|
__spreadProps(__spreadValues({
|
499
454
|
ref,
|
@@ -503,7 +458,7 @@ var CSVIcon = import_react11.default.forwardRef(
|
|
503
458
|
viewBox: "0 0 1024 1024",
|
504
459
|
xmlns: "http://www.w3.org/2000/svg",
|
505
460
|
children: [
|
506
|
-
/* @__PURE__ */
|
461
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
507
462
|
"path",
|
508
463
|
{
|
509
464
|
d: "M158.72 517.12h61.44v394.24c0 28.27776 22.92224 51.2 51.2 51.2h614.4c28.27776 0 51.2-22.92224 51.2-51.2V317.44h-204.8c-28.27776 0-51.2-22.92224-51.2-51.2V61.44H271.36c-28.27776 0-51.2 22.92224-51.2 51.2v97.28H158.72V76.8c0-42.41408 34.38592-76.8 76.8-76.8h481.28l281.6 281.6v665.6c0 42.41408-34.38592 76.8-76.8 76.8H235.52c-42.41408 0-76.8-34.38592-76.8-76.8v-430.08z",
|
@@ -511,7 +466,7 @@ var CSVIcon = import_react11.default.forwardRef(
|
|
511
466
|
"p-id": "8469"
|
512
467
|
}
|
513
468
|
),
|
514
|
-
/* @__PURE__ */
|
469
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
515
470
|
"path",
|
516
471
|
{
|
517
472
|
d: "M102.4 209.92h460.8c42.41408 0 76.8 34.38592 76.8 76.8v153.6c0 42.41408-34.38592 76.8-76.8 76.8H102.4c-42.41408 0-76.8-34.38592-76.8-76.8V286.72c0-42.41408 34.38592-76.8 76.8-76.8z m129.81248 176.2304c-2.7136 11.80672-7.18848 20.45952-13.42464 25.9584-6.23104 5.49888-13.6704 8.25344-22.3232 8.25344-11.74016 0-21.2736-4.3264-28.60544-12.98432-7.33184-8.6528-10.99776-23.17312-10.99776-43.55584 0-19.21536 3.72224-33.11104 11.1616-41.69216 7.44448-8.58112 17.14176-12.87168 29.09696-12.87168 8.6528 0 16.00512 2.42176 22.05696 7.26016 6.04672 4.84352 10.02496 11.4432 11.9296 19.79904l32.23552-7.69536c-3.67104-12.90752-9.1648-22.8096-16.50176-29.70112-12.31872-11.66336-28.34432-17.48992-48.07168-17.48992-22.58432 0-40.8064 7.424-54.66624 22.272-13.86496 14.848-20.79232 35.69664-20.79232 62.53568 0 25.37472 6.89152 45.37856 20.67968 60.0064 13.78816 14.62784 31.3856 21.94432 52.80256 21.94432 17.3056 0 31.5904-4.27008 42.84416-12.81536 11.25376-8.54016 19.3024-21.61152 24.14592-39.21408l-31.56992-10.0096z m51.25632 6.81984c2.12992 18.03776 8.6528 31.7696 19.57888 41.19552 10.9312 9.4208 26.58304 14.1312 46.97088 14.1312 14.00832 0 25.7024-1.96096 35.09248-5.88288 9.38496-3.92192 16.64512-9.91744 21.78048-17.98656 5.13024-8.064 7.70048-16.7168 7.70048-25.9584 0-10.1888-2.1504-18.75456-6.43584-25.68192-4.29056-6.93248-10.22976-12.39552-17.8176-16.39424-7.59296-3.9936-19.30752-7.86432-35.1488-11.60192-15.84128-3.7376-25.81504-7.33184-29.92128-10.78272-3.2256-2.7136-4.8384-5.97504-4.8384-9.78944 0-4.17792 1.72544-7.51616 5.1712-10.0096 5.3504-3.88608 12.75904-5.83168 22.2208-5.83168 9.1648 0 16.04096 1.8176 20.62336 5.44768 4.5824 3.63008 7.57248 9.58976 8.96 17.87392l32.5632-1.4336c-0.512-14.80704-5.888-26.65472-16.11264-35.52768-10.22976-8.87296-25.46688-13.312-45.70624-13.312-12.3904 0-22.97344 1.87392-31.73376 5.61152-8.76544 3.74272-15.47264 9.18528-20.13184 16.3328-4.6592 7.15264-6.98368 14.83776-6.98368 23.05024 0 12.75904 4.95104 23.5776 14.848 32.45056 7.04 6.30784 19.28704 11.6224 36.74112 15.9488 13.568 3.37408 22.25664 5.71904 26.07104 7.04 5.57056 1.98144 9.47712 4.31104 11.71456 6.98368 2.23744 2.67776 3.3536 5.92384 3.3536 9.73824 0 5.9392-2.65728 11.12576-7.97184 15.5648-5.31968 4.43392-13.21984 6.656-23.7056 6.656-9.90208 0-17.7664-2.49344-23.59808-7.48032-5.82656-4.98688-9.69728-12.8-11.60192-23.43424l-31.68256 3.08224zM483.1232 445.44h34.7648l57.74848-161.25952h-34.53952l-39.49056 119.3472-40.81152-119.3472h-35.30752L483.11808 445.44z",
|
@@ -519,7 +474,7 @@ var CSVIcon = import_react11.default.forwardRef(
|
|
519
474
|
"p-id": "8470"
|
520
475
|
}
|
521
476
|
),
|
522
|
-
/* @__PURE__ */
|
477
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
523
478
|
"path",
|
524
479
|
{
|
525
480
|
d: "M266.24 634.88m30.72 0l563.2 0q30.72 0 30.72 30.72l0 0q0 30.72-30.72 30.72l-563.2 0q-30.72 0-30.72-30.72l0 0q0-30.72 30.72-30.72Z",
|
@@ -527,7 +482,7 @@ var CSVIcon = import_react11.default.forwardRef(
|
|
527
482
|
"p-id": "8471"
|
528
483
|
}
|
529
484
|
),
|
530
|
-
/* @__PURE__ */
|
485
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
531
486
|
"path",
|
532
487
|
{
|
533
488
|
d: "M266.24 808.96m30.72 0l563.2 0q30.72 0 30.72 30.72l0 0q0 30.72-30.72 30.72l-563.2 0q-30.72 0-30.72-30.72l0 0q0-30.72 30.72-30.72Z",
|
@@ -542,14 +497,10 @@ var CSVIcon = import_react11.default.forwardRef(
|
|
542
497
|
);
|
543
498
|
CSVIcon.displayName = "CSV";
|
544
499
|
var csv_default = CSVIcon;
|
545
|
-
|
546
|
-
// src/assets/txt.tsx
|
547
|
-
var import_react12 = __toESM(require("react"));
|
548
|
-
var import_jsx_runtime12 = require("react/jsx-runtime");
|
549
|
-
var TxtIcon = import_react12.default.forwardRef(
|
500
|
+
var TxtIcon = React30__namespace.default.forwardRef(
|
550
501
|
(_a, ref) => {
|
551
502
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
552
|
-
return /* @__PURE__ */
|
503
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
553
504
|
"svg",
|
554
505
|
__spreadProps(__spreadValues({
|
555
506
|
ref,
|
@@ -558,7 +509,7 @@ var TxtIcon = import_react12.default.forwardRef(
|
|
558
509
|
}, props), {
|
559
510
|
viewBox: "0 0 1024 1024",
|
560
511
|
xmlns: "http://www.w3.org/2000/svg",
|
561
|
-
children: /* @__PURE__ */
|
512
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
562
513
|
"path",
|
563
514
|
{
|
564
515
|
d: "M764.6 791c-35.6 0-77.2-19.2-77.2-73.6 0-21.8 7.8-37.2 25.2-49.6 17-12.2 43-20.8 73.4-24.4 42.8-5 91-7.8 132.2-9.2 0.6 0 1 0.2 1.6 0.4 0.6 0.2 1 0.6 1.4 1 0.4 0.4 0.6 0.8 0.8 1.4 0.2 0.6 0.2 1 0.2 1.6-5.4 102.4-57.2 152.4-157.6 152.4z m42.2-460.6c-84.6-0.6-160.4 48.8-192.8 125.6-0.6 1.4-1 2.8-1.6 4.2-0.4 1.4-0.8 2.8-1 4.2-0.2 1.4-0.6 2.8-0.6 4.4-0.2 1.4-0.2 3-0.2 4.4 0 1.4 0 3 0.2 4.4 0.2 1.4 0.4 3 0.6 4.4 0.2 1.4 0.6 2.8 1 4.2 0.4 1.4 0.8 2.8 1.4 4.2 0.6 1.4 1.2 2.8 1.8 4 0.6 1.4 1.4 2.6 2.2 3.8 0.8 1.2 1.6 2.4 2.6 3.6 1 1.2 1.8 2.2 3 3.2 1 1 2 2 3.2 3 1.2 1 2.2 1.8 3.4 2.6 1.2 0.8 2.4 1.6 3.8 2.4 1.2 0.8 2.6 1.4 4 2 1.4 0.6 2.8 1 4.2 1.6l4.2 1.2c1.4 0.4 2.8 0.6 4.4 0.6 1.4 0.2 3 0.2 4.4 0.2 1.4 0 3 0 4.4-0.2 1.4-0.2 3-0.4 4.4-0.6 1.4-0.2 2.8-0.6 4.2-1 1.4-0.4 2.8-0.8 4.2-1.4 1.4-0.6 2.6-1.2 4-1.8 1.2-0.6 2.6-1.4 3.8-2.2 1.2-0.8 2.4-1.6 3.6-2.6 1.2-1 2.2-2 3.2-3s2-2.2 3-3.2c1-1.2 1.8-2.4 2.6-3.6 0.8-1.2 1.6-2.4 2.2-3.8 0.8-1.2 1.4-2.6 2-4 18-42.8 60.4-70.4 108.2-70.8 65.6-0.4 118.6 54.2 118.6 120.4 0 0.4 0 0.8-0.2 1.2-0.2 0.4-0.4 0.6-0.6 1-0.2 0.2-0.6 0.6-1 0.6-0.4 0.2-0.8 0.2-1.2 0.2-44.4 1.2-97.2 4.2-144.4 9.8-111 13.2-177.4 74.2-177.4 163.4 0 47.4 17.8 90 50 120 30.2 28.2 71.6 43.6 116.4 43.6 63 0 117-16.4 158.2-47.6h0.2c0 1.4 0 3 0.2 4.4 0.2 1.4 0.4 3 0.6 4.4 0.2 1.4 0.6 2.8 1 4.2 0.4 1.4 1 2.8 1.4 4.2 0.6 1.4 1.2 2.8 1.8 4 0.6 1.4 1.4 2.6 2.2 3.8 0.8 1.2 1.6 2.4 2.6 3.6 1 1.2 1.8 2.2 3 3.2 1 1 2.2 2 3.2 3 1.2 1 2.2 1.8 3.6 2.6 1.2 0.8 2.4 1.6 3.8 2.2 1.2 0.8 2.6 1.4 4 2 1.4 0.6 2.8 1 4.2 1.6 1.4 0.4 2.8 0.8 4.2 1 1.4 0.2 2.8 0.6 4.4 0.6 1.4 0.2 3 0.2 4.4 0.2 1.4 0 3 0 4.4-0.2 1.4-0.2 3-0.4 4.4-0.6 1.4-0.2 2.8-0.6 4.2-1 1.4-0.4 2.8-1 4.2-1.4 1.4-0.6 2.6-1.2 4-1.8 1.2-0.6 2.6-1.4 3.8-2.2 1.2-0.8 2.4-1.6 3.6-2.6 1.2-1 2.2-2 3.2-3s2-2.2 3-3.2c1-1.2 1.8-2.4 2.6-3.6 0.8-1.2 1.6-2.4 2.2-3.8 0.6-1.2 1.4-2.6 1.8-4 0.6-1.4 1-2.8 1.4-4.2 0.4-1.4 0.8-2.8 1-4.2 0.2-1.4 0.6-3 0.6-4.4 0.2-1.4 0.2-3 0.2-4.4V541.2c-0.4-115-91.8-210-205.8-210.8zM210.2 554l88-236.6c0.2-0.8 0.8-1.4 1.4-2 0.6-0.4 1.4-0.8 2.4-0.8 0.8 0 1.6 0.2 2.4 0.8 0.6 0.4 1.2 1.2 1.4 2l88 236.8c0.2 0.4 0.2 0.6 0.2 1v1c0 0.4-0.2 0.6-0.2 1-0.2 0.4-0.2 0.6-0.4 0.8-0.2 0.2-0.4 0.6-0.6 0.8-0.2 0.2-0.6 0.4-0.8 0.6-0.2 0.2-0.6 0.2-1 0.4-0.4 0-0.6 0.2-1 0.2h-176c-0.4 0-0.6 0-1-0.2-0.4 0-0.6-0.2-1-0.4-0.2-0.2-0.6-0.4-0.8-0.6-0.2-0.2-0.4-0.4-0.6-0.8-0.2-0.2-0.4-0.6-0.4-0.8-0.2-0.4-0.2-0.6-0.2-1v-1c0-0.4 0-0.8 0.2-1.2z m377 264L343.8 163.2c-0.8-2.2-1.8-4.2-2.8-6.2-1.2-2-2.4-3.8-3.8-5.6-1.4-1.8-3-3.4-4.6-5-1.6-1.6-3.4-3-5.2-4.2-1.8-1.2-3.8-2.4-5.8-3.4s-4.2-1.8-6.2-2.6c-2.2-0.6-4.4-1.2-6.6-1.6-2.2-0.4-4.4-0.6-6.8-0.6-2.2 0-4.6 0.2-6.8 0.6-2.2 0.4-4.4 0.8-6.6 1.6-2.2 0.6-4.2 1.6-6.2 2.6s-4 2.2-5.8 3.4c-1.8 1.2-3.6 2.8-5.2 4.2-1.6 1.6-3.2 3.2-4.6 5-1.4 1.8-2.6 3.6-3.8 5.6-1.2 2-2 4-2.8 6.2L16.6 818c-0.4 1.4-1 2.8-1.2 4.2-0.4 1.4-0.6 2.8-0.8 4.4-0.2 1.4-0.4 3-0.4 4.4v4.4c0 1.4 0.2 3 0.4 4.4 0.2 1.4 0.4 2.8 0.8 4.4l1.2 4.2c0.4 1.4 1 2.8 1.6 4 0.6 1.4 1.2 2.6 2 3.8l2.4 3.6c0.8 1.2 1.8 2.4 2.8 3.4 1 1 2 2.2 3 3.2s2.2 2 3.4 2.8c1.2 0.8 2.4 1.8 3.6 2.4 1.2 0.8 2.6 1.4 3.8 2.2 1.4 0.6 2.6 1.2 4 1.8 1.4 0.6 2.8 1 4.2 1.4 1.4 0.4 2.8 0.6 4.2 1 1.4 0.2 2.8 0.4 4.4 0.6 1.4 0 3 0.2 4.4 0 1.4 0 2.8-0.2 4.4-0.4 1.4-0.2 2.8-0.4 4.2-0.8l4.2-1.2c1.4-0.4 2.8-1 4-1.6 1.4-0.6 2.6-1.2 3.8-2l3.6-2.4c1.2-0.8 2.4-1.8 3.4-2.8 1-1 2.2-2 3.2-3s2-2.2 2.8-3.4c0.8-1.2 1.8-2.4 2.6-3.6 0.8-1.2 1.4-2.6 2.2-3.8 0.6-1.4 1.2-2.6 1.8-4L174 652.2c0.2-0.8 0.8-1.4 1.4-2 0.6-0.4 1.4-0.8 2.4-0.8h249c0.8 0 1.6 0.2 2.4 0.8 0.6 0.4 1.2 1.2 1.4 2l73.4 197.4c0.6 1.4 1.2 2.8 1.8 4 0.6 1.4 1.4 2.6 2.2 3.8 0.8 1.2 1.6 2.4 2.6 3.6 0.8 1.2 1.8 2.2 2.8 3.4 1 1 2 2 3.2 3s2.2 1.8 3.4 2.8l3.6 2.4c1.2 0.8 2.6 1.4 3.8 2 1.4 0.6 2.6 1.2 4 1.6l4.2 1.2c1.4 0.4 2.8 0.6 4.2 0.8 1.4 0.2 2.8 0.4 4.4 0.4h4.4c1.4 0 2.8-0.2 4.4-0.6s2.8-0.6 4.2-1c1.4-0.4 2.8-0.8 4.2-1.4 1.4-0.6 2.6-1 4-1.8 1.4-0.6 2.6-1.4 3.8-2.2l3.6-2.4c1.2-0.8 2.2-1.8 3.4-2.8 1-1 2-2 3-3.2 1-1 1.8-2.2 2.8-3.4l2.4-3.6c0.8-1.2 1.4-2.6 2-3.8 0.6-1.4 1.2-2.6 1.6-4l1.2-4.2c0.4-1.4 0.6-2.8 0.8-4.4 0.2-1.4 0.4-3 0.4-4.4v-4.4c0-1.4-0.2-3-0.4-4.4-0.2-1.4-0.6-2.8-0.8-4.4-1-1.4-1.4-2.8-2-4.2z",
|
@@ -572,14 +523,10 @@ var TxtIcon = import_react12.default.forwardRef(
|
|
572
523
|
);
|
573
524
|
TxtIcon.displayName = "Txt";
|
574
525
|
var txt_default = TxtIcon;
|
575
|
-
|
576
|
-
// src/assets/java.tsx
|
577
|
-
var import_react13 = __toESM(require("react"));
|
578
|
-
var import_jsx_runtime13 = require("react/jsx-runtime");
|
579
|
-
var JavaIcon = import_react13.default.forwardRef(
|
526
|
+
var JavaIcon = React30__namespace.default.forwardRef(
|
580
527
|
(_a, ref) => {
|
581
528
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
582
|
-
return /* @__PURE__ */
|
529
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
583
530
|
"svg",
|
584
531
|
__spreadProps(__spreadValues({
|
585
532
|
ref,
|
@@ -588,7 +535,7 @@ var JavaIcon = import_react13.default.forwardRef(
|
|
588
535
|
}, props), {
|
589
536
|
viewBox: "0 0 32 32",
|
590
537
|
xmlns: "http://www.w3.org/2000/svg",
|
591
|
-
children: /* @__PURE__ */
|
538
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
592
539
|
"path",
|
593
540
|
{
|
594
541
|
d: "M4 26h24v2H4zM28 4H7a1 1 0 0 0-1 1v13a4 4 0 0 0 4 4h10a4 4 0 0 0 4-4v-4h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m0 8h-4V6h4Z",
|
@@ -603,14 +550,10 @@ var JavaIcon = import_react13.default.forwardRef(
|
|
603
550
|
);
|
604
551
|
JavaIcon.displayName = "Java";
|
605
552
|
var java_default = JavaIcon;
|
606
|
-
|
607
|
-
// src/assets/sql.tsx
|
608
|
-
var import_react14 = __toESM(require("react"));
|
609
|
-
var import_jsx_runtime14 = require("react/jsx-runtime");
|
610
|
-
var SQLIcon = import_react14.default.forwardRef(
|
553
|
+
var SQLIcon = React30__namespace.default.forwardRef(
|
611
554
|
(_a, ref) => {
|
612
555
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
613
|
-
return /* @__PURE__ */
|
556
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
614
557
|
"svg",
|
615
558
|
__spreadProps(__spreadValues({
|
616
559
|
ref,
|
@@ -620,7 +563,7 @@ var SQLIcon = import_react14.default.forwardRef(
|
|
620
563
|
viewBox: "0 0 1024 1024",
|
621
564
|
xmlns: "http://www.w3.org/2000/svg",
|
622
565
|
children: [
|
623
|
-
/* @__PURE__ */
|
566
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
624
567
|
"path",
|
625
568
|
{
|
626
569
|
d: "M477.12 858.56l14.72-16.64a77.44 77.44 0 0 0 54.08 24c25.6 0 40.96-12.8 40.96-32s-14.08-26.56-32-34.88l-28.48-12.16a52.16 52.16 0 0 1 22.08-101.76 79.36 79.36 0 0 1 57.28 24l-12.8 15.68a64 64 0 0 0-44.48-18.24c-22.08 0-36.48 11.2-36.48 28.8s16.96 25.92 32 32l28.16 12.16A54.08 54.08 0 0 1 611.84 832a58.88 58.88 0 0 1-66.24 55.36 93.76 93.76 0 0 1-68.48-28.8zM810.24 928a96 96 0 0 1-28.16 4.16 74.24 74.24 0 0 1-71.68-46.4c-42.56-4.8-70.4-42.56-70.4-99.84 0-62.4 34.56-100.48 83.52-100.48s83.2 38.08 83.2 100.48c0 56.32-27.52 93.44-68.8 100.8a50.24 50.24 0 0 0 47.68 25.92 68.8 68.8 0 0 0 20.8-2.88z m-87.68-61.44c34.88 0 57.92-32 57.92-81.6s-23.04-79.04-57.92-79.04-58.24 30.08-58.24 79.04 23.04 82.56 58.24 82.56zM848 688.96h24.64V864h85.44v21.12H848zM444.16 377.28c-192 0-387.2-52.8-387.2-153.92s194.56-154.24 387.2-154.24S832 121.92 832 224s-195.52 153.28-387.84 153.28z m0-244.16C234.88 133.12 120.96 192 120.96 224s113.92 89.92 323.2 89.92S768 253.76 768 224s-114.88-90.88-323.84-90.88z",
|
@@ -628,7 +571,7 @@ var SQLIcon = import_react14.default.forwardRef(
|
|
628
571
|
fill: themeSvgIconColor
|
629
572
|
}
|
630
573
|
),
|
631
|
-
/* @__PURE__ */
|
574
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
632
575
|
"path",
|
633
576
|
{
|
634
577
|
d: "M444.16 554.88c-192 0-387.2-52.8-387.2-154.24a32 32 0 0 1 64 0c0 32 113.92 90.24 323.2 90.24S768 431.36 768 400.64a32 32 0 1 1 64 0c0 101.44-195.52 154.24-387.84 154.24zM444.16 732.48c-192 0-387.2-53.12-387.2-154.24a32 32 0 0 1 64 0c0 32 113.92 90.24 323.2 90.24a32 32 0 1 1 0 64zM444.16 932.16c-192 0-387.2-52.8-387.2-153.92a32 32 0 0 1 64 0c0 30.4 113.92 89.92 323.2 89.92a32 32 0 0 1 0 64z",
|
@@ -636,7 +579,7 @@ var SQLIcon = import_react14.default.forwardRef(
|
|
636
579
|
fill: themeSvgIconColor
|
637
580
|
}
|
638
581
|
),
|
639
|
-
/* @__PURE__ */
|
582
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
640
583
|
"path",
|
641
584
|
{
|
642
585
|
d: "M800 699.2a32 32 0 0 1-32-32V234.24a32 32 0 0 1 64 0v432.96a32 32 0 0 1-32 32zM88.96 821.12a32 32 0 0 1-32-32V234.24a32 32 0 0 1 64 0v554.88a32 32 0 0 1-32 32z",
|
@@ -651,14 +594,10 @@ var SQLIcon = import_react14.default.forwardRef(
|
|
651
594
|
);
|
652
595
|
SQLIcon.displayName = "SQL";
|
653
596
|
var sql_default = SQLIcon;
|
654
|
-
|
655
|
-
// src/assets/log.tsx
|
656
|
-
var import_react15 = __toESM(require("react"));
|
657
|
-
var import_jsx_runtime15 = require("react/jsx-runtime");
|
658
|
-
var LogIcon = import_react15.default.forwardRef(
|
597
|
+
var LogIcon = React30__namespace.default.forwardRef(
|
659
598
|
(_a, ref) => {
|
660
599
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
661
|
-
return /* @__PURE__ */
|
600
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
662
601
|
"svg",
|
663
602
|
__spreadProps(__spreadValues({
|
664
603
|
ref,
|
@@ -668,7 +607,7 @@ var LogIcon = import_react15.default.forwardRef(
|
|
668
607
|
viewBox: "0 0 1024 1024",
|
669
608
|
xmlns: "http://www.w3.org/2000/svg",
|
670
609
|
children: [
|
671
|
-
/* @__PURE__ */
|
610
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
672
611
|
"path",
|
673
612
|
{
|
674
613
|
d: "M568.896 910.208h-512V113.792h739.52V512h-56.832V170.688H113.792v682.624H512z",
|
@@ -676,7 +615,7 @@ var LogIcon = import_react15.default.forwardRef(
|
|
676
615
|
"p-id": "12257"
|
677
616
|
}
|
678
617
|
),
|
679
|
-
/* @__PURE__ */
|
618
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
680
619
|
"path",
|
681
620
|
{
|
682
621
|
d: "M711.104 512c108.096 0 199.104 91.008 199.104 199.104 0 108.096-91.008 199.104-199.04 199.104C602.944 910.208 512 819.2 512 711.168 512 602.944 603.008 512 711.104 512m0-56.896c-142.208 0-256 113.792-256 256s113.792 256 256 256 256-113.792 256-256-113.792-256-256-256zM227.584 56.96h56.832v170.688h-56.832V56.896z m341.312 0h56.896v170.688h-56.96V56.896zM170.688 341.312h512v56.96h-512v-56.96z m0 170.688H455.04v56.896H170.688V512z m0 170.688h227.52v56.896H170.688v-56.96z",
|
@@ -684,7 +623,7 @@ var LogIcon = import_react15.default.forwardRef(
|
|
684
623
|
"p-id": "12258"
|
685
624
|
}
|
686
625
|
),
|
687
|
-
/* @__PURE__ */
|
626
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M853.312 796.416h-170.624V568.96h56.896v170.688h113.728z", fill: themeSvgIconColor, "p-id": "12259" })
|
688
627
|
]
|
689
628
|
})
|
690
629
|
);
|
@@ -692,14 +631,10 @@ var LogIcon = import_react15.default.forwardRef(
|
|
692
631
|
);
|
693
632
|
LogIcon.displayName = "Log";
|
694
633
|
var log_default = LogIcon;
|
695
|
-
|
696
|
-
// src/assets/mac.tsx
|
697
|
-
var import_react16 = __toESM(require("react"));
|
698
|
-
var import_jsx_runtime16 = require("react/jsx-runtime");
|
699
|
-
var MACIcon = import_react16.default.forwardRef(
|
634
|
+
var MACIcon = React30__namespace.default.forwardRef(
|
700
635
|
(_a, ref) => {
|
701
636
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
702
|
-
return /* @__PURE__ */
|
637
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
703
638
|
"svg",
|
704
639
|
__spreadProps(__spreadValues({
|
705
640
|
ref,
|
@@ -708,7 +643,7 @@ var MACIcon = import_react16.default.forwardRef(
|
|
708
643
|
}, props), {
|
709
644
|
viewBox: "0 0 24 24",
|
710
645
|
xmlns: "http://www.w3.org/2000/svg",
|
711
|
-
children: /* @__PURE__ */
|
646
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
712
647
|
"path",
|
713
648
|
{
|
714
649
|
d: "M12.152 6.896c-.948 0-2.415-1.078-3.96-1.04-2.04.027-3.91 1.183-4.961 3.014-2.117 3.675-.546 9.103 1.519 12.09 1.013 1.454 2.208 3.09 3.792 3.039 1.52-.065 2.09-.987 3.935-.987 1.831 0 2.35.987 3.96.948 1.637-.026 2.676-1.48 3.676-2.948 1.156-1.688 1.636-3.325 1.662-3.415-.039-.013-3.182-1.221-3.22-4.857-.026-3.04 2.48-4.494 2.597-4.559-1.429-2.09-3.623-2.324-4.39-2.376-2-.156-3.675 1.09-4.61 1.09zM15.53 3.83c.843-1.012 1.4-2.427 1.245-3.83-1.207.052-2.662.805-3.532 1.818-.78.896-1.454 2.338-1.273 3.714 1.338.104 2.715-.688 3.559-1.701",
|
@@ -723,14 +658,10 @@ var MACIcon = import_react16.default.forwardRef(
|
|
723
658
|
);
|
724
659
|
MACIcon.displayName = "MAC";
|
725
660
|
var mac_default = MACIcon;
|
726
|
-
|
727
|
-
// src/assets/bitcoin.tsx
|
728
|
-
var import_react17 = __toESM(require("react"));
|
729
|
-
var import_jsx_runtime17 = require("react/jsx-runtime");
|
730
|
-
var BitcoinIcon = import_react17.default.forwardRef(
|
661
|
+
var BitcoinIcon = React30__namespace.default.forwardRef(
|
731
662
|
(_a, ref) => {
|
732
663
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
733
|
-
return /* @__PURE__ */
|
664
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
734
665
|
"svg",
|
735
666
|
__spreadProps(__spreadValues({
|
736
667
|
ref,
|
@@ -739,7 +670,7 @@ var BitcoinIcon = import_react17.default.forwardRef(
|
|
739
670
|
}, props), {
|
740
671
|
viewBox: "0 0 24 24",
|
741
672
|
xmlns: "http://www.w3.org/2000/svg",
|
742
|
-
children: /* @__PURE__ */
|
673
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
743
674
|
"path",
|
744
675
|
{
|
745
676
|
d: "M23.638 14.904c-1.602 6.43-8.113 10.34-14.542 8.736C2.67 22.05-1.244 15.525.362 9.105 1.962 2.67 8.475-1.243 14.9.358c6.43 1.605 10.342 8.115 8.738 14.548v-.002zm-6.35-4.613c.24-1.59-.974-2.45-2.64-3.03l.54-2.153-1.315-.33-.525 2.107c-.345-.087-.705-.167-1.064-.25l.526-2.127-1.32-.33-.54 2.165c-.285-.067-.565-.132-.84-.2l-1.815-.45-.35 1.407s.975.225.955.236c.535.136.63.486.615.766l-1.477 5.92c-.075.166-.24.406-.614.314.015.02-.96-.24-.96-.24l-.66 1.51 1.71.426.93.242-.54 2.19 1.32.327.54-2.17c.36.1.705.19 1.05.273l-.51 2.154 1.32.33.545-2.19c2.24.427 3.93.257 4.64-1.774.57-1.637-.03-2.58-1.217-3.196.854-.193 1.5-.76 1.68-1.93h.01zm-3.01 4.22c-.404 1.64-3.157.75-4.05.53l.72-2.9c.896.23 3.757.67 3.33 2.37zm.41-4.24c-.37 1.49-2.662.735-3.405.55l.654-2.64c.744.18 3.137.524 2.75 2.084v.006z",
|
@@ -754,14 +685,10 @@ var BitcoinIcon = import_react17.default.forwardRef(
|
|
754
685
|
);
|
755
686
|
BitcoinIcon.displayName = "BTC";
|
756
687
|
var bitcoin_default = BitcoinIcon;
|
757
|
-
|
758
|
-
// src/assets/css.tsx
|
759
|
-
var import_react18 = __toESM(require("react"));
|
760
|
-
var import_jsx_runtime18 = require("react/jsx-runtime");
|
761
|
-
var CSSIcon = import_react18.default.forwardRef(
|
688
|
+
var CSSIcon = React30__namespace.default.forwardRef(
|
762
689
|
(_a, ref) => {
|
763
690
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
764
|
-
return /* @__PURE__ */
|
691
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
765
692
|
"svg",
|
766
693
|
__spreadProps(__spreadValues({
|
767
694
|
ref,
|
@@ -770,7 +697,7 @@ var CSSIcon = import_react18.default.forwardRef(
|
|
770
697
|
}, props), {
|
771
698
|
viewBox: "0 0 32 32",
|
772
699
|
xmlns: "http://www.w3.org/2000/svg",
|
773
|
-
children: /* @__PURE__ */
|
700
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
774
701
|
"path",
|
775
702
|
{
|
776
703
|
fill: themeSvgIconColor,
|
@@ -783,15 +710,11 @@ var CSSIcon = import_react18.default.forwardRef(
|
|
783
710
|
);
|
784
711
|
CSSIcon.displayName = "CSS";
|
785
712
|
var css_default = CSSIcon;
|
786
|
-
|
787
|
-
// src/assets/mermaid.tsx
|
788
|
-
var import_react19 = __toESM(require("react"));
|
789
|
-
var import_jsx_runtime19 = require("react/jsx-runtime");
|
790
|
-
var MermaidIcon = import_react19.default.forwardRef(
|
713
|
+
var MermaidIcon = React30__namespace.default.forwardRef(
|
791
714
|
// Memmaid need special size for good view
|
792
715
|
(_a, ref) => {
|
793
716
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
794
|
-
return /* @__PURE__ */
|
717
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
795
718
|
"svg",
|
796
719
|
__spreadProps(__spreadValues({
|
797
720
|
ref,
|
@@ -800,7 +723,7 @@ var MermaidIcon = import_react19.default.forwardRef(
|
|
800
723
|
}, props), {
|
801
724
|
viewBox: "0 0 24 24",
|
802
725
|
xmlns: "http://www.w3.org/2000/svg",
|
803
|
-
children: /* @__PURE__ */
|
726
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
804
727
|
"path",
|
805
728
|
{
|
806
729
|
d: "M23.99 2.115A12.223 12.223 0 0 0 12 10.149 12.223 12.223 0 0 0 .01 2.115a12.23 12.23 0 0 0 5.32 10.604 6.562 6.562 0 0 1 2.845 5.423v3.754h7.65v-3.754a6.561 6.561 0 0 1 2.844-5.423 12.223 12.223 0 0 0 5.32-10.604Z",
|
@@ -815,14 +738,10 @@ var MermaidIcon = import_react19.default.forwardRef(
|
|
815
738
|
);
|
816
739
|
MermaidIcon.displayName = "Mmd";
|
817
740
|
var mermaid_default = MermaidIcon;
|
818
|
-
|
819
|
-
// src/assets/last-updated.tsx
|
820
|
-
var import_react20 = __toESM(require("react"));
|
821
|
-
var import_jsx_runtime20 = require("react/jsx-runtime");
|
822
|
-
var LastUpdatedIcon = import_react20.default.forwardRef(
|
741
|
+
var LastUpdatedIcon = React30__namespace.default.forwardRef(
|
823
742
|
(_a, ref) => {
|
824
743
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
825
|
-
return /* @__PURE__ */
|
744
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
826
745
|
"svg",
|
827
746
|
__spreadProps(__spreadValues({
|
828
747
|
ref,
|
@@ -831,7 +750,7 @@ var LastUpdatedIcon = import_react20.default.forwardRef(
|
|
831
750
|
}, props), {
|
832
751
|
viewBox: "0 0 1024 1024",
|
833
752
|
xmlns: "http://www.w3.org/2000/svg",
|
834
|
-
children: /* @__PURE__ */
|
753
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
835
754
|
"path",
|
836
755
|
{
|
837
756
|
d: "M918.362566 956.685895 106.992291 956.685895c-14.145162 0-25.611308-11.466146-25.611308-25.611308L81.380984 191.053314c0-14.145162 11.467169-25.611308 25.611308-25.611308l811.370275 0c14.145162 0 25.611308 11.467169 25.611308 25.611308l0 740.02025C943.974897 945.219749 932.508751 956.685895 918.362566 956.685895zM132.603599 905.462257l760.146637 0L892.750235 216.665645 132.603599 216.665645 132.603599 905.462257zM915.696854 410.394904 109.450273 410.394904c-14.145162 0-25.611308-11.467169-25.611308-25.611308s11.467169-25.611308 25.611308-25.611308l806.246581 0c14.145162 0 25.611308 11.467169 25.611308 25.611308S929.842015 410.394904 915.696854 410.394904zM248.987283 313.735447c-14.145162 0-25.611308-11.467169-25.611308-25.611308L223.375975 91.962481c0-14.145162 11.467169-25.611308 25.611308-25.611308s25.611308 11.467169 25.611308 25.611308l0 196.160635C274.59859 302.269301 263.132444 313.735447 248.987283 313.735447zM786.915815 313.735447c-14.145162 0-25.611308-11.467169-25.611308-25.611308L761.304508 91.962481c0-14.145162 11.466146-25.611308 25.611308-25.611308s25.611308 11.467169 25.611308 25.611308l0 196.160635C812.527123 302.269301 801.060977 313.735447 786.915815 313.735447zM378.463146 832.067666c-4.732791 0-9.406231-1.641383-13.156648-4.787026-5.810333-4.874007-8.448416-12.56006-6.856152-19.97596l21.574365-100.484575c0.699941-3.261277 2.186805-6.30152 4.329609-8.856715l173.234483-206.507284c3.488451-4.158716 8.486278-6.760984 13.893428-7.234775 5.392824-0.473791 10.779507 1.219781 14.939247 4.709255l73.627904 61.765739c8.66024 7.264451 9.790994 20.173458 2.526543 28.832675L489.341443 786.03526c-2.143826 2.555196-4.880147 4.548596-7.969509 5.805216l-95.201246 38.71986C383.679961 831.573409 381.062344 832.067666 378.463146 832.067666zM418.978908 720.378911l-12.386098 57.68684 54.653761-22.228257 156.816558-186.93553-42.268686-35.458583L418.978908 720.378911zM483.354078 781.820262c-6.737448 0.001023-13.334703-3.322675-17.244756-9.414417l-23.737634-36.991496-40.554648-16.944927c-10.429537-4.358261-15.35164-16.34527-10.994402-26.774807 4.357238-10.42749 16.343223-15.350616 26.774807-10.993378l46.442752 19.404955c3.834328 1.601474 7.090489 4.333702 9.334599 7.830339l27.183106 42.361807c6.105045 9.513678 3.342118 22.174022-6.17156 28.278043C490.967476 780.771373 487.137241 781.820262 483.354078 781.820262zM601.041454 641.489166c-4.641717 0-9.307993-1.569752-13.143345-4.787026l-73.625858-61.765739c-8.659217-7.264451-9.78997-20.173458-2.52552-28.833699 7.263427-8.659217 20.171412-9.78997 28.833699-2.52552l73.625858 61.765739c8.659217 7.264451 9.78997 20.173458 2.52552 28.833699C612.683609 639.001509 606.882486 641.489166 601.041454 641.489166z",
|
@@ -845,14 +764,10 @@ var LastUpdatedIcon = import_react20.default.forwardRef(
|
|
845
764
|
);
|
846
765
|
LastUpdatedIcon.displayName = "LastUpdated";
|
847
766
|
var last_updated_default = LastUpdatedIcon;
|
848
|
-
|
849
|
-
// src/assets/snippets.tsx
|
850
|
-
var import_react21 = __toESM(require("react"));
|
851
|
-
var import_jsx_runtime21 = require("react/jsx-runtime");
|
852
|
-
var SnippetsIcon = import_react21.default.forwardRef(
|
767
|
+
var SnippetsIcon = React30__namespace.default.forwardRef(
|
853
768
|
(_a, ref) => {
|
854
769
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
855
|
-
return /* @__PURE__ */
|
770
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
856
771
|
"svg",
|
857
772
|
__spreadProps(__spreadValues({
|
858
773
|
ref,
|
@@ -861,7 +776,7 @@ var SnippetsIcon = import_react21.default.forwardRef(
|
|
861
776
|
}, props), {
|
862
777
|
viewBox: "0 0 24 24",
|
863
778
|
xmlns: "http://www.w3.org/2000/svg",
|
864
|
-
children: /* @__PURE__ */
|
779
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
865
780
|
"path",
|
866
781
|
{
|
867
782
|
d: "M9.825 17.527a.111.111 0 0 1-.107-.142l3.05-10.837a.111.111 0 0 1 .108-.081H14.2c.074 0 .127.07.107.141l-3.063 10.838a.111.111 0 0 1-.107.08H9.825Zm-2.146-2.732a.11.11 0 0 1-.079-.033l-2.667-2.704a.111.111 0 0 1 0-.156L7.6 9.211a.111.111 0 0 1 .08-.033h1.702c.1 0 .149.12.079.19l-2.534 2.534a.111.111 0 0 0 0 .157l2.535 2.546c.07.07.02.19-.079.19H7.68Zm6.954 0a.111.111 0 0 1-.079-.19l2.525-2.546a.111.111 0 0 0 0-.157l-2.524-2.535a.111.111 0 0 1 .079-.19h1.692c.03 0 .058.013.078.034l2.68 2.69a.111.111 0 0 1 0 .157l-2.68 2.704a.111.111 0 0 1-.078.033h-1.693ZM12 24C5.383 24 0 18.617 0 12S5.383 0 12 0s12 5.383 12 12-5.383 12-12 12Zm0-22.667C6.118 1.333 1.333 6.118 1.333 12S6.118 22.667 12 22.667 22.667 17.882 22.667 12 17.882 1.333 12 1.333Z",
|
@@ -874,14 +789,10 @@ var SnippetsIcon = import_react21.default.forwardRef(
|
|
874
789
|
);
|
875
790
|
SnippetsIcon.displayName = "Snippets";
|
876
791
|
var snippets_default = SnippetsIcon;
|
877
|
-
|
878
|
-
// src/assets/test.tsx
|
879
|
-
var import_react22 = __toESM(require("react"));
|
880
|
-
var import_jsx_runtime22 = require("react/jsx-runtime");
|
881
|
-
var TestIcon = import_react22.default.forwardRef(
|
792
|
+
var TestIcon = React30__namespace.default.forwardRef(
|
882
793
|
(_a, ref) => {
|
883
794
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
884
|
-
return /* @__PURE__ */
|
795
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
885
796
|
"svg",
|
886
797
|
__spreadProps(__spreadValues({
|
887
798
|
ref,
|
@@ -890,7 +801,7 @@ var TestIcon = import_react22.default.forwardRef(
|
|
890
801
|
}, props), {
|
891
802
|
viewBox: "0 0 1024 1024",
|
892
803
|
xmlns: "http://www.w3.org/2000/svg",
|
893
|
-
children: /* @__PURE__ */
|
804
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
894
805
|
"path",
|
895
806
|
{
|
896
807
|
d: "M640 126.577778c-140.8 0-256 115.2-256 256 0 65.422222 25.6 125.155556 65.422222 170.666666l-91.022222 91.022223-35.555556-35.555556-174.933333 176.355556c-25.6 25.6-25.6 68.266667 0 93.866666 25.6 25.6 68.266667 25.6 93.866667 0l176.355555-176.355555-38.4-38.4 91.022223-91.022222c45.511111 41.244444 105.244444 65.422222 170.666666 65.422222 140.8 0 256-115.2 256-256-1.422222-142.222222-116.622222-256-257.422222-256z m19.911111 462.222222c-41.244444 0-75.377778-34.133333-75.377778-75.377778v-4.266666c0-8.533333 5.688889-14.222222 14.222223-14.222223s14.222222 5.688889 14.222222 14.222223v4.266666c0 25.6 21.333333 46.933333 46.933333 46.933334 8.533333 0 14.222222 5.688889 14.222222 14.222222s-5.688889 14.222222-14.222222 14.222222zM817.777778 341.333333h-58.311111c-2.844444 12.8-7.111111 24.177778-14.222223 35.555556l41.244445 41.244444c5.688889 5.688889 5.688889 14.222222 0 19.911111-2.844444 2.844444-7.111111 4.266667-9.955556 4.266667-2.844444 0-7.111111-1.422222-9.955555-4.266667L725.333333 396.8c-14.222222 9.955556-31.288889 15.644444-49.777777 15.644444-18.488889 0-35.555556-5.688889-49.777778-15.644444l-41.244445 41.244444c-2.844444 2.844444-7.111111 4.266667-9.955555 4.266667-2.844444 0-7.111111-1.422222-9.955556-4.266667-5.688889-5.688889-5.688889-14.222222 0-19.911111l41.244445-41.244444c-7.111111-9.955556-12.8-22.755556-14.222223-35.555556h-58.311111c-8.533333 0-14.222222-5.688889-14.222222-14.222222s5.688889-14.222222 14.222222-14.222222h58.311111c2.844444-12.8 7.111111-24.177778 14.222223-35.555556l-41.244445-41.244444c-5.688889-5.688889-5.688889-14.222222 0-19.911111 5.688889-5.688889 14.222222-5.688889 19.911111 0l41.244445 41.244444c14.222222-9.955556 31.288889-15.644444 49.777778-15.644444 18.488889 0 35.555556 5.688889 49.777777 15.644444l41.244445-41.244444c5.688889-5.688889 14.222222-5.688889 19.911111 0 5.688889 5.688889 5.688889 14.222222 0 19.911111l-41.244445 41.244444c7.111111 9.955556 12.8 22.755556 14.222223 35.555556h58.311111c8.533333 0 14.222222 5.688889 14.222222 14.222222s-5.688889 14.222222-14.222222 14.222222z",
|
@@ -904,14 +815,10 @@ var TestIcon = import_react22.default.forwardRef(
|
|
904
815
|
);
|
905
816
|
TestIcon.displayName = "Test";
|
906
817
|
var test_default = TestIcon;
|
907
|
-
|
908
|
-
// src/assets/diff.tsx
|
909
|
-
var import_react23 = __toESM(require("react"));
|
910
|
-
var import_jsx_runtime23 = require("react/jsx-runtime");
|
911
|
-
var DiffIcon = import_react23.default.forwardRef(
|
818
|
+
var DiffIcon = React30__namespace.default.forwardRef(
|
912
819
|
(_a, ref) => {
|
913
820
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
914
|
-
return /* @__PURE__ */
|
821
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
915
822
|
"svg",
|
916
823
|
__spreadProps(__spreadValues({
|
917
824
|
ref,
|
@@ -921,8 +828,8 @@ var DiffIcon = import_react23.default.forwardRef(
|
|
921
828
|
viewBox: "0 0 24 24",
|
922
829
|
xmlns: "http://www.w3.org/2000/svg",
|
923
830
|
children: [
|
924
|
-
/* @__PURE__ */
|
925
|
-
/* @__PURE__ */
|
831
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M0 0h24v24H0z", fill: "none" }),
|
832
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
926
833
|
"path",
|
927
834
|
{
|
928
835
|
fill: themeSvgIconColor,
|
@@ -936,14 +843,10 @@ var DiffIcon = import_react23.default.forwardRef(
|
|
936
843
|
);
|
937
844
|
DiffIcon.displayName = "Diff";
|
938
845
|
var diff_default = DiffIcon;
|
939
|
-
|
940
|
-
// src/assets/dpa.tsx
|
941
|
-
var import_react24 = __toESM(require("react"));
|
942
|
-
var import_jsx_runtime24 = require("react/jsx-runtime");
|
943
|
-
var DPAIcon = import_react24.default.forwardRef(
|
846
|
+
var DPAIcon = React30__namespace.default.forwardRef(
|
944
847
|
(_a, ref) => {
|
945
848
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
946
|
-
return /* @__PURE__ */
|
849
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
947
850
|
"svg",
|
948
851
|
__spreadProps(__spreadValues({
|
949
852
|
ref,
|
@@ -952,7 +855,7 @@ var DPAIcon = import_react24.default.forwardRef(
|
|
952
855
|
}, props), {
|
953
856
|
viewBox: "0 0 24 24",
|
954
857
|
xmlns: "http://www.w3.org/2000/svg",
|
955
|
-
children: /* @__PURE__ */
|
858
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
956
859
|
"path",
|
957
860
|
{
|
958
861
|
d: "M23.373 20.364a4.682 4.682 0 0 1-8.1 0 4.694 4.694 0 0 1 0-4.669c.326-.564.778-.995 1.272-1.358.472.198 3.394 1.421 3.917 1.717a2.291 2.291 0 0 0-3.109.842 2.304 2.304 0 0 0 0 2.267 2.267 2.267 0 0 0 2.564 1.053 2.254 2.254 0 0 0 1.375-1.053 2.328 2.328 0 0 0 0-2.279 2.478 2.478 0 0 0-.83-.83l-3.53-2.045-5.727-3.317a5.022 5.022 0 0 0 4.139-.36l6.32 3.641a4.682 4.682 0 0 1 1.709 6.391zm-14-2.01v.004l-3.558 2a2.27 2.27 0 0 1-3.102-.823 2.267 2.267 0 0 1 2.551-3.332c.591.161 1.089.56 1.375 1.102v-.05a2.27 2.27 0 0 1-.824 3.103c.559-.303 3.352-2.62 3.465-2.714-.304-1.744-1.573-3.24-3.396-3.72a4.608 4.608 0 0 0-3.558.479 4.67 4.67 0 0 0-1.694 6.383 4.682 4.682 0 0 0 2.865 2.192 4.657 4.657 0 0 0 3.66-.56l6.877-3.973c-.019-1.303.512-2.604 1.375-3.58l-6.036 3.49zm-2.4-4.703v-8.1h.012c.002-1.617.821-3.189 2.321-4.055a4.682 4.682 0 1 1 2.337 8.737 4.678 4.678 0 0 1-1.55-.28c-.016-.085-.733-3.796-.733-4.188L9.29 9.59v6.761a4.075 4.075 0 0 0-2.317-2.7zm2.403-8.1a2.279 2.279 0 1 0 4.546 0 2.23 2.23 0 0 0-.297-1.127 2.279 2.279 0 0 0-1.97-1.14 2.267 2.267 0 0 0-2.279 2.254v.013z",
|
@@ -965,14 +868,10 @@ var DPAIcon = import_react24.default.forwardRef(
|
|
965
868
|
);
|
966
869
|
DPAIcon.displayName = "DPA";
|
967
870
|
var dpa_default = DPAIcon;
|
968
|
-
|
969
|
-
// src/assets/subp.tsx
|
970
|
-
var import_react25 = __toESM(require("react"));
|
971
|
-
var import_jsx_runtime25 = require("react/jsx-runtime");
|
972
|
-
var SubPIcon = import_react25.default.forwardRef(
|
871
|
+
var SubPIcon = React30__namespace.default.forwardRef(
|
973
872
|
(_a, ref) => {
|
974
873
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
975
|
-
return /* @__PURE__ */
|
874
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
976
875
|
"svg",
|
977
876
|
__spreadProps(__spreadValues({
|
978
877
|
ref,
|
@@ -981,7 +880,7 @@ var SubPIcon = import_react25.default.forwardRef(
|
|
981
880
|
}, props), {
|
982
881
|
viewBox: "0 0 24 24",
|
983
882
|
xmlns: "http://www.w3.org/2000/svg",
|
984
|
-
children: /* @__PURE__ */
|
883
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
985
884
|
"path",
|
986
885
|
{
|
987
886
|
d: "M11.999 0a12 12 0 100 24A12 12 0 0012 0zm1.183 5.255h.048c3.273 0 5.247 1.48 5.247 4.103 0 2.727-1.974 4.536-5.295 4.669v-1.742c1.837-.11 2.801-1.061 2.801-2.744 0-1.498-.957-2.442-2.8-2.516zm-1.773.026l.005 11.896c.779.052 1.583.18 2.26.337l-.269 1.324H6.788v-1.324a14.96 14.96 0 012.26-.337V6.993a14.71 14.71 0 01-2.26-.337V5.33h2.26c.64 0 1.469-.028 2.361-.05z",
|
@@ -996,14 +895,10 @@ var SubPIcon = import_react25.default.forwardRef(
|
|
996
895
|
);
|
997
896
|
SubPIcon.displayName = "SubP";
|
998
897
|
var subp_default = SubPIcon;
|
999
|
-
|
1000
|
-
// src/assets/t3p.tsx
|
1001
|
-
var import_react26 = __toESM(require("react"));
|
1002
|
-
var import_jsx_runtime26 = require("react/jsx-runtime");
|
1003
|
-
var T3PIcon = import_react26.default.forwardRef(
|
898
|
+
var T3PIcon = React30__namespace.default.forwardRef(
|
1004
899
|
(_a, ref) => {
|
1005
900
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
1006
|
-
return /* @__PURE__ */
|
901
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
1007
902
|
"svg",
|
1008
903
|
__spreadProps(__spreadValues({
|
1009
904
|
ref,
|
@@ -1012,7 +907,7 @@ var T3PIcon = import_react26.default.forwardRef(
|
|
1012
907
|
}, props), {
|
1013
908
|
viewBox: "0 0 24 24",
|
1014
909
|
xmlns: "http://www.w3.org/2000/svg",
|
1015
|
-
children: /* @__PURE__ */
|
910
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
1016
911
|
"path",
|
1017
912
|
{
|
1018
913
|
d: "M9.71 2.136a1.43 1.43 0 0 0-2.047 0h-.007a1.48 1.48 0 0 0-.421 1.042c0 .41.161.777.422 1.039l.007.007c.257.264.616.426 1.019.426.404 0 .766-.162 1.027-.426l.003-.007c.261-.262.421-.629.421-1.039 0-.408-.159-.777-.421-1.042H9.71zM8.683 22.295c.404 0 .766-.167 1.027-.429l.003-.008c.261-.261.421-.631.421-1.036 0-.41-.159-.778-.421-1.044H9.71a1.42 1.42 0 0 0-1.027-.432 1.4 1.4 0 0 0-1.02.432h-.007c-.26.266-.422.634-.422 1.044 0 .406.161.775.422 1.036l.007.008c.258.262.617.429 1.02.429zm7.89-4.462c.359-.096.683-.33.882-.684l.027-.052a1.47 1.47 0 0 0 .114-1.067 1.454 1.454 0 0 0-.675-.896l-.021-.014a1.425 1.425 0 0 0-1.078-.132c-.36.091-.684.335-.881.686-.2.349-.241.75-.146 1.119.099.363.33.691.675.896h.002c.346.203.737.239 1.101.144zm-6.405-7.342a2.083 2.083 0 0 0-1.485-.627c-.58 0-1.103.242-1.482.627-.378.385-.612.916-.612 1.507s.233 1.124.612 1.514a2.08 2.08 0 0 0 2.967 0c.379-.39.612-.923.612-1.514s-.233-1.122-.612-1.507zm-.835-2.51c.843.141 1.6.552 2.178 1.144h.004c.092.093.182.196.265.299l1.446-.851a3.176 3.176 0 0 1-.047-1.808 3.149 3.149 0 0 1 1.456-1.926l.025-.016a3.062 3.062 0 0 1 2.345-.306c.77.21 1.465.721 1.898 1.482v.002c.431.757.518 1.626.313 2.408a3.145 3.145 0 0 1-1.456 1.928l-.198.118h-.02a3.095 3.095 0 0 1-2.154.201 3.127 3.127 0 0 1-1.514-.944l-1.444.848a4.162 4.162 0 0 1 0 2.879l1.444.846c.413-.47.939-.789 1.514-.944a3.041 3.041 0 0 1 2.371.319l.048.023v.002a3.17 3.17 0 0 1 1.408 1.906 3.215 3.215 0 0 1-.313 2.405l-.026.053-.003-.005a3.147 3.147 0 0 1-1.867 1.436 3.096 3.096 0 0 1-2.371-.318v-.006a3.156 3.156 0 0 1-1.456-1.927 3.175 3.175 0 0 1 .047-1.805l-1.446-.848a3.905 3.905 0 0 1-.265.294l-.004.005a3.938 3.938 0 0 1-2.178 1.138v1.699a3.09 3.09 0 0 1 1.56.862l.002.004c.565.572.914 1.368.914 2.243 0 .873-.35 1.664-.914 2.239l-.002.009a3.1 3.1 0 0 1-2.21.931 3.1 3.1 0 0 1-2.206-.93h-.002v-.009a3.186 3.186 0 0 1-.916-2.239c0-.875.35-1.672.916-2.243v-.004h.002a3.1 3.1 0 0 1 1.558-.862v-1.699a3.926 3.926 0 0 1-2.176-1.138l-.006-.005a4.098 4.098 0 0 1-1.173-2.874c0-1.122.452-2.136 1.173-2.872h.006a3.947 3.947 0 0 1 2.176-1.144V6.289a3.137 3.137 0 0 1-1.558-.864h-.002v-.004a3.192 3.192 0 0 1-.916-2.243c0-.871.35-1.669.916-2.243l.002-.002A3.084 3.084 0 0 1 8.683 0c.861 0 1.641.355 2.21.932v.002h.002c.565.574.914 1.372.914 2.243 0 .876-.35 1.667-.914 2.243l-.002.005a3.142 3.142 0 0 1-1.56.864v1.692zm8.121-1.129l-.012-.019a1.452 1.452 0 0 0-.87-.668 1.43 1.43 0 0 0-1.103.146h.002c-.347.2-.58.529-.677.896-.095.365-.054.768.146 1.119l.007.009c.2.347.519.579.874.673.357.103.755.059 1.098-.144l.019-.009a1.47 1.47 0 0 0 .657-.885 1.493 1.493 0 0 0-.141-1.118",
|
@@ -1025,14 +920,10 @@ var T3PIcon = import_react26.default.forwardRef(
|
|
1025
920
|
);
|
1026
921
|
T3PIcon.displayName = "T3P";
|
1027
922
|
var t3p_default = T3PIcon;
|
1028
|
-
|
1029
|
-
// src/assets/http.tsx
|
1030
|
-
var import_react27 = __toESM(require("react"));
|
1031
|
-
var import_jsx_runtime27 = require("react/jsx-runtime");
|
1032
|
-
var HttpIcon = import_react27.default.forwardRef(
|
923
|
+
var HttpIcon = React30__namespace.default.forwardRef(
|
1033
924
|
(_a, ref) => {
|
1034
925
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
1035
|
-
return /* @__PURE__ */
|
926
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
1036
927
|
"svg",
|
1037
928
|
__spreadProps(__spreadValues({
|
1038
929
|
ref,
|
@@ -1041,7 +932,7 @@ var HttpIcon = import_react27.default.forwardRef(
|
|
1041
932
|
}, props), {
|
1042
933
|
viewBox: "0 0 1024 1024",
|
1043
934
|
xmlns: "http://www.w3.org/2000/svg",
|
1044
|
-
children: /* @__PURE__ */
|
935
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
1045
936
|
"path",
|
1046
937
|
{
|
1047
938
|
d: "M400.896 704.292571v194.889143a376.795429 376.795429 0 0 1-84.845714-12.8c-21.028571-34.486857-48.384-93.732571-65.682286-182.089143h150.528z m448 8.521143v38.070857H803.108571V885.028571h-41.984v-134.144h-89.929142V885.028571h-41.984v-134.144h-45.860572v-38.034285h265.508572z m-368.347429 0v63.561143h50.395429V712.777143h41.984V885.028571h-41.984v-70.582857H480.548571v70.582857h-41.947428V712.777143h41.947428z m433.188572 0c19.456 0 32.146286 0.841143 38.509714 2.633143 10.057143 2.742857 18.505143 8.740571 25.161143 17.810286 6.729143 9.069714 10.020571 20.662857 10.020571 34.596571 0 10.715429-1.901714 19.894857-5.741714 27.428572a49.115429 49.115429 0 0 1-33.024 26.404571c-7.899429 1.645714-19.017143 2.450286-33.462857 2.450286h-14.994286V885.028571h-41.947428V712.777143h55.478857z m-691.602286-8.521143c15.579429 79.798857 39.460571 135.606857 59.465143 171.154286a377.526857 377.526857 0 0 1-198.144-171.154286h138.678857z m693.248 35.84h-25.929143v56.576h22.491429c12.946286 0 21.686857-0.914286 26.697143-2.925714a26.038857 26.038857 0 0 0 12.214857-9.984 27.757714 27.757714 0 0 0 4.388571-15.506286 26.733714 26.733714 0 0 0-6.217143-18.029714 26.697143 26.697143 0 0 0-15.652571-8.923428 114.505143 114.505143 0 0 0-17.993143-1.170286z m-514.486857-203.410285v139.629714h-155.428571a957.586286 957.586286 0 0 1-11.702858-139.629714h167.131429z m-195.108571 0a955.977143 955.977143 0 0 0 11.776 139.629714H70.107429A372.626286 372.626286 0 0 1 36.571429 536.722286h169.216z m390.217142 0a957.696 957.696 0 0 1-11.702857 139.629714h-155.428571v-139.629714h167.131428z m193.170286 0a374.930286 374.930286 0 0 1-33.389714 139.629714H612.205714a956.342857 956.342857 0 0 0 11.776-139.629714h165.193143z m-32.548571-167.570286c19.346286 42.934857 30.902857 89.965714 32.841143 139.629714h-165.376c-0.694857-52.48-5.010286-98.742857-11.556572-139.629714h144.091429z m-355.730286 0v139.629714H233.581714c0.731429-52.516571 5.12-98.742857 11.629715-139.629714h155.684571z m-183.661714 0a965.412571 965.412571 0 0 0-11.593143 139.629714H36.790857c1.828571-49.627429 13.019429-96.768 32.256-139.629714H217.234286z m367.323428 0c6.546286 40.923429 10.898286 87.113143 11.629715 139.629714h-167.350858v-139.629714h155.721143z m-34.998857-197.595429c82.651429 32.109714 150.528 92.891429 193.060572 169.691429H607.817143c-15.286857-78.189714-38.509714-133.741714-58.258286-169.691429zM428.873143 146.285714c29.696 1.316571 58.514286 5.997714 86.125714 13.750857 20.955429 35.181714 47.908571 93.952 64.987429 181.174858h-151.149715V146.285714z m-27.977143 0.036572v194.925714H249.819429c17.115429-87.771429 44.324571-146.724571 65.316571-181.833143A376.758857 376.758857 0 0 1 400.896 146.285714z m-120.100571 24.064c-19.858286 35.949714-43.410286 91.794286-58.88 170.825143H83.053714a378.404571 378.404571 0 0 1 197.741715-170.788572z",
|
@@ -1055,14 +946,10 @@ var HttpIcon = import_react27.default.forwardRef(
|
|
1055
946
|
);
|
1056
947
|
HttpIcon.displayName = "Http";
|
1057
948
|
var http_default = HttpIcon;
|
1058
|
-
|
1059
|
-
// src/assets/scheme.tsx
|
1060
|
-
var import_react28 = __toESM(require("react"));
|
1061
|
-
var import_jsx_runtime28 = require("react/jsx-runtime");
|
1062
|
-
var SchemeIcon = import_react28.default.forwardRef(
|
949
|
+
var SchemeIcon = React30__namespace.default.forwardRef(
|
1063
950
|
(_a, ref) => {
|
1064
951
|
var _b = _a, { color = "currentColor", className } = _b, props = __objRest(_b, ["color", "className"]);
|
1065
|
-
return /* @__PURE__ */
|
952
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
1066
953
|
"svg",
|
1067
954
|
__spreadProps(__spreadValues({
|
1068
955
|
ref,
|
@@ -1071,7 +958,7 @@ var SchemeIcon = import_react28.default.forwardRef(
|
|
1071
958
|
}, props), {
|
1072
959
|
viewBox: "0 0 24 24",
|
1073
960
|
xmlns: "http://www.w3.org/2000/svg",
|
1074
|
-
children: /* @__PURE__ */
|
961
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
1075
962
|
"path",
|
1076
963
|
{
|
1077
964
|
fill: themeSvgIconColor,
|
@@ -1120,90 +1007,85 @@ var BUILTIN_ICON_COMPONENTS = {
|
|
1120
1007
|
// ../lib/src/limited-lucide-icons.ts
|
1121
1008
|
var limited_lucide_icons_exports = {};
|
1122
1009
|
__export(limited_lucide_icons_exports, {
|
1123
|
-
AlbumIcon: () =>
|
1124
|
-
AlignHorizontalJustifyEnd: () =>
|
1125
|
-
ArrowLeft: () =>
|
1126
|
-
ArrowRight: () =>
|
1127
|
-
ArrowUp: () =>
|
1128
|
-
Binary: () =>
|
1129
|
-
Blocks: () =>
|
1130
|
-
BookX: () =>
|
1131
|
-
BringToFront: () =>
|
1132
|
-
Bug: () =>
|
1133
|
-
Building2: () =>
|
1134
|
-
Car: () =>
|
1135
|
-
Check: () =>
|
1136
|
-
ChevronDown: () =>
|
1137
|
-
ChevronLeft: () =>
|
1138
|
-
ChevronRight: () =>
|
1139
|
-
ChevronUp: () =>
|
1140
|
-
Circle: () =>
|
1141
|
-
CircleAlert: () =>
|
1142
|
-
CircleSmall: () =>
|
1143
|
-
ComponentIcon: () =>
|
1144
|
-
Cpu: () =>
|
1145
|
-
DatabaseZap: () =>
|
1146
|
-
Dot: () =>
|
1147
|
-
Download: () =>
|
1148
|
-
ExternalLink: () =>
|
1149
|
-
Eye: () =>
|
1150
|
-
Facebook: () =>
|
1151
|
-
FileLock2: () =>
|
1152
|
-
Fingerprint: () =>
|
1153
|
-
Gift: () =>
|
1154
|
-
GitPullRequestArrow: () =>
|
1155
|
-
Globe: () =>
|
1156
|
-
GlobeLock: () =>
|
1157
|
-
GripVertical: () =>
|
1158
|
-
HandHeart: () =>
|
1159
|
-
Handshake: () =>
|
1160
|
-
Highlighter: () =>
|
1161
|
-
HousePlus: () =>
|
1162
|
-
ImageDown: () =>
|
1163
|
-
ImageOff: () =>
|
1164
|
-
ImageUp: () =>
|
1165
|
-
Info: () =>
|
1166
|
-
Keyboard: () =>
|
1167
|
-
LandPlot: () =>
|
1168
|
-
Layout: () =>
|
1169
|
-
LayoutTemplate: () =>
|
1170
|
-
LibraryIcon: () =>
|
1171
|
-
Link: () =>
|
1172
|
-
Loader2: () =>
|
1173
|
-
LogIn: () =>
|
1174
|
-
LogOut: () =>
|
1175
|
-
MoreHorizontal: () =>
|
1176
|
-
MousePointerClick: () =>
|
1177
|
-
Palette: () =>
|
1178
|
-
PanelLeft: () =>
|
1179
|
-
PanelsTopLeft: () =>
|
1180
|
-
Pencil: () =>
|
1181
|
-
Pi: () =>
|
1182
|
-
ReceiptText: () =>
|
1183
|
-
Regex: () =>
|
1184
|
-
Replace: () =>
|
1185
|
-
Rss: () =>
|
1186
|
-
Scale: () =>
|
1187
|
-
Search: () =>
|
1188
|
-
Server: () =>
|
1189
|
-
Share: () =>
|
1190
|
-
ShieldUser: () =>
|
1191
|
-
Sparkles: () =>
|
1192
|
-
SplinePointer: () =>
|
1193
|
-
SquareDashedBottomCode: () =>
|
1194
|
-
SquareTerminal: () =>
|
1195
|
-
Star: () =>
|
1196
|
-
Tablets: () =>
|
1197
|
-
Terminal: () =>
|
1198
|
-
Twitter: () =>
|
1199
|
-
X: () =>
|
1200
|
-
Zap: () =>
|
1010
|
+
AlbumIcon: () => lucideReact.AlbumIcon,
|
1011
|
+
AlignHorizontalJustifyEnd: () => lucideReact.AlignHorizontalJustifyEnd,
|
1012
|
+
ArrowLeft: () => lucideReact.ArrowLeft,
|
1013
|
+
ArrowRight: () => lucideReact.ArrowRight,
|
1014
|
+
ArrowUp: () => lucideReact.ArrowUp,
|
1015
|
+
Binary: () => lucideReact.Binary,
|
1016
|
+
Blocks: () => lucideReact.Blocks,
|
1017
|
+
BookX: () => lucideReact.BookX,
|
1018
|
+
BringToFront: () => lucideReact.BringToFront,
|
1019
|
+
Bug: () => lucideReact.Bug,
|
1020
|
+
Building2: () => lucideReact.Building2,
|
1021
|
+
Car: () => lucideReact.Car,
|
1022
|
+
Check: () => lucideReact.Check,
|
1023
|
+
ChevronDown: () => lucideReact.ChevronDown,
|
1024
|
+
ChevronLeft: () => lucideReact.ChevronLeft,
|
1025
|
+
ChevronRight: () => lucideReact.ChevronRight,
|
1026
|
+
ChevronUp: () => lucideReact.ChevronUp,
|
1027
|
+
Circle: () => lucideReact.Circle,
|
1028
|
+
CircleAlert: () => lucideReact.CircleAlert,
|
1029
|
+
CircleSmall: () => lucideReact.CircleSmall,
|
1030
|
+
ComponentIcon: () => lucideReact.ComponentIcon,
|
1031
|
+
Cpu: () => lucideReact.Cpu,
|
1032
|
+
DatabaseZap: () => lucideReact.DatabaseZap,
|
1033
|
+
Dot: () => lucideReact.Dot,
|
1034
|
+
Download: () => lucideReact.Download,
|
1035
|
+
ExternalLink: () => lucideReact.ExternalLink,
|
1036
|
+
Eye: () => lucideReact.Eye,
|
1037
|
+
Facebook: () => lucideReact.Facebook,
|
1038
|
+
FileLock2: () => lucideReact.FileLock2,
|
1039
|
+
Fingerprint: () => lucideReact.Fingerprint,
|
1040
|
+
Gift: () => lucideReact.Gift,
|
1041
|
+
GitPullRequestArrow: () => lucideReact.GitPullRequestArrow,
|
1042
|
+
Globe: () => lucideReact.Globe,
|
1043
|
+
GlobeLock: () => lucideReact.GlobeLock,
|
1044
|
+
GripVertical: () => lucideReact.GripVertical,
|
1045
|
+
HandHeart: () => lucideReact.HandHeart,
|
1046
|
+
Handshake: () => lucideReact.Handshake,
|
1047
|
+
Highlighter: () => lucideReact.Highlighter,
|
1048
|
+
HousePlus: () => lucideReact.HousePlus,
|
1049
|
+
ImageDown: () => lucideReact.ImageDown,
|
1050
|
+
ImageOff: () => lucideReact.ImageOff,
|
1051
|
+
ImageUp: () => lucideReact.ImageUp,
|
1052
|
+
Info: () => lucideReact.Info,
|
1053
|
+
Keyboard: () => lucideReact.Keyboard,
|
1054
|
+
LandPlot: () => lucideReact.LandPlot,
|
1055
|
+
Layout: () => lucideReact.Layout,
|
1056
|
+
LayoutTemplate: () => lucideReact.LayoutTemplate,
|
1057
|
+
LibraryIcon: () => lucideReact.LibraryIcon,
|
1058
|
+
Link: () => lucideReact.Link,
|
1059
|
+
Loader2: () => lucideReact.Loader2,
|
1060
|
+
LogIn: () => lucideReact.LogIn,
|
1061
|
+
LogOut: () => lucideReact.LogOut,
|
1062
|
+
MoreHorizontal: () => lucideReact.MoreHorizontal,
|
1063
|
+
MousePointerClick: () => lucideReact.MousePointerClick,
|
1064
|
+
Palette: () => lucideReact.Palette,
|
1065
|
+
PanelLeft: () => lucideReact.PanelLeft,
|
1066
|
+
PanelsTopLeft: () => lucideReact.PanelsTopLeft,
|
1067
|
+
Pencil: () => lucideReact.Pencil,
|
1068
|
+
Pi: () => lucideReact.Pi,
|
1069
|
+
ReceiptText: () => lucideReact.ReceiptText,
|
1070
|
+
Regex: () => lucideReact.Regex,
|
1071
|
+
Replace: () => lucideReact.Replace,
|
1072
|
+
Rss: () => lucideReact.Rss,
|
1073
|
+
Scale: () => lucideReact.Scale,
|
1074
|
+
Search: () => lucideReact.Search,
|
1075
|
+
Server: () => lucideReact.Server,
|
1076
|
+
Share: () => lucideReact.Share,
|
1077
|
+
ShieldUser: () => lucideReact.ShieldUser,
|
1078
|
+
Sparkles: () => lucideReact.Sparkles,
|
1079
|
+
SplinePointer: () => lucideReact.SplinePointer,
|
1080
|
+
SquareDashedBottomCode: () => lucideReact.SquareDashedBottomCode,
|
1081
|
+
SquareTerminal: () => lucideReact.SquareTerminal,
|
1082
|
+
Star: () => lucideReact.Star,
|
1083
|
+
Tablets: () => lucideReact.Tablets,
|
1084
|
+
Terminal: () => lucideReact.Terminal,
|
1085
|
+
Twitter: () => lucideReact.Twitter,
|
1086
|
+
X: () => lucideReact.X,
|
1087
|
+
Zap: () => lucideReact.Zap
|
1201
1088
|
});
|
1202
|
-
var import_lucide_react = require("lucide-react");
|
1203
|
-
|
1204
|
-
// src/components/global-icon.tsx
|
1205
|
-
var import_react29 = __toESM(require("react"));
|
1206
|
-
var import_jsx_runtime29 = require("react/jsx-runtime");
|
1207
1089
|
var tempStyledLimitedIcons = {};
|
1208
1090
|
for (const iconNameKey in limited_lucide_icons_exports) {
|
1209
1091
|
if (Object.prototype.hasOwnProperty.call(limited_lucide_icons_exports, iconNameKey)) {
|
@@ -1223,7 +1105,7 @@ for (const iconNameKey in limited_lucide_icons_exports) {
|
|
1223
1105
|
height: props.size || themeSvgIconSize
|
1224
1106
|
}, props.style)
|
1225
1107
|
});
|
1226
|
-
return /* @__PURE__ */
|
1108
|
+
return /* @__PURE__ */ jsxRuntime.jsx(ComponentToRender, __spreadValues({}, finalProps));
|
1227
1109
|
};
|
1228
1110
|
StyledIcon.displayName = `Styled(${iconName})`;
|
1229
1111
|
tempStyledLimitedIcons[iconName] = StyledIcon;
|
@@ -1247,28 +1129,20 @@ for (const [iconName, IconComponent] of Object.entries(BUILTIN_ICON_COMPONENTS))
|
|
1247
1129
|
height: props.size || themeSvgIconSize
|
1248
1130
|
}, props.style)
|
1249
1131
|
});
|
1250
|
-
return /* @__PURE__ */
|
1132
|
+
return /* @__PURE__ */ jsxRuntime.jsx(IconComponent, __spreadValues({}, finalProps));
|
1251
1133
|
};
|
1252
1134
|
WrappedIcon.displayName = `Wrapped(${iconName})`;
|
1253
1135
|
tempWrappedBuiltinIcons[iconName] = WrappedIcon;
|
1254
1136
|
}
|
1255
1137
|
var wrappedBuiltinIconsPart = tempWrappedBuiltinIcons;
|
1256
1138
|
var globalLucideIcons = __spreadValues(__spreadValues({}, styledLimitedIconsPart), wrappedBuiltinIconsPart);
|
1257
|
-
var NotFoundIcon = () => /* @__PURE__ */
|
1258
|
-
|
1259
|
-
// ../lib/src/utils.ts
|
1260
|
-
var import_clsx = require("clsx");
|
1261
|
-
var import_tailwind_merge = require("tailwind-merge");
|
1139
|
+
var NotFoundIcon = () => /* @__PURE__ */ jsxRuntime.jsx(globalLucideIcons.SquareTerminal, { className: `h-8 w-8 rounded-full p-1 shadow-lg ring-0.5 border border-purple-500 ring-purple-500/20 ${themeIconColor}` });
|
1262
1140
|
function cn(...inputs) {
|
1263
|
-
return
|
1141
|
+
return tailwindMerge.twMerge(clsx.clsx(inputs));
|
1264
1142
|
}
|
1265
|
-
|
1266
|
-
// src/lib/icon-context.tsx
|
1267
|
-
var import_react30 = require("react");
|
1268
|
-
var import_jsx_runtime30 = require("react/jsx-runtime");
|
1269
|
-
var IconConfigContext = (0, import_react30.createContext)(null);
|
1143
|
+
var IconConfigContext = React30.createContext(null);
|
1270
1144
|
function useIconConfig() {
|
1271
|
-
const config =
|
1145
|
+
const config = React30.useContext(IconConfigContext);
|
1272
1146
|
if (config === null) {
|
1273
1147
|
throw new Error(
|
1274
1148
|
'[SiteIcon] IconConfigProvider not found. Please wrap your app with <IconConfigProvider config={{ siteIcon: "YourIcon" }}>.'
|
@@ -1284,9 +1158,6 @@ function useIconConfigSafe(iconKey) {
|
|
1284
1158
|
return void 0;
|
1285
1159
|
}
|
1286
1160
|
}
|
1287
|
-
|
1288
|
-
// src/lib/site-icon.tsx
|
1289
|
-
var import_jsx_runtime31 = require("react/jsx-runtime");
|
1290
1161
|
function SiteIcon(_a) {
|
1291
1162
|
var _b = _a, {
|
1292
1163
|
size = 24,
|
@@ -1304,27 +1175,23 @@ function SiteIcon(_a) {
|
|
1304
1175
|
if (typeof configuredIcon === "string") {
|
1305
1176
|
if (configuredIcon === "") {
|
1306
1177
|
const DefaultIcon = globalLucideIcons["Download"];
|
1307
|
-
return /* @__PURE__ */
|
1178
|
+
return /* @__PURE__ */ jsxRuntime.jsx(DefaultIcon, __spreadValues({ size, className: cn(themeIconColor, className) }, props));
|
1308
1179
|
}
|
1309
1180
|
const IconComponent = globalLucideIcons[configuredIcon];
|
1310
1181
|
if (!IconComponent) {
|
1311
1182
|
throw new Error(`[SiteIcon] Icon key "${configuredIcon}" not found in globalLucideIcons.`);
|
1312
1183
|
}
|
1313
|
-
return /* @__PURE__ */
|
1184
|
+
return /* @__PURE__ */ jsxRuntime.jsx(IconComponent, __spreadValues({ size, className: cn(themeIconColor, className) }, props));
|
1314
1185
|
} else {
|
1315
1186
|
const CustomIcon = configuredIcon;
|
1316
1187
|
const hasColorClass = className && /text-\w+/.test(className);
|
1317
1188
|
const finalClassName = hasColorClass ? className : cn(themeIconColor, className);
|
1318
|
-
return /* @__PURE__ */
|
1189
|
+
return /* @__PURE__ */ jsxRuntime.jsx(CustomIcon, __spreadValues({ size, className: finalClassName }, props));
|
1319
1190
|
}
|
1320
1191
|
}
|
1321
|
-
|
1322
|
-
// src/components/404-page.tsx
|
1323
|
-
var import_react31 = require("react");
|
1324
|
-
var import_jsx_runtime32 = require("react/jsx-runtime");
|
1325
1192
|
function NotFoundPage() {
|
1326
|
-
const [glitchText, setGlitchText] =
|
1327
|
-
|
1193
|
+
const [glitchText, setGlitchText] = React30.useState("404");
|
1194
|
+
React30.useEffect(() => {
|
1328
1195
|
const glitchChars = ["4", "0", "4", "?", "#", "!", "*", "&", "%", "$"];
|
1329
1196
|
const interval = setInterval(() => {
|
1330
1197
|
if (Math.random() < 0.5) {
|
@@ -1339,10 +1206,10 @@ function NotFoundPage() {
|
|
1339
1206
|
}, 600);
|
1340
1207
|
return () => clearInterval(interval);
|
1341
1208
|
}, []);
|
1342
|
-
return /* @__PURE__ */
|
1343
|
-
/* @__PURE__ */
|
1344
|
-
/* @__PURE__ */
|
1345
|
-
/* @__PURE__ */
|
1209
|
+
return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col items-center justify-center min-h-[75vh] w-full px-4 py-8", children: [
|
1210
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "text-center space-y-8 max-w-2xl", children: [
|
1211
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative flex justify-center", children: [
|
1212
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
1346
1213
|
"h1",
|
1347
1214
|
{
|
1348
1215
|
className: "text-8xl md:text-9xl font-bold bg-gradient-to-r from-purple-600 via-pink-500 to-purple-700 bg-clip-text text-transparent select-none",
|
@@ -1354,26 +1221,26 @@ function NotFoundPage() {
|
|
1354
1221
|
children: glitchText
|
1355
1222
|
}
|
1356
1223
|
),
|
1357
|
-
/* @__PURE__ */
|
1224
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute inset-0 pointer-events-none", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "h-full w-full bg-gradient-to-b from-transparent via-purple-500/10 to-transparent animate-pulse" }) })
|
1358
1225
|
] }),
|
1359
|
-
/* @__PURE__ */
|
1360
|
-
/* @__PURE__ */
|
1361
|
-
/* @__PURE__ */
|
1226
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
|
1227
|
+
/* @__PURE__ */ jsxRuntime.jsx("h2", { className: "text-2xl md:text-3xl font-semibold text-foreground", children: "Page Not Found" }),
|
1228
|
+
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-lg text-muted-foreground max-w-md mx-auto leading-relaxed", children: "The page you're looking for doesn't exist" })
|
1362
1229
|
] }),
|
1363
|
-
/* @__PURE__ */
|
1364
|
-
/* @__PURE__ */
|
1365
|
-
/* @__PURE__ */
|
1366
|
-
/* @__PURE__ */
|
1230
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex justify-center items-center gap-8 pt-8 opacity-60", children: [
|
1231
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2 text-sm text-muted-foreground", children: [
|
1232
|
+
/* @__PURE__ */ jsxRuntime.jsx(SiteIcon, {}),
|
1233
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { children: "Woops!" })
|
1367
1234
|
] }),
|
1368
|
-
/* @__PURE__ */
|
1369
|
-
/* @__PURE__ */
|
1370
|
-
/* @__PURE__ */
|
1371
|
-
/* @__PURE__ */
|
1235
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "w-1 h-1 bg-purple-500 rounded-full animate-ping" }),
|
1236
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2 text-sm text-muted-foreground", children: [
|
1237
|
+
/* @__PURE__ */ jsxRuntime.jsx(NotFoundIcon, {}),
|
1238
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { children: "Error Code: 404" })
|
1372
1239
|
] })
|
1373
1240
|
] })
|
1374
1241
|
] }),
|
1375
|
-
/* @__PURE__ */
|
1376
|
-
/* @__PURE__ */
|
1242
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "fixed inset-0 pointer-events-none overflow-hidden -z-10", children: [
|
1243
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
1377
1244
|
"div",
|
1378
1245
|
{
|
1379
1246
|
className: "absolute inset-0 opacity-[0.02] dark:opacity-[0.05]",
|
@@ -1386,7 +1253,7 @@ function NotFoundPage() {
|
|
1386
1253
|
}
|
1387
1254
|
}
|
1388
1255
|
),
|
1389
|
-
Array.from({ length: 6 }).map((_, i) => /* @__PURE__ */
|
1256
|
+
Array.from({ length: 6 }).map((_, i) => /* @__PURE__ */ jsxRuntime.jsx(
|
1390
1257
|
"div",
|
1391
1258
|
{
|
1392
1259
|
className: "absolute w-2 h-2 bg-purple-500/20 rounded-full animate-bounce",
|
@@ -1402,24 +1269,14 @@ function NotFoundPage() {
|
|
1402
1269
|
] })
|
1403
1270
|
] });
|
1404
1271
|
}
|
1405
|
-
|
1406
|
-
// src/components/go-to-top.tsx
|
1407
|
-
var import_react32 = require("react");
|
1408
|
-
var import_jsx_runtime33 = require("react/jsx-runtime");
|
1409
|
-
|
1410
|
-
// src/components/language-detector.tsx
|
1411
|
-
var import_next_intl = require("next-intl");
|
1412
|
-
var import_navigation = require("next/navigation");
|
1413
|
-
var import_react33 = require("react");
|
1414
|
-
var import_jsx_runtime34 = require("react/jsx-runtime");
|
1415
1272
|
function LanguageDetector({ i18nConfig }) {
|
1416
|
-
const [show, setShow] =
|
1417
|
-
const [detectedLocale, setDetectedLocale] =
|
1418
|
-
const currentLocale =
|
1419
|
-
const router =
|
1420
|
-
const t =
|
1273
|
+
const [show, setShow] = React30.useState(false);
|
1274
|
+
const [detectedLocale, setDetectedLocale] = React30.useState(null);
|
1275
|
+
const currentLocale = nextIntl.useLocale();
|
1276
|
+
const router = navigation.useRouter();
|
1277
|
+
const t = nextIntl.useTranslations("languageDetection");
|
1421
1278
|
const LANGUAGE_PREFERENCE_KEY = `${i18nConfig.detector.storagePrefix}-${i18nConfig.detector.storageKey}`;
|
1422
|
-
|
1279
|
+
React30.useEffect(() => {
|
1423
1280
|
const browserLang = navigator.language.split("-")[0];
|
1424
1281
|
const savedPreference = localStorage.getItem(LANGUAGE_PREFERENCE_KEY);
|
1425
1282
|
const preference = savedPreference ? JSON.parse(savedPreference) : null;
|
@@ -1467,31 +1324,31 @@ function LanguageDetector({ i18nConfig }) {
|
|
1467
1324
|
setShow(false);
|
1468
1325
|
};
|
1469
1326
|
if (!detectedLocale || !show) return null;
|
1470
|
-
return /* @__PURE__ */
|
1327
|
+
return /* @__PURE__ */ jsxRuntime.jsx("div", { className: "fixed top-16 right-4 z-40 w-[420px]", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: `shadow-lg rounded-lg transition-all duration-300 ${show ? "translate-x-0 opacity-100" : "translate-x-full opacity-0"}
|
1471
1328
|
bg-linear-to-r from-purple-100/95 via-white/95 to-purple-100/95 backdrop-blur-xs
|
1472
|
-
animate-gradient-x`, children: /* @__PURE__ */
|
1473
|
-
/* @__PURE__ */
|
1474
|
-
/* @__PURE__ */
|
1475
|
-
/* @__PURE__ */
|
1476
|
-
/* @__PURE__ */
|
1477
|
-
/* @__PURE__ */
|
1329
|
+
animate-gradient-x`, children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative px-6 py-4 overflow-hidden", children: [
|
1330
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "relative z-10 flex flex-col gap-3", children: [
|
1331
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-start justify-between gap-4", children: [
|
1332
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-col gap-1.5", children: [
|
1333
|
+
/* @__PURE__ */ jsxRuntime.jsx("h3", { className: "text-lg font-semibold text-gray-900", children: t("title") }),
|
1334
|
+
/* @__PURE__ */ jsxRuntime.jsxs("p", { className: "text-base text-gray-600", children: [
|
1478
1335
|
t("description"),
|
1479
1336
|
" ",
|
1480
|
-
/* @__PURE__ */
|
1337
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-purple-500 font-semibold", children: detectedLocale === "zh" ? "\u4E2D\u6587" : "English" }),
|
1481
1338
|
"?"
|
1482
1339
|
] })
|
1483
1340
|
] }),
|
1484
|
-
/* @__PURE__ */
|
1341
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
1485
1342
|
"button",
|
1486
1343
|
{
|
1487
1344
|
onClick: handleClose,
|
1488
1345
|
className: "text-gray-500 hover:text-gray-700",
|
1489
|
-
children: /* @__PURE__ */
|
1346
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(globalLucideIcons.X, { className: "h-5 w-5" })
|
1490
1347
|
}
|
1491
1348
|
)
|
1492
1349
|
] }),
|
1493
|
-
/* @__PURE__ */
|
1494
|
-
/* @__PURE__ */
|
1350
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-3", children: [
|
1351
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
1495
1352
|
"button",
|
1496
1353
|
{
|
1497
1354
|
onClick: handleClose,
|
@@ -1499,7 +1356,7 @@ function LanguageDetector({ i18nConfig }) {
|
|
1499
1356
|
children: t("close")
|
1500
1357
|
}
|
1501
1358
|
),
|
1502
|
-
/* @__PURE__ */
|
1359
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
1503
1360
|
"button",
|
1504
1361
|
{
|
1505
1362
|
onClick: handleLanguageChange,
|
@@ -1509,24 +1366,15 @@ function LanguageDetector({ i18nConfig }) {
|
|
1509
1366
|
)
|
1510
1367
|
] })
|
1511
1368
|
] }),
|
1512
|
-
/* @__PURE__ */
|
1369
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "absolute inset-0 bg-linear-to-r from-transparent via-purple-200/30 to-transparent animate-shimmer" })
|
1513
1370
|
] }) }) });
|
1514
1371
|
}
|
1515
|
-
|
1516
|
-
|
1517
|
-
var
|
1518
|
-
var import_next_intl2 = require("next-intl");
|
1519
|
-
|
1520
|
-
// src/ui/dropdown-menu.tsx
|
1521
|
-
var React30 = __toESM(require("react"));
|
1522
|
-
var DropdownMenuPrimitive = __toESM(require("@radix-ui/react-dropdown-menu"));
|
1523
|
-
var import_jsx_runtime35 = require("react/jsx-runtime");
|
1524
|
-
var DropdownMenu = DropdownMenuPrimitive.Root;
|
1525
|
-
var DropdownMenuTrigger = DropdownMenuPrimitive.Trigger;
|
1526
|
-
var DropdownMenuSubTrigger = React30.forwardRef((_a, ref) => {
|
1372
|
+
var DropdownMenu = DropdownMenuPrimitive__namespace.Root;
|
1373
|
+
var DropdownMenuTrigger = DropdownMenuPrimitive__namespace.Trigger;
|
1374
|
+
var DropdownMenuSubTrigger = React30__namespace.forwardRef((_a, ref) => {
|
1527
1375
|
var _b = _a, { className, inset, children } = _b, props = __objRest(_b, ["className", "inset", "children"]);
|
1528
|
-
return /* @__PURE__ */
|
1529
|
-
|
1376
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
1377
|
+
DropdownMenuPrimitive__namespace.SubTrigger,
|
1530
1378
|
__spreadProps(__spreadValues({
|
1531
1379
|
ref,
|
1532
1380
|
className: cn(
|
@@ -1537,16 +1385,16 @@ var DropdownMenuSubTrigger = React30.forwardRef((_a, ref) => {
|
|
1537
1385
|
}, props), {
|
1538
1386
|
children: [
|
1539
1387
|
children,
|
1540
|
-
/* @__PURE__ */
|
1388
|
+
/* @__PURE__ */ jsxRuntime.jsx(globalLucideIcons.ChevronRight, { className: "ml-auto" })
|
1541
1389
|
]
|
1542
1390
|
})
|
1543
1391
|
);
|
1544
1392
|
});
|
1545
|
-
DropdownMenuSubTrigger.displayName =
|
1546
|
-
var DropdownMenuSubContent =
|
1393
|
+
DropdownMenuSubTrigger.displayName = DropdownMenuPrimitive__namespace.SubTrigger.displayName;
|
1394
|
+
var DropdownMenuSubContent = React30__namespace.forwardRef((_a, ref) => {
|
1547
1395
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
1548
|
-
return /* @__PURE__ */
|
1549
|
-
|
1396
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
1397
|
+
DropdownMenuPrimitive__namespace.SubContent,
|
1550
1398
|
__spreadValues({
|
1551
1399
|
ref,
|
1552
1400
|
className: cn(
|
@@ -1556,11 +1404,11 @@ var DropdownMenuSubContent = React30.forwardRef((_a, ref) => {
|
|
1556
1404
|
}, props)
|
1557
1405
|
);
|
1558
1406
|
});
|
1559
|
-
DropdownMenuSubContent.displayName =
|
1560
|
-
var DropdownMenuContent =
|
1407
|
+
DropdownMenuSubContent.displayName = DropdownMenuPrimitive__namespace.SubContent.displayName;
|
1408
|
+
var DropdownMenuContent = React30__namespace.forwardRef((_a, ref) => {
|
1561
1409
|
var _b = _a, { className, sideOffset = 4 } = _b, props = __objRest(_b, ["className", "sideOffset"]);
|
1562
|
-
return /* @__PURE__ */
|
1563
|
-
|
1410
|
+
return /* @__PURE__ */ jsxRuntime.jsx(DropdownMenuPrimitive__namespace.Portal, { children: /* @__PURE__ */ jsxRuntime.jsx(
|
1411
|
+
DropdownMenuPrimitive__namespace.Content,
|
1564
1412
|
__spreadValues({
|
1565
1413
|
ref,
|
1566
1414
|
sideOffset,
|
@@ -1571,11 +1419,11 @@ var DropdownMenuContent = React30.forwardRef((_a, ref) => {
|
|
1571
1419
|
}, props)
|
1572
1420
|
) });
|
1573
1421
|
});
|
1574
|
-
DropdownMenuContent.displayName =
|
1575
|
-
var DropdownMenuItem =
|
1422
|
+
DropdownMenuContent.displayName = DropdownMenuPrimitive__namespace.Content.displayName;
|
1423
|
+
var DropdownMenuItem = React30__namespace.forwardRef((_a, ref) => {
|
1576
1424
|
var _b = _a, { className, inset } = _b, props = __objRest(_b, ["className", "inset"]);
|
1577
|
-
return /* @__PURE__ */
|
1578
|
-
|
1425
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
1426
|
+
DropdownMenuPrimitive__namespace.Item,
|
1579
1427
|
__spreadValues({
|
1580
1428
|
ref,
|
1581
1429
|
className: cn(
|
@@ -1586,11 +1434,11 @@ var DropdownMenuItem = React30.forwardRef((_a, ref) => {
|
|
1586
1434
|
}, props)
|
1587
1435
|
);
|
1588
1436
|
});
|
1589
|
-
DropdownMenuItem.displayName =
|
1590
|
-
var DropdownMenuCheckboxItem =
|
1437
|
+
DropdownMenuItem.displayName = DropdownMenuPrimitive__namespace.Item.displayName;
|
1438
|
+
var DropdownMenuCheckboxItem = React30__namespace.forwardRef((_a, ref) => {
|
1591
1439
|
var _b = _a, { className, children, checked } = _b, props = __objRest(_b, ["className", "children", "checked"]);
|
1592
|
-
return /* @__PURE__ */
|
1593
|
-
|
1440
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
1441
|
+
DropdownMenuPrimitive__namespace.CheckboxItem,
|
1594
1442
|
__spreadProps(__spreadValues({
|
1595
1443
|
ref,
|
1596
1444
|
className: cn(
|
@@ -1600,17 +1448,17 @@ var DropdownMenuCheckboxItem = React30.forwardRef((_a, ref) => {
|
|
1600
1448
|
checked
|
1601
1449
|
}, props), {
|
1602
1450
|
children: [
|
1603
|
-
/* @__PURE__ */
|
1451
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ jsxRuntime.jsx(DropdownMenuPrimitive__namespace.ItemIndicator, { children: /* @__PURE__ */ jsxRuntime.jsx(globalLucideIcons.Check, { className: "h-4 w-4" }) }) }),
|
1604
1452
|
children
|
1605
1453
|
]
|
1606
1454
|
})
|
1607
1455
|
);
|
1608
1456
|
});
|
1609
|
-
DropdownMenuCheckboxItem.displayName =
|
1610
|
-
var DropdownMenuRadioItem =
|
1457
|
+
DropdownMenuCheckboxItem.displayName = DropdownMenuPrimitive__namespace.CheckboxItem.displayName;
|
1458
|
+
var DropdownMenuRadioItem = React30__namespace.forwardRef((_a, ref) => {
|
1611
1459
|
var _b = _a, { className, children } = _b, props = __objRest(_b, ["className", "children"]);
|
1612
|
-
return /* @__PURE__ */
|
1613
|
-
|
1460
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
1461
|
+
DropdownMenuPrimitive__namespace.RadioItem,
|
1614
1462
|
__spreadProps(__spreadValues({
|
1615
1463
|
ref,
|
1616
1464
|
className: cn(
|
@@ -1619,17 +1467,17 @@ var DropdownMenuRadioItem = React30.forwardRef((_a, ref) => {
|
|
1619
1467
|
)
|
1620
1468
|
}, props), {
|
1621
1469
|
children: [
|
1622
|
-
/* @__PURE__ */
|
1470
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "absolute left-2 flex h-3.5 w-3.5 items-center justify-center", children: /* @__PURE__ */ jsxRuntime.jsx(DropdownMenuPrimitive__namespace.ItemIndicator, { children: /* @__PURE__ */ jsxRuntime.jsx(globalLucideIcons.Circle, { className: "h-2 w-2 fill-current" }) }) }),
|
1623
1471
|
children
|
1624
1472
|
]
|
1625
1473
|
})
|
1626
1474
|
);
|
1627
1475
|
});
|
1628
|
-
DropdownMenuRadioItem.displayName =
|
1629
|
-
var DropdownMenuLabel =
|
1476
|
+
DropdownMenuRadioItem.displayName = DropdownMenuPrimitive__namespace.RadioItem.displayName;
|
1477
|
+
var DropdownMenuLabel = React30__namespace.forwardRef((_a, ref) => {
|
1630
1478
|
var _b = _a, { className, inset } = _b, props = __objRest(_b, ["className", "inset"]);
|
1631
|
-
return /* @__PURE__ */
|
1632
|
-
|
1479
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
1480
|
+
DropdownMenuPrimitive__namespace.Label,
|
1633
1481
|
__spreadValues({
|
1634
1482
|
ref,
|
1635
1483
|
className: cn(
|
@@ -1640,40 +1488,22 @@ var DropdownMenuLabel = React30.forwardRef((_a, ref) => {
|
|
1640
1488
|
}, props)
|
1641
1489
|
);
|
1642
1490
|
});
|
1643
|
-
DropdownMenuLabel.displayName =
|
1644
|
-
var DropdownMenuSeparator =
|
1491
|
+
DropdownMenuLabel.displayName = DropdownMenuPrimitive__namespace.Label.displayName;
|
1492
|
+
var DropdownMenuSeparator = React30__namespace.forwardRef((_a, ref) => {
|
1645
1493
|
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
1646
|
-
return /* @__PURE__ */
|
1647
|
-
|
1494
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
1495
|
+
DropdownMenuPrimitive__namespace.Separator,
|
1648
1496
|
__spreadValues({
|
1649
1497
|
ref,
|
1650
1498
|
className: cn("-mx-1 my-1 h-px bg-muted", className)
|
1651
1499
|
}, props)
|
1652
1500
|
);
|
1653
1501
|
});
|
1654
|
-
DropdownMenuSeparator.displayName =
|
1655
|
-
var
|
1656
|
-
var _b = _a, {
|
1657
|
-
className
|
1658
|
-
} = _b, props = __objRest(_b, [
|
1659
|
-
"className"
|
1660
|
-
]);
|
1661
|
-
return /* @__PURE__ */ (0, import_jsx_runtime35.jsx)(
|
1662
|
-
"span",
|
1663
|
-
__spreadValues({
|
1664
|
-
className: cn("ml-auto text-xs tracking-widest opacity-60", className)
|
1665
|
-
}, props)
|
1666
|
-
);
|
1667
|
-
};
|
1668
|
-
DropdownMenuShortcut.displayName = "DropdownMenuShortcut";
|
1669
|
-
|
1670
|
-
// src/ui/language-button.tsx
|
1671
|
-
var React31 = __toESM(require("react"));
|
1672
|
-
var import_jsx_runtime36 = require("react/jsx-runtime");
|
1673
|
-
var LanguageButton = React31.forwardRef(
|
1502
|
+
DropdownMenuSeparator.displayName = DropdownMenuPrimitive__namespace.Separator.displayName;
|
1503
|
+
var LanguageButton = React30__namespace.forwardRef(
|
1674
1504
|
(_a, ref) => {
|
1675
1505
|
var _b = _a, { className, variant = "default", size = "default" } = _b, props = __objRest(_b, ["className", "variant", "size"]);
|
1676
|
-
return /* @__PURE__ */
|
1506
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
1677
1507
|
"button",
|
1678
1508
|
__spreadValues({
|
1679
1509
|
className: cn(
|
@@ -1694,34 +1524,31 @@ var LanguageButton = React31.forwardRef(
|
|
1694
1524
|
}
|
1695
1525
|
);
|
1696
1526
|
LanguageButton.displayName = "Button";
|
1697
|
-
|
1698
|
-
// src/components/language-switcher.tsx
|
1699
|
-
var import_jsx_runtime37 = require("react/jsx-runtime");
|
1700
1527
|
function LanguageSwitcher({ locales, localeLabels }) {
|
1701
|
-
const locale =
|
1702
|
-
const router =
|
1703
|
-
const pathname =
|
1528
|
+
const locale = nextIntl.useLocale();
|
1529
|
+
const router = navigation.useRouter();
|
1530
|
+
const pathname = navigation.usePathname();
|
1704
1531
|
const handleLocaleChange = (newLocale) => {
|
1705
1532
|
const newPathname = pathname.replace(`/${locale}`, `/${newLocale}`);
|
1706
1533
|
router.push(newPathname);
|
1707
1534
|
};
|
1708
|
-
return /* @__PURE__ */
|
1709
|
-
/* @__PURE__ */
|
1535
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(DropdownMenu, { children: [
|
1536
|
+
/* @__PURE__ */ jsxRuntime.jsx(DropdownMenuTrigger, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(
|
1710
1537
|
LanguageButton,
|
1711
1538
|
{
|
1712
1539
|
variant: "ghost",
|
1713
1540
|
size: "icon",
|
1714
1541
|
className: "bg-linear-to-r from-purple-400 to-pink-600 hover:from-purple-500 hover:to-pink-700 text-white transform hover:scale-110 transition-all duration-300",
|
1715
|
-
children: /* @__PURE__ */
|
1542
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(globalLucideIcons.Globe, { className: "h-5 w-5" })
|
1716
1543
|
}
|
1717
1544
|
) }),
|
1718
|
-
/* @__PURE__ */
|
1545
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
1719
1546
|
DropdownMenuContent,
|
1720
1547
|
{
|
1721
1548
|
align: "end",
|
1722
1549
|
sideOffset: 5,
|
1723
1550
|
className: "bg-white/90 dark:bg-gray-800/90 border-purple-100 dark:border-purple-800 w-[200px] p-2 backdrop-blur-xs translate-x-[50px]",
|
1724
|
-
children: /* @__PURE__ */
|
1551
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "grid grid-cols-2 gap-1", children: locales.map((loc) => /* @__PURE__ */ jsxRuntime.jsx(
|
1725
1552
|
DropdownMenuItem,
|
1726
1553
|
{
|
1727
1554
|
className: `
|
@@ -1740,25 +1567,21 @@ function LanguageSwitcher({ locales, localeLabels }) {
|
|
1740
1567
|
)
|
1741
1568
|
] });
|
1742
1569
|
}
|
1743
|
-
|
1744
|
-
// src/components/script/google-analytics-script.tsx
|
1745
|
-
var import_script = __toESM(require("next/script"));
|
1746
|
-
var import_jsx_runtime38 = require("react/jsx-runtime");
|
1747
1570
|
var googleAnalyticsId = process.env.NEXT_PUBLIC_GOOGLE_ANALYTICS_ID;
|
1748
1571
|
function GoogleAnalyticsScript() {
|
1749
1572
|
if (process.env.NODE_ENV !== "production") {
|
1750
1573
|
return null;
|
1751
1574
|
}
|
1752
|
-
return /* @__PURE__ */
|
1753
|
-
/* @__PURE__ */
|
1754
|
-
|
1575
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
1576
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
1577
|
+
Script__default.default,
|
1755
1578
|
{
|
1756
1579
|
strategy: "afterInteractive",
|
1757
1580
|
src: `https://www.googletagmanager.com/gtag/js?id=${googleAnalyticsId}`
|
1758
1581
|
}
|
1759
1582
|
),
|
1760
|
-
/* @__PURE__ */
|
1761
|
-
|
1583
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
1584
|
+
Script__default.default,
|
1762
1585
|
{
|
1763
1586
|
id: "google-analytics",
|
1764
1587
|
strategy: "afterInteractive",
|
@@ -1785,16 +1608,12 @@ function useGoogleAnalytics() {
|
|
1785
1608
|
trackEvent
|
1786
1609
|
};
|
1787
1610
|
}
|
1788
|
-
|
1789
|
-
// src/components/script/microsoft-clarity-script.tsx
|
1790
|
-
var import_script2 = __toESM(require("next/script"));
|
1791
|
-
var import_jsx_runtime39 = require("react/jsx-runtime");
|
1792
1611
|
var microsoftClarityId = process.env.NEXT_PUBLIC_MICROSOFT_CLARITY_ID;
|
1793
1612
|
function MicrosoftClarityScript() {
|
1794
1613
|
if (process.env.NODE_ENV !== "production") {
|
1795
1614
|
return null;
|
1796
1615
|
}
|
1797
|
-
return /* @__PURE__ */
|
1616
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Script__default.default, { id: "microsoft-clarity", strategy: "afterInteractive", children: `
|
1798
1617
|
(function(c,l,a,r,i,t,y){
|
1799
1618
|
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
|
1800
1619
|
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
|
@@ -1802,15 +1621,6 @@ function MicrosoftClarityScript() {
|
|
1802
1621
|
})(window, document, "clarity", "script", "${microsoftClarityId}");
|
1803
1622
|
` });
|
1804
1623
|
}
|
1805
|
-
// Annotate the CommonJS export names for ESM import in node:
|
1806
|
-
0 && (module.exports = {
|
1807
|
-
GoogleAnalyticsScript,
|
1808
|
-
LanguageDetector,
|
1809
|
-
LanguageSwitcher,
|
1810
|
-
MicrosoftClarityScript,
|
1811
|
-
NotFoundPage,
|
1812
|
-
useGoogleAnalytics
|
1813
|
-
});
|
1814
1624
|
/**
|
1815
1625
|
* @license
|
1816
1626
|
* MIT License
|
@@ -1819,4 +1629,12 @@ function MicrosoftClarityScript() {
|
|
1819
1629
|
* This source code is licensed under the MIT license found in the
|
1820
1630
|
* LICENSE file in the root directory of this source tree.
|
1821
1631
|
*/
|
1632
|
+
|
1633
|
+
exports.GoogleAnalyticsScript = GoogleAnalyticsScript;
|
1634
|
+
exports.LanguageDetector = LanguageDetector;
|
1635
|
+
exports.LanguageSwitcher = LanguageSwitcher;
|
1636
|
+
exports.MicrosoftClarityScript = MicrosoftClarityScript;
|
1637
|
+
exports.NotFoundPage = NotFoundPage;
|
1638
|
+
exports.useGoogleAnalytics = useGoogleAnalytics;
|
1639
|
+
//# sourceMappingURL=index.js.map
|
1822
1640
|
//# sourceMappingURL=index.js.map
|