@foblex/m-render 2.7.6 → 2.7.7
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/assets/styles/_icons.scss +4 -65
- package/fesm2022/foblex-m-render.mjs +28 -8
- package/fesm2022/foblex-m-render.mjs.map +1 -1
- package/lib/common/components/f-search-button/f-search-button.component.d.ts +5 -0
- package/lib/common/components/index.d.ts +1 -0
- package/lib/common/domain/configuration-providers/index.d.ts +1 -0
- package/lib/common/domain/configuration-providers/provide-header-search.d.ts +2 -0
- package/lib/common/domain/configuration-providers/provide-header.d.ts +1 -2
- package/lib/documentation-page/components/header/header.component.d.ts +1 -0
- package/lib/home-page/components/f-home-page-header/f-home-page-header.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class FSearchButtonComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FSearchButtonComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FSearchButtonComponent, "f-search-button", never, {}, {}, never, never, true, never>;
|
|
5
|
+
}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import { IHeaderMenuLink, ISocialLink } from '../../components';
|
|
2
|
-
import { InjectionToken } from '@angular/core';
|
|
3
2
|
export declare function provideHeader(...configuration: Partial<IHeaderConfiguration>[]): Partial<IHasHeaderConfiguration>;
|
|
4
3
|
export interface IHeaderConfiguration {
|
|
4
|
+
search?: boolean;
|
|
5
5
|
navigation?: IHeaderMenuLink[];
|
|
6
6
|
mediaLinks?: ISocialLink[];
|
|
7
7
|
}
|
|
8
8
|
export interface IHasHeaderConfiguration {
|
|
9
9
|
header?: IHeaderConfiguration;
|
|
10
10
|
}
|
|
11
|
-
export declare const HEADER_CONFIGURATION: InjectionToken<IHasHeaderConfiguration>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class HeaderComponent {
|
|
3
3
|
protected title: string;
|
|
4
|
+
protected config: import("../../../common").IHeaderConfiguration | undefined;
|
|
4
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderComponent, never>;
|
|
5
6
|
static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "f-header", never, {}, {}, never, never, true, never>;
|
|
6
7
|
}
|
|
@@ -2,6 +2,7 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class FHomePageHeaderComponent {
|
|
3
3
|
protected logo: string;
|
|
4
4
|
protected title: string;
|
|
5
|
+
protected config: import("../../../common").IHeaderConfiguration | undefined;
|
|
5
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<FHomePageHeaderComponent, never>;
|
|
6
7
|
static ɵcmp: i0.ɵɵComponentDeclaration<FHomePageHeaderComponent, "header[f-home-page-header]", never, {}, {}, never, never, true, never>;
|
|
7
8
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@foblex/m-render",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.7",
|
|
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",
|