@apexcura/ui-components 0.0.11-Beta97 → 0.0.11-Beta98
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.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -195,7 +195,7 @@ var RadioElement = (props) => {
|
|
|
195
195
|
props.onChange(selectedOptions);
|
|
196
196
|
}
|
|
197
197
|
};
|
|
198
|
-
return /* @__PURE__ */ import_react6.default.createElement(import_antd6.Radio.Group, {
|
|
198
|
+
return /* @__PURE__ */ import_react6.default.createElement(import_antd6.Radio.Group, { options: props.options, onChange: handleChange });
|
|
199
199
|
};
|
|
200
200
|
|
|
201
201
|
// src/Components/Checkbox.tsx
|
package/dist/index.mjs
CHANGED
|
@@ -148,7 +148,7 @@ var RadioElement = (props) => {
|
|
|
148
148
|
props.onChange(selectedOptions);
|
|
149
149
|
}
|
|
150
150
|
};
|
|
151
|
-
return /* @__PURE__ */ React6.createElement(Radio.Group, {
|
|
151
|
+
return /* @__PURE__ */ React6.createElement(Radio.Group, { options: props.options, onChange: handleChange });
|
|
152
152
|
};
|
|
153
153
|
|
|
154
154
|
// src/Components/Checkbox.tsx
|