Skip to content

Commit 72e36c2

Browse files
authored
Merge pull request #30 from javierav/fix-helper
Fix #28 error in view helper and readme
2 parents 8a374ac + 26bfd54 commit 72e36c2

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## Unreleased
22
- Add support for merging ([#23](https://github.com/avo-hq/class_variants/pull/23))
33
- Add support for subclass inheritance in helper ([#24](https://github.com/avo-hq/class_variants/pull/24))
4+
- Fix issue in view helper and readme example ([#30](https://github.com/avo-hq/class_variants/pull/30))
45

56
## 1.0.0 (2024-11-13)
67
- Add support for slots ([#15](https://github.com/avo-hq/class_variants/pull/15))

lib/class_variants/action_view/helpers.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module ClassVariants
22
module ActionView
33
module Helpers
4-
def class_variants(classes, **args)
5-
ClassVariants::Instance.new classes, **args
4+
def class_variants(...)
5+
ClassVariants::Instance.new(...)
66
end
77
end
88
end

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ alert_classes.render(:body, class: "...")
279279

280280
```ruby
281281
# Somewhere in your helpers
282-
def button_classes(classes, **args)
282+
def button_classes
283283
class_variants(
284284
base: "inline-flex items-center rounded border border-transparent font-medium text-white hover:text-white shadow-sm focus:outline-none focus:ring-2 focus:ring-offset-2",
285285
variants: {

0 commit comments

Comments
 (0)