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

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