Autodesk / orion-ui

UI Components that work seamlessly in multiple UI frameworks
https://goo.gl/shxHPB
Other
22 stars 6 forks source link

Create FilterableSideNav #293

Open camwest opened 7 years ago

camwest commented 7 years ago
As a developer
I want to use a FilterableSideNav which provides an easy to use SideNav component 
So that I don't have to write a bunch of filtering state machines

Typical Usage

const sidenavData = {
  links: [],
  sections: [
    {
      groups: [
        modules: [
          name: 'Foo',
          icon: 'some-icon',
          submodules: []
        ]
      ]
    }
  ]

<FilterableSideNav query="Hello world" items={sideNavData} />
}

Complete props

TODO