@texturehq/edges 1.6.3 → 1.7.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 +10 -2
- package/dist/index.cjs +7 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +24 -24
- package/dist/index.d.ts +24 -24
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/dist/{server-DDYwupsj.d.cts → server-DAd0A202.d.cts} +19 -4
- package/dist/{server-DDYwupsj.d.ts → server-DAd0A202.d.ts} +19 -4
- 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.map +1 -1
- package/dist/styles.css +32 -0
- package/dist/utilities.manifest.json +2 -2
- package/package.json +4 -4
package/dist/styles.css
CHANGED
|
@@ -1818,6 +1818,9 @@
|
|
|
1818
1818
|
.transform {
|
|
1819
1819
|
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
1820
1820
|
}
|
|
1821
|
+
.animate-\[ping_2s_ease-in-out_infinite\] {
|
|
1822
|
+
animation: ping 2s ease-in-out infinite;
|
|
1823
|
+
}
|
|
1821
1824
|
.animate-bounce {
|
|
1822
1825
|
animation: var(--animate-bounce);
|
|
1823
1826
|
}
|
|
@@ -2411,6 +2414,12 @@
|
|
|
2411
2414
|
.border-brand-primary {
|
|
2412
2415
|
border-color: var(--color-brand-primary);
|
|
2413
2416
|
}
|
|
2417
|
+
.border-brand-primary\/20 {
|
|
2418
|
+
border-color: color-mix(in srgb, #444ae1 20%, transparent);
|
|
2419
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2420
|
+
border-color: color-mix(in oklab, var(--color-brand-primary) 20%, transparent);
|
|
2421
|
+
}
|
|
2422
|
+
}
|
|
2414
2423
|
.border-current {
|
|
2415
2424
|
border-color: currentcolor;
|
|
2416
2425
|
}
|
|
@@ -2573,6 +2582,12 @@
|
|
|
2573
2582
|
.bg-brand-primary {
|
|
2574
2583
|
background-color: var(--color-brand-primary);
|
|
2575
2584
|
}
|
|
2585
|
+
.bg-brand-primary\/10 {
|
|
2586
|
+
background-color: color-mix(in srgb, #444ae1 10%, transparent);
|
|
2587
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2588
|
+
background-color: color-mix(in oklab, var(--color-brand-primary) 10%, transparent);
|
|
2589
|
+
}
|
|
2590
|
+
}
|
|
2576
2591
|
.bg-current {
|
|
2577
2592
|
background-color: currentcolor;
|
|
2578
2593
|
}
|
|
@@ -2944,6 +2959,9 @@
|
|
|
2944
2959
|
.pt-4 {
|
|
2945
2960
|
padding-top: var(--spacing-4);
|
|
2946
2961
|
}
|
|
2962
|
+
.pt-24 {
|
|
2963
|
+
padding-top: var(--spacing-24);
|
|
2964
|
+
}
|
|
2947
2965
|
.pt-\[60px\] {
|
|
2948
2966
|
padding-top: 60px;
|
|
2949
2967
|
}
|
|
@@ -2980,6 +2998,9 @@
|
|
|
2980
2998
|
.pb-4 {
|
|
2981
2999
|
padding-bottom: var(--spacing-4);
|
|
2982
3000
|
}
|
|
3001
|
+
.pb-28 {
|
|
3002
|
+
padding-bottom: var(--spacing-28);
|
|
3003
|
+
}
|
|
2983
3004
|
.pl-0 {
|
|
2984
3005
|
padding-left: var(--spacing-0);
|
|
2985
3006
|
}
|
|
@@ -4615,6 +4636,11 @@
|
|
|
4615
4636
|
margin-bottom: var(--spacing-6);
|
|
4616
4637
|
}
|
|
4617
4638
|
}
|
|
4639
|
+
.md\:mb-8 {
|
|
4640
|
+
@media (width >= 48rem) {
|
|
4641
|
+
margin-bottom: var(--spacing-8);
|
|
4642
|
+
}
|
|
4643
|
+
}
|
|
4618
4644
|
.md\:block {
|
|
4619
4645
|
@media (width >= 48rem) {
|
|
4620
4646
|
display: block;
|
|
@@ -6457,6 +6483,12 @@
|
|
|
6457
6483
|
transform: rotate(360deg);
|
|
6458
6484
|
}
|
|
6459
6485
|
}
|
|
6486
|
+
@keyframes ping {
|
|
6487
|
+
75%, 100% {
|
|
6488
|
+
transform: scale(2);
|
|
6489
|
+
opacity: 0;
|
|
6490
|
+
}
|
|
6491
|
+
}
|
|
6460
6492
|
@keyframes pulse {
|
|
6461
6493
|
50% {
|
|
6462
6494
|
opacity: 0.5;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.
|
|
3
|
-
"generatedAt": "2025-10-
|
|
2
|
+
"version": "1.7.1",
|
|
3
|
+
"generatedAt": "2025-10-15T19:41:30.379Z",
|
|
4
4
|
"categories": {
|
|
5
5
|
"hooks": {
|
|
6
6
|
"description": "React hooks for common functionality like debouncing, local storage, and time controls",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@texturehq/edges",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.1",
|
|
4
4
|
"author": "Nicholas Brown <nick@texturehq.com>",
|
|
5
5
|
"description": "A shared component library for Texture",
|
|
6
6
|
"type": "module",
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
"@storybook/react": "^8.6.14",
|
|
104
104
|
"@storybook/react-vite": "^8.6.14",
|
|
105
105
|
"@storybook/test": "^8.6.14",
|
|
106
|
-
"@tailwindcss/postcss": "^4.1.
|
|
106
|
+
"@tailwindcss/postcss": "^4.1.14",
|
|
107
107
|
"@testing-library/dom": "^10.4.0",
|
|
108
108
|
"@testing-library/jest-dom": "^6.4.2",
|
|
109
109
|
"@testing-library/react": "^16.3.0",
|
|
@@ -121,13 +121,13 @@
|
|
|
121
121
|
"acorn-jsx": "^5.3.2",
|
|
122
122
|
"autoprefixer": "^10.4.19",
|
|
123
123
|
"jsdom": "^24.0.0",
|
|
124
|
-
"postcss": "^8.
|
|
124
|
+
"postcss": "^8.5.6",
|
|
125
125
|
"postcss-cli": "^11.0.0",
|
|
126
126
|
"react": "19.2.0",
|
|
127
127
|
"react-dom": "19.2.0",
|
|
128
128
|
"storybook": "^8.6.14",
|
|
129
129
|
"style-dictionary": "^5.0.4",
|
|
130
|
-
"tailwindcss": "^4.1.
|
|
130
|
+
"tailwindcss": "^4.1.14",
|
|
131
131
|
"tsup": "^8.0.2",
|
|
132
132
|
"typescript": "~5.9.2",
|
|
133
133
|
"vite": "^5.1.6",
|