Upgrade UI dependencies (#16586)

Signed-off-by: AllForNothing <sshijun@vmware.com>
This commit is contained in:
Shijun Sun 2022-03-25 19:45:12 +08:00 committed by GitHub
parent d2a62cf688
commit 29eaaf1b53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 1765 additions and 1239 deletions

View File

@ -46,14 +46,14 @@
"private": true,
"dependencies": {
// Angular framework. Required
"@angular/animations": "~13.2.2",
"@angular/common": "~13.2.2",
"@angular/compiler": "~13.2.2",
"@angular/core": "~13.2.2",
"@angular/forms": "~13.2.2",
"@angular/localize": "~13.2.2",
"@angular/platform-browser": "~13.2.2",
"@angular/platform-browser-dynamic": "~13.2.2",
"@angular/animations": "~13.3.0",
"@angular/common": "~13.3.0",
"@angular/compiler": "~13.3.0",
"@angular/core": "~13.3.0",
"@angular/forms": "~13.3.0",
"@angular/localize": "~13.3.0",
"@angular/platform-browser": "~13.3.0",
"@angular/platform-browser-dynamic": "~13.3.0",
"@angular/router": "~13.2.2",
"rxjs": "^7.4.0",
"tslib": "^2.2.0",
@ -82,7 +82,7 @@
"ngx-markdown": "~13.0.0",
// For swagger API center. Required
"swagger-ui": "^4.6.0",
"swagger-ui": "~4.9.0",
"buffer": "^6.0.3",
"stream-browserify": "^3.0.0",
@ -91,9 +91,9 @@
},
"devDependencies": {
// Angular framework. Required
"@angular-devkit/build-angular": "~13.2.3",
"@angular/cli": "~13.2.3",
"@angular/compiler-cli": "~13.2.2",
"@angular-devkit/build-angular": "~13.3.0",
"@angular/cli": "~13.3.0",
"@angular/compiler-cli": "~13.3.0",
"@types/jasmine": "~3.10.1",
"@types/node": "^16.11.6",
"typescript": "~4.5.4",
@ -101,7 +101,7 @@
// For unit test. Required
"jasmine-core": "^4.0.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "^6.3.16",
"karma": "^6.3.17",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "^2.2.0",
"karma-jasmine": "~4.0.1",

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "harbor",
"version": "2.5.0",
"version": "2.6.0",
"description": "Harbor UI with Clarity",
"angular-cli": {},
"scripts": {
@ -25,15 +25,15 @@
},
"private": true,
"dependencies": {
"@angular/animations": "~13.2.2",
"@angular/common": "~13.2.2",
"@angular/compiler": "~13.2.2",
"@angular/core": "~13.2.2",
"@angular/forms": "~13.2.2",
"@angular/localize": "~13.2.2",
"@angular/platform-browser": "~13.2.2",
"@angular/platform-browser-dynamic": "~13.2.2",
"@angular/router": "~13.2.2",
"@angular/animations": "~13.3.0",
"@angular/common": "~13.3.0",
"@angular/compiler": "~13.3.0",
"@angular/core": "~13.3.0",
"@angular/forms": "~13.3.0",
"@angular/localize": "~13.3.0",
"@angular/platform-browser": "~13.3.0",
"@angular/platform-browser-dynamic": "~13.3.0",
"@angular/router": "~13.3.0",
"rxjs": "^7.4.0",
"tslib": "^2.2.0",
"zone.js": "~0.11.4",
@ -47,15 +47,15 @@
"ngx-clipboard": "^12.3.1",
"ngx-cookie": "^5.0.2",
"ngx-markdown": "13.1.0",
"swagger-ui": "^4.6.0",
"swagger-ui": "~4.9.0",
"buffer": "^6.0.3",
"stream-browserify": "^3.0.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.2.3",
"@angular/cli": "~13.2.3",
"@angular/compiler-cli": "~13.2.2",
"@angular-devkit/build-angular": "~13.3.0",
"@angular/cli": "~13.3.0",
"@angular/compiler-cli": "~13.3.0",
"@types/express": "^4.17.12",
"@types/jasmine": "~3.10.1",
"@types/node": "^16.11.6",
@ -63,7 +63,7 @@
"express": "^4.17.1",
"jasmine-core": "^4.0.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.3.16",
"karma": "^6.3.17",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "^2.2.0",
"karma-jasmine": "~4.0.1",

View File

@ -5,7 +5,7 @@ import { catchError } from 'rxjs/operators';
import { Title } from '@angular/platform-browser';
import { TranslateService } from '@ngx-translate/core';
import { CookieService } from "ngx-cookie";
import * as SwaggerUI from 'swagger-ui';
import SwaggerUI from 'swagger-ui';
import { mergeDeep } from "../shared/units/utils";
import { DevCenterBaseDirective } from "./dev-center-base";
import { SAFE_METHODS } from "../services/intercept-http.service";