mirror of
https://github.com/valitydev/control-center.git
synced 2024-11-06 02:25:17 +00:00
IS-480: update dependencies (#85)
This commit is contained in:
parent
002b1e06c4
commit
5a972b12e6
2
Makefile
2
Makefile
@ -20,7 +20,7 @@ BASE_IMAGE_TAG := 2b4570bc1d9631c10aaed2132eb87eb9003f3471
|
||||
BUILD_IMAGE_TAG := f3732d29a5e622aabf80542b5138b3631a726adb
|
||||
|
||||
GIT_SSH_COMMAND :=
|
||||
DOCKER_RUN_OPTS = -e GIT_SSH_COMMAND='$(GIT_SSH_COMMAND)'
|
||||
DOCKER_RUN_OPTS = -e GIT_SSH_COMMAND='$(GIT_SSH_COMMAND)' -e NG_CLI_ANALYTICS=ci
|
||||
|
||||
CALL_W_CONTAINER := init build clean submodules
|
||||
|
||||
|
12225
package-lock.json
generated
12225
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
39
package.json
39
package.json
@ -17,19 +17,19 @@
|
||||
},
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@angular/animations": "^7.0.0",
|
||||
"@angular/cdk": "^7.0.1",
|
||||
"@angular/common": "^7.0.0",
|
||||
"@angular/compiler": "^7.0.0",
|
||||
"@angular/core": "^7.0.0",
|
||||
"@angular/flex-layout": "^7.0.0-beta.19",
|
||||
"@angular/forms": "^7.0.0",
|
||||
"@angular/http": "^7.0.0",
|
||||
"@angular/material": "^7.0.1",
|
||||
"@angular/material-moment-adapter": "^7.0.1",
|
||||
"@angular/platform-browser": "^7.0.0",
|
||||
"@angular/platform-browser-dynamic": "^7.0.0",
|
||||
"@angular/router": "^7.0.0",
|
||||
"@angular/animations": "^8.2.8",
|
||||
"@angular/cdk": "^8.2.2",
|
||||
"@angular/common": "^8.2.8",
|
||||
"@angular/compiler": "^8.2.8",
|
||||
"@angular/core": "^8.2.8",
|
||||
"@angular/flex-layout": "^8.0.0-beta.27",
|
||||
"@angular/forms": "^8.2.8",
|
||||
"@angular/material": "^8.2.2",
|
||||
"@angular/material-moment-adapter": "^8.2.2",
|
||||
"@angular/platform-browser": "^8.2.8",
|
||||
"@angular/platform-browser-dynamic": "^8.2.8",
|
||||
"@angular/platform-server": "^8.2.8",
|
||||
"@angular/router": "^8.2.8",
|
||||
"angular2-prettyjson": "3.0.1",
|
||||
"core-js": "^2.5.4",
|
||||
"damsel": "git+ssh://git@github.com/rbkmoney/damsel.git#b563890354447a5e175a9a318b33233a926a5e9c",
|
||||
@ -42,17 +42,16 @@
|
||||
"machinegun_proto": "git+ssh://git@github.com/rbkmoney/machinegun_proto.git#ebae56fe2b3e79e4eb34afc8cb55c9012ae989f8",
|
||||
"moment": "^2.22.2",
|
||||
"monaco-editor": "^0.15.6",
|
||||
"rxjs": "^6.3.3",
|
||||
"rxjs": "^6.5.3",
|
||||
"thrift-ts": "git+ssh://git@github.com/rbkmoney/thrift-ts.git#a5e3830ad30d5717e5e627ddcefa8f4d8918b174",
|
||||
"uuid": "^3.3.2",
|
||||
"woody_js": "git+ssh://git@github.com/rbkmoney/woody_js.git#d2c90a54861593fa794afe3b09c4febb9d6e37d0",
|
||||
"zone.js": "~0.8.26"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular-devkit/build-angular": "~0.7.0",
|
||||
"@angular/cli": "^7.0.2",
|
||||
"@angular/compiler-cli": "^7.0.0",
|
||||
"@angular/language-service": "^7.0.0",
|
||||
"@angular-devkit/build-angular": "^0.803.6",
|
||||
"@angular/cli": "^8.3.6",
|
||||
"@angular/compiler-cli": "^8.2.8",
|
||||
"@types/jasmine": "~2.8.6",
|
||||
"@types/jasminewd2": "~2.0.3",
|
||||
"@types/lodash-es": "^4.17.1",
|
||||
@ -61,7 +60,7 @@
|
||||
"codelyzer": "~4.2.1",
|
||||
"jasmine-core": "~2.99.1",
|
||||
"jasmine-spec-reporter": "~4.2.1",
|
||||
"karma": "~1.7.1",
|
||||
"karma": "^4.3.0",
|
||||
"karma-chrome-launcher": "~2.2.0",
|
||||
"karma-coverage-istanbul-reporter": "~2.0.0",
|
||||
"karma-jasmine": "~1.1.1",
|
||||
@ -70,6 +69,6 @@
|
||||
"protractor": "^5.4.0",
|
||||
"ts-node": "~5.0.1",
|
||||
"tslint": "~5.9.1",
|
||||
"typescript": "~3.1.3"
|
||||
"typescript": "^3.4.5"
|
||||
}
|
||||
}
|
||||
|
@ -17,8 +17,8 @@ import { DetailsContainerService } from '../../../domain-info/details-container.
|
||||
export class GroupTableComponent implements OnInit, OnChanges {
|
||||
@Input() group: DomainGroup[];
|
||||
|
||||
@ViewChild(MatPaginator) paginator: MatPaginator;
|
||||
@ViewChild(MatSort) sort: MatSort;
|
||||
@ViewChild(MatPaginator, { static: false }) paginator: MatPaginator;
|
||||
@ViewChild(MatSort, { static: false }) sort: MatSort;
|
||||
|
||||
dataSource: MatTableDataSource<TableDataSource> = new MatTableDataSource();
|
||||
cols = ['name', 'ref', 'data', 'details'];
|
||||
|
@ -14,7 +14,7 @@ import { DomainInfoService } from './domain-info.service';
|
||||
export class DomainInfoComponent implements OnInit {
|
||||
initialized = false;
|
||||
isLoading: boolean;
|
||||
@ViewChild('domainObjDetails') detailsContainer: MatSidenav;
|
||||
@ViewChild('domainObjDetails', { static: false }) detailsContainer: MatSidenav;
|
||||
|
||||
private detailedObjRef: any;
|
||||
|
||||
|
@ -11,7 +11,7 @@ import { Shop } from '../../../gen-damsel/domain';
|
||||
})
|
||||
export class ShopsTableComponent implements OnChanges {
|
||||
@Input() shops: Shop[];
|
||||
@ViewChild(MatPaginator) paginator: MatPaginator;
|
||||
@ViewChild(MatPaginator, { static: false }) paginator: MatPaginator;
|
||||
|
||||
dataSource: MatTableDataSource<Shop> = new MatTableDataSource();
|
||||
displayedColumns = ['id', 'name', 'url', 'shopDetailButton'];
|
||||
|
@ -22,7 +22,7 @@ export class SelectProviderComponent implements OnInit, OnChanges {
|
||||
@Input() providers: ProviderObject[];
|
||||
@Output() providerIdSelected: EventEmitter<number> = new EventEmitter();
|
||||
|
||||
@ViewChild(MatPaginator) paginator: MatPaginator;
|
||||
@ViewChild(MatPaginator, { static: false }) paginator: MatPaginator;
|
||||
|
||||
displayedColumns: string[] = ['select', 'id', 'name', 'description'];
|
||||
dataSource: MatTableDataSource<ProviderObject> = new MatTableDataSource([]);
|
||||
|
@ -19,7 +19,7 @@ import { TerminalObject } from '../../../../../gen-damsel/domain';
|
||||
styleUrls: ['../../add-provider.component.scss']
|
||||
})
|
||||
export class TerminalsTableComponent implements OnInit, OnChanges {
|
||||
@ViewChild(MatPaginator) paginator: MatPaginator;
|
||||
@ViewChild(MatPaginator, { static: false }) paginator: MatPaginator;
|
||||
@Input() terminals: TerminalObject[];
|
||||
@Output() terminalIdSelected: EventEmitter<number> = new EventEmitter();
|
||||
|
||||
|
@ -30,7 +30,7 @@ export class TableComponent implements OnInit, OnChanges {
|
||||
|
||||
selection = new SelectionModel<StatPayment>(true, []);
|
||||
|
||||
@ViewChild(MatPaginator)
|
||||
@ViewChild(MatPaginator, { static: false })
|
||||
paginator: MatPaginator;
|
||||
|
||||
cols = ['select', 'revision', 'invoiceId', 'createdAt', 'ownerId', 'shopId'];
|
||||
|
@ -31,7 +31,7 @@ export class PayoutsTableComponent implements OnInit, OnChanges {
|
||||
roles: string[];
|
||||
selection = new SelectionModel<Payout>(true, []);
|
||||
|
||||
@ViewChild(MatPaginator)
|
||||
@ViewChild(MatPaginator, { static: false })
|
||||
paginator: MatPaginator;
|
||||
|
||||
displayedColumns = [
|
||||
|
@ -75,3 +75,6 @@ import 'zone.js/dist/zone'; // Included with Angular CLI.
|
||||
* APPLICATION IMPORTS
|
||||
*/
|
||||
import 'hammerjs';
|
||||
|
||||
// Add global to window, assigning the value of window itself.
|
||||
(window as any).global = window;
|
||||
|
Loading…
Reference in New Issue
Block a user