@tonyclaw/llm-inspector 1.7.8 → 1.8.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/.output/nitro.json +1 -1
- package/.output/public/assets/index-BLVa7n9b.css +1 -0
- package/.output/public/assets/index-DH3FOgcK.js +97 -0
- package/.output/public/assets/main-Beo3LJDa.js +17 -0
- package/.output/server/_libs/dequal.mjs +27 -0
- package/.output/server/_libs/lucide-react.mjs +98 -91
- package/.output/server/_libs/swr.mjs +938 -0
- package/.output/server/_libs/use-sync-external-store.mjs +64 -1
- package/.output/server/_libs/zod.mjs +1 -0
- package/.output/server/_ssr/{index-hNquJMfH.mjs → index-HkueJ4Un.mjs} +218 -71
- package/.output/server/_ssr/index.mjs +2 -2
- package/.output/server/_ssr/{router-MmnX-LYh.mjs → router-DTswxb7l.mjs} +264 -52
- package/.output/server/_tanstack-start-manifest_v-DhUuivt-.mjs +4 -0
- package/.output/server/index.mjs +26 -26
- package/package.json +2 -1
- package/src/components/ProxyViewer.tsx +2 -0
- package/src/components/providers/ProviderCard.tsx +38 -33
- package/src/components/providers/ProviderLogo.tsx +6 -1
- package/src/components/providers/ProvidersPanel.tsx +144 -43
- package/src/components/providers/SettingsDialog.tsx +5 -3
- package/src/components/proxy-viewer/ConversationGroup.tsx +3 -3
- package/src/components/proxy-viewer/LogEntry.tsx +6 -3
- package/src/components/proxy-viewer/LogEntryHeader.tsx +3 -2
- package/src/lib/useProviders.ts +30 -0
- package/src/proxy/formats/anthropic/stream.ts +3 -2
- package/src/proxy/formats/openai/stream.ts +3 -2
- package/src/proxy/handler.ts +5 -0
- package/src/proxy/providers.ts +98 -0
- package/src/routes/__root.tsx +4 -1
- package/src/routes/api/providers.export.ts +26 -0
- package/src/routes/api/providers.import.ts +47 -0
- package/.output/public/assets/index-B3RwBPLW.css +0 -1
- package/.output/public/assets/index-C8o6bEv6.js +0 -97
- package/.output/public/assets/main-Bxc5pKCu.js +0 -17
- package/.output/server/_tanstack-start-manifest_v-CYKtU_9S.mjs +0 -4
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
var has = Object.prototype.hasOwnProperty;
|
|
2
|
+
function dequal(foo, bar) {
|
|
3
|
+
var ctor, len;
|
|
4
|
+
if (foo === bar) return true;
|
|
5
|
+
if (foo && bar && (ctor = foo.constructor) === bar.constructor) {
|
|
6
|
+
if (ctor === Date) return foo.getTime() === bar.getTime();
|
|
7
|
+
if (ctor === RegExp) return foo.toString() === bar.toString();
|
|
8
|
+
if (ctor === Array) {
|
|
9
|
+
if ((len = foo.length) === bar.length) {
|
|
10
|
+
while (len-- && dequal(foo[len], bar[len])) ;
|
|
11
|
+
}
|
|
12
|
+
return len === -1;
|
|
13
|
+
}
|
|
14
|
+
if (!ctor || typeof foo === "object") {
|
|
15
|
+
len = 0;
|
|
16
|
+
for (ctor in foo) {
|
|
17
|
+
if (has.call(foo, ctor) && ++len && !has.call(bar, ctor)) return false;
|
|
18
|
+
if (!(ctor in bar) || !dequal(foo[ctor], bar[ctor])) return false;
|
|
19
|
+
}
|
|
20
|
+
return Object.keys(bar).length === len;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
return foo !== foo && bar !== bar;
|
|
24
|
+
}
|
|
25
|
+
export {
|
|
26
|
+
dequal as d
|
|
27
|
+
};
|
|
@@ -75,7 +75,7 @@ const createLucideIcon = (iconName, iconNode) => {
|
|
|
75
75
|
Component.displayName = toPascalCase(iconName);
|
|
76
76
|
return Component;
|
|
77
77
|
};
|
|
78
|
-
const __iconNode$
|
|
78
|
+
const __iconNode$G = [
|
|
79
79
|
["path", { d: "M12 18V5", key: "adv99a" }],
|
|
80
80
|
["path", { d: "M15 13a4.17 4.17 0 0 1-3-4 4.17 4.17 0 0 1-3 4", key: "1e3is1" }],
|
|
81
81
|
["path", { d: "M17.598 6.5A3 3 0 1 0 12 5a3 3 0 1 0-5.598 1.5", key: "1gqd8o" }],
|
|
@@ -85,70 +85,70 @@ const __iconNode$F = [
|
|
|
85
85
|
["path", { d: "M6 18a4 4 0 0 1-2-7.464", key: "k1g0md" }],
|
|
86
86
|
["path", { d: "M6.003 5.125a4 4 0 0 0-2.526 5.77", key: "q97ue3" }]
|
|
87
87
|
];
|
|
88
|
-
const Brain = createLucideIcon("brain", __iconNode$
|
|
89
|
-
const __iconNode$
|
|
90
|
-
const Check = createLucideIcon("check", __iconNode$
|
|
91
|
-
const __iconNode$
|
|
92
|
-
const ChevronDown = createLucideIcon("chevron-down", __iconNode$
|
|
93
|
-
const __iconNode$
|
|
94
|
-
const ChevronRight = createLucideIcon("chevron-right", __iconNode$
|
|
95
|
-
const __iconNode$
|
|
96
|
-
const ChevronUp = createLucideIcon("chevron-up", __iconNode$
|
|
97
|
-
const __iconNode$
|
|
88
|
+
const Brain = createLucideIcon("brain", __iconNode$G);
|
|
89
|
+
const __iconNode$F = [["path", { d: "M20 6 9 17l-5-5", key: "1gmf2c" }]];
|
|
90
|
+
const Check = createLucideIcon("check", __iconNode$F);
|
|
91
|
+
const __iconNode$E = [["path", { d: "m6 9 6 6 6-6", key: "qrunsl" }]];
|
|
92
|
+
const ChevronDown = createLucideIcon("chevron-down", __iconNode$E);
|
|
93
|
+
const __iconNode$D = [["path", { d: "m9 18 6-6-6-6", key: "mthhwq" }]];
|
|
94
|
+
const ChevronRight = createLucideIcon("chevron-right", __iconNode$D);
|
|
95
|
+
const __iconNode$C = [["path", { d: "m18 15-6-6-6 6", key: "153udz" }]];
|
|
96
|
+
const ChevronUp = createLucideIcon("chevron-up", __iconNode$C);
|
|
97
|
+
const __iconNode$B = [
|
|
98
98
|
["path", { d: "m7 6 5 5 5-5", key: "1lc07p" }],
|
|
99
99
|
["path", { d: "m7 13 5 5 5-5", key: "1d48rs" }]
|
|
100
100
|
];
|
|
101
|
-
const ChevronsDown = createLucideIcon("chevrons-down", __iconNode$
|
|
102
|
-
const __iconNode$
|
|
101
|
+
const ChevronsDown = createLucideIcon("chevrons-down", __iconNode$B);
|
|
102
|
+
const __iconNode$A = [
|
|
103
103
|
["path", { d: "m17 11-5-5-5 5", key: "e8nh98" }],
|
|
104
104
|
["path", { d: "m17 18-5-5-5 5", key: "2avn1x" }]
|
|
105
105
|
];
|
|
106
|
-
const ChevronsUp = createLucideIcon("chevrons-up", __iconNode$
|
|
107
|
-
const __iconNode$
|
|
106
|
+
const ChevronsUp = createLucideIcon("chevrons-up", __iconNode$A);
|
|
107
|
+
const __iconNode$z = [
|
|
108
108
|
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
109
109
|
["line", { x1: "12", x2: "12", y1: "8", y2: "12", key: "1pkeuh" }],
|
|
110
110
|
["line", { x1: "12", x2: "12.01", y1: "16", y2: "16", key: "4dfq90" }]
|
|
111
111
|
];
|
|
112
|
-
const CircleAlert = createLucideIcon("circle-alert", __iconNode$
|
|
113
|
-
const __iconNode$
|
|
112
|
+
const CircleAlert = createLucideIcon("circle-alert", __iconNode$z);
|
|
113
|
+
const __iconNode$y = [
|
|
114
114
|
["path", { d: "M21.801 10A10 10 0 1 1 17 3.335", key: "yps3ct" }],
|
|
115
115
|
["path", { d: "m9 11 3 3L22 4", key: "1pflzl" }]
|
|
116
116
|
];
|
|
117
|
-
const CircleCheckBig = createLucideIcon("circle-check-big", __iconNode$
|
|
118
|
-
const __iconNode$
|
|
117
|
+
const CircleCheckBig = createLucideIcon("circle-check-big", __iconNode$y);
|
|
118
|
+
const __iconNode$x = [
|
|
119
119
|
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
120
120
|
["path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3", key: "1u773s" }],
|
|
121
121
|
["path", { d: "M12 17h.01", key: "p32p05" }]
|
|
122
122
|
];
|
|
123
|
-
const CircleQuestionMark = createLucideIcon("circle-question-mark", __iconNode$
|
|
124
|
-
const __iconNode$
|
|
123
|
+
const CircleQuestionMark = createLucideIcon("circle-question-mark", __iconNode$x);
|
|
124
|
+
const __iconNode$w = [
|
|
125
125
|
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
126
126
|
["rect", { x: "9", y: "9", width: "6", height: "6", rx: "1", key: "1ssd4o" }]
|
|
127
127
|
];
|
|
128
|
-
const CircleStop = createLucideIcon("circle-stop", __iconNode$
|
|
129
|
-
const __iconNode$
|
|
128
|
+
const CircleStop = createLucideIcon("circle-stop", __iconNode$w);
|
|
129
|
+
const __iconNode$v = [
|
|
130
130
|
["path", { d: "M12 6v6l4 2", key: "mmk7yg" }],
|
|
131
131
|
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }]
|
|
132
132
|
];
|
|
133
|
-
const Clock = createLucideIcon("clock", __iconNode$
|
|
134
|
-
const __iconNode$
|
|
133
|
+
const Clock = createLucideIcon("clock", __iconNode$v);
|
|
134
|
+
const __iconNode$u = [
|
|
135
135
|
["rect", { width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2", key: "17jyea" }],
|
|
136
136
|
["path", { d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2", key: "zix9uf" }]
|
|
137
137
|
];
|
|
138
|
-
const Copy = createLucideIcon("copy", __iconNode$
|
|
139
|
-
const __iconNode$
|
|
138
|
+
const Copy = createLucideIcon("copy", __iconNode$u);
|
|
139
|
+
const __iconNode$t = [
|
|
140
140
|
["path", { d: "M12 15V3", key: "m9g1x1" }],
|
|
141
141
|
["path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4", key: "ih7n3h" }],
|
|
142
142
|
["path", { d: "m7 10 5 5 5-5", key: "brsn70" }]
|
|
143
143
|
];
|
|
144
|
-
const Download = createLucideIcon("download", __iconNode$
|
|
145
|
-
const __iconNode$
|
|
144
|
+
const Download = createLucideIcon("download", __iconNode$t);
|
|
145
|
+
const __iconNode$s = [
|
|
146
146
|
["path", { d: "M15 3h6v6", key: "1q9fwt" }],
|
|
147
147
|
["path", { d: "M10 14 21 3", key: "gplh6r" }],
|
|
148
148
|
["path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6", key: "a6xqqp" }]
|
|
149
149
|
];
|
|
150
|
-
const ExternalLink = createLucideIcon("external-link", __iconNode$
|
|
151
|
-
const __iconNode$
|
|
150
|
+
const ExternalLink = createLucideIcon("external-link", __iconNode$s);
|
|
151
|
+
const __iconNode$r = [
|
|
152
152
|
[
|
|
153
153
|
"path",
|
|
154
154
|
{
|
|
@@ -166,8 +166,8 @@ const __iconNode$q = [
|
|
|
166
166
|
],
|
|
167
167
|
["path", { d: "m2 2 20 20", key: "1ooewy" }]
|
|
168
168
|
];
|
|
169
|
-
const EyeOff = createLucideIcon("eye-off", __iconNode$
|
|
170
|
-
const __iconNode$
|
|
169
|
+
const EyeOff = createLucideIcon("eye-off", __iconNode$r);
|
|
170
|
+
const __iconNode$q = [
|
|
171
171
|
[
|
|
172
172
|
"path",
|
|
173
173
|
{
|
|
@@ -177,8 +177,8 @@ const __iconNode$p = [
|
|
|
177
177
|
],
|
|
178
178
|
["circle", { cx: "12", cy: "12", r: "3", key: "1v7zrd" }]
|
|
179
179
|
];
|
|
180
|
-
const Eye = createLucideIcon("eye", __iconNode$
|
|
181
|
-
const __iconNode$
|
|
180
|
+
const Eye = createLucideIcon("eye", __iconNode$q);
|
|
181
|
+
const __iconNode$p = [
|
|
182
182
|
[
|
|
183
183
|
"path",
|
|
184
184
|
{
|
|
@@ -190,26 +190,26 @@ const __iconNode$o = [
|
|
|
190
190
|
["path", { d: "m8 16 2-2-2-2", key: "10vzyd" }],
|
|
191
191
|
["path", { d: "M12 18h4", key: "1wd2n7" }]
|
|
192
192
|
];
|
|
193
|
-
const FileTerminal = createLucideIcon("file-terminal", __iconNode$
|
|
194
|
-
const __iconNode$
|
|
193
|
+
const FileTerminal = createLucideIcon("file-terminal", __iconNode$p);
|
|
194
|
+
const __iconNode$o = [
|
|
195
195
|
["path", { d: "m12 14 4-4", key: "9kzdfg" }],
|
|
196
196
|
["path", { d: "M3.34 19a10 10 0 1 1 17.32 0", key: "19p75a" }]
|
|
197
197
|
];
|
|
198
|
-
const Gauge = createLucideIcon("gauge", __iconNode$
|
|
199
|
-
const __iconNode$
|
|
198
|
+
const Gauge = createLucideIcon("gauge", __iconNode$o);
|
|
199
|
+
const __iconNode$n = [
|
|
200
200
|
["circle", { cx: "12", cy: "12", r: "10", key: "1mglay" }],
|
|
201
201
|
["path", { d: "M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20", key: "13o1zl" }],
|
|
202
202
|
["path", { d: "M2 12h20", key: "9i4pu4" }]
|
|
203
203
|
];
|
|
204
|
-
const Globe = createLucideIcon("globe", __iconNode$
|
|
205
|
-
const __iconNode$
|
|
204
|
+
const Globe = createLucideIcon("globe", __iconNode$n);
|
|
205
|
+
const __iconNode$m = [
|
|
206
206
|
["rect", { width: "7", height: "7", x: "3", y: "3", rx: "1", key: "1g98yp" }],
|
|
207
207
|
["rect", { width: "7", height: "7", x: "14", y: "3", rx: "1", key: "6d4xhi" }],
|
|
208
208
|
["rect", { width: "7", height: "7", x: "14", y: "14", rx: "1", key: "nxv5o0" }],
|
|
209
209
|
["rect", { width: "7", height: "7", x: "3", y: "14", rx: "1", key: "1bb6yr" }]
|
|
210
210
|
];
|
|
211
|
-
const LayoutGrid = createLucideIcon("layout-grid", __iconNode$
|
|
212
|
-
const __iconNode$
|
|
211
|
+
const LayoutGrid = createLucideIcon("layout-grid", __iconNode$m);
|
|
212
|
+
const __iconNode$l = [
|
|
213
213
|
["path", { d: "M3 5h.01", key: "18ugdj" }],
|
|
214
214
|
["path", { d: "M3 12h.01", key: "nlz23k" }],
|
|
215
215
|
["path", { d: "M3 19h.01", key: "noohij" }],
|
|
@@ -217,15 +217,15 @@ const __iconNode$k = [
|
|
|
217
217
|
["path", { d: "M8 12h13", key: "1za7za" }],
|
|
218
218
|
["path", { d: "M8 19h13", key: "m83p4d" }]
|
|
219
219
|
];
|
|
220
|
-
const List = createLucideIcon("list", __iconNode$
|
|
221
|
-
const __iconNode$
|
|
222
|
-
const LoaderCircle = createLucideIcon("loader-circle", __iconNode$
|
|
223
|
-
const __iconNode$
|
|
220
|
+
const List = createLucideIcon("list", __iconNode$l);
|
|
221
|
+
const __iconNode$k = [["path", { d: "M21 12a9 9 0 1 1-6.219-8.56", key: "13zald" }]];
|
|
222
|
+
const LoaderCircle = createLucideIcon("loader-circle", __iconNode$k);
|
|
223
|
+
const __iconNode$j = [
|
|
224
224
|
["rect", { width: "18", height: "11", x: "3", y: "11", rx: "2", ry: "2", key: "1w4ew1" }],
|
|
225
225
|
["path", { d: "M7 11V7a5 5 0 0 1 10 0v4", key: "fwvmzm" }]
|
|
226
226
|
];
|
|
227
|
-
const Lock = createLucideIcon("lock", __iconNode$
|
|
228
|
-
const __iconNode$
|
|
227
|
+
const Lock = createLucideIcon("lock", __iconNode$j);
|
|
228
|
+
const __iconNode$i = [
|
|
229
229
|
[
|
|
230
230
|
"path",
|
|
231
231
|
{
|
|
@@ -234,10 +234,10 @@ const __iconNode$h = [
|
|
|
234
234
|
}
|
|
235
235
|
]
|
|
236
236
|
];
|
|
237
|
-
const MessageSquare = createLucideIcon("message-square", __iconNode$
|
|
238
|
-
const __iconNode$
|
|
239
|
-
const Minus = createLucideIcon("minus", __iconNode$
|
|
240
|
-
const __iconNode$
|
|
237
|
+
const MessageSquare = createLucideIcon("message-square", __iconNode$i);
|
|
238
|
+
const __iconNode$h = [["path", { d: "M5 12h14", key: "1ays0h" }]];
|
|
239
|
+
const Minus = createLucideIcon("minus", __iconNode$h);
|
|
240
|
+
const __iconNode$g = [
|
|
241
241
|
[
|
|
242
242
|
"path",
|
|
243
243
|
{
|
|
@@ -247,38 +247,38 @@ const __iconNode$f = [
|
|
|
247
247
|
],
|
|
248
248
|
["path", { d: "m15 5 4 4", key: "1mk7zo" }]
|
|
249
249
|
];
|
|
250
|
-
const Pencil = createLucideIcon("pencil", __iconNode$
|
|
251
|
-
const __iconNode$
|
|
250
|
+
const Pencil = createLucideIcon("pencil", __iconNode$g);
|
|
251
|
+
const __iconNode$f = [
|
|
252
252
|
["path", { d: "M5 12h14", key: "1ays0h" }],
|
|
253
253
|
["path", { d: "M12 5v14", key: "s699le" }]
|
|
254
254
|
];
|
|
255
|
-
const Plus = createLucideIcon("plus", __iconNode$
|
|
256
|
-
const __iconNode$
|
|
255
|
+
const Plus = createLucideIcon("plus", __iconNode$f);
|
|
256
|
+
const __iconNode$e = [
|
|
257
257
|
["path", { d: "M16.247 7.761a6 6 0 0 1 0 8.478", key: "1fwjs5" }],
|
|
258
258
|
["path", { d: "M19.075 4.933a10 10 0 0 1 0 14.134", key: "ehdyv1" }],
|
|
259
259
|
["path", { d: "M4.925 19.067a10 10 0 0 1 0-14.134", key: "1q22gi" }],
|
|
260
260
|
["path", { d: "M7.753 16.239a6 6 0 0 1 0-8.478", key: "r2q7qm" }],
|
|
261
261
|
["circle", { cx: "12", cy: "12", r: "2", key: "1c9p78" }]
|
|
262
262
|
];
|
|
263
|
-
const Radio = createLucideIcon("radio", __iconNode$
|
|
264
|
-
const __iconNode$
|
|
263
|
+
const Radio = createLucideIcon("radio", __iconNode$e);
|
|
264
|
+
const __iconNode$d = [
|
|
265
265
|
["path", { d: "M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8", key: "1357e3" }],
|
|
266
266
|
["path", { d: "M3 3v5h5", key: "1xhq8a" }]
|
|
267
267
|
];
|
|
268
|
-
const RotateCcw = createLucideIcon("rotate-ccw", __iconNode$
|
|
269
|
-
const __iconNode$
|
|
268
|
+
const RotateCcw = createLucideIcon("rotate-ccw", __iconNode$d);
|
|
269
|
+
const __iconNode$c = [
|
|
270
270
|
["path", { d: "M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8", key: "1p45f6" }],
|
|
271
271
|
["path", { d: "M21 3v5h-5", key: "1q7to0" }]
|
|
272
272
|
];
|
|
273
|
-
const RotateCw = createLucideIcon("rotate-cw", __iconNode$
|
|
274
|
-
const __iconNode$
|
|
273
|
+
const RotateCw = createLucideIcon("rotate-cw", __iconNode$c);
|
|
274
|
+
const __iconNode$b = [
|
|
275
275
|
["rect", { width: "20", height: "8", x: "2", y: "2", rx: "2", ry: "2", key: "ngkwjq" }],
|
|
276
276
|
["rect", { width: "20", height: "8", x: "2", y: "14", rx: "2", ry: "2", key: "iecqi9" }],
|
|
277
277
|
["line", { x1: "6", x2: "6.01", y1: "6", y2: "6", key: "16zg32" }],
|
|
278
278
|
["line", { x1: "6", x2: "6.01", y1: "18", y2: "18", key: "nzw8ys" }]
|
|
279
279
|
];
|
|
280
|
-
const Server = createLucideIcon("server", __iconNode$
|
|
281
|
-
const __iconNode$
|
|
280
|
+
const Server = createLucideIcon("server", __iconNode$b);
|
|
281
|
+
const __iconNode$a = [
|
|
282
282
|
[
|
|
283
283
|
"path",
|
|
284
284
|
{
|
|
@@ -288,21 +288,21 @@ const __iconNode$9 = [
|
|
|
288
288
|
],
|
|
289
289
|
["circle", { cx: "12", cy: "12", r: "3", key: "1v7zrd" }]
|
|
290
290
|
];
|
|
291
|
-
const Settings = createLucideIcon("settings", __iconNode$
|
|
292
|
-
const __iconNode$
|
|
291
|
+
const Settings = createLucideIcon("settings", __iconNode$a);
|
|
292
|
+
const __iconNode$9 = [
|
|
293
293
|
["path", { d: "M12 19h8", key: "baeox8" }],
|
|
294
294
|
["path", { d: "m4 17 6-6-6-6", key: "1yngyt" }]
|
|
295
295
|
];
|
|
296
|
-
const Terminal = createLucideIcon("terminal", __iconNode$
|
|
297
|
-
const __iconNode$
|
|
296
|
+
const Terminal = createLucideIcon("terminal", __iconNode$9);
|
|
297
|
+
const __iconNode$8 = [
|
|
298
298
|
["path", { d: "M10 11v6", key: "nco0om" }],
|
|
299
299
|
["path", { d: "M14 11v6", key: "outv1u" }],
|
|
300
300
|
["path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6", key: "miytrc" }],
|
|
301
301
|
["path", { d: "M3 6h18", key: "d0wm0j" }],
|
|
302
302
|
["path", { d: "M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2", key: "e791ji" }]
|
|
303
303
|
];
|
|
304
|
-
const Trash2 = createLucideIcon("trash-2", __iconNode$
|
|
305
|
-
const __iconNode$
|
|
304
|
+
const Trash2 = createLucideIcon("trash-2", __iconNode$8);
|
|
305
|
+
const __iconNode$7 = [
|
|
306
306
|
[
|
|
307
307
|
"path",
|
|
308
308
|
{
|
|
@@ -313,7 +313,13 @@ const __iconNode$6 = [
|
|
|
313
313
|
["path", { d: "M12 9v4", key: "juzpu7" }],
|
|
314
314
|
["path", { d: "M12 17h.01", key: "p32p05" }]
|
|
315
315
|
];
|
|
316
|
-
const TriangleAlert = createLucideIcon("triangle-alert", __iconNode$
|
|
316
|
+
const TriangleAlert = createLucideIcon("triangle-alert", __iconNode$7);
|
|
317
|
+
const __iconNode$6 = [
|
|
318
|
+
["path", { d: "M12 3v12", key: "1x0j5s" }],
|
|
319
|
+
["path", { d: "m17 8-5-5-5 5", key: "7q97r8" }],
|
|
320
|
+
["path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4", key: "ih7n3h" }]
|
|
321
|
+
];
|
|
322
|
+
const Upload = createLucideIcon("upload", __iconNode$6);
|
|
317
323
|
const __iconNode$5 = [
|
|
318
324
|
["path", { d: "M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2", key: "975kel" }],
|
|
319
325
|
["circle", { cx: "12", cy: "7", r: "4", key: "17ys0d" }]
|
|
@@ -362,6 +368,7 @@ const __iconNode = [
|
|
|
362
368
|
];
|
|
363
369
|
const Zap = createLucideIcon("zap", __iconNode);
|
|
364
370
|
export {
|
|
371
|
+
Terminal as A,
|
|
365
372
|
Brain as B,
|
|
366
373
|
ChevronDown as C,
|
|
367
374
|
Download as D,
|
|
@@ -374,7 +381,7 @@ export {
|
|
|
374
381
|
RotateCcw as R,
|
|
375
382
|
Settings as S,
|
|
376
383
|
Trash2 as T,
|
|
377
|
-
|
|
384
|
+
Upload as U,
|
|
378
385
|
Wrench as W,
|
|
379
386
|
X,
|
|
380
387
|
Zap as Z,
|
|
@@ -386,22 +393,22 @@ export {
|
|
|
386
393
|
ChevronRight as f,
|
|
387
394
|
Clock as g,
|
|
388
395
|
LoaderCircle as h,
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
396
|
+
User as i,
|
|
397
|
+
Radio as j,
|
|
398
|
+
EyeOff as k,
|
|
399
|
+
Eye as l,
|
|
400
|
+
RotateCw as m,
|
|
401
|
+
Pencil as n,
|
|
402
|
+
TriangleAlert as o,
|
|
403
|
+
Minus as p,
|
|
404
|
+
CircleCheckBig as q,
|
|
405
|
+
CircleStop as r,
|
|
406
|
+
CircleQuestionMark as s,
|
|
407
|
+
Server as t,
|
|
408
|
+
Gauge as u,
|
|
409
|
+
Lock as v,
|
|
410
|
+
Wifi as w,
|
|
411
|
+
WifiOff as x,
|
|
412
|
+
ChevronsUp as y,
|
|
413
|
+
ChevronsDown as z
|
|
407
414
|
};
|