Skip to content

Commit 5b995c3

Browse files
authored
Merge branch 'master' into dependabot/npm_and_yarn/integration/ng11/jszip-3.10.1
2 parents 7997777 + e0d04af commit 5b995c3

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

src/file-uploader/file.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ import { FileItem } from "./file-item.interface";
2424
*ngIf="isInvalidText"
2525
ibmIcon="warning--filled"
2626
class="bx--file--invalid"
27-
size="16"
28-
tabindex="0">
27+
size="16">
2928
</svg>
3029
<svg
3130
ibmIcon="close"

src/search/search.component.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
}"
1717
role="search"
1818
[attr.aria-label]="ariaLabel"
19-
tabindex="0"
2019
(click)="openSearch()">
2120
<label class="bx--label" [for]="id">{{label}}</label>
2221

src/table/table.component.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,12 @@ import { TableRowSize } from "./table.types";
241241
</tr>
242242
</tfoot>
243243
</table>
244-
`
244+
`,
245+
styles: [`
246+
:host {
247+
display: block;
248+
}
249+
`]
245250
})
246251
export class Table implements AfterViewInit, OnDestroy {
247252
/**
@@ -451,6 +456,11 @@ export class Table implements AfterViewInit, OnDestroy {
451456
*/
452457
@Input() striped = true;
453458

459+
/**
460+
* Allows table content to scroll horizontally
461+
*/
462+
@HostBinding("class.bx--data-table-content") tableContent = true;
463+
454464
/**
455465
* Set to `true` to stick the header to the top of the table
456466
*/

0 commit comments

Comments
 (0)