@leanix/components 0.2.80 → 0.2.81
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/bundles/leanix-components.umd.js +2 -0
- package/bundles/leanix-components.umd.js.map +1 -1
- package/esm2015/lib/core-ui/annotations/required.js +1 -0
- package/esm2015/lib/core-ui/annotations/required.js.map +1 -1
- package/esm2015/lib/core-ui/pipes/lx-translate.pipe.js.map +1 -1
- package/esm2015/lib/shared/observe.js +1 -0
- package/esm2015/lib/shared/observe.js.map +1 -1
- package/fesm2015/leanix-components.js +2 -0
- package/fesm2015/leanix-components.js.map +1 -1
- package/lib/core-ui/pipes/lx-translate.pipe.d.ts +1 -1
- package/package.json +1 -1
@@ -1991,6 +1991,7 @@
|
|
1991
1991
|
*
|
1992
1992
|
* @see https://stackoverflow.com/questions/35528395/make-directive-input-required
|
1993
1993
|
*/
|
1994
|
+
// eslint-disable-next-line @typescript-eslint/ban-types
|
1994
1995
|
function Required(target, propertyKey) {
|
1995
1996
|
Object.defineProperty(target, propertyKey, {
|
1996
1997
|
get: function () {
|
@@ -2888,6 +2889,7 @@
|
|
2888
2889
|
* @Observe('foo') foo$: Observable<string>;
|
2889
2890
|
*/
|
2890
2891
|
function Observe(observedKey) {
|
2892
|
+
// eslint-disable-next-line @typescript-eslint/ban-types
|
2891
2893
|
return function (target, key) {
|
2892
2894
|
var subjects = new WeakMap();
|
2893
2895
|
var getSubject = function (instance) {
|