@sio-group/form-react 0.2.0 → 0.3.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 370b198: Update render method to render buttons outside of container
8
+
3
9
  ## 0.2.0
4
10
 
5
11
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sio-group/form-react",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -155,9 +155,11 @@ export const Form = ({
155
155
  };
156
156
 
157
157
  return (
158
- <Container className={className} style={style} noValidate>
159
- {renderFields()}
158
+ <form className={className} style={style} noValidate>
159
+ <Container>
160
+ {renderFields()}
161
+ </Container>
160
162
  {renderButtons()}
161
- </Container>
163
+ </form>
162
164
  );
163
165
  }