Skip to content

Commit 850474b

Browse files
committed
angular 17 upgrade complete with prettier and build
1 parent 43d924d commit 850474b

103 files changed

Lines changed: 3228 additions & 4134 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Datta Able angular 15 Free Admin Dashboard
22

3-
Datta Able dashboard template built using angular 15 with bootstrap 5 framework, It is a free lite version of [Datta Able Angular](https://codedthemes.com/item/datta-able-angular/) Dashboard Template will complete your admin dashboard needs.
3+
Datta Able dashboard template built using angular 17 with bootstrap 5.x.x framework, It is a free lite version of [Datta Able Angular](https://codedthemes.com/item/datta-able-angular/) Dashboard Template will complete your admin dashboard needs.
44

55
Datta Able Angular Free Admin Template comes with variety of components like Button, Badges, Breadcrumb, Pagination, Collapse, Tabs & Pills, Form Elements, Table, Charts & Authentication Pages.
66

@@ -62,7 +62,7 @@ git clone https://github.com/codedthemes/datta-able-free-angular-admin-template.
6262

6363
#### Terminal Commands
6464

65-
This project was generated with Angular CLI version 15.x and angular 15.x.
65+
This project was generated with Angular CLI version 17.x and angular 17.x.
6666

6767
1. Install NodeJs from [NodeJs Official Page](https://nodejs.org/en)
6868
2. Open Terminal.
@@ -81,11 +81,11 @@ Datta Able Lite version documentation cover in its Pro version documentation - c
8181

8282
## Build With
8383

84-
- [Angular CLI](https://github.com/angular/angular-cli) 15.x
84+
- [Angular CLI](https://github.com/angular/angular-cli) 17.x
8585
- [Latest bootstrap 5 Stable](https://getbootstrap.com/)
8686
- [SASS Powered](https://sass-lang.com/)
87-
- [NodeJs](https://nodejs.org/en/) v18.0.0
88-
- [NgBootstrap](https://ng-bootstrap.github.io/#/home) 5.0.0
87+
- [NodeJs](https://nodejs.org/en/) v20.10.0
88+
- [NgBootstrap](https://ng-bootstrap.github.io/#/home) 16.0.0
8989

9090
## Directory Structure
9191

@@ -172,11 +172,12 @@ We are continuously working in Datta Able Angular Project and going to make it a
172172
#### Layouts
173173

174174
-Vertical version
175-
- Static
176-
- Fixed
177-
- Navbar Fixed
178-
- Collapse Menu
179-
- Vertical RTL
175+
176+
- Static
177+
- Fixed
178+
- Navbar Fixed
179+
- Collapse Menu
180+
- Vertical RTL
180181
- Horizontal version
181182
- Horizontal v2
182183
- Horizontal RTL
@@ -191,7 +192,7 @@ We are continuously working in Datta Able Angular Project and going to make it a
191192
- Login/Register pages version 2
192193
- User profile
193194
- Maintenance Pages like Error Pages, Offline UI, Maintenance
194-
- Login/Register pages
195+
- Login/Register pages
195196

196197
#### Basic & Advance Components
197198

angular.json

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@
1717
"build": {
1818
"builder": "@angular-devkit/build-angular:browser",
1919
"options": {
20-
"allowedCommonJsDependencies": [
21-
"apexcharts"
22-
],
20+
"allowedCommonJsDependencies": ["apexcharts"],
2321
"outputPath": "dist",
2422
"index": "src/index.html",
2523
"main": "src/main.ts",
@@ -31,9 +29,7 @@
3129
"node_modules/bootstrap/scss/bootstrap.scss",
3230
"src/styles.scss"
3331
],
34-
"scripts": [
35-
"node_modules/apexcharts/dist/apexcharts.min.js"
36-
]
32+
"scripts": ["node_modules/apexcharts/dist/apexcharts.min.js"]
3733
},
3834
"configurations": {
3935
"production": {
@@ -72,18 +68,18 @@
7268
"builder": "@angular-devkit/build-angular:dev-server",
7369
"configurations": {
7470
"production": {
75-
"browserTarget": "datta-able-free-angular-admin-template:build:production"
71+
"buildTarget": "datta-able-free-angular-admin-template:build:production"
7672
},
7773
"development": {
78-
"browserTarget": "datta-able-free-angular-admin-template:build:development"
74+
"buildTarget": "datta-able-free-angular-admin-template:build:development"
7975
}
8076
},
8177
"defaultConfiguration": "development"
8278
},
8379
"extract-i18n": {
8480
"builder": "@angular-devkit/build-angular:extract-i18n",
8581
"options": {
86-
"browserTarget": "datta-able-free-angular-admin-template:build"
82+
"buildTarget": "datta-able-free-angular-admin-template:build"
8783
}
8884
},
8985
"test": {

karma.conf.js

Lines changed: 15 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33

44
module.exports = function (config) {
55
config.set({
6-
basePath: '',
7-
frameworks: ['jasmine', '@angular-devkit/build-angular'],
6+
basePath: "",
7+
frameworks: ["jasmine", "@angular-devkit/build-angular"],
88
plugins: [
9-
require('karma-jasmine'),
10-
require('karma-chrome-launcher'),
11-
require('karma-jasmine-html-reporter'),
12-
require('karma-coverage'),
13-
require('@angular-devkit/build-angular/plugins/karma')
9+
require("karma-jasmine"),
10+
require("karma-chrome-launcher"),
11+
require("karma-jasmine-html-reporter"),
12+
require("karma-coverage"),
13+
require("@angular-devkit/build-angular/plugins/karma"),
1414
],
1515
client: {
1616
jasmine: {
@@ -19,26 +19,23 @@ module.exports = function (config) {
1919
// for example, you can disable the random execution with `random: false`
2020
// or set a specific seed with `seed: 4321`
2121
},
22-
clearContext: false // leave Jasmine Spec Runner output visible in browser
22+
clearContext: false, // leave Jasmine Spec Runner output visible in browser
2323
},
2424
jasmineHtmlReporter: {
25-
suppressAll: true // removes the duplicated traces
25+
suppressAll: true, // removes the duplicated traces
2626
},
2727
coverageReporter: {
28-
dir: require('path').join(__dirname, './coverage/datta-able-free'),
29-
subdir: '.',
30-
reporters: [
31-
{ type: 'html' },
32-
{ type: 'text-summary' }
33-
]
28+
dir: require("path").join(__dirname, "./coverage/datta-able-free"),
29+
subdir: ".",
30+
reporters: [{ type: "html" }, { type: "text-summary" }],
3431
},
35-
reporters: ['progress', 'kjhtml'],
32+
reporters: ["progress", "kjhtml"],
3633
port: 9876,
3734
colors: true,
3835
logLevel: config.LOG_INFO,
3936
autoWatch: true,
40-
browsers: ['Chrome'],
37+
browsers: ["Chrome"],
4138
singleRun: false,
42-
restartOnFileChange: true
39+
restartOnFileChange: true,
4340
});
4441
};

0 commit comments

Comments
 (0)