@campfire-interactive/shell-header 0.17.1 → 0.18.0

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.
Files changed (2) hide show
  1. package/dist/index.js +30 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -83,6 +83,16 @@ var appCatalog = [
83
83
  group: "planning",
84
84
  localPort: 3200
85
85
  },
86
+ {
87
+ id: "pm",
88
+ name: "Program Management",
89
+ icon: "GanttChart",
90
+ letter: "P",
91
+ color: "#e11d48",
92
+ byline: "Run won business from award to launch \u2014 milestones, changes, and financial performance against the quote.",
93
+ group: "planning",
94
+ localPort: 3130
95
+ },
86
96
  // ── Engineering ─────────────────────────────────────────────────────────
87
97
  {
88
98
  id: "bom",
@@ -95,6 +105,16 @@ var appCatalog = [
95
105
  group: "engineering",
96
106
  localPort: 3700
97
107
  },
108
+ {
109
+ id: "plant",
110
+ name: "Plant Management",
111
+ icon: "Factory",
112
+ letter: "P",
113
+ color: "#65a30d",
114
+ byline: "The operational home for your plants \u2014 footprint, capacity, and the plant records every app reads.",
115
+ group: "engineering",
116
+ localPort: 3140
117
+ },
98
118
  // ── Platform services (available to everyone; no role gate) ─────────────
99
119
  {
100
120
  // Header title uses `name`; DMS wants its full name there, and it's hidden
@@ -135,11 +155,16 @@ var appCatalog = [
135
155
  path: "/admin/users"
136
156
  },
137
157
  {
158
+ // Cool charcoal (slate-700). Every other tile here is a saturated hue
159
+ // standing for a persona's product; integrations is plumbing that carries
160
+ // other apps' data, and a neutral says that better than a colour competing
161
+ // with them. Cool rather than warm so it sits with the blues above instead
162
+ // of reading as a dimmed orange.
138
163
  id: "integrations",
139
164
  name: "Integrations",
140
165
  icon: "Cable",
141
166
  letter: "I",
142
- color: "#0891b2",
167
+ color: "#334155",
143
168
  byline: "Connect Campfire to your ERP, PLM, and data-lake systems \u2014 inbound feeds and outbound extracts.",
144
169
  group: "admin",
145
170
  requiresRole: ["admin", "owner"],
@@ -176,8 +201,10 @@ import {
176
201
  BarChart3,
177
202
  Calculator,
178
203
  Cable,
204
+ Factory,
179
205
  FileText,
180
206
  Files,
207
+ GanttChart,
181
208
  Shield,
182
209
  GripHorizontal,
183
210
  Bell,
@@ -196,8 +223,10 @@ var iconMap = {
196
223
  BarChart3,
197
224
  Calculator,
198
225
  Cable,
226
+ Factory,
199
227
  FileText,
200
228
  Files,
229
+ GanttChart,
201
230
  Shield
202
231
  };
203
232
  function getIcon(name) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@campfire-interactive/shell-header",
3
- "version": "0.17.1",
3
+ "version": "0.18.0",
4
4
  "description": "Shared shell header with app switcher for Campfire Suite",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",