@checkstack/catalog-frontend 0.7.0 → 0.8.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,20 @@
1
1
  # @checkstack/catalog-frontend
2
2
 
3
+ ## 0.8.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [3da7582]
8
+ - @checkstack/ui@1.5.0
9
+ - @checkstack/auth-frontend@0.5.27
10
+ - @checkstack/gitops-frontend@0.3.2
11
+
12
+ ## 0.8.0
13
+
14
+ ### Minor Changes
15
+
16
+ - 80cbc51: Enforce GitOps provenance lock on backend API endpoints to prevent manual configuration drift for synchronized resources.
17
+
3
18
  ## 0.7.0
4
19
 
5
20
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/catalog-frontend",
3
- "version": "0.7.0",
3
+ "version": "0.8.1",
4
4
  "type": "module",
5
5
  "main": "src/index.tsx",
6
6
  "checkstack": {
@@ -111,9 +111,9 @@ export const DraggableSystem = ({
111
111
  variant="ghost"
112
112
  size="sm"
113
113
  className="h-7 w-7 p-0"
114
- title={`Add ${system.name} to a group`}
114
+ title={isLocked ? "Managed by GitOps" : `Add ${system.name} to a group`}
115
115
  onClick={() => setIsPickerOpen((v) => !v)}
116
- disabled={availableGroups.length === 0}
116
+ disabled={availableGroups.length === 0 || isLocked}
117
117
  aria-expanded={isPickerOpen}
118
118
  aria-haspopup="listbox"
119
119
  aria-label={`Add ${system.name} to group`}