Skip to content

Commit 4c28195

Browse files
authored
Merge pull request #16 from nevi-me/ng-17
Add support for angular 17
2 parents 70370c4 + 4df5505 commit 4c28195

File tree

6 files changed

+43
-37
lines changed

6 files changed

+43
-37
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## [1.0.0] - 2024-2-21
2+
### Update
3+
- Angular 17 update

angular.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -103,18 +103,18 @@
103103
"builder": "@angular-devkit/build-angular:dev-server",
104104
"configurations": {
105105
"production": {
106-
"browserTarget": "consumer:build:production"
106+
"buildTarget": "consumer:build:production"
107107
},
108108
"development": {
109-
"browserTarget": "consumer:build:development"
109+
"buildTarget": "consumer:build:development"
110110
}
111111
},
112112
"defaultConfiguration": "development"
113113
},
114114
"extract-i18n": {
115115
"builder": "@angular-devkit/build-angular:extract-i18n",
116116
"options": {
117-
"browserTarget": "consumer:build"
117+
"buildTarget": "consumer:build"
118118
}
119119
},
120120
"test": {

package.json

+31-28
Original file line numberDiff line numberDiff line change
@@ -22,46 +22,49 @@
2222
},
2323
"private": true,
2424
"dependencies": {
25-
"@angular/animations": "^16.2.0",
26-
"@angular/cdk": "^16.2.8",
27-
"@angular/common": "^16.2.0",
28-
"@angular/compiler": "^16.2.0",
29-
"@angular/core": "^16.2.0",
30-
"@angular/forms": "^16.2.0",
31-
"@angular/platform-browser": "^16.2.0",
32-
"@angular/platform-browser-dynamic": "^16.2.0",
33-
"@angular/router": "^16.2.0",
34-
"@fortawesome/angular-fontawesome": "^0.13.0",
35-
"@fortawesome/fontawesome-svg-core": "^6.4.2",
36-
"@fortawesome/free-brands-svg-icons": "^6.4.2",
37-
"@fortawesome/free-regular-svg-icons": "^6.4.2",
38-
"@fortawesome/free-solid-svg-icons": "^6.4.2",
25+
26+
"@angular/animations": "17.1.3",
27+
"@angular/cdk": "17.1.2",
28+
"@angular/common": "17.1.3",
29+
"@angular/compiler": "17.1.3",
30+
"@angular/core": "17.1.3",
31+
"@angular/forms": "17.1.3",
32+
"@angular/platform-browser": "17.1.3",
33+
"@angular/platform-browser-dynamic": "17.1.3",
34+
"@angular/router": "17.1.3",
35+
"@fortawesome/angular-fontawesome": "^0.14.1",
36+
"@fortawesome/fontawesome-svg-core": "^6.5.1",
37+
"@fortawesome/free-brands-svg-icons": "^6.5.1",
38+
"@fortawesome/free-regular-svg-icons": "^6.5.1",
39+
"@fortawesome/free-solid-svg-icons": "^6.5.1",
3940
"bundle-scss": "^1.5.4",
4041
"cpx": "^1.5.0",
4142
"moment": "^2.29.4",
4243
"ngx-highlightjs": "^10.0.0",
43-
"rxjs": "~7.8.0",
44+
"rxjs": "~7.8.1",
4445
"tailwind-merge": "^1.14.0",
4546
"tslib": "^2.3.0",
4647
"xmlbuilder": "^15.1.1",
47-
"zone.js": "~0.13.0"
48+
"zone.js": "~0.14.3"
4849
},
4950
"devDependencies": {
50-
"@angular-devkit/build-angular": "^16.2.2",
51-
"@angular/cli": "~16.2.2",
52-
"@angular/compiler-cli": "^16.2.0",
51+
"@angular-devkit/build-angular": "17.1.3",
52+
"@angular/cli": "17.1.3",
53+
"@angular/compiler-cli": "17.1.3",
5354
"@material-tailwind/html": "^2.1.0",
54-
"@types/jasmine": "~4.3.0",
55+
"@types/jasmine": "5.1.4",
56+
"jasmine-core": "5.1.2",
57+
"jasmine-marbles": "0.9.2",
58+
"jasmine-spec-reporter": "7.0.0",
59+
"karma": "6.4.2",
60+
"karma-chrome-launcher": "3.2.0",
61+
"karma-coverage": "2.2.1",
62+
"karma-jasmine": "5.1.0",
63+
"karma-jasmine-html-reporter": "2.1.0",
5564
"autoprefixer": "^10.4.15",
56-
"jasmine-core": "~4.6.0",
57-
"karma": "~6.4.0",
58-
"karma-chrome-launcher": "~3.2.0",
59-
"karma-coverage": "~2.2.0",
60-
"karma-jasmine": "~5.1.0",
61-
"karma-jasmine-html-reporter": "~2.1.0",
62-
"ng-packagr": "^16.2.3",
65+
"ng-packagr": "^17.1.2",
6366
"postcss": "^8.4.29",
6467
"tailwindcss": "^3.3.3",
65-
"typescript": "~5.1.3"
68+
"typescript": "~5.3.3"
6669
}
6770
}

projects/consumer/src/app/docs/pages/installation/installation.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
<p
143143
class="block antialiased font-sans text-base leading-relaxed text-inherit !mb-4 !font-normal !text-gray-600"
144144
>
145-
In your project's styles.css or styles.scss, import David UI Angular's styles along with Tailwind CSS and you also need to import the <b>@angular/cdk</b> styles:
145+
In your project's styles.css or styles.scss, import David UI Angular's styles along with Tailwind CSS and you also need to import the <b>&#64;angular/cdk</b> styles:
146146
</p>
147147

148148
<code-previewer [Code]="stylesCode"> </code-previewer>

projects/david-ui-angular/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# David UI Angular - 1.0.0
1+
# David UI Angular - 1.1.0
22

33
### _The right choice for fast and easy UI development using tailwind css_
44

projects/david-ui-angular/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "david-ui-angular",
3-
"version": "v1.0.0",
3+
"version": "v1.1.0",
44
"author": {
55
"name": "David UI Org",
66
"url": "https://github.com/david-ui-org"
@@ -18,9 +18,9 @@
1818
"typescript"
1919
],
2020
"peerDependencies": {
21-
"@angular/common": "^16.2.0",
22-
"@angular/cdk": "^16.2.8",
23-
"@angular/core": "^16.2.0",
21+
"@angular/common": "^16.2.0 || ^17.1.3",
22+
"@angular/cdk": "^16.2.8 || ^17.1.2",
23+
"@angular/core": "^16.2.0 || ^17.1.3",
2424
"bundle-scss": "^1.5.4",
2525
"cpx": "^1.5.0",
2626
"rxjs": "~7.8.0",

0 commit comments

Comments
 (0)