@orsetra/shared-ui 1.0.29 → 1.0.30

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.
@@ -30,18 +30,18 @@ export interface SidebarMenus {
30
30
 
31
31
  export const menuItems: MainMenuItem[] = [
32
32
  {
33
- id: "assets-manager",
33
+ id: "assets",
34
34
  label: "Assets",
35
35
  icon: <Rocket className="h-6 w-6" />
36
36
  },
37
37
  {
38
- id: "applications-manager",
39
- label: "Applications",
38
+ id: "runtime",
39
+ label: "Runtime",
40
40
  icon: <Package className="h-6 w-6" />
41
41
  },
42
42
  {
43
- id: "monitoring-manager",
44
- label: "Monitoring Manager",
43
+ id: "monitoring",
44
+ label: "Monitoring",
45
45
  icon: <LineChart className="h-6 w-6" />
46
46
  },
47
47
  {
@@ -59,9 +59,9 @@ export const menuItems: MainMenuItem[] = [
59
59
 
60
60
  // Labels des menus principaux pour l'affichage
61
61
  export const menuLabels: Record<string, string> = {
62
- "assets-manager": "Assets",
63
- "applications-manager": "Applications",
64
- "monitoring-manager": "Monitoring",
62
+ "assets": "Assets",
63
+ "runtime": "Runtime",
64
+ "monitoring": "Monitoring",
65
65
  "api-manager": "API Manager",
66
66
  "access-manager": "Access Manager",
67
67
  }
@@ -207,11 +207,11 @@ function Sidebar({ currentMenu, onMainMenuToggle, sidebarMenus = {} }: SidebarPr
207
207
  {currentMenu && menuLabels[currentMenu] && (
208
208
  <div className="px-4 py-3 border-b border-ui-border">
209
209
  <div className="flex items-center gap-2">
210
- {currentMenu === "assets-manager" && <Rocket className="h-4 w-4 text-interactive" />}
211
- {currentMenu === "applications-manager" && <Package className="h-4 w-4 text-interactive" />}
210
+ {currentMenu === "assets" && <Rocket className="h-4 w-4 text-interactive" />}
211
+ {currentMenu === "runtime" && <Package className="h-4 w-4 text-interactive" />}
212
212
  {currentMenu === "api-manager" && <Settings className="h-4 w-4 text-interactive" />}
213
213
  {currentMenu === "access-manager" && <Shield className="h-4 w-4 text-interactive" />}
214
- {currentMenu === "monitoring-manager" && <LineChart className="h-4 w-4 text-interactive" />}
214
+ {currentMenu === "monitoring" && <LineChart className="h-4 w-4 text-interactive" />}
215
215
  <h2 className="text-sm font-semibold text-text-primary">
216
216
  {menuLabels[currentMenu]}
217
217
  </h2>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orsetra/shared-ui",
3
- "version": "1.0.29",
3
+ "version": "1.0.30",
4
4
  "description": "Shared UI components for Orsetra platform",
5
5
  "main": "./index.ts",
6
6
  "types": "./index.ts",