juxscript 1.1.213 → 1.1.214

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.
@@ -158,6 +158,20 @@ p { line-height: 1.75; color: hsl(var(--foreground)); }
158
158
  flex-direction: column;
159
159
  gap: 1rem;
160
160
  width: 100%;
161
+ min-width: 0; /* ✅ Allow flex item to shrink below content size */
162
+ max-width: 100%; /* ✅ Prevent overflow of parent */
163
+ overflow: hidden; /* ✅ Contain overflow */
164
+ }
165
+
166
+ /* ✅ Ensure table respects dataframe container */
167
+ .jux-dataframe .jux-table-wrapper {
168
+ min-width: 0;
169
+ max-width: 100%;
170
+ overflow-x: auto;
171
+ }
172
+
173
+ .jux-dataframe .jux-table {
174
+ min-width: 0;
161
175
  }
162
176
 
163
177
  /* ✅ NEW: Enhanced upload area */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "juxscript",
3
- "version": "1.1.213",
3
+ "version": "1.1.214",
4
4
  "type": "module",
5
5
  "description": "A JavaScript UX authorship platform",
6
6
  "main": "index.js",