Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #28 error in view helper and readme #30

Merged
merged 1 commit into from
Jan 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## Unreleased
- Add support for merging ([#23](https://github.com/avo-hq/class_variants/pull/23))
- Add support for subclass inheritance in helper ([#24](https://github.com/avo-hq/class_variants/pull/24))
- Fix issue in view helper and readme example ([#30](https://github.com/avo-hq/class_variants/pull/30))

## 1.0.0 (2024-11-13)
- Add support for slots ([#15](https://github.com/avo-hq/class_variants/pull/15))
Expand Down
4 changes: 2 additions & 2 deletions lib/class_variants/action_view/helpers.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module ClassVariants
module ActionView
module Helpers
def class_variants(classes, **args)
ClassVariants::Instance.new classes, **args
def class_variants(...)
ClassVariants::Instance.new(...)
end
end
end
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ alert_classes.render(:body, class: "...")

```ruby
# Somewhere in your helpers
def button_classes(classes, **args)
def button_classes
class_variants(
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",
variants: {
Expand Down
Loading