@prisma/studio-core 0.0.0-dev.202505131734 → 0.0.0-dev.202505131756
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.cjs +22 -22
- package/dist/ui/index.css +19 -14
- package/dist/ui/index.js +3 -3
- package/package.json +1 -1
package/dist/ui/index.css
CHANGED
|
@@ -685,9 +685,6 @@ video {
|
|
|
685
685
|
.ps-z-\[9999\] {
|
|
686
686
|
z-index: 9999;
|
|
687
687
|
}
|
|
688
|
-
.\!ps-m-0 {
|
|
689
|
-
margin: 0px !important;
|
|
690
|
-
}
|
|
691
688
|
.ps--mx-1 {
|
|
692
689
|
margin-left: -0.25rem;
|
|
693
690
|
margin-right: -0.25rem;
|
|
@@ -736,9 +733,6 @@ video {
|
|
|
736
733
|
.ps-grid {
|
|
737
734
|
display: grid;
|
|
738
735
|
}
|
|
739
|
-
.ps-hidden {
|
|
740
|
-
display: none;
|
|
741
|
-
}
|
|
742
736
|
.ps-size-4 {
|
|
743
737
|
width: 1rem;
|
|
744
738
|
height: 1rem;
|
|
@@ -1100,6 +1094,11 @@ video {
|
|
|
1100
1094
|
.ps-gap-px {
|
|
1101
1095
|
gap: 1px;
|
|
1102
1096
|
}
|
|
1097
|
+
.ps-space-x-1 > :not([hidden]) ~ :not([hidden]) {
|
|
1098
|
+
--tw-space-x-reverse: 0;
|
|
1099
|
+
margin-right: calc(0.25rem * var(--tw-space-x-reverse));
|
|
1100
|
+
margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1101
|
+
}
|
|
1103
1102
|
.ps-space-x-2 > :not([hidden]) ~ :not([hidden]) {
|
|
1104
1103
|
--tw-space-x-reverse: 0;
|
|
1105
1104
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
@@ -1296,9 +1295,6 @@ video {
|
|
|
1296
1295
|
.ps-fill-current {
|
|
1297
1296
|
fill: currentColor;
|
|
1298
1297
|
}
|
|
1299
|
-
.\!ps-p-0 {
|
|
1300
|
-
padding: 0px !important;
|
|
1301
|
-
}
|
|
1302
1298
|
.ps-p-0 {
|
|
1303
1299
|
padding: 0px;
|
|
1304
1300
|
}
|
|
@@ -1438,6 +1434,9 @@ video {
|
|
|
1438
1434
|
font-size: 0.75rem;
|
|
1439
1435
|
line-height: 1rem;
|
|
1440
1436
|
}
|
|
1437
|
+
.ps-font-bold {
|
|
1438
|
+
font-weight: 700;
|
|
1439
|
+
}
|
|
1441
1440
|
.ps-font-medium {
|
|
1442
1441
|
font-weight: 500;
|
|
1443
1442
|
}
|
|
@@ -1753,6 +1752,9 @@ body {
|
|
|
1753
1752
|
.hover\:ps-bg-muted\/50:hover {
|
|
1754
1753
|
background-color: hsl(var(--muted) / 0.5);
|
|
1755
1754
|
}
|
|
1755
|
+
.hover\:ps-bg-primary:hover {
|
|
1756
|
+
background-color: hsl(var(--primary));
|
|
1757
|
+
}
|
|
1756
1758
|
.hover\:ps-bg-primary\/80:hover {
|
|
1757
1759
|
background-color: hsl(var(--primary) / 0.8);
|
|
1758
1760
|
}
|
|
@@ -1771,6 +1773,9 @@ body {
|
|
|
1771
1773
|
.hover\:ps-text-foreground:hover {
|
|
1772
1774
|
color: hsl(var(--foreground));
|
|
1773
1775
|
}
|
|
1776
|
+
.hover\:ps-text-primary-foreground:hover {
|
|
1777
|
+
color: hsl(var(--primary-foreground));
|
|
1778
|
+
}
|
|
1774
1779
|
.hover\:ps-underline:hover {
|
|
1775
1780
|
text-decoration-line: underline;
|
|
1776
1781
|
}
|
|
@@ -2095,11 +2100,11 @@ body {
|
|
|
2095
2100
|
line-height: 1.25rem;
|
|
2096
2101
|
}
|
|
2097
2102
|
}
|
|
2098
|
-
.\[\&\:has\(\>\.
|
|
2103
|
+
.\[\&\:has\(\>\.day-range-end\)\]\:ps-rounded-r-md:has(>.day-range-end) {
|
|
2099
2104
|
border-top-right-radius: calc(var(--radius) - 2px);
|
|
2100
2105
|
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
2101
2106
|
}
|
|
2102
|
-
.\[\&\:has\(\>\.
|
|
2107
|
+
.\[\&\:has\(\>\.day-range-start\)\]\:ps-rounded-l-md:has(>.day-range-start) {
|
|
2103
2108
|
border-top-left-radius: calc(var(--radius) - 2px);
|
|
2104
2109
|
border-bottom-left-radius: calc(var(--radius) - 2px);
|
|
2105
2110
|
}
|
|
@@ -2114,10 +2119,10 @@ body {
|
|
|
2114
2119
|
border-top-right-radius: calc(var(--radius) - 2px);
|
|
2115
2120
|
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
2116
2121
|
}
|
|
2117
|
-
.\[\&\:has\(\[aria-selected\]\.outside\)\]\:ps-bg-
|
|
2118
|
-
background-color: hsl(var(--
|
|
2122
|
+
.\[\&\:has\(\[aria-selected\]\.day-outside\)\]\:ps-bg-accent\/50:has([aria-selected].day-outside) {
|
|
2123
|
+
background-color: hsl(var(--accent) / 0.5);
|
|
2119
2124
|
}
|
|
2120
|
-
.\[\&\:has\(\[aria-selected\]\.
|
|
2125
|
+
.\[\&\:has\(\[aria-selected\]\.day-range-end\)\]\:ps-rounded-r-md:has([aria-selected].day-range-end) {
|
|
2121
2126
|
border-top-right-radius: calc(var(--radius) - 2px);
|
|
2122
2127
|
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
2123
2128
|
}
|