@foblex/m-render 3.0.0 → 3.0.1
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@foblex/m-render",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
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",
|
|
@@ -4,7 +4,7 @@ import { Observable } from 'rxjs';
|
|
|
4
4
|
import * as _angular_cdk_overlay from '@angular/cdk/overlay';
|
|
5
5
|
import { ConnectedPosition } from '@angular/cdk/overlay';
|
|
6
6
|
import * as _foblex_m_render from '@foblex/m-render';
|
|
7
|
-
import { SafeHtml } from '@angular/platform-browser';
|
|
7
|
+
import { SafeResourceUrl, SafeHtml } from '@angular/platform-browser';
|
|
8
8
|
import MarkdownIt from 'markdown-it';
|
|
9
9
|
import container from 'markdown-it-container';
|
|
10
10
|
import { Router, Routes } from '@angular/router';
|
|
@@ -283,6 +283,7 @@ declare function parseComponentTag(html: string): string | null;
|
|
|
283
283
|
declare class ExternalComponent implements OnInit {
|
|
284
284
|
readonly data: i0.InputSignalWithTransform<IExampleViewData, IParsedContainerData>;
|
|
285
285
|
protected readonly iframeUrl: i0.Signal<string | undefined>;
|
|
286
|
+
protected readonly iframeResourceUrl: i0.Signal<SafeResourceUrl | undefined>;
|
|
286
287
|
protected readonly hasContent: i0.Signal<boolean>;
|
|
287
288
|
protected readonly canToggleFullscreen: i0.Signal<boolean>;
|
|
288
289
|
protected readonly fullscreenLabel: i0.Signal<"Exit full screen" | "Full screen">;
|
|
@@ -292,6 +293,7 @@ declare class ExternalComponent implements OnInit {
|
|
|
292
293
|
private readonly _isBrowser;
|
|
293
294
|
private readonly _mediatr;
|
|
294
295
|
private readonly _viewContainerRef;
|
|
296
|
+
private readonly _sanitizer;
|
|
295
297
|
ngOnInit(): void;
|
|
296
298
|
protected toggleFullscreen(): Promise<void>;
|
|
297
299
|
protected onFullscreenChange(): void;
|