@firestitch/list 18.0.46 → 18.0.47
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/list-controller.d.ts +2 -2
- package/app/components/body/row/actions/actions.component.d.ts +1 -3
- package/app/components/body/row/menu-action/menu-action.component.d.ts +0 -2
- package/app/components/body/row/row.component.d.ts +11 -12
- package/app/components/footer/footer-row/footer-row.component.d.ts +0 -2
- package/app/components/head/head-cell/head-cell.component.d.ts +2 -2
- package/app/components/head/head.component.d.ts +1 -2
- package/app/components/list/list.component.d.ts +2 -8
- package/app/directives/draggable-list/draggable-list.directive.d.ts +0 -3
- package/app/directives/draggable-row/draggable-row.directive.d.ts +1 -4
- package/app/directives/group-expand-trigger/group-expand-trigger.directive.d.ts +0 -2
- package/app/fs-list.module.d.ts +1 -1
- package/app/interfaces/listconfig.interface.d.ts +5 -4
- package/app/models/row-action.model.d.ts +2 -5
- package/esm2022/app/classes/list-controller.mjs +3 -4
- package/esm2022/app/components/body/body.component.mjs +4 -6
- package/esm2022/app/components/body/row/actions/actions.component.mjs +16 -22
- package/esm2022/app/components/body/row/menu-action/menu-action.component.mjs +9 -15
- package/esm2022/app/components/body/row/row.component.mjs +49 -54
- package/esm2022/app/components/customize-cols/customize-cols.component.mjs +5 -6
- package/esm2022/app/components/footer/footer-row/footer-row.component.mjs +7 -12
- package/esm2022/app/components/head/head-cell/head-cell.component.mjs +11 -16
- package/esm2022/app/components/head/head.component.mjs +9 -14
- package/esm2022/app/components/list/list.component.mjs +16 -39
- package/esm2022/app/components/loader/loader.component.mjs +3 -4
- package/esm2022/app/components/pagination/pagination.component.mjs +5 -6
- package/esm2022/app/directives/draggable-list/draggable-list.directive.mjs +9 -17
- package/esm2022/app/directives/draggable-row/draggable-row.directive.mjs +8 -16
- package/esm2022/app/directives/group-expand-trigger/group-expand-trigger.directive.mjs +5 -9
- package/esm2022/app/fs-list.module.mjs +4 -2
- package/esm2022/app/interfaces/listconfig.interface.mjs +1 -1
- package/esm2022/app/models/row-action.model.mjs +1 -1
- package/esm2022/public_api.mjs +2 -1
- package/fesm2022/firestitch-list.mjs +435 -499
- package/fesm2022/firestitch-list.mjs.map +1 -1
- package/package.json +1 -1
- package/public_api.d.ts +2 -1
package/package.json
CHANGED
package/public_api.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export { FsListHeadingDirective } from './app/directives';
|
|
|
16
16
|
export { FsListCellDirective } from './app/directives/cell/cell.directive';
|
|
17
17
|
export { FsListColumnDirective } from './app/directives/column/column.directive';
|
|
18
18
|
export { FsListContentDirective } from './app/directives/content/content.directive';
|
|
19
|
+
export { FsListDraggableListDirective } from './app/directives/draggable-list/draggable-list.directive';
|
|
19
20
|
export { FsListEmptyStateDirective } from './app/directives/empty-state/empty-state.directive';
|
|
20
21
|
export { FsListFooterDirective } from './app/directives/footer/footer.directive';
|
|
21
22
|
export { FsListGroupExpandTriggerDirective } from './app/directives/group-expand-trigger/group-expand-trigger.directive';
|
|
@@ -31,7 +32,7 @@ export { Column, SortingDirection } from './app/models/column.model';
|
|
|
31
32
|
export { RowAction } from './app/models/row-action.model';
|
|
32
33
|
export { StyleConfig } from './app/models/styleConfig.model';
|
|
33
34
|
export { CellConfig } from './app/interfaces/cellconfig.interface';
|
|
34
|
-
export { FsListAbstractRow, FsListAction, FsListActionSelected, FsListCellConfig, FsListColumn, FsListColumnChangeFn, FsListColumnConfig, FsListColumnLoadFn, FsListConfig, FsListEmptyStateConfig, FsListFetchFn, FsListFetchOptions, FsListFetchSubscription, FsListFooterConfig, FsListGroupConfig, FsListHeaderConfig, FsListNoResultsConfig, FsListReorderConfig, FsListReorderData, FsListReorderDoneCallback,
|
|
35
|
+
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, FsListSelectionConfig, FsListSortsConfig, FsListStateValidationFn, FsListTrackByFn, FsListTrackByTargetRowFn, FsPaging, } from './app/interfaces/listconfig.interface';
|
|
35
36
|
export { IPaginationState } from './app/interfaces/pagination-state.interface';
|
|
36
37
|
export { QueryOffsetStrategy, QueryPageStrategy } from './app/interfaces/pagination.interface';
|
|
37
38
|
export { SortingChangeEvent } from './app/interfaces/sorting-change-event.interface';
|