@luckydraw/cumulus 0.31.50 → 0.31.51

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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.31.51
4
+
5
+ - Fixed the model picker popover overflowing off the right edge of the screen on mobile — it now opens back into the viewport and stays within the screen width on any device.
6
+
3
7
  ## v0.31.50
4
8
 
5
9
  - Redesigned the model controls: the header model label now opens a compact popover for picking provider / model / effort, instead of a full-panel modal.
@@ -1158,8 +1158,9 @@
1158
1158
  /* ── Quick model popover (per-thread Provider / Model / Effort) ── */
1159
1159
  '.cumulus-model-picker { position: relative; display: inline-flex; align-items: center; }',
1160
1160
  '.cumulus-model-popover {',
1161
- ' position: absolute; top: calc(100% + 6px); left: 0; z-index: 40;',
1162
- ' min-width: 236px; background: #262626; border: 1px solid #3d3d3d;',
1161
+ ' position: absolute; top: calc(100% + 6px); right: 0; left: auto; z-index: 40;',
1162
+ ' min-width: 236px; max-width: calc(100vw - 24px); box-sizing: border-box;',
1163
+ ' background: #262626; border: 1px solid #3d3d3d;',
1163
1164
  ' border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.55); padding: 4px 12px 8px;',
1164
1165
  '}',
1165
1166
  '.cumulus-model-popover-row {',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luckydraw/cumulus",
3
- "version": "0.31.50",
3
+ "version": "0.31.51",
4
4
  "description": "RLM-based CLI chat wrapper for Claude with external history context management",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",