update other deps

This commit is contained in:
Dan Percic 2024-12-05 12:50:21 +02:00
parent 59254c0294
commit 51801a03a0
11 changed files with 344 additions and 2866 deletions

View File

@ -16,6 +16,7 @@
}, },
"rules": { "rules": {
"rxjs/no-ignored-subscription": "warn", "rxjs/no-ignored-subscription": "warn",
"@angular-eslint/prefer-standalone": "off",
"@angular-eslint/no-conflicting-lifecycle": "error", "@angular-eslint/no-conflicting-lifecycle": "error",
"@angular-eslint/no-host-metadata-property": "error", "@angular-eslint/no-host-metadata-property": "error",
"@angular-eslint/no-input-rename": "error", "@angular-eslint/no-input-rename": "error",

View File

@ -50,7 +50,7 @@
{ {
"glob": "**/*", "glob": "**/*",
"input": "node_modules/@pdftron/webviewer/public/", "input": "node_modules/@pdftron/webviewer/public/",
"output": "/assets/wv-resources/11.0.0/" "output": "/assets/wv-resources/11.1.0/"
}, },
{ {
"glob": "**/*", "glob": "**/*",

View File

@ -248,7 +248,7 @@ export class WatermarkScreenComponent implements OnInit {
this.instance = await WebViewer.Iframe( this.instance = await WebViewer.Iframe(
{ {
licenseKey: this._licenseService.activeLicenseKey, licenseKey: this._licenseService.activeLicenseKey,
path: this.#convertPath('/assets/wv-resources/11.0.0'), path: this.#convertPath('/assets/wv-resources/11.1.0'),
css: this.#convertPath('/assets/pdftron/stylesheet.css'), css: this.#convertPath('/assets/pdftron/stylesheet.css'),
fullAPI: true, fullAPI: true,
isReadOnly: true, isReadOnly: true,

View File

@ -377,7 +377,7 @@ export class PdfViewer {
const options: WebViewerOptions = { const options: WebViewerOptions = {
licenseKey: this.#licenseKey, licenseKey: this.#licenseKey,
fullAPI: true, fullAPI: true,
path: this.#convertPath('/assets/wv-resources/11.0.0'), path: this.#convertPath('/assets/wv-resources/11.1.0'),
css: this.#convertPath('/assets/pdftron/stylesheet.css'), css: this.#convertPath('/assets/pdftron/stylesheet.css'),
backendType: 'ems', backendType: 'ems',
// This should be migrated to v11 // This should be migrated to v11

View File

@ -5,7 +5,6 @@ import { AnnotationIconType } from '@red/domain';
selector: 'redaction-annotation-icon [color] [type] [label]', selector: 'redaction-annotation-icon [color] [type] [label]',
templateUrl: './annotation-icon.component.html', templateUrl: './annotation-icon.component.html',
styleUrls: ['./annotation-icon.component.scss'], styleUrls: ['./annotation-icon.component.scss'],
standalone: true,
}) })
export class AnnotationIconComponent implements OnChanges { export class AnnotationIconComponent implements OnChanges {
@Input() color: string; @Input() color: string;

View File

@ -8,7 +8,6 @@ export interface LongPressEvent {
@Directive({ @Directive({
selector: '[redactionLongPress]', selector: '[redactionLongPress]',
standalone: true,
}) })
export class LongPressDirective { export class LongPressDirective {
@Output() longPress = new EventEmitter(); @Output() longPress = new EventEmitter();

View File

@ -3,7 +3,6 @@ import { RouterHistoryService } from '@services/router-history.service';
@Directive({ @Directive({
selector: '[redactionNavigateLastDossiersScreen]', selector: '[redactionNavigateLastDossiersScreen]',
standalone: true,
}) })
export class NavigateLastDossiersScreenDirective { export class NavigateLastDossiersScreenDirective {
constructor(private readonly _routerHistoryService: RouterHistoryService) {} constructor(private readonly _routerHistoryService: RouterHistoryService) {}

View File

@ -6,7 +6,6 @@ import dayjs from 'dayjs';
@Pipe({ @Pipe({
name: 'date', name: 'date',
standalone: true,
}) })
export class DatePipe extends BaseDatePipe implements PipeTransform { export class DatePipe extends BaseDatePipe implements PipeTransform {
constructor( constructor(

@ -1 +1 @@
Subproject commit b929f1d13687ebd0a4887c620851ae168fc21935 Subproject commit e21c225ddd913a1ea0ae93d4c9041893cac85bfa

View File

@ -32,10 +32,10 @@
"@angular/service-worker": "19.0.3", "@angular/service-worker": "19.0.3",
"@materia-ui/ngx-monaco-editor": "^6.0.0", "@materia-ui/ngx-monaco-editor": "^6.0.0",
"@messageformat/core": "^3.4.0", "@messageformat/core": "^3.4.0",
"@ngx-translate/core": "15.0.0", "@ngx-translate/core": "16.0.3",
"@ngx-translate/http-loader": "8.0.0", "@ngx-translate/http-loader": "16.0.0",
"@pdftron/webviewer": "11.0.0", "@pdftron/webviewer": "11.1.0",
"chart.js": "4.4.6", "chart.js": "4.4.7",
"dayjs": "1.11.13", "dayjs": "1.11.13",
"file-saver": "^2.0.5", "file-saver": "^2.0.5",
"jszip": "^3.10.1", "jszip": "^3.10.1",
@ -44,7 +44,7 @@
"keycloak-js": "23.0.1", "keycloak-js": "23.0.1",
"lodash-es": "^4.17.21", "lodash-es": "^4.17.21",
"monaco-editor": "0.52.0", "monaco-editor": "0.52.0",
"ng2-charts": "6.0.1", "ng2-charts": "7.0.0",
"ngx-color-picker": "17.0.0", "ngx-color-picker": "17.0.0",
"ngx-logger": "^5.0.11", "ngx-logger": "^5.0.11",
"ngx-toastr": "19.0.0", "ngx-toastr": "19.0.0",
@ -52,10 +52,10 @@
"object-hash": "^3.0.0", "object-hash": "^3.0.0",
"papaparse": "^5.4.0", "papaparse": "^5.4.0",
"rxjs": "7.8.1", "rxjs": "7.8.1",
"sass": "1.80.5", "sass": "1.82.0",
"scroll-into-view-if-needed": "3.1.0", "scroll-into-view-if-needed": "3.1.0",
"streamsaver": "^2.0.5", "streamsaver": "^2.0.5",
"tslib": "2.8.0", "tslib": "2.8.1",
"zone.js": "0.15.0" "zone.js": "0.15.0"
}, },
"devDependencies": { "devDependencies": {
@ -71,32 +71,32 @@
"@angular/compiler-cli": "19.0.3", "@angular/compiler-cli": "19.0.3",
"@angular/language-service": "19.0.3", "@angular/language-service": "19.0.3",
"@localazy/ts-api": "^1.0.0", "@localazy/ts-api": "^1.0.0",
"@schematics/angular": "18.2.11", "@schematics/angular": "19.0.3",
"@types/file-saver": "^2.0.7", "@types/file-saver": "^2.0.7",
"@types/jest": "29.5.14", "@types/jest": "29.5.14",
"@types/lodash-es": "4.17.12", "@types/lodash-es": "4.17.12",
"@types/node": "22.8.5", "@types/node": "22.10.1",
"@typescript-eslint/eslint-plugin": "^8.12.2", "@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.12.2", "@typescript-eslint/parser": "^8.17.0",
"@typescript-eslint/utils": "^8.12.2", "@typescript-eslint/utils": "^8.17.0",
"@vendure/ngx-translate-extract": "9.2.1", "@vendure/ngx-translate-extract": "9.3.1",
"axios": "1.7.7", "axios": "1.7.9",
"eslint": "^8.57.0", "eslint": "^8.57.0",
"eslint-config-prettier": "9.1.0", "eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1", "eslint-plugin-prettier": "5.2.1",
"eslint-plugin-rxjs": "^5.0.2", "eslint-plugin-rxjs": "^5.0.2",
"google-translate-api-browser": "^5.0.0", "google-translate-api-browser": "^5.0.0",
"husky": "^9.1.6", "husky": "^9.1.7",
"jest": "29.7.0", "jest": "29.7.0",
"jest-environment-jsdom": "29.7.0", "jest-environment-jsdom": "29.7.0",
"jest-extended": "4.0.2", "jest-extended": "4.0.2",
"jest-preset-angular": "14.4.2", "jest-preset-angular": "14.4.2",
"lint-staged": "15.2.10", "lint-staged": "15.2.10",
"prettier": "3.3.3", "prettier": "3.4.2",
"sonarqube-scanner": "4.2.5", "sonarqube-scanner": "4.2.6",
"ts-node": "10.9.2", "ts-node": "10.9.2",
"typescript": "5.5.4", "typescript": "5.6.3",
"webpack": "5.95.0", "webpack": "5.97.0",
"webpack-bundle-analyzer": "4.10.2", "webpack-bundle-analyzer": "4.10.2",
"xliff": "^6.2.1" "xliff": "^6.2.1"
}, },

3159
yarn.lock

File diff suppressed because it is too large Load Diff