Skip to content

Commit e74b0f2

Browse files
committedSep 11, 2024·
Merge branch 'next' of https://github.com/shoelace-style/shoelace into next
2 parents 82618d7 + 9480921 commit e74b0f2

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed
 

‎src/components/tab-group/tab-group.component.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import { watch } from '../../internal/watch.js';
77
import componentStyles from '../../styles/component.styles.js';
88
import ShoelaceElement from '../../internal/shoelace-element.js';
99
import SlIconButton from '../icon-button/icon-button.component.js';
10+
import SlResizeObserver from '../resize-observer/resize-observer.component.js';
1011
import styles from './tab-group.styles.js';
1112
import type { CSSResultGroup } from 'lit';
1213
import type SlTab from '../tab/tab.js';
@@ -42,7 +43,7 @@ import type SlTabPanel from '../tab-panel/tab-panel.js';
4243
*/
4344
export default class SlTabGroup extends ShoelaceElement {
4445
static styles: CSSResultGroup = [componentStyles, styles];
45-
static dependencies = { 'sl-icon-button': SlIconButton };
46+
static dependencies = { 'sl-icon-button': SlIconButton, 'sl-resize-observer': SlResizeObserver };
4647

4748
private readonly localize = new LocalizeController(this);
4849

@@ -437,7 +438,9 @@ export default class SlTabGroup extends ShoelaceElement {
437438
<div class="tab-group__nav">
438439
<div part="tabs" class="tab-group__tabs" role="tablist">
439440
<div part="active-tab-indicator" class="tab-group__indicator"></div>
440-
<slot name="nav" @slotchange=${this.syncTabsAndPanels}></slot>
441+
<sl-resize-observer @sl-resize=${this.syncIndicator}>
442+
<slot name="nav" @slotchange=${this.syncTabsAndPanels}></slot>
443+
</sl-resize-observer>
441444
</div>
442445
</div>
443446

0 commit comments

Comments
 (0)
Please sign in to comment.