@sumaris-net/ngx-components 18.26.15 → 18.27.0
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 +4 -1
- package/esm2022/src/app/core/about/about.modal.mjs +16 -3
- package/esm2022/src/app/core/services/config/core.config.mjs +6 -1
- package/esm2022/src/app/shared/markdown/markdown.component.mjs +3 -3
- package/esm2022/src/app/shared/markdown/testing/markdown.test.mjs +2 -2
- package/esm2022/src/app/shared/material/paginator/material.paginator-i18n.mjs +25 -14
- package/esm2022/src/environments/environment.class.mjs +2 -1
- package/esm2022/src/environments/environment.mjs +2 -1
- package/fesm2022/sumaris-net.ngx-components.mjs +47 -18
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +19 -2
- package/src/app/core/about/about.modal.d.ts +2 -0
- package/src/app/core/services/config/core.config.d.ts +1 -0
- package/src/app/shared/material/paginator/material.paginator-i18n.d.ts +5 -1
- package/src/assets/i18n/en-US.json +2 -1
- package/src/assets/i18n/en.json +2 -1
- package/src/assets/i18n/fr.json +2 -1
- package/src/assets/manifest.json +1 -1
- package/src/environments/environment.class.d.ts +1 -0
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": "18.
|
|
4
|
+
"version": "18.27.0",
|
|
5
5
|
"author": "contact@e-is.pro",
|
|
6
6
|
"license": "AGPL-3.0",
|
|
7
7
|
"readmeFilename": "README.md",
|
|
@@ -39,6 +39,11 @@
|
|
|
39
39
|
"zone.js": "~0.14.10"
|
|
40
40
|
},
|
|
41
41
|
"optionalDependencies": {
|
|
42
|
+
"apollo-angular": "~7.2.1",
|
|
43
|
+
"apollo-link-logger": "~2.0.1",
|
|
44
|
+
"apollo-link-queue": "~3.1.0",
|
|
45
|
+
"apollo-link-serialize": "~4.0.0",
|
|
46
|
+
"apollo3-cache-persist": "~0.14.1",
|
|
42
47
|
"@awesome-cordova-plugins/audio-management": "^6.16.0",
|
|
43
48
|
"@awesome-cordova-plugins/core": "^6.16.0",
|
|
44
49
|
"@awesome-cordova-plugins/downloader": "^6.16.0",
|
|
@@ -64,7 +69,19 @@
|
|
|
64
69
|
"cordova-sqlite-storage": "~6.0.0",
|
|
65
70
|
"emoji-toolkit": ">= 8.0.0 < 10.0.0",
|
|
66
71
|
"localforage-cordovasqlitedriver": "~1.8.0",
|
|
67
|
-
"
|
|
72
|
+
"marked": ">= 9.0.0 < 13.0.0",
|
|
73
|
+
"ionicons": "~7.4.0",
|
|
74
|
+
"jdenticon": "~3.3.0",
|
|
75
|
+
"ngx-markdown": "^18.1.0",
|
|
76
|
+
"ngx-color-picker": "~17.0.0",
|
|
77
|
+
"ngx-jdenticon": "~2.0.0",
|
|
78
|
+
"ngx-mat-timepicker": "^18.0.1",
|
|
79
|
+
"prismjs": "^1.28.0",
|
|
80
|
+
"rxjs": "~7.8.2",
|
|
81
|
+
"swiper": "^14.0.1",
|
|
82
|
+
"uuid": "~7.0.3",
|
|
83
|
+
"moment": "~2.30.1",
|
|
84
|
+
"moment-timezone": "~0.5.46"
|
|
68
85
|
},
|
|
69
86
|
"repository": {
|
|
70
87
|
"type": "git",
|
|
@@ -28,6 +28,7 @@ export declare class AboutModal implements OnInit, OnDestroy {
|
|
|
28
28
|
protected reportIssueUrl: string;
|
|
29
29
|
protected forumUrl: string;
|
|
30
30
|
protected helpUrl: string;
|
|
31
|
+
protected changelogUrl: string;
|
|
31
32
|
protected showVersionDetails: boolean;
|
|
32
33
|
protected nodeInfo: NodeInfo;
|
|
33
34
|
protected buildDate: string;
|
|
@@ -37,6 +38,7 @@ export declare class AboutModal implements OnInit, OnDestroy {
|
|
|
37
38
|
ngOnDestroy(): void;
|
|
38
39
|
close(): Promise<void>;
|
|
39
40
|
protected setConfig(config?: Configuration): void;
|
|
41
|
+
protected openChangelog(event: Event): Promise<void>;
|
|
40
42
|
protected loadNodeInfo(): Promise<void>;
|
|
41
43
|
protected getNodeInfo(): Promise<NodeInfo>;
|
|
42
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<AboutModal, [null, null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }]>;
|
|
@@ -21,6 +21,7 @@ export declare const CORE_CONFIG_OPTIONS: Readonly<{
|
|
|
21
21
|
HELP_URL: FormFieldDefinition<string, import("../../../shared/form/field.model").FormFieldType, any, any>;
|
|
22
22
|
FORUM_URL: FormFieldDefinition<string, import("../../../shared/form/field.model").FormFieldType, any, any>;
|
|
23
23
|
REPORT_ISSUE_URL: FormFieldDefinition<string, import("../../../shared/form/field.model").FormFieldType, any, any>;
|
|
24
|
+
CHANGELOG_URL: FormFieldDefinition<string, import("../../../shared/form/field.model").FormFieldType, any, any>;
|
|
24
25
|
PRIVACY_POLICY_URL: FormFieldDefinition<string, import("../../../shared/form/field.model").FormFieldType, any, any>;
|
|
25
26
|
TERMS_OF_USE_URL: FormFieldDefinition<string, import("../../../shared/form/field.model").FormFieldType, any, any>;
|
|
26
27
|
LOGO_LARGE: FormFieldDefinition<string, import("../../../shared/form/field.model").FormFieldType, any, any>;
|
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
import { TranslateService } from '@ngx-translate/core';
|
|
2
|
+
import { OnDestroy } from '@angular/core';
|
|
2
3
|
import { MatPaginatorIntl } from '@angular/material/paginator';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class MatPaginatorI18n extends MatPaginatorIntl {
|
|
5
|
+
export declare class MatPaginatorI18n extends MatPaginatorIntl implements OnDestroy {
|
|
5
6
|
protected translate: TranslateService;
|
|
6
7
|
ofLabel: string;
|
|
8
|
+
private _subscription;
|
|
7
9
|
constructor(translate: TranslateService);
|
|
10
|
+
ngOnDestroy(): void;
|
|
8
11
|
getRangeLabel: (page: number, pageSize: number, length: number) => string;
|
|
9
12
|
protected _getTranslationValue(translations: any, key: string, defaultValue: string): string;
|
|
13
|
+
private _updateTranslations;
|
|
10
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatPaginatorI18n, never>;
|
|
11
15
|
static ɵprov: i0.ɵɵInjectableDeclaration<MatPaginatorI18n>;
|
|
12
16
|
}
|
|
@@ -263,7 +263,8 @@
|
|
|
263
263
|
"DEVELOPED_BY": "Developed by:",
|
|
264
264
|
"PARTNERS": "Partners and sponsors:",
|
|
265
265
|
"POD_VERSION": "Pod v{{version}}",
|
|
266
|
-
"APP_VERSION": "App v{{version}}"
|
|
266
|
+
"APP_VERSION": "App v{{version}}",
|
|
267
|
+
"BTN_CHANGELOG": "Changelog"
|
|
267
268
|
},
|
|
268
269
|
"HOME": {
|
|
269
270
|
"WELCOME_WEB": "Welcome to the {{appName}} web site!",
|
package/src/assets/i18n/en.json
CHANGED
|
@@ -263,7 +263,8 @@
|
|
|
263
263
|
"DEVELOPED_BY": "Developed by:",
|
|
264
264
|
"PARTNERS": "Partners and sponsors:",
|
|
265
265
|
"POD_VERSION": "Pod v{{version}}",
|
|
266
|
-
"APP_VERSION": "App v{{version}}"
|
|
266
|
+
"APP_VERSION": "App v{{version}}",
|
|
267
|
+
"BTN_CHANGELOG": "Changelog"
|
|
267
268
|
},
|
|
268
269
|
"HOME": {
|
|
269
270
|
"WELCOME_WEB": "Welcome to the {{appName}} web site!",
|
package/src/assets/i18n/fr.json
CHANGED
|
@@ -263,7 +263,8 @@
|
|
|
263
263
|
"DEVELOPED_BY": "Développé par :",
|
|
264
264
|
"PARTNERS": "Partenaires et sponsors :",
|
|
265
265
|
"POD_VERSION": "Pod v{{version}}",
|
|
266
|
-
"APP_VERSION": "App v{{version}}"
|
|
266
|
+
"APP_VERSION": "App v{{version}}",
|
|
267
|
+
"BTN_CHANGELOG": "Notes de version"
|
|
267
268
|
},
|
|
268
269
|
"HOME": {
|
|
269
270
|
"WELCOME_WEB": "Bienvenue sur le site web {{appName}} !",
|
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": "18.
|
|
5
|
+
"version": "18.27.0",
|
|
6
6
|
"default_locale": "fr",
|
|
7
7
|
"description": "Angular components for building beautiful and responsive Apps",
|
|
8
8
|
"icons": [{
|