@brightspace-ui/core 3.219.8 → 3.219.9

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.
@@ -64,7 +64,7 @@ class LoadingBackdrop extends LitElement {
64
64
  :host([_state="shown"]) d2l-loading-spinner {
65
65
  opacity: 1;
66
66
  }
67
-
67
+
68
68
  :host([_state="hiding"]) .d2l-backdrop,
69
69
  :host([_state="hiding"]) d2l-loading-spinner {
70
70
  transition: opacity ${FADE_DURATION_MS}ms ease-out;
@@ -111,7 +111,13 @@ class LoadingBackdrop extends LitElement {
111
111
  }
112
112
 
113
113
  #fade() {
114
- if (reduceMotion || this._state === 'showing') {
114
+ let hideImmediately = reduceMotion || this._state === 'showing';
115
+ if (this._state === 'shown') {
116
+ const currentOpacity = getComputedStyle(this.shadowRoot.querySelector('.backdrop')).opacity;
117
+ hideImmediately ||= (currentOpacity === '0');
118
+ }
119
+
120
+ if (hideImmediately) {
115
121
  this.#hide();
116
122
  } else {
117
123
  this._state = 'hiding';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "3.219.8",
3
+ "version": "3.219.9",
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",