Skip to content

Commit fcdf335

Browse files
authored
Merge branch 'master' into integration-17
2 parents 4290f5d + ba33d09 commit fcdf335

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/contained-list/contained-list-item.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import {
1717
type="button"
1818
[disabled]="disabled"
1919
(click)="onClick()">
20-
<ng-content select="[ibmContainedListItemButton]"></ng-content>
20+
<ng-content select="[cdsContainedListItemButton],[ibmContainedListItemButton]"></ng-content>
2121
</button>
2222
</ng-container>
2323
<ng-container *ngIf="!clickable">

src/structured-list/structured-list.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ import { NG_VALUE_ACCESSOR, ControlValueAccessor } from "@angular/forms";
6363
'cds--structured-list--condensed': condensed,
6464
'cds--skeleton': skeleton
6565
}">
66-
<ng-content select="cds-list-header"></ng-content>
66+
<ng-content select="cds-list-header,ibm-list-header"></ng-content>
6767
<div class="cds--structured-list-tbody" role="rowgroup">
6868
<ng-content></ng-content>
6969
</div>

src/table/toolbar/table-toolbar.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ import { TableRowSize } from "../table.types";
6868
</p>
6969
</div>
7070
<div class="cds--action-list">
71-
<ng-content select="cds-table-toolbar-actions"></ng-content>
71+
<ng-content select="cds-table-toolbar-actions,ibm-table-toolbar-actions"></ng-content>
7272
<button
7373
cdsButton="primary"
7474
class="cds--batch-summary__cancel"

src/ui-shell/header/header.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import { I18n } from "carbon-components-angular/i18n";
3030
tabindex="0">
3131
{{ i18n.get("UI_SHELL.SKIP_TO") | async }}
3232
</a>
33-
<ng-content select="cds-hamburger"></ng-content>
33+
<ng-content select="cds-hamburger,ibm-hamburger"></ng-content>
3434
<ng-template
3535
*ngIf="isTemplate(brand)"
3636
[ngTemplateOutlet]="brand">

src/ui-shell/sidenav/sidenav.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { NavigationItem } from "../header/header-navigation-items.interface";
1616
selector: "cds-sidenav, ibm-sidenav",
1717
template: `
1818
<nav class="cds--side-nav__items" [attr.aria-label]="ariaLabel">
19-
<ng-content select="cds-sidenav-header"></ng-content>
19+
<ng-content select="cds-sidenav-header,ibm-sidenav-header"></ng-content>
2020
<div role="list">
2121
<div class="cds--side-nav__header-navigation cds--side-nav__header-divider">
2222
<ng-container *ngFor="let navigationItem of navigationItems">

0 commit comments

Comments
 (0)