fluxy-bot 0.11.0 → 0.11.1
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fluxy-bot",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.1",
|
|
4
4
|
"releaseNotes": [
|
|
5
5
|
"Adding a way for users to claim their fluxies on the fluxy.bot dashboard",
|
|
6
6
|
"2. ",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"date-fns": "^4.1.0",
|
|
63
63
|
"express": "^5.2.1",
|
|
64
64
|
"framer-motion": "^12.34.3",
|
|
65
|
-
"lucide-react": "^
|
|
65
|
+
"lucide-react": "^1.7.0",
|
|
66
66
|
"otpauth": "^9.3.6",
|
|
67
67
|
"picocolors": "^1.1.1",
|
|
68
68
|
"postcss": "^8.5.6",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { useState, useRef, useEffect, type KeyboardEvent } from 'react';
|
|
2
|
-
import { ArrowRight, ArrowLeft, LoaderCircle, ExternalLink, ClipboardPaste, RefreshCw, Check, ChevronDown, Mic, Eye, EyeOff, Shield, ShieldCheck, ShieldOff, Copy, Smartphone, Globe, Wifi, WifiOff,
|
|
2
|
+
import { ArrowRight, ArrowLeft, LoaderCircle, ExternalLink, ClipboardPaste, RefreshCw, Check, ChevronDown, Mic, Eye, EyeOff, Shield, ShieldCheck, ShieldOff, Copy, Smartphone, Globe, Wifi, WifiOff, TriangleAlert } from 'lucide-react';
|
|
3
3
|
import { motion, AnimatePresence } from 'framer-motion';
|
|
4
4
|
|
|
5
5
|
/* ── Access detection ── */
|
|
@@ -890,7 +890,7 @@ export default function OnboardWizard({ onComplete, isInitialSetup = false, onSa
|
|
|
890
890
|
<div className="mt-4 space-y-3">
|
|
891
891
|
<div className="bg-amber-500/8 border border-amber-500/20 rounded-xl px-4 py-3">
|
|
892
892
|
<div className="flex items-start gap-2">
|
|
893
|
-
<
|
|
893
|
+
<TriangleAlert className="h-4 w-4 text-amber-400 shrink-0 mt-0.5" />
|
|
894
894
|
<div>
|
|
895
895
|
<p className="text-amber-400/90 text-[13px] font-medium">Enable public access?</p>
|
|
896
896
|
<p className="text-amber-400/60 text-[12px] mt-1 leading-relaxed">
|
|
@@ -1354,7 +1354,7 @@ export default function OnboardWizard({ onComplete, isInitialSetup = false, onSa
|
|
|
1354
1354
|
<div className="mt-3 space-y-3">
|
|
1355
1355
|
<div className="bg-amber-500/8 border border-amber-500/20 rounded-xl px-4 py-3">
|
|
1356
1356
|
<div className="flex items-start gap-2">
|
|
1357
|
-
<
|
|
1357
|
+
<TriangleAlert className="h-4 w-4 text-amber-400 shrink-0 mt-0.5" />
|
|
1358
1358
|
<div>
|
|
1359
1359
|
<p className="text-amber-400/90 text-[13px] font-medium">Switch to private network only?</p>
|
|
1360
1360
|
<p className="text-amber-400/60 text-[12px] mt-1 leading-relaxed">
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React, { useEffect, useRef, useState } from 'react';
|
|
2
2
|
import ReactDOM from 'react-dom/client';
|
|
3
|
-
import { ArrowLeft,
|
|
3
|
+
import { ArrowLeft, EllipsisVertical, WandSparkles, Download, X, Share, Bell, BellRing, BellOff } from 'lucide-react';
|
|
4
4
|
import { WsClient } from './src/lib/ws-client';
|
|
5
5
|
import { useFluxyChat } from './src/hooks/useFluxyChat';
|
|
6
6
|
import OnboardWizard from './OnboardWizard';
|
|
@@ -334,7 +334,7 @@ function FluxyApp() {
|
|
|
334
334
|
onClick={() => setMenuOpen((v) => !v)}
|
|
335
335
|
className="flex items-center justify-center h-7 w-7 rounded-full text-muted-foreground hover:text-foreground hover:bg-white/[0.06] transition-colors"
|
|
336
336
|
>
|
|
337
|
-
<
|
|
337
|
+
<EllipsisVertical className="h-4 w-4" />
|
|
338
338
|
</button>
|
|
339
339
|
{menuOpen && (
|
|
340
340
|
<div className="absolute right-0 top-full mt-1 min-w-[160px] rounded-md border border-border bg-popover py-1 shadow-lg z-50">
|
|
@@ -342,7 +342,7 @@ function FluxyApp() {
|
|
|
342
342
|
onClick={() => { setShowWizard(true); setMenuOpen(false); }}
|
|
343
343
|
className="flex w-full items-center gap-2 px-3 py-2 text-sm text-muted-foreground hover:text-foreground hover:bg-white/[0.06] transition-colors"
|
|
344
344
|
>
|
|
345
|
-
<
|
|
345
|
+
<WandSparkles className="h-4 w-4" />
|
|
346
346
|
Settings
|
|
347
347
|
</button>
|
|
348
348
|
{isMobile && !isStandalone && (
|
|
@@ -2,9 +2,9 @@ import { useState } from 'react';
|
|
|
2
2
|
import {
|
|
3
3
|
LayoutDashboard,
|
|
4
4
|
AppWindow,
|
|
5
|
-
|
|
5
|
+
ChartColumn,
|
|
6
6
|
Search,
|
|
7
|
-
|
|
7
|
+
CircleHelp,
|
|
8
8
|
ChevronDown,
|
|
9
9
|
} from 'lucide-react';
|
|
10
10
|
import { cn } from '@/lib/utils';
|
|
@@ -66,9 +66,9 @@ export default function Sidebar() {
|
|
|
66
66
|
)}
|
|
67
67
|
</div>
|
|
68
68
|
|
|
69
|
-
<NavButton icon={
|
|
69
|
+
<NavButton icon={ChartColumn} label="Reports" />
|
|
70
70
|
<NavButton icon={Search} label="Research" />
|
|
71
|
-
<NavButton icon={
|
|
71
|
+
<NavButton icon={CircleHelp} label="What Else?" />
|
|
72
72
|
</nav>
|
|
73
73
|
|
|
74
74
|
{/* Bottom spacer */}
|