@paperless/angular 2.0.1-beta.46 → 2.0.1-beta.47

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.
@@ -598,6 +598,14 @@ const proxyInputs = (Cmp, inputs) => {
598
598
  set(val) {
599
599
  this.z.runOutsideAngular(() => (this.el[item] = val));
600
600
  },
601
+ /**
602
+ * In the event that proxyInputs is called
603
+ * multiple times re-defining these inputs
604
+ * will cause an error to be thrown. As a result
605
+ * we set configurable: true to indicate these
606
+ * properties can be changed.
607
+ */
608
+ configurable: true,
601
609
  });
602
610
  });
603
611
  };