@apexcura/ui-components 0.0.12-Beta49 → 0.0.12-Beta50
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
|
@@ -212,7 +212,7 @@ var RadioElement = (props) => {
|
|
|
212
212
|
{
|
|
213
213
|
onChange: handleChange,
|
|
214
214
|
optionType,
|
|
215
|
-
className: `${containerClassName} ${className && className}`,
|
|
215
|
+
className: `${containerClassName} ${props.className && props.className}`,
|
|
216
216
|
value: selectedValue
|
|
217
217
|
},
|
|
218
218
|
props.options && props.options.map((option) => /* @__PURE__ */ import_react6.default.createElement(
|
package/dist/index.mjs
CHANGED
|
@@ -165,7 +165,7 @@ var RadioElement = (props) => {
|
|
|
165
165
|
{
|
|
166
166
|
onChange: handleChange,
|
|
167
167
|
optionType,
|
|
168
|
-
className: `${containerClassName} ${className && className}`,
|
|
168
|
+
className: `${containerClassName} ${props.className && props.className}`,
|
|
169
169
|
value: selectedValue
|
|
170
170
|
},
|
|
171
171
|
props.options && props.options.map((option) => /* @__PURE__ */ React6.createElement(
|