@texturehq/edges 1.14.0 → 1.14.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/styles.css CHANGED
@@ -1953,6 +1953,15 @@
1953
1953
  .min-w-10 {
1954
1954
  min-width: var(--spacing-10);
1955
1955
  }
1956
+ .min-w-12 {
1957
+ min-width: var(--spacing-12);
1958
+ }
1959
+ .min-w-14 {
1960
+ min-width: var(--spacing-14);
1961
+ }
1962
+ .min-w-16 {
1963
+ min-width: var(--spacing-16);
1964
+ }
1956
1965
  .min-w-32 {
1957
1966
  min-width: var(--spacing-32);
1958
1967
  }
@@ -3300,6 +3309,18 @@
3300
3309
  .py-16 {
3301
3310
  padding-block: var(--spacing-16);
3302
3311
  }
3312
+ .py-\[var\(--control-gap-lg\)\] {
3313
+ padding-block: var(--control-gap-lg);
3314
+ }
3315
+ .py-\[var\(--control-gap-md\)\] {
3316
+ padding-block: var(--control-gap-md);
3317
+ }
3318
+ .py-\[var\(--control-gap-sm\)\] {
3319
+ padding-block: var(--control-gap-sm);
3320
+ }
3321
+ .py-\[var\(--control-gap-xl\)\] {
3322
+ padding-block: var(--control-gap-xl);
3323
+ }
3303
3324
  .pt-0 {
3304
3325
  padding-top: var(--spacing-0);
3305
3326
  }
@@ -4727,6 +4748,12 @@
4727
4748
  outline-color: var(--color-action-default);
4728
4749
  }
4729
4750
  }
4751
+ .focus\:\!outline-none {
4752
+ &:focus {
4753
+ --tw-outline-style: none !important;
4754
+ outline-style: none !important;
4755
+ }
4756
+ }
4730
4757
  .focus\:outline-none {
4731
4758
  &:focus {
4732
4759
  --tw-outline-style: none;
@@ -4760,6 +4787,12 @@
4760
4787
  outline-color: var(--color-action-default);
4761
4788
  }
4762
4789
  }
4790
+ .focus-visible\:\!outline-none {
4791
+ &:focus-visible {
4792
+ --tw-outline-style: none !important;
4793
+ outline-style: none !important;
4794
+ }
4795
+ }
4763
4796
  .disabled\:cursor-not-allowed {
4764
4797
  &:disabled {
4765
4798
  cursor: not-allowed;
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "1.14.0",
3
- "generatedAt": "2025-10-29T15:33:05.225Z",
2
+ "version": "1.14.1",
3
+ "generatedAt": "2025-10-29T23:38:45.926Z",
4
4
  "categories": {
5
5
  "hooks": {
6
6
  "description": "React hooks for common functionality like breakpoints, debouncing, local storage, and media queries",
@@ -283,6 +283,13 @@
283
283
  "category": "formatting",
284
284
  "file": "utils/formatting/number.ts"
285
285
  },
286
+ {
287
+ "name": "formatPercent",
288
+ "type": "constant",
289
+ "description": "Format percentage (simple wrapper for consistency with other formatters)",
290
+ "category": "formatting",
291
+ "file": "utils/formatting/number.ts"
292
+ },
286
293
  {
287
294
  "name": "formatPhone",
288
295
  "type": "constant",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@texturehq/edges",
3
- "version": "1.14.0",
3
+ "version": "1.14.1",
4
4
  "author": "Nicholas Brown <nick@texturehq.com>",
5
5
  "description": "A shared component library for Texture",
6
6
  "type": "module",