@prisma/studio-core 0.0.0-dev.202505140656 → 0.0.0-dev.202505140911
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 +29 -29
- package/dist/ui/index.css +63 -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,9 +703,6 @@ 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
|
}
|
|
@@ -733,10 +724,21 @@ video {
|
|
|
733
724
|
.ps-grid {
|
|
734
725
|
display: grid;
|
|
735
726
|
}
|
|
727
|
+
.ps-hidden {
|
|
728
|
+
display: none;
|
|
729
|
+
}
|
|
736
730
|
.ps-size-4 {
|
|
737
731
|
width: 1rem;
|
|
738
732
|
height: 1rem;
|
|
739
733
|
}
|
|
734
|
+
.ps-size-8 {
|
|
735
|
+
width: 2rem;
|
|
736
|
+
height: 2rem;
|
|
737
|
+
}
|
|
738
|
+
.ps-size-9 {
|
|
739
|
+
width: 2.25rem;
|
|
740
|
+
height: 2.25rem;
|
|
741
|
+
}
|
|
740
742
|
.ps-h-0 {
|
|
741
743
|
height: 0px;
|
|
742
744
|
}
|
|
@@ -764,9 +766,6 @@ video {
|
|
|
764
766
|
.ps-h-6 {
|
|
765
767
|
height: 1.5rem;
|
|
766
768
|
}
|
|
767
|
-
.ps-h-7 {
|
|
768
|
-
height: 1.75rem;
|
|
769
|
-
}
|
|
770
769
|
.ps-h-8 {
|
|
771
770
|
height: 2rem;
|
|
772
771
|
}
|
|
@@ -863,15 +862,9 @@ video {
|
|
|
863
862
|
.ps-w-6 {
|
|
864
863
|
width: 1.5rem;
|
|
865
864
|
}
|
|
866
|
-
.ps-w-7 {
|
|
867
|
-
width: 1.75rem;
|
|
868
|
-
}
|
|
869
865
|
.ps-w-72 {
|
|
870
866
|
width: 18rem;
|
|
871
867
|
}
|
|
872
|
-
.ps-w-8 {
|
|
873
|
-
width: 2rem;
|
|
874
|
-
}
|
|
875
868
|
.ps-w-9 {
|
|
876
869
|
width: 2.25rem;
|
|
877
870
|
}
|
|
@@ -941,9 +934,6 @@ video {
|
|
|
941
934
|
.ps-caption-bottom {
|
|
942
935
|
caption-side: bottom;
|
|
943
936
|
}
|
|
944
|
-
.ps-border-collapse {
|
|
945
|
-
border-collapse: collapse;
|
|
946
|
-
}
|
|
947
937
|
.ps-border-separate {
|
|
948
938
|
border-collapse: separate;
|
|
949
939
|
}
|
|
@@ -1055,6 +1045,9 @@ video {
|
|
|
1055
1045
|
-moz-appearance: none;
|
|
1056
1046
|
appearance: none;
|
|
1057
1047
|
}
|
|
1048
|
+
.ps-grid-cols-2 {
|
|
1049
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1050
|
+
}
|
|
1058
1051
|
.ps-flex-row {
|
|
1059
1052
|
flex-direction: row;
|
|
1060
1053
|
}
|
|
@@ -1070,6 +1063,9 @@ video {
|
|
|
1070
1063
|
.ps-items-start {
|
|
1071
1064
|
align-items: flex-start;
|
|
1072
1065
|
}
|
|
1066
|
+
.ps-items-end {
|
|
1067
|
+
align-items: flex-end;
|
|
1068
|
+
}
|
|
1073
1069
|
.ps-items-center {
|
|
1074
1070
|
align-items: center;
|
|
1075
1071
|
}
|
|
@@ -1094,21 +1090,11 @@ video {
|
|
|
1094
1090
|
.ps-gap-px {
|
|
1095
1091
|
gap: 1px;
|
|
1096
1092
|
}
|
|
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
1093
|
.ps-space-x-2 > :not([hidden]) ~ :not([hidden]) {
|
|
1103
1094
|
--tw-space-x-reverse: 0;
|
|
1104
1095
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
1105
1096
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1106
1097
|
}
|
|
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
1098
|
.ps-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
|
|
1113
1099
|
--tw-space-y-reverse: 0;
|
|
1114
1100
|
margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
|
|
@@ -1119,11 +1105,6 @@ video {
|
|
|
1119
1105
|
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1120
1106
|
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
|
|
1121
1107
|
}
|
|
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
1108
|
.ps-self-start {
|
|
1128
1109
|
align-self: flex-start;
|
|
1129
1110
|
}
|
|
@@ -1178,10 +1159,18 @@ video {
|
|
|
1178
1159
|
border-bottom-right-radius: var(--radius);
|
|
1179
1160
|
border-bottom-left-radius: var(--radius);
|
|
1180
1161
|
}
|
|
1162
|
+
.ps-rounded-e-md {
|
|
1163
|
+
border-start-end-radius: calc(var(--radius) - 2px);
|
|
1164
|
+
border-end-end-radius: calc(var(--radius) - 2px);
|
|
1165
|
+
}
|
|
1181
1166
|
.ps-rounded-r-full {
|
|
1182
1167
|
border-top-right-radius: 9999px;
|
|
1183
1168
|
border-bottom-right-radius: 9999px;
|
|
1184
1169
|
}
|
|
1170
|
+
.ps-rounded-s-md {
|
|
1171
|
+
border-start-start-radius: calc(var(--radius) - 2px);
|
|
1172
|
+
border-end-start-radius: calc(var(--radius) - 2px);
|
|
1173
|
+
}
|
|
1185
1174
|
.ps-rounded-t-lg {
|
|
1186
1175
|
border-top-left-radius: var(--radius);
|
|
1187
1176
|
border-top-right-radius: var(--radius);
|
|
@@ -1213,10 +1202,6 @@ video {
|
|
|
1213
1202
|
.ps-border-input {
|
|
1214
1203
|
border-color: hsl(var(--input));
|
|
1215
1204
|
}
|
|
1216
|
-
.ps-border-neutral-200 {
|
|
1217
|
-
--tw-border-opacity: 1;
|
|
1218
|
-
border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
|
|
1219
|
-
}
|
|
1220
1205
|
.ps-border-primary {
|
|
1221
1206
|
border-color: hsl(var(--primary));
|
|
1222
1207
|
}
|
|
@@ -1230,9 +1215,6 @@ video {
|
|
|
1230
1215
|
--tw-border-opacity: 1;
|
|
1231
1216
|
border-color: rgb(139 92 246 / var(--tw-border-opacity, 1));
|
|
1232
1217
|
}
|
|
1233
|
-
.\!ps-bg-primary {
|
|
1234
|
-
background-color: hsl(var(--primary)) !important;
|
|
1235
|
-
}
|
|
1236
1218
|
.ps-bg-accent {
|
|
1237
1219
|
background-color: hsl(var(--accent));
|
|
1238
1220
|
}
|
|
@@ -1264,6 +1246,9 @@ video {
|
|
|
1264
1246
|
--tw-bg-opacity: 1;
|
|
1265
1247
|
background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
|
|
1266
1248
|
}
|
|
1249
|
+
.ps-bg-neutral-200\/40 {
|
|
1250
|
+
background-color: rgb(229 229 229 / 0.4);
|
|
1251
|
+
}
|
|
1267
1252
|
.ps-bg-neutral-50 {
|
|
1268
1253
|
--tw-bg-opacity: 1;
|
|
1269
1254
|
background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
|
|
@@ -1398,6 +1383,9 @@ video {
|
|
|
1398
1383
|
.ps-pr-\[var\(--studio-cell-spacing\)\] {
|
|
1399
1384
|
padding-right: var(--studio-cell-spacing);
|
|
1400
1385
|
}
|
|
1386
|
+
.ps-pt-3 {
|
|
1387
|
+
padding-top: 0.75rem;
|
|
1388
|
+
}
|
|
1401
1389
|
.ps-pt-4 {
|
|
1402
1390
|
padding-top: 1rem;
|
|
1403
1391
|
}
|
|
@@ -1416,9 +1404,6 @@ video {
|
|
|
1416
1404
|
.ps-font-mono {
|
|
1417
1405
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
1418
1406
|
}
|
|
1419
|
-
.ps-text-\[0\.8rem\] {
|
|
1420
|
-
font-size: 0.8rem;
|
|
1421
|
-
}
|
|
1422
1407
|
.ps-text-\[8px\] {
|
|
1423
1408
|
font-size: 8px;
|
|
1424
1409
|
}
|
|
@@ -1434,9 +1419,6 @@ video {
|
|
|
1434
1419
|
font-size: 0.75rem;
|
|
1435
1420
|
line-height: 1rem;
|
|
1436
1421
|
}
|
|
1437
|
-
.ps-font-bold {
|
|
1438
|
-
font-weight: 700;
|
|
1439
|
-
}
|
|
1440
1422
|
.ps-font-medium {
|
|
1441
1423
|
font-weight: 500;
|
|
1442
1424
|
}
|
|
@@ -1467,11 +1449,8 @@ video {
|
|
|
1467
1449
|
.ps-tracking-widest {
|
|
1468
1450
|
letter-spacing: 0.1em;
|
|
1469
1451
|
}
|
|
1470
|
-
.\!ps-text-
|
|
1471
|
-
color: hsl(var(--
|
|
1472
|
-
}
|
|
1473
|
-
.ps-text-accent-foreground {
|
|
1474
|
-
color: hsl(var(--accent-foreground));
|
|
1452
|
+
.\!ps-text-foreground {
|
|
1453
|
+
color: hsl(var(--foreground)) !important;
|
|
1475
1454
|
}
|
|
1476
1455
|
.ps-text-blue-500 {
|
|
1477
1456
|
--tw-text-opacity: 1;
|
|
@@ -1602,6 +1581,9 @@ video {
|
|
|
1602
1581
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1603
1582
|
transition-duration: 150ms;
|
|
1604
1583
|
}
|
|
1584
|
+
.ps-transition-none {
|
|
1585
|
+
transition-property: none;
|
|
1586
|
+
}
|
|
1605
1587
|
.ps-transition-opacity {
|
|
1606
1588
|
transition-property: opacity;
|
|
1607
1589
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -1728,15 +1710,6 @@ body {
|
|
|
1728
1710
|
.placeholder\:ps-text-muted-foreground::placeholder {
|
|
1729
1711
|
color: hsl(var(--muted-foreground));
|
|
1730
1712
|
}
|
|
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
1713
|
.hover\:ps-border-table-border:hover {
|
|
1741
1714
|
border-color: hsl(var(--table-border));
|
|
1742
1715
|
}
|
|
@@ -1752,9 +1725,6 @@ body {
|
|
|
1752
1725
|
.hover\:ps-bg-muted\/50:hover {
|
|
1753
1726
|
background-color: hsl(var(--muted) / 0.5);
|
|
1754
1727
|
}
|
|
1755
|
-
.hover\:ps-bg-primary:hover {
|
|
1756
|
-
background-color: hsl(var(--primary));
|
|
1757
|
-
}
|
|
1758
1728
|
.hover\:ps-bg-primary\/80:hover {
|
|
1759
1729
|
background-color: hsl(var(--primary) / 0.8);
|
|
1760
1730
|
}
|
|
@@ -1767,15 +1737,9 @@ body {
|
|
|
1767
1737
|
.hover\:ps-text-accent-foreground:hover {
|
|
1768
1738
|
color: hsl(var(--accent-foreground));
|
|
1769
1739
|
}
|
|
1770
|
-
.hover\:ps-text-card-foreground:hover {
|
|
1771
|
-
color: hsl(var(--card-foreground));
|
|
1772
|
-
}
|
|
1773
1740
|
.hover\:ps-text-foreground:hover {
|
|
1774
1741
|
color: hsl(var(--foreground));
|
|
1775
1742
|
}
|
|
1776
|
-
.hover\:ps-text-primary-foreground:hover {
|
|
1777
|
-
color: hsl(var(--primary-foreground));
|
|
1778
|
-
}
|
|
1779
1743
|
.hover\:ps-underline:hover {
|
|
1780
1744
|
text-decoration-line: underline;
|
|
1781
1745
|
}
|
|
@@ -1785,15 +1749,9 @@ body {
|
|
|
1785
1749
|
.focus\:ps-bg-accent:focus {
|
|
1786
1750
|
background-color: hsl(var(--accent));
|
|
1787
1751
|
}
|
|
1788
|
-
.focus\:ps-bg-primary:focus {
|
|
1789
|
-
background-color: hsl(var(--primary));
|
|
1790
|
-
}
|
|
1791
1752
|
.focus\:ps-text-accent-foreground:focus {
|
|
1792
1753
|
color: hsl(var(--accent-foreground));
|
|
1793
1754
|
}
|
|
1794
|
-
.focus\:ps-text-primary-foreground:focus {
|
|
1795
|
-
color: hsl(var(--primary-foreground));
|
|
1796
|
-
}
|
|
1797
1755
|
.focus\:ps-outline-none:focus {
|
|
1798
1756
|
outline: 2px solid transparent;
|
|
1799
1757
|
outline-offset: 2px;
|
|
@@ -1869,21 +1827,15 @@ body {
|
|
|
1869
1827
|
.ps-peer:disabled ~ .peer-disabled\:ps-opacity-70 {
|
|
1870
1828
|
opacity: 0.7;
|
|
1871
1829
|
}
|
|
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
1830
|
.aria-selected\:ps-text-muted-foreground[aria-selected="true"] {
|
|
1882
1831
|
color: hsl(var(--muted-foreground));
|
|
1883
1832
|
}
|
|
1884
1833
|
.aria-selected\:ps-opacity-100[aria-selected="true"] {
|
|
1885
1834
|
opacity: 1;
|
|
1886
1835
|
}
|
|
1836
|
+
.aria-selected\:ps-opacity-30[aria-selected="true"] {
|
|
1837
|
+
opacity: 0.3;
|
|
1838
|
+
}
|
|
1887
1839
|
.data-\[disabled\]\:ps-pointer-events-none[data-disabled] {
|
|
1888
1840
|
pointer-events: none;
|
|
1889
1841
|
}
|
|
@@ -2073,18 +2025,6 @@ body {
|
|
|
2073
2025
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
2074
2026
|
}
|
|
2075
2027
|
|
|
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
2028
|
.sm\:ps-rounded-lg {
|
|
2089
2029
|
border-radius: var(--radius);
|
|
2090
2030
|
}
|
|
@@ -2100,34 +2040,32 @@ body {
|
|
|
2100
2040
|
line-height: 1.25rem;
|
|
2101
2041
|
}
|
|
2102
2042
|
}
|
|
2103
|
-
.\[\&\:
|
|
2104
|
-
border-
|
|
2105
|
-
|
|
2043
|
+
.\[\&\:last-of-type_td\]\:ps-border-b-0:last-of-type td {
|
|
2044
|
+
border-bottom-width: 0px;
|
|
2045
|
+
}
|
|
2046
|
+
.\[\&\>button\]\:ps-bg-primary>button {
|
|
2047
|
+
background-color: hsl(var(--primary));
|
|
2106
2048
|
}
|
|
2107
|
-
.\[
|
|
2108
|
-
|
|
2109
|
-
border-bottom-left-radius: calc(var(--radius) - 2px);
|
|
2049
|
+
.\[\&\>button\]\:ps-bg-transparent>button {
|
|
2050
|
+
background-color: transparent;
|
|
2110
2051
|
}
|
|
2111
|
-
.\[
|
|
2112
|
-
|
|
2052
|
+
.\[\&\>button\]\:ps-font-bold>button {
|
|
2053
|
+
font-weight: 700;
|
|
2113
2054
|
}
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
border-bottom-left-radius: calc(var(--radius) - 2px);
|
|
2055
|
+
.\[\&\>button\]\:\!ps-text-foreground>button {
|
|
2056
|
+
color: hsl(var(--foreground)) !important;
|
|
2117
2057
|
}
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
2058
|
+
.\[\&\>button\]\:ps-text-accent-foreground>button {
|
|
2059
|
+
color: hsl(var(--accent-foreground));
|
|
2121
2060
|
}
|
|
2122
|
-
.\[
|
|
2123
|
-
|
|
2061
|
+
.\[\&\>button\]\:ps-text-primary-foreground>button {
|
|
2062
|
+
color: hsl(var(--primary-foreground));
|
|
2124
2063
|
}
|
|
2125
|
-
.\[
|
|
2126
|
-
|
|
2127
|
-
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
2064
|
+
.\[\&\>button\]\:hover\:ps-bg-transparent:hover>button {
|
|
2065
|
+
background-color: transparent;
|
|
2128
2066
|
}
|
|
2129
|
-
.\[
|
|
2130
|
-
|
|
2067
|
+
.\[\&\>button\]\:hover\:\!ps-text-foreground:hover>button {
|
|
2068
|
+
color: hsl(var(--foreground)) !important;
|
|
2131
2069
|
}
|
|
2132
2070
|
.\[\&\>span\]\:ps-line-clamp-1>span {
|
|
2133
2071
|
overflow: hidden;
|
|
@@ -2145,9 +2083,11 @@ body {
|
|
|
2145
2083
|
.\[\&\>tr\]\:last\:ps-border-b-0:last-child>tr {
|
|
2146
2084
|
border-bottom-width: 0px;
|
|
2147
2085
|
}
|
|
2148
|
-
.\[
|
|
2149
|
-
|
|
2150
|
-
|
|
2086
|
+
.\[\&\[aria-selected\]\>button\]\:ps-bg-primary[aria-selected]>button {
|
|
2087
|
+
background-color: hsl(var(--primary));
|
|
2088
|
+
}
|
|
2089
|
+
.\[\&\[aria-selected\]\>button\]\:ps-text-primary-foreground[aria-selected]>button {
|
|
2090
|
+
color: hsl(var(--primary-foreground));
|
|
2151
2091
|
}
|
|
2152
2092
|
.\[\&_svg\]\:ps-pointer-events-none svg {
|
|
2153
2093
|
pointer-events: none;
|