tailwind_merge 1.2.0 → 1.3.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8ceeee90371decde955283bda7c8fd9a7199fee27df0e6be6668ac1c2b61b441
4
- data.tar.gz: 824a08e451eb452722483e18bc9e24b7eacefd0627bc3e6ecc3a8aa2655a5f5f
3
+ metadata.gz: a8cbebebd7f72ad4fd36fa46c655dd894e29e136a3ae669f87b3e64c51fe6c13
4
+ data.tar.gz: 4f26e080ff7295acce0ba8ab01ba8016ef5737420bdef89a70d9d5b82c6cf64f
5
5
  SHA512:
6
- metadata.gz: 77fee0fb6c3e17c2c9bed2c47f7996716dc36e042c01cffc5c68a1e1d80ae18aa78339ff0522527b6bf53899a06dd7efeea133640954d42c7c2b5a49778149ce
7
- data.tar.gz: ae13784b989a225eb436ca40565dc8a022366229b7a97c58c2135b328392fa12ed29c0ce8dc3af4b222858149dc68b0bba310e983f19a897e814dcc24a6cb576
6
+ metadata.gz: de50fbb9a8c832ba5c76f8dccb4b993adeeadd2a4aa9706088685c960861362a3a628d7297f8f88fa860a43e07e2b5dc8a39591875e578117ae970400571900c
7
+ data.tar.gz: 134437c977d483ad2e690398cc9101447267fbfbbc56861dd2661111fba3e8152ef3347f98356bea80755d43b8837290e23974b435c50453842c86e2c91bbfb9
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # [v1.3.0] - 09-06-2025
2
+ ## What's Changed
3
+ * Add support for tailwind CSS v4.1.5 by @gjtorikian in https://github.com/gjtorikian/tailwind_merge/pull/60
4
+
5
+
6
+ **Full Changelog**: https://github.com/gjtorikian/tailwind_merge/compare/v1.2.0...v1.3.0
1
7
  # [v1.2.0] - 07-04-2025
2
8
  ## What's Changed
3
9
  * Support TailwindCSS v4.1 by @gjtorikian in https://github.com/gjtorikian/tailwind_merge/pull/58
@@ -82,7 +82,7 @@ module TailwindMerge
82
82
  }
83
83
  SCALE_GRID_COL_ROW_START_OR_END = -> { [IS_INTEGER, "auto", IS_ARBITRARY_VARIABLE, IS_ARBITRARY_VALUE] }
84
84
  SCALE_GRID_AUTO_COLS_ROWS = -> { ["auto", "min", "max", "fr", IS_ARBITRARY_VARIABLE, IS_ARBITRARY_VALUE] }
85
- SCALE_ALIGN_PRIMARY_AXIS = -> { ["start", "end", "center", "between", "around", "evenly", "stretch", "baseline", "center-safe", "end-sage"] }
85
+ SCALE_ALIGN_PRIMARY_AXIS = -> { ["start", "end", "center", "between", "around", "evenly", "stretch", "baseline", "center-safe", "end-safe"] }
86
86
  SCALE_ALIGN_SECONDARY_AXIS = -> { ["start", "end", "center", "stretch", "center-safe", "end-safe"] }
87
87
  SCALE_MARGIN = -> { ["auto", *SCALE_UNAMBIGUOUS_SPACING.call] }
88
88
  SCALE_SIZING = -> {
@@ -731,17 +731,17 @@ module TailwindMerge
731
731
  # Height
732
732
  # @see https://tailwindcss.com/docs/height
733
733
  ##
734
- "h" => [{ "h" => ["screen", *SCALE_SIZING.call] }],
734
+ "h" => [{ "h" => ["screen", "lh", *SCALE_SIZING.call] }],
735
735
  ##
736
736
  # Min-Height
737
737
  # @see https://tailwindcss.com/docs/min-height
738
738
  ##
739
- "min-h" => [{ "min-h" => ["screen", "none", *SCALE_SIZING.call] }],
739
+ "min-h" => [{ "min-h" => ["screen", "none", "lh", *SCALE_SIZING.call] }],
740
740
  ##
741
741
  # Max-Height
742
742
  # @see https://tailwindcss.com/docs/max-height
743
743
  ##
744
- "max-h" => [{ "max-h" => ["screen", *SCALE_SIZING.call] }],
744
+ "max-h" => [{ "max-h" => ["screen", "lh", *SCALE_SIZING.call] }],
745
745
 
746
746
  ############
747
747
  # Typography
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TailwindMerge
4
- VERSION = "1.2.0"
4
+ VERSION = "1.3.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tailwind_merge
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garen J. Torikian
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-04-07 00:00:00.000000000 Z
11
+ date: 2025-06-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sin_lru_redux
@@ -76,15 +76,15 @@ files:
76
76
  - lib/tailwind_merge/version.rb
77
77
  - script/test
78
78
  - tailwind_merge.gemspec
79
- homepage: https://github.com/gjtorikian/tailwind_merge/tree/v1.2.0
79
+ homepage: https://github.com/gjtorikian/tailwind_merge/tree/v1.3.0
80
80
  licenses:
81
81
  - MIT
82
82
  metadata:
83
- homepage_uri: https://github.com/gjtorikian/tailwind_merge/tree/v1.2.0
84
- source_code_uri: https://github.com/gjtorikian/tailwind_merge/tree/v1.2.0
85
- changelog_uri: https://github.com/gjtorikian/tailwind_merge/blob/v1.2.0/CHANGELOG.md
83
+ homepage_uri: https://github.com/gjtorikian/tailwind_merge/tree/v1.3.0
84
+ source_code_uri: https://github.com/gjtorikian/tailwind_merge/tree/v1.3.0
85
+ changelog_uri: https://github.com/gjtorikian/tailwind_merge/blob/v1.3.0/CHANGELOG.md
86
86
  bug_tracker_uri: https://github.com/gjtorikian/tailwind_merge/issues
87
- documentation_uri: https://rubydoc.info/gems/tailwind_merge/1.2.0
87
+ documentation_uri: https://rubydoc.info/gems/tailwind_merge/1.3.0
88
88
  funding_uri: https://github.com/sponsors/gjtorikian
89
89
  rubygems_mfa_required: 'true'
90
90
  post_install_message: