@sumaris-net/ngx-components 2.8.2-beta4 → 2.8.2-beta5

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sumaris-net/ngx-components",
3
3
  "description": "SUMARiS Angular components",
4
- "version": "2.8.2-beta4",
4
+ "version": "2.8.2-beta5",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -361,6 +361,7 @@ export declare abstract class AppAsyncTable<T extends IEntity<T, ID>, F = any, I
361
361
  }): void;
362
362
  protected getPageSettings<T = any>(propertyName?: string): T;
363
363
  protected savePageSettings(value: any, propertyName?: string): Promise<void>;
364
+ protected emitRefresh(value?: any): void;
364
365
  private listenSortAndPaginationEvents;
365
366
  private editRowById;
366
367
  private setLoading;
@@ -374,6 +374,7 @@ export declare abstract class AppTable<T extends IEntity<T, ID>, F = any, ID = n
374
374
  * @protected
375
375
  */
376
376
  protected initPermanentSelection(): void;
377
+ protected emitRefresh(value?: any): void;
377
378
  private listenSortAndPaginationEvents;
378
379
  private editRowById;
379
380
  private setLoading;
@@ -16,7 +16,7 @@ export interface InputElement extends FocusableElement {
16
16
  }
17
17
  export declare function isInputElement(object: any): object is InputElement;
18
18
  export declare function asInputElement(object: ElementRef): InputElement | undefined;
19
- export declare function tabindexComparator(a: InputElement, b: InputElement): 1 | -1 | 0;
19
+ export declare function tabindexComparator(a: InputElement, b: InputElement): 1 | 0 | -1;
20
20
  export interface CanGainFocusOptions {
21
21
  minTabindex?: number;
22
22
  maxTabindex?: number;