@texturehq/edges 1.20.3 → 1.21.0

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
@@ -1734,6 +1734,9 @@
1734
1734
  .h-64 {
1735
1735
  height: var(--spacing-64);
1736
1736
  }
1737
+ .h-80 {
1738
+ height: var(--spacing-80);
1739
+ }
1737
1740
  .h-96 {
1738
1741
  height: var(--spacing-96);
1739
1742
  }
@@ -2011,9 +2014,18 @@
2011
2014
  .max-w-\[200px\] {
2012
2015
  max-width: 200px;
2013
2016
  }
2017
+ .max-w-\[220px\] {
2018
+ max-width: 220px;
2019
+ }
2020
+ .max-w-\[240px\] {
2021
+ max-width: 240px;
2022
+ }
2014
2023
  .max-w-\[250px\] {
2015
2024
  max-width: 250px;
2016
2025
  }
2026
+ .max-w-\[260px\] {
2027
+ max-width: 260px;
2028
+ }
2017
2029
  .max-w-\[280px\] {
2018
2030
  max-width: 280px;
2019
2031
  }
@@ -3026,6 +3038,12 @@
3026
3038
  background-color: color-mix(in oklab, var(--color-background-muted) 30%, transparent);
3027
3039
  }
3028
3040
  }
3041
+ .bg-background-muted\/60 {
3042
+ background-color: color-mix(in srgb, #f3f4f6 60%, transparent);
3043
+ @supports (color: color-mix(in lab, red, red)) {
3044
+ background-color: color-mix(in oklab, var(--color-background-muted) 60%, transparent);
3045
+ }
3046
+ }
3029
3047
  .bg-background-selected {
3030
3048
  background-color: var(--color-background-selected);
3031
3049
  }
@@ -5513,6 +5531,16 @@
5513
5531
  position: relative;
5514
5532
  }
5515
5533
  }
5534
+ .md\:order-1 {
5535
+ @media (width >= 48rem) {
5536
+ order: 1;
5537
+ }
5538
+ }
5539
+ .md\:order-2 {
5540
+ @media (width >= 48rem) {
5541
+ order: 2;
5542
+ }
5543
+ }
5516
5544
  .md\:col-auto {
5517
5545
  @media (width >= 48rem) {
5518
5546
  grid-column: auto;
@@ -5678,6 +5706,26 @@
5678
5706
  max-width: none;
5679
5707
  }
5680
5708
  }
5709
+ .md\:min-w-0 {
5710
+ @media (width >= 48rem) {
5711
+ min-width: var(--spacing-0);
5712
+ }
5713
+ }
5714
+ .md\:flex-\[1\] {
5715
+ @media (width >= 48rem) {
5716
+ flex: 1;
5717
+ }
5718
+ }
5719
+ .md\:flex-\[2\] {
5720
+ @media (width >= 48rem) {
5721
+ flex: 2;
5722
+ }
5723
+ }
5724
+ .md\:flex-shrink-0 {
5725
+ @media (width >= 48rem) {
5726
+ flex-shrink: 0;
5727
+ }
5728
+ }
5681
5729
  .md\:translate-x-0 {
5682
5730
  @media (width >= 48rem) {
5683
5731
  --tw-translate-x: var(--spacing-0);
@@ -5749,6 +5797,11 @@
5749
5797
  grid-template-columns: none;
5750
5798
  }
5751
5799
  }
5800
+ .md\:flex-col {
5801
+ @media (width >= 48rem) {
5802
+ flex-direction: column;
5803
+ }
5804
+ }
5752
5805
  .md\:flex-row {
5753
5806
  @media (width >= 48rem) {
5754
5807
  flex-direction: row;
@@ -5764,6 +5817,11 @@
5764
5817
  justify-content: space-between;
5765
5818
  }
5766
5819
  }
5820
+ .md\:justify-center {
5821
+ @media (width >= 48rem) {
5822
+ justify-content: center;
5823
+ }
5824
+ }
5767
5825
  .md\:space-y-12 {
5768
5826
  @media (width >= 48rem) {
5769
5827
  :where(& > :not(:last-child)) {
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "1.20.3",
3
- "generatedAt": "2025-11-16T03:36:11.855Z",
2
+ "version": "1.21.0",
3
+ "generatedAt": "2025-11-16T23:11:29.514Z",
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.20.3",
3
+ "version": "1.21.0",
4
4
  "author": "Nicholas Brown <nick@texturehq.com>",
5
5
  "description": "A shared component library for Texture",
6
6
  "type": "module",