From b2c35587d414579ebfc2f05293b47917830770b3 Mon Sep 17 00:00:00 2001 From: Dikshit Moradiya <106728438+ct-dixit@users.noreply.github.com> Date: Mon, 8 Jul 2024 11:50:49 +0530 Subject: [PATCH] package upgrade done (#10) (#11) * package upgrade done (#10) * yml file update --- .github/workflows/prod.yml | 8 +- .prettierrc | 2 +- package.json | 62 +- .../authentication/login/login.component.html | 7 +- .../register/register.component.html | 17 +- .../analytics-chart.component.html | 6 +- .../dashboard/dashboard.component.html | 23 +- .../typography/typography.component.html | 45 +- .../admin-layout/admin-layout.component.html | 6 +- .../admin-layout/admin-layout.component.ts | 15 + .../admin-layout/nav-bar/nav-bar.component.ts | 9 +- .../nav-right/nav-right.component.html | 32 +- .../nav-content/nav-content.component.html | 3 +- .../breadcrumb/breadcrumb.component.html | 12 +- src/scss/themes/layouts/menu/sidebar.scss | 12 + yarn.lock | 4035 ++++++++--------- 16 files changed, 2154 insertions(+), 2140 deletions(-) diff --git a/.github/workflows/prod.yml b/.github/workflows/prod.yml index 1927fb5..43c7ac2 100644 --- a/.github/workflows/prod.yml +++ b/.github/workflows/prod.yml @@ -22,15 +22,15 @@ jobs: - name: 🚚 Get latest code uses: actions/checkout@v3 - - name: Use Node.js 18 + - name: Use Node.js 20 uses: actions/setup-node@v3 with: - node-version: '18' + node-version: '20.x' - name: 🔨 Build Project run: | - npm i --legacy-peer-deps - npm run build-prod + yarn + yarn build-prod - name: 📂 Deploy to Server uses: easingthemes/ssh-deploy@main env: diff --git a/.prettierrc b/.prettierrc index dbd0dce..d29b0e5 100644 --- a/.prettierrc +++ b/.prettierrc @@ -5,6 +5,6 @@ "trailingComma": "none", "tabWidth": 2, "useTabs": false, - "htmlWhitespaceSensitivity": "strict", + "htmlWhitespaceSensitivity": "ignore", "bracketSameLine": false } diff --git a/package.json b/package.json index a200f96..e26870e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mantis-free-angular-admin-template", - "version": "4.0.0", + "version": "4.1.0", "author": "CodedThemes", "license": "MIT", "scripts": { @@ -15,47 +15,47 @@ }, "private": false, "dependencies": { - "@angular/animations": "^18.0.0-next.3", - "@angular/cdk": "^18.0.0-next.3", - "@angular/common": "^18.0.0-next.3", - "@angular/compiler": "^18.0.0-next.3", - "@angular/core": "^18.0.0-next.3", - "@angular/forms": "^18.0.0-next.3", - "@angular/platform-browser": "^18.0.0-next.3", - "@angular/platform-browser-dynamic": "^18.0.0-next.3", - "@angular/router": "^18.0.0-next.3", - "@ant-design/icons-angular": "^17.0.0", - "@ng-bootstrap/ng-bootstrap": "^16.0.0", + "@angular/animations": "^18.0.5", + "@angular/cdk": "^18.0.5", + "@angular/common": "^18.0.5", + "@angular/compiler": "^18.0.5", + "@angular/core": "^18.0.5", + "@angular/forms": "^18.0.5", + "@angular/platform-browser": "^18.0.5", + "@angular/platform-browser-dynamic": "^18.0.5", + "@angular/router": "^18.0.5", + "@ant-design/icons-angular": "^18.0.0", + "@ng-bootstrap/ng-bootstrap": "^17.0.0", "@popperjs/core": "^2.11.8", - "apexcharts": "^3.45.2", - "bootstrap": "^5.3.2", - "ng-apexcharts": "^1.8.0", - "ngx-scrollbar": "^13.0.3", + "apexcharts": "^3.49.2", + "bootstrap": "^5.3.3", + "ng-apexcharts": "^1.11.0", + "ngx-scrollbar": "^15.0.1", "rxjs": "~7.8.1", - "tslib": "^2.6.2", - "zone.js": "~0.14.4" + "tslib": "^2.6.3", + "zone.js": "~0.14.7" }, "devDependencies": { - "@angular-devkit/build-angular": "^18.0.0-next.3", - "@angular-eslint/builder": "17.3.0", - "@angular-eslint/eslint-plugin": "17.3.0", - "@angular-eslint/eslint-plugin-template": "17.3.0", - "@angular-eslint/schematics": "17.3.0", - "@angular-eslint/template-parser": "17.3.0", - "@angular/cli": "~18.0.0-next.3", - "@angular/compiler-cli": "^18.0.0-next.3", + "@angular-devkit/build-angular": "^18.0.6", + "@angular-eslint/builder": "18.0.1", + "@angular-eslint/eslint-plugin": "18.0.1", + "@angular-eslint/eslint-plugin-template": "18.0.1", + "@angular-eslint/schematics": "18.0.1", + "@angular-eslint/template-parser": "18.0.1", + "@angular/cli": "~18.0.6", + "@angular/compiler-cli": "^18.0.5", "@types/jasmine": "~5.1.4", - "@types/node": "^20.12.7", - "@typescript-eslint/eslint-plugin": "7.7.1", - "@typescript-eslint/parser": "7.7.1", - "eslint": "^8.56.0", + "@types/node": "^20.14.9", + "@typescript-eslint/eslint-plugin": "7.14.1", + "@typescript-eslint/parser": "7.14.1", + "eslint": "^9.5.0", "jasmine-core": "~5.1.2", "karma": "~6.4.3", "karma-chrome-launcher": "~3.2.0", "karma-coverage": "~2.2.1", "karma-jasmine": "~5.1.0", "karma-jasmine-html-reporter": "~2.1.0", - "prettier": "3.2.5", + "prettier": "3.3.2", "typescript": "5.4" } } diff --git a/src/app/demo/authentication/login/login.component.html b/src/app/demo/authentication/login/login.component.html index 4cb5183..e947cc6 100644 --- a/src/app/demo/authentication/login/login.component.html +++ b/src/app/demo/authentication/login/login.component.html @@ -37,7 +37,7 @@
Forgot Password? @@ -47,7 +47,10 @@
Forgot Password? @@ -63,7 +65,10 @@

Sign up

+