@indigina/ui-kit 1.1.496 → 1.1.498
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/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InputSignal, EventEmitter, OnInit, ModelSignal, OutputEmitterRef, Signal, TemplateRef, Predicate, OnDestroy, WritableSignal, OnChanges, ElementRef, ViewContainerRef, ModuleWithProviders, SimpleChanges, AfterContentInit, QueryList, AfterViewInit, signal, DestroyRef, PipeTransform, InjectionToken } from '@angular/core';
|
|
2
|
+
import { InputSignal, EventEmitter, OnInit, ModelSignal, OutputEmitterRef, Signal, TemplateRef, Predicate, OnDestroy, WritableSignal, OnChanges, ElementRef, DoCheck, ViewContainerRef, ModuleWithProviders, SimpleChanges, AfterContentInit, QueryList, AfterViewInit, signal, DestroyRef, PipeTransform, InjectionToken } from '@angular/core';
|
|
3
3
|
import { ExpansionPanelComponent, SelectEvent, DrawerComponent } from '@progress/kendo-angular-layout';
|
|
4
4
|
import { ControlValueAccessor, ValidatorFn, FormControl, AbstractControl, UntypedFormGroup } from '@angular/forms';
|
|
5
5
|
import { InputType, TextBoxComponent, NumericTextBoxComponent } from '@progress/kendo-angular-inputs';
|
|
@@ -969,11 +969,14 @@ declare class KitTextareaComponent implements ControlValueAccessor, OnChanges {
|
|
|
969
969
|
static ɵcmp: i0.ɵɵComponentDeclaration<KitTextareaComponent, "kit-textarea", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "defaultValue": { "alias": "defaultValue"; "required": false; "isSignal": true; }; "maxlength": { "alias": "maxlength"; "required": false; "isSignal": true; }; "minLines": { "alias": "minLines"; "required": false; "isSignal": true; }; "maxLines": { "alias": "maxLines"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "messageIcon": { "alias": "messageIcon"; "required": false; "isSignal": true; }; "messageText": { "alias": "messageText"; "required": false; "isSignal": true; }; "state": { "alias": "state"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; }, { "defaultValue": "defaultValueChange"; "disabled": "disabledChange"; "focused": "focused"; "blured": "blured"; "changed": "changed"; }, never, never, true, never>;
|
|
970
970
|
}
|
|
971
971
|
|
|
972
|
-
declare class KitTextareaAutoresizeDirective implements OnInit {
|
|
972
|
+
declare class KitTextareaAutoresizeDirective implements OnInit, DoCheck {
|
|
973
973
|
private readonly elementRef;
|
|
974
|
+
private previousValue;
|
|
974
975
|
onInput(): void;
|
|
975
976
|
ngOnInit(): void;
|
|
977
|
+
ngDoCheck(): void;
|
|
976
978
|
resize(): void;
|
|
979
|
+
private getScrollableParent;
|
|
977
980
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitTextareaAutoresizeDirective, never>;
|
|
978
981
|
static ɵdir: i0.ɵɵDirectiveDeclaration<KitTextareaAutoresizeDirective, "[autoresize]", never, {}, {}, never, never, true, never>;
|
|
979
982
|
}
|
|
@@ -1412,6 +1415,7 @@ declare class KitAutocompleteComponent<T> implements ControlValueAccessor {
|
|
|
1412
1415
|
* Settings for popup that will be opened as dropdown options list
|
|
1413
1416
|
*/
|
|
1414
1417
|
readonly dropdownPopupSettings: Signal<PopupSettings>;
|
|
1418
|
+
openPopup(): void;
|
|
1415
1419
|
/**
|
|
1416
1420
|
* Callback function that return dropdown list item text
|
|
1417
1421
|
*/
|