@sumaris-net/ngx-components 2.4.33 → 2.4.35
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/src/app/core/form/entity/entity-editor-modal.class.mjs +5 -3
- package/esm2020/src/app/shared/material/paginator/material.paginator-i18n.mjs +20 -16
- package/fesm2015/sumaris-net.ngx-components.mjs +23 -17
- package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -1
- package/fesm2020/sumaris-net.ngx-components.mjs +23 -17
- package/fesm2020/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/form/entity/entity-editor-modal.class.d.ts +0 -1
- package/src/app/shared/material/paginator/material.paginator-i18n.d.ts +3 -2
package/package.json
CHANGED
|
@@ -26,7 +26,6 @@ export declare class AppEntityEditorModalOptions extends AppTabEditorOptions {
|
|
|
26
26
|
}
|
|
27
27
|
export declare abstract class AppEntityEditorModal<T extends Entity<T, ID>, ID = number, O extends AppEntityEditorModalOptions = AppEntityEditorModalOptions> extends AppTabEditor<T, ID> implements OnInit, OnDestroy, AfterViewInit, IEntityEditorModalOptions<T, ID> {
|
|
28
28
|
protected dataType: new () => T;
|
|
29
|
-
private _usageMode;
|
|
30
29
|
protected _logPrefix: any;
|
|
31
30
|
protected _isNew: boolean;
|
|
32
31
|
protected readonly dateFormat: DateFormatService;
|
|
@@ -6,9 +6,10 @@ export declare class MatPaginatorI18n extends MatPaginatorIntl {
|
|
|
6
6
|
itemsPerPageLabel: string;
|
|
7
7
|
nextPageLabel: string;
|
|
8
8
|
previousPageLabel: string;
|
|
9
|
-
|
|
9
|
+
ofLabel: string;
|
|
10
10
|
constructor(translate: TranslateService);
|
|
11
|
-
|
|
11
|
+
getRangeLabel: (page: number, pageSize: number, length: number) => string;
|
|
12
|
+
private _getTranslationValue;
|
|
12
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatPaginatorI18n, never>;
|
|
13
14
|
static ɵprov: i0.ɵɵInjectableDeclaration<MatPaginatorI18n>;
|
|
14
15
|
}
|