juxscript 1.1.226 → 1.1.228

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.
@@ -186,22 +186,20 @@ p { line-height: 1.75; color: hsl(var(--foreground)); }
186
186
  flex-direction: column;
187
187
  align-items: flex-start;
188
188
  gap: 0.5rem;
189
- padding: 1rem;
190
- background: hsl(var(--muted) / 0.2);
191
- border: 1px dashed hsl(var(--border));
192
- border-radius: var(--radius);
189
+ padding: 0.5rem;
190
+ background: transparent;
191
+ border: none;
192
+ border-radius: 0;
193
193
  transition: all 0.2s;
194
194
  }
195
195
 
196
196
  .jux-dataframe-upload-area:hover {
197
- background: hsl(var(--muted) / 0.3);
198
- border-color: hsl(var(--muted-foreground) / 0.3);
197
+ background: transparent;
199
198
  }
200
199
 
201
200
  .jux-dataframe-upload-area:has(.jux-fileupload-filelist:not(:empty)) {
202
- background: hsl(var(--success) / 0.05);
203
- border-color: hsl(var(--success) / 0.2);
204
- border-style: solid;
201
+ background: transparent;
202
+ border: none;
205
203
  }
206
204
 
207
205
  .jux-dataframe-upload {
@@ -856,106 +854,6 @@ code {
856
854
  overflow: auto;
857
855
  }
858
856
 
859
- /* ═══════════════════════════════════════════════════════════════════
860
- * DATAFRAME COLLAPSIBLE
861
- * ═══════════════════════════════════════════════════════════════════ */
862
-
863
- .jux-dataframe-details {
864
- border: 1px solid hsl(var(--border));
865
- border-radius: var(--radius);
866
- background: hsl(var(--background));
867
- overflow: hidden;
868
- }
869
-
870
- .jux-dataframe-summary {
871
- display: flex;
872
- align-items: center;
873
- gap: 0.5rem;
874
- padding: 0.75rem 1rem;
875
- cursor: pointer;
876
- user-select: none;
877
- font-weight: 500;
878
- font-size: 0.875rem;
879
- color: hsl(var(--foreground));
880
- background: hsl(var(--muted) / 0.3);
881
- border-bottom: 1px solid transparent;
882
- transition: all 0.15s;
883
- }
884
-
885
- .jux-dataframe-summary:hover {
886
- background: hsl(var(--muted) / 0.5);
887
- }
888
-
889
- .jux-dataframe-details[open] .jux-dataframe-summary {
890
- border-bottom-color: hsl(var(--border));
891
- }
892
-
893
- /* Hide default marker */
894
- .jux-dataframe-summary::-webkit-details-marker,
895
- .jux-dataframe-summary::marker {
896
- display: none;
897
- content: '';
898
- }
899
-
900
- .jux-dataframe-summary-chevron {
901
- display: inline-flex;
902
- align-items: center;
903
- justify-content: center;
904
- width: 1rem;
905
- height: 1rem;
906
- font-size: 0.625rem;
907
- color: hsl(var(--muted-foreground));
908
- transition: transform 0.2s ease;
909
- }
910
-
911
- .jux-dataframe-details[open] .jux-dataframe-summary-chevron {
912
- transform: rotate(90deg);
913
- }
914
-
915
- .jux-dataframe-summary-text {
916
- flex: 1;
917
- }
918
-
919
- /* ✅ Settings button in summary */
920
- .jux-dataframe-summary-settings {
921
- padding: 0.25rem 0.5rem;
922
- font-size: 0.75rem;
923
- font-weight: 500;
924
- border: 1px solid hsl(var(--border));
925
- border-radius: calc(var(--radius) - 2px);
926
- background: hsl(var(--background));
927
- color: hsl(var(--muted-foreground));
928
- cursor: pointer;
929
- transition: all 0.15s;
930
- margin-left: auto;
931
- }
932
-
933
- .jux-dataframe-summary-settings:hover {
934
- background: hsl(var(--accent));
935
- color: hsl(var(--foreground));
936
- border-color: hsl(var(--muted-foreground) / 0.3);
937
- }
938
-
939
- .jux-dataframe-summary-settings-warning {
940
- background: hsl(var(--warning) / 0.1);
941
- border-color: hsl(var(--warning) / 0.3);
942
- color: hsl(var(--warning-foreground));
943
- }
944
-
945
- .jux-dataframe-summary-settings-warning:hover {
946
- background: hsl(var(--warning) / 0.2);
947
- }
948
-
949
- .jux-dataframe-details-content {
950
- padding: 0;
951
- }
952
-
953
- /* Remove border from table inside collapsible */
954
- .jux-dataframe-details-content .jux-table-wrapper {
955
- border: none;
956
- border-radius: 0;
957
- }
958
-
959
857
  /* ═══════════════════════════════════════════════════════════════════
960
858
  * DATAFRAME DATA VIEW (Post-upload clean UI)
961
859
  * ═══════════════════════════════════════════════════════════════════ */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "juxscript",
3
- "version": "1.1.226",
3
+ "version": "1.1.228",
4
4
  "type": "module",
5
5
  "description": "A JavaScript UX authorship platform",
6
6
  "main": "index.js",