@brightspace-ui/core 3.263.0 → 3.263.2

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 {
@@ -119,7 +119,7 @@ export const TabMixin = superclass => class extends SkeletonMixin(superclass) {
119
119
  * TODO: remove this whole if when removing the GAUD-9963-dropdown-tabs-not-resizing flag
120
120
  * keep the min max code an place that into the styles above
121
121
  */
122
- if (getFlag('GAUD-9963-dropdown-tabs-not-resizing', false)) {
122
+ if (getFlag('GAUD-9963-dropdown-tabs-not-resizing', true)) {
123
123
  this.style.setProperty('--d2l-gaud-9963-tab-max-width', 'min(20rem, max(33%, 10rem))');
124
124
  }
125
125
  }
@@ -430,7 +430,7 @@ class Tabs extends LocalizeCoreElement(ArrowKeysMixin(SkeletonMixin(LitElement))
430
430
  return (Object.keys(this._tabIds).length > 1 && !reduceMotion) ? this._animateTabRemoval(tab) : Promise.resolve();
431
431
  }
432
432
 
433
- #GAUD_9963_FLAG = getFlag('GAUD-9963-dropdown-tabs-not-resizing', false);
433
+ #GAUD_9963_FLAG = getFlag('GAUD-9963-dropdown-tabs-not-resizing', true);
434
434
  #checkTabPanelMatchRequested;
435
435
  #newTabsPanelStructure = getUseNewTabsStructureFlag();
436
436
  #panels;
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.2",
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",