Skip to content

Commit

Permalink
feat: server: update core
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslan-minukov committed Dec 2, 2024
1 parent c88f4bd commit c007a85
Show file tree
Hide file tree
Showing 21 changed files with 6,396 additions and 4,666 deletions.
11,006 changes: 6,360 additions & 4,646 deletions src/server/dangl-opencde-ui/package-lock.json

Large diffs are not rendered by default.

28 changes: 14 additions & 14 deletions src/server/dangl-opencde-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@
},
"private": true,
"dependencies": {
"@angular-devkit/schematics": "^18.2.3",
"@angular/animations": "^18.2.3",
"@angular-devkit/schematics": "^19.0.2",
"@angular/animations": "^19.0.1",
"@angular/cdk": "^18.2.3",
"@angular/common": "^18.2.3",
"@angular/compiler": "^18.2.3",
"@angular/core": "^18.2.3",
"@angular/forms": "^18.2.3",
"@angular/common": "^19.0.1",
"@angular/compiler": "^19.0.1",
"@angular/core": "^19.0.1",
"@angular/forms": "^19.0.1",
"@angular/material": "^18.2.3",
"@angular/platform-browser": "^18.2.3",
"@angular/platform-browser-dynamic": "^18.2.3",
"@angular/router": "^18.2.3",
"@angular/platform-browser": "^19.0.1",
"@angular/platform-browser-dynamic": "^19.0.1",
"@angular/router": "^19.0.1",
"@auth0/angular-jwt": "5.0.2",
"@dangl/angular-dangl-identity-client": "^6.1.0",
"@dangl/angular-material-shared": "^2.7.2",
Expand All @@ -33,12 +33,12 @@
"oidc-client-ts": "2.4.0",
"rxjs": "^7.5.6",
"tslib": "^2.4.0",
"zone.js": "^0.14.10"
"zone.js": "^0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.3",
"@angular/cli": "^18.2.3",
"@angular/compiler-cli": "^18.2.3",
"@angular-devkit/build-angular": "^19.0.2",
"@angular/cli": "^19.0.2",
"@angular/compiler-cli": "^19.0.1",
"@types/jasmine": "~4.3.0",
"@types/node": "^18.7.18",
"husky": "^8.0.1",
Expand All @@ -49,6 +49,6 @@
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"pretty-quick": "3.1.3",
"typescript": "~5.4.5"
"typescript": "~5.6.3"
}
}
1 change: 1 addition & 0 deletions src/server/dangl-opencde-ui/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import { takeUntil } from 'rxjs/operators';
selector: 'opencde-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
standalone: false,
})
export class AppComponent implements OnInit, OnDestroy {
sideNavOpened = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { Component } from '@angular/core';
selector: 'opencde-api-spec',
templateUrl: './api-spec.component.html',
styleUrls: ['./api-spec.component.scss'],
standalone: false,
})
export class ApiSpecComponent {
constructor() {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import { ProjectsService } from '../../services/projects.service';
selector: 'opencde-cde-file-upload',
templateUrl: './cde-file-upload.component.html',
styleUrls: ['./cde-file-upload.component.scss'],
standalone: false,
})
export class CdeFileUploadComponent implements OnInit, OnDestroy {
@ViewChild(MatSort, { static: true }) private sort: MatSort | null = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import { Subject } from 'rxjs';
selector: 'opencde-document-detail',
templateUrl: './document-detail.component.html',
styleUrls: ['./document-detail.component.scss'],
standalone: false,
})
export class DocumentDetailComponent implements OnInit, OnDestroy {
projectId: string | null = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import { first } from 'rxjs/operators';
selector: 'opencde-document-selection-start',
templateUrl: './document-selection-start.component.html',
styleUrls: ['./document-selection-start.component.scss'],
standalone: false,
})
export class DocumentSelectionStartComponent implements OnInit {
constructor(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import { PaginationResult } from 'ng-lightquery';
selector: 'opencde-documents',
templateUrl: './documents.component.html',
styleUrls: ['./documents.component.scss'],
standalone: false,
})
export class DocumentsComponent implements OnInit, OnDestroy {
private unsubscribe: Subject<void> = new Subject<void>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { AuthenticationService } from '../../services/authentication.service';
selector: 'opencde-login',
templateUrl: './login.component.html',
styleUrls: ['./login.component.scss'],
standalone: false,
})
export class LoginComponent implements OnInit {
processingLoginResponse = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import { first } from 'rxjs/operators';
selector: 'opencde-new-document',
templateUrl: './new-document.component.html',
styleUrls: ['./new-document.component.scss'],
standalone: false,
})
export class NewDocumentComponent implements OnInit, OnDestroy {
private unsubscribe: Subject<void> = new Subject<void>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import { Subject } from 'rxjs';
selector: 'opencde-new-project',
templateUrl: './new-project.component.html',
styleUrls: ['./new-project.component.scss'],
standalone: false,
})
export class NewProjectComponent implements OnInit, OnDestroy {
private unsubscribe: Subject<void> = new Subject<void>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { Component } from '@angular/core';
selector: 'opencde-projects-overview',
templateUrl: './projects-overview.component.html',
styleUrls: ['./projects-overview.component.scss'],
standalone: false,
})
export class ProjectsOverviewComponent {
constructor() {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import { ProjectsService } from '../../services/projects.service';
selector: 'opencde-projects',
templateUrl: './projects.component.html',
styleUrls: ['./projects.component.scss'],
standalone: false,
})
export class ProjectsComponent implements OnInit, OnDestroy {
@ViewChild(MatSort, { static: true }) private sort: MatSort | null = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,11 @@ import { Component, OnInit } from '@angular/core';
@Component({
selector: 'opencde-sidenav',
templateUrl: './sidenav.component.html',
styleUrls: ['./sidenav.component.scss']
styleUrls: ['./sidenav.component.scss'],
standalone: false,
})
export class SidenavComponent implements OnInit {
constructor() {}

constructor() { }

ngOnInit(): void {
}

ngOnInit(): void {}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { FooterOptions } from '@dangl/angular-material-shared';
selector: 'opencde-site-footer',
templateUrl: './site-footer.component.html',
styleUrls: ['./site-footer.component.scss'],
standalone: false,
})
export class SiteFooterComponent {
footerOptions: FooterOptions = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import { version } from '../../version';
selector: 'opencde-site-header',
templateUrl: './site-header.component.html',
styleUrls: ['./site-header.component.scss'],
standalone: false,
})
export class SiteHeaderComponent implements OnInit, OnDestroy {
preReleaseVersion: string = '';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { ProgressSettings } from '../../models/progress-settings';
selector: 'opencde-upload-progress',
templateUrl: './upload-progress.component.html',
styleUrls: ['./upload-progress.component.scss'],
standalone: false,
})
export class UploadProgressComponent {
@Input() settings: ProgressSettings | null = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { UserInfo } from '@dangl/angular-dangl-identity-client/models/user-info'
selector: 'opencde-user-info',
templateUrl: './user-info.component.html',
styleUrls: ['./user-info.component.scss'],
standalone: false,
})
export class UserInfoComponent {
@Input() userInfo: UserInfo | null = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import { takeUntil } from 'rxjs/operators';
selector: 'opencde-welcome',
templateUrl: './welcome.component.html',
styleUrls: ['./welcome.component.scss'],
standalone: false,
})
export class WelcomeComponent implements OnInit, OnDestroy {
userInfo: UserInfo | null = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import {

@Directive({
selector: '[opencdeDragAndDrop]',
standalone: false,
})
export class DragAndDropDirective {
@HostBinding('class.fileover') fileOver: boolean = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
name: 'fileSize',
standalone: false,
})
export class FileSizePipe implements PipeTransform {
transform(value: number): string {
Expand Down

0 comments on commit c007a85

Please sign in to comment.