ember-freestyle
ember-freestyle copied to clipboard
Create a component explorer for your Ember app
Currently, ember-freestyle supports focusing a component via a `f` query param that is most commonly set by clicking a "focus" icon on a freestyle-usage component. When this query param is...
Each `freestyle-section` (and subsection) calls [registerSection](https://github.com/chrislopresto/ember-freestyle/blob/master/addon/services/ember-freestyle.js#L96), adding it to the service's list of menu items. But if you have multiple freestyle guides, the menu items persist between guides. I'm not...
This issue lays out a plan for adding automatic discovery of content for the styleguide. This plan takes some inspiration from @Turbo87's blog post [Autodiscovery for the Ember.js component playground](https://simplabs.com/blog/2018/06/05/ember-component-playground.html)...
Implementation of #176
Ideas: * auto-generate freestyle-dynamic form * Display support props in freestyle template
Perhaps something like: ```hbs {{#freestyle-dynamic 'rating-group-some' dynamicProperties=(hash score=(hash value=3.5 component='slider' options=(hash min=0 max=5))) title='Rating Group - Some stars' componentName='rating-group' as |dynamic| }} {{rating-group score=dynamic.score}} {{/freestyle-dynamic}} ``` (specifically the `component` prop...