@paperless/angular 1.17.1 → 1.17.3
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/esm2020/lib/modules/table/components/table/table.component.mjs +16 -7
- package/fesm2015/paperless-angular.mjs +15 -6
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +15 -6
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/modules/table/components/table/table.component.d.ts +6 -3
- package/package.json +1 -1
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EventEmitter, OnChanges, OnInit, QueryList, SimpleChanges, TemplateRef } from '@angular/core';
|
|
2
2
|
import { QuickFilter, RowClickEvent } from '@paperless/core';
|
|
3
3
|
import { IconVariant, IllustrationVariant } from '@paperless/core/dist/types/components';
|
|
4
4
|
import { BehaviorSubject } from 'rxjs';
|
|
5
5
|
import { TableColumn } from '../table-column/table-column.component';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class Table implements OnInit, OnChanges {
|
|
8
|
-
private _elementRef;
|
|
9
8
|
/**
|
|
10
9
|
* The items to be fed to the table
|
|
11
10
|
*/
|
|
@@ -63,6 +62,10 @@ export declare class Table implements OnInit, OnChanges {
|
|
|
63
62
|
*/
|
|
64
63
|
floatingMenuAmountSelectedTemplate: any;
|
|
65
64
|
floatingMenuContentTemplate: TemplateRef<any> | undefined;
|
|
65
|
+
/**
|
|
66
|
+
* Wether the floating menu has been shown atleast once
|
|
67
|
+
*/
|
|
68
|
+
floatingMenuShown$: BehaviorSubject<boolean>;
|
|
66
69
|
/**
|
|
67
70
|
* Event whenever a row is clicked
|
|
68
71
|
*/
|
|
@@ -229,7 +232,7 @@ export declare class Table implements OnInit, OnChanges {
|
|
|
229
232
|
filterModalShow: EventEmitter<boolean>;
|
|
230
233
|
filterModalSave: EventEmitter<void>;
|
|
231
234
|
filterModalReset: EventEmitter<boolean>;
|
|
232
|
-
constructor(
|
|
235
|
+
constructor();
|
|
233
236
|
ngOnInit(): void;
|
|
234
237
|
ngOnChanges(changes: SimpleChanges): void;
|
|
235
238
|
keyDown({ key }: {
|