@prisma/studio-core 0.0.0-dev.202504292236 → 0.0.0-dev.202504300949

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,6 +585,9 @@ video {
585
585
  white-space: nowrap;
586
586
  border-width: 0;
587
587
  }
588
+ .ps-pointer-events-none {
589
+ pointer-events: none;
590
+ }
588
591
  .ps-fixed {
589
592
  position: fixed;
590
593
  }
@@ -668,6 +671,9 @@ video {
668
671
  .ps-ml-auto {
669
672
  margin-left: auto;
670
673
  }
674
+ .ps-mr-auto {
675
+ margin-right: auto;
676
+ }
671
677
  .ps-mt-4 {
672
678
  margin-top: 1rem;
673
679
  }
@@ -701,6 +707,9 @@ video {
701
707
  .ps-h-4 {
702
708
  height: 1rem;
703
709
  }
710
+ .ps-h-5 {
711
+ height: 1.25rem;
712
+ }
704
713
  .ps-h-6 {
705
714
  height: 1.5rem;
706
715
  }
@@ -795,6 +804,9 @@ video {
795
804
  .ps-min-w-\[8rem\] {
796
805
  min-width: 8rem;
797
806
  }
807
+ .ps-min-w-\[var\(--radix-popover-trigger-width\)\] {
808
+ min-width: var(--radix-popover-trigger-width);
809
+ }
798
810
  .ps-min-w-\[var\(--radix-select-trigger-width\)\] {
799
811
  min-width: var(--radix-select-trigger-width);
800
812
  }
@@ -922,6 +934,9 @@ video {
922
934
  .ps-justify-between {
923
935
  justify-content: space-between;
924
936
  }
937
+ .ps-gap-0 {
938
+ gap: 0px;
939
+ }
925
940
  .ps-gap-1 {
926
941
  gap: 0.25rem;
927
942
  }
@@ -978,6 +993,9 @@ video {
978
993
  .ps-whitespace-nowrap {
979
994
  white-space: nowrap;
980
995
  }
996
+ .ps-rounded-full {
997
+ border-radius: 9999px;
998
+ }
981
999
  .ps-rounded-lg {
982
1000
  border-radius: var(--radius);
983
1001
  }
@@ -1005,6 +1023,9 @@ video {
1005
1023
  .ps-border {
1006
1024
  border-width: 1px;
1007
1025
  }
1026
+ .ps-border-2 {
1027
+ border-width: 2px;
1028
+ }
1008
1029
  .ps-border-b {
1009
1030
  border-bottom-width: 1px;
1010
1031
  }
@@ -1151,6 +1172,10 @@ video {
1151
1172
  padding-top: 0.75rem;
1152
1173
  padding-bottom: 0.75rem;
1153
1174
  }
1175
+ .ps-py-4 {
1176
+ padding-top: 1rem;
1177
+ padding-bottom: 1rem;
1178
+ }
1154
1179
  .ps-pb-2 {
1155
1180
  padding-bottom: 0.5rem;
1156
1181
  }
@@ -1190,6 +1215,9 @@ video {
1190
1215
  .ps-font-mono {
1191
1216
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
1192
1217
  }
1218
+ .ps-text-\[8px\] {
1219
+ font-size: 8px;
1220
+ }
1193
1221
  .ps-text-base {
1194
1222
  font-size: 1rem;
1195
1223
  line-height: 1.5rem;
@@ -1313,6 +1341,11 @@ video {
1313
1341
  outline: 2px solid transparent;
1314
1342
  outline-offset: 2px;
1315
1343
  }
1344
+ .ps-ring-0 {
1345
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1346
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
1347
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
1348
+ }
1316
1349
  .ps-ring-offset-background {
1317
1350
  --tw-ring-offset-color: hsl(var(--background));
1318
1351
  }
@@ -1343,6 +1376,11 @@ video {
1343
1376
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1344
1377
  transition-duration: 150ms;
1345
1378
  }
1379
+ .ps-transition-transform {
1380
+ transition-property: transform;
1381
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1382
+ transition-duration: 150ms;
1383
+ }
1346
1384
  .ps-duration-200 {
1347
1385
  transition-duration: 200ms;
1348
1386
  }
@@ -1538,10 +1576,24 @@ body {
1538
1576
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
1539
1577
  }
1540
1578
 
1579
+ .focus-visible\:ps-ring-2:focus-visible {
1580
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1581
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
1582
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
1583
+ }
1584
+
1541
1585
  .focus-visible\:ps-ring-ring:focus-visible {
1542
1586
  --tw-ring-color: hsl(var(--ring));
1543
1587
  }
1544
1588
 
1589
+ .focus-visible\:ps-ring-offset-2:focus-visible {
1590
+ --tw-ring-offset-width: 2px;
1591
+ }
1592
+
1593
+ .focus-visible\:ps-ring-offset-background:focus-visible {
1594
+ --tw-ring-offset-color: hsl(var(--background));
1595
+ }
1596
+
1545
1597
  .disabled\:ps-pointer-events-none:disabled {
1546
1598
  pointer-events: none;
1547
1599
  }
@@ -1554,6 +1606,14 @@ body {
1554
1606
  opacity: 0.5;
1555
1607
  }
1556
1608
 
1609
+ .ps-peer:disabled ~ .peer-disabled\:ps-cursor-not-allowed {
1610
+ cursor: not-allowed;
1611
+ }
1612
+
1613
+ .ps-peer:disabled ~ .peer-disabled\:ps-opacity-70 {
1614
+ opacity: 0.7;
1615
+ }
1616
+
1557
1617
  .data-\[disabled\]\:ps-pointer-events-none[data-disabled] {
1558
1618
  pointer-events: none;
1559
1619
  }
@@ -1578,6 +1638,16 @@ body {
1578
1638
  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));
1579
1639
  }
1580
1640
 
1641
+ .data-\[state\=checked\]\:ps-translate-x-4[data-state="checked"] {
1642
+ --tw-translate-x: 1rem;
1643
+ 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));
1644
+ }
1645
+
1646
+ .data-\[state\=unchecked\]\:ps-translate-x-0[data-state="unchecked"] {
1647
+ --tw-translate-x: 0px;
1648
+ 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));
1649
+ }
1650
+
1581
1651
  .data-\[active\=true\]\:ps-bg-primary\/5[data-active="true"] {
1582
1652
  background-color: hsl(var(--primary) / 0.05);
1583
1653
  }
@@ -1598,6 +1668,10 @@ body {
1598
1668
  background-color: hsl(var(--muted));
1599
1669
  }
1600
1670
 
1671
+ .data-\[state\=unchecked\]\:ps-bg-input[data-state="unchecked"] {
1672
+ background-color: hsl(var(--input));
1673
+ }
1674
+
1601
1675
  .data-\[active\=true\]\:ps-text-foreground[data-active="true"] {
1602
1676
  color: hsl(var(--foreground));
1603
1677
  }
@@ -1,5 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { A as Adapter } from '../adapter-ClY8JSgB.cjs';
2
+ import { A as Adapter } from '../adapter-BJtXh9Gf.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-ClY8JSgB.js';
2
+ import { A as Adapter } from '../adapter-BJtXh9Gf.js';
3
3
 
4
4
  interface StudioProps {
5
5
  adapter: Adapter;