UNPKG

@discoveryjs/discovery

Version:

Frontend framework for rapid data (JSON) analysis, shareable serverless reports and dashboards

46 lines (45 loc) 1.35 kB
export default { demo: { view: 'menu', data: [ { text: 'one', href: '#' }, { text: 'two', href: '#' }, { text: 'three', href: '#' } ] }, examples: [ { title: 'Preselected item', demo: { view: 'menu', data: [ { text: 'one', href: '#' }, { text: 'two', href: '#', selected: true}, { text: 'three', href: '#' } ] } }, { title: 'Disabled item', demo: { view: 'menu', data: [ { text: 'one', href: '#' }, { text: 'two', href: '#', disabled: true}, { text: 'three', href: '#' } ] } }, { title: 'External links', demo: { view: 'menu', data: [ { text: 'one', external: true, href: 'https://github.com/discoveryjs/discovery' }, { text: 'two', external: true, href: 'https://github.com/discoveryjs/discovery' }, { text: 'three', external: true, href: 'https://github.com/discoveryjs/discovery' } ] } } ] };