@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.
@@ -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) {