@prisma/studio-core 0.0.0-dev.202505131401 → 0.0.0-dev.202505131423
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 +42 -42
- package/dist/ui/index.css +161 -3
- package/dist/ui/index.js +7 -7
- package/package.json +3 -1
package/dist/ui/index.css
CHANGED
|
@@ -596,6 +596,9 @@ video {
|
|
|
596
596
|
.ps-pointer-events-none {
|
|
597
597
|
pointer-events: none;
|
|
598
598
|
}
|
|
599
|
+
.ps-invisible {
|
|
600
|
+
visibility: hidden;
|
|
601
|
+
}
|
|
599
602
|
.ps-fixed {
|
|
600
603
|
position: fixed;
|
|
601
604
|
}
|
|
@@ -631,6 +634,9 @@ video {
|
|
|
631
634
|
.ps-left-0 {
|
|
632
635
|
left: 0px;
|
|
633
636
|
}
|
|
637
|
+
.ps-left-1 {
|
|
638
|
+
left: 0.25rem;
|
|
639
|
+
}
|
|
634
640
|
.ps-left-2 {
|
|
635
641
|
left: 0.5rem;
|
|
636
642
|
}
|
|
@@ -640,6 +646,9 @@ video {
|
|
|
640
646
|
.ps-right-0 {
|
|
641
647
|
right: 0px;
|
|
642
648
|
}
|
|
649
|
+
.ps-right-1 {
|
|
650
|
+
right: 0.25rem;
|
|
651
|
+
}
|
|
643
652
|
.ps-right-2 {
|
|
644
653
|
right: 0.5rem;
|
|
645
654
|
}
|
|
@@ -688,6 +697,9 @@ video {
|
|
|
688
697
|
margin-top: 0.25rem;
|
|
689
698
|
margin-bottom: 0.25rem;
|
|
690
699
|
}
|
|
700
|
+
.ps-mb-1 {
|
|
701
|
+
margin-bottom: 0.25rem;
|
|
702
|
+
}
|
|
691
703
|
.ps-ml-1 {
|
|
692
704
|
margin-left: 0.25rem;
|
|
693
705
|
}
|
|
@@ -700,6 +712,9 @@ video {
|
|
|
700
712
|
.ps-mr-auto {
|
|
701
713
|
margin-right: auto;
|
|
702
714
|
}
|
|
715
|
+
.ps-mt-0 {
|
|
716
|
+
margin-top: 0px;
|
|
717
|
+
}
|
|
703
718
|
.ps-mt-4 {
|
|
704
719
|
margin-top: 1rem;
|
|
705
720
|
}
|
|
@@ -749,6 +764,9 @@ video {
|
|
|
749
764
|
.ps-h-6 {
|
|
750
765
|
height: 1.5rem;
|
|
751
766
|
}
|
|
767
|
+
.ps-h-7 {
|
|
768
|
+
height: 1.75rem;
|
|
769
|
+
}
|
|
752
770
|
.ps-h-8 {
|
|
753
771
|
height: 2rem;
|
|
754
772
|
}
|
|
@@ -845,9 +863,15 @@ video {
|
|
|
845
863
|
.ps-w-6 {
|
|
846
864
|
width: 1.5rem;
|
|
847
865
|
}
|
|
866
|
+
.ps-w-7 {
|
|
867
|
+
width: 1.75rem;
|
|
868
|
+
}
|
|
848
869
|
.ps-w-72 {
|
|
849
870
|
width: 18rem;
|
|
850
871
|
}
|
|
872
|
+
.ps-w-8 {
|
|
873
|
+
width: 2rem;
|
|
874
|
+
}
|
|
851
875
|
.ps-w-9 {
|
|
852
876
|
width: 2.25rem;
|
|
853
877
|
}
|
|
@@ -877,9 +901,6 @@ video {
|
|
|
877
901
|
.ps-min-w-0 {
|
|
878
902
|
min-width: 0px;
|
|
879
903
|
}
|
|
880
|
-
.ps-min-w-72 {
|
|
881
|
-
min-width: 18rem;
|
|
882
|
-
}
|
|
883
904
|
.ps-min-w-\[8rem\] {
|
|
884
905
|
min-width: 8rem;
|
|
885
906
|
}
|
|
@@ -892,6 +913,10 @@ video {
|
|
|
892
913
|
.ps-min-w-full {
|
|
893
914
|
min-width: 100%;
|
|
894
915
|
}
|
|
916
|
+
.ps-min-w-max {
|
|
917
|
+
min-width: -moz-max-content;
|
|
918
|
+
min-width: max-content;
|
|
919
|
+
}
|
|
895
920
|
.ps-max-w-72 {
|
|
896
921
|
max-width: 18rem;
|
|
897
922
|
}
|
|
@@ -916,6 +941,9 @@ video {
|
|
|
916
941
|
.ps-caption-bottom {
|
|
917
942
|
caption-side: bottom;
|
|
918
943
|
}
|
|
944
|
+
.ps-border-collapse {
|
|
945
|
+
border-collapse: collapse;
|
|
946
|
+
}
|
|
919
947
|
.ps-border-separate {
|
|
920
948
|
border-collapse: separate;
|
|
921
949
|
}
|
|
@@ -1066,11 +1094,21 @@ video {
|
|
|
1066
1094
|
.ps-gap-px {
|
|
1067
1095
|
gap: 1px;
|
|
1068
1096
|
}
|
|
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
|
+
}
|
|
1069
1102
|
.ps-space-x-2 > :not([hidden]) ~ :not([hidden]) {
|
|
1070
1103
|
--tw-space-x-reverse: 0;
|
|
1071
1104
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
1072
1105
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1073
1106
|
}
|
|
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
|
+
}
|
|
1074
1112
|
.ps-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
|
|
1075
1113
|
--tw-space-y-reverse: 0;
|
|
1076
1114
|
margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
|
|
@@ -1081,6 +1119,11 @@ video {
|
|
|
1081
1119
|
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1082
1120
|
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
|
|
1083
1121
|
}
|
|
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
|
+
}
|
|
1084
1127
|
.ps-self-start {
|
|
1085
1128
|
align-self: flex-start;
|
|
1086
1129
|
}
|
|
@@ -1170,6 +1213,10 @@ video {
|
|
|
1170
1213
|
.ps-border-input {
|
|
1171
1214
|
border-color: hsl(var(--input));
|
|
1172
1215
|
}
|
|
1216
|
+
.ps-border-neutral-200 {
|
|
1217
|
+
--tw-border-opacity: 1;
|
|
1218
|
+
border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
|
|
1219
|
+
}
|
|
1173
1220
|
.ps-border-primary {
|
|
1174
1221
|
border-color: hsl(var(--primary));
|
|
1175
1222
|
}
|
|
@@ -1183,6 +1230,12 @@ video {
|
|
|
1183
1230
|
--tw-border-opacity: 1;
|
|
1184
1231
|
border-color: rgb(139 92 246 / var(--tw-border-opacity, 1));
|
|
1185
1232
|
}
|
|
1233
|
+
.\!ps-bg-primary {
|
|
1234
|
+
background-color: hsl(var(--primary)) !important;
|
|
1235
|
+
}
|
|
1236
|
+
.ps-bg-accent {
|
|
1237
|
+
background-color: hsl(var(--accent));
|
|
1238
|
+
}
|
|
1186
1239
|
.ps-bg-background {
|
|
1187
1240
|
background-color: hsl(var(--background));
|
|
1188
1241
|
}
|
|
@@ -1342,6 +1395,9 @@ video {
|
|
|
1342
1395
|
.ps-pr-8 {
|
|
1343
1396
|
padding-right: 2rem;
|
|
1344
1397
|
}
|
|
1398
|
+
.ps-pr-\[var\(--studio-cell-spacing\)\] {
|
|
1399
|
+
padding-right: var(--studio-cell-spacing);
|
|
1400
|
+
}
|
|
1345
1401
|
.ps-pt-4 {
|
|
1346
1402
|
padding-top: 1rem;
|
|
1347
1403
|
}
|
|
@@ -1351,12 +1407,18 @@ video {
|
|
|
1351
1407
|
.ps-text-center {
|
|
1352
1408
|
text-align: center;
|
|
1353
1409
|
}
|
|
1410
|
+
.ps-text-right {
|
|
1411
|
+
text-align: right;
|
|
1412
|
+
}
|
|
1354
1413
|
.ps-align-middle {
|
|
1355
1414
|
vertical-align: middle;
|
|
1356
1415
|
}
|
|
1357
1416
|
.ps-font-mono {
|
|
1358
1417
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
1359
1418
|
}
|
|
1419
|
+
.ps-text-\[0\.8rem\] {
|
|
1420
|
+
font-size: 0.8rem;
|
|
1421
|
+
}
|
|
1360
1422
|
.ps-text-\[8px\] {
|
|
1361
1423
|
font-size: 8px;
|
|
1362
1424
|
}
|
|
@@ -1372,9 +1434,15 @@ video {
|
|
|
1372
1434
|
font-size: 0.75rem;
|
|
1373
1435
|
line-height: 1rem;
|
|
1374
1436
|
}
|
|
1437
|
+
.ps-font-bold {
|
|
1438
|
+
font-weight: 700;
|
|
1439
|
+
}
|
|
1375
1440
|
.ps-font-medium {
|
|
1376
1441
|
font-weight: 500;
|
|
1377
1442
|
}
|
|
1443
|
+
.ps-font-normal {
|
|
1444
|
+
font-weight: 400;
|
|
1445
|
+
}
|
|
1378
1446
|
.ps-font-semibold {
|
|
1379
1447
|
font-weight: 600;
|
|
1380
1448
|
}
|
|
@@ -1399,6 +1467,12 @@ video {
|
|
|
1399
1467
|
.ps-tracking-widest {
|
|
1400
1468
|
letter-spacing: 0.1em;
|
|
1401
1469
|
}
|
|
1470
|
+
.\!ps-text-primary-foreground {
|
|
1471
|
+
color: hsl(var(--primary-foreground)) !important;
|
|
1472
|
+
}
|
|
1473
|
+
.ps-text-accent-foreground {
|
|
1474
|
+
color: hsl(var(--accent-foreground));
|
|
1475
|
+
}
|
|
1402
1476
|
.ps-text-blue-500 {
|
|
1403
1477
|
--tw-text-opacity: 1;
|
|
1404
1478
|
color: rgb(59 130 246 / var(--tw-text-opacity, 1));
|
|
@@ -1654,6 +1728,15 @@ body {
|
|
|
1654
1728
|
.placeholder\:ps-text-muted-foreground::placeholder {
|
|
1655
1729
|
color: hsl(var(--muted-foreground));
|
|
1656
1730
|
}
|
|
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
|
+
}
|
|
1657
1740
|
.hover\:ps-border-table-border:hover {
|
|
1658
1741
|
border-color: hsl(var(--table-border));
|
|
1659
1742
|
}
|
|
@@ -1669,6 +1752,9 @@ body {
|
|
|
1669
1752
|
.hover\:ps-bg-muted\/50:hover {
|
|
1670
1753
|
background-color: hsl(var(--muted) / 0.5);
|
|
1671
1754
|
}
|
|
1755
|
+
.hover\:ps-bg-primary:hover {
|
|
1756
|
+
background-color: hsl(var(--primary));
|
|
1757
|
+
}
|
|
1672
1758
|
.hover\:ps-bg-primary\/80:hover {
|
|
1673
1759
|
background-color: hsl(var(--primary) / 0.8);
|
|
1674
1760
|
}
|
|
@@ -1681,9 +1767,15 @@ body {
|
|
|
1681
1767
|
.hover\:ps-text-accent-foreground:hover {
|
|
1682
1768
|
color: hsl(var(--accent-foreground));
|
|
1683
1769
|
}
|
|
1770
|
+
.hover\:ps-text-card-foreground:hover {
|
|
1771
|
+
color: hsl(var(--card-foreground));
|
|
1772
|
+
}
|
|
1684
1773
|
.hover\:ps-text-foreground:hover {
|
|
1685
1774
|
color: hsl(var(--foreground));
|
|
1686
1775
|
}
|
|
1776
|
+
.hover\:ps-text-primary-foreground:hover {
|
|
1777
|
+
color: hsl(var(--primary-foreground));
|
|
1778
|
+
}
|
|
1687
1779
|
.hover\:ps-underline:hover {
|
|
1688
1780
|
text-decoration-line: underline;
|
|
1689
1781
|
}
|
|
@@ -1693,9 +1785,15 @@ body {
|
|
|
1693
1785
|
.focus\:ps-bg-accent:focus {
|
|
1694
1786
|
background-color: hsl(var(--accent));
|
|
1695
1787
|
}
|
|
1788
|
+
.focus\:ps-bg-primary:focus {
|
|
1789
|
+
background-color: hsl(var(--primary));
|
|
1790
|
+
}
|
|
1696
1791
|
.focus\:ps-text-accent-foreground:focus {
|
|
1697
1792
|
color: hsl(var(--accent-foreground));
|
|
1698
1793
|
}
|
|
1794
|
+
.focus\:ps-text-primary-foreground:focus {
|
|
1795
|
+
color: hsl(var(--primary-foreground));
|
|
1796
|
+
}
|
|
1699
1797
|
.focus\:ps-outline-none:focus {
|
|
1700
1798
|
outline: 2px solid transparent;
|
|
1701
1799
|
outline-offset: 2px;
|
|
@@ -1771,6 +1869,21 @@ body {
|
|
|
1771
1869
|
.ps-peer:disabled ~ .peer-disabled\:ps-opacity-70 {
|
|
1772
1870
|
opacity: 0.7;
|
|
1773
1871
|
}
|
|
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
|
+
.aria-selected\:ps-text-muted-foreground[aria-selected="true"] {
|
|
1882
|
+
color: hsl(var(--muted-foreground));
|
|
1883
|
+
}
|
|
1884
|
+
.aria-selected\:ps-opacity-100[aria-selected="true"] {
|
|
1885
|
+
opacity: 1;
|
|
1886
|
+
}
|
|
1774
1887
|
.data-\[disabled\]\:ps-pointer-events-none[data-disabled] {
|
|
1775
1888
|
pointer-events: none;
|
|
1776
1889
|
}
|
|
@@ -1798,6 +1911,9 @@ body {
|
|
|
1798
1911
|
--tw-translate-x: 0px;
|
|
1799
1912
|
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));
|
|
1800
1913
|
}
|
|
1914
|
+
.data-\[state\=open\]\:ps-border-primary[data-state="open"] {
|
|
1915
|
+
border-color: hsl(var(--primary));
|
|
1916
|
+
}
|
|
1801
1917
|
.data-\[active\=true\]\:ps-bg-slate-200[data-active="true"] {
|
|
1802
1918
|
--tw-bg-opacity: 1;
|
|
1803
1919
|
background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
|
|
@@ -1957,6 +2073,18 @@ body {
|
|
|
1957
2073
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1958
2074
|
}
|
|
1959
2075
|
|
|
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
|
+
|
|
1960
2088
|
.sm\:ps-rounded-lg {
|
|
1961
2089
|
border-radius: var(--radius);
|
|
1962
2090
|
}
|
|
@@ -1972,6 +2100,32 @@ body {
|
|
|
1972
2100
|
line-height: 1.25rem;
|
|
1973
2101
|
}
|
|
1974
2102
|
}
|
|
2103
|
+
.\[\&\:has\(\>\.day-range-end\)\]\:ps-rounded-r-md:has(>.day-range-end) {
|
|
2104
|
+
border-top-right-radius: calc(var(--radius) - 2px);
|
|
2105
|
+
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
2106
|
+
}
|
|
2107
|
+
.\[\&\:has\(\>\.day-range-start\)\]\:ps-rounded-l-md:has(>.day-range-start) {
|
|
2108
|
+
border-top-left-radius: calc(var(--radius) - 2px);
|
|
2109
|
+
border-bottom-left-radius: calc(var(--radius) - 2px);
|
|
2110
|
+
}
|
|
2111
|
+
.\[\&\:has\(\[aria-selected\]\)\]\:ps-rounded-md:has([aria-selected]) {
|
|
2112
|
+
border-radius: calc(var(--radius) - 2px);
|
|
2113
|
+
}
|
|
2114
|
+
.first\:\[\&\:has\(\[aria-selected\]\)\]\:ps-rounded-l-md:has([aria-selected]):first-child {
|
|
2115
|
+
border-top-left-radius: calc(var(--radius) - 2px);
|
|
2116
|
+
border-bottom-left-radius: calc(var(--radius) - 2px);
|
|
2117
|
+
}
|
|
2118
|
+
.last\:\[\&\:has\(\[aria-selected\]\)\]\:ps-rounded-r-md:has([aria-selected]):last-child {
|
|
2119
|
+
border-top-right-radius: calc(var(--radius) - 2px);
|
|
2120
|
+
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
2121
|
+
}
|
|
2122
|
+
.\[\&\:has\(\[aria-selected\]\.day-outside\)\]\:ps-bg-accent\/50:has([aria-selected].day-outside) {
|
|
2123
|
+
background-color: hsl(var(--accent) / 0.5);
|
|
2124
|
+
}
|
|
2125
|
+
.\[\&\:has\(\[aria-selected\]\.day-range-end\)\]\:ps-rounded-r-md:has([aria-selected].day-range-end) {
|
|
2126
|
+
border-top-right-radius: calc(var(--radius) - 2px);
|
|
2127
|
+
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
2128
|
+
}
|
|
1975
2129
|
.\[\&\:last-of-type_td\]\:ps-border-b-0:last-of-type td {
|
|
1976
2130
|
border-bottom-width: 0px;
|
|
1977
2131
|
}
|
|
@@ -1991,6 +2145,10 @@ body {
|
|
|
1991
2145
|
.\[\&\>tr\]\:last\:ps-border-b-0:last-child>tr {
|
|
1992
2146
|
border-bottom-width: 0px;
|
|
1993
2147
|
}
|
|
2148
|
+
.\[\&_button\]\:ps-text-xs button {
|
|
2149
|
+
font-size: 0.75rem;
|
|
2150
|
+
line-height: 1rem;
|
|
2151
|
+
}
|
|
1994
2152
|
.\[\&_svg\]\:ps-pointer-events-none svg {
|
|
1995
2153
|
pointer-events: none;
|
|
1996
2154
|
}
|