@hw-component/form 1.9.98 → 1.9.99
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/package.json
CHANGED
|
@@ -30,7 +30,7 @@ const Content: React.FC<ContentProps> = ({
|
|
|
30
30
|
const relChild =
|
|
31
31
|
children && React.cloneElement(children as any, { value, onChange });
|
|
32
32
|
return (
|
|
33
|
-
<Space direction={"vertical"} size={4} style={{ width: "100%" }}>
|
|
33
|
+
<Space direction={"vertical"} size={4} style={{ width: "100%" ,display:'flex'}}>
|
|
34
34
|
<div className={className}>{relChild}</div>
|
|
35
35
|
<Helper helper={helper} />
|
|
36
36
|
</Space>
|
|
@@ -20,7 +20,6 @@ const Index = ({
|
|
|
20
20
|
const timeVal = useTimePickerValue({ value, format });
|
|
21
21
|
const change = useTimePickerChange({ value, format, onChange });
|
|
22
22
|
const addonClassName=useClassName("hw-addon")
|
|
23
|
-
|
|
24
23
|
return (
|
|
25
24
|
<Input.Group compact style={{display:"flex",...style}}>
|
|
26
25
|
{addonBefore? <div className={addonClassName}>{addonBefore}</div>:null}
|