juxscript 1.1.222 → 1.1.223

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,9 +158,15 @@ 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 */
161
+ min-width: 0;
162
+ max-width: 100%;
163
+ overflow: hidden;
164
+ /* ✅ Card-like container to visually partition each dataframe */
165
+ padding: 1rem;
166
+ border: 1px solid hsl(var(--border));
167
+ border-radius: var(--radius);
168
+ background: hsl(var(--background));
169
+ box-shadow: 0 1px 3px hsl(0 0% 0% / 0.04);
164
170
  }
165
171
 
166
172
  /* ✅ Ensure table respects dataframe container */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "juxscript",
3
- "version": "1.1.222",
3
+ "version": "1.1.223",
4
4
  "type": "module",
5
5
  "description": "A JavaScript UX authorship platform",
6
6
  "main": "index.js",