@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.
- package/esm2020/lib/stencil/angular-component-lib/utils.mjs +9 -1
- package/esm2020/lib/stencil/components.mjs +1 -1
- package/fesm2015/paperless-angular.mjs +8 -0
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +8 -0
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/lib/stencil/components.d.ts +73 -73
- package/package.json +1 -1
|
@@ -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
|
};
|