@apexcura/ui-components 0.0.12-Beta23 → 0.0.12-Beta24
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 +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -203,6 +203,7 @@ var RadioElement = (props) => {
|
|
|
203
203
|
props.onChange(selectedOptions);
|
|
204
204
|
}
|
|
205
205
|
};
|
|
206
|
+
console.log(props.options);
|
|
206
207
|
const radioOptions = props.options && props.options.map((option) => ({
|
|
207
208
|
...option,
|
|
208
209
|
className: selectedValue === option.value ? option.selectedClassName : option.className,
|
package/dist/index.mjs
CHANGED
|
@@ -156,6 +156,7 @@ var RadioElement = (props) => {
|
|
|
156
156
|
props.onChange(selectedOptions);
|
|
157
157
|
}
|
|
158
158
|
};
|
|
159
|
+
console.log(props.options);
|
|
159
160
|
const radioOptions = props.options && props.options.map((option) => ({
|
|
160
161
|
...option,
|
|
161
162
|
className: selectedValue === option.value ? option.selectedClassName : option.className,
|