Skip to content

Commit 1bf2d3b

Browse files
Merge remote-tracking branch origin/main into log-marker
2 parents b1f9976 + 12f802a commit 1bf2d3b

29 files changed

+8399
-1245
lines changed

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"@hypertrace/hyperdash-angular": "^2.5.0",
4141
"@types/d3-hierarchy": "^2.0.0",
4242
"@types/d3-transition": "1.1.5",
43-
"apollo-angular": "^2.4.0",
43+
"apollo-angular": "^2.6.0",
4444
"core-js": "^3.12.1",
4545
"d3-array": "^2.12.0",
4646
"d3-axis": "^2.1.0",
@@ -97,7 +97,7 @@
9797
"cz-conventional-changelog": "^3.3.0",
9898
"husky": "^4.3.8",
9999
"jest": "^26.6.3",
100-
"jest-config": "^26.6.3",
100+
"jest-config": "^27.0.4",
101101
"jest-html-reporter": "^3.4.1",
102102
"jest-junit": "^12.1.0",
103103
"jest-preset-angular": "^8.4.0",

projects/common/src/color/color.ts

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,17 @@ export const enum Color {
55
Blue5 = '#0053d7',
66
Blue7 = '#003385',
77
BlueGray4 = '#4b5f77',
8+
Cloud1 = '#edf4f9',
9+
Cloud2 = '#c7ddec',
10+
Cloud3 = '#a1c5e0',
811
Gray1 = '#f4f5f5',
912
Gray2 = '#e1e4e5',
1013
Gray3 = '#b7bfc2',
1114
Gray4 = '#889499',
1215
Gray5 = '#657277',
16+
Gray6 = '#40474a',
1317
Gray7 = '#272c2e',
18+
Gray8 = '#171a1c',
1419
Gray9 = '#080909',
1520
Green2 = '#c3f3db',
1621
Green3 = '#95eabe',
@@ -26,9 +31,21 @@ export const enum Color {
2631
Red1 = '#fff3f1',
2732
Red2 = '#fecac2',
2833
Red3 = '#FEA395',
34+
Red4 = '#fd7c68',
2935
Red5 = '#FD5138',
3036
Red6 = '#F72202',
37+
Red7 = '#bb1902',
38+
Red8 = '#6a0e01',
39+
Red9 = '#140300',
3140
Brown1 = '#9e4c41',
3241
White = '#FFFFFF',
33-
Yellow4 = '#FFE566'
42+
Yellow1 = '#fffbeb',
43+
Yellow2 = '#fff4c2',
44+
Yellow3 = '#ffed94',
45+
Yellow4 = '#FFE566',
46+
Yellow5 = '#ffdd3a',
47+
Yellow6 = '#facf00',
48+
Yellow7 = '#bd9d00',
49+
Yellow8 = '#6d5b00',
50+
Yellow9 = '#181400'
3451
}

projects/components/src/combo-box/combo-box.component.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@
113113
}
114114

115115
.popover-item {
116+
@include body-1-regular($gray-7);
116117
height: 36px;
117118
padding: 2px 12px;
118119
cursor: pointer;

projects/components/src/confirmation/confirmation-modal.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
.description {
1515
@include body-1-regular($gray-7);
1616
text-align: center;
17-
word-break: break-all;
17+
word-break: break-word;
1818
}
1919

2020
.controls {

projects/components/src/form-field/form-field.component.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
@import 'mixins';
22

33
.form-field {
4-
padding-top: 8px;
5-
64
&.optional {
75
margin-bottom: 18px;
86
}

projects/components/src/form-field/form-field.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import { IconSize } from '../icon/icon-size';
77
changeDetection: ChangeDetectionStrategy.OnPush,
88
template: `
99
<section class="form-field" [ngClass]="{ optional: this.isOptional }">
10-
<div class="info-label">
11-
<ht-label *ngIf="this.label" class="label" [label]="this.label"></ht-label>
10+
<div *ngIf="this.label" class="info-label">
11+
<ht-label class="label" [label]="this.label"></ht-label>
1212
<ht-label *ngIf="this.isOptional" class="optional-label" label="(Optional)"></ht-label>
1313
<ht-icon
1414
*ngIf="this.icon"

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
@import 'mixins';
12
@import 'color-palette';
23

34
:host {
@@ -31,6 +32,7 @@
3132
padding-bottom: 0;
3233

3334
.mat-form-field-label {
35+
@include body-1-regular($gray-7);
3436
padding: 0 0 0 8px;
3537
line-height: initial;
3638
color: $gray-5;

projects/components/src/link/link.component.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
@import 'color-palette';
33

44
.ht-link {
5+
display: flex;
6+
align-items: center;
57
text-decoration-line: none;
68
text-decoration: none;
79
color: inherit;

projects/components/src/radio/radio-group.component.scss

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,20 @@
5858
.radio-button-label {
5959
@include body-2-regular($gray-7);
6060
}
61+
62+
&.disabled {
63+
&.mat-radio-checked .mat-radio-container .mat-radio-outer-circle {
64+
background: $gray-3;
65+
}
66+
67+
.mat-radio-container .mat-radio-outer-circle {
68+
background: $gray-1;
69+
}
70+
71+
.radio-button-label {
72+
color: $gray-5;
73+
}
74+
}
6175
}
6276

6377
.radio-button:last-child {

0 commit comments

Comments
 (0)