@prisma/studio-core 0.0.0-dev.202505102024 → 0.0.0-dev.202505102305
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 +49 -41
- package/dist/ui/index.css +12 -148
- package/dist/ui/index.js +15 -7
- package/package.json +1 -3
package/dist/ui/index.css
CHANGED
|
@@ -596,9 +596,6 @@ video {
|
|
|
596
596
|
.ps-pointer-events-none {
|
|
597
597
|
pointer-events: none;
|
|
598
598
|
}
|
|
599
|
-
.ps-invisible {
|
|
600
|
-
visibility: hidden;
|
|
601
|
-
}
|
|
602
599
|
.ps-fixed {
|
|
603
600
|
position: fixed;
|
|
604
601
|
}
|
|
@@ -634,9 +631,6 @@ video {
|
|
|
634
631
|
.ps-left-0 {
|
|
635
632
|
left: 0px;
|
|
636
633
|
}
|
|
637
|
-
.ps-left-1 {
|
|
638
|
-
left: 0.25rem;
|
|
639
|
-
}
|
|
640
634
|
.ps-left-2 {
|
|
641
635
|
left: 0.5rem;
|
|
642
636
|
}
|
|
@@ -646,9 +640,6 @@ video {
|
|
|
646
640
|
.ps-right-0 {
|
|
647
641
|
right: 0px;
|
|
648
642
|
}
|
|
649
|
-
.ps-right-1 {
|
|
650
|
-
right: 0.25rem;
|
|
651
|
-
}
|
|
652
643
|
.ps-right-2 {
|
|
653
644
|
right: 0.5rem;
|
|
654
645
|
}
|
|
@@ -697,9 +688,6 @@ video {
|
|
|
697
688
|
margin-top: 0.25rem;
|
|
698
689
|
margin-bottom: 0.25rem;
|
|
699
690
|
}
|
|
700
|
-
.ps-mb-2 {
|
|
701
|
-
margin-bottom: 0.5rem;
|
|
702
|
-
}
|
|
703
691
|
.ps-ml-1 {
|
|
704
692
|
margin-left: 0.25rem;
|
|
705
693
|
}
|
|
@@ -712,9 +700,6 @@ video {
|
|
|
712
700
|
.ps-mr-auto {
|
|
713
701
|
margin-right: auto;
|
|
714
702
|
}
|
|
715
|
-
.ps-mt-2 {
|
|
716
|
-
margin-top: 0.5rem;
|
|
717
|
-
}
|
|
718
703
|
.ps-mt-4 {
|
|
719
704
|
margin-top: 1rem;
|
|
720
705
|
}
|
|
@@ -764,9 +749,6 @@ video {
|
|
|
764
749
|
.ps-h-6 {
|
|
765
750
|
height: 1.5rem;
|
|
766
751
|
}
|
|
767
|
-
.ps-h-7 {
|
|
768
|
-
height: 1.75rem;
|
|
769
|
-
}
|
|
770
752
|
.ps-h-8 {
|
|
771
753
|
height: 2rem;
|
|
772
754
|
}
|
|
@@ -863,15 +845,9 @@ video {
|
|
|
863
845
|
.ps-w-6 {
|
|
864
846
|
width: 1.5rem;
|
|
865
847
|
}
|
|
866
|
-
.ps-w-7 {
|
|
867
|
-
width: 1.75rem;
|
|
868
|
-
}
|
|
869
848
|
.ps-w-72 {
|
|
870
849
|
width: 18rem;
|
|
871
850
|
}
|
|
872
|
-
.ps-w-8 {
|
|
873
|
-
width: 2rem;
|
|
874
|
-
}
|
|
875
851
|
.ps-w-9 {
|
|
876
852
|
width: 2.25rem;
|
|
877
853
|
}
|
|
@@ -901,6 +877,9 @@ video {
|
|
|
901
877
|
.ps-min-w-0 {
|
|
902
878
|
min-width: 0px;
|
|
903
879
|
}
|
|
880
|
+
.ps-min-w-\[200px\] {
|
|
881
|
+
min-width: 200px;
|
|
882
|
+
}
|
|
904
883
|
.ps-min-w-\[8rem\] {
|
|
905
884
|
min-width: 8rem;
|
|
906
885
|
}
|
|
@@ -913,10 +892,6 @@ video {
|
|
|
913
892
|
.ps-min-w-full {
|
|
914
893
|
min-width: 100%;
|
|
915
894
|
}
|
|
916
|
-
.ps-min-w-max {
|
|
917
|
-
min-width: -moz-max-content;
|
|
918
|
-
min-width: max-content;
|
|
919
|
-
}
|
|
920
895
|
.ps-max-w-72 {
|
|
921
896
|
max-width: 18rem;
|
|
922
897
|
}
|
|
@@ -941,9 +916,6 @@ video {
|
|
|
941
916
|
.ps-caption-bottom {
|
|
942
917
|
caption-side: bottom;
|
|
943
918
|
}
|
|
944
|
-
.ps-border-collapse {
|
|
945
|
-
border-collapse: collapse;
|
|
946
|
-
}
|
|
947
919
|
.ps-border-separate {
|
|
948
920
|
border-collapse: separate;
|
|
949
921
|
}
|
|
@@ -1015,6 +987,15 @@ video {
|
|
|
1015
987
|
.ps-animate-pulse {
|
|
1016
988
|
animation: ps-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
1017
989
|
}
|
|
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
|
+
}
|
|
1018
999
|
.ps-cursor-col-resize {
|
|
1019
1000
|
cursor: col-resize;
|
|
1020
1001
|
}
|
|
@@ -1085,21 +1066,11 @@ video {
|
|
|
1085
1066
|
.ps-gap-px {
|
|
1086
1067
|
gap: 1px;
|
|
1087
1068
|
}
|
|
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
|
-
}
|
|
1093
1069
|
.ps-space-x-2 > :not([hidden]) ~ :not([hidden]) {
|
|
1094
1070
|
--tw-space-x-reverse: 0;
|
|
1095
1071
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
1096
1072
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1097
1073
|
}
|
|
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
|
-
}
|
|
1103
1074
|
.ps-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
|
|
1104
1075
|
--tw-space-y-reverse: 0;
|
|
1105
1076
|
margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
|
|
@@ -1110,11 +1081,6 @@ video {
|
|
|
1110
1081
|
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1111
1082
|
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
|
|
1112
1083
|
}
|
|
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
|
-
}
|
|
1118
1084
|
.ps-self-start {
|
|
1119
1085
|
align-self: flex-start;
|
|
1120
1086
|
}
|
|
@@ -1204,10 +1170,6 @@ video {
|
|
|
1204
1170
|
.ps-border-input {
|
|
1205
1171
|
border-color: hsl(var(--input));
|
|
1206
1172
|
}
|
|
1207
|
-
.ps-border-neutral-200 {
|
|
1208
|
-
--tw-border-opacity: 1;
|
|
1209
|
-
border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
|
|
1210
|
-
}
|
|
1211
1173
|
.ps-border-primary {
|
|
1212
1174
|
border-color: hsl(var(--primary));
|
|
1213
1175
|
}
|
|
@@ -1221,12 +1183,6 @@ video {
|
|
|
1221
1183
|
--tw-border-opacity: 1;
|
|
1222
1184
|
border-color: rgb(139 92 246 / var(--tw-border-opacity, 1));
|
|
1223
1185
|
}
|
|
1224
|
-
.\!ps-bg-primary {
|
|
1225
|
-
background-color: hsl(var(--primary)) !important;
|
|
1226
|
-
}
|
|
1227
|
-
.ps-bg-accent {
|
|
1228
|
-
background-color: hsl(var(--accent));
|
|
1229
|
-
}
|
|
1230
1186
|
.ps-bg-background {
|
|
1231
1187
|
background-color: hsl(var(--background));
|
|
1232
1188
|
}
|
|
@@ -1386,9 +1342,6 @@ video {
|
|
|
1386
1342
|
.ps-pr-8 {
|
|
1387
1343
|
padding-right: 2rem;
|
|
1388
1344
|
}
|
|
1389
|
-
.ps-pr-\[var\(--studio-cell-spacing\)\] {
|
|
1390
|
-
padding-right: var(--studio-cell-spacing);
|
|
1391
|
-
}
|
|
1392
1345
|
.ps-pt-4 {
|
|
1393
1346
|
padding-top: 1rem;
|
|
1394
1347
|
}
|
|
@@ -1404,9 +1357,6 @@ video {
|
|
|
1404
1357
|
.ps-font-mono {
|
|
1405
1358
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
1406
1359
|
}
|
|
1407
|
-
.ps-text-\[0\.8rem\] {
|
|
1408
|
-
font-size: 0.8rem;
|
|
1409
|
-
}
|
|
1410
1360
|
.ps-text-\[8px\] {
|
|
1411
1361
|
font-size: 8px;
|
|
1412
1362
|
}
|
|
@@ -1425,9 +1375,6 @@ video {
|
|
|
1425
1375
|
.ps-font-medium {
|
|
1426
1376
|
font-weight: 500;
|
|
1427
1377
|
}
|
|
1428
|
-
.ps-font-normal {
|
|
1429
|
-
font-weight: 400;
|
|
1430
|
-
}
|
|
1431
1378
|
.ps-font-semibold {
|
|
1432
1379
|
font-weight: 600;
|
|
1433
1380
|
}
|
|
@@ -1452,12 +1399,6 @@ video {
|
|
|
1452
1399
|
.ps-tracking-widest {
|
|
1453
1400
|
letter-spacing: 0.1em;
|
|
1454
1401
|
}
|
|
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
|
-
}
|
|
1461
1402
|
.ps-text-blue-500 {
|
|
1462
1403
|
--tw-text-opacity: 1;
|
|
1463
1404
|
color: rgb(59 130 246 / var(--tw-text-opacity, 1));
|
|
@@ -1723,15 +1664,6 @@ body {
|
|
|
1723
1664
|
.placeholder\:ps-text-muted-foreground::placeholder {
|
|
1724
1665
|
color: hsl(var(--muted-foreground));
|
|
1725
1666
|
}
|
|
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
|
-
}
|
|
1735
1667
|
.hover\:ps-border-table-border:hover {
|
|
1736
1668
|
border-color: hsl(var(--table-border));
|
|
1737
1669
|
}
|
|
@@ -1747,9 +1679,6 @@ body {
|
|
|
1747
1679
|
.hover\:ps-bg-muted\/50:hover {
|
|
1748
1680
|
background-color: hsl(var(--muted) / 0.5);
|
|
1749
1681
|
}
|
|
1750
|
-
.hover\:ps-bg-primary:hover {
|
|
1751
|
-
background-color: hsl(var(--primary));
|
|
1752
|
-
}
|
|
1753
1682
|
.hover\:ps-bg-primary\/80:hover {
|
|
1754
1683
|
background-color: hsl(var(--primary) / 0.8);
|
|
1755
1684
|
}
|
|
@@ -1762,15 +1691,9 @@ body {
|
|
|
1762
1691
|
.hover\:ps-text-accent-foreground:hover {
|
|
1763
1692
|
color: hsl(var(--accent-foreground));
|
|
1764
1693
|
}
|
|
1765
|
-
.hover\:ps-text-card-foreground:hover {
|
|
1766
|
-
color: hsl(var(--card-foreground));
|
|
1767
|
-
}
|
|
1768
1694
|
.hover\:ps-text-foreground:hover {
|
|
1769
1695
|
color: hsl(var(--foreground));
|
|
1770
1696
|
}
|
|
1771
|
-
.hover\:ps-text-primary-foreground:hover {
|
|
1772
|
-
color: hsl(var(--primary-foreground));
|
|
1773
|
-
}
|
|
1774
1697
|
.hover\:ps-underline:hover {
|
|
1775
1698
|
text-decoration-line: underline;
|
|
1776
1699
|
}
|
|
@@ -1780,15 +1703,9 @@ body {
|
|
|
1780
1703
|
.focus\:ps-bg-accent:focus {
|
|
1781
1704
|
background-color: hsl(var(--accent));
|
|
1782
1705
|
}
|
|
1783
|
-
.focus\:ps-bg-primary:focus {
|
|
1784
|
-
background-color: hsl(var(--primary));
|
|
1785
|
-
}
|
|
1786
1706
|
.focus\:ps-text-accent-foreground:focus {
|
|
1787
1707
|
color: hsl(var(--accent-foreground));
|
|
1788
1708
|
}
|
|
1789
|
-
.focus\:ps-text-primary-foreground:focus {
|
|
1790
|
-
color: hsl(var(--primary-foreground));
|
|
1791
|
-
}
|
|
1792
1709
|
.focus\:ps-outline-none:focus {
|
|
1793
1710
|
outline: 2px solid transparent;
|
|
1794
1711
|
outline-offset: 2px;
|
|
@@ -1864,21 +1781,6 @@ body {
|
|
|
1864
1781
|
.ps-peer:disabled ~ .peer-disabled\:ps-opacity-70 {
|
|
1865
1782
|
opacity: 0.7;
|
|
1866
1783
|
}
|
|
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
|
-
}
|
|
1882
1784
|
.data-\[disabled\]\:ps-pointer-events-none[data-disabled] {
|
|
1883
1785
|
pointer-events: none;
|
|
1884
1786
|
}
|
|
@@ -2065,18 +1967,6 @@ body {
|
|
|
2065
1967
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
2066
1968
|
}
|
|
2067
1969
|
|
|
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
|
-
|
|
2080
1970
|
.sm\:ps-rounded-lg {
|
|
2081
1971
|
border-radius: var(--radius);
|
|
2082
1972
|
}
|
|
@@ -2092,32 +1982,6 @@ body {
|
|
|
2092
1982
|
line-height: 1.25rem;
|
|
2093
1983
|
}
|
|
2094
1984
|
}
|
|
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
|
-
}
|
|
2121
1985
|
.\[\&\:last-of-type_td\]\:ps-border-b-0:last-of-type td {
|
|
2122
1986
|
border-bottom-width: 0px;
|
|
2123
1987
|
}
|