@checkstack/frontend 0.3.15 → 0.3.17

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/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # @checkstack/frontend
2
2
 
3
+ ## 0.3.17
4
+
5
+ ### Patch Changes
6
+
7
+ - 3da7582: Fix favicon not loading in production container and add NotFound page
8
+
9
+ - **Backend**: Fix static file serving so root-level files like `/favicon.svg` are served from the dist directory before the SPA fallback catches them
10
+ - **UI**: Add `NotFound` component with stacked-checkmark logo, physics-inspired falling "4" animation, and low-power device fallback
11
+ - **Frontend**: Add catch-all `*` route to display the NotFound page for unmatched routes, and add the Checkstack logo to the navbar
12
+ - **Favicon**: Redesign with stacked checkmarks in the brand purple/indigo palette
13
+
14
+ - Updated dependencies [3da7582]
15
+ - @checkstack/ui@1.5.0
16
+ - @checkstack/about-frontend@0.2.10
17
+ - @checkstack/announcement-frontend@0.2.10
18
+ - @checkstack/auth-frontend@0.5.27
19
+ - @checkstack/catalog-frontend@0.8.1
20
+ - @checkstack/command-frontend@0.2.29
21
+ - @checkstack/dependency-frontend@0.2.15
22
+
23
+ ## 0.3.16
24
+
25
+ ### Patch Changes
26
+
27
+ - f8c8625: Added SVG favicon to frontend application
28
+
3
29
  ## 0.3.15
4
30
 
5
31
  ### Patch Changes
package/index.html CHANGED
@@ -5,6 +5,7 @@
5
5
  <meta charset="UTF-8" />
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
7
  <title>Checkstack Health Monitor</title>
8
+ <link rel="icon" type="image/svg+xml" href="/favicon.svg" />
8
9
  <!-- Import Map for runtime plugins to share React with host app -->
9
10
  <!-- Runtime plugins use standard `import React from "react"` and browser resolves via this map -->
10
11
  <script type="importmap">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/frontend",
3
- "version": "0.3.15",
3
+ "version": "0.3.17",
4
4
  "checkstack": {
5
5
  "type": "frontend"
6
6
  },
@@ -0,0 +1,3 @@
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c085b655ed5ca12cd424c0444b86165cc67223bcc440b89cf4654ec989777668
3
+ size 1098
package/src/App.tsx CHANGED
@@ -33,6 +33,7 @@ import { CoreFetchApi } from "./apis/fetch-api";
33
33
  import { CoreRpcApi } from "./apis/rpc-api";
34
34
  import {
35
35
  AccessDenied,
36
+ NotFound,
36
37
  LoadingSpinner,
37
38
  ToastProvider,
38
39
  AmbientBackground,
@@ -144,7 +145,8 @@ function AppContent() {
144
145
  <div className="flex items-center justify-between gap-4">
145
146
  {/* Left: Logo and main navigation */}
146
147
  <div className="flex items-center gap-8 flex-shrink-0">
147
- <Link to="/">
148
+ <Link to="/" className="flex items-center gap-2">
149
+ <img src="/favicon.svg" alt="" className="w-7 h-7" />
148
150
  <h1 className="text-xl font-bold text-primary">Checkstack</h1>
149
151
  </Link>
150
152
  <nav className="hidden md:flex gap-1">
@@ -183,6 +185,8 @@ function AppContent() {
183
185
  }
184
186
  />
185
187
  ))}
188
+ {/* Catch-all: show Not Found for unmatched routes */}
189
+ <Route path="*" element={<NotFound />} />
186
190
  </Routes>
187
191
  </main>
188
192
  </AmbientBackground>
package/public/.gitkeep DELETED
File without changes