@prisma/studio-core 0.0.0-dev.202505100653 → 0.0.0-dev.202505100922
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/{adapter-BQaQoUNI.d.cts → adapter-Dzg3tDL6.d.cts} +1 -3
- package/dist/{adapter-BQaQoUNI.d.ts → adapter-Dzg3tDL6.d.ts} +1 -3
- package/dist/{chunk-IAE3ZG42.js → chunk-D7F6BRP4.js} +2 -2
- package/dist/data/accelerate/index.d.cts +2 -2
- package/dist/data/accelerate/index.d.ts +2 -2
- package/dist/data/bff/index.d.cts +2 -2
- package/dist/data/bff/index.d.ts +2 -2
- package/dist/data/index.d.cts +2 -2
- package/dist/data/index.d.ts +2 -2
- package/dist/data/pglite/index.cjs +2 -2
- package/dist/data/pglite/index.d.cts +2 -2
- package/dist/data/pglite/index.d.ts +2 -2
- package/dist/data/pglite/index.js +1 -1
- package/dist/data/postgres-core/index.cjs +2 -2
- package/dist/data/postgres-core/index.d.cts +2 -2
- package/dist/data/postgres-core/index.d.ts +2 -2
- package/dist/data/postgres-core/index.js +1 -1
- package/dist/{index-DuLnmKEq.d.cts → index-BKNnsdY7.d.cts} +1 -1
- package/dist/{index-Crb7VQNF.d.ts → index-BUtuWj4M.d.ts} +1 -1
- package/dist/ui/index.cjs +122 -130
- package/dist/ui/index.css +10 -25
- package/dist/ui/index.d.cts +1 -1
- package/dist/ui/index.d.ts +1 -1
- package/dist/ui/index.js +7 -15
- package/package.json +1 -2
package/dist/ui/index.css
CHANGED
|
@@ -708,10 +708,6 @@ video {
|
|
|
708
708
|
.ps-grid {
|
|
709
709
|
display: grid;
|
|
710
710
|
}
|
|
711
|
-
.ps-size-4 {
|
|
712
|
-
width: 1rem;
|
|
713
|
-
height: 1rem;
|
|
714
|
-
}
|
|
715
711
|
.ps-h-0 {
|
|
716
712
|
height: 0px;
|
|
717
713
|
}
|
|
@@ -841,6 +837,10 @@ video {
|
|
|
841
837
|
.ps-w-auto {
|
|
842
838
|
width: auto;
|
|
843
839
|
}
|
|
840
|
+
.ps-w-fit {
|
|
841
|
+
width: -moz-fit-content;
|
|
842
|
+
width: fit-content;
|
|
843
|
+
}
|
|
844
844
|
.ps-w-full {
|
|
845
845
|
width: 100%;
|
|
846
846
|
}
|
|
@@ -1119,6 +1119,9 @@ video {
|
|
|
1119
1119
|
.ps-border-l {
|
|
1120
1120
|
border-left-width: 1px;
|
|
1121
1121
|
}
|
|
1122
|
+
.ps-border-l-4 {
|
|
1123
|
+
border-left-width: 4px;
|
|
1124
|
+
}
|
|
1122
1125
|
.ps-border-r {
|
|
1123
1126
|
border-right-width: 1px;
|
|
1124
1127
|
}
|
|
@@ -1300,9 +1303,6 @@ video {
|
|
|
1300
1303
|
.ps-pl-2\.5 {
|
|
1301
1304
|
padding-left: 0.625rem;
|
|
1302
1305
|
}
|
|
1303
|
-
.ps-pl-6 {
|
|
1304
|
-
padding-left: 1.5rem;
|
|
1305
|
-
}
|
|
1306
1306
|
.ps-pl-8 {
|
|
1307
1307
|
padding-left: 2rem;
|
|
1308
1308
|
}
|
|
@@ -1315,6 +1315,9 @@ video {
|
|
|
1315
1315
|
.ps-pr-8 {
|
|
1316
1316
|
padding-right: 2rem;
|
|
1317
1317
|
}
|
|
1318
|
+
.ps-pt-2 {
|
|
1319
|
+
padding-top: 0.5rem;
|
|
1320
|
+
}
|
|
1318
1321
|
.ps-pt-4 {
|
|
1319
1322
|
padding-top: 1rem;
|
|
1320
1323
|
}
|
|
@@ -1351,15 +1354,9 @@ video {
|
|
|
1351
1354
|
.ps-font-semibold {
|
|
1352
1355
|
font-weight: 600;
|
|
1353
1356
|
}
|
|
1354
|
-
.ps-uppercase {
|
|
1355
|
-
text-transform: uppercase;
|
|
1356
|
-
}
|
|
1357
1357
|
.ps-lowercase {
|
|
1358
1358
|
text-transform: lowercase;
|
|
1359
1359
|
}
|
|
1360
|
-
.ps-italic {
|
|
1361
|
-
font-style: italic;
|
|
1362
|
-
}
|
|
1363
1360
|
.ps-leading-\[var\(--studio-cell-height\)\] {
|
|
1364
1361
|
line-height: var(--studio-cell-height);
|
|
1365
1362
|
}
|
|
@@ -1372,10 +1369,6 @@ video {
|
|
|
1372
1369
|
.ps-tracking-widest {
|
|
1373
1370
|
letter-spacing: 0.1em;
|
|
1374
1371
|
}
|
|
1375
|
-
.ps-text-blue-500 {
|
|
1376
|
-
--tw-text-opacity: 1;
|
|
1377
|
-
color: rgb(59 130 246 / var(--tw-text-opacity, 1));
|
|
1378
|
-
}
|
|
1379
1372
|
.ps-text-card-foreground {
|
|
1380
1373
|
color: hsl(var(--card-foreground));
|
|
1381
1374
|
}
|
|
@@ -1407,14 +1400,6 @@ video {
|
|
|
1407
1400
|
.ps-text-muted-foreground\/70 {
|
|
1408
1401
|
color: hsl(var(--muted-foreground) / 0.7);
|
|
1409
1402
|
}
|
|
1410
|
-
.ps-text-neutral-500 {
|
|
1411
|
-
--tw-text-opacity: 1;
|
|
1412
|
-
color: rgb(115 115 115 / var(--tw-text-opacity, 1));
|
|
1413
|
-
}
|
|
1414
|
-
.ps-text-neutral-600 {
|
|
1415
|
-
--tw-text-opacity: 1;
|
|
1416
|
-
color: rgb(82 82 82 / var(--tw-text-opacity, 1));
|
|
1417
|
-
}
|
|
1418
1403
|
.ps-text-popover-foreground {
|
|
1419
1404
|
color: hsl(var(--popover-foreground));
|
|
1420
1405
|
}
|
package/dist/ui/index.d.cts
CHANGED
package/dist/ui/index.d.ts
CHANGED