@prisma/studio-core 0.0.0-dev.202504280803 → 0.0.0-dev.202504280807
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 +29 -37
- package/dist/ui/index.css +8 -63
- package/dist/ui/index.js +6 -14
- package/package.json +3 -4
package/dist/ui/index.css
CHANGED
|
@@ -538,7 +538,6 @@ video {
|
|
|
538
538
|
--table-border: 240 5.9% 90%;
|
|
539
539
|
|
|
540
540
|
--studio-cell-spacing: 0.5rem;
|
|
541
|
-
--studio-cell-height: 38px;
|
|
542
541
|
}
|
|
543
542
|
.dark {
|
|
544
543
|
--background: 240 10% 3.9%;
|
|
@@ -586,9 +585,6 @@ video {
|
|
|
586
585
|
white-space: nowrap;
|
|
587
586
|
border-width: 0;
|
|
588
587
|
}
|
|
589
|
-
.ps-pointer-events-none {
|
|
590
|
-
pointer-events: none;
|
|
591
|
-
}
|
|
592
588
|
.ps-fixed {
|
|
593
589
|
position: fixed;
|
|
594
590
|
}
|
|
@@ -672,9 +668,6 @@ video {
|
|
|
672
668
|
.ps-ml-auto {
|
|
673
669
|
margin-left: auto;
|
|
674
670
|
}
|
|
675
|
-
.ps-mr-auto {
|
|
676
|
-
margin-right: auto;
|
|
677
|
-
}
|
|
678
671
|
.ps-mt-4 {
|
|
679
672
|
margin-top: 1rem;
|
|
680
673
|
}
|
|
@@ -708,9 +701,6 @@ video {
|
|
|
708
701
|
.ps-h-4 {
|
|
709
702
|
height: 1rem;
|
|
710
703
|
}
|
|
711
|
-
.ps-h-5 {
|
|
712
|
-
height: 1.25rem;
|
|
713
|
-
}
|
|
714
704
|
.ps-h-6 {
|
|
715
705
|
height: 1.5rem;
|
|
716
706
|
}
|
|
@@ -729,9 +719,6 @@ video {
|
|
|
729
719
|
.ps-h-\[var\(--radix-select-trigger-height\)\] {
|
|
730
720
|
height: var(--radix-select-trigger-height);
|
|
731
721
|
}
|
|
732
|
-
.ps-h-\[var\(--studio-cell-height\)\] {
|
|
733
|
-
height: var(--studio-cell-height);
|
|
734
|
-
}
|
|
735
722
|
.ps-h-full {
|
|
736
723
|
height: 100%;
|
|
737
724
|
}
|
|
@@ -988,9 +975,6 @@ video {
|
|
|
988
975
|
.ps-whitespace-nowrap {
|
|
989
976
|
white-space: nowrap;
|
|
990
977
|
}
|
|
991
|
-
.ps-rounded-full {
|
|
992
|
-
border-radius: 9999px;
|
|
993
|
-
}
|
|
994
978
|
.ps-rounded-lg {
|
|
995
979
|
border-radius: var(--radius);
|
|
996
980
|
}
|
|
@@ -1018,9 +1002,6 @@ video {
|
|
|
1018
1002
|
.ps-border {
|
|
1019
1003
|
border-width: 1px;
|
|
1020
1004
|
}
|
|
1021
|
-
.ps-border-2 {
|
|
1022
|
-
border-width: 2px;
|
|
1023
|
-
}
|
|
1024
1005
|
.ps-border-b {
|
|
1025
1006
|
border-bottom-width: 1px;
|
|
1026
1007
|
}
|
|
@@ -1116,6 +1097,9 @@ video {
|
|
|
1116
1097
|
.ps-p-6 {
|
|
1117
1098
|
padding: 1.5rem;
|
|
1118
1099
|
}
|
|
1100
|
+
.ps-p-\[var\(--studio-cell-spacing\)\] {
|
|
1101
|
+
padding: var(--studio-cell-spacing);
|
|
1102
|
+
}
|
|
1119
1103
|
.ps-px-0 {
|
|
1120
1104
|
padding-left: 0px;
|
|
1121
1105
|
padding-right: 0px;
|
|
@@ -1203,9 +1187,6 @@ video {
|
|
|
1203
1187
|
.ps-font-mono {
|
|
1204
1188
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
1205
1189
|
}
|
|
1206
|
-
.ps-text-\[8px\] {
|
|
1207
|
-
font-size: 8px;
|
|
1208
|
-
}
|
|
1209
1190
|
.ps-text-base {
|
|
1210
1191
|
font-size: 1rem;
|
|
1211
1192
|
line-height: 1.5rem;
|
|
@@ -1234,9 +1215,6 @@ video {
|
|
|
1234
1215
|
.ps-capitalize {
|
|
1235
1216
|
text-transform: capitalize;
|
|
1236
1217
|
}
|
|
1237
|
-
.ps-leading-\[var\(--studio-cell-height\)\] {
|
|
1238
|
-
line-height: var(--studio-cell-height);
|
|
1239
|
-
}
|
|
1240
1218
|
.ps-leading-none {
|
|
1241
1219
|
line-height: 1;
|
|
1242
1220
|
}
|
|
@@ -1332,11 +1310,6 @@ video {
|
|
|
1332
1310
|
outline: 2px solid transparent;
|
|
1333
1311
|
outline-offset: 2px;
|
|
1334
1312
|
}
|
|
1335
|
-
.ps-ring-0 {
|
|
1336
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1337
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1338
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1339
|
-
}
|
|
1340
1313
|
.ps-ring-offset-background {
|
|
1341
1314
|
--tw-ring-offset-color: hsl(var(--background));
|
|
1342
1315
|
}
|
|
@@ -1367,11 +1340,6 @@ video {
|
|
|
1367
1340
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1368
1341
|
transition-duration: 150ms;
|
|
1369
1342
|
}
|
|
1370
|
-
.ps-transition-transform {
|
|
1371
|
-
transition-property: transform;
|
|
1372
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1373
|
-
transition-duration: 150ms;
|
|
1374
|
-
}
|
|
1375
1343
|
.ps-duration-200 {
|
|
1376
1344
|
transition-duration: 200ms;
|
|
1377
1345
|
}
|
|
@@ -1558,24 +1526,10 @@ body {
|
|
|
1558
1526
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1559
1527
|
}
|
|
1560
1528
|
|
|
1561
|
-
.focus-visible\:ps-ring-2:focus-visible {
|
|
1562
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1563
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1564
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1565
|
-
}
|
|
1566
|
-
|
|
1567
1529
|
.focus-visible\:ps-ring-ring:focus-visible {
|
|
1568
1530
|
--tw-ring-color: hsl(var(--ring));
|
|
1569
1531
|
}
|
|
1570
1532
|
|
|
1571
|
-
.focus-visible\:ps-ring-offset-2:focus-visible {
|
|
1572
|
-
--tw-ring-offset-width: 2px;
|
|
1573
|
-
}
|
|
1574
|
-
|
|
1575
|
-
.focus-visible\:ps-ring-offset-background:focus-visible {
|
|
1576
|
-
--tw-ring-offset-color: hsl(var(--background));
|
|
1577
|
-
}
|
|
1578
|
-
|
|
1579
1533
|
.disabled\:ps-pointer-events-none:disabled {
|
|
1580
1534
|
pointer-events: none;
|
|
1581
1535
|
}
|
|
@@ -1612,16 +1566,6 @@ body {
|
|
|
1612
1566
|
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));
|
|
1613
1567
|
}
|
|
1614
1568
|
|
|
1615
|
-
.data-\[state\=checked\]\:ps-translate-x-4[data-state="checked"] {
|
|
1616
|
-
--tw-translate-x: 1rem;
|
|
1617
|
-
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));
|
|
1618
|
-
}
|
|
1619
|
-
|
|
1620
|
-
.data-\[state\=unchecked\]\:ps-translate-x-0[data-state="unchecked"] {
|
|
1621
|
-
--tw-translate-x: 0px;
|
|
1622
|
-
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));
|
|
1623
|
-
}
|
|
1624
|
-
|
|
1625
1569
|
.data-\[active\=true\]\:ps-bg-primary\/5[data-active="true"] {
|
|
1626
1570
|
background-color: hsl(var(--primary) / 0.05);
|
|
1627
1571
|
}
|
|
@@ -1642,10 +1586,6 @@ body {
|
|
|
1642
1586
|
background-color: hsl(var(--muted));
|
|
1643
1587
|
}
|
|
1644
1588
|
|
|
1645
|
-
.data-\[state\=unchecked\]\:ps-bg-input[data-state="unchecked"] {
|
|
1646
|
-
background-color: hsl(var(--input));
|
|
1647
|
-
}
|
|
1648
|
-
|
|
1649
1589
|
.data-\[active\=true\]\:ps-text-foreground[data-active="true"] {
|
|
1650
1590
|
color: hsl(var(--foreground));
|
|
1651
1591
|
}
|
|
@@ -1836,6 +1776,11 @@ body {
|
|
|
1836
1776
|
font-size: 0.875rem;
|
|
1837
1777
|
line-height: 1.25rem;
|
|
1838
1778
|
}
|
|
1779
|
+
|
|
1780
|
+
.md\:ps-text-xs {
|
|
1781
|
+
font-size: 0.75rem;
|
|
1782
|
+
line-height: 1rem;
|
|
1783
|
+
}
|
|
1839
1784
|
}
|
|
1840
1785
|
|
|
1841
1786
|
.\[\&\:has\(\[role\=checkbox\]\)\]\:ps-pr-0:has([role=checkbox]) {
|