@sumaris-net/ngx-components 2.8.3-beta7 → 2.8.3-beta8
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/esm2022/src/app/core/table/table.class.mjs +8 -8
- package/esm2022/src/app/shared/functions.mjs +4 -1
- package/fesm2022/sumaris-net.ngx-components.mjs +11 -8
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/table/table.class.d.ts +1 -1
- package/src/app/shared/functions.d.ts +1 -0
- package/src/app/shared/inputs.d.ts +1 -1
- package/src/assets/manifest.json +1 -1
package/package.json
CHANGED
|
@@ -368,13 +368,13 @@ export declare abstract class AppTable<T extends IEntity<T, ID>, F = any, ID = n
|
|
|
368
368
|
}): void;
|
|
369
369
|
protected getPageSettings<T = any>(propertyName?: string): T;
|
|
370
370
|
protected savePageSettings(value: any, propertyName?: string): Promise<void>;
|
|
371
|
+
protected emitRefresh(value?: any): void;
|
|
371
372
|
/**
|
|
372
373
|
* Initialize the permanent selection model
|
|
373
374
|
*
|
|
374
375
|
* @protected
|
|
375
376
|
*/
|
|
376
377
|
protected initPermanentSelection(): void;
|
|
377
|
-
protected emitRefresh(value?: any): void;
|
|
378
378
|
private listenSortAndPaginationEvents;
|
|
379
379
|
private editRowById;
|
|
380
380
|
private setLoading;
|
|
@@ -7,6 +7,7 @@ export declare function isNotNilOrNaN<T>(obj: T | null | undefined): boolean;
|
|
|
7
7
|
export declare function isNilOrNaN<T>(obj: T | null | undefined): boolean;
|
|
8
8
|
export declare function isNotEmptyArray<T>(obj: T[] | null | undefined): boolean;
|
|
9
9
|
export declare function firstArrayValue<T>(obj: T[] | null | undefined): T | undefined;
|
|
10
|
+
export declare function lastArrayValue<T>(obj: T[] | null | undefined): T | undefined;
|
|
10
11
|
export declare function isEmptyArray<T>(obj: T[] | null | undefined): boolean;
|
|
11
12
|
export declare function isNotNilBoolean(obj: any | null | undefined): obj is boolean;
|
|
12
13
|
export declare function isNotNilString(obj: any | null | undefined): obj is string;
|
|
@@ -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):
|
|
19
|
+
export declare function tabindexComparator(a: InputElement, b: InputElement): 0 | 1 | -1;
|
|
20
20
|
export interface CanGainFocusOptions {
|
|
21
21
|
minTabindex?: number;
|
|
22
22
|
maxTabindex?: number;
|
package/src/assets/manifest.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "ngx-sumaris-components",
|
|
3
3
|
"short_name": "ngx-sumaris-components",
|
|
4
4
|
"manifest_version": 1,
|
|
5
|
-
"version": "2.8.3-
|
|
5
|
+
"version": "2.8.3-beta8",
|
|
6
6
|
"default_locale": "fr",
|
|
7
7
|
"description": "Angular components for building beautiful and responsive Apps",
|
|
8
8
|
"icons": [{
|