@skyhook-io/k8s-ui 1.7.5 → 1.7.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyhook-io/k8s-ui",
3
- "version": "1.7.5",
3
+ "version": "1.7.7",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/skyhook-io/radar",
@@ -1,5 +1,5 @@
1
1
  import { useEffect, type ComponentType, type ReactNode } from 'react'
2
- import { ChevronDown, ChevronRight, Clock3, GitBranch, GitCommit, Loader2, Pause, Play, RefreshCw, RotateCw, Settings, Trash2, XCircle } from 'lucide-react'
2
+ import { ArrowDownUp, ChevronDown, ChevronRight, Clock3, GitBranch, GitCommit, Loader2, Pause, Play, RefreshCw, Settings, Trash2, XCircle, Zap } from 'lucide-react'
3
3
 
4
4
  import { HealthStatusBadge, SyncStatusBadge } from './GitOpsStatusBadge'
5
5
  import { GitOpsIssuesBand, GitOpsStatusStrip } from './insights'
@@ -340,7 +340,7 @@ export function GitOpsDetailLayout(props: GitOpsDetailLayoutProps) {
340
340
  <ActionButton
341
341
  label="Sync…"
342
342
  description="Apply manifests from Git to the cluster. Opens an options dialog (prune, dry-run, revision)."
343
- icon={RefreshCw}
343
+ icon={ArrowDownUp}
344
344
  loading={argo.syncing}
345
345
  onClick={argo.onSyncRequested}
346
346
  disabled={effectiveSuspended || terminating}
@@ -350,14 +350,14 @@ export function GitOpsDetailLayout(props: GitOpsDetailLayoutProps) {
350
350
  <ActionButton
351
351
  label="Refresh"
352
352
  description="Re-check Git for new commits and recompute sync status. Doesn't apply anything."
353
- icon={RotateCw}
353
+ icon={RefreshCw}
354
354
  loading={argo.refreshing && argo.refreshingKind === 'normal'}
355
355
  onClick={() => argo.onRefresh('normal')}
356
356
  />
357
357
  <ActionButton
358
358
  label="Hard refresh"
359
359
  description="Like Refresh, but also bypasses Argo's manifest cache (re-renders Helm/Kustomize)."
360
- icon={RotateCw}
360
+ icon={Zap}
361
361
  loading={argo.refreshing && argo.refreshingKind === 'hard'}
362
362
  onClick={() => argo.onRefresh('hard')}
363
363
  />