@zengenti/contensis-react-base 3.0.0-beta.53 → 3.0.0-beta.54
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/cjs/forms.js +2 -1
- package/cjs/forms.js.map +1 -1
- package/esm/forms.js +2 -2
- package/esm/forms.js.map +1 -1
- package/models/forms/index.d.ts +2 -0
- package/package-lock.json +1 -1
- package/package.json +1 -1
package/cjs/forms.js
CHANGED
|
@@ -2276,8 +2276,9 @@ const mapDispatchToProps = dispatch => {
|
|
|
2276
2276
|
};
|
|
2277
2277
|
};
|
|
2278
2278
|
|
|
2279
|
-
reactRedux.connect(mapStateToProps, mapDispatchToProps)(toJS(FormContainer));
|
|
2279
|
+
var Form = reactRedux.connect(mapStateToProps, mapDispatchToProps)(toJS(FormContainer));
|
|
2280
2280
|
|
|
2281
|
+
exports["default"] = Form;
|
|
2281
2282
|
exports.reducer = reducer;
|
|
2282
2283
|
exports.sagas = formV2Sagas;
|
|
2283
2284
|
//# sourceMappingURL=forms.js.map
|