@prisma/studio-core 0.0.0-dev.202505010212 → 0.0.0-dev.202505010707
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/data/index.js +1 -1
- package/dist/ui/index.cjs +42 -42
- package/dist/ui/index.css +48 -12
- package/dist/ui/index.js +6 -6
- package/package.json +1 -1
- package/dist/chunk-2ZJZX5I7.js +0 -0
package/dist/ui/index.css
CHANGED
|
@@ -538,6 +538,7 @@ video {
|
|
|
538
538
|
--table-border: 240 5.9% 90%;
|
|
539
539
|
|
|
540
540
|
--studio-cell-spacing: 0.5rem;
|
|
541
|
+
--studio-cell-height: 38px;
|
|
541
542
|
}
|
|
542
543
|
.dark {
|
|
543
544
|
--background: 240 10% 3.9%;
|
|
@@ -677,6 +678,9 @@ video {
|
|
|
677
678
|
.ps-mt-4 {
|
|
678
679
|
margin-top: 1rem;
|
|
679
680
|
}
|
|
681
|
+
.ps-box-border {
|
|
682
|
+
box-sizing: border-box;
|
|
683
|
+
}
|
|
680
684
|
.ps-block {
|
|
681
685
|
display: block;
|
|
682
686
|
}
|
|
@@ -728,6 +732,9 @@ video {
|
|
|
728
732
|
.ps-h-\[var\(--radix-select-trigger-height\)\] {
|
|
729
733
|
height: var(--radix-select-trigger-height);
|
|
730
734
|
}
|
|
735
|
+
.ps-h-\[var\(--studio-cell-height\)\] {
|
|
736
|
+
height: var(--studio-cell-height);
|
|
737
|
+
}
|
|
731
738
|
.ps-h-full {
|
|
732
739
|
height: 100%;
|
|
733
740
|
}
|
|
@@ -804,9 +811,6 @@ video {
|
|
|
804
811
|
.ps-min-w-\[8rem\] {
|
|
805
812
|
min-width: 8rem;
|
|
806
813
|
}
|
|
807
|
-
.ps-min-w-\[var\(--radix-popover-trigger-width\)\] {
|
|
808
|
-
min-width: var(--radix-popover-trigger-width);
|
|
809
|
-
}
|
|
810
814
|
.ps-min-w-\[var\(--radix-select-trigger-width\)\] {
|
|
811
815
|
min-width: var(--radix-select-trigger-width);
|
|
812
816
|
}
|
|
@@ -1044,6 +1048,10 @@ video {
|
|
|
1044
1048
|
.ps-border-none {
|
|
1045
1049
|
border-style: none;
|
|
1046
1050
|
}
|
|
1051
|
+
.ps-border-blue-500 {
|
|
1052
|
+
--tw-border-opacity: 1;
|
|
1053
|
+
border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
|
|
1054
|
+
}
|
|
1047
1055
|
.ps-border-input {
|
|
1048
1056
|
border-color: hsl(var(--input));
|
|
1049
1057
|
}
|
|
@@ -1148,6 +1156,10 @@ video {
|
|
|
1148
1156
|
padding-left: 2rem;
|
|
1149
1157
|
padding-right: 2rem;
|
|
1150
1158
|
}
|
|
1159
|
+
.ps-px-\[var\(--studio-cell-spacing\)\] {
|
|
1160
|
+
padding-left: var(--studio-cell-spacing);
|
|
1161
|
+
padding-right: var(--studio-cell-spacing);
|
|
1162
|
+
}
|
|
1151
1163
|
.ps-py-0\.5 {
|
|
1152
1164
|
padding-top: 0.125rem;
|
|
1153
1165
|
padding-bottom: 0.125rem;
|
|
@@ -1214,10 +1226,6 @@ video {
|
|
|
1214
1226
|
.ps-text-\[8px\] {
|
|
1215
1227
|
font-size: 8px;
|
|
1216
1228
|
}
|
|
1217
|
-
.ps-text-base {
|
|
1218
|
-
font-size: 1rem;
|
|
1219
|
-
line-height: 1.5rem;
|
|
1220
|
-
}
|
|
1221
1229
|
.ps-text-lg {
|
|
1222
1230
|
font-size: 1.125rem;
|
|
1223
1231
|
line-height: 1.75rem;
|
|
@@ -1242,6 +1250,9 @@ video {
|
|
|
1242
1250
|
.ps-capitalize {
|
|
1243
1251
|
text-transform: capitalize;
|
|
1244
1252
|
}
|
|
1253
|
+
.ps-leading-\[var\(--studio-cell-height\)\] {
|
|
1254
|
+
line-height: var(--studio-cell-height);
|
|
1255
|
+
}
|
|
1245
1256
|
.ps-leading-none {
|
|
1246
1257
|
line-height: 1;
|
|
1247
1258
|
}
|
|
@@ -1428,6 +1439,28 @@ body {
|
|
|
1428
1439
|
color: hsl(var(--foreground));
|
|
1429
1440
|
}
|
|
1430
1441
|
|
|
1442
|
+
.ps-min-w-cell {
|
|
1443
|
+
min-width: calc(var(--radix-popover-trigger-width) + 1px);
|
|
1444
|
+
}
|
|
1445
|
+
|
|
1446
|
+
.ps-cell-leading {
|
|
1447
|
+
height: var(--studio-cell-height);
|
|
1448
|
+
padding-top: 11px;
|
|
1449
|
+
padding-bottom: 11px;
|
|
1450
|
+
font-size: 0.75rem;
|
|
1451
|
+
line-height: 1rem;
|
|
1452
|
+
line-height: 1;
|
|
1453
|
+
}
|
|
1454
|
+
|
|
1455
|
+
@media (min-width: 768px) {
|
|
1456
|
+
|
|
1457
|
+
.ps-cell-leading {
|
|
1458
|
+
font-size: 0.75rem;
|
|
1459
|
+
line-height: 1rem;
|
|
1460
|
+
line-height: 1;
|
|
1461
|
+
}
|
|
1462
|
+
}
|
|
1463
|
+
|
|
1431
1464
|
.file\:ps-border-0::file-selector-button {
|
|
1432
1465
|
border-width: 0px;
|
|
1433
1466
|
}
|
|
@@ -1858,11 +1891,6 @@ body {
|
|
|
1858
1891
|
font-size: 0.875rem;
|
|
1859
1892
|
line-height: 1.25rem;
|
|
1860
1893
|
}
|
|
1861
|
-
|
|
1862
|
-
.md\:ps-text-xs {
|
|
1863
|
-
font-size: 0.75rem;
|
|
1864
|
-
line-height: 1rem;
|
|
1865
|
-
}
|
|
1866
1894
|
}
|
|
1867
1895
|
|
|
1868
1896
|
.\[\&\:has\(\[role\=checkbox\]\)\]\:ps-pr-0:has([role=checkbox]) {
|
|
@@ -1911,6 +1939,14 @@ body {
|
|
|
1911
1939
|
flex-shrink: 0;
|
|
1912
1940
|
}
|
|
1913
1941
|
|
|
1942
|
+
.\[\&_th\]\:ps-sticky th {
|
|
1943
|
+
position: sticky;
|
|
1944
|
+
}
|
|
1945
|
+
|
|
1946
|
+
.\[\&_th\]\:ps-top-0 th {
|
|
1947
|
+
top: 0px;
|
|
1948
|
+
}
|
|
1949
|
+
|
|
1914
1950
|
.\[\&_tr\:last-child\]\:ps-border-0 tr:last-child {
|
|
1915
1951
|
border-width: 0px;
|
|
1916
1952
|
}
|