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

Commit afba000

Browse files
committed
Add paginator to docs
1 parent 46346ba commit afba000

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/app/shared/documentation-items/documentation-items.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,14 @@ const DOCS = [
7373
{id: 'snack-bar', name: 'Snackbar', examples: ['snack-bar-component']},
7474
]
7575
},
76+
{
77+
id: 'tables',
78+
name: 'Data table',
79+
summary: 'Tables, sorting, and pagination',
80+
items: [
81+
{id: 'paginator', name: 'Paginator', examples: ['paginator-configurable']},
82+
]
83+
}
7684
];
7785

7886
const ALL_ITEMS = DOCS.reduce((result, category) => result.concat(category.items), []);

0 commit comments

Comments
 (0)