@luckydraw/cumulus 0.27.27 → 0.27.29

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,8 +44,12 @@
44
44
 
45
45
  // ─── Styles ─────────────────────────────────────────────────────────────────
46
46
  var STYLES = [
47
+ /* box-sizing applies everywhere including blex — desired for consistent layout */
47
48
  '.cumulus-widget * { box-sizing: border-box; }',
48
- '.cumulus-widget *:not([class^="blex-"]):not([class*=" blex-"]) { margin: 0; padding: 0; }',
49
+ /* Zero-specificity reset: any class selector (widget or blex) overrides this naturally */
50
+ ':where(.cumulus-widget) :where(*) { margin: 0; padding: 0; }',
51
+ /* Blex blocks inherit text theme from widget */
52
+ '.blex-block-container { color: #e0e0e0; font-family: inherit; font-size: inherit; line-height: 1.5; isolation: isolate; }',
49
53
 
50
54
  '.cumulus-widget {',
51
55
  ' font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;',
@@ -1017,7 +1021,8 @@
1017
1021
  ' .cumulus-msg.user { max-width: 85%; }',
1018
1022
 
1019
1023
  /* Tables scroll horizontally */
1020
- ' .cumulus-msg table { display: block; overflow-x: auto; white-space: nowrap; }',
1024
+ ' .cumulus-msg table:not(.blex-block-container table) { display: block; overflow-x: auto; white-space: nowrap; }',
1025
+ ' .blex-block-container table { display: table; overflow-x: visible; white-space: normal; }',
1021
1026
 
1022
1027
  /* Code blocks: ensure horizontal scroll works */
1023
1028
  ' .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.27",
3
+ "version": "0.27.29",
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",