@marianmeres/stuic 3.94.0 → 3.94.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.
@@ -298,6 +298,11 @@
298
298
  renderedAny = true;
299
299
  }
300
300
 
301
+ if (extraItems?.length) {
302
+ out.push(...extraItems);
303
+ renderedAny = true;
304
+ }
305
+
301
306
  if (renderedAny && actions.onLogout) {
302
307
  out.push({ type: "divider", id: "div-logout" });
303
308
  }
@@ -337,9 +342,9 @@
337
342
  });
338
343
  }
339
344
  if (csEnabled) out.push(buildColorSchemeItem());
345
+ if (extraItems?.length) out.push(...extraItems);
340
346
  }
341
347
 
342
- if (extraItems?.length) out.push(...extraItems);
343
348
  return out;
344
349
  });
345
350
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marianmeres/stuic",
3
- "version": "3.94.0",
3
+ "version": "3.94.1",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && pnpm run prepack",