@prisma/studio-core 0.0.0-dev.202505101249 → 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 +41 -49
- package/dist/ui/index.css +148 -12
- package/dist/ui/index.js +7 -15
- 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
|
}
|
|
@@ -987,15 +1015,6 @@ video {
|
|
|
987
1015
|
.ps-animate-pulse {
|
|
988
1016
|
animation: ps-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
989
1017
|
}
|
|
990
|
-
@keyframes ps-spin {
|
|
991
|
-
|
|
992
|
-
to {
|
|
993
|
-
transform: rotate(360deg);
|
|
994
|
-
}
|
|
995
|
-
}
|
|
996
|
-
.ps-animate-spin {
|
|
997
|
-
animation: ps-spin 1s linear infinite;
|
|
998
|
-
}
|
|
999
1018
|
.ps-cursor-col-resize {
|
|
1000
1019
|
cursor: col-resize;
|
|
1001
1020
|
}
|
|
@@ -1066,11 +1085,21 @@ video {
|
|
|
1066
1085
|
.ps-gap-px {
|
|
1067
1086
|
gap: 1px;
|
|
1068
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
|
+
}
|
|
1069
1093
|
.ps-space-x-2 > :not([hidden]) ~ :not([hidden]) {
|
|
1070
1094
|
--tw-space-x-reverse: 0;
|
|
1071
1095
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
1072
1096
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1073
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
|
+
}
|
|
1074
1103
|
.ps-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
|
|
1075
1104
|
--tw-space-y-reverse: 0;
|
|
1076
1105
|
margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
|
|
@@ -1081,6 +1110,11 @@ video {
|
|
|
1081
1110
|
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1082
1111
|
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
|
|
1083
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
|
+
}
|
|
1084
1118
|
.ps-self-start {
|
|
1085
1119
|
align-self: flex-start;
|
|
1086
1120
|
}
|
|
@@ -1170,6 +1204,10 @@ video {
|
|
|
1170
1204
|
.ps-border-input {
|
|
1171
1205
|
border-color: hsl(var(--input));
|
|
1172
1206
|
}
|
|
1207
|
+
.ps-border-neutral-200 {
|
|
1208
|
+
--tw-border-opacity: 1;
|
|
1209
|
+
border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
|
|
1210
|
+
}
|
|
1173
1211
|
.ps-border-primary {
|
|
1174
1212
|
border-color: hsl(var(--primary));
|
|
1175
1213
|
}
|
|
@@ -1183,6 +1221,12 @@ video {
|
|
|
1183
1221
|
--tw-border-opacity: 1;
|
|
1184
1222
|
border-color: rgb(139 92 246 / var(--tw-border-opacity, 1));
|
|
1185
1223
|
}
|
|
1224
|
+
.\!ps-bg-primary {
|
|
1225
|
+
background-color: hsl(var(--primary)) !important;
|
|
1226
|
+
}
|
|
1227
|
+
.ps-bg-accent {
|
|
1228
|
+
background-color: hsl(var(--accent));
|
|
1229
|
+
}
|
|
1186
1230
|
.ps-bg-background {
|
|
1187
1231
|
background-color: hsl(var(--background));
|
|
1188
1232
|
}
|
|
@@ -1342,6 +1386,9 @@ video {
|
|
|
1342
1386
|
.ps-pr-8 {
|
|
1343
1387
|
padding-right: 2rem;
|
|
1344
1388
|
}
|
|
1389
|
+
.ps-pr-\[var\(--studio-cell-spacing\)\] {
|
|
1390
|
+
padding-right: var(--studio-cell-spacing);
|
|
1391
|
+
}
|
|
1345
1392
|
.ps-pt-4 {
|
|
1346
1393
|
padding-top: 1rem;
|
|
1347
1394
|
}
|
|
@@ -1357,6 +1404,9 @@ video {
|
|
|
1357
1404
|
.ps-font-mono {
|
|
1358
1405
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
1359
1406
|
}
|
|
1407
|
+
.ps-text-\[0\.8rem\] {
|
|
1408
|
+
font-size: 0.8rem;
|
|
1409
|
+
}
|
|
1360
1410
|
.ps-text-\[8px\] {
|
|
1361
1411
|
font-size: 8px;
|
|
1362
1412
|
}
|
|
@@ -1375,6 +1425,9 @@ video {
|
|
|
1375
1425
|
.ps-font-medium {
|
|
1376
1426
|
font-weight: 500;
|
|
1377
1427
|
}
|
|
1428
|
+
.ps-font-normal {
|
|
1429
|
+
font-weight: 400;
|
|
1430
|
+
}
|
|
1378
1431
|
.ps-font-semibold {
|
|
1379
1432
|
font-weight: 600;
|
|
1380
1433
|
}
|
|
@@ -1399,6 +1452,12 @@ video {
|
|
|
1399
1452
|
.ps-tracking-widest {
|
|
1400
1453
|
letter-spacing: 0.1em;
|
|
1401
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
|
+
}
|
|
1402
1461
|
.ps-text-blue-500 {
|
|
1403
1462
|
--tw-text-opacity: 1;
|
|
1404
1463
|
color: rgb(59 130 246 / var(--tw-text-opacity, 1));
|
|
@@ -1664,6 +1723,15 @@ body {
|
|
|
1664
1723
|
.placeholder\:ps-text-muted-foreground::placeholder {
|
|
1665
1724
|
color: hsl(var(--muted-foreground));
|
|
1666
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
|
+
}
|
|
1667
1735
|
.hover\:ps-border-table-border:hover {
|
|
1668
1736
|
border-color: hsl(var(--table-border));
|
|
1669
1737
|
}
|
|
@@ -1679,6 +1747,9 @@ body {
|
|
|
1679
1747
|
.hover\:ps-bg-muted\/50:hover {
|
|
1680
1748
|
background-color: hsl(var(--muted) / 0.5);
|
|
1681
1749
|
}
|
|
1750
|
+
.hover\:ps-bg-primary:hover {
|
|
1751
|
+
background-color: hsl(var(--primary));
|
|
1752
|
+
}
|
|
1682
1753
|
.hover\:ps-bg-primary\/80:hover {
|
|
1683
1754
|
background-color: hsl(var(--primary) / 0.8);
|
|
1684
1755
|
}
|
|
@@ -1691,9 +1762,15 @@ body {
|
|
|
1691
1762
|
.hover\:ps-text-accent-foreground:hover {
|
|
1692
1763
|
color: hsl(var(--accent-foreground));
|
|
1693
1764
|
}
|
|
1765
|
+
.hover\:ps-text-card-foreground:hover {
|
|
1766
|
+
color: hsl(var(--card-foreground));
|
|
1767
|
+
}
|
|
1694
1768
|
.hover\:ps-text-foreground:hover {
|
|
1695
1769
|
color: hsl(var(--foreground));
|
|
1696
1770
|
}
|
|
1771
|
+
.hover\:ps-text-primary-foreground:hover {
|
|
1772
|
+
color: hsl(var(--primary-foreground));
|
|
1773
|
+
}
|
|
1697
1774
|
.hover\:ps-underline:hover {
|
|
1698
1775
|
text-decoration-line: underline;
|
|
1699
1776
|
}
|
|
@@ -1703,9 +1780,15 @@ body {
|
|
|
1703
1780
|
.focus\:ps-bg-accent:focus {
|
|
1704
1781
|
background-color: hsl(var(--accent));
|
|
1705
1782
|
}
|
|
1783
|
+
.focus\:ps-bg-primary:focus {
|
|
1784
|
+
background-color: hsl(var(--primary));
|
|
1785
|
+
}
|
|
1706
1786
|
.focus\:ps-text-accent-foreground:focus {
|
|
1707
1787
|
color: hsl(var(--accent-foreground));
|
|
1708
1788
|
}
|
|
1789
|
+
.focus\:ps-text-primary-foreground:focus {
|
|
1790
|
+
color: hsl(var(--primary-foreground));
|
|
1791
|
+
}
|
|
1709
1792
|
.focus\:ps-outline-none:focus {
|
|
1710
1793
|
outline: 2px solid transparent;
|
|
1711
1794
|
outline-offset: 2px;
|
|
@@ -1781,6 +1864,21 @@ body {
|
|
|
1781
1864
|
.ps-peer:disabled ~ .peer-disabled\:ps-opacity-70 {
|
|
1782
1865
|
opacity: 0.7;
|
|
1783
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
|
+
}
|
|
1784
1882
|
.data-\[disabled\]\:ps-pointer-events-none[data-disabled] {
|
|
1785
1883
|
pointer-events: none;
|
|
1786
1884
|
}
|
|
@@ -1967,6 +2065,18 @@ body {
|
|
|
1967
2065
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1968
2066
|
}
|
|
1969
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
|
+
|
|
1970
2080
|
.sm\:ps-rounded-lg {
|
|
1971
2081
|
border-radius: var(--radius);
|
|
1972
2082
|
}
|
|
@@ -1982,6 +2092,32 @@ body {
|
|
|
1982
2092
|
line-height: 1.25rem;
|
|
1983
2093
|
}
|
|
1984
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
|
+
}
|
|
1985
2121
|
.\[\&\:last-of-type_td\]\:ps-border-b-0:last-of-type td {
|
|
1986
2122
|
border-bottom-width: 0px;
|
|
1987
2123
|
}
|