@brightspace-ui/core 3.106.3 → 3.106.4

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.
@@ -238,7 +238,7 @@ class InputCheckbox extends InputInlineHelpMixin(FocusMixin(SkeletonMixin(LitEle
238
238
  ${this._renderInlineHelp(this.#inlineHelpId)}
239
239
  ${offscreenContainer}
240
240
  ${disabledTooltip}
241
- <div class="${classMap(supportingClasses)}"><slot name="supporting" @slotchange="${this.#handleSupportingSlotChange}"></slot></div>
241
+ <div class="${classMap(supportingClasses)}" @change="${this.#handleSupportingChange}"><slot name="supporting" @slotchange="${this.#handleSupportingSlotChange}"></slot></div>
242
242
  `;
243
243
  }
244
244
 
@@ -276,6 +276,10 @@ class InputCheckbox extends InputInlineHelpMixin(FocusMixin(SkeletonMixin(LitEle
276
276
  this._isHovered = false;
277
277
  }
278
278
 
279
+ #handleSupportingChange(e) {
280
+ e.stopPropagation();
281
+ }
282
+
279
283
  #handleSupportingSlotChange(e) {
280
284
  const content = e.target.assignedNodes({ flatten: true });
281
285
  this._hasSupporting = content?.length > 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "3.106.3",
3
+ "version": "3.106.4",
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",