@prisma/studio-core 0.0.0-dev.202504250807 → 0.0.0-dev.202504251005

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
@@ -608,6 +608,9 @@ video {
608
608
  top: 0px;
609
609
  bottom: 0px;
610
610
  }
611
+ .-ps-top-\[1px\] {
612
+ top: -1px;
613
+ }
611
614
  .ps-bottom-0 {
612
615
  bottom: 0px;
613
616
  }
@@ -710,6 +713,9 @@ video {
710
713
  .ps-h-\[1\.2rem\] {
711
714
  height: 1.2rem;
712
715
  }
716
+ .ps-h-\[2px\] {
717
+ height: 2px;
718
+ }
713
719
  .ps-h-\[var\(--radix-select-trigger-height\)\] {
714
720
  height: var(--radix-select-trigger-height);
715
721
  }
@@ -737,6 +743,9 @@ video {
737
743
  .ps-w-0 {
738
744
  width: 0px;
739
745
  }
746
+ .ps-w-1\/3 {
747
+ width: 33.333333%;
748
+ }
740
749
  .ps-w-16 {
741
750
  width: 4rem;
742
751
  }
@@ -856,6 +865,19 @@ video {
856
865
  --tw-scale-y: 1;
857
866
  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));
858
867
  }
868
+ @keyframes ps-indeterminate {
869
+
870
+ 0% {
871
+ transform: translateX(-100%);
872
+ }
873
+
874
+ 100% {
875
+ transform: translateX(400%);
876
+ }
877
+ }
878
+ .ps-animate-indeterminate-bar {
879
+ animation: ps-indeterminate 1.5s infinite ease-in-out;
880
+ }
859
881
  .ps-cursor-col-resize {
860
882
  cursor: col-resize;
861
883
  }
@@ -969,6 +991,10 @@ video {
969
991
  border-bottom-right-radius: var(--radius);
970
992
  border-bottom-left-radius: var(--radius);
971
993
  }
994
+ .ps-rounded-r-full {
995
+ border-top-right-radius: 9999px;
996
+ border-bottom-right-radius: 9999px;
997
+ }
972
998
  .ps-rounded-t-lg {
973
999
  border-top-left-radius: var(--radius);
974
1000
  border-top-right-radius: var(--radius);
@@ -1021,6 +1047,10 @@ video {
1021
1047
  .ps-bg-destructive {
1022
1048
  background-color: hsl(var(--destructive));
1023
1049
  }
1050
+ .ps-bg-gray-200 {
1051
+ --tw-bg-opacity: 1;
1052
+ background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
1053
+ }
1024
1054
  .ps-bg-muted {
1025
1055
  background-color: hsl(var(--muted));
1026
1056
  }
@@ -1033,6 +1063,10 @@ video {
1033
1063
  .ps-bg-primary {
1034
1064
  background-color: hsl(var(--primary));
1035
1065
  }
1066
+ .ps-bg-purple-600 {
1067
+ --tw-bg-opacity: 1;
1068
+ background-color: rgb(147 51 234 / var(--tw-bg-opacity, 1));
1069
+ }
1036
1070
  .ps-bg-secondary {
1037
1071
  background-color: hsl(var(--secondary));
1038
1072
  }
@@ -1202,6 +1236,9 @@ video {
1202
1236
  .ps-text-foreground {
1203
1237
  color: hsl(var(--foreground));
1204
1238
  }
1239
+ .ps-text-foreground\/60 {
1240
+ color: hsl(var(--foreground) / 0.6);
1241
+ }
1205
1242
  .ps-text-foreground\/90 {
1206
1243
  color: hsl(var(--foreground) / 0.9);
1207
1244
  }
@@ -1427,6 +1464,10 @@ body {
1427
1464
  color: hsl(var(--accent-foreground));
1428
1465
  }
1429
1466
 
1467
+ .hover\:ps-text-foreground:hover {
1468
+ color: hsl(var(--foreground));
1469
+ }
1470
+
1430
1471
  .hover\:ps-underline:hover {
1431
1472
  text-decoration-line: underline;
1432
1473
  }
@@ -1460,15 +1501,6 @@ body {
1460
1501
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
1461
1502
  }
1462
1503
 
1463
- .focus\:ps-ring-inset:focus {
1464
- --tw-ring-inset: inset;
1465
- }
1466
-
1467
- .focus\:ps-ring-indigo-400:focus {
1468
- --tw-ring-opacity: 1;
1469
- --tw-ring-color: rgb(129 140 248 / var(--tw-ring-opacity, 1));
1470
- }
1471
-
1472
1504
  .focus\:ps-ring-ring:focus {
1473
1505
  --tw-ring-color: hsl(var(--ring));
1474
1506
  }
@@ -1554,6 +1586,10 @@ body {
1554
1586
  background-color: hsl(var(--muted));
1555
1587
  }
1556
1588
 
1589
+ .data-\[active\=true\]\:ps-text-foreground[data-active="true"] {
1590
+ color: hsl(var(--foreground));
1591
+ }
1592
+
1557
1593
  .data-\[placeholder\]\:ps-text-muted-foreground[data-placeholder] {
1558
1594
  color: hsl(var(--muted-foreground));
1559
1595
  }
@@ -1,5 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { A as Adapter } from '../adapter-DaDiAEIc.cjs';
2
+ import { A as Adapter } from '../adapter-BOYOEPRL.cjs';
3
3
 
4
4
  interface StudioProps {
5
5
  adapter: Adapter;
@@ -1,5 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { A as Adapter } from '../adapter-DaDiAEIc.js';
2
+ import { A as Adapter } from '../adapter-BOYOEPRL.js';
3
3
 
4
4
  interface StudioProps {
5
5
  adapter: Adapter;