@firestitch/list 12.18.4 → 12.18.6
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/components/body/row/actions/actions.component.d.ts +3 -3
- package/app/components/body/row/inline-action/inline-action.component.d.ts +0 -3
- package/app/components/body/row/menu-action/menu-action.component.d.ts +1 -1
- package/app/components/pagination/pagination.component.d.ts +3 -3
- package/app/components/saved-filters/saved-filters.component.d.ts +1 -1
- package/app/models/row-action.model.d.ts +1 -1
- package/bundles/firestitch-list.umd.js +88 -99
- package/bundles/firestitch-list.umd.js.map +1 -1
- package/esm2015/app/classes/list-controller.js +1 -2
- package/esm2015/app/components/body/row/actions/actions.component.js +11 -11
- package/esm2015/app/components/body/row/inline-action/inline-action.component.js +10 -13
- package/esm2015/app/components/body/row/menu-action/menu-action.component.js +1 -1
- package/esm2015/app/components/customize-cols/customize-cols.component.js +3 -3
- package/esm2015/app/components/head/head-cell/head-cell.component.js +1 -1
- package/esm2015/app/components/loader/loader.component.js +3 -5
- package/esm2015/app/components/manage-saved-filters/manage-saved-filters.component.js +9 -8
- package/esm2015/app/components/pagination/pagination.component.js +7 -9
- package/esm2015/app/components/saved-filters/saved-filters.component.js +3 -4
- package/esm2015/app/components/status/status.component.js +4 -4
- package/esm2015/app/directives/content/content.directive.js +1 -1
- package/esm2015/app/directives/draggable-row/draggable-row.directive.js +2 -2
- package/esm2015/app/models/row-action.model.js +4 -9
- package/fesm2015/firestitch-list.js +63 -74
- package/fesm2015/firestitch-list.js.map +1 -1
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ import { Row } from '../../../../models/row';
|
|
|
4
4
|
import { RowAction } from '../../../../models/row-action.model';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class FsRowActionsComponent {
|
|
7
|
-
private
|
|
7
|
+
private _prompt;
|
|
8
8
|
row: Row;
|
|
9
9
|
index: number;
|
|
10
10
|
restoreMode: boolean;
|
|
@@ -14,7 +14,7 @@ export declare class FsRowActionsComponent {
|
|
|
14
14
|
inlineRowActions: RowAction[];
|
|
15
15
|
restoreAction: RowAction;
|
|
16
16
|
private _destroy$;
|
|
17
|
-
constructor(
|
|
17
|
+
constructor(_prompt: FsPrompt);
|
|
18
18
|
actionClick(action: RowAction, row: any, event: any, menuRef?: any): void;
|
|
19
19
|
/**
|
|
20
20
|
* Track By for improve change detection
|
|
@@ -30,7 +30,7 @@ export declare class FsRowActionsComponent {
|
|
|
30
30
|
* @param event
|
|
31
31
|
* @param index
|
|
32
32
|
*/
|
|
33
|
-
private
|
|
33
|
+
private _removeAction;
|
|
34
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<FsRowActionsComponent, never>;
|
|
35
35
|
static ɵcmp: i0.ɵɵComponentDeclaration<FsRowActionsComponent, "fs-list-row-actions", never, { "row": "row"; "index": "index"; "restoreMode": "restoreMode"; "rowActions": "rowActions"; "rowRemoved": "rowRemoved"; "menuRowActions": "menuRowActions"; "inlineRowActions": "inlineRowActions"; "restoreAction": "restoreAction"; }, {}, never, never>;
|
|
36
36
|
}
|
|
@@ -1,14 +1,11 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { FsPrompt } from '@firestitch/prompt';
|
|
3
2
|
import { FsFile } from '@firestitch/file';
|
|
4
3
|
import { RowAction } from '../../../../models/row-action.model';
|
|
5
4
|
import * as i0 from "@angular/core";
|
|
6
5
|
export declare class FsRowInlineActionComponent {
|
|
7
|
-
private _fsPrompt;
|
|
8
6
|
action: RowAction;
|
|
9
7
|
clicked: EventEmitter<any>;
|
|
10
8
|
fileSelect: EventEmitter<FsFile | FsFile[]>;
|
|
11
|
-
constructor(_fsPrompt: FsPrompt);
|
|
12
9
|
actionClick(event: any): void;
|
|
13
10
|
fileSelected(event: any): void;
|
|
14
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<FsRowInlineActionComponent, never>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { FsMenuComponent } from '@firestitch/menu';
|
|
3
|
-
import { Row } from '../../../../models/row';
|
|
4
3
|
import { FsListRowActionFile } from '../../../../interfaces/listconfig.interface';
|
|
4
|
+
import { Row } from '../../../../models/row';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class FsRowMenuActionComponent {
|
|
7
7
|
private _menu;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { ChangeDetectorRef,
|
|
1
|
+
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { PaginationController } from '../../classes/pagination-controller';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class FsPaginationComponent implements OnInit, OnDestroy {
|
|
5
|
-
private
|
|
5
|
+
private _cdRef;
|
|
6
6
|
pagination: PaginationController;
|
|
7
7
|
rows: any;
|
|
8
8
|
private _destroy$;
|
|
9
|
-
constructor(
|
|
9
|
+
constructor(_cdRef: ChangeDetectorRef);
|
|
10
10
|
ngOnInit(): void;
|
|
11
11
|
ngOnDestroy(): void;
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<FsPaginationComponent, never>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { MatDialog } from '@angular/material/dialog';
|
|
2
3
|
import { ExternalParamsController } from '@firestitch/filter';
|
|
3
4
|
import { Observable } from 'rxjs';
|
|
4
|
-
import { MatDialog } from '@angular/material/dialog';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class FsListSavedFiltersComponent {
|
|
7
7
|
private _dialog;
|