@brightspace-ui/core 3.148.4 → 3.148.6
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.
@@ -141,7 +141,7 @@ class ListDemoNested extends LitElement {
|
|
141
141
|
if (!this.shadowRoot) return;
|
142
142
|
const newItem = this.shadowRoot.querySelector('d2l-list').getListItemByKey(sourceListItems[0].key);
|
143
143
|
newItem.activateDragHandle();
|
144
|
-
},
|
144
|
+
}, 50);
|
145
145
|
}
|
146
146
|
|
147
147
|
}
|
package/helpers/mathjax.js
CHANGED
@@ -64,12 +64,10 @@ class HtmlBlockMathRenderer {
|
|
64
64
|
// WIRIS outputs bad syntax for empty sub/superscripts, but changing these on write
|
65
65
|
// can be risky. Instead, change them on render to minimize potential damage if this
|
66
66
|
// impacts legitimate usages.
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
});
|
72
|
-
}
|
67
|
+
elem.querySelectorAll('math mmultiscripts > none').forEach(elm => {
|
68
|
+
const mrow = document.createElementNS('http://www.w3.org/1998/Math/MathML', 'mrow');
|
69
|
+
elm.replaceWith(mrow);
|
70
|
+
});
|
73
71
|
|
74
72
|
// If we're using deferred rendering, we need to create a document structure
|
75
73
|
// within the element so MathJax can appropriately process math.
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@brightspace-ui/core",
|
3
|
-
"version": "3.148.
|
3
|
+
"version": "3.148.6",
|
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",
|