@leanix/components 0.4.253 → 0.4.255
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/esm2022/lib/forms-ui/components/responsive-input/responsive-input.component.mjs +4 -5
- package/fesm2022/leanix-components.mjs +1 -2
- package/fesm2022/leanix-components.mjs.map +1 -1
- package/lib/forms-ui/components/responsive-input/responsive-input.component.d.ts +2 -2
- package/package.json +1 -1
@@ -1,6 +1,6 @@
|
|
1
1
|
import { AfterViewInit, ElementRef, EventEmitter, OnDestroy } from '@angular/core';
|
2
2
|
import { ControlValueAccessor, UntypedFormControl } from '@angular/forms';
|
3
|
-
import { Subject } from 'rxjs';
|
3
|
+
import { BehaviorSubject, Subject } from 'rxjs';
|
4
4
|
import * as i0 from "@angular/core";
|
5
5
|
export declare class ResponsiveInputComponent implements AfterViewInit, OnDestroy, ControlValueAccessor {
|
6
6
|
inputId?: string;
|
@@ -9,7 +9,7 @@ export declare class ResponsiveInputComponent implements AfterViewInit, OnDestro
|
|
9
9
|
blur: EventEmitter<void>;
|
10
10
|
responsiveInput: ElementRef<HTMLInputElement>;
|
11
11
|
inputWidth: ElementRef<HTMLSpanElement>;
|
12
|
-
readonly inputWidth$:
|
12
|
+
readonly inputWidth$: BehaviorSubject<string>;
|
13
13
|
readonly inputControl: UntypedFormControl;
|
14
14
|
readonly destroyed$: Subject<void>;
|
15
15
|
value: any;
|