@brightspace-ui/core 3.297.0 → 3.298.0

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.
@@ -2,7 +2,6 @@ import { _generateResetStyles, heading3Styles } from '../typography/styles.js';
2
2
  import { css, html, LitElement, nothing } from 'lit';
3
3
  import { DialogMixin } from './dialog-mixin.js';
4
4
  import { dialogStyles } from './dialog-styles.js';
5
- import { getFlag } from '../../helpers/flags.js';
6
5
  import { getFocusRingStyles } from '../../helpers/focus.js';
7
6
  import { getUniqueId } from '../../helpers/uniqueId.js';
8
7
  import { ifDefined } from 'lit/directives/if-defined.js';
@@ -88,7 +87,7 @@ class DialogConfirm extends LocalizeCoreElement(DialogMixin(LitElement)) {
88
87
  constructor() {
89
88
  super();
90
89
  this.critical = false;
91
- this.preferNative = getFlag('GAUD-9644-prefer-native-confirm-dialogs', true);
90
+ this.preferNative = true;
92
91
  this._criticalLabelId = getUniqueId();
93
92
  this._textId = getUniqueId();
94
93
  this._titleId = getUniqueId();
@@ -2745,7 +2745,8 @@
2745
2745
  },
2746
2746
  {
2747
2747
  "name": "preferNative",
2748
- "default": "false"
2748
+ "type": "boolean",
2749
+ "default": "true"
2749
2750
  }
2750
2751
  ],
2751
2752
  "events": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "3.297.0",
3
+ "version": "3.298.0",
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",