@gitlab/ui
Version:
GitLab UI Components
50 lines (47 loc) • 1.89 kB
JavaScript
import PaginatedListBasicExample from './paginated_list.basic.example';
import PaginatedListNoFilterExample from './paginated_list.no_filter.example';
import PaginatedListWithEmptyListExample from './paginated_list.with_empty_list.example';
import PaginatedListWithFilterFunctionExample from './paginated_list.with_filter_function.example';
import PaginatedListWithHeaderSlotExample from './paginated_list.with_header_slot.example';
import PaginatedListWithRowSlotExample from './paginated_list.with_row_slot.example';
import PaginatedListWithSubheaderSlotExample from './paginated_list.with_subheader_slot.example';
var index = [{
name: 'Basic',
items: [{
id: 'paginated-list-basic',
name: 'Basic',
description: 'Basic Paginated List',
component: PaginatedListBasicExample
}, {
id: 'paginated-list-no-filter',
name: 'No Filter',
description: 'Paginated List with no button',
component: PaginatedListNoFilterExample
}, {
id: 'paginated-list-with-empty-list',
name: 'With empty list',
description: 'Paginated List empty list',
component: PaginatedListWithEmptyListExample
}, {
id: 'paginated-list-with-header-slot',
name: 'With header slot',
description: 'Paginated List header slot',
component: PaginatedListWithHeaderSlotExample
}, {
id: 'paginated-list-with-subheader-slot',
name: 'With subheader slot',
description: 'Paginated List subheader slot',
component: PaginatedListWithSubheaderSlotExample
}, {
id: 'paginated-list-with-row-slot',
name: 'With row slot',
description: 'Paginated List with row slot',
component: PaginatedListWithRowSlotExample
}, {
id: 'paginated-list-with-filter-function',
name: 'With filter function',
description: 'Paginated List with filter function',
component: PaginatedListWithFilterFunctionExample
}]
}];
export default index;