tailwind_merge 0.1.3 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 400ee8fcc7d3e0247fa8fdfd1d41bcaee413cc8cc1470b3eae68eb637aec8a95
4
- data.tar.gz: c31e306e40abc9e0663e5379709a7e60e3ae0f4d8ff4ffffacecbaadc16fefc1
3
+ metadata.gz: acd2f51e2649b7431dee68c8dfcc32d173ff034b9781234be67017f2c6631017
4
+ data.tar.gz: f029d5b0d2c31cfa0e93f8f5bcbd1b9b2846194c4489d03d9698f0ff034d4e42
5
5
  SHA512:
6
- metadata.gz: 7c07a82f66386658a55a6b4d20253c337f882a1ca053b6a1498ba999b31f2817af75dfd2d839f7edc774ed0578d1b86a8a8f7c5be9eba118d9b0d77ccaf03ad1
7
- data.tar.gz: f6eff1e3ffdebbd8a8d7361f8c53fff06ad6c109f2774d8661e4106ad61461ca2eef4100d3b3bc82289ea42e059f7613aa26a63229429bddc3c57322cf2213a0
6
+ metadata.gz: 0d5f11f2a351bd3ce9d042a82cceb0d13784ec1ed2355e93f6dd281c7d7ee6fa5859c227c77da5077cb9c8cb03d54bede87045b4924baf52c11c8fc2c512b81c
7
+ data.tar.gz: acb2e759fa33bbf36a1161f40ca0ffdf396812a6597366a518e06a9b78ae6212e2fb4077555a0b12d503d34d2adc29b2effa31c5918a370d0b2ad91ef552c18b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## [v0.1.3](https://github.com/gjtorikian/tailwind_merge/tree/v0.1.3) (2022-10-11)
4
+
5
+ [Full Changelog](https://github.com/gjtorikian/tailwind_merge/compare/v0.1.2...v0.1.3)
6
+
3
7
  ## [v0.1.2](https://github.com/gjtorikian/tailwind_merge/tree/v0.1.2) (2022-10-11)
4
8
 
5
9
  [Full Changelog](https://github.com/gjtorikian/tailwind_merge/compare/v0.1.1...v0.1.2)
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Utility function to efficiently merge [Tailwind CSS](https://tailwindcss.com/) classes without style conflicts. Essentially, a Ruby port of [tailwind-merge](https://github.com/dcastil/tailwind-merge).
4
4
 
5
- Supports Tailwind v3.0+.
5
+ Supports Tailwind v3.0 up to v3.2.
6
6
 
7
7
  ## Installation
8
8
 
@@ -291,7 +291,7 @@ Here's a brief summary for each validator:
291
291
  - `IS_ARBITRARY_SIZE` checks whether class part is an arbitrary value which starts with `size:` (`[size:200px_100px]`) which is necessary for background-size classNames.
292
292
  - `IS_ARBITRARY_POSITION` checks whether class part is an arbitrary value which starts with `position:` (`[position:200px_100px]`) which is necessary for background-position classNames.
293
293
  - `IS_ARBITRARY_URL` checks whether class part is an arbitrary value which starts with `url:` or `url(` (`[url('/path-to-image.png')]`, `url:var(--maybe-a-url-at-runtime)]`) which is necessary for background-image classNames.
294
- - `IS_ARBITRARY_WEIGHT` checks whether class part is an arbitrary value which starts with `number:` or is a number (`[number:var(--value)]`, `[450]`) which is necessary for font-weight classNames.
294
+ - `IS_ARBITRARY_NUMBER` checks whether class part is an arbitrary value which starts with `number:` or is a number (`[number:var(--value)]`, `[450]`) which is necessary for font-weight classNames.
295
295
  - `IS_ARBITRARY_SHADOW` checks whether class part is an arbitrary value which starts with the same pattern as a shadow value (`[0_35px_60px_-15px_rgba(0,0,0,0.3)]`), namely with two lengths separated by a underscore.
296
296
  - `IS_ANY` always returns true. Be careful with this validator as it might match unwanted classes. I use it primarily to match colors or when it's certain there are no other class groups in a namespace.
297
297
 
@@ -300,7 +300,7 @@ module TailwindMerge
300
300
  # Visibility
301
301
  # @see https://tailwindcss.com/docs/visibility
302
302
  ##
303
- "visibility" => ["visible", "invisible"],
303
+ "visibility" => ["visible", "invisible", "collapse"],
304
304
  ##
305
305
  # Z-Index
306
306
  # @see https://tailwindcss.com/docs/z-index
@@ -431,7 +431,7 @@ module TailwindMerge
431
431
  # Align Content
432
432
  # @see https://tailwindcss.com/docs/align-content
433
433
  ##
434
- "align-content" => [{ "content" => ALIGN.call }],
434
+ "align-content" => [{ content: [*ALIGN.call, "baseline"] }],
435
435
  ##
436
436
  # Align Items
437
437
  # @see https://tailwindcss.com/docs/align-items
@@ -446,12 +446,12 @@ module TailwindMerge
446
446
  # Place Content
447
447
  # @see https://tailwindcss.com/docs/place-content
448
448
  ##
449
- "place-content" => [{ "place-content" => [*ALIGN.call, "stretch"] }],
449
+ "place-content" => [{ "place-content" => [*ALIGN.call, "baseline", "stretch"] }],
450
450
  ##
451
451
  # Place Items
452
452
  # @see https://tailwindcss.com/docs/place-items
453
453
  ##
454
- "place-items" => [{ "place-items" => ["start", "end", "center", "stretch"] }],
454
+ "place-items" => [{ "place-items" => ["start", "end", "center", "baseline", "stretch"] }],
455
455
  ##
456
456
  # Place Self
457
457
  # @see https://tailwindcss.com/docs/place-self
@@ -626,7 +626,7 @@ module TailwindMerge
626
626
  "bold",
627
627
  "extrabold",
628
628
  "black",
629
- IS_ARBITRARY_WEIGHT,
629
+ IS_ARBITRARY_NUMBER,
630
630
  ],
631
631
  },
632
632
  ],
