AW-6526 update angular 21
Some checks failed
FarmMaps.Develop/FarmMapsLib/pipeline/head There was a failure building this commit

This commit is contained in:
2026-01-19 13:24:57 +01:00
parent c3f2cbcedc
commit c46dac7572
6 changed files with 104 additions and 22 deletions

View File

@@ -16,6 +16,7 @@
"@ngrx/router-store": "21.0.1",
"@ngrx/store": "21.0.1",
"ngrx-store-localstorage": "20.1.0",
"rxjs": "7.8.1",
"tassign": "^1.0.0"
}
},

View File

@@ -13,6 +13,7 @@
"@ngrx/effects": "21.0.1",
"@ngrx/router-store": "21.0.1",
"@ngrx/store": "21.0.1",
"tassign": "^1.0.0"
"tassign": "^1.0.0",
"rxjs": "7.8.1"
}
}

View File

@@ -22,7 +22,7 @@
"ngx-avatars": "1.10.1",
"ngx-clipboard": "^16.0.0",
"ngx-image-cropper": "9.1.6",
"ngx-uploadx": "^6.2.0",
"ngx-uploadx": "7.0.1",
"tassign": "^1.0.0"
}
},
@@ -1065,17 +1065,17 @@
}
},
"node_modules/ngx-uploadx": {
"version": "6.2.1",
"resolved": "https://registry.npmjs.org/ngx-uploadx/-/ngx-uploadx-6.2.1.tgz",
"integrity": "sha512-cIgQWYVFJ+GUpX+/63VGo00FuQWzU7OpRVFZJWOq9Hemrmh07YQuCuZqEfgy/DbakxzfZ3olHet656QmxntSRw==",
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/ngx-uploadx/-/ngx-uploadx-7.0.1.tgz",
"integrity": "sha512-7E0q8BCXNaAsJQun9tE5Ow28GVlNsXxEoa0v47VQJaxQ3/g2ALWv/TRbvmSf0HkEwGQzZtKO2ESRK97xh5lvDQ==",
"license": "MIT",
"peer": true,
"dependencies": {
"tslib": "^2.3.0"
},
"peerDependencies": {
"@angular/core": ">=14.0.0 <19.0.0",
"rxjs": "^6.4.0 || ^7.0.0"
"@angular/core": ">=17.0.0 <21.0.0",
"rxjs": "^6.5.3 || ^7.4.0"
}
},
"node_modules/ngx-window-token": {
@@ -2132,9 +2132,9 @@
}
},
"ngx-uploadx": {
"version": "6.2.1",
"resolved": "https://registry.npmjs.org/ngx-uploadx/-/ngx-uploadx-6.2.1.tgz",
"integrity": "sha512-cIgQWYVFJ+GUpX+/63VGo00FuQWzU7OpRVFZJWOq9Hemrmh07YQuCuZqEfgy/DbakxzfZ3olHet656QmxntSRw==",
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/ngx-uploadx/-/ngx-uploadx-7.0.1.tgz",
"integrity": "sha512-7E0q8BCXNaAsJQun9tE5Ow28GVlNsXxEoa0v47VQJaxQ3/g2ALWv/TRbvmSf0HkEwGQzZtKO2ESRK97xh5lvDQ==",
"peer": true,
"requires": {
"tslib": "^2.3.0"

View File

@@ -19,13 +19,13 @@ import { AppConfig } from '../../shared/app.config';
import * as appReducers from '../../reducers/app-common.reducer';
@Component({
selector: 'fm-app',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
encapsulation: ViewEncapsulation.None,
changeDetection: ChangeDetectionStrategy.OnPush,
standalone: false
@Component({
selector: 'fm-app',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
encapsulation: ViewEncapsulation.None,
changeDetection: ChangeDetectionStrategy.OnPush,
standalone: false
})
export class AppComponent implements OnInit, OnDestroy {