Changelog
Fully - Angular Admin Template changelog.
0.9.0 - 2021-09-27
Update project to Angular 12 🎉
Update all dependencies to latest versions.
Steps to update your existing project:
Update Angular to next major version (11) [from 10.1.1]
Before updating Angular to v12, we need to update some peer dependencies
Update Angular to the latest version (12) [from 11.2.x]
Try to follow this order for proper peer dependencies update
Update tooling (global npm dependencies)
Diagnostic
Execute
Update other libraries (for the project)
Diagnostic
Execute
New version of ECharts has breaking changes, also see the migration guide
New version of Chart.js has breaking changes, also see the migration guide
ng2-charts breaking changes references:
Radar chart (example)
Line chart (example)
Pie chart (example)
Bar chart (example)
Doughnut chart (example)
Dev dependencies
Upgrade Husky (Git hooks)
ESLint Migration
Linting is the process of analyzing your code for bugs, warnings, style and consistency changes, and more. In early 2019, TSLint was officially deprecated, and the community centered around ESLint as its replacement. Since then, there’s been a lot of development in ESLint in order to support TypeScript as well as Angular. Now, we finally have TypeScript-ESLint and Angular-ESLint.
In order to migrate our existing project we run the following commands:
Fix vulnerabilities
0.8.0 - 2020-09-30
Update project to Angular 10 🎉
Update all dependencies to latest versions.
To update your existing project please follow these steps.
If you re-download the files from your Angular Template account you don't need to do this because the template is already updated.
Updating Angular 8.2 to Angular 9
Remove any es5BrowserSupport
flags in your angular.json
and set your target to es2015
in your tsconfig.json
. Angular now uses your browserslist
to determine if an ES5 build is needed.
ng update
will migrate you automatically.
Before updating Angular Material, we need to update peer dependency @swimlane/ngx-charts
entryComponents
are no longer required. They can be removed from your code.
Updating Angular 9 to Angular 10
Before updating Angular Material, we need to update peer dependency @swimlane/ngx-charts
Run npm outdated
and update all your libraries. In our project we had to update the following:
Update ng-bootstrap
0.1.2 - 2019-12-20
Refactor
Move Material Icons and text font family from
index.html
tomain.scss
andthird-party/material.scss
Rename
override-material-variables.scss
tomaterial.scss
Update buttons mixin
Add color palette primary color to radio buttons from settings menu
Rename
app/layouts
forapp/components
New Features
Add
Components/Lists
New lists examples!
Add
Components/Cards
New cards examples!
Add
truncate-text
mixin.This mixin is useful when you want to limit your text to a certain amount of lines
0.1.1 - 2019-12-02
Fixed
Fix sign in modal image path.
Fix CRM dashboard task lists checkbox icon and default color.
Add border-radius to autocomplete images in
utilities/autocomplete
.Fix button link color in forgot password page
Fix typo in CRM dashboard: "be proactive about your goals"
Fix table with filters image height.
Fix
md
andsm
visual issue inLayout A
with side-nav push mode.
Dynamic Layouts
Re-write dynamic layout mechanism. We got rid of our previous mechanism that worked by resetting the router settings with the selected layout. Now we are using Angular Material CDK Portals to dynamically render the different layouts. This fixed several issues.
Removed
app.routes.ts
file because with the new dynamic layout approach this abstraction is no longer needed. You should now find all the routes in theapp-routing.module.ts
Responsive Layout
Update
server.ts
to identify requests from mobile devices and adjust the layout according to that. Addedmobile-detect
library.Include Angular TransferState mechanism to read server side response header and act accordingly depending if we are on mobile device or not.
Rename
LayoutBreakpointService
toResponsiveBreakpointsService
.Improved the responsive transition by setting the
'menu-open'
class to the layout when the side-menu starts opening.
0.1.0 - 2019-11-28
First release
Hope you enjoy this early version of Fully. We are working hard on polishing the template. Feel free to send us your early feedback to contact@angular-templates.io
Stay tune for imminent updates and new features.
Last updated