aril 2.0.1-dev.0 → 2.0.1-dev.2
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/boot/config/apps/src/custom-route-reuse-strategy.class.d.ts +17 -0
- package/esm2022/boot/config/apps/src/custom-route-reuse-strategy.class.mjs +109 -39
- package/esm2022/theme/layout/app/layout/mfe.layout.component.mjs +7 -9
- package/fesm2022/aril-boot-config-apps.mjs +108 -38
- package/fesm2022/aril-boot-config-apps.mjs.map +1 -1
- package/fesm2022/aril-theme-layout.mjs +6 -8
- package/fesm2022/aril-theme-layout.mjs.map +1 -1
- package/package.json +183 -183
- package/theme/layout/app/layout/mfe.layout.component.d.ts +1 -7
- package/theme/layout/app/layout/mfe.layout.component.ts +7 -7
|
@@ -3527,13 +3527,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImpor
|
|
|
3527
3527
|
|
|
3528
3528
|
class MFELayoutComponent {
|
|
3529
3529
|
constructor() {
|
|
3530
|
-
|
|
3531
|
-
|
|
3532
|
-
|
|
3533
|
-
|
|
3534
|
-
|
|
3535
|
-
*/
|
|
3536
|
-
this._breadcrumbPublisher = inject(BreadcrumbPublisherService);
|
|
3530
|
+
// Side-effect injection — `BreadcrumbPublisherService` kendi constructor'ında Router
|
|
3531
|
+
// subscription'ını kurar (breadcrumb yayınını başlatır). Field'a ATAMIYORUZ; DI'nın
|
|
3532
|
+
// service'i instantiate etmesi yeterli. Field'a atasaydık `noUnusedLocals` (TS6133)
|
|
3533
|
+
// strict tüketici build'lerinde (örn. yeap-mw) hata verirdi.
|
|
3534
|
+
inject(BreadcrumbPublisherService);
|
|
3537
3535
|
}
|
|
3538
3536
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: MFELayoutComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3539
3537
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.2", type: MFELayoutComponent, isStandalone: true, selector: "mfe-layout", ngImport: i0, template: `
|
|
@@ -3562,7 +3560,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImpor
|
|
|
3562
3560
|
`,
|
|
3563
3561
|
imports: [RouterOutlet, ConfirmDialogModule, ConfirmPopupModule, DialogModule, MessagesModule, ToastModule]
|
|
3564
3562
|
}]
|
|
3565
|
-
}] });
|
|
3563
|
+
}], ctorParameters: () => [] });
|
|
3566
3564
|
|
|
3567
3565
|
class SelectionGroupService {
|
|
3568
3566
|
constructor(http) {
|