@checkstack/catalog-common 1.3.1 → 1.4.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/CHANGELOG.md CHANGED
@@ -1,5 +1,39 @@
1
1
  # @checkstack/catalog-common
2
2
 
3
+ ## 1.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [889dd8c]
8
+ - @checkstack/auth-common@0.6.2
9
+
10
+ ## 1.4.0
11
+
12
+ ### Minor Changes
13
+
14
+ - bb1fea0: Redesign system detail page with hero banner, two-column layout, plugin metric tiles, and health check slide-over drawer.
15
+
16
+ ### New Components
17
+
18
+ - **MetricTile** (`@checkstack/ui`): Compact stat tile with icon, label, value, variant coloring
19
+ - **Sheet** (`@checkstack/ui`): Slide-over drawer built on Radix Dialog primitives
20
+
21
+ ### New Extension Slot
22
+
23
+ - **SystemOverviewMetricsSlot** (`@checkstack/catalog-common`): Plugin-contributed at-a-glance metric tiles in the system detail hero banner
24
+
25
+ ### Layout Changes
26
+
27
+ - System detail page now uses a hero banner with breadcrumb, status badges, and metric tile strip
28
+ - Two-column layout: monitoring content (left) and system context (right)
29
+ - Health checks rendered as compact card rows instead of heavy accordions
30
+ - Clicking a health check opens a slide-over drawer with summary tiles, timeline charts, and recent runs
31
+ - Right column uses lightweight borderless sections with dividers instead of heavy Card wrappers
32
+
33
+ ### Plugin Extensions
34
+
35
+ - Health check, SLO, Incident, and Maintenance plugins each contribute a metric tile to the hero banner
36
+
3
37
  ## 1.3.1
4
38
 
5
39
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/catalog-common",
3
- "version": "1.3.1",
3
+ "version": "1.4.1",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -8,9 +8,9 @@
8
8
  }
9
9
  },
10
10
  "dependencies": {
11
- "@checkstack/common": "0.6.4",
12
- "@checkstack/auth-common": "0.6.0",
13
- "@checkstack/frontend-api": "0.3.8",
11
+ "@checkstack/common": "0.6.5",
12
+ "@checkstack/auth-common": "0.6.1",
13
+ "@checkstack/frontend-api": "0.3.9",
14
14
  "@orpc/contract": "^1.13.14",
15
15
  "zod": "^4.2.1"
16
16
  },
package/src/slots.ts CHANGED
@@ -91,3 +91,4 @@ export const SystemStateBadgesSlot = createSlot<{ system: System }>(
91
91
  export const SystemEditorSlot = createSlot<{ systemId: string }>(
92
92
  "plugin.catalog.system-editor"
93
93
  );
94
+