@ni/nimble-components 35.6.0 → 35.6.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.
- package/dist/all-components-bundle.js +4 -2
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +2 -2
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/esm/anchor-step/index.d.ts +1 -1
- package/dist/esm/anchor-step/index.js +2 -1
- package/dist/esm/anchor-step/index.js.map +1 -1
- package/dist/esm/step/index.d.ts +1 -1
- package/dist/esm/step/index.js +2 -1
- package/dist/esm/step/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -19565,9 +19565,10 @@ Defines an interaction area clip-path that leaves out the severity text so it is
|
|
|
19565
19565
|
*/
|
|
19566
19566
|
onClick(e) {
|
|
19567
19567
|
if (this.disabled || this.readOnly) {
|
|
19568
|
-
e.preventDefault();
|
|
19569
19568
|
e.stopImmediatePropagation();
|
|
19569
|
+
return false; /* Do prevent default */
|
|
19570
19570
|
}
|
|
19571
|
+
return true; /* Do not prevent default */
|
|
19571
19572
|
}
|
|
19572
19573
|
}
|
|
19573
19574
|
__decorate([
|
|
@@ -66758,9 +66759,10 @@ ${nextLine.slice(indentLevel + 2)}`;
|
|
|
66758
66759
|
*/
|
|
66759
66760
|
onClick(e) {
|
|
66760
66761
|
if (this.disabled || this.readOnly) {
|
|
66761
|
-
e.preventDefault();
|
|
66762
66762
|
e.stopImmediatePropagation();
|
|
66763
|
+
return false; /* Do prevent default */
|
|
66763
66764
|
}
|
|
66765
|
+
return true; /* Do not prevent default */
|
|
66764
66766
|
}
|
|
66765
66767
|
}
|
|
66766
66768
|
__decorate([
|