@useblu/ocean-react 1.31.1 → 1.31.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.
- package/CHANGELOG.md +4 -0
- package/index.es.js +2 -2
- package/index.es.js.map +1 -1
- package/index.js +2 -2
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -4975,7 +4975,7 @@ var Checkbox = e__default["default"].forwardRef(function Checkbox(_a, ref) {
|
|
|
4975
4975
|
return (e__default["default"].createElement("label", { className: "ods-checkbox__root", htmlFor: id },
|
|
4976
4976
|
e__default["default"].createElement("input", __assign({ ref: ref, id: id, className: classNames('ods-checkbox', className) }, rest, { type: "checkbox", "data-indeterminate": indeterminate })),
|
|
4977
4977
|
e__default["default"].createElement("span", { className: classNames('ods-checkbox__checkmark', indeterminate && 'ods-checkbox__checkmark--indeterminate') }),
|
|
4978
|
-
label && (e__default["default"].createElement("span", { className: "ods-typography ods-
|
|
4978
|
+
label && (e__default["default"].createElement("span", { className: "ods-typography ods-typography__description ods-checkbox__label" }, label))));
|
|
4979
4979
|
});
|
|
4980
4980
|
|
|
4981
4981
|
var Radio = e__default["default"].forwardRef(function Radio(_a, ref) {
|
|
@@ -4983,7 +4983,7 @@ var Radio = e__default["default"].forwardRef(function Radio(_a, ref) {
|
|
|
4983
4983
|
return (e__default["default"].createElement("label", { className: "ods-radio__root", htmlFor: id },
|
|
4984
4984
|
e__default["default"].createElement("input", __assign({ ref: ref, id: id, className: classNames('ods-radio', className) }, rest, { type: "radio" })),
|
|
4985
4985
|
e__default["default"].createElement("span", { className: "ods-radio__checkmark" }),
|
|
4986
|
-
label && (e__default["default"].createElement("span", { className: "ods-typography ods-
|
|
4986
|
+
label && (e__default["default"].createElement("span", { className: "ods-typography ods-typography__description ods-radio__label" }, label))));
|
|
4987
4987
|
});
|
|
4988
4988
|
|
|
4989
4989
|
function LinkBase(_a, ref) {
|