@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.
@@ -130,7 +130,7 @@ class ListDemoNav extends LitElement {
130
130
  if (!this.shadowRoot) return;
131
131
  const newItem = this.shadowRoot.querySelector('d2l-list').getListItemByKey(sourceListItems[0].key);
132
132
  newItem.activateDragHandle();
133
- }, 10);
133
+ }, 50);
134
134
  }
135
135
  }
136
136
 
@@ -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
- }, 10);
144
+ }, 50);
145
145
  }
146
146
 
147
147
  }
@@ -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
- if (context.replaceNoneSubSuperScripts) {
68
- elem.querySelectorAll('math mmultiscripts > none').forEach(elm => {
69
- const mrow = document.createElementNS('http://www.w3.org/1998/Math/MathML', 'mrow');
70
- elm.replaceWith(mrow);
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.4",
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",
@@ -977,6 +977,7 @@ class TemplatePrimarySecondary extends RtlMixin(LocalizeCoreElement(LitElement))
977
977
 
978
978
  .d2l-template-primary-secondary-container > footer {
979
979
  box-shadow: none;
980
+ padding: 0;
980
981
  }
981
982
 
982
983
  .d2l-template-primary-secondary-container,