@indigina/ui-kit 1.1.495 → 1.1.497
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
|
}
|
|
@@ -2065,12 +2068,17 @@ declare class KitRadioButtonComponent<T> implements ControlValueAccessor {
|
|
|
2065
2068
|
readonly label: InputSignal<string | null>;
|
|
2066
2069
|
readonly name: InputSignal<string>;
|
|
2067
2070
|
readonly readonly: InputSignal<boolean>;
|
|
2068
|
-
readonly disabled: ModelSignal<boolean>;
|
|
2069
2071
|
readonly type: InputSignal<KitRadioButtonType>;
|
|
2072
|
+
readonly value: InputSignal<T | null>;
|
|
2073
|
+
readonly checked: ModelSignal<boolean>;
|
|
2074
|
+
readonly icon: InputSignal<KitSvgIcon | undefined>;
|
|
2075
|
+
readonly disabled: ModelSignal<boolean>;
|
|
2070
2076
|
readonly changed: OutputEmitterRef<KitRadioButton<T>>;
|
|
2071
2077
|
readonly kitRadioButtonType: typeof KitRadioButtonType;
|
|
2072
2078
|
readonly KitSvgIcon: typeof KitSvgIcon;
|
|
2073
2079
|
readonly KitSvgIconType: typeof KitSvgIconType;
|
|
2080
|
+
readonly isSingleMode: Signal<boolean>;
|
|
2081
|
+
readonly radioItems: Signal<KitRadioButton<T>[]>;
|
|
2074
2082
|
get isIconListType(): boolean;
|
|
2075
2083
|
buildLabelId(index: number): string;
|
|
2076
2084
|
handleClick(event: MouseEvent, clickedItem: KitRadioButton<T>): void;
|
|
@@ -2085,7 +2093,7 @@ declare class KitRadioButtonComponent<T> implements ControlValueAccessor {
|
|
|
2085
2093
|
private getFirstPartOfUUID;
|
|
2086
2094
|
private needToPrevent;
|
|
2087
2095
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitRadioButtonComponent<any>, never>;
|
|
2088
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitRadioButtonComponent<any>, "kit-radio-button", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "
|
|
2096
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitRadioButtonComponent<any>, "kit-radio-button", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "checked": "checkedChange"; "disabled": "disabledChange"; "changed": "changed"; }, never, never, true, never>;
|
|
2089
2097
|
}
|
|
2090
2098
|
|
|
2091
2099
|
declare const buildRandomUUID: () => string;
|