@checkstack/dashboard-frontend 0.3.6 → 0.3.8
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 +37 -0
- package/package.json +1 -1
- package/src/Dashboard.tsx +8 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
1
1
|
# @checkstack/dashboard-frontend
|
|
2
2
|
|
|
3
|
+
## 0.3.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1f1f6c2: Fixed layout issue where multiple system status badges would push the system name out of view on dashboard cards
|
|
8
|
+
- Updated dependencies [d1324e6]
|
|
9
|
+
- Updated dependencies [2c0822d]
|
|
10
|
+
- @checkstack/ui@0.4.0
|
|
11
|
+
- @checkstack/auth-frontend@0.5.3
|
|
12
|
+
- @checkstack/catalog-frontend@0.3.7
|
|
13
|
+
- @checkstack/command-frontend@0.2.6
|
|
14
|
+
- @checkstack/queue-frontend@0.2.6
|
|
15
|
+
|
|
16
|
+
## 0.3.7
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies [8a87cd4]
|
|
21
|
+
- Updated dependencies [8a87cd4]
|
|
22
|
+
- Updated dependencies [8a87cd4]
|
|
23
|
+
- Updated dependencies [8a87cd4]
|
|
24
|
+
- Updated dependencies [8a87cd4]
|
|
25
|
+
- @checkstack/catalog-common@1.2.3
|
|
26
|
+
- @checkstack/common@0.5.0
|
|
27
|
+
- @checkstack/healthcheck-common@0.4.2
|
|
28
|
+
- @checkstack/incident-common@0.3.3
|
|
29
|
+
- @checkstack/maintenance-common@0.4.1
|
|
30
|
+
- @checkstack/auth-frontend@0.5.2
|
|
31
|
+
- @checkstack/catalog-frontend@0.3.6
|
|
32
|
+
- @checkstack/command-common@0.2.2
|
|
33
|
+
- @checkstack/command-frontend@0.2.5
|
|
34
|
+
- @checkstack/frontend-api@0.3.2
|
|
35
|
+
- @checkstack/notification-common@0.2.2
|
|
36
|
+
- @checkstack/queue-frontend@0.2.5
|
|
37
|
+
- @checkstack/ui@0.3.1
|
|
38
|
+
- @checkstack/signal-frontend@0.0.9
|
|
39
|
+
|
|
3
40
|
## 0.3.6
|
|
4
41
|
|
|
5
42
|
### Patch Changes
|
package/package.json
CHANGED
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
|
|
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-
|
|
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
|
-
<
|
|
321
|
-
|
|
322
|
-
|
|
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
|
))}
|