indicator-ui 0.1.85 → 0.1.86

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/index.js CHANGED
@@ -75828,7 +75828,8 @@ function FieldItem(props) {
75828
75828
  _props$disabled = props.disabled,
75829
75829
  disabled = _props$disabled === void 0 ? false : _props$disabled,
75830
75830
  _props$width = props.width,
75831
- width = _props$width === void 0 ? 'hug' : _props$width;
75831
+ width = _props$width === void 0 ? 'hug' : _props$width,
75832
+ theme = props.theme;
75832
75833
  return (0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(_ui__WEBPACK_IMPORTED_MODULE_1__.Checkbox, {
75833
75834
  type: type,
75834
75835
  text: label,
@@ -75836,6 +75837,7 @@ function FieldItem(props) {
75836
75837
  onClick: onClick,
75837
75838
  disabled: disabled,
75838
75839
  width: width,
75840
+ theme: theme,
75839
75841
  checked: active
75840
75842
  });
75841
75843
  }
@@ -75883,7 +75885,8 @@ function FormRadioField(props) {
75883
75885
  _props$width = props.width,
75884
75886
  width = _props$width === void 0 ? 'hug' : _props$width,
75885
75887
  _props$type = props.type,
75886
- type = _props$type === void 0 ? 'checkbox' : _props$type;
75888
+ type = _props$type === void 0 ? 'checkbox' : _props$type,
75889
+ theme = props.theme;
75887
75890
  (0,_hooks__WEBPACK_IMPORTED_MODULE_2__.useDeepCompareEffect)(function () {
75888
75891
  // Установка значения при required
75889
75892
  var firstOptions = options === null || options === void 0 ? void 0 : options[0];
@@ -75934,7 +75937,8 @@ function FormRadioField(props) {
75934
75937
  },
75935
75938
  active: isActive(item),
75936
75939
  disabled: disabled,
75937
- width: width
75940
+ width: width,
75941
+ theme: theme
75938
75942
  }, idx);
75939
75943
  })
75940
75944
  });