(dependencies) Updated Angular & Angular Material & various other packages

Updated the version number and changelog
This commit is contained in:
Sercan Yemen 2022-08-22 11:06:45 +03:00
parent 3fa878b3f2
commit 6599587e31
5 changed files with 642 additions and 423 deletions

978
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "fuse-angular",
"version": "15.1.0",
"version": "15.2.0",
"description": "Fuse - Angular Admin Template and Starter Project",
"author": "https://themeforest.net/user/srcn",
"license": "https://themeforest.net/licenses/standard",
@ -14,19 +14,19 @@
"lint": "ng lint"
},
"dependencies": {
"@angular/animations": "14.1.0",
"@angular/cdk": "14.1.0",
"@angular/common": "14.1.0",
"@angular/compiler": "14.1.0",
"@angular/core": "14.1.0",
"@angular/forms": "14.1.0",
"@angular/material": "14.1.0",
"@angular/material-moment-adapter": "14.1.0",
"@angular/platform-browser": "14.1.0",
"@angular/platform-browser-dynamic": "14.1.0",
"@angular/router": "14.1.0",
"@angular/animations": "14.1.3",
"@angular/cdk": "14.1.3",
"@angular/common": "14.1.3",
"@angular/compiler": "14.1.3",
"@angular/core": "14.1.3",
"@angular/forms": "14.1.3",
"@angular/material": "14.1.3",
"@angular/material-moment-adapter": "14.1.3",
"@angular/platform-browser": "14.1.3",
"@angular/platform-browser-dynamic": "14.1.3",
"@angular/router": "14.1.3",
"@ngneat/transloco": "4.1.1",
"apexcharts": "3.35.3",
"apexcharts": "3.35.5",
"crypto-js": "3.3.0",
"highlight.js": "11.6.0",
"lodash-es": "4.17.21",
@ -38,42 +38,42 @@
"quill": "1.3.7",
"rxjs": "7.5.6",
"tslib": "2.4.0",
"zone.js": "0.11.6"
"zone.js": "0.11.8"
},
"devDependencies": {
"@angular-devkit/build-angular": "14.1.0",
"@angular-devkit/build-angular": "14.1.3",
"@angular-eslint/builder": "14.0.2",
"@angular-eslint/eslint-plugin": "14.0.2",
"@angular-eslint/eslint-plugin-template": "14.0.2",
"@angular-eslint/schematics": "14.0.2",
"@angular-eslint/template-parser": "14.0.2",
"@angular/cli": "14.1.0",
"@angular/compiler-cli": "14.1.0",
"@angular/cli": "14.1.3",
"@angular/compiler-cli": "14.1.3",
"@tailwindcss/line-clamp": "0.4.0",
"@tailwindcss/typography": "0.5.4",
"@types/chroma-js": "2.1.4",
"@types/crypto-js": "3.1.47",
"@types/highlight.js": "10.1.0",
"@types/jasmine": "4.0.3",
"@types/lodash": "4.14.182",
"@types/lodash": "4.14.184",
"@types/lodash-es": "4.17.6",
"@typescript-eslint/eslint-plugin": "5.30.7",
"@typescript-eslint/parser": "5.30.7",
"autoprefixer": "10.4.7",
"@typescript-eslint/eslint-plugin": "5.33.1",
"@typescript-eslint/parser": "5.33.1",
"autoprefixer": "10.4.8",
"chroma-js": "2.4.2",
"eslint": "8.20.0",
"eslint": "8.22.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.3.3",
"eslint-plugin-jsdoc": "39.3.6",
"eslint-plugin-prefer-arrow": "1.2.3",
"jasmine-core": "4.2.0",
"jasmine-core": "4.3.0",
"karma": "6.4.0",
"karma-chrome-launcher": "3.1.1",
"karma-coverage": "2.2.0",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"lodash": "4.17.21",
"postcss": "8.4.14",
"tailwindcss": "3.1.6",
"postcss": "8.4.16",
"tailwindcss": "3.1.8",
"typescript": "4.7.4"
}
}

View File

@ -1,3 +1,3 @@
import { Version } from '@fuse/version/version';
export const FUSE_VERSION = new Version('15.1.0').full;
export const FUSE_VERSION = new Version('15.2.0').full;

View File

@ -967,7 +967,7 @@ export const defaultNavigation: FuseNavigationItem[] = [
icon : 'heroicons_outline:speakerphone',
link : '/docs/changelog',
badge: {
title : '15.1.0',
title : '15.2.0',
classes: 'px-2 bg-yellow-300 text-black rounded-full'
}
},

View File

@ -10,9 +10,38 @@ export class ChangelogComponent
{
changelog: any[] = [
// v15.2.0
{
version : 'v15.2.0',
releaseDate: 'Aug 22, 2022',
changes : [
{
type: 'Changed',
list: [
'(dependencies) Updated Angular & Angular Material to v14.1.3',
'(dependencies) Updated various other packages'
]
},
{
type: 'Fixed',
list: [
'(@fuse/tailwind/plugins/theming) Simplified the plugin and added more detailed comments',
'(tailwind.config) Fixed: typo on comment',
'(tailwind) Removed the "aspect-ratio" plugin in favor of the included "aspect" utility',
'(layout/common/messages) Fixed: Wrong color classes on "No Messages" icon',
'(layout/common/notifications) Fixed: Wrong color classes on "No Notifications" icon',
'(layout/common/shortcuts) Fixed: Wrong color classes on "No Shortcuts" icon',
'(dashboards/project) Removed unnecessary classes from the buttons',
'(apps/mailbox) Better label toggle behavior',
'(apps/tasks) Better tag toggle behavior',
'(docs) Fixed: Typos'
]
}
]
},
// v15.1.0
{
version : 'v15.0.0',
version : 'v15.1.0',
releaseDate: 'Jul 21, 2022',
changes : [
{