@foblex/m-render 2.7.8 → 2.7.9

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/index.d.ts CHANGED
@@ -428,7 +428,7 @@ declare class RenderDynamicComponentRequest {
428
428
  readonly item: IDynamicComponentItem;
429
429
  readonly viewContainerRef: ViewContainerRef;
430
430
  readonly element?: HTMLElement | undefined;
431
- static fToken: symbol;
431
+ static requestToken: symbol;
432
432
  constructor(item: IDynamicComponentItem, viewContainerRef: ViewContainerRef, element?: HTMLElement | undefined);
433
433
  }
434
434
 
@@ -440,14 +440,14 @@ type IExecution<TRequest, TResponse> = IHandler<TRequest, TResponse>;
440
440
 
441
441
  type Constructor<T = any> = new (...args: any[]) => T;
442
442
  declare function MExecution<TRequest, TResponse>(requestType: {
443
- fToken: symbol;
443
+ requestToken: symbol;
444
444
  }): (constructor: Constructor<IExecution<TRequest, TResponse>>) => void;
445
445
 
446
446
  declare class Mediatr {
447
447
  private readonly _injector;
448
448
  private static _executions;
449
449
  static register<TRequest, TResponse>(type: {
450
- fToken: symbol;
450
+ requestToken: symbol;
451
451
  }, handler: Type<IExecution<TRequest, TResponse>>): void;
452
452
  execute<TResponse>(request: any): TResponse;
453
453
  static ɵfac: i0.ɵɵFactoryDeclaration<Mediatr, never>;
@@ -469,7 +469,7 @@ declare class RenderDynamicComponent implements IExecution<RenderDynamicComponen
469
469
  declare class RenderExternalComponentRequest {
470
470
  readonly selector: string;
471
471
  readonly viewContainerRef: ViewContainerRef;
472
- static fToken: symbol;
472
+ static requestToken: symbol;
473
473
  constructor(selector: string, viewContainerRef: ViewContainerRef);
474
474
  }
475
475
 
@@ -484,7 +484,7 @@ declare class RenderExternalComponent implements IExecution<RenderExternalCompon
484
484
  declare class RenderInternalComponentsRequest {
485
485
  readonly hostElement: HTMLElement;
486
486
  readonly viewContainerRef: ViewContainerRef;
487
- static fToken: symbol;
487
+ static requestToken: symbol;
488
488
  constructor(hostElement: HTMLElement, viewContainerRef: ViewContainerRef);
489
489
  }
490
490
 
@@ -760,7 +760,7 @@ interface IScrollableContainer {
760
760
 
761
761
  declare class ActivateTocByHashRequest {
762
762
  hash: string | undefined;
763
- static fToken: symbol;
763
+ static requestToken: symbol;
764
764
  constructor(hash: string | undefined);
765
765
  }
766
766
 
@@ -773,7 +773,7 @@ declare class ActivateTocByHash implements IExecution<ActivateTocByHashRequest,
773
773
 
774
774
  declare class CalculateTableOfContentRequest {
775
775
  readonly hostElement: HTMLElement;
776
- static fToken: symbol;
776
+ static requestToken: symbol;
777
777
  constructor(hostElement: HTMLElement);
778
778
  }
779
779
 
@@ -808,12 +808,12 @@ declare class CalculateHashFromScrollPositionAndActivateToc implements IExecutio
808
808
  }
809
809
 
810
810
  declare class CalculateHashFromScrollPositionAndActivateTocRequest {
811
- static fToken: symbol;
811
+ static requestToken: symbol;
812
812
  }
813
813
 
814
814
  declare class CalculateAbsoluteTopToContainerRequest {
815
815
  element: HTMLElement;
816
- static fToken: symbol;
816
+ static requestToken: symbol;
817
817
  constructor(element: HTMLElement);
818
818
  }
819
819
 
@@ -826,7 +826,7 @@ declare class CalculateAbsoluteTopToContainer implements IExecution<CalculateAbs
826
826
 
827
827
  declare class ScrollToElementInContainerRequest {
828
828
  hash: string;
829
- static fToken: symbol;
829
+ static requestToken: symbol;
830
830
  constructor(hash: string);
831
831
  }
832
832
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@foblex/m-render",
3
- "version": "2.7.8",
3
+ "version": "2.7.9",
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",