@@ -793,7 +793,7 @@ module TailwindMerge
793
793
  # Word Break
794
794
  # @see https://tailwindcss.com/docs/word-break
795
795
  ##
796
- "break" => [{ "break" => ["normal", "words", "all"] }],
796
+ "break" => [{ "break" => ["normal", "words", "all", "keep"] }],
797
797
  ##
798
798
  # Content
799
799
  # @see https://tailwindcss.com/docs/content
@@ -1034,7 +1034,7 @@ module TailwindMerge
1034
1034
  # Outline Style
1035
1035
  # @see https://tailwindcss.com/docs/outline-style
1036
1036
  ##
1037
- "outline-style" => [{ "outline" => ["", *LINE_STYLES.call, "hidden"] }],
1037
+ "outline-style" => [{ "outline" => ["", *LINE_STYLES.call] }],
1038
1038
  ##
1039
1039
  # Outline Offset
1040
1040
  # @see https://tailwindcss.com/docs/outline-offset
@@ -1540,17 +1540,17 @@ module TailwindMerge
1540
1540
  # Fill
1541
1541
  # @see https://tailwindcss.com/docs/fill
1542
1542
  ##
1543
- "fill" => [{ "fill" => [COLORS] }],
1543
+ "fill" => [{ "fill" => [COLORS, "none"] }],
1544
1544
  ##
1545
1545
  # Stroke Width
1546
1546
  # @see https://tailwindcss.com/docs/stroke-width
1547
1547
  ##
1548
- "stroke-w" => [{ "stroke" => [IS_LENGTH] }],
1548
+ "stroke-w" => [{ "stroke" => [IS_LENGTH, IS_ARBITRARY_NUMBER] }],
1549
1549
  ##
1550
1550
  # Stroke
1551
1551
  # @see https://tailwindcss.com/docs/stroke
1552
1552
  ##
1553
- "stroke" => [{ "stroke" => [COLORS] }],
1553
+ "stroke" => [{ "stroke" => [COLORS, "none"] }],
1554
1554
  # Accessibility
1555
1555
  ##
1556
1556
  # Screen Readers
@@ -68,7 +68,7 @@ module TailwindMerge
68
68
  false
69
69
  }
70
70
 
71
- IS_ARBITRARY_WEIGHT = ->(class_part) {
71
+ IS_ARBITRARY_NUMBER = ->(class_part) {
72
72
  if (match = ARBITRARY_VALUE_REGEX.match(class_part))
73
73
  return match[1].start_with?("number:") || numeric?(match[1])
74
74
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TailwindMerge
4
- VERSION = "0.1.3"
4
+ VERSION = "0.3.0"
5
5
  end
File without changes
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: 0.1.3
4
+ version: 0.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: 2022-10-11 00:00:00.000000000 Z
11
+ date: 2022-10-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: lru_redux
@@ -140,7 +140,7 @@ files:
140
140
  - lib/tailwind_merge/config.rb
141
141
  - lib/tailwind_merge/validators.rb
142
142
  - lib/tailwind_merge/version.rb
143
- - script/changelog_generator
143
+ - script/generate_changelog
144
144
  - tailwind_merge.gemspec
145
145
  homepage: https://www.github.com/gjtorikian/tailwind_merge
146
146
  licenses:
@@ -167,7 +167,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
167
167
  - !ruby/object:Gem::Version
168
168
  version: '0'
169
169
  requirements: []
170
- rubygems_version: 3.3.7
170
+ rubygems_version: 3.3.22
171
171
  signing_key:
172
172
  specification_version: 4
173
173
  summary: Utility function to efficiently merge Tailwind CSS classes without style