@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/doc/changelog.md +1 -0
- package/esm2022/src/app/admin/users/users.mjs +5 -5
- package/esm2022/src/app/core/account/token.table.mjs +3 -3
- package/esm2022/src/app/core/form/properties/properties.table.mjs +4 -4
- package/esm2022/src/app/core/table/async-table.class.mjs +11 -5
- package/esm2022/src/app/core/table/memory-table.class.mjs +2 -2
- package/esm2022/src/app/core/table/table.class.mjs +11 -5
- package/esm2022/src/app/core/table/testing/table.testing.mjs +3 -3
- package/esm2022/src/app/core/table/testing/table2.testing.mjs +3 -3
- package/fesm2022/sumaris-net.ngx-components.mjs +34 -22
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/table/async-table.class.d.ts +1 -0
- package/src/app/core/table/table.class.d.ts +1 -0
- package/src/app/shared/inputs.d.ts +1 -1
package/package.json
CHANGED
|
@@ -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 |
|
|
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;
|