Skip to content

Commit 5ccc3dc

Browse files
committed
Overall Package and Code Lines update based on the angular 20 version
1 parent 61995c7 commit 5ccc3dc

120 files changed

Lines changed: 7366 additions & 29 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.

angular.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@
3636
"input": "public"
3737
}
3838
],
39-
"styles": ["src/styles.scss"]
39+
"styles": ["src/styles.scss", "node_modules/prismjs/themes/prism.css"],
40+
"scripts": [
41+
"node_modules/@dev.spot/css-fusion-g/dist/cssfusion-g/js/cssfusion-g.umd.js"
42+
]
4043
},
4144
"configurations": {
4245
"production": {

package-lock.json

Lines changed: 58 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,17 @@
2222
},
2323
"private": true,
2424
"dependencies": {
25+
"@angular/cdk": "^20.2.9",
2526
"@angular/common": "^20.3.0",
2627
"@angular/compiler": "^20.3.0",
2728
"@angular/core": "^20.3.0",
2829
"@angular/forms": "^20.3.0",
30+
"@angular/material": "^20.2.9",
2931
"@angular/platform-browser": "^20.3.0",
3032
"@angular/router": "^20.3.0",
33+
"@dev.spot/css-fusion-g": "^1.1.1-beta",
34+
"@types/prismjs": "^1.26.5",
35+
"prismjs": "^1.29.0",
3136
"rxjs": "~7.8.0",
3237
"tslib": "^2.3.0",
3338
"zone.js": "~0.15.0"
@@ -45,4 +50,4 @@
4550
"karma-jasmine-html-reporter": "~2.1.0",
4651
"typescript": "~5.9.2"
4752
}
48-
}
53+
}

public/.gitkeep

Whitespace-only changes.

public/customized-material.scss

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
.mat-typography h1,
2+
.mat-typography h2,
3+
.mat-typography h3,
4+
.mat-typography h4,
5+
.mat-typography h5,
6+
.mat-typography h6 {
7+
margin: 0;
8+
padding: 0;
9+
font-family: var(--app-head-font);
10+
}
11+
12+
.mat-typography p {
13+
margin: 0;
14+
padding: 0;
15+
font-family: var(--app-content-font);
16+
}
17+
18+
.mat-mdc-menu-item-text {
19+
font-family: var(--app-content-font) !important;
20+
font-weight: 500 !important;
21+
font-size: 1.4rem !important;
22+
}
23+
24+
.mat-mdc-menu-item {
25+
min-height: 44px !important;
26+
}
27+
28+
.cdk-overlay-pane {
29+
margin-top: 10px !important;
30+
}
31+
32+
.mat-ripple,
33+
.mat-step-header-ripple,
34+
.mat-focus-indicator,
35+
.mat-step-header {
36+
&:hover {
37+
background-color: transparent !important;
38+
}
39+
40+
&:active {
41+
background-color: transparent !important;
42+
}
43+
44+
&:focus {
45+
background-color: transparent !important;
46+
}
47+
}
48+
49+
.mat-stepper-vertical,
50+
.mat-stepper-horizontal {
51+
background-color: transparent !important;
52+
}
53+
54+
.mat-step-text-label {
55+
color: var(--app-font-clr) !important;
56+
}
57+
58+
.mat-stepper-vertical-line::before {
59+
border-left-color: var(--app-font-clr) !important;
60+
}
61+
62+
.mat-step-icon {
63+
background-color: var(--stepper-number-bg) !important;
64+
color: #ffffff !important;
65+
}
66+
67+
.mat-step-icon-selected {
68+
background-color: var(--stepper-number-active-bg) !important;
69+
color: #ffffff !important;
70+
}

public/favicon.ico

176 KB
Binary file not shown.

public/fonts/Agdasima-Bold.ttf

22.5 KB
Binary file not shown.

public/fonts/Agdasima-Regular.ttf

22.6 KB
Binary file not shown.

0 commit comments

Comments
 (0)