@prisma/studio-core 0.0.0-dev.202504251004 → 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
@@ -585,9 +585,6 @@ video {
585
585
  white-space: nowrap;
586
586
  border-width: 0;
587
587
  }
588
- .ps-pointer-events-none {
589
- pointer-events: none;
590
- }
591
588
  .ps-fixed {
592
589
  position: fixed;
593
590
  }
@@ -611,6 +608,9 @@ video {
611
608
  top: 0px;
612
609
  bottom: 0px;
613
610
  }
611
+ .-ps-top-\[1px\] {
612
+ top: -1px;
613
+ }
614
614
  .ps-bottom-0 {
615
615
  bottom: 0px;
616
616
  }
@@ -668,9 +668,6 @@ video {
668
668
  .ps-ml-auto {
669
669
  margin-left: auto;
670
670
  }
671
- .ps-mr-auto {
672
- margin-right: auto;
673
- }
674
671
  .ps-mt-4 {
675
672
  margin-top: 1rem;
676
673
  }
@@ -704,9 +701,6 @@ video {
704
701
  .ps-h-4 {
705
702
  height: 1rem;
706
703
  }
707
- .ps-h-5 {
708
- height: 1.25rem;
709
- }
710
704
  .ps-h-6 {
711
705
  height: 1.5rem;
712
706
  }
@@ -719,6 +713,9 @@ video {
719
713
  .ps-h-\[1\.2rem\] {
720
714
  height: 1.2rem;
721
715
  }
716
+ .ps-h-\[2px\] {
717
+ height: 2px;
718
+ }
722
719
  .ps-h-\[var\(--radix-select-trigger-height\)\] {
723
720
  height: var(--radix-select-trigger-height);
724
721
  }
@@ -746,6 +743,9 @@ video {
746
743
  .ps-w-0 {
747
744
  width: 0px;
748
745
  }
746
+ .ps-w-1\/3 {
747
+ width: 33.333333%;
748
+ }
749
749
  .ps-w-16 {
750
750
  width: 4rem;
751
751
  }
@@ -865,6 +865,19 @@ video {
865
865
  --tw-scale-y: 1;
866
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));
867
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
+ }
868
881
  .ps-cursor-col-resize {
869
882
  cursor: col-resize;
870
883
  }
@@ -962,9 +975,6 @@ video {
962
975
  .ps-whitespace-nowrap {
963
976
  white-space: nowrap;
964
977
  }
965
- .ps-rounded-full {
966
- border-radius: 9999px;
967
- }
968
978
  .ps-rounded-lg {
969
979
  border-radius: var(--radius);
970
980
  }
@@ -981,6 +991,10 @@ video {
981
991
  border-bottom-right-radius: var(--radius);
982
992
  border-bottom-left-radius: var(--radius);
983
993
  }
994
+ .ps-rounded-r-full {
995
+ border-top-right-radius: 9999px;
996
+ border-bottom-right-radius: 9999px;
997
+ }
984
998
  .ps-rounded-t-lg {
985
999
  border-top-left-radius: var(--radius);
986
1000
  border-top-right-radius: var(--radius);
@@ -988,9 +1002,6 @@ video {
988
1002
  .ps-border {
989
1003
  border-width: 1px;
990
1004
  }
991
- .ps-border-2 {
992
- border-width: 2px;
993
- }
994
1005
  .ps-border-b {
995
1006
  border-bottom-width: 1px;
996
1007
  }
@@ -1036,6 +1047,10 @@ video {
1036
1047
  .ps-bg-destructive {
1037
1048
  background-color: hsl(var(--destructive));
1038
1049
  }
1050
+ .ps-bg-gray-200 {
1051
+ --tw-bg-opacity: 1;
1052
+ background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
1053
+ }
1039
1054
  .ps-bg-muted {
1040
1055
  background-color: hsl(var(--muted));
1041
1056
  }
@@ -1048,6 +1063,10 @@ video {
1048
1063
  .ps-bg-primary {
1049
1064
  background-color: hsl(var(--primary));
1050
1065
  }
1066
+ .ps-bg-purple-600 {
1067
+ --tw-bg-opacity: 1;
1068
+ background-color: rgb(147 51 234 / var(--tw-bg-opacity, 1));
1069
+ }
1051
1070
  .ps-bg-secondary {
1052
1071
  background-color: hsl(var(--secondary));
1053
1072
  }
@@ -1168,9 +1187,6 @@ video {
1168
1187
  .ps-font-mono {
1169
1188
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
1170
1189
  }
1171
- .ps-text-\[8px\] {
1172
- font-size: 8px;
1173
- }
1174
1190
  .ps-text-base {
1175
1191
  font-size: 1rem;
1176
1192
  line-height: 1.5rem;
@@ -1220,6 +1236,9 @@ video {
1220
1236
  .ps-text-foreground {
1221
1237
  color: hsl(var(--foreground));
1222
1238
  }
1239
+ .ps-text-foreground\/60 {
1240
+ color: hsl(var(--foreground) / 0.6);
1241
+ }
1223
1242
  .ps-text-foreground\/90 {
1224
1243
  color: hsl(var(--foreground) / 0.9);
1225
1244
  }
@@ -1291,11 +1310,6 @@ video {
1291
1310
  outline: 2px solid transparent;
1292
1311
  outline-offset: 2px;
1293
1312
  }
1294
- .ps-ring-0 {
1295
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1296
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
1297
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
1298
- }
1299
1313
  .ps-ring-offset-background {
1300
1314
  --tw-ring-offset-color: hsl(var(--background));
1301
1315
  }
@@ -1326,11 +1340,6 @@ video {
1326
1340
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1327
1341
  transition-duration: 150ms;
1328
1342
  }
1329
- .ps-transition-transform {
1330
- transition-property: transform;
1331
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1332
- transition-duration: 150ms;
1333
- }
1334
1343
  .ps-duration-200 {
1335
1344
  transition-duration: 200ms;
1336
1345
  }
@@ -1455,6 +1464,10 @@ body {
1455
1464
  color: hsl(var(--accent-foreground));
1456
1465
  }
1457
1466
 
1467
+ .hover\:ps-text-foreground:hover {
1468
+ color: hsl(var(--foreground));
1469
+ }
1470
+
1458
1471
  .hover\:ps-underline:hover {
1459
1472
  text-decoration-line: underline;
1460
1473
  }
@@ -1513,24 +1526,10 @@ body {
1513
1526
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
1514
1527
  }
1515
1528
 
1516
- .focus-visible\:ps-ring-2:focus-visible {
1517
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1518
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
1519
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
1520
- }
1521
-
1522
1529
  .focus-visible\:ps-ring-ring:focus-visible {
1523
1530
  --tw-ring-color: hsl(var(--ring));
1524
1531
  }
1525
1532
 
1526
- .focus-visible\:ps-ring-offset-2:focus-visible {
1527
- --tw-ring-offset-width: 2px;
1528
- }
1529
-
1530
- .focus-visible\:ps-ring-offset-background:focus-visible {
1531
- --tw-ring-offset-color: hsl(var(--background));
1532
- }
1533
-
1534
1533
  .disabled\:ps-pointer-events-none:disabled {
1535
1534
  pointer-events: none;
1536
1535
  }
@@ -1567,16 +1566,6 @@ body {
1567
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));
1568
1567
  }
1569
1568
 
1570
- .data-\[state\=checked\]\:ps-translate-x-4[data-state="checked"] {
1571
- --tw-translate-x: 1rem;
1572
- 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));
1573
- }
1574
-
1575
- .data-\[state\=unchecked\]\:ps-translate-x-0[data-state="unchecked"] {
1576
- --tw-translate-x: 0px;
1577
- 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));
1578
- }
1579
-
1580
1569
  .data-\[active\=true\]\:ps-bg-primary\/5[data-active="true"] {
1581
1570
  background-color: hsl(var(--primary) / 0.05);
1582
1571
  }
@@ -1597,8 +1586,8 @@ body {
1597
1586
  background-color: hsl(var(--muted));
1598
1587
  }
1599
1588
 
1600
- .data-\[state\=unchecked\]\:ps-bg-input[data-state="unchecked"] {
1601
- background-color: hsl(var(--input));
1589
+ .data-\[active\=true\]\:ps-text-foreground[data-active="true"] {
1590
+ color: hsl(var(--foreground));
1602
1591
  }
1603
1592
 
1604
1593
  .data-\[placeholder\]\:ps-text-muted-foreground[data-placeholder] {