@skyux/list-builder 5.0.0-beta.0 → 5.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/bundles/skyux-list-builder.umd.js +1308 -1130
- package/bundles/skyux-list-builder.umd.js.map +1 -1
- package/documentation.json +6679 -0
- package/esm2015/modules/list/list-data-request.model.js +1 -1
- package/esm2015/modules/list/list-data-response.model.js +1 -1
- package/esm2015/modules/list/list-data.provider.js +1 -1
- package/esm2015/modules/list/list-paging.component.js +1 -1
- package/esm2015/modules/list/list-view.component.js +9 -8
- package/esm2015/modules/list/list.component.js +81 -87
- package/esm2015/modules/list/list.module.js +15 -18
- package/esm2015/modules/list/state/filters/filters.orchestrator.js +2 -3
- package/esm2015/modules/list/state/filters/update.action.js +1 -1
- package/esm2015/modules/list/state/items/items.orchestrator.js +12 -9
- package/esm2015/modules/list/state/items/load.action.js +1 -1
- package/esm2015/modules/list/state/items/set-items-selected.action.js +4 -2
- package/esm2015/modules/list/state/items/set-loading.action.js +1 -1
- package/esm2015/modules/list/state/list-state-action.type.js +2 -1
- package/esm2015/modules/list/state/list-state.model.js +1 -1
- package/esm2015/modules/list/state/list-state.rxstate.js +10 -8
- package/esm2015/modules/list/state/list-state.state-node.js +11 -14
- package/esm2015/modules/list/state/paging/paging.model.js +1 -1
- package/esm2015/modules/list/state/paging/paging.orchestrator.js +2 -3
- package/esm2015/modules/list/state/paging/set-items-per-page.action.js +1 -1
- package/esm2015/modules/list/state/paging/set-max-pages.action.js +1 -1
- package/esm2015/modules/list/state/paging/set-page-number.action.js +1 -1
- package/esm2015/modules/list/state/search/search.model.js +1 -1
- package/esm2015/modules/list/state/search/search.orchestrator.js +5 -4
- package/esm2015/modules/list/state/search/set-field-selectors.action.js +1 -1
- package/esm2015/modules/list/state/search/set-functions.action.js +1 -1
- package/esm2015/modules/list/state/search/set-options.action.js +1 -1
- package/esm2015/modules/list/state/search/set-search-text.action.js +1 -1
- package/esm2015/modules/list/state/selected/load.action.js +1 -1
- package/esm2015/modules/list/state/selected/selected.model.js +1 -1
- package/esm2015/modules/list/state/selected/selected.orchestrator.js +9 -10
- package/esm2015/modules/list/state/selected/set-item-selected.action.js +1 -1
- package/esm2015/modules/list/state/selected/set-items-selected.action.js +1 -1
- package/esm2015/modules/list/state/selected/set-loading.action.js +1 -1
- package/esm2015/modules/list/state/sort/label.model.js +1 -1
- package/esm2015/modules/list/state/sort/set-available.action.js +1 -1
- package/esm2015/modules/list/state/sort/set-field-selectors.action.js +1 -1
- package/esm2015/modules/list/state/sort/set-global.action.js +1 -1
- package/esm2015/modules/list/state/sort/sort.model.js +1 -1
- package/esm2015/modules/list/state/sort/sort.orchestrator.js +4 -5
- package/esm2015/modules/list/state/toolbar/disable.action.js +1 -1
- package/esm2015/modules/list/state/toolbar/load.action.js +1 -1
- package/esm2015/modules/list/state/toolbar/remove.action.js +1 -1
- package/esm2015/modules/list/state/toolbar/set-exists.action.js +1 -1
- package/esm2015/modules/list/state/toolbar/set-type.action.js +1 -1
- package/esm2015/modules/list/state/toolbar/show-multiselect-toolbar.action.js +1 -1
- package/esm2015/modules/list/state/toolbar/toolbar-item.model.js +1 -1
- package/esm2015/modules/list/state/toolbar/toolbar.model.js +1 -1
- package/esm2015/modules/list/state/toolbar/toolbar.orchestrator.js +3 -4
- package/esm2015/modules/list/state/views/load.action.js +1 -1
- package/esm2015/modules/list/state/views/set-active.action.js +1 -1
- package/esm2015/modules/list/state/views/view.model.js +1 -1
- package/esm2015/modules/list/state/views/views.model.js +1 -1
- package/esm2015/modules/list/state/views/views.orchestrator.js +2 -4
- package/esm2015/modules/list-data-provider-in-memory/list-data-in-memory.provider.js +25 -14
- package/esm2015/modules/list-filters/filter.model.js +1 -1
- package/esm2015/modules/list-filters/list-filter-button.component.js +23 -24
- package/esm2015/modules/list-filters/list-filter-inline-item-renderer.component.js +24 -24
- package/esm2015/modules/list-filters/list-filter-inline-item.component.js +32 -32
- package/esm2015/modules/list-filters/list-filter-inline.component.js +28 -26
- package/esm2015/modules/list-filters/list-filter-inline.model.js +1 -1
- package/esm2015/modules/list-filters/list-filter-summary.component.js +22 -23
- package/esm2015/modules/list-filters/list-filters.module.js +33 -27
- package/esm2015/modules/list-paging/list-paging.component.js +37 -40
- package/esm2015/modules/list-paging/list-paging.module.js +15 -19
- package/esm2015/modules/list-toolbar/list-multiselect-toolbar.component.js +45 -41
- package/esm2015/modules/list-toolbar/list-secondary-actions/list-secondary-action.component.js +22 -23
- package/esm2015/modules/list-toolbar/list-secondary-actions/list-secondary-action.js +2 -1
- package/esm2015/modules/list-toolbar/list-secondary-actions/list-secondary-actions-host.component.js +22 -20
- package/esm2015/modules/list-toolbar/list-secondary-actions/list-secondary-actions.component.js +26 -30
- package/esm2015/modules/list-toolbar/list-secondary-actions/list-secondary-actions.module.js +34 -23
- package/esm2015/modules/list-toolbar/list-secondary-actions/list-secondary-actions.service.js +10 -9
- package/esm2015/modules/list-toolbar/list-toolbar-item-renderer.component.js +22 -21
- package/esm2015/modules/list-toolbar/list-toolbar-item.component.js +23 -24
- package/esm2015/modules/list-toolbar/list-toolbar-search-actions.component.js +15 -13
- package/esm2015/modules/list-toolbar/list-toolbar-sort.component.js +21 -23
- package/esm2015/modules/list-toolbar/list-toolbar-view-actions.component.js +14 -12
- package/esm2015/modules/list-toolbar/list-toolbar.component.js +142 -139
- package/esm2015/modules/list-toolbar/list-toolbar.module.js +62 -31
- package/esm2015/modules/list-toolbar/state/config/config.model.js +1 -1
- package/esm2015/modules/list-toolbar/state/config/config.orchestrator.js +2 -4
- package/esm2015/modules/list-toolbar/state/config/set-search-enabled.action.js +1 -1
- package/esm2015/modules/list-toolbar/state/config/set-sort-selector-enabled.action.js +1 -1
- package/esm2015/modules/list-toolbar/state/toolbar-state-action.type.js +2 -1
- package/esm2015/modules/list-toolbar/state/toolbar-state.model.js +1 -1
- package/esm2015/modules/list-toolbar/state/toolbar-state.rxstate.js +9 -8
- package/esm2015/modules/list-toolbar/state/toolbar-state.state-node.js +12 -17
- package/esm2015/modules/shared/sky-list-builder-resources.module.js +53 -0
- package/esm2015/public-api.js +78 -0
- package/esm2015/skyux-list-builder.js +2 -23
- package/fesm2015/skyux-list-builder.js +992 -915
- package/fesm2015/skyux-list-builder.js.map +1 -1
- package/modules/list/list.component.d.ts +3 -0
- package/modules/list/list.module.d.ts +6 -0
- package/modules/list/state/list-state.rxstate.d.ts +3 -0
- package/modules/list/state/list-state.state-node.d.ts +3 -0
- package/modules/list-filters/list-filter-button.component.d.ts +3 -0
- package/modules/list-filters/list-filter-inline-item-renderer.component.d.ts +3 -0
- package/modules/list-filters/list-filter-inline-item.component.d.ts +3 -0
- package/modules/list-filters/list-filter-inline.component.d.ts +3 -0
- package/modules/list-filters/list-filter-summary.component.d.ts +3 -0
- package/modules/list-filters/list-filters.module.d.ts +11 -0
- package/modules/list-paging/list-paging.component.d.ts +3 -0
- package/modules/list-paging/list-paging.module.d.ts +7 -0
- package/modules/list-toolbar/list-multiselect-toolbar.component.d.ts +3 -0
- package/modules/list-toolbar/list-secondary-actions/list-secondary-action.component.d.ts +3 -0
- package/modules/list-toolbar/list-secondary-actions/list-secondary-actions-host.component.d.ts +3 -0
- package/modules/list-toolbar/list-secondary-actions/list-secondary-actions.component.d.ts +3 -0
- package/modules/list-toolbar/list-secondary-actions/list-secondary-actions.module.d.ts +12 -0
- package/modules/list-toolbar/list-secondary-actions/list-secondary-actions.service.d.ts +3 -0
- package/modules/list-toolbar/list-toolbar-item-renderer.component.d.ts +3 -0
- package/modules/list-toolbar/list-toolbar-item.component.d.ts +3 -0
- package/modules/list-toolbar/list-toolbar-search-actions.component.d.ts +3 -0
- package/modules/list-toolbar/list-toolbar-sort.component.d.ts +3 -0
- package/modules/list-toolbar/list-toolbar-view-actions.component.d.ts +3 -0
- package/modules/list-toolbar/list-toolbar.component.d.ts +3 -0
- package/modules/list-toolbar/list-toolbar.module.d.ts +20 -0
- package/modules/list-toolbar/state/toolbar-state.rxstate.d.ts +3 -0
- package/modules/list-toolbar/state/toolbar-state.state-node.d.ts +3 -0
- package/modules/shared/sky-list-builder-resources.module.d.ts +14 -0
- package/package.json +16 -31
- package/{public_api.d.ts → public-api.d.ts} +11 -0
- package/skyux-list-builder.d.ts +2 -22
- package/CHANGELOG.md +0 -161
- package/bundles/skyux-list-builder.umd.min.js +0 -16
- package/bundles/skyux-list-builder.umd.min.js.map +0 -1
- package/esm2015/modules/shared/list-builder-resources.module.js +0 -17
- package/esm2015/plugin-resources/list-builder-resources-provider.js +0 -16
- package/esm2015/public_api.js +0 -63
- package/esm5/modules/list/list-data-request.model.js +0 -20
- package/esm5/modules/list/list-data-response.model.js +0 -11
- package/esm5/modules/list/list-data.provider.js +0 -10
- package/esm5/modules/list/list-paging.component.js +0 -15
- package/esm5/modules/list/list-view.component.js +0 -38
- package/esm5/modules/list/list.component.js +0 -337
- package/esm5/modules/list/list.module.js +0 -24
- package/esm5/modules/list/state/filters/filters.orchestrator.js +0 -22
- package/esm5/modules/list/state/filters/update.action.js +0 -11
- package/esm5/modules/list/state/items/items.orchestrator.js +0 -55
- package/esm5/modules/list/state/items/load.action.js +0 -16
- package/esm5/modules/list/state/items/set-items-selected.action.js +0 -15
- package/esm5/modules/list/state/items/set-loading.action.js +0 -12
- package/esm5/modules/list/state/list-state-action.type.js +0 -1
- package/esm5/modules/list/state/list-state.model.js +0 -26
- package/esm5/modules/list/state/list-state.rxstate.js +0 -91
- package/esm5/modules/list/state/list-state.state-node.js +0 -42
- package/esm5/modules/list/state/paging/paging.model.js +0 -16
- package/esm5/modules/list/state/paging/paging.orchestrator.js +0 -33
- package/esm5/modules/list/state/paging/set-items-per-page.action.js +0 -11
- package/esm5/modules/list/state/paging/set-max-pages.action.js +0 -11
- package/esm5/modules/list/state/paging/set-page-number.action.js +0 -11
- package/esm5/modules/list/state/search/search.model.js +0 -34
- package/esm5/modules/list/state/search/search.orchestrator.js +0 -51
- package/esm5/modules/list/state/search/set-field-selectors.action.js +0 -12
- package/esm5/modules/list/state/search/set-functions.action.js +0 -12
- package/esm5/modules/list/state/search/set-options.action.js +0 -13
- package/esm5/modules/list/state/search/set-search-text.action.js +0 -11
- package/esm5/modules/list/state/selected/load.action.js +0 -11
- package/esm5/modules/list/state/selected/selected.model.js +0 -11
- package/esm5/modules/list/state/selected/selected.orchestrator.js +0 -62
- package/esm5/modules/list/state/selected/set-item-selected.action.js +0 -12
- package/esm5/modules/list/state/selected/set-items-selected.action.js +0 -15
- package/esm5/modules/list/state/selected/set-loading.action.js +0 -12
- package/esm5/modules/list/state/sort/label.model.js +0 -27
- package/esm5/modules/list/state/sort/set-available.action.js +0 -11
- package/esm5/modules/list/state/sort/set-field-selectors.action.js +0 -11
- package/esm5/modules/list/state/sort/set-global.action.js +0 -11
- package/esm5/modules/list/state/sort/sort.model.js +0 -29
- package/esm5/modules/list/state/sort/sort.orchestrator.js +0 -36
- package/esm5/modules/list/state/toolbar/disable.action.js +0 -11
- package/esm5/modules/list/state/toolbar/load.action.js +0 -13
- package/esm5/modules/list/state/toolbar/remove.action.js +0 -11
- package/esm5/modules/list/state/toolbar/set-exists.action.js +0 -11
- package/esm5/modules/list/state/toolbar/set-type.action.js +0 -11
- package/esm5/modules/list/state/toolbar/show-multiselect-toolbar.action.js +0 -11
- package/esm5/modules/list/state/toolbar/toolbar-item.model.js +0 -18
- package/esm5/modules/list/state/toolbar/toolbar.model.js +0 -19
- package/esm5/modules/list/state/toolbar/toolbar.orchestrator.js +0 -86
- package/esm5/modules/list/state/views/load.action.js +0 -11
- package/esm5/modules/list/state/views/set-active.action.js +0 -11
- package/esm5/modules/list/state/views/view.model.js +0 -12
- package/esm5/modules/list/state/views/views.model.js +0 -15
- package/esm5/modules/list/state/views/views.orchestrator.js +0 -28
- package/esm5/modules/list-data-provider-in-memory/list-data-in-memory.provider.js +0 -157
- package/esm5/modules/list-filters/filter.model.js +0 -20
- package/esm5/modules/list-filters/list-filter-button.component.js +0 -45
- package/esm5/modules/list-filters/list-filter-inline-item-renderer.component.js +0 -37
- package/esm5/modules/list-filters/list-filter-inline-item.component.js +0 -50
- package/esm5/modules/list-filters/list-filter-inline.component.js +0 -73
- package/esm5/modules/list-filters/list-filter-inline.model.js +0 -23
- package/esm5/modules/list-filters/list-filter-summary.component.js +0 -62
- package/esm5/modules/list-filters/list-filters.module.js +0 -38
- package/esm5/modules/list-paging/list-paging.component.js +0 -102
- package/esm5/modules/list-paging/list-paging.module.js +0 -26
- package/esm5/modules/list-toolbar/list-multiselect-toolbar.component.js +0 -153
- package/esm5/modules/list-toolbar/list-secondary-actions/list-secondary-action.component.js +0 -34
- package/esm5/modules/list-toolbar/list-secondary-actions/list-secondary-action.js +0 -1
- package/esm5/modules/list-toolbar/list-secondary-actions/list-secondary-actions-host.component.js +0 -49
- package/esm5/modules/list-toolbar/list-secondary-actions/list-secondary-actions.component.js +0 -49
- package/esm5/modules/list-toolbar/list-secondary-actions/list-secondary-actions.module.js +0 -38
- package/esm5/modules/list-toolbar/list-secondary-actions/list-secondary-actions.service.js +0 -36
- package/esm5/modules/list-toolbar/list-toolbar-item-renderer.component.js +0 -32
- package/esm5/modules/list-toolbar/list-toolbar-item.component.js +0 -53
- package/esm5/modules/list-toolbar/list-toolbar-search-actions.component.js +0 -20
- package/esm5/modules/list-toolbar/list-toolbar-sort.component.js +0 -30
- package/esm5/modules/list-toolbar/list-toolbar-view-actions.component.js +0 -22
- package/esm5/modules/list-toolbar/list-toolbar.component.js +0 -375
- package/esm5/modules/list-toolbar/list-toolbar.module.js +0 -59
- package/esm5/modules/list-toolbar/state/config/config.model.js +0 -16
- package/esm5/modules/list-toolbar/state/config/config.orchestrator.js +0 -28
- package/esm5/modules/list-toolbar/state/config/set-search-enabled.action.js +0 -11
- package/esm5/modules/list-toolbar/state/config/set-sort-selector-enabled.action.js +0 -13
- package/esm5/modules/list-toolbar/state/toolbar-state-action.type.js +0 -1
- package/esm5/modules/list-toolbar/state/toolbar-state.model.js +0 -12
- package/esm5/modules/list-toolbar/state/toolbar-state.rxstate.js +0 -29
- package/esm5/modules/list-toolbar/state/toolbar-state.state-node.js +0 -29
- package/esm5/modules/shared/list-builder-resources.module.js +0 -20
- package/esm5/plugin-resources/list-builder-resources-provider.js +0 -17
- package/esm5/public_api.js +0 -63
- package/esm5/skyux-list-builder.js +0 -26
- package/fesm5/skyux-list-builder.js +0 -2884
- package/fesm5/skyux-list-builder.js.map +0 -1
- package/modules/shared/list-builder-resources.module.d.ts +0 -2
- package/plugin-resources/list-builder-resources-provider.d.ts +0 -5
- package/skyux-list-builder.metadata.json +0 -1
- package/src/assets/img/list-toolbar-context.png +0 -0
- package/src/assets/img/toolbar-anatomy.png +0 -0
- package/src/assets/locales/resources_en_US.json +0 -22
|
@@ -7,6 +7,7 @@ import { ListState } from './state/list-state.state-node';
|
|
|
7
7
|
import { ListStateDispatcher } from './state/list-state.rxstate';
|
|
8
8
|
import { ListItemModel, ListSortFieldSelectorModel } from '@skyux/list-builder-common';
|
|
9
9
|
import { ListViewComponent } from './list-view.component';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
10
11
|
export declare class SkyListComponent implements AfterContentInit, OnChanges, OnDestroy {
|
|
11
12
|
private state;
|
|
12
13
|
private dispatcher;
|
|
@@ -85,4 +86,6 @@ export declare class SkyListComponent implements AfterContentInit, OnChanges, On
|
|
|
85
86
|
get itemCount(): Observable<number>;
|
|
86
87
|
private getItemsAndRetainSelections;
|
|
87
88
|
private arraysEqual;
|
|
89
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyListComponent, never>;
|
|
90
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyListComponent, "sky-list", never, { "data": "data"; "dataProvider": "dataProvider"; "defaultView": "defaultView"; "initialTotal": "initialTotal"; "selectedIds": "selectedIds"; "sortFields": "sortFields"; "appliedFilters": "appliedFilters"; "searchFunction": "search"; }, { "selectedIdsChange": "selectedIdsChange"; "appliedFiltersChange": "appliedFiltersChange"; }, ["listViews"], ["*"]>;
|
|
88
91
|
}
|
|
@@ -1,2 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./list.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
1
4
|
export declare class SkyListModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyListModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyListModule, [typeof i1.SkyListComponent], [typeof i2.CommonModule], [typeof i1.SkyListComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SkyListModule>;
|
|
2
8
|
}
|
|
@@ -5,6 +5,7 @@ import { ListStateAction } from './list-state-action.type';
|
|
|
5
5
|
import { ListSearchModel } from './search/search.model';
|
|
6
6
|
import { ListSortLabelModel } from './sort/label.model';
|
|
7
7
|
import { ListToolbarItemModel } from './toolbar/toolbar-item.model';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
8
9
|
/**
|
|
9
10
|
* @internal
|
|
10
11
|
*/
|
|
@@ -29,4 +30,6 @@ export declare class ListStateDispatcher extends StateDispatcher<ListStateAction
|
|
|
29
30
|
sortSetGlobal(sortLabels: ListSortLabelModel[]): void;
|
|
30
31
|
filtersUpdate(filters: ListFilterModel[]): void;
|
|
31
32
|
setSelected(selectedIds: string[], selected: boolean, refresh?: boolean): void;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ListStateDispatcher, never>;
|
|
34
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ListStateDispatcher>;
|
|
32
35
|
}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { StateNode } from '@skyux/list-builder-common';
|
|
2
2
|
import { ListStateModel } from './list-state.model';
|
|
3
3
|
import { ListStateDispatcher } from './list-state.rxstate';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
/**
|
|
5
6
|
* @internal
|
|
6
7
|
*/
|
|
7
8
|
export declare class ListState extends StateNode<ListStateModel> {
|
|
8
9
|
constructor(dispatcher: ListStateDispatcher);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ListState, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ListState>;
|
|
9
12
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AfterViewInit } from '@angular/core';
|
|
2
2
|
import { ListStateDispatcher } from '../list/state/list-state.rxstate';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* Contains a filter button for the list toolbar. Place a
|
|
5
6
|
* [`sky-filter-button`](https://developer.blackbaud.com/skyux/components/filter)
|
|
@@ -14,4 +15,6 @@ export declare class SkyListFilterButtonComponent implements AfterViewInit {
|
|
|
14
15
|
private filterButtonItemToolbarIndex;
|
|
15
16
|
constructor(dispatcher: ListStateDispatcher);
|
|
16
17
|
ngAfterViewInit(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyListFilterButtonComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyListFilterButtonComponent, "sky-list-filter-button", never, {}, {}, never, ["*"]>;
|
|
17
20
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { TemplateRef, OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
/**
|
|
3
4
|
* @internal
|
|
4
5
|
*/
|
|
@@ -7,4 +8,6 @@ export declare class SkyListFilterInlineItemRendererComponent implements OnInit
|
|
|
7
8
|
filter: any;
|
|
8
9
|
private container;
|
|
9
10
|
ngOnInit(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyListFilterInlineItemRendererComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyListFilterInlineItemRendererComponent, "sky-list-filter-inline-item-renderer", never, { "template": "template"; "filter": "filter"; }, {}, never, never>;
|
|
10
13
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { TemplateRef, OnInit, EventEmitter } from '@angular/core';
|
|
2
2
|
import { ListItemModel } from '@skyux/list-builder-common';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* Creates a filter in the list's inline filter area.
|
|
5
6
|
*/
|
|
@@ -36,4 +37,6 @@ export declare class SkyListFilterInlineItemComponent implements OnInit {
|
|
|
36
37
|
private templates;
|
|
37
38
|
ngOnInit(): void;
|
|
38
39
|
get template(): TemplateRef<any>;
|
|
40
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyListFilterInlineItemComponent, never>;
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyListFilterInlineItemComponent, "sky-list-filter-inline-item", never, { "name": "name"; "value": "value"; "defaultValue": "defaultValue"; "filterFunction": "filter"; "templateInput": "template"; }, {}, ["templates"], ["*"]>;
|
|
39
42
|
}
|
|
@@ -2,6 +2,7 @@ import { AfterContentInit } from '@angular/core';
|
|
|
2
2
|
import { ListState } from '../list/state/list-state.state-node';
|
|
3
3
|
import { ListStateDispatcher } from '../list/state/list-state.rxstate';
|
|
4
4
|
import { SkyListFilterInlineModel } from './list-filter-inline.model';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
/**
|
|
6
7
|
* Creates an inline filter area for the list. Place each filter
|
|
7
8
|
* in a `sky-list-filter-inline-item` component.
|
|
@@ -15,4 +16,6 @@ export declare class SkyListFilterInlineComponent implements AfterContentInit {
|
|
|
15
16
|
ngAfterContentInit(): void;
|
|
16
17
|
applyFilters(): void;
|
|
17
18
|
private getFilterModelFromInline;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyListFilterInlineComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyListFilterInlineComponent, "sky-list-filter-inline", never, {}, {}, ["filters"], ["*"]>;
|
|
18
21
|
}
|
|
@@ -3,6 +3,7 @@ import { Observable } from 'rxjs';
|
|
|
3
3
|
import { ListState } from '../list/state/list-state.state-node';
|
|
4
4
|
import { ListStateDispatcher } from '../list/state/list-state.rxstate';
|
|
5
5
|
import { ListFilterModel } from './filter.model';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
/**
|
|
7
8
|
* Creates a filter summary based on the
|
|
8
9
|
* [list component's](https://developer.blackbaud.com/skyux/components/list/overview#list-properties)
|
|
@@ -22,4 +23,6 @@ export declare class SkyListFilterSummaryComponent implements AfterContentInit {
|
|
|
22
23
|
ngAfterContentInit(): void;
|
|
23
24
|
filterSummaryItemDismiss(index: number): void;
|
|
24
25
|
filterSummaryItemClick(item: ListFilterModel): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyListFilterSummaryComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyListFilterSummaryComponent, "sky-list-filter-summary", never, {}, { "summaryItemClick": "summaryItemClick"; }, never, never>;
|
|
25
28
|
}
|
|
@@ -1,2 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./list-filter-button.component";
|
|
3
|
+
import * as i2 from "./list-filter-summary.component";
|
|
4
|
+
import * as i3 from "./list-filter-inline-item.component";
|
|
5
|
+
import * as i4 from "./list-filter-inline.component";
|
|
6
|
+
import * as i5 from "./list-filter-inline-item-renderer.component";
|
|
7
|
+
import * as i6 from "@angular/common";
|
|
8
|
+
import * as i7 from "@skyux/lists";
|
|
1
9
|
export declare class SkyListFiltersModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyListFiltersModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyListFiltersModule, [typeof i1.SkyListFilterButtonComponent, typeof i2.SkyListFilterSummaryComponent, typeof i3.SkyListFilterInlineItemComponent, typeof i4.SkyListFilterInlineComponent, typeof i5.SkyListFilterInlineItemRendererComponent], [typeof i6.CommonModule, typeof i7.SkyFilterModule], [typeof i1.SkyListFilterButtonComponent, typeof i2.SkyListFilterSummaryComponent, typeof i3.SkyListFilterInlineItemComponent, typeof i4.SkyListFilterInlineComponent]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SkyListFiltersModule>;
|
|
2
13
|
}
|
|
@@ -3,6 +3,7 @@ import { Observable } from 'rxjs';
|
|
|
3
3
|
import { ListPagingComponent } from '../list/list-paging.component';
|
|
4
4
|
import { ListState } from '../list/state/list-state.state-node';
|
|
5
5
|
import { ListStateDispatcher } from '../list/state/list-state.rxstate';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
/**
|
|
7
8
|
* Displays a pagination control for a SKY UX-themed list of data.
|
|
8
9
|
*/
|
|
@@ -29,4 +30,6 @@ export declare class SkyListPagingComponent extends ListPagingComponent implemen
|
|
|
29
30
|
constructor(state: ListState, dispatcher: ListStateDispatcher);
|
|
30
31
|
ngOnInit(): void;
|
|
31
32
|
pageChange(currentPage: number): void;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyListPagingComponent, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyListPagingComponent, "sky-list-paging", never, { "pageSize": "pageSize"; "maxPages": "maxPages"; "pageNumber": "pageNumber"; }, {}, never, never>;
|
|
32
35
|
}
|
|
@@ -1,2 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./list-paging.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@skyux/lists";
|
|
1
5
|
export declare class SkyListPagingModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyListPagingModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyListPagingModule, [typeof i1.SkyListPagingComponent], [typeof i2.CommonModule, typeof i3.SkyPagingModule], [typeof i1.SkyListPagingComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SkyListPagingModule>;
|
|
2
9
|
}
|
|
@@ -2,6 +2,7 @@ import { OnInit, OnDestroy } from '@angular/core';
|
|
|
2
2
|
import { SkyCheckboxChange } from '@skyux/forms';
|
|
3
3
|
import { ListState } from '../list/state/list-state.state-node';
|
|
4
4
|
import { ListStateDispatcher } from '../list/state/list-state.rxstate';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
/**
|
|
6
7
|
* @internal
|
|
7
8
|
*/
|
|
@@ -22,4 +23,6 @@ export declare class SkyListMultiselectToolbarComponent implements OnInit, OnDes
|
|
|
22
23
|
private getShowSelectedFilter;
|
|
23
24
|
private showSelectedValuesEqual;
|
|
24
25
|
private selectedMapEqual;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyListMultiselectToolbarComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyListMultiselectToolbarComponent, "sky-list-multiselect-toolbar", never, { "showOnlySelected": "showOnlySelected"; }, {}, never, never>;
|
|
25
28
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AfterContentInit } from '@angular/core';
|
|
2
2
|
import { SkyListSecondaryActionsService } from './list-secondary-actions.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* Adds actions to the secondary actions dropdown in the list toolbar.
|
|
5
6
|
*/
|
|
@@ -8,4 +9,6 @@ export declare class SkyListSecondaryActionComponent implements AfterContentInit
|
|
|
8
9
|
private templateRef;
|
|
9
10
|
constructor(actionService: SkyListSecondaryActionsService);
|
|
10
11
|
ngAfterContentInit(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyListSecondaryActionComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyListSecondaryActionComponent, "sky-list-secondary-action", never, {}, {}, never, ["*"]>;
|
|
11
14
|
}
|
package/modules/list-toolbar/list-secondary-actions/list-secondary-actions-host.component.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { SkyListSecondaryActionsService } from './list-secondary-actions.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* @internal
|
|
5
6
|
*/
|
|
@@ -12,4 +13,6 @@ export declare class SkyListSecondaryActionsHostComponent implements OnInit, OnD
|
|
|
12
13
|
constructor(changeDetector: ChangeDetectorRef, actionService: SkyListSecondaryActionsService);
|
|
13
14
|
ngOnInit(): void;
|
|
14
15
|
ngOnDestroy(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyListSecondaryActionsHostComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyListSecondaryActionsHostComponent, "sky-list-secondary-actions-host", never, {}, {}, never, ["*"]>;
|
|
15
18
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AfterViewInit } from '@angular/core';
|
|
2
2
|
import { ListStateDispatcher } from '../../list/state/list-state.rxstate';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* Adds a dropdown to the list toolbar for secondary actions. If the dropdown does not
|
|
5
6
|
* include actions, the secondary actions dropdown is hidden.
|
|
@@ -11,4 +12,6 @@ export declare class SkyListSecondaryActionsComponent implements AfterViewInit {
|
|
|
11
12
|
private secondaryActionsItemToolbarIndex;
|
|
12
13
|
constructor(dispatcher: ListStateDispatcher);
|
|
13
14
|
ngAfterViewInit(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyListSecondaryActionsComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyListSecondaryActionsComponent, "sky-list-secondary-actions", never, {}, {}, never, ["*"]>;
|
|
14
17
|
}
|
|
@@ -1,2 +1,14 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./list-secondary-actions.component";
|
|
3
|
+
import * as i2 from "./list-secondary-actions-host.component";
|
|
4
|
+
import * as i3 from "./list-secondary-action.component";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "@skyux/popovers";
|
|
7
|
+
import * as i6 from "@skyux/i18n";
|
|
8
|
+
import * as i7 from "@skyux/indicators";
|
|
9
|
+
import * as i8 from "../../shared/sky-list-builder-resources.module";
|
|
1
10
|
export declare class SkyListSecondaryActionsModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyListSecondaryActionsModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyListSecondaryActionsModule, [typeof i1.SkyListSecondaryActionsComponent, typeof i2.SkyListSecondaryActionsHostComponent, typeof i3.SkyListSecondaryActionComponent], [typeof i4.CommonModule, typeof i5.SkyDropdownModule, typeof i6.SkyI18nModule, typeof i7.SkyIconModule, typeof i8.SkyListBuilderResourcesModule], [typeof i1.SkyListSecondaryActionsComponent, typeof i3.SkyListSecondaryActionComponent]>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SkyListSecondaryActionsModule>;
|
|
2
14
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OnDestroy } from '@angular/core';
|
|
2
2
|
import { BehaviorSubject } from 'rxjs';
|
|
3
3
|
import { SkyListSecondaryAction } from './list-secondary-action';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
/**
|
|
5
6
|
* @internal
|
|
6
7
|
*/
|
|
@@ -12,4 +13,6 @@ export declare class SkyListSecondaryActionsService implements OnDestroy {
|
|
|
12
13
|
addSecondaryAction(action: SkyListSecondaryAction): void;
|
|
13
14
|
removeSecondaryAction(action: any): void;
|
|
14
15
|
ngOnDestroy(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyListSecondaryActionsService, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SkyListSecondaryActionsService>;
|
|
15
18
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { TemplateRef, OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
/**
|
|
3
4
|
* @internal
|
|
4
5
|
*/
|
|
@@ -6,4 +7,6 @@ export declare class SkyListToolbarItemRendererComponent implements OnInit {
|
|
|
6
7
|
template: TemplateRef<any>;
|
|
7
8
|
private container;
|
|
8
9
|
ngOnInit(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyListToolbarItemRendererComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyListToolbarItemRendererComponent, "sky-list-toolbar-item-renderer", never, { "template": "template"; }, {}, never, never>;
|
|
9
12
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
/**
|
|
3
4
|
* Defines a toolbar item for the list toolbar.
|
|
4
5
|
*/
|
|
@@ -20,4 +21,6 @@ export declare class SkyListToolbarItemComponent {
|
|
|
20
21
|
location: string;
|
|
21
22
|
private templates;
|
|
22
23
|
get template(): TemplateRef<any>;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyListToolbarItemComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyListToolbarItemComponent, "sky-list-toolbar-item", never, { "id": "id"; "index": "index"; "location": "location"; }, {}, ["templates"], ["*"]>;
|
|
23
26
|
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
/**
|
|
2
3
|
* Displays custom actions in the toolbar beside to the search bar.
|
|
3
4
|
*/
|
|
4
5
|
export declare class SkyListToolbarSearchActionsComponent {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyListToolbarSearchActionsComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyListToolbarSearchActionsComponent, "sky-list-toolbar-search-actions", never, {}, {}, never, ["*"]>;
|
|
5
8
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
/**
|
|
2
3
|
* Adds a sort dropdown to the list toolbar.
|
|
3
4
|
*/
|
|
@@ -22,4 +23,6 @@ export declare class SkyListToolbarSortComponent {
|
|
|
22
23
|
* @default false
|
|
23
24
|
*/
|
|
24
25
|
descending: boolean;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyListToolbarSortComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyListToolbarSortComponent, "sky-list-toolbar-sort", never, { "label": "label"; "field": "field"; "type": "type"; "descending": "descending"; }, {}, never, never>;
|
|
25
28
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
/**
|
|
2
3
|
* Adds a section on the right side of the toolbar for items that substantially change
|
|
3
4
|
* or affect the view of the list. This includes simple filters and view switchers.
|
|
@@ -5,4 +6,6 @@
|
|
|
5
6
|
* and view switchers appear on the right.
|
|
6
7
|
*/
|
|
7
8
|
export declare class SkyListToolbarViewActionsComponent {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyListToolbarViewActionsComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyListToolbarViewActionsComponent, "sky-list-toolbar-view-actions", never, {}, {}, never, ["*"]>;
|
|
8
11
|
}
|
|
@@ -8,6 +8,7 @@ import { ListSortLabelModel } from '../list/state/sort/label.model';
|
|
|
8
8
|
import { ListFilterModel } from '../list-filters/filter.model';
|
|
9
9
|
import { ListToolbarState } from './state/toolbar-state.state-node';
|
|
10
10
|
import { ListToolbarStateDispatcher } from './state/toolbar-state.rxstate';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
11
12
|
/**
|
|
12
13
|
* Displays a toolbar for a SKY UX-themed list of data.
|
|
13
14
|
*/
|
|
@@ -105,4 +106,6 @@ export declare class SkyListToolbarComponent implements OnInit, AfterContentInit
|
|
|
105
106
|
private itemIsInView;
|
|
106
107
|
private getSortSelectors;
|
|
107
108
|
private watchTemplates;
|
|
109
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyListToolbarComponent, never>;
|
|
110
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkyListToolbarComponent, "sky-list-toolbar", never, { "inMemorySearchEnabled": "inMemorySearchEnabled"; "placeholder": "placeholder"; "searchEnabled": "searchEnabled"; "sortSelectorEnabled": "sortSelectorEnabled"; "toolbarType": "toolbarType"; "searchText": "searchText"; }, {}, ["toolbarItems", "toolbarSorts", "filterSummary", "inlineFilter", "viewActions"], ["*", "sky-list-toolbar-view-actions", "sky-list-filter-summary", "*", "sky-list-toolbar-view-actions", "sky-list-filter-inline", "sky-list-toolbar-search-actions"]>;
|
|
108
111
|
}
|
|
@@ -1,2 +1,22 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./list-toolbar.component";
|
|
3
|
+
import * as i2 from "./list-toolbar-item.component";
|
|
4
|
+
import * as i3 from "./list-toolbar-item-renderer.component";
|
|
5
|
+
import * as i4 from "./list-multiselect-toolbar.component";
|
|
6
|
+
import * as i5 from "./list-toolbar-search-actions.component";
|
|
7
|
+
import * as i6 from "./list-toolbar-sort.component";
|
|
8
|
+
import * as i7 from "./list-toolbar-view-actions.component";
|
|
9
|
+
import * as i8 from "@angular/common";
|
|
10
|
+
import * as i9 from "@skyux/forms";
|
|
11
|
+
import * as i10 from "@skyux/i18n";
|
|
12
|
+
import * as i11 from "@skyux/layout";
|
|
13
|
+
import * as i12 from "@skyux/lookup";
|
|
14
|
+
import * as i13 from "@skyux/lists";
|
|
15
|
+
import * as i14 from "../list-filters/list-filters.module";
|
|
16
|
+
import * as i15 from "@skyux/indicators";
|
|
17
|
+
import * as i16 from "../shared/sky-list-builder-resources.module";
|
|
1
18
|
export declare class SkyListToolbarModule {
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyListToolbarModule, never>;
|
|
20
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyListToolbarModule, [typeof i1.SkyListToolbarComponent, typeof i2.SkyListToolbarItemComponent, typeof i3.SkyListToolbarItemRendererComponent, typeof i4.SkyListMultiselectToolbarComponent, typeof i5.SkyListToolbarSearchActionsComponent, typeof i6.SkyListToolbarSortComponent, typeof i7.SkyListToolbarViewActionsComponent], [typeof i8.CommonModule, typeof i9.SkyCheckboxModule, typeof i10.SkyI18nModule, typeof i11.SkyToolbarModule, typeof i12.SkySearchModule, typeof i13.SkySortModule, typeof i13.SkyFilterModule, typeof i14.SkyListFiltersModule, typeof i15.SkyIconModule, typeof i16.SkyListBuilderResourcesModule], [typeof i1.SkyListToolbarComponent, typeof i2.SkyListToolbarItemComponent, typeof i5.SkyListToolbarSearchActionsComponent, typeof i6.SkyListToolbarSortComponent, typeof i7.SkyListToolbarViewActionsComponent]>;
|
|
21
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SkyListToolbarModule>;
|
|
2
22
|
}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { StateDispatcher, StateOrchestrator } from '@skyux/list-builder-common';
|
|
2
2
|
import { ListToolbarStateAction } from './toolbar-state-action.type';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
/**
|
|
4
5
|
* @internal
|
|
5
6
|
*/
|
|
6
7
|
export declare class ListToolbarStateDispatcher extends StateDispatcher<ListToolbarStateAction> {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ListToolbarStateDispatcher, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ListToolbarStateDispatcher>;
|
|
7
10
|
}
|
|
8
11
|
/**
|
|
9
12
|
* @internal
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { StateNode } from '@skyux/list-builder-common';
|
|
2
2
|
import { ListToolbarStateModel } from './toolbar-state.model';
|
|
3
3
|
import { ListToolbarStateDispatcher } from './toolbar-state.rxstate';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
/**
|
|
5
6
|
* @internal
|
|
6
7
|
*/
|
|
7
8
|
export declare class ListToolbarState extends StateNode<ListToolbarStateModel> {
|
|
8
9
|
constructor(initialState: ListToolbarStateModel, dispatcher: ListToolbarStateDispatcher);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ListToolbarState, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ListToolbarState>;
|
|
9
12
|
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { SkyAppLocaleInfo, SkyLibResourcesProvider } from '@skyux/i18n';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@skyux/i18n";
|
|
4
|
+
export declare class SkyListBuilderResourcesProvider implements SkyLibResourcesProvider {
|
|
5
|
+
getString(localeInfo: SkyAppLocaleInfo, name: string): string;
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* Import into any component library module that needs to use resource strings.
|
|
9
|
+
*/
|
|
10
|
+
export declare class SkyListBuilderResourcesModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkyListBuilderResourcesModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SkyListBuilderResourcesModule, never, never, [typeof i1.SkyI18nModule]>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SkyListBuilderResourcesModule>;
|
|
14
|
+
}
|
package/package.json
CHANGED
|
@@ -1,43 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/list-builder",
|
|
3
|
-
"version": "5.0.
|
|
4
|
-
"description": "SKY UX List Builder",
|
|
5
|
-
"keywords": [],
|
|
6
|
-
"author": "Blackbaud",
|
|
7
|
-
"license": "ISC",
|
|
8
|
-
"repository": {
|
|
9
|
-
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/blackbaud/skyux-list-builder.git"
|
|
11
|
-
},
|
|
12
|
-
"bugs": {
|
|
13
|
-
"url": "https://github.com/blackbaud/skyux-list-builder/issues"
|
|
14
|
-
},
|
|
15
|
-
"homepage": "https://github.com/blackbaud/skyux-list-builder#readme",
|
|
3
|
+
"version": "5.0.1",
|
|
16
4
|
"peerDependencies": {
|
|
17
|
-
"@angular/common": "^
|
|
18
|
-
"@angular/core": "^
|
|
19
|
-
"@angular/platform-browser": "^
|
|
20
|
-
"@skyux/core": "^5.
|
|
21
|
-
"@skyux/forms": "^5.0.
|
|
22
|
-
"@skyux/i18n": "^5.0.
|
|
23
|
-
"@skyux/indicators": "^5.0.
|
|
24
|
-
"@skyux/layout": "^5.0.0
|
|
25
|
-
"@skyux/list-builder-common": "^5.0.
|
|
26
|
-
"@skyux/lists": "^5.0.
|
|
27
|
-
"@skyux/lookup": "^5.0.
|
|
28
|
-
"@skyux/popovers": "^5.0.
|
|
5
|
+
"@angular/common": "^12.2.13",
|
|
6
|
+
"@angular/core": "^12.2.13",
|
|
7
|
+
"@angular/platform-browser": "^12.2.13",
|
|
8
|
+
"@skyux/core": "^5.1.1",
|
|
9
|
+
"@skyux/forms": "^5.0.1",
|
|
10
|
+
"@skyux/i18n": "^5.0.1",
|
|
11
|
+
"@skyux/indicators": "^5.0.2",
|
|
12
|
+
"@skyux/layout": "^5.0.0",
|
|
13
|
+
"@skyux/list-builder-common": "^5.0.1",
|
|
14
|
+
"@skyux/lists": "^5.0.3",
|
|
15
|
+
"@skyux/lookup": "^5.0.3",
|
|
16
|
+
"@skyux/popovers": "^5.0.1"
|
|
29
17
|
},
|
|
30
18
|
"dependencies": {
|
|
31
|
-
"tslib": "^
|
|
19
|
+
"tslib": "^2.3.1"
|
|
32
20
|
},
|
|
33
21
|
"main": "bundles/skyux-list-builder.umd.js",
|
|
34
|
-
"module": "
|
|
22
|
+
"module": "fesm2015/skyux-list-builder.js",
|
|
35
23
|
"es2015": "fesm2015/skyux-list-builder.js",
|
|
36
|
-
"esm5": "esm5/skyux-list-builder.js",
|
|
37
24
|
"esm2015": "esm2015/skyux-list-builder.js",
|
|
38
|
-
"fesm5": "fesm5/skyux-list-builder.js",
|
|
39
25
|
"fesm2015": "fesm2015/skyux-list-builder.js",
|
|
40
26
|
"typings": "skyux-list-builder.d.ts",
|
|
41
|
-
"metadata": "skyux-list-builder.metadata.json",
|
|
42
27
|
"sideEffects": false
|
|
43
|
-
}
|
|
28
|
+
}
|
|
@@ -61,3 +61,14 @@ export * from './modules/list/list-view.component';
|
|
|
61
61
|
export * from './modules/list/list.component';
|
|
62
62
|
export * from './modules/list-toolbar/list-secondary-actions/list-secondary-actions.component';
|
|
63
63
|
export * from './modules/list-toolbar/list-toolbar.component';
|
|
64
|
+
export { SkyListFilterButtonComponent as λ1 } from './modules/list-filters/list-filter-button.component';
|
|
65
|
+
export { SkyListFilterSummaryComponent as λ2 } from './modules/list-filters/list-filter-summary.component';
|
|
66
|
+
export { SkyListFilterInlineItemComponent as λ3 } from './modules/list-filters/list-filter-inline-item.component';
|
|
67
|
+
export { SkyListFilterInlineComponent as λ4 } from './modules/list-filters/list-filter-inline.component';
|
|
68
|
+
export { SkyListPagingComponent as λ5 } from './modules/list-paging/list-paging.component';
|
|
69
|
+
export { SkyListSecondaryActionComponent as λ6 } from './modules/list-toolbar/list-secondary-actions/list-secondary-action.component';
|
|
70
|
+
export { SkyListSecondaryActionsComponent as λ7 } from './modules/list-toolbar/list-secondary-actions/list-secondary-actions.component';
|
|
71
|
+
export { SkyListToolbarItemComponent as λ8 } from './modules/list-toolbar/list-toolbar-item.component';
|
|
72
|
+
export { SkyListToolbarSortComponent as λ9 } from './modules/list-toolbar/list-toolbar-sort.component';
|
|
73
|
+
export { SkyListToolbarViewActionsComponent as λ10 } from './modules/list-toolbar/list-toolbar-view-actions.component';
|
|
74
|
+
export { SkyListToolbarSearchActionsComponent as λ11 } from './modules/list-toolbar/list-toolbar-search-actions.component';
|
package/skyux-list-builder.d.ts
CHANGED
|
@@ -1,25 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Generated bundle index. Do not edit.
|
|
3
3
|
*/
|
|
4
|
-
|
|
5
|
-
export
|
|
6
|
-
export { SkyListFilterInlineItemRendererComponent as ɵe } from './modules/list-filters/list-filter-inline-item-renderer.component';
|
|
7
|
-
export { SkyListFilterInlineItemComponent as ɵc } from './modules/list-filters/list-filter-inline-item.component';
|
|
8
|
-
export { SkyListFilterInlineComponent as ɵd } from './modules/list-filters/list-filter-inline.component';
|
|
9
|
-
export { SkyListFilterSummaryComponent as ɵb } from './modules/list-filters/list-filter-summary.component';
|
|
10
|
-
export { SkyListPagingComponent as ɵf } from './modules/list-paging/list-paging.component';
|
|
11
|
-
export { SkyListMultiselectToolbarComponent as ɵt } from './modules/list-toolbar/list-multiselect-toolbar.component';
|
|
12
|
-
export { SkyListSecondaryActionComponent as ɵj } from './modules/list-toolbar/list-secondary-actions/list-secondary-action.component';
|
|
13
|
-
export { SkyListSecondaryActionsHostComponent as ɵi } from './modules/list-toolbar/list-secondary-actions/list-secondary-actions-host.component';
|
|
14
|
-
export { SkyListSecondaryActionsService as ɵh } from './modules/list-toolbar/list-secondary-actions/list-secondary-actions.service';
|
|
15
|
-
export { SkyListToolbarItemRendererComponent as ɵs } from './modules/list-toolbar/list-toolbar-item-renderer.component';
|
|
16
|
-
export { SkyListToolbarItemComponent as ɵp } from './modules/list-toolbar/list-toolbar-item.component';
|
|
17
|
-
export { SkyListToolbarSearchActionsComponent as ɵu } from './modules/list-toolbar/list-toolbar-search-actions.component';
|
|
18
|
-
export { SkyListToolbarSortComponent as ɵq } from './modules/list-toolbar/list-toolbar-sort.component';
|
|
19
|
-
export { SkyListToolbarViewActionsComponent as ɵr } from './modules/list-toolbar/list-toolbar-view-actions.component';
|
|
20
|
-
export { ListToolbarStateModel as ɵn } from './modules/list-toolbar/state/toolbar-state.model';
|
|
21
|
-
export { ListToolbarStateDispatcher as ɵo } from './modules/list-toolbar/state/toolbar-state.rxstate';
|
|
22
|
-
export { ListToolbarState as ɵm } from './modules/list-toolbar/state/toolbar-state.state-node';
|
|
23
|
-
export { ListPagingComponent as ɵg } from './modules/list/list-paging.component';
|
|
24
|
-
export { SkyListBuilderResourcesModule as ɵk } from './modules/shared/list-builder-resources.module';
|
|
25
|
-
export { SkyListBuilderResourcesProvider as ɵl } from './plugin-resources/list-builder-resources-provider';
|
|
4
|
+
/// <amd-module name="@skyux/list-builder" />
|
|
5
|
+
export * from './public-api';
|