@brightspace-ui/labs 2.50.0 → 2.50.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -221,7 +221,7 @@ class LabsAccordionCollapse extends LitElement {
|
|
|
221
221
|
render() {
|
|
222
222
|
return html`
|
|
223
223
|
<div id="header-container">
|
|
224
|
-
<a href="javascript:void(0)" id="trigger"
|
|
224
|
+
<a href="javascript:void(0)" id="trigger" aria-expanded=${this.opened ? 'true' : 'false'} class="header-grid-item" aria-controls="collapse" role="button" ?data-border="${this.headerBorder}" @blur=${this._triggerBlur} @click=${this.toggle} @focus=${this._triggerFocus}>
|
|
225
225
|
${!this.headerHasInteractiveContent ? html`
|
|
226
226
|
<div class="collapse-title" title="${this.label}">${this.title}${this.label}<slot name="header"></slot>
|
|
227
227
|
</div>
|
|
@@ -243,7 +243,7 @@ class LabsAccordionCollapse extends LitElement {
|
|
|
243
243
|
` : nothing}
|
|
244
244
|
</div>
|
|
245
245
|
|
|
246
|
-
<div class="content">
|
|
246
|
+
<div class="content" id="collapse">
|
|
247
247
|
<d2l-expand-collapse-content ?expanded=${this.opened} @d2l-expand-collapse-content-expand=${this._handleExpand} @d2l-expand-collapse-content-collapse=${this._handleCollapse}>
|
|
248
248
|
<slot></slot>
|
|
249
249
|
</d2l-expand-collapse-content>
|