@prisma/studio-core 0.0.0-dev.202505141740 → 0.0.0-dev.202505141829

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.css CHANGED
@@ -718,6 +718,9 @@ video {
718
718
  .ps-block {
719
719
  display: block;
720
720
  }
721
+ .ps-inline-block {
722
+ display: inline-block;
723
+ }
721
724
  .ps-flex {
722
725
  display: flex;
723
726
  }
@@ -784,6 +787,9 @@ video {
784
787
  .ps-h-\[39px\] {
785
788
  height: 39px;
786
789
  }
790
+ .ps-h-\[calc\(100\%-theme\(space\.28\)\)\] {
791
+ height: calc(100% - 7rem);
792
+ }
787
793
  .ps-h-\[var\(--radix-select-trigger-height\)\] {
788
794
  height: var(--radix-select-trigger-height);
789
795
  }
@@ -906,6 +912,9 @@ video {
906
912
  .ps-min-w-\[8rem\] {
907
913
  min-width: 8rem;
908
914
  }
915
+ .ps-min-w-\[calc\(1\.25rem\*2\+0\.25rem\)\] {
916
+ min-width: calc(1.25rem * 2 + 0.25rem);
917
+ }
909
918
  .ps-min-w-\[var\(--radix-popover-trigger-width\)\] {
910
919
  min-width: var(--radix-popover-trigger-width);
911
920
  }
@@ -919,6 +928,9 @@ video {
919
928
  min-width: -moz-max-content;
920
929
  min-width: max-content;
921
930
  }
931
+ .ps-max-w-44 {
932
+ max-width: 11rem;
933
+ }
922
934
  .ps-max-w-72 {
923
935
  max-width: 18rem;
924
936
  }
@@ -1099,6 +1111,9 @@ video {
1099
1111
  .ps-gap-4 {
1100
1112
  gap: 1rem;
1101
1113
  }
1114
+ .ps-gap-6 {
1115
+ gap: 1.5rem;
1116
+ }
1102
1117
  .ps-gap-px {
1103
1118
  gap: 1px;
1104
1119
  }
@@ -1312,6 +1327,9 @@ video {
1312
1327
  .ps-p-0 {
1313
1328
  padding: 0px;
1314
1329
  }
1330
+ .ps-p-0\.5 {
1331
+ padding: 0.125rem;
1332
+ }
1315
1333
  .ps-p-1 {
1316
1334
  padding: 0.25rem;
1317
1335
  }
@@ -1452,9 +1470,6 @@ video {
1452
1470
  font-size: 0.75rem;
1453
1471
  line-height: 1rem;
1454
1472
  }
1455
- .ps-font-bold {
1456
- font-weight: 700;
1457
- }
1458
1473
  .ps-font-medium {
1459
1474
  font-weight: 500;
1460
1475
  }
@@ -1534,10 +1549,6 @@ video {
1534
1549
  --tw-text-opacity: 1;
1535
1550
  color: rgb(82 82 82 / var(--tw-text-opacity, 1));
1536
1551
  }
1537
- .ps-text-orange-500 {
1538
- --tw-text-opacity: 1;
1539
- color: rgb(249 115 22 / var(--tw-text-opacity, 1));
1540
- }
1541
1552
  .ps-text-orange-700 {
1542
1553
  --tw-text-opacity: 1;
1543
1554
  color: rgb(194 65 12 / var(--tw-text-opacity, 1));
@@ -1792,6 +1803,9 @@ body {
1792
1803
  .hover\:ps-text-foreground:hover {
1793
1804
  color: hsl(var(--foreground));
1794
1805
  }
1806
+ .hover\:ps-text-primary:hover {
1807
+ color: hsl(var(--primary));
1808
+ }
1795
1809
  .hover\:ps-underline:hover {
1796
1810
  text-decoration-line: underline;
1797
1811
  }