@checkstack/healthcheck-frontend 0.4.8 → 0.4.10

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,33 @@
1
1
  # @checkstack/healthcheck-frontend
2
2
 
3
+ ## 0.4.10
4
+
5
+ ### Patch Changes
6
+
7
+ - d1324e6: Removed redundant inner scroll wrapper from HealthCheckEditor - Dialog now handles scrolling
8
+ - Updated dependencies [d1324e6]
9
+ - Updated dependencies [1f1f6c2]
10
+ - Updated dependencies [2c0822d]
11
+ - @checkstack/ui@0.4.0
12
+ - @checkstack/dashboard-frontend@0.3.8
13
+ - @checkstack/auth-frontend@0.5.3
14
+
15
+ ## 0.4.9
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies [8a87cd4]
20
+ - Updated dependencies [8a87cd4]
21
+ - Updated dependencies [8a87cd4]
22
+ - @checkstack/catalog-common@1.2.3
23
+ - @checkstack/common@0.5.0
24
+ - @checkstack/healthcheck-common@0.4.2
25
+ - @checkstack/auth-frontend@0.5.2
26
+ - @checkstack/dashboard-frontend@0.3.7
27
+ - @checkstack/frontend-api@0.3.2
28
+ - @checkstack/ui@0.3.1
29
+ - @checkstack/signal-frontend@0.0.9
30
+
3
31
  ## 0.4.8
4
32
 
5
33
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/healthcheck-frontend",
3
- "version": "0.4.8",
3
+ "version": "0.4.10",
4
4
  "type": "module",
5
5
  "main": "src/index.tsx",
6
6
  "scripts": {
@@ -40,13 +40,13 @@ export const HealthCheckEditor: React.FC<HealthCheckEditorProps> = ({
40
40
  const [name, setName] = useState(initialData?.name || "");
41
41
  const [strategyId, setStrategyId] = useState(initialData?.strategyId || "");
42
42
  const [interval, setInterval] = useState(
43
- initialData?.intervalSeconds?.toString() || "60"
43
+ initialData?.intervalSeconds?.toString() || "60",
44
44
  );
45
45
  const [config, setConfig] = useState<Record<string, unknown>>(
46
- (initialData?.config as Record<string, unknown>) || {}
46
+ (initialData?.config as Record<string, unknown>) || {},
47
47
  );
48
48
  const [collectors, setCollectors] = useState<CollectorConfigEntry[]>(
49
- initialData?.collectors || []
49
+ initialData?.collectors || [],
50
50
  );
51
51
 
52
52
  const toast = useToast();
@@ -111,7 +111,7 @@ export const HealthCheckEditor: React.FC<HealthCheckEditorProps> = ({
111
111
  </DialogDescription>
112
112
  </DialogHeader>
113
113
 
114
- <div className="space-y-6 py-4 max-h-[70vh] overflow-y-auto">
114
+ <div className="space-y-6 py-4">
115
115
  <div className="space-y-2">
116
116
  <Label htmlFor="name">Name</Label>
117
117
  <Input