@checkstack/dashboard-frontend 0.3.7 → 0.3.9

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,40 @@
1
1
  # @checkstack/dashboard-frontend
2
2
 
3
+ ## 0.3.9
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [ac3a4cf]
8
+ - Updated dependencies [db1f56f]
9
+ - Updated dependencies [538e45d]
10
+ - @checkstack/healthcheck-common@0.5.0
11
+ - @checkstack/common@0.6.0
12
+ - @checkstack/ui@0.4.1
13
+ - @checkstack/auth-frontend@0.5.4
14
+ - @checkstack/catalog-common@1.2.4
15
+ - @checkstack/catalog-frontend@0.3.8
16
+ - @checkstack/command-common@0.2.3
17
+ - @checkstack/command-frontend@0.2.7
18
+ - @checkstack/frontend-api@0.3.3
19
+ - @checkstack/incident-common@0.3.4
20
+ - @checkstack/maintenance-common@0.4.2
21
+ - @checkstack/notification-common@0.2.3
22
+ - @checkstack/queue-frontend@0.2.7
23
+ - @checkstack/signal-frontend@0.0.10
24
+
25
+ ## 0.3.8
26
+
27
+ ### Patch Changes
28
+
29
+ - 1f1f6c2: Fixed layout issue where multiple system status badges would push the system name out of view on dashboard cards
30
+ - Updated dependencies [d1324e6]
31
+ - Updated dependencies [2c0822d]
32
+ - @checkstack/ui@0.4.0
33
+ - @checkstack/auth-frontend@0.5.3
34
+ - @checkstack/catalog-frontend@0.3.7
35
+ - @checkstack/command-frontend@0.2.6
36
+ - @checkstack/queue-frontend@0.2.6
37
+
3
38
  ## 0.3.7
4
39
 
5
40
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/dashboard-frontend",
3
- "version": "0.3.7",
3
+ "version": "0.3.9",
4
4
  "type": "module",
5
5
  "main": "src/index.tsx",
6
6
  "scripts": {
package/src/Dashboard.tsx CHANGED
@@ -309,18 +309,20 @@ export const Dashboard: React.FC = () => {
309
309
  <button
310
310
  key={system.id}
311
311
  onClick={() => handleSystemClick(system.id)}
312
- className="flex items-center justify-between gap-3 rounded-lg border border-border bg-card px-4 py-3 transition-all cursor-pointer hover:border-border/80 hover:shadow-sm text-left"
312
+ className="flex items-center gap-3 rounded-lg border border-border bg-card px-4 py-3 transition-all cursor-pointer hover:border-border/80 hover:shadow-sm text-left"
313
313
  >
314
- <div className="flex items-center gap-3 min-w-0 flex-1">
314
+ <div className="flex items-center gap-3 min-w-24 flex-shrink-0">
315
315
  <Activity className="h-4 w-4 text-muted-foreground flex-shrink-0" />
316
316
  <p className="text-sm font-medium text-foreground truncate">
317
317
  {system.name}
318
318
  </p>
319
319
  </div>
320
- <ExtensionSlot
321
- slot={SystemStateBadgesSlot}
322
- context={{ system }}
323
- />
320
+ <div className="flex items-center gap-2 flex-wrap flex-1 justify-end">
321
+ <ExtensionSlot
322
+ slot={SystemStateBadgesSlot}
323
+ context={{ system }}
324
+ />
325
+ </div>
324
326
  <ChevronRight className="h-4 w-4 text-muted-foreground flex-shrink-0" />
325
327
  </button>
326
328
  ))}