@sd-angular/core 0.0.1016 → 0.0.1017

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.
@@ -1,7 +1,7 @@
1
- import { EventEmitter, ChangeDetectorRef, AfterViewInit, OnDestroy } from '@angular/core';
1
+ import { EventEmitter, ChangeDetectorRef, AfterViewInit, OnDestroy, OnInit, ElementRef } from '@angular/core';
2
2
  import { FormGroup, NgForm } from '@angular/forms';
3
- import { SdFormControl } from '@sd-angular/core/common';
4
- export declare class SdTextarea implements AfterViewInit, OnDestroy {
3
+ import { SdFormControl, SdViewDefDirective } from '@sd-angular/core/common';
4
+ export declare class SdTextarea implements OnInit, AfterViewInit, OnDestroy {
5
5
  #private;
6
6
  private ref;
7
7
  set name(val: string);
@@ -19,8 +19,18 @@ export declare class SdTextarea implements AfterViewInit, OnDestroy {
19
19
  set pattern(val: string);
20
20
  set validator(validator: (value: any) => string | Promise<string>);
21
21
  set disabled(val: boolean | '');
22
+ set _autoHeight(val: boolean | '');
23
+ textarea: ElementRef;
24
+ sdView: SdViewDefDirective;
25
+ isFocused: boolean;
22
26
  formControl: SdFormControl;
23
27
  constructor(ref: ChangeDetectorRef);
28
+ ngOnInit(): void;
24
29
  ngAfterViewInit(): void;
25
30
  ngOnDestroy(): void;
31
+ onFocus: () => void;
32
+ onBlur: () => void;
33
+ onClick: () => void;
34
+ blur: () => void;
35
+ focus: () => void;
26
36
  }