Upgrade to Angular 21

This commit is contained in:
2026-01-21 23:43:56 +01:00
parent e834406caf
commit 2813ce75a7
10 changed files with 66 additions and 55 deletions

3
.gitignore vendored
View File

@@ -1,5 +1,8 @@
# See http://help.github.com/ignore-files/ for more about ignoring files. # See http://help.github.com/ignore-files/ for more about ignoring files.
/package-lock.json
/.angular
# compiled output # compiled output
/dist /dist
/tmp /tmp

View File

@@ -18,12 +18,14 @@
"prefix": "app", "prefix": "app",
"architect": { "architect": {
"build": { "build": {
"builder": "@angular-devkit/build-angular:browser", "builder": "@angular-devkit/build-angular:application",
"options": { "options": {
"outputPath": "dist/testowy", "outputPath": "dist/testowy",
"index": "src/index.html", "index": "src/index.html",
"main": "src/main.ts", "browser": "src/main.ts",
"polyfills": "src/polyfills.ts", "polyfills": [
"zone.js"
],
"tsConfig": "tsconfig.app.json", "tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss", "inlineStyleLanguage": "scss",
"assets": [ "assets": [
@@ -59,12 +61,9 @@
"outputHashing": "all" "outputHashing": "all"
}, },
"development": { "development": {
"buildOptimizer": false,
"optimization": false, "optimization": false,
"vendorChunk": true,
"extractLicenses": false, "extractLicenses": false,
"sourceMap": true, "sourceMap": true
"namedChunks": true
} }
}, },
"defaultConfiguration": "production" "defaultConfiguration": "production"
@@ -73,10 +72,10 @@
"builder": "@angular-devkit/build-angular:dev-server", "builder": "@angular-devkit/build-angular:dev-server",
"configurations": { "configurations": {
"production": { "production": {
"browserTarget": "testowy:build:production" "buildTarget": "testowy:build:production"
}, },
"development": { "development": {
"browserTarget": "testowy:build:development" "buildTarget": "testowy:build:development"
} }
}, },
"defaultConfiguration": "development" "defaultConfiguration": "development"
@@ -84,14 +83,16 @@
"extract-i18n": { "extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n", "builder": "@angular-devkit/build-angular:extract-i18n",
"options": { "options": {
"browserTarget": "testowy:build" "buildTarget": "testowy:build"
} }
}, },
"test": { "test": {
"builder": "@angular-devkit/build-angular:karma", "builder": "@angular-devkit/build-angular:karma",
"options": { "options": {
"main": "src/test.ts", "polyfills": [
"polyfills": "src/polyfills.ts", "zone.js",
"zone.js/testing"
],
"tsConfig": "tsconfig.spec.json", "tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.js", "karmaConfig": "karma.conf.js",
"inlineStyleLanguage": "scss", "inlineStyleLanguage": "scss",
@@ -108,6 +109,5 @@
} }
} }
} }
}, }
"defaultProject": "testowy"
} }

View File

@@ -11,36 +11,35 @@
}, },
"private": true, "private": true,
"dependencies": { "dependencies": {
"@angular/animations": "~12.2.0", "@angular/animations": "^21.0.0",
"@angular/cdk": "^12.2.6", "@angular/cdk": "^21.0.0",
"@angular/common": "~12.2.0", "@angular/common": "^21.0.0",
"@angular/compiler": "~12.2.0", "@angular/compiler": "^21.0.0",
"@angular/core": "~12.2.0", "@angular/core": "^21.0.0",
"@angular/forms": "~12.2.0", "@angular/forms": "^21.0.0",
"@angular/material": "^12.2.6", "@angular/material": "^21.0.0",
"@angular/localize": "^12.2.6", "@angular/localize": "^21.0.0",
"@angular/platform-browser": "~12.2.0", "@angular/platform-browser": "^21.0.0",
"@angular/platform-browser-dynamic": "~12.2.0", "@angular/platform-browser-dynamic": "^21.0.0",
"@angular/router": "~12.2.0", "@angular/router": "^21.0.0",
"date-fns": "~2.24.0", "date-fns": "^4.1.0",
"rxjs": "~6.6.0", "rxjs": "~7.8.0",
"tslib": "^2.3.0", "tslib": "^2.8.1",
"zone.js": "~0.11.4" "zone.js": "~0.16.0"
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "~12.2.6", "@angular-devkit/build-angular": "^21.0.0",
"@angular/cli": "~12.2.6", "@angular/cli": "^21.0.0",
"@angular/compiler-cli": "~12.2.0", "@angular/compiler-cli": "^21.0.0",
"@angular/localize": "^12.2.6", "@types/jasmine": "~5.1.0",
"@types/jasmine": "~3.8.0", "@types/node": "^22.10.0",
"@types/node": "^12.11.1", "date-fns": "^4.1.0",
"date-fns": "~2.24.0", "jasmine-core": "~5.5.0",
"jasmine-core": "~3.8.0", "karma": "~6.4.0",
"karma": "~6.3.0", "karma-chrome-launcher": "~3.2.0",
"karma-chrome-launcher": "~3.1.0", "karma-coverage": "~2.2.0",
"karma-coverage": "~2.0.3", "karma-jasmine": "~5.1.0",
"karma-jasmine": "~4.0.0", "karma-jasmine-html-reporter": "~2.1.0",
"karma-jasmine-html-reporter": "~1.7.0", "typescript": "~5.9.3"
"typescript": "~4.3.5"
} }
} }

