@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.
@@ -1,11 +1,10 @@
1
- import { ElementRef, EventEmitter, OnChanges, OnInit, QueryList, SimpleChanges, TemplateRef } from '@angular/core';
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(_elementRef: ElementRef);
235
+ constructor();
233
236
  ngOnInit(): void;
234
237
  ngOnChanges(changes: SimpleChanges): void;
235
238
  keyDown({ key }: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paperless/angular",
3
- "version": "1.17.1",
3
+ "version": "1.17.3",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^13.3.0 || ^14.0.0 || ^15.0.0 || ^17.0.0",
6
6
  "@angular/common": "^13.3.0 || ^14.0.0 || ^15.0.0",