@brightspace-ui/core 3.263.1 → 3.263.3
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.
|
@@ -92,7 +92,7 @@ class DialogConfirm extends LocalizeCoreElement(DialogMixin(LitElement)) {
|
|
|
92
92
|
constructor() {
|
|
93
93
|
super();
|
|
94
94
|
this.critical = false;
|
|
95
|
-
this.preferNative = getFlag('GAUD-9644-prefer-native-confirm-dialogs',
|
|
95
|
+
this.preferNative = getFlag('GAUD-9644-prefer-native-confirm-dialogs', true);
|
|
96
96
|
this._criticalLabelId = getUniqueId();
|
|
97
97
|
this._textId = getUniqueId();
|
|
98
98
|
this._titleId = getUniqueId();
|
|
@@ -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',
|
|
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
|
}
|
package/components/tabs/tabs.js
CHANGED
|
@@ -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',
|
|
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.
|
|
3
|
+
"version": "3.263.3",
|
|
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",
|