@esfaenza/extensions 20.3.2 → 20.3.5
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/fesm2022/esfaenza-extensions.mjs +224 -36
- package/fesm2022/esfaenza-extensions.mjs.map +1 -1
- package/index.d.ts +34 -2
- package/package.json +7 -7
package/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { PipeTransform, ModuleWithProviders, Injector, Type, InjectionToken } from '@angular/core';
|
|
2
|
+
import { PipeTransform, ModuleWithProviders, Injector, EventEmitter, Type, InjectionToken } from '@angular/core';
|
|
3
3
|
import * as i2 from '@esfaenza/localizations';
|
|
4
4
|
import { BaseLocalization, LocalizationService } from '@esfaenza/localizations';
|
|
5
5
|
import { ReplaySubject, Subject, Observable } from 'rxjs';
|
|
6
6
|
import { Location } from '@angular/common';
|
|
7
|
-
import { Router } from '@angular/router';
|
|
7
|
+
import { Router, ActivatedRoute } from '@angular/router';
|
|
8
8
|
import { NgForm } from '@angular/forms';
|
|
9
9
|
|
|
10
10
|
/** Classe di configurazione per il modulo di estensione */
|
|
@@ -511,6 +511,38 @@ declare class AppEmbeddingExtensions {
|
|
|
511
511
|
private onNavigateBack;
|
|
512
512
|
replaceState(basePath: string, url: string): void;
|
|
513
513
|
refreshBoundariesOnMenuCollapse(): void;
|
|
514
|
+
onEmbeddedDialogShow(dialog: {
|
|
515
|
+
onHidden: EventEmitter<any>;
|
|
516
|
+
_element: any;
|
|
517
|
+
_renderer: any;
|
|
518
|
+
_config: any;
|
|
519
|
+
backdrop: any;
|
|
520
|
+
}): void;
|
|
521
|
+
private doFixBody;
|
|
522
|
+
onEmbeddedDialogHide(dialog: {
|
|
523
|
+
onHidden: EventEmitter<any>;
|
|
524
|
+
_element: any;
|
|
525
|
+
_renderer: any;
|
|
526
|
+
_config: any;
|
|
527
|
+
backdrop: any;
|
|
528
|
+
}): void;
|
|
529
|
+
private doHide;
|
|
530
|
+
onComponentCreation(CompletePath: string, InternalNavigation: boolean, NavigationTitle: string): void;
|
|
531
|
+
handleBack(): void;
|
|
532
|
+
handleNavigation(command: any[], extras: any, EMBEDDED_ROUTE: string, ROUTE: string, basePath: string): void;
|
|
533
|
+
private LocalhostModuleMap;
|
|
534
|
+
private Reloading;
|
|
535
|
+
setupEmbedding(route: ActivatedRoute, ParametersRetrieveFunction: () => {
|
|
536
|
+
[name: string]: string;
|
|
537
|
+
}, QueryParametersRetrieveFunction: () => {
|
|
538
|
+
[name: string]: string;
|
|
539
|
+
}, completePathRetrieveFunction: () => string, currentModuleRetrieveFunction: () => string, currentPageRetrieveFunction: () => string, onEmbeddingSuccesful: (EmbeddingSuccesfull: boolean, Page: string, Pars: string, QueryPars: string, Module: string, Localhost: string) => void): void;
|
|
540
|
+
private performNewEmbeddingOperations;
|
|
541
|
+
private assignPageLoadParameters;
|
|
542
|
+
navigate(url: string): void;
|
|
543
|
+
loadExternalPage(Username: string, Password: string, Tenant: string, EmbeddingSource: string, _state: any, currentIdentity: any, aac: any): void;
|
|
544
|
+
private afterModulesRetrieve;
|
|
545
|
+
getPageRoute(): "pages_ext/" | "pages/";
|
|
514
546
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppEmbeddingExtensions, never>;
|
|
515
547
|
static ɵprov: i0.ɵɵInjectableDeclaration<AppEmbeddingExtensions>;
|
|
516
548
|
}
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@esfaenza/extensions",
|
|
3
|
-
"version": "20.3.
|
|
3
|
+
"version": "20.3.5",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"tslib": "^2.0.0"
|
|
6
6
|
},
|
|
7
7
|
"peerDependencies": {
|
|
8
|
-
"@angular/common": "^20.3.
|
|
9
|
-
"@angular/core": "^20.3.
|
|
10
|
-
"@esfaenza/localizations": "^20.3.
|
|
11
|
-
"sweetalert2": "11.26.
|
|
12
|
-
"ngx-toastr": "
|
|
13
|
-
"dayjs": "1.11.
|
|
8
|
+
"@angular/common": "^20.3.24",
|
|
9
|
+
"@angular/core": "^20.3.24",
|
|
10
|
+
"@esfaenza/localizations": "^20.3.4",
|
|
11
|
+
"sweetalert2": "11.26.25",
|
|
12
|
+
"ngx-toastr": "20.0.5",
|
|
13
|
+
"dayjs": "1.11.21",
|
|
14
14
|
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
|
|
15
15
|
},
|
|
16
16
|
"module": "fesm2022/esfaenza-extensions.mjs",
|