@leanix/components 0.2.79 → 0.2.83

Sign up to get free protection for your applications and to get access to all the features.
@@ -577,7 +577,6 @@
577
577
  * Sanitizes the string assigned to [lxHtml] and sets it as the element's innterHtml
578
578
  * routerLink attributes on anchors will automatically be converted to click handlers.
579
579
  */
580
- /* tslint:disable:no-inner-html */
581
580
  var HtmlDirective = /** @class */ (function () {
582
581
  function HtmlDirective(elementRef, sanitizer) {
583
582
  this.elementRef = elementRef;
@@ -1992,6 +1991,7 @@
1992
1991
  *
1993
1992
  * @see https://stackoverflow.com/questions/35528395/make-directive-input-required
1994
1993
  */
1994
+ // eslint-disable-next-line @typescript-eslint/ban-types
1995
1995
  function Required(target, propertyKey) {
1996
1996
  Object.defineProperty(target, propertyKey, {
1997
1997
  get: function () {
@@ -2889,6 +2889,7 @@
2889
2889
  * @Observe('foo') foo$: Observable<string>;
2890
2890
  */
2891
2891
  function Observe(observedKey) {
2892
+ // eslint-disable-next-line @typescript-eslint/ban-types
2892
2893
  return function (target, key) {
2893
2894
  var subjects = new WeakMap();
2894
2895
  var getSubject = function (instance) {