kopia lustrzana https://github.com/shoelace-style/shoelace
fixes #563
rodzic
0bba773c3e
commit
a9df468282
|
@ -11,6 +11,7 @@ _During the beta period, these restrictions may be relaxed in the event of a mis
|
|||
- Added experimental `<sl-animated-image>` component
|
||||
- Added `label` attribute to `<sl-progress-bar>` and `<sl-progress-ring>` to improve a11y
|
||||
- Fixed a bug where the tooltip would show briefly when clicking a disabled `<sl-range>`
|
||||
- Fixed a bug where the `nav` part in `<sl-tab-group>` was on the incorrect element [#563](https://github.com/shoelace-style/shoelace/pull/563)
|
||||
- Updated to Bootstrap Icons to 1.6.0
|
||||
|
||||
## 2.0.0-beta.57
|
||||
|
|
|
@ -354,7 +354,7 @@ export default class SlTabGroup extends LitElement {
|
|||
@click=${this.handleClick}
|
||||
@keydown=${this.handleKeyDown}
|
||||
>
|
||||
<div class="tab-group__nav-container">
|
||||
<div class="tab-group__nav-container" part="nav">
|
||||
${this.hasScrollControls
|
||||
? html`
|
||||
<sl-icon-button
|
||||
|
@ -367,7 +367,7 @@ export default class SlTabGroup extends LitElement {
|
|||
`
|
||||
: ''}
|
||||
|
||||
<div part="nav" class="tab-group__nav">
|
||||
<div class="tab-group__nav">
|
||||
<div part="tabs" class="tab-group__tabs" role="tablist">
|
||||
<div part="active-tab-indicator" class="tab-group__indicator"></div>
|
||||
<slot name="nav" @slotchange=${this.syncTabsAndPanels}></slot>
|
||||
|
|
Ładowanie…
Reference in New Issue