@prisma/studio-core 0.0.0-dev.202505102053 → 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 -158
- 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-0 {
|
|
716
|
-
margin-top: 0px;
|
|
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
|
}
|
|
@@ -1398,18 +1351,12 @@ video {
|
|
|
1398
1351
|
.ps-text-center {
|
|
1399
1352
|
text-align: center;
|
|
1400
1353
|
}
|
|
1401
|
-
.ps-text-right {
|
|
1402
|
-
text-align: right;
|
|
1403
|
-
}
|
|
1404
1354
|
.ps-align-middle {
|
|
1405
1355
|
vertical-align: middle;
|
|
1406
1356
|
}
|
|
1407
1357
|
.ps-font-mono {
|
|
1408
1358
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
1409
1359
|
}
|
|
1410
|
-
.ps-text-\[0\.8rem\] {
|
|
1411
|
-
font-size: 0.8rem;
|
|
1412
|
-
}
|
|
1413
1360
|
.ps-text-\[8px\] {
|
|
1414
1361
|
font-size: 8px;
|
|
1415
1362
|
}
|
|
@@ -1428,9 +1375,6 @@ video {
|
|
|
1428
1375
|
.ps-font-medium {
|
|
1429
1376
|
font-weight: 500;
|
|
1430
1377
|
}
|
|
1431
|
-
.ps-font-normal {
|
|
1432
|
-
font-weight: 400;
|
|
1433
|
-
}
|
|
1434
1378
|
.ps-font-semibold {
|
|
1435
1379
|
font-weight: 600;
|
|
1436
1380
|
}
|
|
@@ -1455,12 +1399,6 @@ video {
|
|
|
1455
1399
|
.ps-tracking-widest {
|
|
1456
1400
|
letter-spacing: 0.1em;
|
|
1457
1401
|
}
|
|
1458
|
-
.\!ps-text-primary-foreground {
|
|
1459
|
-
color: hsl(var(--primary-foreground)) !important;
|
|
1460
|
-
}
|
|
1461
|
-
.ps-text-accent-foreground {
|
|
1462
|
-
color: hsl(var(--accent-foreground));
|
|
1463
|
-
}
|
|
1464
1402
|
.ps-text-blue-500 {
|
|
1465
1403
|
--tw-text-opacity: 1;
|
|
1466
1404
|
color: rgb(59 130 246 / var(--tw-text-opacity, 1));
|
|
@@ -1726,15 +1664,6 @@ body {
|
|
|
1726
1664
|
.placeholder\:ps-text-muted-foreground::placeholder {
|
|
1727
1665
|
color: hsl(var(--muted-foreground));
|
|
1728
1666
|
}
|
|
1729
|
-
.focus-within\:ps-relative:focus-within {
|
|
1730
|
-
position: relative;
|
|
1731
|
-
}
|
|
1732
|
-
.focus-within\:ps-z-20:focus-within {
|
|
1733
|
-
z-index: 20;
|
|
1734
|
-
}
|
|
1735
|
-
.hover\:ps-border-primary:hover {
|
|
1736
|
-
border-color: hsl(var(--primary));
|
|
1737
|
-
}
|
|
1738
1667
|
.hover\:ps-border-table-border:hover {
|
|
1739
1668
|
border-color: hsl(var(--table-border));
|
|
1740
1669
|
}
|
|
@@ -1750,9 +1679,6 @@ body {
|
|
|
1750
1679
|
.hover\:ps-bg-muted\/50:hover {
|
|
1751
1680
|
background-color: hsl(var(--muted) / 0.5);
|
|
1752
1681
|
}
|
|
1753
|
-
.hover\:ps-bg-primary:hover {
|
|
1754
|
-
background-color: hsl(var(--primary));
|
|
1755
|
-
}
|
|
1756
1682
|
.hover\:ps-bg-primary\/80:hover {
|
|
1757
1683
|
background-color: hsl(var(--primary) / 0.8);
|
|
1758
1684
|
}
|
|
@@ -1765,15 +1691,9 @@ body {
|
|
|
1765
1691
|
.hover\:ps-text-accent-foreground:hover {
|
|
1766
1692
|
color: hsl(var(--accent-foreground));
|
|
1767
1693
|
}
|
|
1768
|
-
.hover\:ps-text-card-foreground:hover {
|
|
1769
|
-
color: hsl(var(--card-foreground));
|
|
1770
|
-
}
|
|
1771
1694
|
.hover\:ps-text-foreground:hover {
|
|
1772
1695
|
color: hsl(var(--foreground));
|
|
1773
1696
|
}
|
|
1774
|
-
.hover\:ps-text-primary-foreground:hover {
|
|
1775
|
-
color: hsl(var(--primary-foreground));
|
|
1776
|
-
}
|
|
1777
1697
|
.hover\:ps-underline:hover {
|
|
1778
1698
|
text-decoration-line: underline;
|
|
1779
1699
|
}
|
|
@@ -1783,15 +1703,9 @@ body {
|
|
|
1783
1703
|
.focus\:ps-bg-accent:focus {
|
|
1784
1704
|
background-color: hsl(var(--accent));
|
|
1785
1705
|
}
|
|
1786
|
-
.focus\:ps-bg-primary:focus {
|
|
1787
|
-
background-color: hsl(var(--primary));
|
|
1788
|
-
}
|
|
1789
1706
|
.focus\:ps-text-accent-foreground:focus {
|
|
1790
1707
|
color: hsl(var(--accent-foreground));
|
|
1791
1708
|
}
|
|
1792
|
-
.focus\:ps-text-primary-foreground:focus {
|
|
1793
|
-
color: hsl(var(--primary-foreground));
|
|
1794
|
-
}
|
|
1795
1709
|
.focus\:ps-outline-none:focus {
|
|
1796
1710
|
outline: 2px solid transparent;
|
|
1797
1711
|
outline-offset: 2px;
|
|
@@ -1867,21 +1781,6 @@ body {
|
|
|
1867
1781
|
.ps-peer:disabled ~ .peer-disabled\:ps-opacity-70 {
|
|
1868
1782
|
opacity: 0.7;
|
|
1869
1783
|
}
|
|
1870
|
-
.aria-selected\:ps-bg-accent[aria-selected="true"] {
|
|
1871
|
-
background-color: hsl(var(--accent));
|
|
1872
|
-
}
|
|
1873
|
-
.aria-selected\:ps-bg-accent\/50[aria-selected="true"] {
|
|
1874
|
-
background-color: hsl(var(--accent) / 0.5);
|
|
1875
|
-
}
|
|
1876
|
-
.aria-selected\:ps-text-accent-foreground[aria-selected="true"] {
|
|
1877
|
-
color: hsl(var(--accent-foreground));
|
|
1878
|
-
}
|
|
1879
|
-
.aria-selected\:ps-text-muted-foreground[aria-selected="true"] {
|
|
1880
|
-
color: hsl(var(--muted-foreground));
|
|
1881
|
-
}
|
|
1882
|
-
.aria-selected\:ps-opacity-100[aria-selected="true"] {
|
|
1883
|
-
opacity: 1;
|
|
1884
|
-
}
|
|
1885
1784
|
.data-\[disabled\]\:ps-pointer-events-none[data-disabled] {
|
|
1886
1785
|
pointer-events: none;
|
|
1887
1786
|
}
|
|
@@ -1909,9 +1808,6 @@ body {
|
|
|
1909
1808
|
--tw-translate-x: 0px;
|
|
1910
1809
|
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));
|
|
1911
1810
|
}
|
|
1912
|
-
.data-\[state\=open\]\:ps-border-primary[data-state="open"] {
|
|
1913
|
-
border-color: hsl(var(--primary));
|
|
1914
|
-
}
|
|
1915
1811
|
.data-\[active\=true\]\:ps-bg-slate-200[data-active="true"] {
|
|
1916
1812
|
--tw-bg-opacity: 1;
|
|
1917
1813
|
background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
|
|
@@ -2071,18 +1967,6 @@ body {
|
|
|
2071
1967
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
2072
1968
|
}
|
|
2073
1969
|
|
|
2074
|
-
.sm\:ps-space-x-4 > :not([hidden]) ~ :not([hidden]) {
|
|
2075
|
-
--tw-space-x-reverse: 0;
|
|
2076
|
-
margin-right: calc(1rem * var(--tw-space-x-reverse));
|
|
2077
|
-
margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
|
|
2078
|
-
}
|
|
2079
|
-
|
|
2080
|
-
.sm\:ps-space-y-0 > :not([hidden]) ~ :not([hidden]) {
|
|
2081
|
-
--tw-space-y-reverse: 0;
|
|
2082
|
-
margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
|
|
2083
|
-
margin-bottom: calc(0px * var(--tw-space-y-reverse));
|
|
2084
|
-
}
|
|
2085
|
-
|
|
2086
1970
|
.sm\:ps-rounded-lg {
|
|
2087
1971
|
border-radius: var(--radius);
|
|
2088
1972
|
}
|
|
@@ -2098,32 +1982,6 @@ body {
|
|
|
2098
1982
|
line-height: 1.25rem;
|
|
2099
1983
|
}
|
|
2100
1984
|
}
|
|
2101
|
-
.\[\&\:has\(\>\.day-range-end\)\]\:ps-rounded-r-md:has(>.day-range-end) {
|
|
2102
|
-
border-top-right-radius: calc(var(--radius) - 2px);
|
|
2103
|
-
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
2104
|
-
}
|
|
2105
|
-
.\[\&\:has\(\>\.day-range-start\)\]\:ps-rounded-l-md:has(>.day-range-start) {
|
|
2106
|
-
border-top-left-radius: calc(var(--radius) - 2px);
|
|
2107
|
-
border-bottom-left-radius: calc(var(--radius) - 2px);
|
|
2108
|
-
}
|
|
2109
|
-
.\[\&\:has\(\[aria-selected\]\)\]\:ps-rounded-md:has([aria-selected]) {
|
|
2110
|
-
border-radius: calc(var(--radius) - 2px);
|
|
2111
|
-
}
|
|
2112
|
-
.first\:\[\&\:has\(\[aria-selected\]\)\]\:ps-rounded-l-md:has([aria-selected]):first-child {
|
|
2113
|
-
border-top-left-radius: calc(var(--radius) - 2px);
|
|
2114
|
-
border-bottom-left-radius: calc(var(--radius) - 2px);
|
|
2115
|
-
}
|
|
2116
|
-
.last\:\[\&\:has\(\[aria-selected\]\)\]\:ps-rounded-r-md:has([aria-selected]):last-child {
|
|
2117
|
-
border-top-right-radius: calc(var(--radius) - 2px);
|
|
2118
|
-
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
2119
|
-
}
|
|
2120
|
-
.\[\&\:has\(\[aria-selected\]\.day-outside\)\]\:ps-bg-accent\/50:has([aria-selected].day-outside) {
|
|
2121
|
-
background-color: hsl(var(--accent) / 0.5);
|
|
2122
|
-
}
|
|
2123
|
-
.\[\&\:has\(\[aria-selected\]\.day-range-end\)\]\:ps-rounded-r-md:has([aria-selected].day-range-end) {
|
|
2124
|
-
border-top-right-radius: calc(var(--radius) - 2px);
|
|
2125
|
-
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
2126
|
-
}
|
|
2127
1985
|
.\[\&\:last-of-type_td\]\:ps-border-b-0:last-of-type td {
|
|
2128
1986
|
border-bottom-width: 0px;
|
|
2129
1987
|
}
|
|
@@ -2143,10 +2001,6 @@ body {
|
|
|
2143
2001
|
.\[\&\>tr\]\:last\:ps-border-b-0:last-child>tr {
|
|
2144
2002
|
border-bottom-width: 0px;
|
|
2145
2003
|
}
|
|
2146
|
-
.\[\&_button\]\:ps-text-xs button {
|
|
2147
|
-
font-size: 0.75rem;
|
|
2148
|
-
line-height: 1rem;
|
|
2149
|
-
}
|
|
2150
2004
|
.\[\&_svg\]\:ps-pointer-events-none svg {
|
|
2151
2005
|
pointer-events: none;
|
|
2152
2006
|
}
|