@arquimedes.co/eureka-forms 1.4.6-test → 1.4.7-test
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/App.js +4 -12
- package/package.json +1 -1
package/dist/App.js
CHANGED
|
@@ -68,18 +68,10 @@ import widgetInstance from './AxiosWidget';
|
|
|
68
68
|
function App(_a) {
|
|
69
69
|
var _this = this;
|
|
70
70
|
var _b, _c, _d, _e;
|
|
71
|
-
var apiKey = _a.apiKey, domain = _a.domain, preview = _a.preview, formData = _a.formData, postview = _a.postview, isWidget = _a.isWidget, internal = _a.internal, valuesData = _a.valuesData,
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
return [2 /*return*/];
|
|
76
|
-
});
|
|
77
|
-
}); } : _f, customSteps = _a.customSteps, handleConfirmed = _a.handleConfirmed, others = __rest(_a, ["apiKey", "domain", "preview", "formData", "postview", "isWidget", "internal", "valuesData", "customSend", "customSteps", "handleConfirmed"]);
|
|
78
|
-
// eslint-disable-next-line no-console
|
|
79
|
-
console.log(formData, valuesData, customSend);
|
|
80
|
-
var _g = useState(undefined), form = _g[0], setForm = _g[1];
|
|
81
|
-
var _h = useState({}), originalValues = _h[0], setOriginalValues = _h[1];
|
|
82
|
-
var _j = useState(undefined), organizationInfo = _j[0], setOrganizationInfo = _j[1];
|
|
71
|
+
var apiKey = _a.apiKey, domain = _a.domain, preview = _a.preview, formData = _a.formData, postview = _a.postview, isWidget = _a.isWidget, internal = _a.internal, valuesData = _a.valuesData, customSend = _a.customSend, customSteps = _a.customSteps, handleConfirmed = _a.handleConfirmed, others = __rest(_a, ["apiKey", "domain", "preview", "formData", "postview", "isWidget", "internal", "valuesData", "customSend", "customSteps", "handleConfirmed"]);
|
|
72
|
+
var _f = useState(undefined), form = _f[0], setForm = _f[1];
|
|
73
|
+
var _g = useState({}), originalValues = _g[0], setOriginalValues = _g[1];
|
|
74
|
+
var _h = useState(undefined), organizationInfo = _h[0], setOrganizationInfo = _h[1];
|
|
83
75
|
function fetchPreview(formData) {
|
|
84
76
|
return __awaiter(this, void 0, void 0, function () {
|
|
85
77
|
var response;
|
package/package.json
CHANGED