@prisma/studio-core 0.0.0-dev.202505140827 → 0.0.0-dev.202505140954
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 +123 -123
- package/dist/ui/index.css +69 -123
- package/dist/ui/index.js +7 -7
- package/package.json +1 -1
package/dist/ui/index.css
CHANGED
|
@@ -634,9 +634,6 @@ video {
|
|
|
634
634
|
.ps-left-0 {
|
|
635
635
|
left: 0px;
|
|
636
636
|
}
|
|
637
|
-
.ps-left-1 {
|
|
638
|
-
left: 0.25rem;
|
|
639
|
-
}
|
|
640
637
|
.ps-left-2 {
|
|
641
638
|
left: 0.5rem;
|
|
642
639
|
}
|
|
@@ -646,9 +643,6 @@ video {
|
|
|
646
643
|
.ps-right-0 {
|
|
647
644
|
right: 0px;
|
|
648
645
|
}
|
|
649
|
-
.ps-right-1 {
|
|
650
|
-
right: 0.25rem;
|
|
651
|
-
}
|
|
652
646
|
.ps-right-2 {
|
|
653
647
|
right: 0.5rem;
|
|
654
648
|
}
|
|
@@ -709,12 +703,12 @@ video {
|
|
|
709
703
|
.ps-ml-auto {
|
|
710
704
|
margin-left: auto;
|
|
711
705
|
}
|
|
712
|
-
.ps-mr-auto {
|
|
713
|
-
margin-right: auto;
|
|
714
|
-
}
|
|
715
706
|
.ps-mt-0 {
|
|
716
707
|
margin-top: 0px;
|
|
717
708
|
}
|
|
709
|
+
.ps-mt-1 {
|
|
710
|
+
margin-top: 0.25rem;
|
|
711
|
+
}
|
|
718
712
|
.ps-mt-4 {
|
|
719
713
|
margin-top: 1rem;
|
|
720
714
|
}
|
|
@@ -733,10 +727,21 @@ video {
|
|
|
733
727
|
.ps-grid {
|
|
734
728
|
display: grid;
|
|
735
729
|
}
|
|
730
|
+
.ps-hidden {
|
|
731
|
+
display: none;
|
|
732
|
+
}
|
|
736
733
|
.ps-size-4 {
|
|
737
734
|
width: 1rem;
|
|
738
735
|
height: 1rem;
|
|
739
736
|
}
|
|
737
|
+
.ps-size-8 {
|
|
738
|
+
width: 2rem;
|
|
739
|
+
height: 2rem;
|
|
740
|
+
}
|
|
741
|
+
.ps-size-9 {
|
|
742
|
+
width: 2.25rem;
|
|
743
|
+
height: 2.25rem;
|
|
744
|
+
}
|
|
740
745
|
.ps-h-0 {
|
|
741
746
|
height: 0px;
|
|
742
747
|
}
|
|
@@ -764,9 +769,6 @@ video {
|
|
|
764
769
|
.ps-h-6 {
|
|
765
770
|
height: 1.5rem;
|
|
766
771
|
}
|
|
767
|
-
.ps-h-7 {
|
|
768
|
-
height: 1.75rem;
|
|
769
|
-
}
|
|
770
772
|
.ps-h-8 {
|
|
771
773
|
height: 2rem;
|
|
772
774
|
}
|
|
@@ -863,15 +865,9 @@ video {
|
|
|
863
865
|
.ps-w-6 {
|
|
864
866
|
width: 1.5rem;
|
|
865
867
|
}
|
|
866
|
-
.ps-w-7 {
|
|
867
|
-
width: 1.75rem;
|
|
868
|
-
}
|
|
869
868
|
.ps-w-72 {
|
|
870
869
|
width: 18rem;
|
|
871
870
|
}
|
|
872
|
-
.ps-w-8 {
|
|
873
|
-
width: 2rem;
|
|
874
|
-
}
|
|
875
871
|
.ps-w-9 {
|
|
876
872
|
width: 2.25rem;
|
|
877
873
|
}
|
|
@@ -941,9 +937,6 @@ video {
|
|
|
941
937
|
.ps-caption-bottom {
|
|
942
938
|
caption-side: bottom;
|
|
943
939
|
}
|
|
944
|
-
.ps-border-collapse {
|
|
945
|
-
border-collapse: collapse;
|
|
946
|
-
}
|
|
947
940
|
.ps-border-separate {
|
|
948
941
|
border-collapse: separate;
|
|
949
942
|
}
|
|
@@ -1055,6 +1048,9 @@ video {
|
|
|
1055
1048
|
-moz-appearance: none;
|
|
1056
1049
|
appearance: none;
|
|
1057
1050
|
}
|
|
1051
|
+
.ps-grid-cols-2 {
|
|
1052
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1053
|
+
}
|
|
1058
1054
|
.ps-flex-row {
|
|
1059
1055
|
flex-direction: row;
|
|
1060
1056
|
}
|
|
@@ -1070,9 +1066,15 @@ video {
|
|
|
1070
1066
|
.ps-items-start {
|
|
1071
1067
|
align-items: flex-start;
|
|
1072
1068
|
}
|
|
1069
|
+
.ps-items-end {
|
|
1070
|
+
align-items: flex-end;
|
|
1071
|
+
}
|
|
1073
1072
|
.ps-items-center {
|
|
1074
1073
|
align-items: center;
|
|
1075
1074
|
}
|
|
1075
|
+
.ps-justify-start {
|
|
1076
|
+
justify-content: flex-start;
|
|
1077
|
+
}
|
|
1076
1078
|
.ps-justify-center {
|
|
1077
1079
|
justify-content: center;
|
|
1078
1080
|
}
|
|
@@ -1094,21 +1096,11 @@ video {
|
|
|
1094
1096
|
.ps-gap-px {
|
|
1095
1097
|
gap: 1px;
|
|
1096
1098
|
}
|
|
1097
|
-
.ps-space-x-1 > :not([hidden]) ~ :not([hidden]) {
|
|
1098
|
-
--tw-space-x-reverse: 0;
|
|
1099
|
-
margin-right: calc(0.25rem * var(--tw-space-x-reverse));
|
|
1100
|
-
margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1101
|
-
}
|
|
1102
1099
|
.ps-space-x-2 > :not([hidden]) ~ :not([hidden]) {
|
|
1103
1100
|
--tw-space-x-reverse: 0;
|
|
1104
1101
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
1105
1102
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1106
1103
|
}
|
|
1107
|
-
.ps-space-y-1 > :not([hidden]) ~ :not([hidden]) {
|
|
1108
|
-
--tw-space-y-reverse: 0;
|
|
1109
|
-
margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1110
|
-
margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
|
|
1111
|
-
}
|
|
1112
1104
|
.ps-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
|
|
1113
1105
|
--tw-space-y-reverse: 0;
|
|
1114
1106
|
margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
|
|
@@ -1119,11 +1111,6 @@ video {
|
|
|
1119
1111
|
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1120
1112
|
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
|
|
1121
1113
|
}
|
|
1122
|
-
.ps-space-y-4 > :not([hidden]) ~ :not([hidden]) {
|
|
1123
|
-
--tw-space-y-reverse: 0;
|
|
1124
|
-
margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1125
|
-
margin-bottom: calc(1rem * var(--tw-space-y-reverse));
|
|
1126
|
-
}
|
|
1127
1114
|
.ps-self-start {
|
|
1128
1115
|
align-self: flex-start;
|
|
1129
1116
|
}
|
|
@@ -1178,10 +1165,18 @@ video {
|
|
|
1178
1165
|
border-bottom-right-radius: var(--radius);
|
|
1179
1166
|
border-bottom-left-radius: var(--radius);
|
|
1180
1167
|
}
|
|
1168
|
+
.ps-rounded-e-md {
|
|
1169
|
+
border-start-end-radius: calc(var(--radius) - 2px);
|
|
1170
|
+
border-end-end-radius: calc(var(--radius) - 2px);
|
|
1171
|
+
}
|
|
1181
1172
|
.ps-rounded-r-full {
|
|
1182
1173
|
border-top-right-radius: 9999px;
|
|
1183
1174
|
border-bottom-right-radius: 9999px;
|
|
1184
1175
|
}
|
|
1176
|
+
.ps-rounded-s-md {
|
|
1177
|
+
border-start-start-radius: calc(var(--radius) - 2px);
|
|
1178
|
+
border-end-start-radius: calc(var(--radius) - 2px);
|
|
1179
|
+
}
|
|
1185
1180
|
.ps-rounded-t-lg {
|
|
1186
1181
|
border-top-left-radius: var(--radius);
|
|
1187
1182
|
border-top-right-radius: var(--radius);
|
|
@@ -1213,10 +1208,6 @@ video {
|
|
|
1213
1208
|
.ps-border-input {
|
|
1214
1209
|
border-color: hsl(var(--input));
|
|
1215
1210
|
}
|
|
1216
|
-
.ps-border-neutral-200 {
|
|
1217
|
-
--tw-border-opacity: 1;
|
|
1218
|
-
border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
|
|
1219
|
-
}
|
|
1220
1211
|
.ps-border-primary {
|
|
1221
1212
|
border-color: hsl(var(--primary));
|
|
1222
1213
|
}
|
|
@@ -1230,9 +1221,6 @@ video {
|
|
|
1230
1221
|
--tw-border-opacity: 1;
|
|
1231
1222
|
border-color: rgb(139 92 246 / var(--tw-border-opacity, 1));
|
|
1232
1223
|
}
|
|
1233
|
-
.\!ps-bg-primary {
|
|
1234
|
-
background-color: hsl(var(--primary)) !important;
|
|
1235
|
-
}
|
|
1236
1224
|
.ps-bg-accent {
|
|
1237
1225
|
background-color: hsl(var(--accent));
|
|
1238
1226
|
}
|
|
@@ -1264,6 +1252,9 @@ video {
|
|
|
1264
1252
|
--tw-bg-opacity: 1;
|
|
1265
1253
|
background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
|
|
1266
1254
|
}
|
|
1255
|
+
.ps-bg-neutral-200\/40 {
|
|
1256
|
+
background-color: rgb(229 229 229 / 0.4);
|
|
1257
|
+
}
|
|
1267
1258
|
.ps-bg-neutral-50 {
|
|
1268
1259
|
--tw-bg-opacity: 1;
|
|
1269
1260
|
background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
|
|
@@ -1398,6 +1389,9 @@ video {
|
|
|
1398
1389
|
.ps-pr-\[var\(--studio-cell-spacing\)\] {
|
|
1399
1390
|
padding-right: var(--studio-cell-spacing);
|
|
1400
1391
|
}
|
|
1392
|
+
.ps-pt-3 {
|
|
1393
|
+
padding-top: 0.75rem;
|
|
1394
|
+
}
|
|
1401
1395
|
.ps-pt-4 {
|
|
1402
1396
|
padding-top: 1rem;
|
|
1403
1397
|
}
|
|
@@ -1416,9 +1410,6 @@ video {
|
|
|
1416
1410
|
.ps-font-mono {
|
|
1417
1411
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
1418
1412
|
}
|
|
1419
|
-
.ps-text-\[0\.8rem\] {
|
|
1420
|
-
font-size: 0.8rem;
|
|
1421
|
-
}
|
|
1422
1413
|
.ps-text-\[8px\] {
|
|
1423
1414
|
font-size: 8px;
|
|
1424
1415
|
}
|
|
@@ -1434,9 +1425,6 @@ video {
|
|
|
1434
1425
|
font-size: 0.75rem;
|
|
1435
1426
|
line-height: 1rem;
|
|
1436
1427
|
}
|
|
1437
|
-
.ps-font-bold {
|
|
1438
|
-
font-weight: 700;
|
|
1439
|
-
}
|
|
1440
1428
|
.ps-font-medium {
|
|
1441
1429
|
font-weight: 500;
|
|
1442
1430
|
}
|
|
@@ -1467,11 +1455,8 @@ video {
|
|
|
1467
1455
|
.ps-tracking-widest {
|
|
1468
1456
|
letter-spacing: 0.1em;
|
|
1469
1457
|
}
|
|
1470
|
-
.\!ps-text-
|
|
1471
|
-
color: hsl(var(--
|
|
1472
|
-
}
|
|
1473
|
-
.ps-text-accent-foreground {
|
|
1474
|
-
color: hsl(var(--accent-foreground));
|
|
1458
|
+
.\!ps-text-foreground {
|
|
1459
|
+
color: hsl(var(--foreground)) !important;
|
|
1475
1460
|
}
|
|
1476
1461
|
.ps-text-blue-500 {
|
|
1477
1462
|
--tw-text-opacity: 1;
|
|
@@ -1602,6 +1587,9 @@ video {
|
|
|
1602
1587
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1603
1588
|
transition-duration: 150ms;
|
|
1604
1589
|
}
|
|
1590
|
+
.ps-transition-none {
|
|
1591
|
+
transition-property: none;
|
|
1592
|
+
}
|
|
1605
1593
|
.ps-transition-opacity {
|
|
1606
1594
|
transition-property: opacity;
|
|
1607
1595
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -1728,15 +1716,6 @@ body {
|
|
|
1728
1716
|
.placeholder\:ps-text-muted-foreground::placeholder {
|
|
1729
1717
|
color: hsl(var(--muted-foreground));
|
|
1730
1718
|
}
|
|
1731
|
-
.focus-within\:ps-relative:focus-within {
|
|
1732
|
-
position: relative;
|
|
1733
|
-
}
|
|
1734
|
-
.focus-within\:ps-z-20:focus-within {
|
|
1735
|
-
z-index: 20;
|
|
1736
|
-
}
|
|
1737
|
-
.hover\:ps-border-primary:hover {
|
|
1738
|
-
border-color: hsl(var(--primary));
|
|
1739
|
-
}
|
|
1740
1719
|
.hover\:ps-border-table-border:hover {
|
|
1741
1720
|
border-color: hsl(var(--table-border));
|
|
1742
1721
|
}
|
|
@@ -1752,9 +1731,6 @@ body {
|
|
|
1752
1731
|
.hover\:ps-bg-muted\/50:hover {
|
|
1753
1732
|
background-color: hsl(var(--muted) / 0.5);
|
|
1754
1733
|
}
|
|
1755
|
-
.hover\:ps-bg-primary:hover {
|
|
1756
|
-
background-color: hsl(var(--primary));
|
|
1757
|
-
}
|
|
1758
1734
|
.hover\:ps-bg-primary\/80:hover {
|
|
1759
1735
|
background-color: hsl(var(--primary) / 0.8);
|
|
1760
1736
|
}
|
|
@@ -1767,15 +1743,9 @@ body {
|
|
|
1767
1743
|
.hover\:ps-text-accent-foreground:hover {
|
|
1768
1744
|
color: hsl(var(--accent-foreground));
|
|
1769
1745
|
}
|
|
1770
|
-
.hover\:ps-text-card-foreground:hover {
|
|
1771
|
-
color: hsl(var(--card-foreground));
|
|
1772
|
-
}
|
|
1773
1746
|
.hover\:ps-text-foreground:hover {
|
|
1774
1747
|
color: hsl(var(--foreground));
|
|
1775
1748
|
}
|
|
1776
|
-
.hover\:ps-text-primary-foreground:hover {
|
|
1777
|
-
color: hsl(var(--primary-foreground));
|
|
1778
|
-
}
|
|
1779
1749
|
.hover\:ps-underline:hover {
|
|
1780
1750
|
text-decoration-line: underline;
|
|
1781
1751
|
}
|
|
@@ -1785,15 +1755,9 @@ body {
|
|
|
1785
1755
|
.focus\:ps-bg-accent:focus {
|
|
1786
1756
|
background-color: hsl(var(--accent));
|
|
1787
1757
|
}
|
|
1788
|
-
.focus\:ps-bg-primary:focus {
|
|
1789
|
-
background-color: hsl(var(--primary));
|
|
1790
|
-
}
|
|
1791
1758
|
.focus\:ps-text-accent-foreground:focus {
|
|
1792
1759
|
color: hsl(var(--accent-foreground));
|
|
1793
1760
|
}
|
|
1794
|
-
.focus\:ps-text-primary-foreground:focus {
|
|
1795
|
-
color: hsl(var(--primary-foreground));
|
|
1796
|
-
}
|
|
1797
1761
|
.focus\:ps-outline-none:focus {
|
|
1798
1762
|
outline: 2px solid transparent;
|
|
1799
1763
|
outline-offset: 2px;
|
|
@@ -1869,21 +1833,15 @@ body {
|
|
|
1869
1833
|
.ps-peer:disabled ~ .peer-disabled\:ps-opacity-70 {
|
|
1870
1834
|
opacity: 0.7;
|
|
1871
1835
|
}
|
|
1872
|
-
.aria-selected\:ps-bg-accent[aria-selected="true"] {
|
|
1873
|
-
background-color: hsl(var(--accent));
|
|
1874
|
-
}
|
|
1875
|
-
.aria-selected\:ps-bg-accent\/50[aria-selected="true"] {
|
|
1876
|
-
background-color: hsl(var(--accent) / 0.5);
|
|
1877
|
-
}
|
|
1878
|
-
.aria-selected\:ps-text-accent-foreground[aria-selected="true"] {
|
|
1879
|
-
color: hsl(var(--accent-foreground));
|
|
1880
|
-
}
|
|
1881
1836
|
.aria-selected\:ps-text-muted-foreground[aria-selected="true"] {
|
|
1882
1837
|
color: hsl(var(--muted-foreground));
|
|
1883
1838
|
}
|
|
1884
1839
|
.aria-selected\:ps-opacity-100[aria-selected="true"] {
|
|
1885
1840
|
opacity: 1;
|
|
1886
1841
|
}
|
|
1842
|
+
.aria-selected\:ps-opacity-30[aria-selected="true"] {
|
|
1843
|
+
opacity: 0.3;
|
|
1844
|
+
}
|
|
1887
1845
|
.data-\[disabled\]\:ps-pointer-events-none[data-disabled] {
|
|
1888
1846
|
pointer-events: none;
|
|
1889
1847
|
}
|
|
@@ -2073,18 +2031,6 @@ body {
|
|
|
2073
2031
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
2074
2032
|
}
|
|
2075
2033
|
|
|
2076
|
-
.sm\:ps-space-x-4 > :not([hidden]) ~ :not([hidden]) {
|
|
2077
|
-
--tw-space-x-reverse: 0;
|
|
2078
|
-
margin-right: calc(1rem * var(--tw-space-x-reverse));
|
|
2079
|
-
margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
|
|
2080
|
-
}
|
|
2081
|
-
|
|
2082
|
-
.sm\:ps-space-y-0 > :not([hidden]) ~ :not([hidden]) {
|
|
2083
|
-
--tw-space-y-reverse: 0;
|
|
2084
|
-
margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
|
|
2085
|
-
margin-bottom: calc(0px * var(--tw-space-y-reverse));
|
|
2086
|
-
}
|
|
2087
|
-
|
|
2088
2034
|
.sm\:ps-rounded-lg {
|
|
2089
2035
|
border-radius: var(--radius);
|
|
2090
2036
|
}
|
|
@@ -2100,34 +2046,32 @@ body {
|
|
|
2100
2046
|
line-height: 1.25rem;
|
|
2101
2047
|
}
|
|
2102
2048
|
}
|
|
2103
|
-
.\[\&\:
|
|
2104
|
-
border-
|
|
2105
|
-
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
2049
|
+
.\[\&\:last-of-type_td\]\:ps-border-b-0:last-of-type td {
|
|
2050
|
+
border-bottom-width: 0px;
|
|
2106
2051
|
}
|
|
2107
|
-
.\[
|
|
2108
|
-
|
|
2109
|
-
border-bottom-left-radius: calc(var(--radius) - 2px);
|
|
2052
|
+
.\[\&\>button\]\:ps-bg-primary>button {
|
|
2053
|
+
background-color: hsl(var(--primary));
|
|
2110
2054
|
}
|
|
2111
|
-
.\[
|
|
2112
|
-
|
|
2055
|
+
.\[\&\>button\]\:ps-bg-transparent>button {
|
|
2056
|
+
background-color: transparent;
|
|
2113
2057
|
}
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
border-bottom-left-radius: calc(var(--radius) - 2px);
|
|
2058
|
+
.\[\&\>button\]\:ps-font-bold>button {
|
|
2059
|
+
font-weight: 700;
|
|
2117
2060
|
}
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
2061
|
+
.\[\&\>button\]\:\!ps-text-foreground>button {
|
|
2062
|
+
color: hsl(var(--foreground)) !important;
|
|
2121
2063
|
}
|
|
2122
|
-
.\[
|
|
2123
|
-
|
|
2064
|
+
.\[\&\>button\]\:ps-text-accent-foreground>button {
|
|
2065
|
+
color: hsl(var(--accent-foreground));
|
|
2124
2066
|
}
|
|
2125
|
-
.\[
|
|
2126
|
-
|
|
2127
|
-
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
2067
|
+
.\[\&\>button\]\:ps-text-primary-foreground>button {
|
|
2068
|
+
color: hsl(var(--primary-foreground));
|
|
2128
2069
|
}
|
|
2129
|
-
.\[
|
|
2130
|
-
|
|
2070
|
+
.\[\&\>button\]\:hover\:ps-bg-transparent:hover>button {
|
|
2071
|
+
background-color: transparent;
|
|
2072
|
+
}
|
|
2073
|
+
.\[\&\>button\]\:hover\:\!ps-text-foreground:hover>button {
|
|
2074
|
+
color: hsl(var(--foreground)) !important;
|
|
2131
2075
|
}
|
|
2132
2076
|
.\[\&\>span\]\:ps-line-clamp-1>span {
|
|
2133
2077
|
overflow: hidden;
|
|
@@ -2145,9 +2089,11 @@ body {
|
|
|
2145
2089
|
.\[\&\>tr\]\:last\:ps-border-b-0:last-child>tr {
|
|
2146
2090
|
border-bottom-width: 0px;
|
|
2147
2091
|
}
|
|
2148
|
-
.\[
|
|
2149
|
-
|
|
2150
|
-
|
|
2092
|
+
.\[\&\[aria-selected\]\>button\]\:ps-bg-primary[aria-selected]>button {
|
|
2093
|
+
background-color: hsl(var(--primary));
|
|
2094
|
+
}
|
|
2095
|
+
.\[\&\[aria-selected\]\>button\]\:ps-text-primary-foreground[aria-selected]>button {
|
|
2096
|
+
color: hsl(var(--primary-foreground));
|
|
2151
2097
|
}
|
|
2152
2098
|
.\[\&_svg\]\:ps-pointer-events-none svg {
|
|
2153
2099
|
pointer-events: none;
|