maru_design2 2.14.1 → 2.14.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.
- package/CHANGELOG.md +7 -0
- package/dist/index.js +4 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.14.2](https://github.com/42maru-ai/maru-design2/compare/v2.14.1...v2.14.2) (2024-08-09)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* :bug: Radio - FIX label stopPropagation ([ca6b6e1](https://github.com/42maru-ai/maru-design2/commit/ca6b6e1c246ce594ff05eda002c01f5795a352f8))
|
|
9
|
+
|
|
3
10
|
## [2.14.1](https://github.com/42maru-ai/maru-design2/compare/v2.14.0...v2.14.1) (2024-08-07)
|
|
4
11
|
|
|
5
12
|
|
package/dist/index.js
CHANGED
|
@@ -6187,7 +6187,10 @@ var Radio = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
6187
6187
|
htmlFor: inputId,
|
|
6188
6188
|
className: classNames('maru-radio-label', {
|
|
6189
6189
|
'label-disabled': props.disabled
|
|
6190
|
-
})
|
|
6190
|
+
}),
|
|
6191
|
+
onClick: function onClick(e) {
|
|
6192
|
+
return e.stopPropagation();
|
|
6193
|
+
}
|
|
6191
6194
|
}, {
|
|
6192
6195
|
children: label
|
|
6193
6196
|
}))]
|