Skip to content

Commit 756ceae

Browse files
Merge branch 'main' into change-default-span-series
2 parents 03973fd + f042275 commit 756ceae

File tree

5 files changed

+23
-10
lines changed

5 files changed

+23
-10
lines changed

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"d3-shape": "^1.3.5",
6060
"d3-transition": "^1.2.0",
6161
"d3-zoom": "^1.8.3",
62-
"graphql": "^15.7.0",
62+
"graphql": "^15.7.2",
6363
"graphql-tag": "^2.12.6",
6464
"iso8601-duration": "^1.3.0",
6565
"lodash-es": "^4.17.21",

projects/components/src/table/controls/table-controls.component.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ import {
6767
class="control select"
6868
showBorder="true"
6969
searchMode="${MultiSelectSearchMode.CaseInsensitive}"
70-
(selectedChange)="this.onMultiSelectChange(selectControl, $event)"
70+
(selectedChange)="this.onSelectChange(selectControl, $event)"
7171
>
7272
<ht-select-option
7373
*ngFor="let option of selectControl.options"
@@ -241,6 +241,13 @@ export class TableControlsComponent implements OnChanges {
241241
});
242242
}
243243

244+
public onSelectChange(select: TableSelectControl, selection: TableSelectControlOption): void {
245+
this.selectChange.emit({
246+
select: select,
247+
values: [selection]
248+
});
249+
}
250+
244251
public onCheckboxChange(checked: string[]): void {
245252
const diff = this.checkboxDiffer?.diff(checked);
246253
if (!diff) {

projects/components/src/titled-content/titled-content.component.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,11 @@
4949
height: 12px;
5050
margin-bottom: 12px;
5151
}
52+
53+
&.title-case-gray {
54+
@include subtitle-2($gray-4);
55+
text-transform: capitalize;
56+
}
5257
}
5358
}
5459

projects/components/src/titled-content/titled-content.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ export const enum TitlePosition {
9090
// Regular title (black) and GrayedOut new style (gray)
9191
export const enum TitledContentTitleStyle {
9292
Regular = 'regular',
93-
GrayedOut = 'grayed-out'
93+
GrayedOut = 'grayed-out',
94+
TitleCaseGray = 'title-case-gray'
9495
}
9596

9697
export const enum TitledContentHeaderJustify {

0 commit comments

Comments
 (0)