Skip to content
This repository was archived by the owner on Dec 18, 2024. It is now read-only.

chore: add divider to the documentation site. #370

Merged
merged 1 commit into from
Jan 18, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 11 additions & 10 deletions src/app/shared/documentation-items/documentation-items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,13 +127,14 @@ const DOCS: {[key: string]: DocCategory[]} = {
id: 'layout',
name: 'Layout',
items: [
{id: 'list', name: 'List', examples: ['list-sections']},
{id: 'grid-list', name: 'Grid list', examples: ['grid-list-dynamic']},
{id: 'card', name: 'Card', examples: ['card-fancy']},
{id: 'stepper', name: 'Stepper', examples: ['stepper-overview']},
{id: 'tabs', name: 'Tabs', examples: ['tabs-template-label']},
{id: 'divider', name: 'Divider', examples: ['divider-overview']},
{id: 'expansion', name: 'Expansion Panel',
examples: ['expansion-overview', 'expansion-steps']},
{id: 'grid-list', name: 'Grid list', examples: ['grid-list-dynamic']},
{id: 'list', name: 'List', examples: ['list-sections']},
{id: 'stepper', name: 'Stepper', examples: ['stepper-overview']},
{id: 'tabs', name: 'Tabs', examples: ['tabs-template-label']},
]
},
{
Expand All @@ -154,23 +155,23 @@ const DOCS: {[key: string]: DocCategory[]} = {
name: 'Popups & Modals',
items: [
{id: 'dialog', name: 'Dialog', examples: ['dialog-overview']},
{id: 'tooltip', name: 'Tooltip', examples: ['tooltip-position']},
{id: 'snack-bar', name: 'Snackbar', examples: ['snack-bar-component']},
{id: 'tooltip', name: 'Tooltip', examples: ['tooltip-position']},
]
},
{
id: 'tables',
name: 'Data table',
items: [
{id: 'paginator', name: 'Paginator', examples: ['paginator-configurable']},
{id: 'sort', name: 'Sort header', examples: ['sort-overview']},
{id: 'table', name: 'Table', examples: [
'table-filtering',
'table-pagination',
'table-sorting',
'table-http',
'table-overview',
]},
{id: 'sort', name: 'Sort header', examples: ['sort-overview']},
{id: 'paginator', name: 'Paginator', examples: ['paginator-configurable']},
]
}
],
Expand All @@ -180,20 +181,20 @@ const DOCS: {[key: string]: DocCategory[]} = {
name: 'Common Behaviors',
items: [
{id: 'a11y', name: 'Accessibility', examples: []},
{id: 'observers', name: 'Observers', examples: []},
{id: 'bidi', name: 'Bidirectionality', examples: []},
{id: 'layout', name: 'Layout', examples: []},
{id: 'observers', name: 'Observers', examples: []},
{id: 'overlay', name: 'Overlay', examples: []},
{id: 'portal', name: 'Portal', examples: []},
{id: 'bidi', name: 'Bidirectionality', examples: []},
{id: 'scrolling', name: 'Scrolling', examples: []},
]
},
{
id: 'components',
name: 'Components',
items: [
{id: 'table', name: 'Table', examples: []},
{id: 'stepper', name: 'Stepper', examples: []},
{id: 'table', name: 'Table', examples: []},

]
},
Expand Down