@testgorilla/tgo-ui 3.5.0 → 3.5.2
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/components/autocomplete/autocomplete.component.d.ts +1 -1
- package/components/field/field.component.d.ts +2 -0
- package/esm2022/components/autocomplete/autocomplete.component.mjs +3 -3
- package/esm2022/components/card/card.component.mjs +3 -2
- package/esm2022/components/field/field.component.mjs +9 -3
- package/fesm2022/testgorilla-tgo-ui.mjs +14 -7
- package/fesm2022/testgorilla-tgo-ui.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -225,7 +225,7 @@ export declare class AutocompleteComponent implements ControlValueAccessor, OnCh
|
|
|
225
225
|
* @type {boolean}
|
|
226
226
|
* @memberof AutocompleteComponent
|
|
227
227
|
*/
|
|
228
|
-
maxLength
|
|
228
|
+
maxLength?: number;
|
|
229
229
|
isDynamicFilteringEnabled: boolean;
|
|
230
230
|
dynamicFilterLoading: boolean;
|
|
231
231
|
dynamicFilteredList: any[] | null;
|
|
@@ -3,6 +3,7 @@ import { AfterViewInit, ChangeDetectorRef, DestroyRef, DoCheck, ElementRef, Even
|
|
|
3
3
|
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
4
4
|
import { MatIconRegistry } from '@angular/material/icon';
|
|
5
5
|
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
|
6
|
+
import { CdkTextareaAutosize } from '@angular/cdk/text-field';
|
|
6
7
|
import { FieldType } from '../../components/field/field.model';
|
|
7
8
|
import { ApplicationTheme } from '../../models/application-theme.model';
|
|
8
9
|
import { BadgeVariant } from '../badge/badge.model';
|
|
@@ -290,6 +291,7 @@ export declare class FieldComponent implements OnInit, ControlValueAccessor, DoC
|
|
|
290
291
|
validateEvent: EventEmitter<string>;
|
|
291
292
|
fieldBlur: EventEmitter<void>;
|
|
292
293
|
field: ElementRef<HTMLInputElement>;
|
|
294
|
+
autosize: CdkTextareaAutosize;
|
|
293
295
|
get getPasswordIcon(): IconName;
|
|
294
296
|
isActiveField: boolean;
|
|
295
297
|
isActiveHover: boolean;
|