@workbench-ai/workbench 0.0.48 → 0.0.49
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.
- package/dist/dev-open/client.css +20 -11
- package/dist/dev-open/client.js +142 -142
- package/package.json +4 -4
package/dist/dev-open/client.css
CHANGED
|
@@ -834,18 +834,9 @@
|
|
|
834
834
|
.w-80 {
|
|
835
835
|
width: calc(var(--spacing) * 80);
|
|
836
836
|
}
|
|
837
|
-
.w-\[14\%\] {
|
|
838
|
-
width: 14%;
|
|
839
|
-
}
|
|
840
|
-
.w-\[16\%\] {
|
|
841
|
-
width: 16%;
|
|
842
|
-
}
|
|
843
837
|
.w-\[28\%\] {
|
|
844
838
|
width: 28%;
|
|
845
839
|
}
|
|
846
|
-
.w-\[36\%\] {
|
|
847
|
-
width: 36%;
|
|
848
|
-
}
|
|
849
840
|
.w-\[100px\] {
|
|
850
841
|
width: 100px;
|
|
851
842
|
}
|
|
@@ -897,6 +888,9 @@
|
|
|
897
888
|
.max-w-\[calc\(100vw-2rem\)\] {
|
|
898
889
|
max-width: calc(100vw - 2rem);
|
|
899
890
|
}
|
|
891
|
+
.max-w-\[min\(calc\(100vw-2rem\)\,24rem\)\] {
|
|
892
|
+
max-width: min(calc(100vw - 2rem), 24rem);
|
|
893
|
+
}
|
|
900
894
|
.max-w-full {
|
|
901
895
|
max-width: 100%;
|
|
902
896
|
}
|
|
@@ -933,14 +927,23 @@
|
|
|
933
927
|
.min-w-36 {
|
|
934
928
|
min-width: calc(var(--spacing) * 36);
|
|
935
929
|
}
|
|
930
|
+
.min-w-\[7rem\] {
|
|
931
|
+
min-width: 7rem;
|
|
932
|
+
}
|
|
933
|
+
.min-w-\[8rem\] {
|
|
934
|
+
min-width: 8rem;
|
|
935
|
+
}
|
|
936
|
+
.min-w-\[18rem\] {
|
|
937
|
+
min-width: 18rem;
|
|
938
|
+
}
|
|
936
939
|
.min-w-\[96px\] {
|
|
937
940
|
min-width: 96px;
|
|
938
941
|
}
|
|
939
942
|
.min-w-\[120px\] {
|
|
940
943
|
min-width: 120px;
|
|
941
944
|
}
|
|
942
|
-
.min-w-\[
|
|
943
|
-
min-width:
|
|
945
|
+
.min-w-\[760px\] {
|
|
946
|
+
min-width: 760px;
|
|
944
947
|
}
|
|
945
948
|
.min-w-full {
|
|
946
949
|
min-width: 100%;
|
|
@@ -954,6 +957,9 @@
|
|
|
954
957
|
.shrink-0 {
|
|
955
958
|
flex-shrink: 0;
|
|
956
959
|
}
|
|
960
|
+
.table-auto {
|
|
961
|
+
table-layout: auto;
|
|
962
|
+
}
|
|
957
963
|
.table-fixed {
|
|
958
964
|
table-layout: fixed;
|
|
959
965
|
}
|
|
@@ -1596,6 +1602,9 @@
|
|
|
1596
1602
|
.fill-foreground {
|
|
1597
1603
|
fill: var(--foreground);
|
|
1598
1604
|
}
|
|
1605
|
+
.fill-muted-foreground {
|
|
1606
|
+
fill: var(--muted-foreground);
|
|
1607
|
+
}
|
|
1599
1608
|
.stroke-\[1\.35\] {
|
|
1600
1609
|
stroke-width: 1.35;
|
|
1601
1610
|
}
|