@apexcura/ui-components 0.0.12-Beta32 → 0.0.12-Beta33
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 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -205,7 +205,7 @@ var RadioElement = (props) => {
|
|
|
205
205
|
}
|
|
206
206
|
};
|
|
207
207
|
const getButtonStyle = (option) => {
|
|
208
|
-
return selectedValue === option.value ?
|
|
208
|
+
return selectedValue === option.value ? option.selectedClassName : option.className;
|
|
209
209
|
};
|
|
210
210
|
return /* @__PURE__ */ import_react6.default.createElement(
|
|
211
211
|
import_antd6.Radio.Group,
|
package/dist/index.mjs
CHANGED
|
@@ -158,7 +158,7 @@ var RadioElement = (props) => {
|
|
|
158
158
|
}
|
|
159
159
|
};
|
|
160
160
|
const getButtonStyle = (option) => {
|
|
161
|
-
return selectedValue === option.value ?
|
|
161
|
+
return selectedValue === option.value ? option.selectedClassName : option.className;
|
|
162
162
|
};
|
|
163
163
|
return /* @__PURE__ */ React6.createElement(
|
|
164
164
|
Radio.Group,
|