From ab75975eab00e2eff7cb959395bb89df8b866ecd Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Thu, 16 Apr 2026 21:14:12 -0600 Subject: [PATCH 1/5] feat: Remove tsconfig.tsbuildinfo file as part of project cleanup --- tsconfig.tsbuildinfo | 1 - 1 file changed, 1 deletion(-) delete mode 100644 tsconfig.tsbuildinfo diff --git a/tsconfig.tsbuildinfo b/tsconfig.tsbuildinfo deleted file mode 100644 index 1b6a8f0..0000000 --- a/tsconfig.tsbuildinfo +++ /dev/null @@ -1 +0,0 @@ -{"root":["./src/app.test.tsx","./src/app.tsx","./src/index.tsx","./src/react-app-env.d.ts","./src/reportwebvitals.ts","./src/setuptests.ts","./src/features/apipathdetaildrawer.tsx","./src/features/apipaths.tsx","./src/features/configfile.tsx","./src/features/devicedetail.tsx","./src/features/devicelist.tsx","./src/features/errorboundary.tsx","./src/features/errorbox.tsx","./src/features/initializationexceptions.tsx","./src/features/loginform.tsx","./src/features/mainlayout.tsx","./src/features/mobilecontrol.tsx","./src/features/requireauth.tsx","./src/features/routing.tsx","./src/features/routingdevicenode.tsx","./src/features/tielineedge.tsx","./src/features/topnav.tsx","./src/features/types.tsx","./src/features/versions.tsx","./src/features/debugconsole/consolewindow.tsx","./src/features/debugconsole/debugconsole.tsx","./src/features/debugconsole/debugfilters.tsx","./src/features/debugconsole/devicefilterdropdown.tsx","./src/features/debugconsole/logmessagedetaildrawer.tsx","./src/features/debugconsole/minimumlogleveldropdown.tsx","./src/features/debugconsole/restartconfirmmodal.tsx","./src/features/debugconsole/debugconsts.ts","./src/features/debugconsole/hooks/usefilteredmessages.ts","./src/services/httpservice.ts","./src/shared/filterclearbutton.tsx","./src/shared/filterdropdownsearchparams.tsx","./src/shared/filtersearchtext.tsx","./src/shared/headerscrollerfooter.tsx","./src/shared/listfiltersheader.tsx","./src/shared/tablecellspacer.tsx","./src/shared/functions/meetsminimumversion.ts","./src/shared/hooks/useappparams.ts","./src/shared/icons/objecticons.ts","./src/shared/icons/othericons.ts","./src/shared/icons/index.tsx","./src/shared/types/idlabel.ts","./src/shared/types/logmessage.ts","./src/store/apislice.ts","./src/store/hooks.ts","./src/store/store.ts","./src/store/websocketmiddleware.ts","./src/store/websocketslice.ts","./src/store/auth/authselectors.ts","./src/store/auth/authslice.ts","./src/store/commonui/commonuihooks.ts","./src/store/commonui/commonuiselectors.ts","./src/store/commonui/commonuislice.ts","./src/store/commonui/commonuistate.ts","./src/store/debugconsole/debugconsoleselectors.ts","./src/store/debugconsole/debugconsoleslice.ts","./vite.config.ts"],"version":"6.0.2"} \ No newline at end of file From 9c7994712b922c2a5e354c03c44abcec6856bbbd Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Thu, 16 Apr 2026 21:19:37 -0600 Subject: [PATCH 2/5] feat: Update routing for login and enhance LoginForm UI with title --- src/App.tsx | 6 ++---- src/features/LoginForm.tsx | 3 ++- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index f150db5..03a8f52 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -52,12 +52,10 @@ function App() { } /> - }> - } /> - + } /> + } /> }> - } /> }> } /> } /> diff --git a/src/features/LoginForm.tsx b/src/features/LoginForm.tsx index 8e0d44f..2153e5b 100644 --- a/src/features/LoginForm.tsx +++ b/src/features/LoginForm.tsx @@ -68,7 +68,8 @@ const LoginForm = () => { } return ( -
+
+

PepperDash Essentials Developer Tools

Sign In

{error && {error}} From 86a27c31462b797a52cb1a277d1eeb20f999a4b7 Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Fri, 1 May 2026 08:50:19 -0600 Subject: [PATCH 3/5] feat: Enhance navigation links with AppNavLink component and add disabled state styling --- src/features/DebugConsole/DebugFilters.tsx | 2 +- src/features/InitializationExceptions.tsx | 12 +-- src/features/LoginForm.tsx | 6 +- src/features/MobileControl.tsx | 1 - src/features/Routing.tsx | 15 ++- src/features/TopNav.tsx | 120 +++++---------------- src/styles.scss | 4 + 7 files changed, 54 insertions(+), 106 deletions(-) diff --git a/src/features/DebugConsole/DebugFilters.tsx b/src/features/DebugConsole/DebugFilters.tsx index 36ae562..1ca03b1 100644 --- a/src/features/DebugConsole/DebugFilters.tsx +++ b/src/features/DebugConsole/DebugFilters.tsx @@ -33,7 +33,7 @@ export const DebugFilters = () => {