View File

@@ -3,7 +3,8 @@ import { Component, OnInit } from '@angular/core';
@Component({ @Component({
selector: 'app-root', selector: 'app-root',
templateUrl: './app.component.html', templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'] styleUrls: ['./app.component.scss'],
standalone: false
}) })
export class AppComponent implements OnInit { export class AppComponent implements OnInit {

View File

@@ -6,7 +6,8 @@ import { IbanService } from '../../service/iban.service';
@Component({ @Component({
selector: 'app-iban', selector: 'app-iban',
templateUrl: './iban.component.html', templateUrl: './iban.component.html',
styleUrls: ['./iban.component.scss'] styleUrls: ['./iban.component.scss'],
standalone: false
}) })
export class IbanComponent implements OnInit { export class IbanComponent implements OnInit {
public valueField: FormControl; public valueField: FormControl;

View File

@@ -6,7 +6,8 @@ import { ClipboardService } from 'src/app/service/gui/clipboard.service';
@Component({ @Component({
selector: 'app-nip', selector: 'app-nip',
templateUrl: './nip.component.html', templateUrl: './nip.component.html',
styleUrls: ['./nip.component.scss'] styleUrls: ['./nip.component.scss'],
standalone: false
}) })
export class NipComponent implements OnInit { export class NipComponent implements OnInit {
public valueField: FormControl; public valueField: FormControl;

View File

@@ -6,7 +6,8 @@ import { ClipboardService } from 'src/app/service/gui/clipboard.service';
@Component({ @Component({
selector: 'app-pesel', selector: 'app-pesel',
templateUrl: './pesel.component.html', templateUrl: './pesel.component.html',
styleUrls: ['./pesel.component.scss'] styleUrls: ['./pesel.component.scss'],
standalone: false
}) })
export class PeselComponent implements OnInit { export class PeselComponent implements OnInit {
public valueField: FormControl; public valueField: FormControl;

View File

@@ -6,7 +6,8 @@ import { ClipboardService } from 'src/app/service/gui/clipboard.service';
@Component({ @Component({
selector: 'app-regon', selector: 'app-regon',
templateUrl: './regon.component.html', templateUrl: './regon.component.html',
styleUrls: ['./regon.component.scss'] styleUrls: ['./regon.component.scss'],
standalone: false
}) })
export class RegonComponent implements OnInit { export class RegonComponent implements OnInit {
public valueField: FormControl; public valueField: FormControl;

View File

@@ -1,6 +1,9 @@
import { Pipe, PipeTransform } from '@angular/core'; import { Pipe, PipeTransform } from '@angular/core';
@Pipe({ name: 'translate' }) @Pipe({
name: 'translate',
standalone: false
})
export class TranslatePipe implements PipeTransform { export class TranslatePipe implements PipeTransform {
private readonly translations: Map<string, string> = new Map([ private readonly translations: Map<string, string> = new Map([
// wspólne // wspólne

View File

@@ -12,10 +12,11 @@
"declaration": false, "declaration": false,
"downlevelIteration": true, "downlevelIteration": true,
"experimentalDecorators": true, "experimentalDecorators": true,
"moduleResolution": "node", "moduleResolution": "bundler",
"importHelpers": true, "importHelpers": true,
"target": "es2020", "target": "ES2022",
"module": "es2020", "useDefineForClassFields": false,
"module": "ESNext",
"lib": [ "lib": [
"es2020", "es2020",
"dom" "dom"