generated from finos-labs/project-blueprint
-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated Angular 18 and Ag-grid 32. (#214)
* ng update results * remoevd yarn reference from docs website and updated ngx-bootstrap and ag-grid incompat issues. * Update to latest angular 18 * Upgrading ag-grid to versions compatible with Angular 18 * chore(deps): update dependency system.text.json to 8.0.4 (#209) Verified that this change works in isolation Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update dependency serilog.aspnetcore to 8.0.2 (#208) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update dependency fluentvalidation to 11.9.2 (#181) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * chore(deps): update dependency swashbuckle.aspnetcore to 6.7.3 (#169) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * Banner fix (#139) * update traderx logo * Add files via upload * Update header.component.html * Fixing banner and color icon * Resetting this file name * fixing bad icon merge/ conflicts --------- Co-authored-by: Mimi Flynn <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Juan Estrella <[email protected]> Co-authored-by: DovOps <[email protected]>
- Loading branch information
1 parent
4aa4151
commit 4635519
Showing
16 changed files
with
60 additions
and
9,515 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
web-front-end/angular/main/app/trade/position-blotter/position-blotter.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<h5>Positions</h5> | ||
|
||
<ag-grid-angular #agGrid style="width: 100%; height: 350px;" id="myGrid" class="ag-theme-alpine" | ||
[columnDefs]="columnDefs" [rowData]="positions" (gridReady)="onGridReady($event)" [getRowNodeId]="getRowNodeId"> | ||
[columnDefs]="columnDefs" [rowData]="positions" (gridReady)="onGridReady($event)" [getRowId]="getRowId"> | ||
</ag-grid-angular> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
web-front-end/angular/main/app/trade/trade-blotter/trade-blotter.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<h5>Trades</h5> | ||
|
||
<ag-grid-angular style="width: 100%; height: 350px;" class="ag-theme-alpine" [columnDefs]="columnDefs" | ||
[rowData]="trades" (gridReady)="onGridReady($event)" [getRowNodeId]="getRowNodeId"> | ||
[rowData]="trades" (gridReady)="onGridReady($event)" [getRowId]="getRowId"> | ||
</ag-grid-angular> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,32 @@ | ||
@import "~bootstrap/dist/css/bootstrap.css"; | ||
@import '~ag-grid-community/styles/ag-grid.css'; | ||
@import '~ag-grid-community/styles/ag-theme-alpine.css'; | ||
|
||
@import 'bootstrap/dist/css/bootstrap.css'; | ||
@import 'ag-grid-community/styles/ag-grid.css'; | ||
@import 'ag-grid-community/styles/ag-theme-alpine.css'; | ||
|
||
.btn-primary { | ||
background-color: #044fbd; | ||
border-color: #044fbd; | ||
} | ||
background-color: #044fbd; | ||
border-color: #044fbd; | ||
} | ||
|
||
.btn-primary:hover { | ||
background-color: #0d6efd; | ||
background-color: #0d6efd; | ||
} | ||
|
||
#buyButton { | ||
background-color: green; | ||
background-color: green; | ||
} | ||
|
||
#sellButton { | ||
background-color: red; | ||
background-color: red; | ||
} | ||
|
||
.btn-info { | ||
background-color: #0d6efd; | ||
background-color: #0d6efd; | ||
} | ||
|
||
.btn-info:hover { | ||
background-color: #3583f9; | ||
background-color: #3583f9; | ||
} | ||
|
||
.drpbtn3 { | ||
margin-left: 5px; | ||
} | ||
margin-left: 5px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ The command should open your browser and point to `http://localhost:3000`. | |
|
||
You can configure Netlify using your own GitHub account, pointing to a personal repository (or fork); when adding a new site, please use the following configuration: | ||
- Woeking directory: `website` | ||
- Build command: `yarn build` | ||
- Build command: `npm run build` | ||
- Build directory: `website/build` | ||
|
||
If you want to serve your website through `https://<project_name>.finos.org`, please email [[email protected]](mailto:[email protected]). To check a preview, visit https://project-blueprint.finos.org . |
Oops, something went wrong.