@arquimedes.co/eureka-forms 1.5.0-test → 1.5.3-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.
Files changed (2) hide show
  1. package/dist/App.js +4 -0
  2. 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
+ newForm.style = InternalFormStyle;
305
+ }
302
306
  return newForm;
303
307
  };
304
308
  function getStaticWidth(step) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@arquimedes.co/eureka-forms",
3
3
  "repository": "git://github.com/Arquimede5/Eureka-Forms.git",
4
- "version":"1.5.0-test",
4
+ "version":"1.5.3-test",
5
5
  "scripts": {
6
6
  "start": "react-scripts start",
7
7
  "build": "react-scripts build",