@web-site-utilities/feedback 0.0.10 → 0.0.11

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/index.cjs.js CHANGED
@@ -3678,7 +3678,7 @@ const InPlaceForm = (props) => {
3678
3678
  if (!stateHeight || stateHeight < h) return h;
3679
3679
  return stateHeight;
3680
3680
  });
3681
- }, [setMaxHeight]);
3681
+ }, [setMaxHeight, props.inlineForm.form.steps]);
3682
3682
  const populatedForm = useForm({
3683
3683
  form: props.inlineForm.form,
3684
3684
  formId: props.formId,
@@ -3880,7 +3880,7 @@ const PopupForm = (props) => {
3880
3880
  if (!stateHeight || stateHeight < h) return h;
3881
3881
  return stateHeight;
3882
3882
  });
3883
- }, [setMaxHeight]);
3883
+ }, [setMaxHeight, props.popupForm.form.steps]);
3884
3884
  const populatedForm = useForm({
3885
3885
  form: props.popupForm.form,
3886
3886
  formId: props.formId,
package/dist/index.es.js CHANGED
@@ -3676,7 +3676,7 @@ const InPlaceForm = (props) => {
3676
3676
  if (!stateHeight || stateHeight < h) return h;
3677
3677
  return stateHeight;
3678
3678
  });
3679
- }, [setMaxHeight]);
3679
+ }, [setMaxHeight, props.inlineForm.form.steps]);
3680
3680
  const populatedForm = useForm({
3681
3681
  form: props.inlineForm.form,
3682
3682
  formId: props.formId,
@@ -3878,7 +3878,7 @@ const PopupForm = (props) => {
3878
3878
  if (!stateHeight || stateHeight < h) return h;
3879
3879
  return stateHeight;
3880
3880
  });
3881
- }, [setMaxHeight]);
3881
+ }, [setMaxHeight, props.popupForm.form.steps]);
3882
3882
  const populatedForm = useForm({
3883
3883
  form: props.popupForm.form,
3884
3884
  formId: props.formId,
@@ -3676,7 +3676,7 @@ var SiteUtilsFeedback = (function(exports, React2, require$$02) {
3676
3676
  if (!stateHeight || stateHeight < h) return h;
3677
3677
  return stateHeight;
3678
3678
  });
3679
- }, [setMaxHeight]);
3679
+ }, [setMaxHeight, props.inlineForm.form.steps]);
3680
3680
  const populatedForm = useForm({
3681
3681
  form: props.inlineForm.form,
3682
3682
  formId: props.formId,
@@ -3878,7 +3878,7 @@ var SiteUtilsFeedback = (function(exports, React2, require$$02) {
3878
3878
  if (!stateHeight || stateHeight < h) return h;
3879
3879
  return stateHeight;
3880
3880
  });
3881
- }, [setMaxHeight]);
3881
+ }, [setMaxHeight, props.popupForm.form.steps]);
3882
3882
  const populatedForm = useForm({
3883
3883
  form: props.popupForm.form,
3884
3884
  formId: props.formId,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@web-site-utilities/feedback",
3
- "version": "0.0.10",
3
+ "version": "0.0.11",
4
4
  "workspaces": [
5
5
  "src/**",
6
6
  "examples/**"