@texturehq/edges 1.25.0 → 1.25.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.
package/dist/styles.css CHANGED
@@ -1982,6 +1982,9 @@
1982
1982
  .max-h-\[300px\] {
1983
1983
  max-height: 300px;
1984
1984
  }
1985
+ .max-h-\[400px\] {
1986
+ max-height: 400px;
1987
+ }
1985
1988
  .max-h-\[500px\] {
1986
1989
  max-height: 500px;
1987
1990
  }
@@ -3828,6 +3831,9 @@
3828
3831
  .pt-4 {
3829
3832
  padding-top: var(--spacing-4);
3830
3833
  }
3834
+ .pt-6 {
3835
+ padding-top: var(--spacing-6);
3836
+ }
3831
3837
  .pt-8 {
3832
3838
  padding-top: var(--spacing-8);
3833
3839
  }
@@ -3861,6 +3867,9 @@
3861
3867
  .pr-12 {
3862
3868
  padding-right: var(--spacing-12);
3863
3869
  }
3870
+ .pb-1 {
3871
+ padding-bottom: var(--spacing-1);
3872
+ }
3864
3873
  .pb-1\.5 {
3865
3874
  padding-bottom: calc(var(--spacing) * 1.5);
3866
3875
  }
@@ -5905,6 +5914,16 @@
5905
5914
  grid-template-columns: repeat(12, minmax(0, 1fr));
5906
5915
  }
5907
5916
  }
5917
+ .sm\:grid-cols-\[1fr_auto\] {
5918
+ @media (width >= 40rem) {
5919
+ grid-template-columns: 1fr auto;
5920
+ }
5921
+ }
5922
+ .sm\:grid-cols-\[1fr_auto_auto\] {
5923
+ @media (width >= 40rem) {
5924
+ grid-template-columns: 1fr auto auto;
5925
+ }
5926
+ }
5908
5927
  .sm\:grid-cols-none {
5909
5928
  @media (width >= 40rem) {
5910
5929
  grid-template-columns: none;
@@ -5915,6 +5934,11 @@
5915
5934
  flex-direction: row;
5916
5935
  }
5917
5936
  }
5937
+ .sm\:items-center {
5938
+ @media (width >= 40rem) {
5939
+ align-items: center;
5940
+ }
5941
+ }
5918
5942
  .sm\:items-start {
5919
5943
  @media (width >= 40rem) {
5920
5944
  align-items: flex-start;
@@ -5925,6 +5949,29 @@
5925
5949
  justify-content: space-between;
5926
5950
  }
5927
5951
  }
5952
+ .sm\:gap-x-1 {
5953
+ @media (width >= 40rem) {
5954
+ -moz-column-gap: var(--spacing-1);
5955
+ column-gap: var(--spacing-1);
5956
+ }
5957
+ }
5958
+ .sm\:gap-x-2 {
5959
+ @media (width >= 40rem) {
5960
+ -moz-column-gap: var(--spacing-2);
5961
+ column-gap: var(--spacing-2);
5962
+ }
5963
+ }
5964
+ .sm\:gap-x-4 {
5965
+ @media (width >= 40rem) {
5966
+ -moz-column-gap: var(--spacing-4);
5967
+ column-gap: var(--spacing-4);
5968
+ }
5969
+ }
5970
+ .sm\:gap-y-0 {
5971
+ @media (width >= 40rem) {
5972
+ row-gap: var(--spacing-0);
5973
+ }
5974
+ }
5928
5975
  .sm\:overflow-visible {
5929
5976
  @media (width >= 40rem) {
5930
5977
  overflow: visible;
@@ -5961,6 +6008,11 @@
5961
6008
  padding-bottom: var(--spacing-0);
5962
6009
  }
5963
6010
  }
6011
+ .sm\:text-right {
6012
+ @media (width >= 40rem) {
6013
+ text-align: right;
6014
+ }
6015
+ }
5964
6016
  .md\:absolute {
5965
6017
  @media (width >= 48rem) {
5966
6018
  position: absolute;
@@ -6101,6 +6153,11 @@
6101
6153
  display: none;
6102
6154
  }
6103
6155
  }
6156
+ .md\:inline {
6157
+ @media (width >= 48rem) {
6158
+ display: inline;
6159
+ }
6160
+ }
6104
6161
  .md\:h-10 {
6105
6162
  @media (width >= 48rem) {
6106
6163
  height: var(--spacing-10);
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.25.0",
2
+ "version": "1.25.2",
3
3
  "categories": {
4
4
  "hooks": {
5
5
  "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.25.0",
3
+ "version": "1.25.2",
4
4
  "author": "Nicholas Brown <nick@texturehq.com>",
5
5
  "description": "A shared component library for Texture",
6
6
  "type": "module",