juxscript 1.1.148 → 1.1.149

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.
@@ -126,6 +126,12 @@ export function generateErrorCollector(options = {}) {
126
126
  __juxBadge.textContent = String(__juxErrors.length);
127
127
  __juxBadge.style.display = 'flex';
128
128
 
129
+ // ✅ Auto-open panel on first error
130
+ if (!__juxVisible) {
131
+ __juxVisible = true;
132
+ __juxPanel.style.display = 'flex';
133
+ }
134
+
129
135
  // Add to list
130
136
  var item = document.createElement('div');
131
137
  item.setAttribute('style',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "juxscript",
3
- "version": "1.1.148",
3
+ "version": "1.1.149",
4
4
  "type": "module",
5
5
  "description": "A JavaScript UX authorship platform",
6
6
  "main": "index.js",