Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions .github/workflows/prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:

steps:
- name: 🚚 Get latest code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Use Node.js 20
uses: actions/setup-node@v3
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: '20.x'
node-version: '22'

- name: 🔨 Build Project
run: |
Expand All @@ -37,7 +37,8 @@ jobs:
SSH_PRIVATE_KEY: ${{ secrets.SERVER_SSH_KEY }}
# ARGS: "-rltgoDzvO --delete"
SOURCE: 'dist/'
REMOTE_HOST: 192.34.62.123
REMOTE_USER: mantis
TARGET: public_html/angular/free
REMOTE_HOST: 145.79.3.173
REMOTE_USER: u965251139
REMOTE_PORT: "65002"
TARGET: domains/mantisdashboard.com/public_html/angular/free
EXCLUDE: '/node_modules/'
3 changes: 2 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
"tabWidth": 2,
"useTabs": false,
"htmlWhitespaceSensitivity": "ignore",
"bracketSameLine": false
"bracketSameLine": false,
"endOfLine": "lf"
}
61 changes: 30 additions & 31 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mantis-free-angular-admin-template",
"version": "5.1.0",
"version": "5.2.0",
"author": "CodedThemes",
"license": "MIT",
"scripts": {
Expand All @@ -16,43 +16,42 @@
},
"private": false,
"dependencies": {
"@angular/animations": "20.0.0-next.8",
"@angular/cdk": "19.2.16",
"@angular/common": "20.0.0-next.8",
"@angular/compiler": "20.0.0-next.8",
"@angular/core": "20.0.0-next.8",
"@angular/forms": "20.0.0-next.8",
"@angular/platform-browser": "20.0.0-next.8",
"@angular/platform-browser-dynamic": "20.0.0-next.8",
"@angular/router": "20.0.0-next.8",
"@ant-design/icons-angular": "19.0.0",
"@ng-bootstrap/ng-bootstrap": "18.0.0",
"@angular/animations": "20.0.5",
"@angular/cdk": "20.0.4",
"@angular/common": "20.0.5",
"@angular/compiler": "20.0.5",
"@angular/core": "20.0.5",
"@angular/forms": "20.0.5",
"@angular/platform-browser": "20.0.5",
"@angular/platform-browser-dynamic": "20.0.5",
"@angular/router": "20.0.5",
"@ant-design/icons-angular": "20.0.0",
"@ng-bootstrap/ng-bootstrap": "19.0.0",
"@popperjs/core": "2.11.8",
"apexcharts": "4.7.0",
"bootstrap": "5.3.6",
"ng-apexcharts": "1.15.0",
"bootstrap": "5.3.7",
"ng-apexcharts": "1.16.0",
"ngx-scrollbar": "18.0.0",
"rxjs": "~7.8.2",
"tslib": "2.8.1",
"zone.js": "~0.15.0"
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "20.0.0-next.8",
"@angular-eslint/builder": "19.4.0",
"@angular-eslint/eslint-plugin": "19.4.0",
"@angular-eslint/eslint-plugin-template": "19.4.0",
"@angular-eslint/schematics": "19.4.0",
"@angular-eslint/template-parser": "19.4.0",
"@angular/cli": "20.0.0-next.8",
"@angular/compiler-cli": "20.0.0-next.8",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.27.0",
"@types/jasmine": "~5.1.8",
"@types/node": "22.15.21",
"@typescript-eslint/eslint-plugin": "8.32.1",
"@typescript-eslint/parser": "8.32.1",
"eslint": "9.27.0",
"prettier": "3.5.3",
"@angular-devkit/build-angular": "20.0.4",
"@angular-eslint/builder": "20.1.1",
"@angular-eslint/eslint-plugin": "20.1.1",
"@angular-eslint/eslint-plugin-template": "20.1.1",
"@angular-eslint/schematics": "20.1.1",
"@angular-eslint/template-parser": "20.1.1",
"@angular/cli": "20.0.4",
"@angular/compiler-cli": "20.0.5",
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.29.0",
"@types/node": "24.0.4",
"@typescript-eslint/eslint-plugin": "8.35.0",
"@typescript-eslint/parser": "8.35.0",
"eslint": "9.29.0",
"prettier": "3.6.1",
"typescript": "5.8.3"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
Expand Down
1 change: 1 addition & 0 deletions src/app/app.component.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// This file is intentionally left empty to allow customers to add custom CSS if needed.
2 changes: 2 additions & 0 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// angular import
import { Component } from '@angular/core';
import { RouterOutlet } from '@angular/router';

// project import
import { SpinnerComponent } from './theme/shared/components/spinner/spinner.component';

@Component({
Expand Down
2 changes: 1 addition & 1 deletion src/app/demo/admin-panel/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Please continue reading below to explore the features of the Pro version:

Elevate your project with the Pro Version of the <b>Mantis Admin Panel!</b> Built to cater to modern web applications, the Pro version is loaded with advanced features, intuitive design elements, and dynamic tools that ensure seamless functionality.

This page (folder) is a sneak peek into the premium features available in <b>version 2.2.0</b>. Upgrade to the Pro version to unlock exclusive pages and components that will take your project to the next level.
This page (folder) is a sneak peek into the premium features available in <b>version 2.3.0</b>. Upgrade to the Pro version to unlock exclusive pages and components that will take your project to the next level.

## Included in the Pro Version:

Expand Down
2 changes: 1 addition & 1 deletion src/app/demo/application/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Please continue reading below to explore the features of the Pro version:

Elevate your project with the Pro Version of the <b>Mantis Admin Panel!</b> Built to cater to modern web applications, the Pro version is loaded with advanced features, intuitive design elements, and dynamic tools that ensure seamless functionality.

This page (folder) is a sneak peek into the premium features available in <b>version 2.2.0</b>. Upgrade to the Pro version to unlock exclusive pages and components that will take your project to the next level.
This page (folder) is a sneak peek into the premium features available in <b>version 2.3.0</b>. Upgrade to the Pro version to unlock exclusive pages and components that will take your project to the next level.

## Included in the Pro Version:

Expand Down
2 changes: 1 addition & 1 deletion src/app/demo/chart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Please continue reading below to explore the features of the Pro version:

Elevate your project with the Pro Version of the <b>Mantis Admin Panel!</b> Built to cater to modern web applications, the Pro version is loaded with advanced features, intuitive design elements, and dynamic tools that ensure seamless functionality.

This page (folder) is a sneak peek into the premium features available in <b>version 2.2.0</b>. Upgrade to the Pro version to unlock exclusive pages and components that will take your project to the next level.
This page (folder) is a sneak peek into the premium features available in <b>version 2.3.0</b>. Upgrade to the Pro version to unlock exclusive pages and components that will take your project to the next level.

## Included in the Pro Version:

Expand Down
2 changes: 1 addition & 1 deletion src/app/demo/component/advance-component/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Please continue reading below to explore the features of the Pro version:

Elevate your project with the Pro Version of the <b>Mantis Admin Panel!</b> Built to cater to modern web applications, the Pro version is loaded with advanced features, intuitive design elements, and dynamic tools that ensure seamless functionality.

This page (folder) is a sneak peek into the premium features available in <b>version 2.2.0</b>. Upgrade to the Pro version to unlock exclusive pages and components that will take your project to the next level.
This page (folder) is a sneak peek into the premium features available in <b>version 2.3.0</b>. Upgrade to the Pro version to unlock exclusive pages and components that will take your project to the next level.

## Included in the Pro Version:

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// This file is intentionally left empty to allow customers to add custom CSS if needed.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// This file is intentionally left empty to allow customers to add custom CSS if needed.
2 changes: 1 addition & 1 deletion src/app/demo/forms/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Please continue reading below to explore the features of the Pro version:

Elevate your project with the Pro Version of the <b>Mantis Admin Panel!</b> Built to cater to modern web applications, the Pro version is loaded with advanced features, intuitive design elements, and dynamic tools that ensure seamless functionality.

This page (folder) is a sneak peek into the premium features available in <b>version 2.2.0</b>. Upgrade to the Pro version to unlock exclusive pages and components that will take your project to the next level.
This page (folder) is a sneak peek into the premium features available in <b>version 2.3.0</b>. Upgrade to the Pro version to unlock exclusive pages and components that will take your project to the next level.

## Included in the Pro Version:

Expand Down
2 changes: 1 addition & 1 deletion src/app/demo/layouts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Please continue reading below to explore the features of the Pro version:

Elevate your project with the Pro Version of the <b>Mantis Admin Panel!</b> Built to cater to modern web applications, the Pro version is loaded with advanced features, intuitive design elements, and dynamic tools that ensure seamless functionality.

This page (folder) is a sneak peek into the premium features available in <b>version 2.2.0</b>. Upgrade to the Pro version to unlock exclusive pages and components that will take your project to the next level.
This page (folder) is a sneak peek into the premium features available in <b>version 2.3.0</b>. Upgrade to the Pro version to unlock exclusive pages and components that will take your project to the next level.

## Included in the Pro Version:

Expand Down
1 change: 1 addition & 0 deletions src/app/demo/others/sample-page/sample-page.component.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// This file is intentionally left empty to allow customers to add custom CSS if needed.
2 changes: 1 addition & 1 deletion src/app/demo/table/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Please continue reading below to explore the features of the Pro version:

Elevate your project with the Pro Version of the <b>Mantis Admin Panel!</b> Built to cater to modern web applications, the Pro version is loaded with advanced features, intuitive design elements, and dynamic tools that ensure seamless functionality.

This page (folder) is a sneak peek into the premium features available in <b>version 2.2.0</b>. Upgrade to the Pro version to unlock exclusive pages and components that will take your project to the next level.
This page (folder) is a sneak peek into the premium features available in <b>version 2.3.0</b>. Upgrade to the Pro version to unlock exclusive pages and components that will take your project to the next level.

## Included in the Pro Version:

Expand Down
2 changes: 1 addition & 1 deletion src/app/demo/widget/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Please continue reading below to explore the features of the Pro version:

Elevate your project with the Pro Version of the <b>Mantis Admin Panel!</b> Built to cater to modern web applications, the Pro version is loaded with advanced features, intuitive design elements, and dynamic tools that ensure seamless functionality.

This page (folder) is a sneak peek into the premium features available in <b>version 2.2.0</b>. Upgrade to the Pro version to unlock exclusive pages and components that will take your project to the next level.
This page (folder) is a sneak peek into the premium features available in <b>version 2.3.0</b>. Upgrade to the Pro version to unlock exclusive pages and components that will take your project to the next level.

## Included in the Pro Version:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,3 @@
</div>
</div>
</footer>
<app-configuration />
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// This file is intentionally left empty to allow customers to add custom CSS if needed.
3 changes: 1 addition & 2 deletions src/app/theme/layouts/admin-layout/admin-layout.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,11 @@ import { RouterModule } from '@angular/router';

import { NavBarComponent } from './nav-bar/nav-bar.component';
import { NavigationComponent } from './navigation/navigation.component';
import { ConfigurationComponent } from './configuration/configuration.component';
import { BreadcrumbComponent } from 'src/app/theme/shared/components/breadcrumb/breadcrumb.component';

@Component({
selector: 'app-admin',
imports: [CommonModule, BreadcrumbComponent, NavigationComponent, NavBarComponent, RouterModule, ConfigurationComponent],
imports: [CommonModule, BreadcrumbComponent, NavigationComponent, NavBarComponent, RouterModule],
templateUrl: './admin-layout.component.html',
styleUrls: ['./admin-layout.component.scss']
})
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// This file is intentionally left empty to allow customers to add custom CSS if needed.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// This file is intentionally left empty to allow customers to add custom CSS if needed.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// This file is intentionally left empty to allow customers to add custom CSS if needed.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// This file is intentionally left empty to allow customers to add custom CSS if needed.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// This file is intentionally left empty to allow customers to add custom CSS if needed.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// This file is intentionally left empty to allow customers to add custom CSS if needed.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// This file is intentionally left empty to allow customers to add custom CSS if needed.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// This file is intentionally left empty to allow customers to add custom CSS if needed.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// This file is intentionally left empty to allow customers to add custom CSS if needed.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// This file is intentionally left empty to allow customers to add custom CSS if needed.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// This file is intentionally left empty to allow customers to add custom CSS if needed.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// This file is intentionally left empty to allow customers to add custom CSS if needed.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// This file is intentionally left empty to allow customers to add custom CSS if needed.
1 change: 1 addition & 0 deletions src/app/theme/shared/components/card/card.component.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// This file is intentionally left empty to allow customers to add custom CSS if needed.
2 changes: 1 addition & 1 deletion src/app/theme/shared/directive/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Please continue reading below to explore the features of the Pro version:

Elevate your project with the Pro Version of the <b>Mantis Admin Panel!</b> Built to cater to modern web applications, the Pro version is loaded with advanced features, intuitive design elements, and dynamic tools that ensure seamless functionality.

This page (folder) is a sneak peek into the premium features available in <b>version 2.2.0</b>. Upgrade to the Pro version to unlock exclusive pages and components that will take your project to the next level.
This page (folder) is a sneak peek into the premium features available in <b>version 2.3.0</b>. Upgrade to the Pro version to unlock exclusive pages and components that will take your project to the next level.

## Included in the Pro Version:

Expand Down
2 changes: 1 addition & 1 deletion src/app/theme/shared/service/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Please continue reading below to explore the features of the Pro version:

Elevate your project with the Pro Version of the <b>Mantis Admin Panel!</b> Built to cater to modern web applications, the Pro version is loaded with advanced features, intuitive design elements, and dynamic tools that ensure seamless functionality.

This page (folder) is a sneak peek into the premium features available in <b>version 2.2.0</b>. Upgrade to the Pro version to unlock exclusive pages and components that will take your project to the next level.
This page (folder) is a sneak peek into the premium features available in <b>version 2.3.0</b>. Upgrade to the Pro version to unlock exclusive pages and components that will take your project to the next level.

## Included in the Pro Version:

Expand Down
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@
<body part="preset-1">
<app-root></app-root>
</body>
</html>
</html>
7 changes: 0 additions & 7 deletions src/scss/settings/theme-variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@

// card
--pc-card-box-shadow: none;

// horizontal menu
--pc-header-submenu-background: #{$white};
--pc-header-submenu-color: #{$gray-600};
}

$header-height: 60px;
Expand All @@ -37,9 +33,6 @@ $sidebar-collapsed-active-width: 300px;
$sidebar-tab-width: 75px;
$sidebar-tab-navbar-width: 320px;

// horizontal menu
$topbar-height: 60px;

$soft-bg-level: -90%;

// =====================================
Expand Down
Loading