@brightspace-ui/core 3.218.1 → 3.219.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.
@@ -91,7 +91,7 @@ class LoadingBackdrop extends LitElement {
91
91
  render() {
92
92
  return html`
93
93
  <div class="backdrop" _state=${this._state} @transitionend=${this.#handleTransitionEnd} @transitioncancel=${this.#hide}></div>
94
- <d2l-loading-spinner _state=${this._state}></d2l-loading-spinner>
94
+ <d2l-loading-spinner _state=${this._state} size="${this._state === null ? '0' : '50'}"></d2l-loading-spinner>
95
95
  `;
96
96
  }
97
97
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "3.218.1",
3
+ "version": "3.219.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",
@@ -1263,18 +1263,10 @@ class TemplatePrimarySecondary extends LocalizeCoreElement(LitElement) {
1263
1263
 
1264
1264
  _onPanelResizeEnd() {
1265
1265
  this.dispatchEvent(new CustomEvent('d2l-iframe-pointer-events-enable', { bubbles: true, composed: true }));
1266
- /**
1267
- * @ignore
1268
- */
1269
- this.dispatchEvent(new CustomEvent('d2l-template-primary-secondary-resize-end', { bubbles: true, composed: true }));
1270
1266
  }
1271
1267
 
1272
1268
  _onPanelResizeStart() {
1273
1269
  this.dispatchEvent(new CustomEvent('d2l-iframe-pointer-events-disable', { bubbles: true, composed: true }));
1274
- /**
1275
- * @ignore
1276
- */
1277
- this.dispatchEvent(new CustomEvent('d2l-template-primary-secondary-resize-start', { bubbles: true, composed: true }));
1278
1270
  }
1279
1271
 
1280
1272
  _onTransitionEnd() {