Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 16 additions & 15 deletions examples/fdc3-chart-and-grid/js-datagrid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,34 +10,35 @@
"test": "ng test --watch=false"
},
"dependencies": {
"@angular/animations": "21.1.5",
"@angular/cdk": "21.1.5",
"@angular/common": "20.3.28",
"@angular/compiler": "20.3.27",
"@angular/core": "21.1.5",
"@angular/animations": "22.1.2",
"@angular/cdk": "22.1.2",
"@angular/common": "22.1.2",
"@angular/compiler": "22.1.2",
"@angular/core": "22.1.2",
"@angular/flex-layout": "^15.0.0-beta.42",
"@angular/forms": "21.1.5",
"@angular/material": "21.1.5",
"@angular/platform-browser": "21.1.5",
"@angular/platform-browser-dynamic": "21.1.5",
"@angular/router": "21.1.5",
"@angular/forms": "22.1.2",
"@angular/material": "22.1.2",
"@angular/platform-browser": "22.1.2",
"@angular/platform-browser-dynamic": "22.1.2",
"@angular/router": "22.1.2",
"@finos/fdc3": "~2.0.3",
"material-icons": "1.13.14",
"rxjs": "7.8.2",
"tslib": "2.8.1",
"zone.js": "^0.15.1"
"zone.js": "~0.16.0"
},
"devDependencies": {
"@angular/build": "^21.1.4",
"@angular/cli": "21.1.4",
"@angular/compiler-cli": "21.1.5",
"@angular/build": "^22.1.4",
"@angular/cli": "22.1.4",
"@angular/compiler-cli": "22.1.2",
"@types/jasmine": "6.0.0",
"jasmine-core": "6.3.0",
"karma": "6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "2.2.0",
"typescript": "5.9.3"
"typescript": "6.0.3",
"istanbul-lib-instrument": "^6.0.3"
}
}
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
/* Morgan Stanley makes this available to you under the Apache License, Version 2.0 (the "License"). You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */

import { Component } from '@angular/core';
import { ChangeDetectionStrategy, Component } from '@angular/core';

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
changeDetection: ChangeDetectionStrategy.Eager,
standalone: false
})
export class AppComponent {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* Morgan Stanley makes this available to you under the Apache License, Version 2.0 (the "License"). You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */

import { SelectionModel } from '@angular/cdk/collections';
import { AfterViewInit, ChangeDetectorRef, Component, NgZone, OnInit, ViewChild } from '@angular/core';
import { AfterViewInit, ChangeDetectionStrategy, ChangeDetectorRef, Component, NgZone, OnInit, ViewChild } from '@angular/core';
import { MatPaginator, MatPaginatorIntl, PageEvent } from '@angular/material/paginator';
import { MatTableDataSource } from '@angular/material/table';
import { Symbol } from '../models/Symbol';
Expand All @@ -12,6 +12,7 @@ import { Subscription } from 'rxjs';
selector: 'app-datagrid',
templateUrl: './datagrid.component.html',
styleUrls: ['./datagrid.component.scss'],
changeDetection: ChangeDetectionStrategy.Eager,
standalone: false
})

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
/* Morgan Stanley makes this available to you under the Apache License, Version 2.0 (the "License"). You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */

import { Component } from '@angular/core';
import { ChangeDetectionStrategy, Component } from '@angular/core';

