Skip to content

Commit

Permalink
updated to v2.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
siarheihuzarevich committed Jan 10, 2025
1 parent d51f207 commit fc60d6f
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 25 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"@cypress/angular": "^2.1.0",
"@foblex/2d": "1.1.5",
"@foblex/drag-toolkit": "1.1.0",
"@foblex/m-render": "2.5.2",
"@foblex/m-render": "2.5.3",
"@foblex/mediator": "1.1.0",
"@foblex/platform": "1.0.4",
"@foblex/utils": "1.1.0",
Expand Down
27 changes: 12 additions & 15 deletions public/markdown/home.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,19 @@ import { HomePageImageComponent } from '../../src/app/home-page/home-page-image/

export const HOME_ENVIRONMENT: IHomePageEnvironment = {
logo: './logo.svg',
title: 'Foblex MRender',
socialLinks: [
{ icon: 'github', link: 'https://github.com/Foblex/m-render' },
],
// backgroundComponent: HomePageBackgroundComponent,
// heroImageComponent: HomePageImageComponent,
title: 'Foblex Flow',
backgroundComponent: HomePageBackgroundComponent,
heroImageComponent: HomePageImageComponent,
hero: {
headline: 'Foblex MRender',
headline: 'Foblex Flow',
tagline1: 'Built with Angular',
tagline2: 'Easy Markdown Renderer',
subDescription: 'Supports SSR, Angular Components, and Dynamic Themes',
tagline2: 'Flow-Chart Library',
subDescription: 'Supports Angular 12+, SSR, and Composition API.',
},
buttons: [{
primary: true,
text: 'Get Started',
routerLink: '/docs/get-started/',
routerLink: '/docs/get-started',
}, {
text: 'Examples',
routerLink: '/examples/overview',
Expand All @@ -31,16 +28,16 @@ export const HOME_ENVIRONMENT: IHomePageEnvironment = {
}],
features: [{
headline: 'Easy to Use',
description: 'Provide a simple configuration, and the library renders your Markdown documents instantly. Specify basic parameters like language, navigation, and document directory.',
description: 'Create sophisticated diagrams effortlessly with a straightforward and intuitive API. Whether you’re a beginner or a pro, a few lines of code are all you need to get started.',
}, {
headline: 'Customizable',
description: 'Adapt the library to suit your project. Configure logos, headers, navigation, and components, ensuring every aspect aligns with your specific requirements.',
description: 'Build with total flexibility in mind. Foblex Flow allows you to easily integrate any content within nodes, providing full control over the look and feel, ensuring it adapts perfectly to your project’s needs.',
}, {
headline: 'Visualization',
description: 'Convert Markdown files into complete pages with Angular component support. Perfect for building documentation, guides, or content-focused projects.',
description: 'Transform complex data into clear, visual representations. Foblex Flow turns information into intuitive diagrams, helping users rapidly understand, analyze, and navigate intricate relationships.',
}, {
headline: 'Advanced Features',
description: 'Enhance your documents with Angular components. Embed custom elements directly into the text for an intuitive representation of complex information.',
headline: 'Interactive',
description: 'Foblex Flow takes interactivity to the next level. With fluid drag-and-drop node movement, seamless connection creation, and smooth zooming, exploring your diagrams is an effortless, enjoyable experience.',
}],
footer: {
text: 'MIT License | Copyright © 2022 - Present',
Expand Down
4 changes: 2 additions & 2 deletions src/app/app.routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ export const routes: Routes = [
providers: [
{ provide: F_DOCS_ENVIRONMENT, useValue: GUIDES_ENVIRONMENT }
],
loadChildren: () => import('@foblex/m-render').then(m => m.F_DOCUMENTATION_ROUTES)
loadChildren: () => import('@foblex/m-render').then(m => m.F_DOCS_ROUTES)
},
{
path: 'examples',
providers: [
{ provide: F_DOCS_ENVIRONMENT, useValue: EXAMPLES_ENVIRONMENT }
],
loadChildren: () => import('@foblex/m-render').then(m => m.F_DOCUMENTATION_ROUTES)
loadChildren: () => import('@foblex/m-render').then(m => m.F_DOCS_ROUTES)
},
{
path: '**',
Expand Down
2 changes: 0 additions & 2 deletions tsconfig.app.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
{
"extends": "./tsconfig.json",
"compilerOptions": {
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
],
"@pro-examples": [
"./projects/f-pro-examples/public-api.ts"
]
],
},
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
Expand Down

0 comments on commit fc60d6f

Please sign in to comment.