@workbench-ai/workbench 0.0.50 → 0.0.51
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/command-model.d.ts.map +1 -1
- package/dist/command-model.js +37 -420
- package/dist/dev-open/client.css +21 -50
- package/dist/dev-open/client.js +140 -140
- package/dist/dev-open-server.d.ts +3 -0
- package/dist/dev-open-server.d.ts.map +1 -1
- package/dist/dev-open-server.js +40 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +383 -837
- package/dist/local-archive.d.ts +5 -1
- package/dist/local-archive.d.ts.map +1 -1
- package/dist/local-archive.js +239 -10
- package/package.json +4 -4
package/dist/dev-open/client.css
CHANGED
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
--container-xs: 20rem;
|
|
20
20
|
--container-sm: 24rem;
|
|
21
21
|
--container-md: 28rem;
|
|
22
|
+
--container-2xl: 42rem;
|
|
22
23
|
--container-3xl: 48rem;
|
|
23
24
|
--container-4xl: 56rem;
|
|
24
25
|
--text-xs: 0.75rem;
|
|
@@ -729,8 +730,17 @@
|
|
|
729
730
|
.min-h-40 {
|
|
730
731
|
min-height: calc(var(--spacing) * 40);
|
|
731
732
|
}
|
|
732
|
-
.min-h-\[
|
|
733
|
-
min-height:
|
|
733
|
+
.min-h-\[11rem\] {
|
|
734
|
+
min-height: 11rem;
|
|
735
|
+
}
|
|
736
|
+
.min-h-\[13rem\] {
|
|
737
|
+
min-height: 13rem;
|
|
738
|
+
}
|
|
739
|
+
.min-h-\[16rem\] {
|
|
740
|
+
min-height: 16rem;
|
|
741
|
+
}
|
|
742
|
+
.min-h-\[20rem\] {
|
|
743
|
+
min-height: 20rem;
|
|
734
744
|
}
|
|
735
745
|
.min-h-\[28rem\] {
|
|
736
746
|
min-height: 28rem;
|
|
@@ -744,6 +754,9 @@
|
|
|
744
754
|
.min-h-\[calc\(100dvh-2rem\)\] {
|
|
745
755
|
min-height: calc(100dvh - 2rem);
|
|
746
756
|
}
|
|
757
|
+
.min-h-\[min\(34rem\,calc\(100dvh-7rem\)\)\] {
|
|
758
|
+
min-height: min(34rem, calc(100dvh - 7rem));
|
|
759
|
+
}
|
|
747
760
|
.min-h-full {
|
|
748
761
|
min-height: 100%;
|
|
749
762
|
}
|
|
@@ -858,6 +871,9 @@
|
|
|
858
871
|
.max-w-\(--skeleton-width\) {
|
|
859
872
|
max-width: var(--skeleton-width);
|
|
860
873
|
}
|
|
874
|
+
.max-w-2xl {
|
|
875
|
+
max-width: var(--container-2xl);
|
|
876
|
+
}
|
|
861
877
|
.max-w-3xl {
|
|
862
878
|
max-width: var(--container-3xl);
|
|
863
879
|
}
|
|
@@ -873,15 +889,6 @@
|
|
|
873
889
|
.max-w-\[14rem\] {
|
|
874
890
|
max-width: 14rem;
|
|
875
891
|
}
|
|
876
|
-
.max-w-\[32rem\] {
|
|
877
|
-
max-width: 32rem;
|
|
878
|
-
}
|
|
879
|
-
.max-w-\[34rem\] {
|
|
880
|
-
max-width: 34rem;
|
|
881
|
-
}
|
|
882
|
-
.max-w-\[38rem\] {
|
|
883
|
-
max-width: 38rem;
|
|
884
|
-
}
|
|
885
892
|
.max-w-\[44rem\] {
|
|
886
893
|
max-width: 44rem;
|
|
887
894
|
}
|
|
@@ -1068,6 +1075,9 @@
|
|
|
1068
1075
|
.auto-rows-min {
|
|
1069
1076
|
grid-auto-rows: min-content;
|
|
1070
1077
|
}
|
|
1078
|
+
.\[grid-template-columns\:repeat\(auto-fit\,minmax\(min\(100\%\,11rem\)\,1fr\)\)\] {
|
|
1079
|
+
grid-template-columns: repeat(auto-fit,minmax(min(100%, 11rem),1fr));
|
|
1080
|
+
}
|
|
1071
1081
|
.grid-cols-1 {
|
|
1072
1082
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
1073
1083
|
}
|
|
@@ -1137,9 +1147,6 @@
|
|
|
1137
1147
|
.justify-start {
|
|
1138
1148
|
justify-content: flex-start;
|
|
1139
1149
|
}
|
|
1140
|
-
.justify-items-center {
|
|
1141
|
-
justify-items: center;
|
|
1142
|
-
}
|
|
1143
1150
|
.gap-0 {
|
|
1144
1151
|
gap: calc(var(--spacing) * 0);
|
|
1145
1152
|
}
|
|
@@ -1617,15 +1624,6 @@
|
|
|
1617
1624
|
.fill-muted-foreground {
|
|
1618
1625
|
fill: var(--muted-foreground);
|
|
1619
1626
|
}
|
|
1620
|
-
.stroke-\[1\.35\] {
|
|
1621
|
-
stroke-width: 1.35;
|
|
1622
|
-
}
|
|
1623
|
-
.stroke-\[1\.45\] {
|
|
1624
|
-
stroke-width: 1.45;
|
|
1625
|
-
}
|
|
1626
|
-
.stroke-\[1\.55\] {
|
|
1627
|
-
stroke-width: 1.55;
|
|
1628
|
-
}
|
|
1629
1627
|
.object-contain {
|
|
1630
1628
|
object-fit: contain;
|
|
1631
1629
|
}
|
|
@@ -1713,9 +1711,6 @@
|
|
|
1713
1711
|
.py-6 {
|
|
1714
1712
|
padding-block: calc(var(--spacing) * 6);
|
|
1715
1713
|
}
|
|
1716
|
-
.py-8 {
|
|
1717
|
-
padding-block: calc(var(--spacing) * 8);
|
|
1718
|
-
}
|
|
1719
1714
|
.pt-0 {
|
|
1720
1715
|
padding-top: calc(var(--spacing) * 0);
|
|
1721
1716
|
}
|
|
@@ -1844,9 +1839,6 @@
|
|
|
1844
1839
|
.text-\[0\.68rem\] {
|
|
1845
1840
|
font-size: 0.68rem;
|
|
1846
1841
|
}
|
|
1847
|
-
.text-\[1\.35rem\] {
|
|
1848
|
-
font-size: 1.35rem;
|
|
1849
|
-
}
|
|
1850
1842
|
.text-\[10px\] {
|
|
1851
1843
|
font-size: 10px;
|
|
1852
1844
|
}
|
|
@@ -1970,12 +1962,6 @@
|
|
|
1970
1962
|
.text-foreground {
|
|
1971
1963
|
color: var(--foreground);
|
|
1972
1964
|
}
|
|
1973
|
-
.text-foreground\/45 {
|
|
1974
|
-
color: var(--foreground);
|
|
1975
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
1976
|
-
color: color-mix(in oklab, var(--foreground) 45%, transparent);
|
|
1977
|
-
}
|
|
1978
|
-
}
|
|
1979
1965
|
.text-foreground\/60 {
|
|
1980
1966
|
color: var(--foreground);
|
|
1981
1967
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -4711,11 +4697,6 @@
|
|
|
4711
4697
|
padding-block: calc(var(--spacing) * 6);
|
|
4712
4698
|
}
|
|
4713
4699
|
}
|
|
4714
|
-
.sm\:py-10 {
|
|
4715
|
-
@media (width >= 40rem) {
|
|
4716
|
-
padding-block: calc(var(--spacing) * 10);
|
|
4717
|
-
}
|
|
4718
|
-
}
|
|
4719
4700
|
.sm\:pt-5 {
|
|
4720
4701
|
@media (width >= 40rem) {
|
|
4721
4702
|
padding-top: calc(var(--spacing) * 5);
|
|
@@ -4742,11 +4723,6 @@
|
|
|
4742
4723
|
line-height: var(--tw-leading, var(--text-2xl--line-height));
|
|
4743
4724
|
}
|
|
4744
4725
|
}
|
|
4745
|
-
.sm\:text-\[1\.5rem\] {
|
|
4746
|
-
@media (width >= 40rem) {
|
|
4747
|
-
font-size: 1.5rem;
|
|
4748
|
-
}
|
|
4749
|
-
}
|
|
4750
4726
|
.sm\:group-data-\[size\=default\]\/alert-dialog-content\:row-span-2 {
|
|
4751
4727
|
@media (width >= 40rem) {
|
|
4752
4728
|
&:is(:where(.group\/alert-dialog-content)[data-size="default"] *) {
|
|
@@ -4983,11 +4959,6 @@
|
|
|
4983
4959
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
4984
4960
|
}
|
|
4985
4961
|
}
|
|
4986
|
-
.xl\:grid-cols-7 {
|
|
4987
|
-
@media (width >= 80rem) {
|
|
4988
|
-
grid-template-columns: repeat(7, minmax(0, 1fr));
|
|
4989
|
-
}
|
|
4990
|
-
}
|
|
4991
4962
|
.xl\:grid-cols-\[repeat\(auto-fit\,minmax\(18rem\,1fr\)\)\] {
|
|
4992
4963
|
@media (width >= 80rem) {
|
|
4993
4964
|
grid-template-columns: repeat(auto-fit,minmax(18rem,1fr));
|