@prisma/studio-core 0.0.0-dev.202505071902 → 0.0.0-dev.202505071933
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/ui/index.cjs +88 -48
- package/dist/ui/index.css +36 -8
- package/dist/ui/index.js +46 -6
- package/package.json +1 -1
package/dist/ui/index.css
CHANGED
|
@@ -789,6 +789,9 @@ video {
|
|
|
789
789
|
.ps-w-2 {
|
|
790
790
|
width: 0.5rem;
|
|
791
791
|
}
|
|
792
|
+
.ps-w-24 {
|
|
793
|
+
width: 6rem;
|
|
794
|
+
}
|
|
792
795
|
.ps-w-3\.5 {
|
|
793
796
|
width: 0.875rem;
|
|
794
797
|
}
|
|
@@ -798,12 +801,12 @@ video {
|
|
|
798
801
|
.ps-w-4 {
|
|
799
802
|
width: 1rem;
|
|
800
803
|
}
|
|
804
|
+
.ps-w-48 {
|
|
805
|
+
width: 12rem;
|
|
806
|
+
}
|
|
801
807
|
.ps-w-6 {
|
|
802
808
|
width: 1.5rem;
|
|
803
809
|
}
|
|
804
|
-
.ps-w-64 {
|
|
805
|
-
width: 16rem;
|
|
806
|
-
}
|
|
807
810
|
.ps-w-72 {
|
|
808
811
|
width: 18rem;
|
|
809
812
|
}
|
|
@@ -826,6 +829,10 @@ video {
|
|
|
826
829
|
width: -moz-max-content;
|
|
827
830
|
width: max-content;
|
|
828
831
|
}
|
|
832
|
+
.ps-w-min {
|
|
833
|
+
width: -moz-min-content;
|
|
834
|
+
width: min-content;
|
|
835
|
+
}
|
|
829
836
|
.ps-w-px {
|
|
830
837
|
width: 1px;
|
|
831
838
|
}
|
|
@@ -943,6 +950,9 @@ video {
|
|
|
943
950
|
.ps-cursor-default {
|
|
944
951
|
cursor: default;
|
|
945
952
|
}
|
|
953
|
+
.ps-cursor-grab {
|
|
954
|
+
cursor: grab;
|
|
955
|
+
}
|
|
946
956
|
.ps-cursor-pointer {
|
|
947
957
|
cursor: pointer;
|
|
948
958
|
}
|
|
@@ -1147,6 +1157,14 @@ video {
|
|
|
1147
1157
|
.ps-bg-muted\/50 {
|
|
1148
1158
|
background-color: hsl(var(--muted) / 0.5);
|
|
1149
1159
|
}
|
|
1160
|
+
.ps-bg-neutral-100 {
|
|
1161
|
+
--tw-bg-opacity: 1;
|
|
1162
|
+
background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
|
|
1163
|
+
}
|
|
1164
|
+
.ps-bg-neutral-50 {
|
|
1165
|
+
--tw-bg-opacity: 1;
|
|
1166
|
+
background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
|
|
1167
|
+
}
|
|
1150
1168
|
.ps-bg-popover {
|
|
1151
1169
|
background-color: hsl(var(--popover));
|
|
1152
1170
|
}
|
|
@@ -1163,9 +1181,8 @@ video {
|
|
|
1163
1181
|
.ps-bg-secondary {
|
|
1164
1182
|
background-color: hsl(var(--secondary));
|
|
1165
1183
|
}
|
|
1166
|
-
.ps-bg-slate-
|
|
1167
|
-
|
|
1168
|
-
background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
|
|
1184
|
+
.ps-bg-slate-50\/50 {
|
|
1185
|
+
background-color: rgb(248 250 252 / 0.5);
|
|
1169
1186
|
}
|
|
1170
1187
|
.ps-bg-table-head {
|
|
1171
1188
|
background-color: hsl(var(--table-head));
|
|
@@ -1194,6 +1211,9 @@ video {
|
|
|
1194
1211
|
.ps-p-6 {
|
|
1195
1212
|
padding: 1.5rem;
|
|
1196
1213
|
}
|
|
1214
|
+
.ps-p-px {
|
|
1215
|
+
padding: 1px;
|
|
1216
|
+
}
|
|
1197
1217
|
.ps-px-0 {
|
|
1198
1218
|
padding-left: 0px;
|
|
1199
1219
|
padding-right: 0px;
|
|
@@ -1364,6 +1384,9 @@ video {
|
|
|
1364
1384
|
.ps-underline-offset-4 {
|
|
1365
1385
|
text-underline-offset: 4px;
|
|
1366
1386
|
}
|
|
1387
|
+
.ps-opacity-40 {
|
|
1388
|
+
opacity: 0.4;
|
|
1389
|
+
}
|
|
1367
1390
|
.ps-opacity-50 {
|
|
1368
1391
|
opacity: 0.5;
|
|
1369
1392
|
}
|
|
@@ -1688,6 +1711,10 @@ body {
|
|
|
1688
1711
|
--tw-ring-offset-color: hsl(var(--background));
|
|
1689
1712
|
}
|
|
1690
1713
|
|
|
1714
|
+
.active\:ps-cursor-grabbing:active {
|
|
1715
|
+
cursor: grabbing;
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1691
1718
|
.disabled\:ps-pointer-events-none:disabled {
|
|
1692
1719
|
pointer-events: none;
|
|
1693
1720
|
}
|
|
@@ -1742,8 +1769,9 @@ body {
|
|
|
1742
1769
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1743
1770
|
}
|
|
1744
1771
|
|
|
1745
|
-
.data-\[active\=true\]\:ps-bg-
|
|
1746
|
-
|
|
1772
|
+
.data-\[active\=true\]\:ps-bg-slate-200[data-active="true"] {
|
|
1773
|
+
--tw-bg-opacity: 1;
|
|
1774
|
+
background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
|
|
1747
1775
|
}
|
|
1748
1776
|
|
|
1749
1777
|
.data-\[state\=checked\]\:ps-bg-primary[data-state="checked"] {
|