Skip to content

Commit 88aa7c3

Browse files
Merge pull request #5 from razorpay/latest_fork
Latest fork
2 parents ac1d316 + 2fd0084 commit 88aa7c3

File tree

8 files changed

+30119
-55
lines changed

8 files changed

+30119
-55
lines changed

package-lock.json

Lines changed: 30087 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@
4040
"@fullstory/browser": "^1.4.9",
4141
"@hypertrace/hyperdash": "^1.2.1",
4242
"@hypertrace/hyperdash-angular": "^2.6.0",
43-
"@types/d3-hierarchy": "^2.0.0",
43+
"@types/d3-hierarchy": "^2.0.2",
4444
"@types/d3-transition": "1.1.5",
4545
"apollo-angular": "^2.6.0",
46-
"core-js": "^3.18.0",
46+
"core-js": "^3.18.1",
4747
"d3-array": "^2.12.0",
4848
"d3-axis": "^2.1.0",
4949
"d3-brush": "^1.1.6",
@@ -78,7 +78,7 @@
7878
"@commitlint/cli": "^13.1.0",
7979
"@commitlint/config-conventional": "^13.1.0",
8080
"@compodoc/compodoc": "^1.1.14",
81-
"@ngneat/spectator": "^8.0.4",
81+
"@ngneat/spectator": "^8.1.0",
8282
"@types/d3-array": "^2.9.0",
8383
"@types/d3-axis": "^2.0.0",
8484
"@types/d3-brush": "^2.1.0",
@@ -91,7 +91,7 @@
9191
"@types/d3-shape": "^2.1.0",
9292
"@types/d3-zoom": "^1.7.5",
9393
"@types/jest": "^26.0.24",
94-
"@types/lodash-es": "^4.17.4",
94+
"@types/lodash-es": "^4.17.5",
9595
"@types/mixpanel-browser": "^2.35.7",
9696
"@types/node": "^16.7.10",
9797
"@types/uuid": "^8.3.1",
@@ -103,7 +103,7 @@
103103
"jest": "^26.6.3",
104104
"jest-config": "^27.2.0",
105105
"jest-html-reporter": "^3.4.1",
106-
"jest-junit": "^12.2.0",
106+
"jest-junit": "^13.0.0",
107107
"jest-preset-angular": "^8.4.0",
108108
"lodash": "^4.17.21",
109109
"ng-mocks": "^12.5.0",
Lines changed: 3 additions & 0 deletions
Loading

projects/assets-library/src/icons/icon-library.module.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ const iconsRootPath = 'assets/icons';
4242
{ key: IconType.Dashboard, url: `${iconsRootPath}/dashboard.svg` },
4343
{ key: IconType.Device, url: `${iconsRootPath}/device.svg` },
4444
{ key: IconType.Download, url: `${iconsRootPath}/download.svg` },
45+
{ key: IconType.DrilldownFilter, url: `${iconsRootPath}/drilldown-filter.svg` },
4546
{ key: IconType.Edge, url: `${iconsRootPath}/edge.svg` },
4647
{ key: IconType.ExpandAll, url: `${iconsRootPath}/expand-all.svg` },
4748
{ key: IconType.Expanded, url: `${iconsRootPath}/minus-circle.svg` },

projects/assets-library/src/icons/icon-type.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ export const enum IconType {
4040
Device = 'svg:device',
4141
Done = 'done',
4242
Download = 'download',
43+
DrilldownFilter = 'svg:drilldown-filter',
4344
Edge = 'edge',
4445
Error = 'error_outline',
4546
Empty = 'panorama_fish_eye',

projects/components/src/number-input/number-input.component.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
.border {
1313
border: 1px solid $gray-2;
1414
border-radius: 6px;
15+
16+
&:hover {
17+
border-color: $gray-4;
18+
}
1519
}
1620

1721
.underline {

projects/observability/src/pages/api-trace-detail/api-trace-detail.page.component.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -61,17 +61,17 @@ import { ApiTraceDetails, ApiTraceDetailService } from './api-trace-detail.servi
6161
(click)="this.navigateToFullTrace(traceDetails.traceId, traceDetails.startTime)"
6262
></ht-button>
6363
</div>
64+
</div>
6465
65-
<ht-navigable-tab-group class="tabs">
66-
<ht-navigable-tab path="sequence"> Sequence </ht-navigable-tab>
67-
<ng-container *ngIf="this.logEvents$ | async as logEvents">
68-
<ht-navigable-tab path="logs" [labelTag]="logEvents.length"> Logs </ht-navigable-tab>
69-
</ng-container>
70-
</ht-navigable-tab-group>
66+
<ht-navigable-tab-group class="tabs">
67+
<ht-navigable-tab path="sequence"> Sequence </ht-navigable-tab>
68+
<ng-container *ngIf="this.logEvents$ | async as logEvents">
69+
<ht-navigable-tab path="logs" [labelTag]="logEvents.length"> Logs </ht-navigable-tab>
70+
</ng-container>
71+
</ht-navigable-tab-group>
7172
72-
<div class="scrollable-container">
73-
<router-outlet></router-outlet>
74-
</div>
73+
<div class="scrollable-container">
74+
<router-outlet></router-outlet>
7575
</div>
7676
</div>
7777
`

projects/observability/src/pages/trace-detail/trace-detail.page.component.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -60,17 +60,17 @@ import { TraceDetails, TraceDetailService } from './trace-detail.service';
6060
htTooltip="Download Trace as Json"
6161
></ht-download-json>
6262
</div>
63+
</div>
6364
64-
<ht-navigable-tab-group class="tabs">
65-
<ht-navigable-tab path="sequence"> Sequence </ht-navigable-tab>
66-
<ng-container *ngIf="this.logEvents$ | async as logEvents">
67-
<ht-navigable-tab path="logs" [labelTag]="logEvents.length"> Logs </ht-navigable-tab>
68-
</ng-container>
69-
</ht-navigable-tab-group>
65+
<ht-navigable-tab-group class="tabs">
66+
<ht-navigable-tab path="sequence"> Sequence </ht-navigable-tab>
67+
<ng-container *ngIf="this.logEvents$ | async as logEvents">
68+
<ht-navigable-tab path="logs" [labelTag]="logEvents.length"> Logs </ht-navigable-tab>
69+
</ng-container>
70+
</ht-navigable-tab-group>
7071
71-
<div class="scrollable-container">
72-
<router-outlet></router-outlet>
73-
</div>
72+
<div class="scrollable-container">
73+
<router-outlet></router-outlet>
7474
</div>
7575
</div>
7676
`

0 commit comments

Comments
 (0)