@brightspace-ui/core 3.164.1 → 3.164.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.
@@ -586,7 +586,7 @@ The `d2l-filter-overflow-group` is a container for multiple filters that handles
586
586
  ## Future Improvements
587
587
 
588
588
  * Date Dimension - Ability to filter by dates
589
- * ability to delay change events until the user has pressed an apply button (see [#341](https://github.com/BrightspaceUI/core/issues/341))
589
+ * ability to delay change events until the user has pressed an apply button
590
590
 
591
591
  Looking for an enhancement not listed here? Create a GitHub issue!
592
592
  <!-- docs: end hidden content -->
@@ -4,7 +4,6 @@ import { findComposedAncestor, isComposedAncestor } from '../../helpers/dom.js';
4
4
  import { announce } from '../../helpers/announce.js';
5
5
  import { classMap } from 'lit/directives/class-map.js';
6
6
  import { dragActions } from './list-item-drag-handle.js';
7
- import { getFlag } from '../../helpers/flags.js';
8
7
  import { getUniqueId } from '../../helpers/uniqueId.js';
9
8
  import { ifDefined } from 'lit/directives/if-defined.js';
10
9
  import { SelectionInfo } from '../selection/selection-mixin.js';
@@ -22,8 +21,6 @@ export const moveLocations = Object.freeze({
22
21
 
23
22
  export const dropLocation = moveLocations; // backwards compatibility
24
23
 
25
- const dragDropMultipleFlag = getFlag('GAUD-7495-list-item-drag-drop-multiple', true);
26
-
27
24
  const dropTargetLeaveDelay = 1000; // ms
28
25
  const touchHoldDuration = 400; // length of time user needs to hold down touch before dragging occurs
29
26
  const scrollSensitivity = 150; // pixels between top/bottom of viewport to scroll for mobile
@@ -370,8 +367,6 @@ export const ListItemDragDropMixin = superclass => class extends superclass {
370
367
  if (!this.key) {
371
368
  this.draggable = false;
372
369
  }
373
-
374
- if (!dragDropMultipleFlag) return;
375
370
  this._dragMultiple = this.getRootList()?.hasAttribute('drag-multiple');
376
371
  }
377
372
 
@@ -877,8 +872,6 @@ export const ListItemDragDropMixin = superclass => class extends superclass {
877
872
  }
878
873
 
879
874
  _renderDragMultipleImage() {
880
- if (!dragDropMultipleFlag) return nothing;
881
-
882
875
  return this._dragMultiple && this.draggable && (this.selectable || this.expandable) ? html`<d2l-list-item-drag-image></d2l-list-item-drag-image>` : nothing;
883
876
  }
884
877
 
@@ -42,8 +42,7 @@ class HtmlBlockMathRenderer {
42
42
  if (!options.contextValues) return elem;
43
43
  let context = options.contextValues.get(mathjaxContextKey);
44
44
 
45
- // For 20.25.11, update to default to true if flag helper can't be found
46
- if (getFlag('shield-12649-mathjax-default-context', false)) {
45
+ if (getFlag('shield-12649-mathjax-default-context', true)) {
47
46
  context = context || {
48
47
  renderLatex: false,
49
48
  outputScale: 1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "3.164.1",
3
+ "version": "3.164.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",
@@ -54,7 +54,7 @@
54
54
  "chalk": "^5",
55
55
  "eslint": "^9",
56
56
  "eslint-config-brightspace": "^2.0.0",
57
- "eslint-plugin-unicorn": "^60",
57
+ "eslint-plugin-unicorn": "^61",
58
58
  "glob-all": "^3",
59
59
  "messageformat-validator": "^3.0.0-beta",
60
60
  "rollup": "^4",
@@ -1074,7 +1074,7 @@ class TemplatePrimarySecondary extends LocalizeCoreElement(LitElement) {
1074
1074
  ${this.secondaryFirst && !this._isMobile ? primarySection : secondarySection}
1075
1075
  </div>
1076
1076
  <footer ?hidden="${!this._hasFooter}">
1077
- <div class="d2l-template-primary-secondary-footer"><slot name="footer" @slotchange="${this._handleFooterSlotChange}"></div></slot>
1077
+ <div class="d2l-template-primary-secondary-footer"><slot name="footer" @slotchange="${this._handleFooterSlotChange}"></slot></div>
1078
1078
  </footer>
1079
1079
  </div>
1080
1080
  `;