@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 CHANGED
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.31.4](https://github.com/ocean-ds/ocean-web/compare/v1.31.3...v1.31.4) (2022-06-28)
7
+
8
+ **Note:** Version bump only for package @useblu/ocean-react
9
+
6
10
  ## [1.31.1](https://github.com/ocean-ds/ocean-web/compare/v1.31.0...v1.31.1) (2022-05-17)
7
11
 
8
12
  **Note:** Version bump only for package @useblu/ocean-react
package/index.es.js CHANGED
@@ -4966,7 +4966,7 @@ var Checkbox = e$1.forwardRef(function Checkbox(_a, ref) {
4966
4966
  return (e$1.createElement("label", { className: "ods-checkbox__root", htmlFor: id },
4967
4967
  e$1.createElement("input", __assign({ ref: ref, id: id, className: classNames('ods-checkbox', className) }, rest, { type: "checkbox", "data-indeterminate": indeterminate })),
4968
4968
  e$1.createElement("span", { className: classNames('ods-checkbox__checkmark', indeterminate && 'ods-checkbox__checkmark--indeterminate') }),
4969
- label && (e$1.createElement("span", { className: "ods-typography ods-typography__paragraph ods-checkbox__label" }, label))));
4969
+ label && (e$1.createElement("span", { className: "ods-typography ods-typography__description ods-checkbox__label" }, label))));
4970
4970
  });
4971
4971
 
4972
4972
  var Radio = e$1.forwardRef(function Radio(_a, ref) {
@@ -4974,7 +4974,7 @@ var Radio = e$1.forwardRef(function Radio(_a, ref) {
4974
4974
  return (e$1.createElement("label", { className: "ods-radio__root", htmlFor: id },
4975
4975
  e$1.createElement("input", __assign({ ref: ref, id: id, className: classNames('ods-radio', className) }, rest, { type: "radio" })),
4976
4976
  e$1.createElement("span", { className: "ods-radio__checkmark" }),
4977
- label && (e$1.createElement("span", { className: "ods-typography ods-typography__paragraph ods-radio__label" }, label))));
4977
+ label && (e$1.createElement("span", { className: "ods-typography ods-typography__description ods-radio__label" }, label))));
4978
4978
  });
4979
4979
 
4980
4980
  function LinkBase(_a, ref) {