You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This helper supports class inheritance, so that the subclass receives a copy of the class_variants config that the parent class had at the time of inheritance. From that point on, the settings are kept separate for both. Successive calls to class_variants helper method, will cause the configuration to be merged.
340
+
341
+
```ruby
342
+
classA
343
+
includeClassVariants::Helper
344
+
345
+
class_variants(base:"bg-red")
346
+
end
347
+
348
+
classB < A
349
+
class_variants(base:"text-black")
350
+
end
351
+
352
+
A.class_variants(base:"text-white")
353
+
354
+
A.new.class_variants # => "bg-red text-white"
355
+
B.new.class_variants # => "bg-red text-black"
321
356
```
322
357
323
358
## `tailwind_merge`
324
359
325
360
By default, the classes are merged using `concat`, but you can use the awesome [TailwindMerge](https://github.com/gjtorikian/tailwind_merge) gem.
326
-
Install the gem using `bundle add tailwind_merge` and use this configuration to enable it.
361
+
Install the gem using `bundle add tailwind_merge` and use this configuration to enable it. If you're using Rails, you can put this in an initializer.
327
362
328
363
```ruby
329
364
ClassVariants.configure do |config|
@@ -333,16 +368,12 @@ ClassVariants.configure do |config|
333
368
end
334
369
```
335
370
336
-
### Output
337
-
338
-

339
-
340
371
## Other packages
341
372
342
-
-[`active_storage-blurhash`](https://github.com/avo-hq/active_storage-blurhash) - A plug-n-play [blurhash](https://blurha.sh/) integration for images stored in ActiveStorage
343
-
-[`avo`](https://github.com/avo-hq/avo) - Build Content management systems with Ruby on Rails
344
-
-[`prop_initializer`](https://github.com/avo-hq/prop_initializer) - A flexible tool for defining properties on Ruby classes.
345
-
-[`stimulus-confetti`](https://github.com/avo-hq/stimulus-confetti) - The easiest way to add confetti to your StimulusJS app
373
+
-[`active_storage-blurhash`](https://github.com/avo-hq/active_storage-blurhash) - A plug-n-play [blurhash](https://blurha.sh/) integration for images stored in ActiveStorage
374
+
-[`avo`](https://github.com/avo-hq/avo) - Build Content management systems with Ruby on Rails
375
+
-[`prop_initializer`](https://github.com/avo-hq/prop_initializer) - A flexible tool for defining properties on Ruby classes.
376
+
-[`stimulus-confetti`](https://github.com/avo-hq/stimulus-confetti) - The easiest way to add confetti to your StimulusJS app
346
377
347
378
## Try Avo ⭐️
348
379
@@ -353,12 +384,13 @@ If you enjoyed this gem try out [Avo](https://github.com/avo-hq/avo). It helps d
353
384
## Contributing
354
385
355
386
1. Fork it `git clone https://github.com/avo-hq/class_variants`
356
-
1. Create your feature branch `git checkout -b my-new-feature`
357
-
1. Commit your changes `git commit -am 'Add some feature'`
358
-
1. Push to the branch `git push origin my-new-feature`
359
-
1. Create new Pull Request
387
+
2. Create your feature branch `git checkout -b my-new-feature`
388
+
3. Commit your changes `git commit -am 'Add some feature'`
389
+
4. Push to the branch `git push origin my-new-feature`
390
+
5. Create new Pull Request
360
391
361
392
## License
393
+
362
394
This package is available as open source under the terms of the MIT License.
0 commit comments