@Component({
selector: 'app-main-view',
templateUrl: './main-view.component.html',
styleUrls: ['./main-view.component.scss'],
changeDetection: ChangeDetectionStrategy.Eager,
standalone: false
})
export class MainViewComponent {
Expand Down
10 changes: 9 additions & 1 deletion examples/fdc3-chart-and-grid/js-datagrid/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,13 @@
],
"include": [
"src/**/*.d.ts"
]
],
"angularCompilerOptions": {
"extendedDiagnostics": {
"checks": {
"nullishCoalescingNotNullable": "suppress",
"optionalChainNotNullable": "suppress"
}
}
}
}
10 changes: 9 additions & 1 deletion examples/fdc3-chart-and-grid/js-datagrid/tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,13 @@
"include": [
"src/**/*.spec.ts",
"src/**/*.d.ts"
]
],
"angularCompilerOptions": {
"extendedDiagnostics": {
"checks": {
"nullishCoalescingNotNullable": "suppress",
"optionalChainNotNullable": "suppress"
}
}
}
}
27 changes: 14 additions & 13 deletions examples/fdc3-trade-simulator/js-order-book/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,31 +10,32 @@
},
"private": true,
"dependencies": {
"@angular/animations": "21.1.5",
"@angular/common": "^20.3.28",
"@angular/compiler": "^20.3.27",
"@angular/core": "^21.1.5",
"@angular/forms": "^21.1.5",
"@angular/material": "21.1.5",
"@angular/platform-browser": "^21.1.5",
"@angular/platform-browser-dynamic": "^21.1.5",
"@angular/router": "^21.1.5",
"@angular/animations": "22.1.2",
"@angular/common": "^22.1.2",
"@angular/compiler": "^22.1.2",
"@angular/core": "^22.1.2",
"@angular/forms": "^22.1.2",
"@angular/material": "22.1.2",
"@angular/platform-browser": "^22.1.2",
"@angular/platform-browser-dynamic": "^22.1.2",
"@angular/router": "^22.1.2",
"@finos/fdc3": "~2.0.3",
"material-icons": "^1.13.14",
"rxjs": "7.8.2",
"tslib": "2.8.1"
},
"devDependencies": {
"@angular/build": "^21.1.4",
"@angular/cli": "^21.1.4",
"@angular/compiler-cli": "^21.1.5",
"@angular/build": "^22.1.4",
"@angular/cli": "^22.1.4",
"@angular/compiler-cli": "^22.1.2",
"@types/jasmine": "6.0.0",
"jasmine-core": "6.3.0",
"karma": "6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "2.2.0",
"typescript": "~5.9.3"
"typescript": "6.0.3",
"istanbul-lib-instrument": "^6.0.3"
}
}
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
/* Morgan Stanley makes this available to you under the Apache License, Version 2.0 (the "License"). You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */
import { Component } from '@angular/core';
import { ChangeDetectionStrategy, Component } from '@angular/core';

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
changeDetection: ChangeDetectionStrategy.Eager,
standalone: false
})
export class AppComponent {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Morgan Stanley makes this available to you under the Apache License, Version 2.0 (the "License"). You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */
import { Component, NgZone, OnDestroy, OnInit } from '@angular/core';
import { ChangeDetectionStrategy, Component, NgZone, OnDestroy, OnInit } from '@angular/core';
import { MatIconModule } from '@angular/material/icon';
import { MatTableDataSource, MatTableModule } from '@angular/material/table';
import { Channel, Listener } from '@finos/fdc3';
Expand Down Expand Up @@ -158,7 +158,8 @@ interface SubjectKeyValuePair {
selector: 'app-market-watch',
templateUrl: './market-watch.component.html',
imports: [MatTableModule, MatIconModule, MatButtonModule, MatTreeModule],
styleUrl: './market-watch.component.scss'
styleUrl: './market-watch.component.scss',
changeDetection: ChangeDetectionStrategy.Eager
})
export class MarketWatchComponent implements OnInit, OnDestroy{
private listeners: Listener[] = new Array<Listener>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,13 @@
],
"include": [
"src/**/*.d.ts"
]
],
"angularCompilerOptions": {
"extendedDiagnostics": {
"checks": {
"nullishCoalescingNotNullable": "suppress",
"optionalChainNotNullable": "suppress"
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,13 @@
"include": [
"src/**/*.spec.ts",
"src/**/*.d.ts"
]
],
"angularCompilerOptions": {
"extendedDiagnostics": {
"checks": {
"nullishCoalescingNotNullable": "suppress",
"optionalChainNotNullable": "suppress"
}
}
}
}
29 changes: 15 additions & 14 deletions examples/fdc3-trade-simulator/js-trader-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,32 +10,33 @@
},
"private": true,
"dependencies": {
"@angular/animations": "21.1.5",
"@angular/cdk": "^21.1.5",
"@angular/common": "^20.3.28",
"@angular/compiler": "^20.3.27",
"@angular/core": "^21.1.5",
"@angular/forms": "^21.1.5",
"@angular/material": "21.1.5",
"@angular/platform-browser": "^21.1.5",
"@angular/platform-browser-dynamic": "^21.1.5",
"@angular/router": "^21.1.5",
"@angular/animations": "22.1.2",
"@angular/cdk": "^22.1.2",
"@angular/common": "^22.1.2",
"@angular/compiler": "^22.1.2",
"@angular/core": "^22.1.2",
"@angular/forms": "^22.1.2",
"@angular/material": "22.1.2",
"@angular/platform-browser": "^22.1.2",
"@angular/platform-browser-dynamic": "^22.1.2",
"@angular/router": "^22.1.2",
"@finos/fdc3": "^2.0.3",
"material-icons": "^1.13.12",
"rxjs": "7.8.2",
"tslib": "2.8.1"
},
"devDependencies": {
"@angular/build": "^21.1.4",
"@angular/cli": "^21.1.4",
"@angular/compiler-cli": "^21.1.5",
"@angular/build": "^22.1.4",
"@angular/cli": "^22.1.4",
"@angular/compiler-cli": "^22.1.2",
"@types/jasmine": "~6.0.0",
"jasmine-core": "6.3.0",
"karma": "6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "2.2.0",
"typescript": "~5.9.3"
"typescript": "6.0.3",
"istanbul-lib-instrument": "^6.0.3"
}
}
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
/* Morgan Stanley makes this available to you under the Apache License, Version 2.0 (the "License"). You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */
import { Component } from '@angular/core';
import { ChangeDetectionStrategy, Component } from '@angular/core';
import { ThemeService } from './services/theme.service';

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrl: './app.component.scss',
changeDetection: ChangeDetectionStrategy.Eager,
standalone: false
})
export class AppComponent {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
/* Morgan Stanley makes this available to you under the Apache License, Version 2.0 (the "License"). You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */
import { Component, inject } from '@angular/core';
import { ChangeDetectionStrategy, Component, inject } from '@angular/core';
import { ThemeService } from '../../services/theme.service';

@Component({
selector: 'app-sidenav',
templateUrl: './sidenav.component.html',
styleUrl: './sidenav.component.scss',
changeDetection: ChangeDetectionStrategy.Eager,
standalone: false
})
export class SidenavComponent {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Morgan Stanley makes this available to you under the Apache License, Version 2.0 (the "License"). You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */
import { Component, Inject, Input, NgZone, OnDestroy } from '@angular/core';
import { ChangeDetectionStrategy, Component, Inject, Input, NgZone, OnDestroy } from '@angular/core';
import { FormControl, FormGroup, FormsModule } from '@angular/forms';
import { MatButtonModule } from '@angular/material/button';
import { MatDialog, MatDialogActions, MatDialogClose, MatDialogModule, MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog';
Expand All @@ -17,6 +17,7 @@ export interface SymbolElement {
selector: 'app-trade-idea-generator',
templateUrl: './trade-idea-generator.component.html',
styleUrl: './trade-idea-generator.component.scss',
changeDetection: ChangeDetectionStrategy.Eager,
standalone: false
})
export class TradeIdeaGeneratorComponent implements OnDestroy {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,13 @@
],
"include": [
"src/**/*.d.ts"
]
],
"angularCompilerOptions": {
"extendedDiagnostics": {
"checks": {
"nullishCoalescingNotNullable": "suppress",
"optionalChainNotNullable": "suppress"
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,13 @@
"include": [
"src/**/*.spec.ts",
"src/**/*.d.ts"
]
],
"angularCompilerOptions": {
"extendedDiagnostics": {
"checks": {
"nullishCoalescingNotNullable": "suppress",
"optionalChainNotNullable": "suppress"
}
}
}
}
Loading
Loading