mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-08 19:45:08 +00:00
Updated the version number and added the changelog
This commit is contained in:
parent
3cc4f31238
commit
714bc49c4e
50718
package-lock.json
generated
50718
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "fuse-angular",
|
"name": "fuse-angular",
|
||||||
"version": "14.2.0",
|
"version": "15.0.0",
|
||||||
"description": "Fuse - Angular Admin Template and Starter Project",
|
"description": "Fuse - Angular Admin Template and Starter Project",
|
||||||
"author": "https://themeforest.net/user/srcn",
|
"author": "https://themeforest.net/user/srcn",
|
||||||
"license": "https://themeforest.net/licenses/standard",
|
"license": "https://themeforest.net/licenses/standard",
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
import { Version } from '@fuse/version/version';
|
import { Version } from '@fuse/version/version';
|
||||||
|
|
||||||
export const FUSE_VERSION = new Version('14.2.0').full;
|
export const FUSE_VERSION = new Version('15.0.0').full;
|
||||||
|
|
|
@ -967,7 +967,7 @@ export const defaultNavigation: FuseNavigationItem[] = [
|
||||||
icon : 'heroicons_outline:speakerphone',
|
icon : 'heroicons_outline:speakerphone',
|
||||||
link : '/docs/changelog',
|
link : '/docs/changelog',
|
||||||
badge: {
|
badge: {
|
||||||
title : '14.2.0',
|
title : '15.0.0',
|
||||||
classes: 'px-2 bg-yellow-300 text-black rounded-full'
|
classes: 'px-2 bg-yellow-300 text-black rounded-full'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -10,6 +10,54 @@ export class ChangelogComponent
|
||||||
{
|
{
|
||||||
changelog: any[] = [
|
changelog: any[] = [
|
||||||
|
|
||||||
|
// v15.0.0
|
||||||
|
{
|
||||||
|
version : 'v15.0.0',
|
||||||
|
releaseDate: 'TBA',
|
||||||
|
changes : [
|
||||||
|
{
|
||||||
|
type: 'Added',
|
||||||
|
list: [
|
||||||
|
'(@fuse/navigation) Added "fragment" and "queryParams" support along with "preserveFragment" and "queryParamsHandling" on navigation items',
|
||||||
|
'(@fuse/overrides/quill) Added tooltip styles for better compatibility',
|
||||||
|
'(@fuse/services/platform) Added platform checker service',
|
||||||
|
'(global) Added custom scrollbar styling for platforms other than macOS and iOS',
|
||||||
|
'(layout/common/search) Implemented the new MatAutocomplete "autoSelectActiveOption" functionality',
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'Changed',
|
||||||
|
list: [
|
||||||
|
'(dependencies) Updated Angular & Angular Material to v14',
|
||||||
|
'(dependencies) Updated various other packages',
|
||||||
|
'(global) Replace @import with @use in scss files',
|
||||||
|
'(global) Replaced linked buttons with a tags + removed unnecessary routerLink attributes from some buttons',
|
||||||
|
'(global) Replaced iconsmind icons with heroicons and removed the iconsmind because of the bundle size concerns',
|
||||||
|
'(FuseDrawer) Updated the overlay and animation handling code for better stability',
|
||||||
|
'(@fuse/overrides/quill) Better scrolling for Quill editor',
|
||||||
|
'(auth) Made the renewing token on "sign-in-with-token" process an optional step to simplify the login process',
|
||||||
|
'(auth) Changed the url on "signInUsingToken" method to reflect the mock-api changes',
|
||||||
|
'(mock-api) Replaced the "refresh-access-token" url with "sign-in-with-token"',
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'Fixed',
|
||||||
|
list: [
|
||||||
|
'(@fuse/navigation) Collapse animation doesn"t work smoothly because of the parent"s margin',
|
||||||
|
'(@fuse/service/confirmation) Cleaned-up the dialog component',
|
||||||
|
'(layout) The theme settings cog is not positioned correctly in Empty layout',
|
||||||
|
'(auth/sign-up) Missing ngForm reference',
|
||||||
|
'(apps/academy) Ring outside the current step"s number is not visible',
|
||||||
|
'(apps/chat) Empty route related issues',
|
||||||
|
'(apps/chat) Empty route related issues',
|
||||||
|
'(apps/mailbox) Empty route related issues',
|
||||||
|
'(apps/mailbox) Quill editor tooltips are not positioning correctly',
|
||||||
|
'(mock-api/file-manager) http params are not working properly because of the new string conversion',
|
||||||
|
'(ui/page-layouts) Toggle button selected background is not visible'
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
// v14.2.0
|
// v14.2.0
|
||||||
{
|
{
|
||||||
version : 'v14.2.0',
|
version : 'v14.2.0',
|
||||||
|
|
Loading…
Reference in New Issue
Block a user