@leanix/components 0.3.48 → 0.3.49

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.
@@ -15,7 +15,7 @@ export declare class HighlightTermPipe implements PipeTransform {
15
15
  * @param options The highlight term search options.
16
16
  * @returns The transformed text with highlighted search term.
17
17
  */
18
- transform(text?: string, search?: string, options?: HighlightTermSearchOptions): string | undefined;
18
+ transform(text?: string, search?: string | null, options?: HighlightTermSearchOptions): string | undefined;
19
19
  static ɵfac: i0.ɵɵFactoryDeclaration<HighlightTermPipe, never>;
20
20
  static ɵpipe: i0.ɵɵPipeDeclaration<HighlightTermPipe, "lxHighlightTerm", false>;
21
21
  }
@@ -5,7 +5,7 @@ export declare class TooltipDirective implements OnChanges, OnDestroy {
5
5
  private overlayPositionBuilder;
6
6
  private elementRef;
7
7
  private overlay;
8
- content?: string;
8
+ content?: string | null;
9
9
  set lxTooltipPosition(value: {
10
10
  x: string;
11
11
  y: string;
@@ -3,7 +3,7 @@ import { ControlValueAccessor } from '@angular/forms';
3
3
  import { Observable, ReplaySubject, Subject } from 'rxjs';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare type CurrencyInputMode = 'view' | 'edit';
6
- export declare type CurrencyIconPosition = 'first' | 'end';
6
+ export declare type CurrencyIconPosition = 'first' | 'end' | 'none';
7
7
  declare type DecimalSeparator = ',' | '.';
8
8
  export declare class CurrencyInputComponent implements AfterViewInit, OnDestroy, ControlValueAccessor, OnInit {
9
9
  private changeDetector;
@@ -16,8 +16,8 @@ export declare class PopoverHoverDirective implements AfterViewInit, OnDestroy {
16
16
  * Amount of time to delay (ms) after hovering starts before
17
17
  * the popover opens.
18
18
  */
19
- get lxPopoverHover(): number;
20
- set lxPopoverHover(val: number);
19
+ get lxPopoverHover(): unknown;
20
+ set lxPopoverHover(val: unknown);
21
21
  private _lxPopoverHover;
22
22
  /**
23
23
  * Relevant for tooltip style.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leanix/components",
3
- "version": "0.3.48",
3
+ "version": "0.3.49",
4
4
  "license": "Apache-2.0",
5
5
  "author": "LeanIX GmbH",
6
6
  "repository": {