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 +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/tailwind_merge/config.rb +4 -4
- data/lib/tailwind_merge/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a8cbebebd7f72ad4fd36fa46c655dd894e29e136a3ae669f87b3e64c51fe6c13
|
4
|
+
data.tar.gz: 4f26e080ff7295acce0ba8ab01ba8016ef5737420bdef89a70d9d5b82c6cf64f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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-
|
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
|
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.
|
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-
|
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.
|
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.
|
84
|
-
source_code_uri: https://github.com/gjtorikian/tailwind_merge/tree/v1.
|
85
|
-
changelog_uri: https://github.com/gjtorikian/tailwind_merge/blob/v1.
|
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.
|
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:
|