@arquimedes.co/eureka-forms 1.5.0-test → 1.5.1-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 -0
- package/package.json +1 -1
package/dist/App.js
CHANGED
|
@@ -65,6 +65,7 @@ import FormComponent from './FormComponents/Form/Form';
|
|
|
65
65
|
import StepTypes from './constants/FormStepTypes';
|
|
66
66
|
import axiosInstance from './AxiosAPI';
|
|
67
67
|
import widgetInstance from './AxiosWidget';
|
|
68
|
+
import InternalFormStyle from './constants/InternalFormStyle';
|
|
68
69
|
function App(_a) {
|
|
69
70
|
var _this = this;
|
|
70
71
|
var _b, _c, _d, _e;
|
|
@@ -299,6 +300,9 @@ var migrateFormData = function (form) {
|
|
|
299
300
|
};
|
|
300
301
|
}
|
|
301
302
|
}
|
|
303
|
+
if (form.style === undefined) {
|
|
304
|
+
form.style = InternalFormStyle;
|
|
305
|
+
}
|
|
302
306
|
return newForm;
|
|
303
307
|
};
|
|
304
308
|
function getStaticWidth(step) {
|
package/package.json
CHANGED