@indigina/ui-kit 1.1.316 → 1.1.318
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/index.d.ts
CHANGED
|
@@ -504,6 +504,7 @@ declare class KitTextboxActionsComponent implements OnInit, OnDestroy {
|
|
|
504
504
|
readonly placeholder: InputSignal<string>;
|
|
505
505
|
readonly label: InputSignal<string>;
|
|
506
506
|
readonly validators: InputSignal<ValidatorFn[]>;
|
|
507
|
+
readonly disabled: InputSignal<boolean>;
|
|
507
508
|
readonly showActions: InputSignal<boolean>;
|
|
508
509
|
readonly saved: OutputEmitterRef<string>;
|
|
509
510
|
readonly canceled: OutputEmitterRef<void>;
|
|
@@ -527,7 +528,7 @@ declare class KitTextboxActionsComponent implements OnInit, OnDestroy {
|
|
|
527
528
|
private removeDocumentClickListener;
|
|
528
529
|
private documentClick;
|
|
529
530
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitTextboxActionsComponent, never>;
|
|
530
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitTextboxActionsComponent, "kit-textbox-actions", never, { "defaultValue": { "alias": "defaultValue"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "validators": { "alias": "validators"; "required": false; "isSignal": true; }; "showActions": { "alias": "showActions"; "required": false; "isSignal": true; }; }, { "saved": "saved"; "canceled": "canceled"; }, never, never, true, never>;
|
|
531
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitTextboxActionsComponent, "kit-textbox-actions", never, { "defaultValue": { "alias": "defaultValue"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "validators": { "alias": "validators"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "showActions": { "alias": "showActions"; "required": false; "isSignal": true; }; }, { "saved": "saved"; "canceled": "canceled"; }, never, never, true, never>;
|
|
531
532
|
}
|
|
532
533
|
|
|
533
534
|
declare const kitGetFormControlErrors: (formControl: FormControl | AbstractControl | null) => string[];
|