@esfaenza/extensions 15.2.52 → 15.2.53
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/lib/services/extensions.embedding.service.mjs +3 -1
- package/fesm2015/esfaenza-extensions.mjs +2 -0
- package/fesm2015/esfaenza-extensions.mjs.map +1 -1
- package/fesm2020/esfaenza-extensions.mjs +2 -0
- package/fesm2020/esfaenza-extensions.mjs.map +1 -1
- package/lib/services/extensions.embedding.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1057,6 +1057,7 @@ class AppEmbeddingExtensions {
|
|
|
1057
1057
|
this.router = router;
|
|
1058
1058
|
this.location = location;
|
|
1059
1059
|
this.sidebarWidth = 230;
|
|
1060
|
+
this.EmbeddingSource = "";
|
|
1060
1061
|
this.Embedded = false;
|
|
1061
1062
|
this.EmbeddingLevel = 0;
|
|
1062
1063
|
this.MessageObserver = new Subject();
|
|
@@ -1069,6 +1070,7 @@ class AppEmbeddingExtensions {
|
|
|
1069
1070
|
this.MainWindow = this.MainWindow.parent;
|
|
1070
1071
|
this.EmbeddingLevel++;
|
|
1071
1072
|
this.Embedded = true;
|
|
1073
|
+
this.EmbeddingSource = this.MainWindow.__esfaenza_module;
|
|
1072
1074
|
// Fallback per farlo funzionare forzatamente mentre lo testo
|
|
1073
1075
|
this.EmbeddedModule = this.location.path().match(/module=([a-zA-Z_]+)/)?.[1];
|
|
1074
1076
|
if (!this.EmbeddedModule)
|