-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Scope according to sections #919
Comments
I'm not sure there's an easy way to solve this. Right now all components are global (which isn't a good thing, a would be nice to fix that — #325). As a workaround (though ugly) you may try to
According to blame it uses |
Thanks for you help @sapegin !!
Indeed that is the problem! PlaykitProgramsList_Button
PlaykitButtons_Button But with that ugly workaround, I have to require my own components in examples as you said before...
Di you know if there is a way to use ES6 in example? Thanks! |
You can use ES6, except modules ;-) because Buble doesn't support them. |
Hi all!
First of all, thanks for this incredible lib! It is really making my life easier since I'm managing a UI toolkit for my company.
But, here is my question... Is there a way to scope the navigation according to sections?
My problem is that I have some components that have the same name (like a
Button
block component).All my components are composed of a
set
of someblock
components.Something like this:
But, when I click on
Button
link to see its documentation,react-styleguide
filters components with the exact same name, but not scoped by the sections we build...Do we have a way to get around it?
PS: I had to override the
ComponentsListRenderer
because it is still using thename
askey
, instead offilepath
(as we can see here #33, I think you just changed theComponentRenderer
key prop isn't it?).The text was updated successfully, but these errors were encountered: