mviz 1.7.0-pre.0 → 1.7.0-pre.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.
@@ -56,7 +56,7 @@ export function generateDashboardCss(customTheme, orientation = 'portrait', frag
56
56
 
57
57
  html, body {
58
58
  width: 100%; min-height: 100%;
59
- background-color: var(--bg);
59
+ ${fragment ? '' : 'background-color: var(--bg);'}
60
60
  font-family: var(--font-family);
61
61
  color: var(--text);
62
62
  font-size: 12px;
@@ -167,7 +167,7 @@ export function generateDashboardCss(customTheme, orientation = 'portrait', frag
167
167
  .title-row { break-after: avoid; page-break-after: avoid; }
168
168
  }`}
169
169
  .grid-item {
170
- background: var(--bg);
170
+ ${fragment ? '' : 'background: var(--bg);'}
171
171
  padding: 4px;
172
172
  transition: background-color 0.3s;
173
173
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mviz",
3
- "version": "1.7.0-pre.0",
3
+ "version": "1.7.0-pre.1",
4
4
  "description": "A chart & report builder designed for use by AI.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",