@conduction/docusaurus-preset 2.10.0 → 2.10.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conduction/docusaurus-preset",
3
- "version": "2.10.0",
3
+ "version": "2.10.1",
4
4
  "scripts": {
5
5
  "prepack": "node scripts/prepack-bundle-css.js"
6
6
  },
@@ -144,6 +144,12 @@ platform-diagram .row .name {
144
144
  platform-diagram .row + .row { border-top: 1px solid var(--c-cobalt-50); }
145
145
  platform-diagram a.row { text-decoration: none; color: inherit; cursor: pointer; }
146
146
  platform-diagram a.row:hover { text-decoration: none; }
147
+ /* Hovered row escapes its own overflow:hidden clip and creates a
148
+ stacking context so the .desc tooltip can extend below the row AND
149
+ paint above later-DOM-order siblings. Without overflow:visible the
150
+ absolute-positioned .desc gets cropped to the row's bounding box;
151
+ without z-index the .desc has no stacking context to escape. */
152
+ platform-diagram .row:hover { overflow: visible; z-index: 10; }
147
153
 
148
154
  /* Multi-column box: rows are wrapped in <.col> so the .row+.row border only
149
155
  draws within a single column. The columns sit side by side with a thin
@@ -254,9 +260,12 @@ platform-diagram .workspace-corner-hex.fam-solutions { background: #E34234; }
254
260
  platform-diagram .fam-integrate .glyph,
255
261
  platform-diagram .workspace-corner-hex.fam-integrate { background: var(--c-cobalt-400); }
256
262
  platform-diagram .fam-builder .glyph,
257
- platform-diagram .workspace-corner-hex.fam-builder { background: var(--c-cobalt-300); }
258
- /* App Builder hex: KNVB orange (override fam-builder) */
259
- platform-diagram .workspace-corner-hex.app-builder { background: var(--c-orange-knvb); }
263
+ platform-diagram .workspace-corner-hex.fam-builder { background: var(--c-blue-cobalt); }
264
+ /* App Builder hex: KNVB orange placeholder treatment, only while the
265
+ cluster carries a `has-badge` class (COMING SOON state). Without
266
+ the badge the hex reverts to the shared workspace cobalt and looks
267
+ like any other Conduction surface. */
268
+ platform-diagram .workspace-corner-hex.app-builder.has-badge { background: var(--c-orange-knvb); }
260
269
  platform-diagram .fam-nextcloud .glyph,
261
270
  platform-diagram .workspace-corner-hex.fam-nextcloud { background: var(--c-nextcloud-blue); }
262
271
 
@@ -233,8 +233,9 @@
233
233
  if (!list.label || list.position === 'top') return null;
234
234
  const positionClass = POSITION_CLASS[list.position] || list.position;
235
235
  const familyClass = list.family ? `fam-${list.family}` : '';
236
+ const badgeClass = list.badge ? 'has-badge' : '';
236
237
  const hex = document.createElement('div');
237
- hex.className = `workspace-corner-hex ${positionClass} ${familyClass}`.trim();
238
+ hex.className = `workspace-corner-hex ${positionClass} ${familyClass} ${badgeClass}`.trim();
238
239
  // Allow newline in label to render a <br>; otherwise straight text.
239
240
  if (list.label.includes('\n')) {
240
241
  list.label.split('\n').forEach((line, i) => {