@paperless/angular 2.0.1-beta.45 → 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
|
@@ -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
|
};
|