@texturehq/edges 1.13.1 → 1.13.2

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.
@@ -28,8 +28,8 @@
28
28
  outline: none;
29
29
  }
30
30
 
31
- /* Ensure focus-visible still works for interactive elements that don't have custom focus styles */
32
- :focus-visible:not(input):not(textarea):not(select) {
31
+ /* Ensure focus-visible still works for interactive elements */
32
+ :focus-visible {
33
33
  outline: 2px solid var(--color-action-default);
34
34
  outline-offset: 2px;
35
35
  }
package/dist/styles.css CHANGED
@@ -74,6 +74,7 @@
74
74
  --spacing-8: 2rem;
75
75
  --spacing-9: 2.25rem;
76
76
  --spacing-10: 2.5rem;
77
+ --spacing-11: 2.75rem;
77
78
  --spacing-12: 3rem;
78
79
  --spacing-14: 3.5rem;
79
80
  --spacing-16: 4rem;
@@ -1036,7 +1037,7 @@
1036
1037
  [role="dialog"], [role="menu"], [role="listbox"], [data-react-aria-dialog], [data-react-aria-modal] {
1037
1038
  outline: none;
1038
1039
  }
1039
- :focus-visible:not(input):not(textarea):not(select) {
1040
+ :focus-visible {
1040
1041
  outline: 2px solid var(--color-action-default);
1041
1042
  outline-offset: 2px;
1042
1043
  }
@@ -1251,8 +1252,8 @@
1251
1252
  .inset-0 {
1252
1253
  inset: var(--spacing-0);
1253
1254
  }
1254
- .inset-y-\[1px\] {
1255
- inset-block: 1px;
1255
+ .inset-y-\[2px\] {
1256
+ inset-block: 2px;
1256
1257
  }
1257
1258
  .start-1 {
1258
1259
  inset-inline-start: var(--spacing-1);
@@ -1308,8 +1309,8 @@
1308
1309
  .right-8 {
1309
1310
  right: var(--spacing-8);
1310
1311
  }
1311
- .right-\[1px\] {
1312
- right: 1px;
1312
+ .right-\[2px\] {
1313
+ right: 2px;
1313
1314
  }
1314
1315
  .-bottom-2 {
1315
1316
  bottom: calc(var(--spacing-2) * -1);
@@ -1800,6 +1801,9 @@
1800
1801
  .w-10 {
1801
1802
  width: var(--spacing-10);
1802
1803
  }
1804
+ .w-11 {
1805
+ width: var(--spacing-11);
1806
+ }
1803
1807
  .w-12 {
1804
1808
  width: var(--spacing-12);
1805
1809
  }
@@ -2534,9 +2538,9 @@
2534
2538
  border-top-left-radius: var(--radius-sm);
2535
2539
  border-bottom-left-radius: var(--radius-sm);
2536
2540
  }
2537
- .rounded-r-\[calc\(var\(--control-border-radius\)-1px\)\] {
2538
- border-top-right-radius: calc(var(--control-border-radius) - 1px);
2539
- border-bottom-right-radius: calc(var(--control-border-radius) - 1px);
2541
+ .rounded-r-\[calc\(var\(--control-border-radius\)-2px\)\] {
2542
+ border-top-right-radius: calc(var(--control-border-radius) - 2px);
2543
+ border-bottom-right-radius: calc(var(--control-border-radius) - 2px);
2540
2544
  }
2541
2545
  .rounded-r-sm {
2542
2546
  border-top-right-radius: var(--radius-sm);
@@ -3954,6 +3958,10 @@
3954
3958
  .forced-color-adjust-none {
3955
3959
  forced-color-adjust: none;
3956
3960
  }
3961
+ .\!outline-none {
3962
+ --tw-outline-style: none !important;
3963
+ outline-style: none !important;
3964
+ }
3957
3965
  .outline-none {
3958
3966
  --tw-outline-style: none;
3959
3967
  outline-style: none;
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "1.13.1",
3
- "generatedAt": "2025-10-27T18:44:56.463Z",
2
+ "version": "1.13.2",
3
+ "generatedAt": "2025-10-28T18:47:55.359Z",
4
4
  "categories": {
5
5
  "hooks": {
6
6
  "description": "React hooks for common functionality like breakpoints, debouncing, local storage, and media queries",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@texturehq/edges",
3
- "version": "1.13.1",
3
+ "version": "1.13.2",
4
4
  "author": "Nicholas Brown <nick@texturehq.com>",
5
5
  "description": "A shared component library for Texture",
6
6
  "type": "module",