@arquimedes.co/eureka-forms 1.9.12-test → 1.9.13-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.
@@ -59,18 +59,10 @@ function FormComponent(_a) {
59
59
  if (currentWidth !== undefined) {
60
60
  var currentBreakPoint = form.size.blockNum;
61
61
  var padding = postview || internal || !form.isStandAlone ? 0 : 40;
62
- console.log(padding);
63
- console.log(currentWidth);
64
- console.log((form.size.blockSize + form.size.spacingSize) *
65
- currentBreakPoint);
66
- console.log((form.size.blockSize + form.size.spacingSize) *
67
- currentBreakPoint +
68
- padding);
69
62
  while (currentWidth <
70
63
  (form.size.blockSize + form.size.spacingSize) *
71
64
  currentBreakPoint +
72
65
  padding) {
73
- console.log('less');
74
66
  currentBreakPoint--;
75
67
  }
76
68
  setWidthStats({
@@ -99,7 +91,7 @@ function FormComponent(_a) {
99
91
  backgroundColor: internal
100
92
  ? InternalFormStyle.backgroundColor
101
93
  : form.style.backgroundColor,
102
- minHeight: isWidget || internal ? '100%' : '100vh',
94
+ minHeight: form.isStandAlone && !isWidget ? '100vh' : '100%',
103
95
  } }, { children: _jsx("div", __assign({ className: styles.widgetFormContainer, ref: containerRef }, { children: _jsx(FormTypeComponent, __assign({}, others, { handleLoaded: function () {
104
96
  setLoaded(true);
105
97
  }, widthStats: widthStats, form: form, internal: internal, postview: postview, organization: organization, formStyle: internal ? InternalFormStyle : form.style }), void 0) }), void 0) }), void 0));
@@ -27,8 +27,6 @@ import styles from './MaterialSection.module.css';
27
27
  function MaterialSection(_a) {
28
28
  var form = _a.form, section = _a.section, widthStats = _a.widthStats, others = __rest(_a, ["form", "section", "widthStats"]);
29
29
  var postview = others.postview, partial = others.partial, originalValues = others.originalValues;
30
- console.log(widthStats);
31
- console.log(form.size);
32
30
  return (_jsx("div", __assign({ className: styles.container, style: {
33
31
  width: (form.size.blockSize + form.size.spacingSize) *
34
32
  form.size.blockNum,
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.9.12-test",
4
+ "version":"1.9.13-test",
5
5
  "scripts": {
6
6
  "start": "react-scripts start",
7
7
  "build": "react-scripts build",