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

Update useBem hook in the way it could receive keys in camel-case #1998

Closed
aluarius opened this issue Jun 23, 2022 · 0 comments · Fixed by #2000
Closed

Update useBem hook in the way it could receive keys in camel-case #1998

aluarius opened this issue Jun 23, 2022 · 0 comments · Fixed by #2000
Assignees
Labels
refactoring Prettify code without introducing new features

Comments

@aluarius
Copy link
Contributor

We want to be able to write in this way:

const computedClass = useBem('va-switch', () => ({
...pick(props, ['readonly', 'disabled', 'leftLabel']),
}))

instead of:

const computedClass = useBem('va-switch', () => ({
...pick(props, ['readonly', 'disabled']),
'left-label': props.leftLabel,
}))

to gain at the end va-switch--left-label for example.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
refactoring Prettify code without introducing new features
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant