@brightspace-ui/core 2.128.0 → 2.128.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/components/list/list.js +5 -2
- package/package.json +1 -1
package/components/list/list.js
CHANGED
|
@@ -56,11 +56,14 @@ class List extends PageableMixin(SelectionMixin(LitElement)) {
|
|
|
56
56
|
:host {
|
|
57
57
|
display: block;
|
|
58
58
|
}
|
|
59
|
+
:host(:not([slot="nested"])) > .d2l-list-content {
|
|
60
|
+
padding-bottom: 2px;
|
|
61
|
+
}
|
|
59
62
|
:host([hidden]) {
|
|
60
63
|
display: none;
|
|
61
64
|
}
|
|
62
65
|
slot[name="pager"]::slotted(*) {
|
|
63
|
-
margin-top:
|
|
66
|
+
margin-top: 10px;
|
|
64
67
|
}
|
|
65
68
|
`;
|
|
66
69
|
}
|
|
@@ -127,7 +130,7 @@ class List extends PageableMixin(SelectionMixin(LitElement)) {
|
|
|
127
130
|
return html`
|
|
128
131
|
<slot name="controls"></slot>
|
|
129
132
|
<slot name="header"></slot>
|
|
130
|
-
<div role="${role}" aria-label="${ifDefined(ariaLabel)}">
|
|
133
|
+
<div role="${role}" aria-label="${ifDefined(ariaLabel)}" class="d2l-list-content">
|
|
131
134
|
<slot @keydown="${this._handleKeyDown}" @slotchange="${this._handleSlotChange}"></slot>
|
|
132
135
|
</div>
|
|
133
136
|
${this._renderPagerContainer()}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brightspace-ui/core",
|
|
3
|
-
"version": "2.128.
|
|
3
|
+
"version": "2.128.1",
|
|
4
4
|
"description": "A collection of accessible, free, open-source web components for building Brightspace applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": "https://github.com/BrightspaceUI/core.git",
|