@firestitch/list 12.18.6 → 12.19.0
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/app/classes/external-params-controller.d.ts +1 -1
- package/app/classes/sorting-controller.d.ts +6 -5
- package/app/interfaces/index.d.ts +1 -0
- package/app/interfaces/sorting-change-event.interface.d.ts +4 -0
- package/bundles/firestitch-list.umd.js +15 -10
- package/bundles/firestitch-list.umd.js.map +1 -1
- package/esm2015/app/classes/data-controller.js +2 -2
- package/esm2015/app/classes/external-params-controller.js +7 -5
- package/esm2015/app/classes/sorting-controller.js +12 -9
- package/esm2015/app/interfaces/index.js +2 -1
- package/esm2015/app/interfaces/sorting-change-event.interface.js +2 -0
- package/esm2015/public_api.js +20 -20
- package/fesm2015/firestitch-list.js +17 -12
- package/fesm2015/firestitch-list.js.map +1 -1
- package/package.json +1 -1
- package/public_api.d.ts +21 -20
package/package.json
CHANGED
package/public_api.d.ts
CHANGED
|
@@ -1,38 +1,39 @@
|
|
|
1
1
|
export { FsListModule } from './app/fs-list.module';
|
|
2
2
|
export { FS_LIST_CONFIG, FS_LIST_DEFAULT_CONFIG } from './app/fs-list.providers';
|
|
3
|
-
export { FsListComponent } from './app/components/list/list.component';
|
|
4
3
|
export { FsBodyComponent } from './app/components/body/body.component';
|
|
5
|
-
export { FsRowComponent } from './app/components/body/row/row.component';
|
|
6
4
|
export { FsCellComponent } from './app/components/body/row/cell/cell.component';
|
|
7
|
-
export {
|
|
8
|
-
export {
|
|
9
|
-
export { FsFooterComponent } from './app/components/footer/footer.component';
|
|
5
|
+
export { FsRowComponent } from './app/components/body/row/row.component';
|
|
6
|
+
export { FsFooterCellComponent, } from './app/components/footer/footer-row/footer-cell/footer-cell.component';
|
|
10
7
|
export { FsFooterRowComponent } from './app/components/footer/footer-row/footer-row.component';
|
|
11
|
-
export {
|
|
12
|
-
export {
|
|
13
|
-
export {
|
|
8
|
+
export { FsFooterComponent } from './app/components/footer/footer.component';
|
|
9
|
+
export { FsHeadCellComponent } from './app/components/head/head-cell/head-cell.component';
|
|
10
|
+
export { FsHeadComponent } from './app/components/head/head.component';
|
|
11
|
+
export { FsListComponent } from './app/components/list/list.component';
|
|
14
12
|
export { FsListLoaderComponent } from './app/components/loader/loader.component';
|
|
15
|
-
export {
|
|
16
|
-
export {
|
|
13
|
+
export { FsPaginationComponent } from './app/components/pagination/pagination.component';
|
|
14
|
+
export { FsStatusComponent } from './app/components/status/status.component';
|
|
15
|
+
export { FsListHeadingContainerDirective, FsListHeadingDirective, FsListSubheadingDirective } from './app/directives';
|
|
17
16
|
export { FsListCellDirective } from './app/directives/cell/cell.directive';
|
|
18
|
-
export {
|
|
19
|
-
export { FsListEmptyStateDirective } from './app/directives/empty-state/empty-state.directive';
|
|
17
|
+
export { FsListColumnDirective } from './app/directives/column/column.directive';
|
|
20
18
|
export { FsListContentDirective } from './app/directives/content/content.directive';
|
|
21
|
-
export {
|
|
22
|
-
export {
|
|
19
|
+
export { FsListEmptyStateDirective } from './app/directives/empty-state/empty-state.directive';
|
|
20
|
+
export { FsListFooterDirective } from './app/directives/footer/footer.directive';
|
|
23
21
|
export { FsListGroupExpandTriggerDirective } from './app/directives/group-expand-trigger/group-expand-trigger.directive';
|
|
24
|
-
export {
|
|
25
|
-
export {
|
|
22
|
+
export { FsListGroupFooterDirective } from './app/directives/group-footer/group-footer.directive';
|
|
23
|
+
export { FsListGroupHeaderDirective } from './app/directives/group-header/group-header.directive';
|
|
24
|
+
export { FsListHeaderDirective } from './app/directives/header/header.directive';
|
|
26
25
|
export { List } from './app/classes/list-controller';
|
|
27
26
|
export { PaginationController } from './app/classes/pagination-controller';
|
|
28
|
-
export {
|
|
27
|
+
export { ReorderController, ReorderPosition } from './app/classes/reorder-controller';
|
|
28
|
+
export { SelectionChangeType, SelectionController } from './app/classes/selection-controller';
|
|
29
|
+
export { SortingController } from './app/classes/sorting-controller';
|
|
30
|
+
export { Column, SortingDirection } from './app/models/column.model';
|
|
29
31
|
export { RowAction } from './app/models/row-action.model';
|
|
30
|
-
export { SelectionController, SelectionChangeType } from './app/classes/selection-controller';
|
|
31
|
-
export { SortingController, SortingChangeEvent } from './app/classes/sorting-controller';
|
|
32
32
|
export { StyleConfig } from './app/models/styleConfig.model';
|
|
33
33
|
export { CellConfig } from './app/interfaces/cellconfig.interface';
|
|
34
|
-
export { FsListAbstractRow,
|
|
34
|
+
export { FsListAbstractRow, FsListAction, FsListActionSelected, FsListCellConfig, FsListColumn, FsListColumnChangeFn, FsListColumnConfig, FsListColumnLoadFn, FsListConfig, FsListEmptyStateConfig, FsListFetchFn, FsListFetchOptions, FsListFetchSubscription, FsListFooterConfig, FsListGroupConfig, FsListHeaderConfig, FsListNoResultsConfig, FsListReorderConfig, FsListReorderData, FsListReorderDoneCallback, FsListReorderMoveInGroupCallback, FsListReorderMovedCallback, FsListRestoreConfig, FsListRowAction, FsListRowActionFile, FsListRowActionFileFn, FsListRowActionGroup, FsListRowActionLink, FsListRowActionLinkFn, FsListRowClassOptions, FsListScrollableConfig, FsListSelectionConfig, FsListSortsConfig, FsListStateValidationFn, FsListTrackByFn, FsListTrackByTargetRowFn, FsPaging, } from './app/interfaces/listconfig.interface';
|
|
35
35
|
export { QueryOffsetStrategy, QueryPageStrategy } from './app/interfaces/pagination.interface';
|
|
36
|
+
export { SortingChangeEvent } from './app/interfaces/sorting-change-event.interface';
|
|
36
37
|
export { ActionType } from './app/enums/button-type.enum';
|
|
37
38
|
export { PaginationStrategy } from './app/enums/pagination-strategy.enum';
|
|
38
39
|
export { RowType } from './app/enums/row-type.enum';
|