@brightspace-ui/core 3.88.0 → 3.88.1
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.
@@ -210,7 +210,7 @@ class InputCheckbox extends InputInlineHelpMixin(FocusMixin(SkeletonMixin(LitEle
|
|
210
210
|
aria-label="${ifDefined(this.ariaLabel)}"
|
211
211
|
@change="${this.#handleChange}"
|
212
212
|
class="d2l-input-checkbox"
|
213
|
-
@click="${this
|
213
|
+
@click="${this.#handleClick}"
|
214
214
|
.checked="${this.checked}"
|
215
215
|
?disabled="${disabled && !this.disabledTooltip}"
|
216
216
|
id="${this.#inputId}"
|
@@ -248,6 +248,10 @@ class InputCheckbox extends InputInlineHelpMixin(FocusMixin(SkeletonMixin(LitEle
|
|
248
248
|
));
|
249
249
|
}
|
250
250
|
|
251
|
+
#handleClick(e) {
|
252
|
+
if (this.disabled) e.preventDefault();
|
253
|
+
}
|
254
|
+
|
251
255
|
#handleMouseEnter() {
|
252
256
|
this._isHovered = true;
|
253
257
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@brightspace-ui/core",
|
3
|
-
"version": "3.88.
|
3
|
+
"version": "3.88.1",
|
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",
|