@brightspace-ui/core 3.30.2 → 3.30.4
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.
@@ -124,6 +124,9 @@ class LoadMore extends PageableSubscriberMixin(FocusMixin(LocalizeCoreElement(Rt
|
|
124
124
|
});
|
125
125
|
this._loading = false;
|
126
126
|
|
127
|
+
// wait a frame for async sub-components to render
|
128
|
+
await new Promise(resolve => requestAnimationFrame(resolve));
|
129
|
+
|
127
130
|
const item = pageable._getItemByIndex(lastItemIndex + 1);
|
128
131
|
|
129
132
|
if (!item) return;
|
@@ -123,10 +123,14 @@ export const tableStyles = css`
|
|
123
123
|
.d2l-table th:has(d2l-table-col-sort-button:not(:only-child)) d2l-table-col-sort-button {
|
124
124
|
--d2l-table-col-sort-button-width: unset;
|
125
125
|
}
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
126
|
+
}
|
127
|
+
|
128
|
+
/* has at least one d2l-table-col-sort-button with [nosort], does not have d2l-table-col-sort-button without nosort */
|
129
|
+
.d2l-table th d2l-table-col-sort-button[nosort] ~ :last-child {
|
130
|
+
padding-inline-end: calc(0.6rem + 18px);
|
131
|
+
}
|
132
|
+
.d2l-table th d2l-table-col-sort-button:not([nosort]) ~ :last-child {
|
133
|
+
padding-inline-end: unset;
|
130
134
|
}
|
131
135
|
|
132
136
|
/* border radiuses */
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@brightspace-ui/core",
|
3
|
-
"version": "3.30.
|
3
|
+
"version": "3.30.4",
|
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",
|