@luckydraw/cumulus 0.27.26 → 0.27.28

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.
@@ -44,7 +44,10 @@
44
44
 
45
45
  // ─── Styles ─────────────────────────────────────────────────────────────────
46
46
  var STYLES = [
47
- '.cumulus-widget * { box-sizing: border-box; margin: 0; padding: 0; }',
47
+ '.cumulus-widget * { box-sizing: border-box; }',
48
+ '.cumulus-widget *:not(.blex-block-container *) { margin: 0; padding: 0; }',
49
+ '.blex-block-container * { margin: revert; padding: revert; line-height: revert; list-style: revert; border-spacing: revert; }',
50
+ '.blex-block-container { isolation: isolate; }',
48
51
 
49
52
  '.cumulus-widget {',
50
53
  ' font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;',
@@ -202,7 +205,7 @@
202
205
  '.blex-block-container {',
203
206
  ' margin: 0.6em 0;',
204
207
  ' border-radius: 8px;',
205
- ' overflow: hidden;',
208
+ ' overflow: visible;',
206
209
  ' min-height: 2em;',
207
210
  '}',
208
211
  '.blex-block-container[data-blex-ready="true"] {',
@@ -1016,7 +1019,8 @@
1016
1019
  ' .cumulus-msg.user { max-width: 85%; }',
1017
1020
 
1018
1021
  /* Tables scroll horizontally */
1019
- ' .cumulus-msg table { display: block; overflow-x: auto; white-space: nowrap; }',
1022
+ ' .cumulus-msg table:not(.blex-block-container table) { display: block; overflow-x: auto; white-space: nowrap; }',
1023
+ ' .blex-block-container table { display: table; overflow-x: visible; white-space: normal; }',
1020
1024
 
1021
1025
  /* Code blocks: ensure horizontal scroll works */
1022
1026
  ' .code-block-wrapper pre { font-size: 0.85em; }',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luckydraw/cumulus",
3
- "version": "0.27.26",
3
+ "version": "0.27.28",
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",