@brightspace-ui/core 2.93.0 → 2.93.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.
@@ -475,7 +475,7 @@ class Filter extends FocusMixin(LocalizeCoreElement(RtlMixin(LitElement))) {
475
475
  'd2l-empty-state-container': true,
476
476
  'd2l-offscreen': count !== 0
477
477
  };
478
- const emptyState = dimension.searchEmptyState
478
+ const emptyState = dimension.searchEmptyState && count === 0
479
479
  ? this._createEmptyState(dimension.searchEmptyState, dimension.key, EmptyStateType.Search)
480
480
  : html`
481
481
  <d2l-empty-state-simple
@@ -347,6 +347,7 @@ class InputColor extends FocusMixin(FormElementMixin(LocalizeCoreElement(LitElem
347
347
 
348
348
  _handleClose() {
349
349
  this._opened = false;
350
+ /** @ignore */
350
351
  this.dispatchEvent(new CustomEvent(
351
352
  'd2l-input-color-close', { bubbles: false, composed: false }
352
353
  ));
@@ -384,6 +385,7 @@ class InputColor extends FocusMixin(FormElementMixin(LocalizeCoreElement(LitElem
384
385
 
385
386
  _handleOpenDropdown() {
386
387
  this._opened = true;
388
+ /** @ignore */
387
389
  this.dispatchEvent(new CustomEvent(
388
390
  'd2l-input-color-open', { bubbles: false, composed: false }
389
391
  ));
@@ -4719,12 +4719,6 @@
4719
4719
  {
4720
4720
  "name": "change",
4721
4721
  "description": "Dispatched when an alteration to the value is committed by the user."
4722
- },
4723
- {
4724
- "name": "d2l-input-color-close"
4725
- },
4726
- {
4727
- "name": "d2l-input-color-open"
4728
4722
  }
4729
4723
  ]
4730
4724
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "2.93.0",
3
+ "version": "2.93.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",