Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 0 additions & 21 deletions libs/common/LICENSE

This file was deleted.

5 changes: 0 additions & 5 deletions libs/common/eslint.config.mjs

This file was deleted.

7 changes: 0 additions & 7 deletions libs/common/ng-package.json

This file was deleted.

29 changes: 0 additions & 29 deletions libs/common/package.json

This file was deleted.

33 changes: 0 additions & 33 deletions libs/common/project.json

This file was deleted.

2 changes: 0 additions & 2 deletions libs/common/src/index.ts

This file was deleted.

26 changes: 0 additions & 26 deletions libs/common/tsconfig.json

This file was deleted.

17 changes: 0 additions & 17 deletions libs/common/tsconfig.lib.json

This file was deleted.

9 changes: 0 additions & 9 deletions libs/common/tsconfig.lib.prod.json

This file was deleted.

21 changes: 0 additions & 21 deletions libs/highlight/LICENSE

This file was deleted.

5 changes: 0 additions & 5 deletions libs/highlight/eslint.config.mjs

This file was deleted.

7 changes: 0 additions & 7 deletions libs/highlight/ng-package.json

This file was deleted.

30 changes: 0 additions & 30 deletions libs/highlight/package.json

This file was deleted.

33 changes: 0 additions & 33 deletions libs/highlight/project.json

This file was deleted.

2 changes: 0 additions & 2 deletions libs/highlight/src/index.ts

This file was deleted.

26 changes: 0 additions & 26 deletions libs/highlight/tsconfig.json

This file was deleted.

17 changes: 0 additions & 17 deletions libs/highlight/tsconfig.lib.json

This file was deleted.

9 changes: 0 additions & 9 deletions libs/highlight/tsconfig.lib.prod.json

This file was deleted.

2 changes: 1 addition & 1 deletion libs/m-render/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@foblex/m-render",
"version": "2.7.3",
"version": "2.7.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.",
"author": "Siarhei Huzarevich",
"license": "MIT",
Expand Down
1 change: 1 addition & 0 deletions libs/m-render/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
export * from './lib/analytics';
export * from './lib/common';
export * from './lib/documentation-page';
export * from './lib/highlight';
export * from './lib/home-page';
export * from './lib/theme';

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ChangeDetectionStrategy, Component, computed, inject, signal } from '@angular/core';
import { GTagService } from '../g-tag.service';
import { LOCAL_STORAGE } from '@foblex/mr-common';
import { LOCAL_STORAGE } from '../../common';

export const F_ACCEPT_COOKIES_KEY = 'm-accepts-cookies';

Expand Down
1 change: 1 addition & 0 deletions libs/m-render/src/lib/common/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ export * from './components';
export * from './directives';
export * from './domain';
export * from './services';
export * from './utils';
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { FHeadTagService } from './f-head-tag.service';
import { tap } from 'rxjs/operators';
import { DOCUMENTATION_CONFIGURATION } from '../../domain';
import { INavigationGroup, INavigationItem } from '../../components';
import { LOCATION } from '@foblex/mr-common';
import { LOCATION } from '../../../common';

@Injectable()
export class FMetaService {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ChangeDetectionStrategy, Component, DestroyRef, ElementRef, inject, input, OnInit } from '@angular/core';
import { take } from 'rxjs/operators';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
import { HighlightService } from '@foblex/mr-highlight';
import { HighlightService } from '../../../../../../../../highlight';

@Component({
selector: 'highlight',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
import { HighlightComponent } from './components/highlight.component';
import { parseLanguageFromFileExtension, parseSyntaxLanguage } from './utils/parse-language';
import { IParsedContainerData } from '../../../markdown';
import { PopoverService } from '../../../../../../../common';
import { copyToClipboard, PopoverService } from '../../../../../../../common';
import { coerceComponentHeight } from '../f-example-view';
import { copyToClipboard } from '@foblex/mr-common';

@Component({
selector: 'f-code-view',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AVAILABLE_LANGUAGES } from '@foblex/mr-highlight';
import { AVAILABLE_LANGUAGES } from '../../../../../../../../highlight';

export function parseLanguageFromFileExtension(url: string): string {
const match = url.match(/\.([0-9a-z]+)(?:[\?#]|$)/i);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
import { DocumentationStore } from '../../../../../services';
import { HandleNavigationLinksHandler, HandleNavigationLinksRequest } from '../../../../../domain';
import { WINDOW } from '@foblex/mr-common';
import { WINDOW } from '../../../../../../common';

@Component({
selector: 'footer [f-markdown-footer]',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import {
} from '../../scrollable-container';
import { FMarkdownFooterComponent } from './components';
import { HandleNavigationLinksHandler, HandleNavigationLinksRequest } from '../../../domain';
import { IS_BROWSER_PLATFORM, WINDOW } from '@foblex/mr-common';
import { IS_BROWSER_PLATFORM, WINDOW } from '../../../../common';

@Component({
selector: 'f-markdown-renderer',
Expand Down
Loading
Loading