envoc-form 3.0.0-2 → 3.1.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.
@@ -115,7 +115,7 @@ var Select = function Select(_ref3) {
115
115
  options = _ref3.options,
116
116
  props = _objectWithoutProperties(_ref3, _excluded3);
117
117
 
118
- var allOptions = includeEmptyOption ? [{
118
+ var allOptions = includeEmptyOption && !props.isMulti ? [{
119
119
  label: ' ',
120
120
  value: null
121
121
  }].concat(_toConsumableArray(options)) : options;
@@ -166,7 +166,7 @@ var RemoteSelect = function RemoteSelect(_ref4) {
166
166
  value: ''
167
167
  });
168
168
  } else {
169
- if (includeEmptyOption) {
169
+ if (includeEmptyOption && !props.isMulti) {
170
170
  options.push({
171
171
  label: ' ',
172
172
  value: null
package/es/index.js CHANGED
@@ -1,15 +1,20 @@
1
+ import * as normalizers from './normalizers';
2
+ import { BoolInput, InlineBoolInput } from './BoolInput';
3
+ import { InlineMoneyInput, MoneyInput } from './MoneyInput';
4
+ import AddressInput from './AddressInput';
5
+ import ConfirmBaseForm from './ConfirmBaseForm';
6
+ import ConfirmDeleteForm from './ConfirmDeleteForm';
7
+ import ErrorScrollTarget from './ErrorScrollTarget';
1
8
  import Form from './Form';
9
+ import FormGroup from './FormGroup';
10
+ import FormGroupWrapper from './FormGroupWrapper';
2
11
  import FormInput from './FormInput';
3
- import InlineFormInput from './InlineFormInput';
4
12
  import FormInputArray from './FormInputArray';
13
+ import FormSection from './FormSection';
5
14
  import IconInput from './IconInput';
6
- import { BoolInput, InlineBoolInput } from './BoolInput';
15
+ import InlineFormInput from './InlineFormInput';
7
16
  import StandardFormActions from './StandardFormActions';
8
- import validators from './validators';
9
- import * as normalizers from './normalizers';
10
- import ConfirmBaseForm from './ConfirmBaseForm';
11
- import ConfirmDeleteForm from './ConfirmDeleteForm';
12
17
  import SubmitFormButton from './SubmitFormButton';
13
- import AddressInput from './AddressInput';
14
- import { MoneyInput, InlineMoneyInput } from './MoneyInput';
15
- export { Form, FormInput, InlineFormInput, FormInputArray, IconInput, BoolInput, InlineBoolInput, validators, normalizers, StandardFormActions, ConfirmBaseForm, ConfirmDeleteForm, SubmitFormButton, AddressInput, MoneyInput, InlineMoneyInput };
18
+ import useStandardFormInput from './useStandardFormInput';
19
+ import validators from './validators';
20
+ export { AddressInput, BoolInput, ConfirmBaseForm, ConfirmDeleteForm, ErrorScrollTarget, Form, FormGroup, FormGroupWrapper, FormInput, FormInputArray, FormSection, IconInput, InlineBoolInput, InlineFormInput, InlineMoneyInput, MoneyInput, normalizers, StandardFormActions, SubmitFormButton, useStandardFormInput, validators };
@@ -140,7 +140,7 @@ var Select = function Select(_ref3) {
140
140
  includeEmptyOption = _ref3$includeEmptyOpt === void 0 ? true : _ref3$includeEmptyOpt,
141
141
  options = _ref3.options,
142
142
  props = (0, _objectWithoutProperties2["default"])(_ref3, _excluded3);
143
- var allOptions = includeEmptyOption ? [{
143
+ var allOptions = includeEmptyOption && !props.isMulti ? [{
144
144
  label: ' ',
145
145
  value: null
146
146
  }].concat((0, _toConsumableArray2["default"])(options)) : options;
@@ -191,7 +191,7 @@ var RemoteSelect = function RemoteSelect(_ref4) {
191
191
  value: ''
192
192
  });
193
193
  } else {
194
- if (includeEmptyOption) {
194
+ if (includeEmptyOption && !props.isMulti) {
195
195
  options.push({
196
196
  label: ' ',
197
197
  value: null
package/lib/index.js CHANGED
@@ -7,127 +7,167 @@ var _typeof = require("@babel/runtime/helpers/typeof");
7
7
  Object.defineProperty(exports, "__esModule", {
8
8
  value: true
9
9
  });
10
- Object.defineProperty(exports, "Form", {
10
+ Object.defineProperty(exports, "BoolInput", {
11
11
  enumerable: true,
12
12
  get: function get() {
13
- return _Form["default"];
13
+ return _BoolInput.BoolInput;
14
14
  }
15
15
  });
16
- Object.defineProperty(exports, "FormInput", {
16
+ Object.defineProperty(exports, "InlineBoolInput", {
17
17
  enumerable: true,
18
18
  get: function get() {
19
- return _FormInput["default"];
19
+ return _BoolInput.InlineBoolInput;
20
20
  }
21
21
  });
22
- Object.defineProperty(exports, "InlineFormInput", {
22
+ Object.defineProperty(exports, "InlineMoneyInput", {
23
23
  enumerable: true,
24
24
  get: function get() {
25
- return _InlineFormInput["default"];
25
+ return _MoneyInput.InlineMoneyInput;
26
26
  }
27
27
  });
28
- Object.defineProperty(exports, "FormInputArray", {
28
+ Object.defineProperty(exports, "MoneyInput", {
29
29
  enumerable: true,
30
30
  get: function get() {
31
- return _FormInputArray["default"];
31
+ return _MoneyInput.MoneyInput;
32
32
  }
33
33
  });
34
- Object.defineProperty(exports, "IconInput", {
34
+ Object.defineProperty(exports, "AddressInput", {
35
35
  enumerable: true,
36
36
  get: function get() {
37
- return _IconInput["default"];
37
+ return _AddressInput["default"];
38
38
  }
39
39
  });
40
- Object.defineProperty(exports, "BoolInput", {
40
+ Object.defineProperty(exports, "ConfirmBaseForm", {
41
41
  enumerable: true,
42
42
  get: function get() {
43
- return _BoolInput.BoolInput;
43
+ return _ConfirmBaseForm["default"];
44
44
  }
45
45
  });
46
- Object.defineProperty(exports, "InlineBoolInput", {
46
+ Object.defineProperty(exports, "ConfirmDeleteForm", {
47
47
  enumerable: true,
48
48
  get: function get() {
49
- return _BoolInput.InlineBoolInput;
49
+ return _ConfirmDeleteForm["default"];
50
50
  }
51
51
  });
52
- Object.defineProperty(exports, "StandardFormActions", {
52
+ Object.defineProperty(exports, "ErrorScrollTarget", {
53
53
  enumerable: true,
54
54
  get: function get() {
55
- return _StandardFormActions["default"];
55
+ return _ErrorScrollTarget["default"];
56
56
  }
57
57
  });
58
- Object.defineProperty(exports, "validators", {
58
+ Object.defineProperty(exports, "Form", {
59
59
  enumerable: true,
60
60
  get: function get() {
61
- return _validators["default"];
61
+ return _Form["default"];
62
62
  }
63
63
  });
64
- Object.defineProperty(exports, "ConfirmBaseForm", {
64
+ Object.defineProperty(exports, "FormGroup", {
65
65
  enumerable: true,
66
66
  get: function get() {
67
- return _ConfirmBaseForm["default"];
67
+ return _FormGroup["default"];
68
68
  }
69
69
  });
70
- Object.defineProperty(exports, "ConfirmDeleteForm", {
70
+ Object.defineProperty(exports, "FormGroupWrapper", {
71
71
  enumerable: true,
72
72
  get: function get() {
73
- return _ConfirmDeleteForm["default"];
73
+ return _FormGroupWrapper["default"];
74
74
  }
75
75
  });
76
- Object.defineProperty(exports, "SubmitFormButton", {
76
+ Object.defineProperty(exports, "FormInput", {
77
77
  enumerable: true,
78
78
  get: function get() {
79
- return _SubmitFormButton["default"];
79
+ return _FormInput["default"];
80
80
  }
81
81
  });
82
- Object.defineProperty(exports, "AddressInput", {
82
+ Object.defineProperty(exports, "FormInputArray", {
83
83
  enumerable: true,
84
84
  get: function get() {
85
- return _AddressInput["default"];
85
+ return _FormInputArray["default"];
86
86
  }
87
87
  });
88
- Object.defineProperty(exports, "MoneyInput", {
88
+ Object.defineProperty(exports, "FormSection", {
89
89
  enumerable: true,
90
90
  get: function get() {
91
- return _MoneyInput.MoneyInput;
91
+ return _FormSection["default"];
92
92
  }
93
93
  });
94
- Object.defineProperty(exports, "InlineMoneyInput", {
94
+ Object.defineProperty(exports, "IconInput", {
95
95
  enumerable: true,
96
96
  get: function get() {
97
- return _MoneyInput.InlineMoneyInput;
97
+ return _IconInput["default"];
98
+ }
99
+ });
100
+ Object.defineProperty(exports, "InlineFormInput", {
101
+ enumerable: true,
102
+ get: function get() {
103
+ return _InlineFormInput["default"];
104
+ }
105
+ });
106
+ Object.defineProperty(exports, "StandardFormActions", {
107
+ enumerable: true,
108
+ get: function get() {
109
+ return _StandardFormActions["default"];
110
+ }
111
+ });
112
+ Object.defineProperty(exports, "SubmitFormButton", {
113
+ enumerable: true,
114
+ get: function get() {
115
+ return _SubmitFormButton["default"];
116
+ }
117
+ });
118
+ Object.defineProperty(exports, "useStandardFormInput", {
119
+ enumerable: true,
120
+ get: function get() {
121
+ return _useStandardFormInput["default"];
122
+ }
123
+ });
124
+ Object.defineProperty(exports, "validators", {
125
+ enumerable: true,
126
+ get: function get() {
127
+ return _validators["default"];
98
128
  }
99
129
  });
100
130
  exports.normalizers = void 0;
101
131
 
102
- var _Form = _interopRequireDefault(require("./Form"));
132
+ var normalizers = _interopRequireWildcard(require("./normalizers"));
103
133
 
104
- var _FormInput = _interopRequireDefault(require("./FormInput"));
134
+ exports.normalizers = normalizers;
105
135
 
106
- var _InlineFormInput = _interopRequireDefault(require("./InlineFormInput"));
136
+ var _BoolInput = require("./BoolInput");
107
137
 
108
- var _FormInputArray = _interopRequireDefault(require("./FormInputArray"));
138
+ var _MoneyInput = require("./MoneyInput");
109
139
 
110
- var _IconInput = _interopRequireDefault(require("./IconInput"));
140
+ var _AddressInput = _interopRequireDefault(require("./AddressInput"));
111
141
 
112
- var _BoolInput = require("./BoolInput");
142
+ var _ConfirmBaseForm = _interopRequireDefault(require("./ConfirmBaseForm"));
113
143
 
114
- var _StandardFormActions = _interopRequireDefault(require("./StandardFormActions"));
144
+ var _ConfirmDeleteForm = _interopRequireDefault(require("./ConfirmDeleteForm"));
115
145
 
116
- var _validators = _interopRequireDefault(require("./validators"));
146
+ var _ErrorScrollTarget = _interopRequireDefault(require("./ErrorScrollTarget"));
117
147
 
118
- var normalizers = _interopRequireWildcard(require("./normalizers"));
148
+ var _Form = _interopRequireDefault(require("./Form"));
119
149
 
120
- exports.normalizers = normalizers;
150
+ var _FormGroup = _interopRequireDefault(require("./FormGroup"));
121
151
 
122
- var _ConfirmBaseForm = _interopRequireDefault(require("./ConfirmBaseForm"));
152
+ var _FormGroupWrapper = _interopRequireDefault(require("./FormGroupWrapper"));
123
153
 
124
- var _ConfirmDeleteForm = _interopRequireDefault(require("./ConfirmDeleteForm"));
154
+ var _FormInput = _interopRequireDefault(require("./FormInput"));
155
+
156
+ var _FormInputArray = _interopRequireDefault(require("./FormInputArray"));
157
+
158
+ var _FormSection = _interopRequireDefault(require("./FormSection"));
159
+
160
+ var _IconInput = _interopRequireDefault(require("./IconInput"));
161
+
162
+ var _InlineFormInput = _interopRequireDefault(require("./InlineFormInput"));
163
+
164
+ var _StandardFormActions = _interopRequireDefault(require("./StandardFormActions"));
125
165
 
126
166
  var _SubmitFormButton = _interopRequireDefault(require("./SubmitFormButton"));
127
167
 
128
- var _AddressInput = _interopRequireDefault(require("./AddressInput"));
168
+ var _useStandardFormInput = _interopRequireDefault(require("./useStandardFormInput"));
129
169
 
130
- var _MoneyInput = require("./MoneyInput");
170
+ var _validators = _interopRequireDefault(require("./validators"));
131
171
 
132
172
  function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
133
173
 
package/package.json CHANGED
@@ -1,99 +1,100 @@
1
- {
2
- "name": "envoc-form",
3
- "version": "3.0.0-2",
4
- "description": "Envoc form components",
5
- "keywords": [
6
- "react-component",
7
- "react",
8
- "forms",
9
- "components",
10
- "envoc"
11
- ],
12
- "homepage": "",
13
- "repository": "",
14
- "license": "MIT",
15
- "author": "Envoc Developers",
16
- "sideEffects": false,
17
- "main": "lib/index.js",
18
- "module": "es/index.js",
19
- "files": [
20
- "dist",
21
- "src",
22
- "lib",
23
- "es"
24
- ],
25
- "scripts": {
26
- "build": "yarn verify-imports && yarn build:esm && yarn build:cjs && yarn build:css",
27
- "rebuild": "rimraf ./{dist,es,lib} && yarn build",
28
- "build:esm": "cross-env BABEL_ENV=esm-dir babel src --out-dir es --ignore \"src/**/*.spec.js\",\"src/**/*.test.js\"",
29
- "build:css": "sass src/styles.scss dist/css/envoc-form-styles.css",
30
- "build:cjs": "babel src --out-dir lib --ignore \"src/**/*.spec.js\",\"src/**/*.test.js\"",
31
- "verify-imports": "node ../../scripts/check-for-scss-imports.js envoc-form",
32
- "start": "webpack serve --config ./webpack.demo.config.js",
33
- "test": "cross-env SKIP_PREFLIGHT_CHECK=true react-scripts test --watchAll=false",
34
- "coverage": "yarn test --reporters=jest-junit --coverage --coverageReporters=cobertura"
35
- },
36
- "dependencies": {
37
- "axios": "^0.21.1",
38
- "classnames": "^2.3.1",
39
- "date-fns": "^2.22.1",
40
- "envoc-request": "^3.0.0-2",
41
- "lru-cache": "^6.0.0",
42
- "prop-types": "^15.7.2",
43
- "react-date-picker": "^8.2.0",
44
- "react-dropzone": "^11.3.4",
45
- "react-router": "^6.2.1",
46
- "react-select": "^3.1.1",
47
- "react-textarea-autosize": "^8.3.3",
48
- "react-toastify": "^7.0.4",
49
- "reactstrap": "^8.9.0",
50
- "smoothscroll-polyfill": "^0.4.4",
51
- "uuid": "^8.3.2",
52
- "@fortawesome/react-fontawesome": "~0.1.16",
53
- "@fortawesome/free-solid-svg-icons": "~5.15.4",
54
- "@fortawesome/fontawesome-svg-core": "~1.2.36"
55
- },
56
- "devDependencies": {
57
- "@babel/cli": "^7.14.5",
58
- "@babel/core": "^7.14.6",
59
- "@babel/plugin-transform-runtime": "^7.14.5",
60
- "@babel/preset-env": "^7.14.7",
61
- "@babel/preset-react": "^7.14.5",
62
- "@testing-library/jest-dom": "^5.14.1",
63
- "@testing-library/react": "^11.2.5",
64
- "@testing-library/user-event": "^12.7.1",
65
- "babel-loader": "^8.2.2",
66
- "bootstrap": "^4.6.0",
67
- "clean-webpack-plugin": "^3.0.0",
68
- "cross-env": "7.0.3",
69
- "css-loader": "^5.0.2",
70
- "html-webpack-plugin": "^5.3.2",
71
- "identity-obj-proxy": "^3.0.0",
72
- "jest-junit": "~12.2.0",
73
- "react": "^17.0.1",
74
- "react-dom": "^17.0.1",
75
- "react-router-dom": "^6.2.1",
76
- "react-scripts": "^4.0.3",
77
- "rimraf": "~3.0.2",
78
- "sass": "^1.35.2",
79
- "sass-loader": "^11.0.1",
80
- "style-loader": "^2.0.0",
81
- "webpack": "^5.45.0",
82
- "webpack-cli": "^4.7.2",
83
- "webpack-dev-server": "^3.11.2",
84
- "typedoc-plugin-markdown": "~3.10.3",
85
- "typedoc": "~0.21.4"
86
- },
87
- "peerDependencies": {
88
- "@babel/runtime": "^7.14.6",
89
- "formik": "^2.2.9",
90
- "react": ">=16.8.0",
91
- "react-dom": ">=16.8.0",
92
- "react-router-dom": "^6.2.1"
93
- },
94
- "jest": {
95
- "transformIgnorePatterns": [
96
- "^.+\\.module\\.(css|sass|scss)$"
97
- ]
98
- }
99
- }
1
+ {
2
+ "name": "envoc-form",
3
+ "version": "3.1.0",
4
+ "description": "Envoc form components",
5
+ "keywords": [
6
+ "react-component",
7
+ "react",
8
+ "forms",
9
+ "components",
10
+ "envoc"
11
+ ],
12
+ "homepage": "",
13
+ "repository": "",
14
+ "license": "MIT",
15
+ "author": "Envoc Developers",
16
+ "sideEffects": false,
17
+ "main": "lib/index.js",
18
+ "module": "es/index.js",
19
+ "files": [
20
+ "dist",
21
+ "src",
22
+ "lib",
23
+ "es"
24
+ ],
25
+ "dependencies": {
26
+ "axios": "^0.21.1",
27
+ "classnames": "^2.3.1",
28
+ "date-fns": "^2.22.1",
29
+ "envoc-request": "^3.1.0",
30
+ "lru-cache": "^6.0.0",
31
+ "prop-types": "^15.7.2",
32
+ "react-date-picker": "^8.2.0",
33
+ "react-dropzone": "^11.3.4",
34
+ "react-router": "^6.2.1",
35
+ "react-select": "^3.1.1",
36
+ "react-textarea-autosize": "^8.3.3",
37
+ "react-toastify": "^7.0.4",
38
+ "reactstrap": "^8.9.0",
39
+ "smoothscroll-polyfill": "^0.4.4",
40
+ "uuid": "^8.3.2",
41
+ "@fortawesome/react-fontawesome": "~0.1.16",
42
+ "@fortawesome/free-solid-svg-icons": "~5.15.4",
43
+ "@fortawesome/fontawesome-svg-core": "~1.2.36"
44
+ },
45
+ "devDependencies": {
46
+ "@babel/cli": "^7.14.5",
47
+ "@babel/core": "^7.14.6",
48
+ "@babel/plugin-transform-runtime": "^7.14.5",
49
+ "@babel/preset-env": "^7.14.7",
50
+ "@babel/preset-react": "^7.14.5",
51
+ "@testing-library/jest-dom": "^5.14.1",
52
+ "@testing-library/react": "^11.2.5",
53
+ "@testing-library/user-event": "^12.7.1",
54
+ "babel-loader": "^8.2.2",
55
+ "bootstrap": "^4.6.0",
56
+ "clean-webpack-plugin": "^3.0.0",
57
+ "cross-env": "7.0.3",
58
+ "css-loader": "^5.0.2",
59
+ "html-webpack-plugin": "^5.3.2",
60
+ "identity-obj-proxy": "^3.0.0",
61
+ "jest-junit": "~12.2.0",
62
+ "react": "^17.0.1",
63
+ "react-dom": "^17.0.1",
64
+ "react-router-dom": "^6.2.1",
65
+ "react-scripts": "^4.0.3",
66
+ "rimraf": "~3.0.2",
67
+ "sass": "^1.35.2",
68
+ "sass-loader": "^11.0.1",
69
+ "style-loader": "^2.0.0",
70
+ "webpack": "^5.45.0",
71
+ "webpack-cli": "^4.7.2",
72
+ "webpack-dev-server": "^3.11.2",
73
+ "typedoc-plugin-markdown": "~3.10.3",
74
+ "typedoc": "~0.21.4"
75
+ },
76
+ "peerDependencies": {
77
+ "@babel/runtime": "^7.14.6",
78
+ "formik": "^2.2.9",
79
+ "react": ">=16.8.0",
80
+ "react-dom": ">=16.8.0",
81
+ "react-router-dom": "^6.2.1"
82
+ },
83
+ "jest": {
84
+ "transformIgnorePatterns": [
85
+ "^.+\\.module\\.(css|sass|scss)$"
86
+ ]
87
+ },
88
+ "scripts": {
89
+ "build": "yarn verify-imports && yarn build:esm && yarn build:cjs && yarn build:css",
90
+ "rebuild": "rimraf ./{dist,es,lib} && yarn build",
91
+ "build:esm": "cross-env BABEL_ENV=esm-dir babel src --out-dir es --ignore \"src/**/*.spec.js\",\"src/**/*.test.js\"",
92
+ "build:css": "sass src/styles.scss dist/css/envoc-form-styles.css",
93
+ "build:cjs": "babel src --out-dir lib --ignore \"src/**/*.spec.js\",\"src/**/*.test.js\"",
94
+ "verify-imports": "node ../../scripts/check-for-scss-imports.js envoc-form",
95
+ "start": "webpack serve --config ./webpack.demo.config.js",
96
+ "test": "cross-env SKIP_PREFLIGHT_CHECK=true react-scripts test --watchAll=false",
97
+ "coverage": "yarn test --reporters=jest-junit --coverage --coverageReporters=cobertura"
98
+ },
99
+ "readme": "# envoc-form\r\n\r\n[![npm package][npm-badge]][npm]\r\n\r\nBase form package for envoc projects.\r\n\r\n[npm-badge]: https://img.shields.io/npm/v/envoc-form.png?style=flat\r\n[npm]: https://www.npmjs.com/package/envoc-form"
100
+ }
@@ -81,9 +81,10 @@ const DefaultInput = ({ meta, ...props }) => {
81
81
  };
82
82
 
83
83
  const Select = ({ includeEmptyOption = true, options, ...props }) => {
84
- const allOptions = includeEmptyOption
85
- ? [{ label: ' ', value: null }, ...options]
86
- : options;
84
+ const allOptions =
85
+ includeEmptyOption && !props.isMulti
86
+ ? [{ label: ' ', value: null }, ...options]
87
+ : options;
87
88
  return <ReactSelectField {...props} options={allOptions} />;
88
89
  };
89
90
 
@@ -115,7 +116,7 @@ const RemoteSelect = ({
115
116
  if (webRequest.loading) {
116
117
  options.push({ label: 'Loading...', value: '' });
117
118
  } else {
118
- if (includeEmptyOption) {
119
+ if (includeEmptyOption && !props.isMulti) {
119
120
  options.push({ label: ' ', value: null });
120
121
  }
121
122
  options.push(...webRequest.resp.data.result);
package/src/index.js CHANGED
@@ -1,33 +1,45 @@
1
+ import * as normalizers from './normalizers';
2
+
3
+ import { BoolInput, InlineBoolInput } from './BoolInput';
4
+ import { InlineMoneyInput, MoneyInput } from './MoneyInput';
5
+
6
+ import AddressInput from './AddressInput';
7
+ import ConfirmBaseForm from './ConfirmBaseForm';
8
+ import ConfirmDeleteForm from './ConfirmDeleteForm';
9
+ import ErrorScrollTarget from './ErrorScrollTarget';
1
10
  import Form from './Form';
11
+ import FormGroup from './FormGroup';
12
+ import FormGroupWrapper from './FormGroupWrapper';
2
13
  import FormInput from './FormInput';
3
- import InlineFormInput from './InlineFormInput';
4
14
  import FormInputArray from './FormInputArray';
15
+ import FormSection from './FormSection';
5
16
  import IconInput from './IconInput';
6
- import { BoolInput, InlineBoolInput } from './BoolInput';
17
+ import InlineFormInput from './InlineFormInput';
7
18
  import StandardFormActions from './StandardFormActions';
8
- import validators from './validators';
9
- import * as normalizers from './normalizers';
10
- import ConfirmBaseForm from './ConfirmBaseForm';
11
- import ConfirmDeleteForm from './ConfirmDeleteForm';
12
19
  import SubmitFormButton from './SubmitFormButton';
13
- import AddressInput from './AddressInput';
14
- import { MoneyInput, InlineMoneyInput } from './MoneyInput';
20
+ import useStandardFormInput from './useStandardFormInput';
21
+ import validators from './validators';
15
22
 
16
23
  export {
24
+ AddressInput,
25
+ BoolInput,
26
+ ConfirmBaseForm,
27
+ ConfirmDeleteForm,
28
+ ErrorScrollTarget,
17
29
  Form,
30
+ FormGroup,
31
+ FormGroupWrapper,
18
32
  FormInput,
19
- InlineFormInput,
20
33
  FormInputArray,
34
+ FormSection,
21
35
  IconInput,
22
- BoolInput,
23
36
  InlineBoolInput,
24
- validators,
37
+ InlineFormInput,
38
+ InlineMoneyInput,
39
+ MoneyInput,
25
40
  normalizers,
26
41
  StandardFormActions,
27
- ConfirmBaseForm,
28
- ConfirmDeleteForm,
29
42
  SubmitFormButton,
30
- AddressInput,
31
- MoneyInput,
32
- InlineMoneyInput,
43
+ useStandardFormInput,
44
+ validators,
33
45
  };