@foblex/m-render 2.6.6 → 2.6.8

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.
@@ -2,12 +2,12 @@ import { OnInit } from '@angular/core';
2
2
  import { IMarkdownFooterLink, IMarkdownFooterNavigation } from './domain';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class FMarkdownFooterComponent implements OnInit {
5
- private readonly _mediator;
6
5
  private readonly _provider;
7
6
  private readonly _router;
8
7
  private readonly _activatedRoute;
9
8
  private readonly _changeDetectorRef;
10
9
  private readonly _destroyRef;
10
+ private readonly _browser;
11
11
  protected navigation: IMarkdownFooterNavigation;
12
12
  protected editLink: string | undefined;
13
13
  protected previousLink: IMarkdownFooterLink | undefined;
@@ -4,9 +4,9 @@ export declare class NavigationPanelComponent implements OnInit, AfterViewInit {
4
4
  private readonly _provider;
5
5
  private readonly _parent;
6
6
  private readonly _router;
7
- private readonly _mediator;
8
7
  private readonly _changeDetectorRef;
9
8
  private readonly _destroyRef;
9
+ private readonly _browser;
10
10
  protected value: string | undefined;
11
11
  protected navigation: import("./domain").INavigationGroup[];
12
12
  protected title: string;
@@ -1,9 +1,6 @@
1
1
  import { IExecution } from '@foblex/mediator';
2
2
  import { HandleNavigationLinksRequest } from './handle-navigation-links.request';
3
- import * as i0 from "@angular/core";
4
3
  export declare class HandleNavigationLinksHandler implements IExecution<HandleNavigationLinksRequest, void> {
5
- private readonly _router;
6
- private readonly _browser;
7
4
  handle(request: HandleNavigationLinksRequest): void;
8
5
  private _getTargetElement;
9
6
  private _getClosestAnchorTag;
@@ -11,6 +8,4 @@ export declare class HandleNavigationLinksHandler implements IExecution<HandleNa
11
8
  private _isExternalLink;
12
9
  private _navigateInternalLink;
13
10
  private _navigateExternalLink;
14
- static ɵfac: i0.ɵɵFactoryDeclaration<HandleNavigationLinksHandler, never>;
15
- static ɵprov: i0.ɵɵInjectableDeclaration<HandleNavigationLinksHandler>;
16
11
  }
@@ -1,4 +1,8 @@
1
+ import { BrowserService } from '@foblex/platform';
2
+ import { Router } from '@angular/router';
1
3
  export declare class HandleNavigationLinksRequest {
2
4
  event: MouseEvent;
3
- constructor(event: MouseEvent);
5
+ browser: BrowserService;
6
+ router: Router;
7
+ constructor(event: MouseEvent, browser: BrowserService, router: Router);
4
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@foblex/m-render",
3
- "version": "2.6.6",
3
+ "version": "2.6.8",
4
4
  "description": "MRender is a static site generator designed for creating fast and user-friendly documentation sites based on Markdown files. MarkEngine supports extended Markdown syntax and can render Angular components directly from Markdown files.",
5
5
  "author": "Siarhei Huzarevich",
6
6
  "license": "MIT",