diff --git a/src/app/modules/admin/docs/guides/authentication/jwt/jwt.html b/src/app/modules/admin/docs/guides/authentication/jwt/jwt.html index 442a8d3b..cc4a53ce 100644 --- a/src/app/modules/admin/docs/guides/authentication/jwt/jwt.html +++ b/src/app/modules/admin/docs/guides/authentication/jwt/jwt.html @@ -104,8 +104,7 @@ from your backend API if needed.
- Since Javascript cannot read or write HTTPOnly cookies, refresh tokens can only be accessed and set via the requests and responses by - your backend implementation. Basically, the refresh token implementation needs to be done in your backend, there is nothing that can be done in Fuse or + The refresh token implementation needs to be done in your backend, there is nothing that can be done in Fuse or in Javascript.
diff --git a/src/app/modules/admin/docs/guides/customization/multi-language/multi-language.html b/src/app/modules/admin/docs/guides/customization/multi-language/multi-language.html index 836bca30..075f8ac0 100644 --- a/src/app/modules/admin/docs/guides/customization/multi-language/multi-language.html +++ b/src/app/modules/admin/docs/guides/customization/multi-language/multi-language.html @@ -54,7 +54,7 @@
Since FuseNavigation
supports runtime data swapping, you can replace the navigation data either partially or completely when the language changes.
- The LanguageComponent is a suitable place to do this and it's located at src/app/layout/common/language
.
+ The LanguageComponent is a suitable place to do this and it's located at src/app/layout/common/languages
.
src/app/core/core.module.ts
file and remove imports of TranslocoCoreModule
src/app.config.ts
file and remove the lines marked with the comment // Transloco Config
src/app/core/transloco
directory<languages></languages>
and remove all instancesLanguageModule
and remove all importssrc/app/layout/common/language
directorysrc/app/layout/common/languages
directorypackage.json
file, remove the "@ngneat/transloco" from dependencies list and run npm install
command
- Splash screen styles are located in src/assets/styles/splash-screen.css
file.
+ Splash screen styles are located in public/styles/splash-screen.css
file.
You can change the styles to modify the look of the splash screen and put anything you want into the
By default, layouts are applied automatically via the
By default, the "default" theme will be used as the default theme for your application. If for some reason, you want to have more than
- one themes and choose something other than the "default", you can do so by setting the default theme via
- You can set the default scheme via
diff --git a/src/app/modules/admin/docs/guides/development/directory-structure/directory-structure.html b/src/app/modules/admin/docs/guides/development/directory-structure/directory-structure.html
index 25a50eae..c106f713 100644
--- a/src/app/modules/admin/docs/guides/development/directory-structure/directory-structure.html
+++ b/src/app/modules/admin/docs/guides/development/directory-structure/directory-structure.html
@@ -98,7 +98,12 @@
+ Default folder for static assets like images, fonts, static styles and etc.
+
This is the core directory of the Fuse. It includes components, directives, services, pipes, custom validators, animations, base styles and much more.
fuse-splash-screen
element to show on the
@@ -88,7 +88,7 @@
...
@@ -96,7 +96,7 @@
LayoutComponent
. The default layout is set by the app.config.ts
file from
- app/core/config/ directory. This configuration file is supplied as the default configuration to the FuseConfigService
which is a custom
- made configuration service to store, write and read application wide configurations.
+ src/app/ directory and it's available via FuseConfigService
.
app/core/config/app.config.ts
file.
+ one themes and choose something other than the "default", you can do so by setting the default theme via src/app.config.ts
file.
You can also change the theme runtime using the FuseConfigService
.
app/core/config/app.config.ts
file. You can also change the scheme runtime using the
+ You can set the default scheme via src/app.config.ts
file. You can also change the scheme runtime using the
FuseConfigService
.
@fuse/
+ /public
+ /src/@fuse/
This directory contains all application related codes. This is where you put your code.
@@ -158,7 +163,7 @@ -This directory is designed to contain your application's core; Singleton services, default configurations, default states and likes. It's NOT recommended to put any components, directives, pipes or simply anything has a template or related to templates in here. @@ -191,7 +196,7 @@
and etc...
-This directory is designed to contain data services for custom made MockAPI library. Detailed information about this directory and the MockAPI library can be found in the @@ -199,7 +204,7 @@ section of this documentation.
-This directory designed to contain everything related to the layout of your app. By default, Fuse provides variety of different layout options for you to use.
@@ -224,7 +229,7 @@ layouts, you can put them inside the common folder. -This directory is designed to contain your application's feature modules.
@@ -236,12 +241,7 @@ If you use SSR (Server Side Rendering) you can even include your landing page as one of the modules and keep everything in a single app. -- Default Angular assets folder. -
- -This folder contains 4 different scss files:
diff --git a/src/app/modules/admin/docs/guides/development/directory-structure/directory-structure.ts b/src/app/modules/admin/docs/guides/development/directory-structure/directory-structure.ts index 021647ed..e10f81d0 100644 --- a/src/app/modules/admin/docs/guides/development/directory-structure/directory-structure.ts +++ b/src/app/modules/admin/docs/guides/development/directory-structure/directory-structure.ts @@ -110,14 +110,27 @@ export class DirectoryStructureComponent implements OnInit {name: 'app.component.html'}, {name: 'app.component.scss'}, {name: 'app.component.ts'}, + {name: 'app.config.ts'}, {name: 'app.resolvers.ts'}, - {name: 'app.routing.ts'}, + {name: 'app.routes.ts'}, ], }, ]; // General dir this.generalDir = [ + { + name : 'public', + children: [ + {name: 'fonts/'}, + {name: 'i18n/'}, + {name: 'icons/'}, + {name: 'images/'}, + {name: 'styles/'}, + {name: 'favicon-16x16.png'}, + {name: 'favicon-32x32.png'}, + ], + }, { name : 'src/', children: [ @@ -139,16 +152,6 @@ export class DirectoryStructureComponent implements OnInit ], }, this.appDir[0], - { - name : 'assets/', - children: [ - {name: 'fonts/'}, - {name: 'i18n/'}, - {name: 'icons/'}, - {name: 'images/'}, - {name: 'styles/'}, - ], - }, { name : 'styles/', children: [ @@ -157,8 +160,6 @@ export class DirectoryStructureComponent implements OnInit {name: 'vendors.scss'}, ], }, - {name: 'favicon-16x16.png'}, - {name: 'favicon-32x32.png'}, {name: 'index.html'}, {name: 'main.ts'}, ], @@ -205,9 +206,9 @@ export class DirectoryStructureComponent implements OnInit } }); - // Expand the first item + // Expand the tree nodes this.appTree.treeControl.expand(this.appTree.treeControl.dataNodes[0]); - this.generalTree.treeControl.expand(this.generalTree.treeControl.dataNodes[0]); + this.generalTree.treeControl.expand(this.generalTree.treeControl.dataNodes[8]); } // ----------------------------------------------------------------------------------------------------- diff --git a/src/app/modules/admin/ui/fuse-components/services/config/config.component.html b/src/app/modules/admin/ui/fuse-components/services/config/config.component.html index bb8aaf29..2a3a459b 100644 --- a/src/app/modules/admin/ui/fuse-components/services/config/config.component.html +++ b/src/app/modules/admin/ui/fuse-components/services/config/config.component.html @@ -52,100 +52,55 @@
- By default, the application wide configuration is stored in src/app/core/config/app.config.ts
file and it includes the layout style as
+ By default, the application wide configuration is stored in src/app.config.ts
file and it includes the layout style as
well as the color theme configurations:
- The default configuration is supplied to the FuseConfigService using the FuseConfigModule.forRoot()
in AppModule:
+ The default configuration is supplied to the FuseConfigService automatically: