acsi-core 0.1.65 → 0.1.66

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.
@@ -2,6 +2,7 @@ import React from "react";
2
2
  interface IOption {
3
3
  label: string;
4
4
  value: string;
5
+ disabled?: boolean;
5
6
  }
6
7
  interface IProps {
7
8
  name: string;
package/dist/index.js CHANGED
@@ -1810,7 +1810,7 @@ var CoreRadio = function CoreRadio(props) {
1810
1810
  onChange: function onChange() {
1811
1811
  return;
1812
1812
  },
1813
- disabled: disabled
1813
+ disabled: disabled || i.disabled
1814
1814
  }), React__default.createElement(reactstrap.Label, {
1815
1815
  htmlFor: "core-radio-" + i.value
1816
1816
  }, i.label));