@prisma/studio-core 0.0.0-dev.202505101544 → 0.0.0-dev.202505102024
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 +148 -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-2 {
|
|
701
|
+
margin-bottom: 0.5rem;
|
|
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-2 {
|
|
716
|
+
margin-top: 0.5rem;
|
|
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-\[200px\] {
|
|
881
|
-
min-width: 200px;
|
|
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
|
}
|
|
@@ -1057,11 +1085,21 @@ video {
|
|
|
1057
1085
|
.ps-gap-px {
|
|
1058
1086
|
gap: 1px;
|
|
1059
1087
|
}
|
|
1088
|
+
.ps-space-x-1 > :not([hidden]) ~ :not([hidden]) {
|
|
1089
|
+
--tw-space-x-reverse: 0;
|
|
1090
|
+
margin-right: calc(0.25rem * var(--tw-space-x-reverse));
|
|
1091
|
+
margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1092
|
+
}
|
|
1060
1093
|
.ps-space-x-2 > :not([hidden]) ~ :not([hidden]) {
|
|
1061
1094
|
--tw-space-x-reverse: 0;
|
|
1062
1095
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
1063
1096
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1064
1097
|
}
|
|
1098
|
+
.ps-space-y-1 > :not([hidden]) ~ :not([hidden]) {
|
|
1099
|
+
--tw-space-y-reverse: 0;
|
|
1100
|
+
margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1101
|
+
margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
|
|
1102
|
+
}
|
|
1065
1103
|
.ps-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
|
|
1066
1104
|
--tw-space-y-reverse: 0;
|
|
1067
1105
|
margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
|
|
@@ -1072,6 +1110,11 @@ video {
|
|
|
1072
1110
|
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1073
1111
|
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
|
|
1074
1112
|
}
|
|
1113
|
+
.ps-space-y-4 > :not([hidden]) ~ :not([hidden]) {
|
|
1114
|
+
--tw-space-y-reverse: 0;
|
|
1115
|
+
margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1116
|
+
margin-bottom: calc(1rem * var(--tw-space-y-reverse));
|
|
1117
|
+
}
|
|
1075
1118
|
.ps-self-start {
|
|
1076
1119
|
align-self: flex-start;
|
|
1077
1120
|
}
|
|
@@ -1161,6 +1204,10 @@ video {
|
|
|
1161
1204
|
.ps-border-input {
|
|
1162
1205
|
border-color: hsl(var(--input));
|
|
1163
1206
|
}
|
|
1207
|
+
.ps-border-neutral-200 {
|
|
1208
|
+
--tw-border-opacity: 1;
|
|
1209
|
+
border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
|
|
1210
|
+
}
|
|
1164
1211
|
.ps-border-primary {
|
|
1165
1212
|
border-color: hsl(var(--primary));
|
|
1166
1213
|
}
|
|
@@ -1174,6 +1221,12 @@ video {
|
|
|
1174
1221
|
--tw-border-opacity: 1;
|
|
1175
1222
|
border-color: rgb(139 92 246 / var(--tw-border-opacity, 1));
|
|
1176
1223
|
}
|
|
1224
|
+
.\!ps-bg-primary {
|
|
1225
|
+
background-color: hsl(var(--primary)) !important;
|
|
1226
|
+
}
|
|
1227
|
+
.ps-bg-accent {
|
|
1228
|
+
background-color: hsl(var(--accent));
|
|
1229
|
+
}
|
|
1177
1230
|
.ps-bg-background {
|
|
1178
1231
|
background-color: hsl(var(--background));
|
|
1179
1232
|
}
|
|
@@ -1333,6 +1386,9 @@ video {
|
|
|
1333
1386
|
.ps-pr-8 {
|
|
1334
1387
|
padding-right: 2rem;
|
|
1335
1388
|
}
|
|
1389
|
+
.ps-pr-\[var\(--studio-cell-spacing\)\] {
|
|
1390
|
+
padding-right: var(--studio-cell-spacing);
|
|
1391
|
+
}
|
|
1336
1392
|
.ps-pt-4 {
|
|
1337
1393
|
padding-top: 1rem;
|
|
1338
1394
|
}
|
|
@@ -1348,6 +1404,9 @@ video {
|
|
|
1348
1404
|
.ps-font-mono {
|
|
1349
1405
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
1350
1406
|
}
|
|
1407
|
+
.ps-text-\[0\.8rem\] {
|
|
1408
|
+
font-size: 0.8rem;
|
|
1409
|
+
}
|
|
1351
1410
|
.ps-text-\[8px\] {
|
|
1352
1411
|
font-size: 8px;
|
|
1353
1412
|
}
|
|
@@ -1366,6 +1425,9 @@ video {
|
|
|
1366
1425
|
.ps-font-medium {
|
|
1367
1426
|
font-weight: 500;
|
|
1368
1427
|
}
|
|
1428
|
+
.ps-font-normal {
|
|
1429
|
+
font-weight: 400;
|
|
1430
|
+
}
|
|
1369
1431
|
.ps-font-semibold {
|
|
1370
1432
|
font-weight: 600;
|
|
1371
1433
|
}
|
|
@@ -1390,6 +1452,12 @@ video {
|
|
|
1390
1452
|
.ps-tracking-widest {
|
|
1391
1453
|
letter-spacing: 0.1em;
|
|
1392
1454
|
}
|
|
1455
|
+
.\!ps-text-primary-foreground {
|
|
1456
|
+
color: hsl(var(--primary-foreground)) !important;
|
|
1457
|
+
}
|
|
1458
|
+
.ps-text-accent-foreground {
|
|
1459
|
+
color: hsl(var(--accent-foreground));
|
|
1460
|
+
}
|
|
1393
1461
|
.ps-text-blue-500 {
|
|
1394
1462
|
--tw-text-opacity: 1;
|
|
1395
1463
|
color: rgb(59 130 246 / var(--tw-text-opacity, 1));
|
|
@@ -1655,6 +1723,15 @@ body {
|
|
|
1655
1723
|
.placeholder\:ps-text-muted-foreground::placeholder {
|
|
1656
1724
|
color: hsl(var(--muted-foreground));
|
|
1657
1725
|
}
|
|
1726
|
+
.focus-within\:ps-relative:focus-within {
|
|
1727
|
+
position: relative;
|
|
1728
|
+
}
|
|
1729
|
+
.focus-within\:ps-z-20:focus-within {
|
|
1730
|
+
z-index: 20;
|
|
1731
|
+
}
|
|
1732
|
+
.hover\:ps-border-primary:hover {
|
|
1733
|
+
border-color: hsl(var(--primary));
|
|
1734
|
+
}
|
|
1658
1735
|
.hover\:ps-border-table-border:hover {
|
|
1659
1736
|
border-color: hsl(var(--table-border));
|
|
1660
1737
|
}
|
|
@@ -1670,6 +1747,9 @@ body {
|
|
|
1670
1747
|
.hover\:ps-bg-muted\/50:hover {
|
|
1671
1748
|
background-color: hsl(var(--muted) / 0.5);
|
|
1672
1749
|
}
|
|
1750
|
+
.hover\:ps-bg-primary:hover {
|
|
1751
|
+
background-color: hsl(var(--primary));
|
|
1752
|
+
}
|
|
1673
1753
|
.hover\:ps-bg-primary\/80:hover {
|
|
1674
1754
|
background-color: hsl(var(--primary) / 0.8);
|
|
1675
1755
|
}
|
|
@@ -1682,9 +1762,15 @@ body {
|
|
|
1682
1762
|
.hover\:ps-text-accent-foreground:hover {
|
|
1683
1763
|
color: hsl(var(--accent-foreground));
|
|
1684
1764
|
}
|
|
1765
|
+
.hover\:ps-text-card-foreground:hover {
|
|
1766
|
+
color: hsl(var(--card-foreground));
|
|
1767
|
+
}
|
|
1685
1768
|
.hover\:ps-text-foreground:hover {
|
|
1686
1769
|
color: hsl(var(--foreground));
|
|
1687
1770
|
}
|
|
1771
|
+
.hover\:ps-text-primary-foreground:hover {
|
|
1772
|
+
color: hsl(var(--primary-foreground));
|
|
1773
|
+
}
|
|
1688
1774
|
.hover\:ps-underline:hover {
|
|
1689
1775
|
text-decoration-line: underline;
|
|
1690
1776
|
}
|
|
@@ -1694,9 +1780,15 @@ body {
|
|
|
1694
1780
|
.focus\:ps-bg-accent:focus {
|
|
1695
1781
|
background-color: hsl(var(--accent));
|
|
1696
1782
|
}
|
|
1783
|
+
.focus\:ps-bg-primary:focus {
|
|
1784
|
+
background-color: hsl(var(--primary));
|
|
1785
|
+
}
|
|
1697
1786
|
.focus\:ps-text-accent-foreground:focus {
|
|
1698
1787
|
color: hsl(var(--accent-foreground));
|
|
1699
1788
|
}
|
|
1789
|
+
.focus\:ps-text-primary-foreground:focus {
|
|
1790
|
+
color: hsl(var(--primary-foreground));
|
|
1791
|
+
}
|
|
1700
1792
|
.focus\:ps-outline-none:focus {
|
|
1701
1793
|
outline: 2px solid transparent;
|
|
1702
1794
|
outline-offset: 2px;
|
|
@@ -1772,6 +1864,21 @@ body {
|
|
|
1772
1864
|
.ps-peer:disabled ~ .peer-disabled\:ps-opacity-70 {
|
|
1773
1865
|
opacity: 0.7;
|
|
1774
1866
|
}
|
|
1867
|
+
.aria-selected\:ps-bg-accent[aria-selected="true"] {
|
|
1868
|
+
background-color: hsl(var(--accent));
|
|
1869
|
+
}
|
|
1870
|
+
.aria-selected\:ps-bg-accent\/50[aria-selected="true"] {
|
|
1871
|
+
background-color: hsl(var(--accent) / 0.5);
|
|
1872
|
+
}
|
|
1873
|
+
.aria-selected\:ps-text-accent-foreground[aria-selected="true"] {
|
|
1874
|
+
color: hsl(var(--accent-foreground));
|
|
1875
|
+
}
|
|
1876
|
+
.aria-selected\:ps-text-muted-foreground[aria-selected="true"] {
|
|
1877
|
+
color: hsl(var(--muted-foreground));
|
|
1878
|
+
}
|
|
1879
|
+
.aria-selected\:ps-opacity-100[aria-selected="true"] {
|
|
1880
|
+
opacity: 1;
|
|
1881
|
+
}
|
|
1775
1882
|
.data-\[disabled\]\:ps-pointer-events-none[data-disabled] {
|
|
1776
1883
|
pointer-events: none;
|
|
1777
1884
|
}
|
|
@@ -1958,6 +2065,18 @@ body {
|
|
|
1958
2065
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1959
2066
|
}
|
|
1960
2067
|
|
|
2068
|
+
.sm\:ps-space-x-4 > :not([hidden]) ~ :not([hidden]) {
|
|
2069
|
+
--tw-space-x-reverse: 0;
|
|
2070
|
+
margin-right: calc(1rem * var(--tw-space-x-reverse));
|
|
2071
|
+
margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
|
|
2072
|
+
}
|
|
2073
|
+
|
|
2074
|
+
.sm\:ps-space-y-0 > :not([hidden]) ~ :not([hidden]) {
|
|
2075
|
+
--tw-space-y-reverse: 0;
|
|
2076
|
+
margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
|
|
2077
|
+
margin-bottom: calc(0px * var(--tw-space-y-reverse));
|
|
2078
|
+
}
|
|
2079
|
+
|
|
1961
2080
|
.sm\:ps-rounded-lg {
|
|
1962
2081
|
border-radius: var(--radius);
|
|
1963
2082
|
}
|
|
@@ -1973,6 +2092,32 @@ body {
|
|
|
1973
2092
|
line-height: 1.25rem;
|
|
1974
2093
|
}
|
|
1975
2094
|
}
|
|
2095
|
+
.\[\&\:has\(\>\.day-range-end\)\]\:ps-rounded-r-md:has(>.day-range-end) {
|
|
2096
|
+
border-top-right-radius: calc(var(--radius) - 2px);
|
|
2097
|
+
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
2098
|
+
}
|
|
2099
|
+
.\[\&\:has\(\>\.day-range-start\)\]\:ps-rounded-l-md:has(>.day-range-start) {
|
|
2100
|
+
border-top-left-radius: calc(var(--radius) - 2px);
|
|
2101
|
+
border-bottom-left-radius: calc(var(--radius) - 2px);
|
|
2102
|
+
}
|
|
2103
|
+
.\[\&\:has\(\[aria-selected\]\)\]\:ps-rounded-md:has([aria-selected]) {
|
|
2104
|
+
border-radius: calc(var(--radius) - 2px);
|
|
2105
|
+
}
|
|
2106
|
+
.first\:\[\&\:has\(\[aria-selected\]\)\]\:ps-rounded-l-md:has([aria-selected]):first-child {
|
|
2107
|
+
border-top-left-radius: calc(var(--radius) - 2px);
|
|
2108
|
+
border-bottom-left-radius: calc(var(--radius) - 2px);
|
|
2109
|
+
}
|
|
2110
|
+
.last\:\[\&\:has\(\[aria-selected\]\)\]\:ps-rounded-r-md:has([aria-selected]):last-child {
|
|
2111
|
+
border-top-right-radius: calc(var(--radius) - 2px);
|
|
2112
|
+
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
2113
|
+
}
|
|
2114
|
+
.\[\&\:has\(\[aria-selected\]\.day-outside\)\]\:ps-bg-accent\/50:has([aria-selected].day-outside) {
|
|
2115
|
+
background-color: hsl(var(--accent) / 0.5);
|
|
2116
|
+
}
|
|
2117
|
+
.\[\&\:has\(\[aria-selected\]\.day-range-end\)\]\:ps-rounded-r-md:has([aria-selected].day-range-end) {
|
|
2118
|
+
border-top-right-radius: calc(var(--radius) - 2px);
|
|
2119
|
+
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
2120
|
+
}
|
|
1976
2121
|
.\[\&\:last-of-type_td\]\:ps-border-b-0:last-of-type td {
|
|
1977
2122
|
border-bottom-width: 0px;
|
|
1978
2123
|
}
|