@firestitch/list 18.0.41 → 18.0.43

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.
Files changed (33) hide show
  1. package/app/components/list/list.component.d.ts +1 -3
  2. package/app/directives/index.d.ts +0 -2
  3. package/app/fs-list.module.d.ts +4 -6
  4. package/esm2022/app/classes/index.mjs +1 -1
  5. package/esm2022/app/classes/list-controller.mjs +2 -1
  6. package/esm2022/app/components/body/row/cell/cell.component.mjs +3 -3
  7. package/esm2022/app/components/footer/footer-row/footer-cell/footer-cell.component.mjs +3 -3
  8. package/esm2022/app/components/head/head-cell/head-cell.component.mjs +1 -1
  9. package/esm2022/app/components/list/list.component.mjs +7 -14
  10. package/esm2022/app/components/loader/loader.component.mjs +3 -3
  11. package/esm2022/app/directives/empty-state/empty-state.directive.mjs +1 -1
  12. package/esm2022/app/directives/footer/footer.directive.mjs +1 -1
  13. package/esm2022/app/directives/group-expand-trigger/group-expand-trigger.directive.mjs +1 -1
  14. package/esm2022/app/directives/header/header.directive.mjs +2 -2
  15. package/esm2022/app/directives/heading/heading.directive.mjs +2 -2
  16. package/esm2022/app/directives/index.mjs +1 -3
  17. package/esm2022/app/enums/page-change-type.enum.mjs +1 -1
  18. package/esm2022/app/enums/pagination-strategy.enum.mjs +1 -1
  19. package/esm2022/app/enums/state.enum.mjs +1 -1
  20. package/esm2022/app/fs-list.module.mjs +3 -11
  21. package/esm2022/app/interfaces/cellconfig.interface.mjs +1 -1
  22. package/esm2022/app/interfaces/draggable-list.interface.mjs +1 -1
  23. package/esm2022/app/interfaces/external-params.interface.mjs +1 -1
  24. package/esm2022/app/interfaces/sorting-change-event.interface.mjs +1 -1
  25. package/esm2022/public_api.mjs +2 -2
  26. package/fesm2022/firestitch-list.mjs +15 -53
  27. package/fesm2022/firestitch-list.mjs.map +1 -1
  28. package/package.json +1 -1
  29. package/public_api.d.ts +2 -2
  30. package/app/directives/heading-container/heading-container.directive.d.ts +0 -5
  31. package/app/directives/subheading/subheading.directive.d.ts +0 -5
  32. package/esm2022/app/directives/heading-container/heading-container.directive.mjs +0 -14
  33. package/esm2022/app/directives/subheading/subheading.directive.mjs +0 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firestitch/list",
3
- "version": "18.0.41",
3
+ "version": "18.0.43",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/Firestitch/ngx-list"
package/public_api.d.ts CHANGED
@@ -12,7 +12,7 @@ export { FsListComponent } from './app/components/list/list.component';
12
12
  export { FsListLoaderComponent } from './app/components/loader/loader.component';
13
13
  export { FsPaginationComponent } from './app/components/pagination/pagination.component';
14
14
  export { FsStatusComponent } from './app/components/status/status.component';
15
- export { FsListHeadingContainerDirective, FsListHeadingDirective, FsListSubheadingDirective } from './app/directives';
15
+ 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';
@@ -31,7 +31,7 @@ export { Column, SortingDirection } from './app/models/column.model';
31
31
  export { RowAction } from './app/models/row-action.model';
32
32
  export { StyleConfig } from './app/models/styleConfig.model';
33
33
  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, FsListReorderMoveInGroupCallback, FsListReorderMovedCallback, FsListRestoreConfig, FsListRowAction, FsListRowActionFile, FsListRowActionFileFn, FsListRowActionGroup, FsListRowActionLink, FsListRowActionLinkFn, FsListRowClassOptions, FsListSelectionConfig, FsListSortsConfig, FsListStateValidationFn, FsListTrackByFn, FsListTrackByTargetRowFn, FsPaging, } from './app/interfaces/listconfig.interface';
34
+ export { FsListAbstractRow, FsListAction, FsListActionSelected, FsListCellConfig, FsListColumn, FsListColumnChangeFn, FsListColumnConfig, FsListColumnLoadFn, FsListConfig, FsListEmptyStateConfig, FsListFetchFn, FsListFetchOptions, FsListFetchSubscription, FsListFooterConfig, FsListGroupConfig, FsListHeaderConfig, FsListNoResultsConfig, FsListReorderConfig, FsListReorderData, FsListReorderDoneCallback, FsListReorderMovedCallback, FsListReorderMoveInGroupCallback, FsListRestoreConfig, FsListRowAction, FsListRowActionFile, FsListRowActionFileFn, FsListRowActionGroup, FsListRowActionLink, FsListRowActionLinkFn, FsListRowClassOptions, FsListSelectionConfig, FsListSortsConfig, FsListStateValidationFn, FsListTrackByFn, FsListTrackByTargetRowFn, FsPaging, } from './app/interfaces/listconfig.interface';
35
35
  export { IPaginationState } from './app/interfaces/pagination-state.interface';
