@brightspace-ui/core 3.263.0 → 3.263.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.
@@ -182,7 +182,7 @@ function hideAccessible(target) {
182
182
  }
183
183
  child.setAttribute('tabindex', '-1');
184
184
 
185
- if (getFlag('GAUD-9398-make-backdrop-inert', false)) {
185
+ if (getFlag('GAUD-9398-make-backdrop-inert', true)) {
186
186
  if (child.hasAttribute('inert')) {
187
187
  child.setAttribute(BACKDROP_INERT, '');
188
188
  }
@@ -222,7 +222,7 @@ function showAccessible(elems) {
222
222
  } else {
223
223
  elem.removeAttribute('tabindex');
224
224
  }
225
- if (getFlag('GAUD-9398-make-backdrop-inert', false)) {
225
+ if (getFlag('GAUD-9398-make-backdrop-inert', true)) {
226
226
  if (elem.hasAttribute(BACKDROP_INERT)) {
227
227
  elem.removeAttribute(BACKDROP_INERT);
228
228
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "3.263.0",
3
+ "version": "3.263.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",