@apexcura/ui-components 0.0.7-Beta2 → 0.0.7-Beta4
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 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -48,7 +48,7 @@ declare const TextareaElement: (props: ElementExecuterProps) => React$1.JSX.Elem
|
|
|
48
48
|
|
|
49
49
|
declare const SelectElement: (props: ElementType) => React$1.JSX.Element;
|
|
50
50
|
|
|
51
|
-
declare const RadioElement: (props: ElementType) =>
|
|
51
|
+
declare const RadioElement: (props: ElementType) => React$1.JSX.Element;
|
|
52
52
|
|
|
53
53
|
declare const CheckboxElement: (props: ElementType) => React$1.JSX.Element;
|
|
54
54
|
|
package/dist/index.d.ts
CHANGED
|
@@ -48,7 +48,7 @@ declare const TextareaElement: (props: ElementExecuterProps) => React$1.JSX.Elem
|
|
|
48
48
|
|
|
49
49
|
declare const SelectElement: (props: ElementType) => React$1.JSX.Element;
|
|
50
50
|
|
|
51
|
-
declare const RadioElement: (props: ElementType) =>
|
|
51
|
+
declare const RadioElement: (props: ElementType) => React$1.JSX.Element;
|
|
52
52
|
|
|
53
53
|
declare const CheckboxElement: (props: ElementType) => React$1.JSX.Element;
|
|
54
54
|
|
package/dist/index.js
CHANGED
|
@@ -195,7 +195,7 @@ var RadioElement = (props) => {
|
|
|
195
195
|
props.onChange(e.target.value);
|
|
196
196
|
}
|
|
197
197
|
};
|
|
198
|
-
/* @__PURE__ */ import_react6.default.createElement(import_antd6.Radio.Group, { name: "radiogroup", defaultValue: 1 }, /* @__PURE__ */ import_react6.default.createElement(import_antd6.Radio, { value: 1, onChange: handleChange }, "A"), /* @__PURE__ */ import_react6.default.createElement(import_antd6.Radio, { value: 2, onChange: handleChange }, "B"), /* @__PURE__ */ import_react6.default.createElement(import_antd6.Radio, { value: 3, onChange: handleChange }, "C"), /* @__PURE__ */ import_react6.default.createElement(import_antd6.Radio, { value: 4, onChange: handleChange }, "D"));
|
|
198
|
+
return /* @__PURE__ */ import_react6.default.createElement(import_antd6.Radio.Group, { name: "radiogroup", defaultValue: 1 }, /* @__PURE__ */ import_react6.default.createElement(import_antd6.Radio, { value: 1, onChange: handleChange }, "A"), /* @__PURE__ */ import_react6.default.createElement(import_antd6.Radio, { value: 2, onChange: handleChange }, "B"), /* @__PURE__ */ import_react6.default.createElement(import_antd6.Radio, { value: 3, onChange: handleChange }, "C"), /* @__PURE__ */ import_react6.default.createElement(import_antd6.Radio, { value: 4, onChange: handleChange }, "D"));
|
|
199
199
|
};
|
|
200
200
|
|
|
201
201
|
// src/Components/Checkbox.tsx
|
package/dist/index.mjs
CHANGED
|
@@ -151,7 +151,7 @@ var RadioElement = (props) => {
|
|
|
151
151
|
props.onChange(e.target.value);
|
|
152
152
|
}
|
|
153
153
|
};
|
|
154
|
-
/* @__PURE__ */ React6.createElement(Radio.Group, { name: "radiogroup", defaultValue: 1 }, /* @__PURE__ */ React6.createElement(Radio, { value: 1, onChange: handleChange }, "A"), /* @__PURE__ */ React6.createElement(Radio, { value: 2, onChange: handleChange }, "B"), /* @__PURE__ */ React6.createElement(Radio, { value: 3, onChange: handleChange }, "C"), /* @__PURE__ */ React6.createElement(Radio, { value: 4, onChange: handleChange }, "D"));
|
|
154
|
+
return /* @__PURE__ */ React6.createElement(Radio.Group, { name: "radiogroup", defaultValue: 1 }, /* @__PURE__ */ React6.createElement(Radio, { value: 1, onChange: handleChange }, "A"), /* @__PURE__ */ React6.createElement(Radio, { value: 2, onChange: handleChange }, "B"), /* @__PURE__ */ React6.createElement(Radio, { value: 3, onChange: handleChange }, "C"), /* @__PURE__ */ React6.createElement(Radio, { value: 4, onChange: handleChange }, "D"));
|
|
155
155
|
};
|
|
156
156
|
|
|
157
157
|
// src/Components/Checkbox.tsx
|