@texturehq/edges 1.7.2 → 1.7.4
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 +914 -1406
- package/dist/index.cjs +9 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +98 -275
- package/dist/index.d.ts +98 -275
- package/dist/index.js +9 -9
- package/dist/index.js.map +1 -1
- package/dist/{server-DAd0A202.d.cts → server-7ZzifHri.d.cts} +191 -8
- package/dist/{server-DAd0A202.d.ts → server-7ZzifHri.d.ts} +191 -8
- package/dist/server.cjs +13 -13
- package/dist/server.cjs.map +1 -1
- package/dist/server.d.cts +1 -1
- package/dist/server.d.ts +1 -1
- package/dist/server.js +13 -13
- package/dist/server.js.map +1 -1
- package/dist/styles.css +15 -10
- package/dist/utilities.manifest.json +4 -1039
- package/package.json +2 -2
- package/scripts/generate-edges-docs.js +1004 -0
- package/scripts/setup-cursor-rules.js +18 -0
- package/scripts/generate-components-manifest.js +0 -188
- package/scripts/generate-utilities-manifest.js +0 -392
package/dist/styles.css
CHANGED
|
@@ -4191,11 +4191,6 @@
|
|
|
4191
4191
|
left: var(--spacing-4);
|
|
4192
4192
|
}
|
|
4193
4193
|
}
|
|
4194
|
-
.focus\:border-transparent {
|
|
4195
|
-
&:focus {
|
|
4196
|
-
border-color: transparent;
|
|
4197
|
-
}
|
|
4198
|
-
}
|
|
4199
4194
|
.focus\:bg-background-hover {
|
|
4200
4195
|
&:focus {
|
|
4201
4196
|
background-color: var(--color-background-hover);
|
|
@@ -4631,11 +4626,6 @@
|
|
|
4631
4626
|
margin-bottom: var(--spacing-4);
|
|
4632
4627
|
}
|
|
4633
4628
|
}
|
|
4634
|
-
.md\:mb-6 {
|
|
4635
|
-
@media (width >= 48rem) {
|
|
4636
|
-
margin-bottom: var(--spacing-6);
|
|
4637
|
-
}
|
|
4638
|
-
}
|
|
4639
4629
|
.md\:mb-8 {
|
|
4640
4630
|
@media (width >= 48rem) {
|
|
4641
4631
|
margin-bottom: var(--spacing-8);
|
|
@@ -4661,6 +4651,11 @@
|
|
|
4661
4651
|
display: none;
|
|
4662
4652
|
}
|
|
4663
4653
|
}
|
|
4654
|
+
.md\:h-10 {
|
|
4655
|
+
@media (width >= 48rem) {
|
|
4656
|
+
height: var(--spacing-10);
|
|
4657
|
+
}
|
|
4658
|
+
}
|
|
4664
4659
|
.md\:h-96 {
|
|
4665
4660
|
@media (width >= 48rem) {
|
|
4666
4661
|
height: var(--spacing-96);
|
|
@@ -4681,6 +4676,11 @@
|
|
|
4681
4676
|
max-height: 85vh;
|
|
4682
4677
|
}
|
|
4683
4678
|
}
|
|
4679
|
+
.md\:w-10 {
|
|
4680
|
+
@media (width >= 48rem) {
|
|
4681
|
+
width: var(--spacing-10);
|
|
4682
|
+
}
|
|
4683
|
+
}
|
|
4684
4684
|
.md\:w-64 {
|
|
4685
4685
|
@media (width >= 48rem) {
|
|
4686
4686
|
width: var(--spacing-64);
|
|
@@ -6131,15 +6131,20 @@
|
|
|
6131
6131
|
@layer base {
|
|
6132
6132
|
:root {
|
|
6133
6133
|
--default-border-color: var(--color-border-default);
|
|
6134
|
+
--default-text-color: var(--color-text-body);
|
|
6134
6135
|
}
|
|
6135
6136
|
.theme-dark {
|
|
6136
6137
|
--default-border-color: var(--color-border-default);
|
|
6138
|
+
--default-text-color: var(--color-text-body);
|
|
6137
6139
|
}
|
|
6138
6140
|
*,
|
|
6139
6141
|
::after,
|
|
6140
6142
|
::before {
|
|
6141
6143
|
border-color: var(--default-border-color);
|
|
6142
6144
|
}
|
|
6145
|
+
body {
|
|
6146
|
+
color: var(--default-text-color);
|
|
6147
|
+
}
|
|
6143
6148
|
}
|
|
6144
6149
|
@property --tw-border-spacing-x {
|
|
6145
6150
|
syntax: "<length>";
|