Skip to content

Commit 8513a8e

Browse files
committed
chore: update dependencies
1 parent db78173 commit 8513a8e

5 files changed

Lines changed: 329 additions & 290 deletions

File tree

package.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,16 @@
3333
"@angular/platform-browser": "^16.2.2",
3434
"@angular/platform-browser-dynamic": "^16.2.2",
3535
"@angular/router": "^16.2.2",
36-
"angular-cli-ghpages": "^1.0.5",
37-
"bootstrap": "5.2.3",
38-
"core-js": "3.28.0",
36+
"angular-cli-ghpages": "^1.0.6",
37+
"bootstrap": "5.3.1",
38+
"core-js": "3.32.1",
3939
"husky": "^8.0.3",
40-
"lint-staged": "^13.1.2",
40+
"lint-staged": "^14.0.1",
4141
"lodash": "4.17.21",
42-
"marked": "4.2.12",
43-
"ngx-bootstrap": "10.2.0",
44-
"prettier": "^2.8.4",
45-
"rxjs": "7.8.0",
42+
"marked": "7.0.4",
43+
"ngx-bootstrap": "11.0.2",
44+
"prettier": "^3.0.2",
45+
"rxjs": "7.8.1",
4646
"tsickle": "^0.46.3",
4747
"zone.js": "~0.13.1"
4848
},
@@ -54,24 +54,24 @@
5454
"@angular/cli": "^16.2.0",
5555
"@angular/compiler-cli": "^16.2.2",
5656
"@angular/language-service": "^16.2.2",
57-
"@types/marked": "^4.0.8",
58-
"@types/node": "18.14.0",
57+
"@types/marked": "^5.0.1",
58+
"@types/node": "20.5.4",
5959
"codelyzer": "^6.0.2",
60-
"concurrently": "7.6.0",
61-
"cypress": "12.6.0",
60+
"concurrently": "8.2.1",
61+
"cypress": "12.17.4",
6262
"ng-packagr": "^16.2.1",
6363
"npm-run-all": "4.1.5",
64-
"postcss": "8.4.21",
65-
"serve": "^14.2.0",
64+
"postcss": "8.4.28",
65+
"serve": "^14.2.1",
6666
"ts-node": "10.9.1",
67-
"tslib": "^2.5.0",
67+
"tslib": "^2.6.2",
6868
"tslint": "~6.1.3",
69-
"typescript": "4.9.5",
70-
"webpack-bundle-analyzer": "4.8.0"
69+
"typescript": "5.1.6",
70+
"webpack-bundle-analyzer": "4.9.0"
7171
},
7272
"lint-staged": {
7373
"*.{js,json,css,scss,less,md,ts,tsx,html,component.html,graphql}": [
7474
"prettier --write"
7575
]
7676
}
77-
}
77+
}

src/app/examples/geek-demo/geek-demo.component.ts

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,15 @@ import { AComponent } from '../../ui/components/AComponent'
1515
display: flex;
1616
justify-content: center;
1717
align-items: center;
18-
text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff,
19-
1px -1px 0 #fff, -1px 1px 0 #fff;
18+
text-shadow:
19+
2px 0 0 #fff,
20+
-2px 0 0 #fff,
21+
0 2px 0 #fff,
22+
0 -2px 0 #fff,
23+
1px 1px #fff,
24+
-1px -1px 0 #fff,
25+
1px -1px 0 #fff,
26+
-1px 1px 0 #fff;
2027
}
2128
2229
.opts-prop {
@@ -50,8 +57,15 @@ import { AComponent } from '../../ui/components/AComponent'
5057
5158
.num {
5259
color: #000000;
53-
text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff,
54-
1px -1px 0 #fff, -1px 1px 0 #fff;
60+
text-shadow:
61+
2px 0 0 #fff,
62+
-2px 0 0 #fff,
63+
0 2px 0 #fff,
64+
0 -2px 0 #fff,
65+
1px 1px #fff,
66+
-1px -1px 0 #fff,
67+
1px -1px 0 #fff,
68+
-1px 1px 0 #fff;
5569
}
5670
label {
5771
margin: 0;

src/app/ui/components/topbar.component.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,10 @@ export class TopbarComponent {
8989
examples: Routes
9090
isCollapsed = true
9191

92-
constructor(private readonly sanitizer: DomSanitizer, private readonly router: Router) {
92+
constructor(
93+
private readonly sanitizer: DomSanitizer,
94+
private readonly router: Router,
95+
) {
9396
this.examples = exampleRoutes
9497

9598
this.router.events.pipe(filter((e) => e instanceof NavigationStart)).subscribe((event) => {

src/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />

0 commit comments

Comments
 (0)