@texturehq/edges 1.2.0 → 1.2.1
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/components.manifest.json +2 -2
- package/dist/index.cjs +14 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +14 -2
- package/dist/index.js.map +1 -1
- package/dist/server.cjs +21 -9
- package/dist/server.cjs.map +1 -1
- package/dist/server.js +21 -9
- package/dist/server.js.map +1 -1
- package/dist/styles.css +10 -3
- package/dist/utilities.manifest.json +2 -2
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -951,9 +951,6 @@
|
|
|
951
951
|
.z-50 {
|
|
952
952
|
z-index: 50;
|
|
953
953
|
}
|
|
954
|
-
.z-\[60\] {
|
|
955
|
-
z-index: 60;
|
|
956
|
-
}
|
|
957
954
|
.col-auto {
|
|
958
955
|
grid-column: auto;
|
|
959
956
|
}
|
|
@@ -4270,11 +4267,21 @@
|
|
|
4270
4267
|
display: none;
|
|
4271
4268
|
}
|
|
4272
4269
|
}
|
|
4270
|
+
.md\:h-full {
|
|
4271
|
+
@media (width >= 48rem) {
|
|
4272
|
+
height: 100%;
|
|
4273
|
+
}
|
|
4274
|
+
}
|
|
4273
4275
|
.md\:h-screen {
|
|
4274
4276
|
@media (width >= 48rem) {
|
|
4275
4277
|
height: 100vh;
|
|
4276
4278
|
}
|
|
4277
4279
|
}
|
|
4280
|
+
.md\:w-64 {
|
|
4281
|
+
@media (width >= 48rem) {
|
|
4282
|
+
width: var(--spacing-64);
|
|
4283
|
+
}
|
|
4284
|
+
}
|
|
4278
4285
|
.md\:w-\[50\%\] {
|
|
4279
4286
|
@media (width >= 48rem) {
|
|
4280
4287
|
width: 50%;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.2.
|
|
3
|
-
"generatedAt": "2025-10-
|
|
2
|
+
"version": "1.2.1",
|
|
3
|
+
"generatedAt": "2025-10-06T20:37:56.814Z",
|
|
4
4
|
"categories": {
|
|
5
5
|
"hooks": {
|
|
6
6
|
"description": "React hooks for common functionality like debouncing, local storage, and time controls",
|