36
36
  export { QueryOffsetStrategy, QueryPageStrategy } from './app/interfaces/pagination.interface';
37
37
  export { SortingChangeEvent } from './app/interfaces/sorting-change-event.interface';
@@ -1,5 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class FsListHeadingContainerDirective {
3
- static ɵfac: i0.ɵɵFactoryDeclaration<FsListHeadingContainerDirective, never>;
4
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsListHeadingContainerDirective, "[fs-list-heading-container],[fsListHeadingContainer]", never, {}, {}, never, never, true, never>;
5
- }
@@ -1,5 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class FsListSubheadingDirective {
3
- static ɵfac: i0.ɵɵFactoryDeclaration<FsListSubheadingDirective, never>;
4
- static ɵdir: i0.ɵɵDirectiveDeclaration<FsListSubheadingDirective, "[fs-list-subheading],[fsListSubheading]", never, {}, {}, never, never, true, never>;
5
- }
@@ -1,14 +0,0 @@
1
- import { Directive } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class FsListHeadingContainerDirective {
4
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: FsListHeadingContainerDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
5
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.7", type: FsListHeadingContainerDirective, isStandalone: true, selector: "[fs-list-heading-container],[fsListHeadingContainer]", ngImport: i0 });
6
- }
7
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: FsListHeadingContainerDirective, decorators: [{
8
- type: Directive,
9
- args: [{
10
- selector: '[fs-list-heading-container],[fsListHeadingContainer]',
11
- standalone: true,
12
- }]
13
- }] });
14
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaGVhZGluZy1jb250YWluZXIuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2FwcC9kaXJlY3RpdmVzL2hlYWRpbmctY29udGFpbmVyL2hlYWRpbmctY29udGFpbmVyLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQU0xQyxNQUFNLE9BQU8sK0JBQStCO3VHQUEvQiwrQkFBK0I7MkZBQS9CLCtCQUErQjs7MkZBQS9CLCtCQUErQjtrQkFKM0MsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUsc0RBQXNEO29CQUNoRSxVQUFVLEVBQUUsSUFBSTtpQkFDbkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQERpcmVjdGl2ZSh7XG4gICAgc2VsZWN0b3I6ICdbZnMtbGlzdC1oZWFkaW5nLWNvbnRhaW5lcl0sW2ZzTGlzdEhlYWRpbmdDb250YWluZXJdJyxcbiAgICBzdGFuZGFsb25lOiB0cnVlLFxufSlcbmV4cG9ydCBjbGFzcyBGc0xpc3RIZWFkaW5nQ29udGFpbmVyRGlyZWN0aXZlIHtcbn1cbiJdfQ==
@@ -1,14 +0,0 @@
1
- import { Directive } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class FsListSubheadingDirective {
4
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: FsListSubheadingDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
5
- static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.7", type: FsListSubheadingDirective, isStandalone: true, selector: "[fs-list-subheading],[fsListSubheading]", ngImport: i0 });
6
- }
7
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: FsListSubheadingDirective, decorators: [{
8
- type: Directive,
9
- args: [{
10
- selector: '[fs-list-subheading],[fsListSubheading]',
11
- standalone: true,
12
- }]
13
- }] });
14
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3ViaGVhZGluZy5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvYXBwL2RpcmVjdGl2ZXMvc3ViaGVhZGluZy9zdWJoZWFkaW5nLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQU0xQyxNQUFNLE9BQU8seUJBQXlCO3VHQUF6Qix5QkFBeUI7MkZBQXpCLHlCQUF5Qjs7MkZBQXpCLHlCQUF5QjtrQkFKckMsU0FBUzttQkFBQztvQkFDUCxRQUFRLEVBQUUseUNBQXlDO29CQUNuRCxVQUFVLEVBQUUsSUFBSTtpQkFDbkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQERpcmVjdGl2ZSh7XG4gICAgc2VsZWN0b3I6ICdbZnMtbGlzdC1zdWJoZWFkaW5nXSxbZnNMaXN0U3ViaGVhZGluZ10nLFxuICAgIHN0YW5kYWxvbmU6IHRydWUsXG59KVxuZXhwb3J0IGNsYXNzIEZzTGlzdFN1YmhlYWRpbmdEaXJlY3RpdmUge1xufVxuIl19