@firestitch/list 12.1.5 → 12.3.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/data-controller.d.ts +1 -0
- package/app/classes/list-controller.d.ts +4 -7
- package/app/components/body/row/row.component.d.ts +3 -0
- package/app/directives/column/column.directive.d.ts +5 -3
- package/app/directives/group-footer/group-footer.directive.d.ts +6 -0
- package/app/directives/group-header/group-header.directive.d.ts +6 -0
- package/app/enums/row-type.enum.d.ts +2 -1
- package/app/fs-list.module.d.ts +26 -25
- package/app/interfaces/column-config.interface.d.ts +1 -1
- package/app/interfaces/listconfig.interface.d.ts +2 -1
- package/app/models/column.model.d.ts +6 -3
- package/app/models/row/group-footer-row.d.ts +10 -0
- package/app/models/row/group-row.d.ts +2 -1
- package/app/models/row-action.model.d.ts +2 -3
- package/app/models/row.d.ts +3 -1
- package/app/models/styleConfig.model.d.ts +2 -2
- package/bundles/firestitch-list.umd.js +252 -232
- package/bundles/firestitch-list.umd.js.map +1 -1
- package/esm2015/app/classes/columns-controller.js +3 -2
- package/esm2015/app/classes/data-controller.js +18 -2
- package/esm2015/app/classes/list-controller.js +21 -84
- package/esm2015/app/components/body/row/cell/cell.component.js +8 -4
- package/esm2015/app/components/body/row/row.component.js +11 -2
- package/esm2015/app/directives/column/column.directive.js +14 -7
- package/esm2015/app/directives/group-footer/group-footer.directive.js +14 -0
- package/esm2015/app/directives/group-header/group-header.directive.js +14 -0
- package/esm2015/app/enums/row-type.enum.js +3 -2
- package/esm2015/app/fs-list.module.js +11 -6
- package/esm2015/app/interfaces/column-config.interface.js +1 -1
- package/esm2015/app/interfaces/listconfig.interface.js +1 -1
- package/esm2015/app/models/column.model.js +15 -8
- package/esm2015/app/models/row/group-footer-row.js +21 -0
- package/esm2015/app/models/row/group-row.js +1 -1
- package/esm2015/app/models/row-action.model.js +13 -46
- package/esm2015/app/models/row.js +5 -1
- package/esm2015/app/models/styleConfig.model.js +8 -18
- package/esm2015/public_api.js +3 -2
- package/fesm2015/firestitch-list.js +148 -170
- package/fesm2015/firestitch-list.js.map +1 -1
- package/package.json +5 -5
- package/public_api.d.ts +2 -1
- package/app/directives/group-cell/group-cell.directive.d.ts +0 -6
- package/esm2015/app/directives/group-cell/group-cell.directive.js +0 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firestitch/list",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.3.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/Firestitch/ngx-list"
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
"url": "https://github.com/Firestitch/ngx-list/issues"
|
|
18
18
|
},
|
|
19
19
|
"peerDependencies": {
|
|
20
|
-
"@firestitch/filter": ">=
|
|
21
|
-
"@firestitch/menu": ">=
|
|
22
|
-
"@firestitch/prompt": ">=
|
|
23
|
-
"@firestitch/scroll": ">=
|
|
20
|
+
"@firestitch/filter": ">=12.2.0",
|
|
21
|
+
"@firestitch/menu": ">=12.0.1",
|
|
22
|
+
"@firestitch/prompt": ">=12.0.1",
|
|
23
|
+
"@firestitch/scroll": ">=12.0.0",
|
|
24
24
|
"lodash-es": ">=4.17.15"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
package/public_api.d.ts
CHANGED
|
@@ -18,7 +18,8 @@ export { FsListCellDirective } from './app/directives/cell/cell.directive';
|
|
|
18
18
|
export { FsListHeaderDirective } from './app/directives/header/header.directive';
|
|
19
19
|
export { FsListEmptyStateDirective } from './app/directives/empty-state/empty-state.directive';
|
|
20
20
|
export { FsListContentDirective } from './app/directives/content/content.directive';
|
|
21
|
-
export {
|
|
21
|
+
export { FsListGroupHeaderDirective } from './app/directives/group-header/group-header.directive';
|
|
22
|
+
export { FsListGroupFooterDirective } from './app/directives/group-footer/group-footer.directive';
|
|
22
23
|
export { FsListGroupExpandTriggerDirective } from './app/directives/group-expand-trigger/group-expand-trigger.directive';
|
|
23
24
|
export { Column, SortingDirection } from './app/models/column.model';
|
|
24
25
|
export { List } from './app/classes/list-controller';
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { FsListCellDirective } from '../cell/cell.directive';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class FsListGroupCellDirective extends FsListCellDirective {
|
|
4
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FsListGroupCellDirective, never>;
|
|
5
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FsListGroupCellDirective, "[fs-list-group-cell]", never, {}, {}, never>;
|
|
6
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Directive } from '@angular/core';
|
|
2
|
-
import { FsListCellDirective } from '../cell/cell.directive';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export class FsListGroupCellDirective extends FsListCellDirective {
|
|
5
|
-
}
|
|
6
|
-
FsListGroupCellDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FsListGroupCellDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
7
|
-
FsListGroupCellDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.16", type: FsListGroupCellDirective, selector: "[fs-list-group-cell]", usesInheritance: true, ngImport: i0 });
|
|
8
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FsListGroupCellDirective, decorators: [{
|
|
9
|
-
type: Directive,
|
|
10
|
-
args: [{
|
|
11
|
-
selector: '[fs-list-group-cell]'
|
|
12
|
-
}]
|
|
13
|
-
}] });
|
|
14
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ3JvdXAtY2VsbC5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvYXBwL2RpcmVjdGl2ZXMvZ3JvdXAtY2VsbC9ncm91cC1jZWxsLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzFDLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLHdCQUF3QixDQUFDOztBQU83RCxNQUFNLE9BQU8sd0JBQXlCLFNBQVEsbUJBQW1COztzSEFBcEQsd0JBQXdCOzBHQUF4Qix3QkFBd0I7NEZBQXhCLHdCQUF3QjtrQkFIcEMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsc0JBQXNCO2lCQUNqQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRnNMaXN0Q2VsbERpcmVjdGl2ZSB9IGZyb20gJy4uL2NlbGwvY2VsbC5kaXJlY3RpdmUnO1xuXG5cblxuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiAnW2ZzLWxpc3QtZ3JvdXAtY2VsbF0nXG59KVxuZXhwb3J0IGNsYXNzIEZzTGlzdEdyb3VwQ2VsbERpcmVjdGl2ZSBleHRlbmRzIEZzTGlzdENlbGxEaXJlY3RpdmUge31cbiJdfQ==
|