@indigina/ui-kit 1.1.302 → 1.1.304
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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InputSignal, EventEmitter, Predicate,
|
|
2
|
+
import { InputSignal, EventEmitter, Predicate, ModelSignal, TemplateRef, OutputEmitterRef, Signal, OnInit, OnDestroy, WritableSignal, OnChanges, ModuleWithProviders, SimpleChanges, ElementRef, AfterContentInit, QueryList, AfterViewInit, ViewContainerRef, PipeTransform, InjectionToken } from '@angular/core';
|
|
3
3
|
import { ControlValueAccessor, ValidatorFn, FormControl, AbstractControl, UntypedFormGroup } from '@angular/forms';
|
|
4
4
|
import { TextBoxComponent } from '@progress/kendo-angular-inputs';
|
|
5
5
|
import { PopupSettings, DropDownListComponent, ItemDisabledFn, MultiSelectComponent } from '@progress/kendo-angular-dropdowns';
|
|
@@ -190,7 +190,10 @@ declare enum KitSvgIcon {
|
|
|
190
190
|
PAUSE = "pause",
|
|
191
191
|
INBOUND = "inbound",
|
|
192
192
|
OUTBOUND = "outbound",
|
|
193
|
-
INVENTORY = "inventory"
|
|
193
|
+
INVENTORY = "inventory",
|
|
194
|
+
INTEGRATION_TOOLS = "integration-tools",
|
|
195
|
+
PIPELINE = "pipeline",
|
|
196
|
+
CLIENT_SETUP = "client-setup"
|
|
194
197
|
}
|
|
195
198
|
declare enum KitSvgIconType {
|
|
196
199
|
FILL = "fill",
|
|
@@ -400,67 +403,69 @@ declare enum KitTextboxSize {
|
|
|
400
403
|
}
|
|
401
404
|
|
|
402
405
|
declare class KitTextboxComponent implements ControlValueAccessor {
|
|
403
|
-
readonly cdr: ChangeDetectorRef;
|
|
404
406
|
textbox: TextBoxComponent | undefined;
|
|
405
407
|
/**
|
|
406
408
|
* Defines a value that is going to be applied as an input placeholder
|
|
407
409
|
*/
|
|
408
|
-
placeholder
|
|
410
|
+
readonly placeholder: InputSignal<string | undefined>;
|
|
409
411
|
/**
|
|
410
412
|
* Defines a value that is going to be applied as an input label
|
|
411
413
|
*/
|
|
412
|
-
label
|
|
414
|
+
readonly label: InputSignal<string | undefined>;
|
|
413
415
|
/**
|
|
414
416
|
* Defines a value that is going to be applied as an input label tooltip
|
|
415
417
|
*/
|
|
416
|
-
labelTooltip
|
|
418
|
+
readonly labelTooltip: InputSignal<string | undefined>;
|
|
417
419
|
/**
|
|
418
420
|
* Defines a value that is going to be applied as a default input value
|
|
419
421
|
*/
|
|
420
|
-
defaultValue
|
|
422
|
+
readonly defaultValue: ModelSignal<string>;
|
|
421
423
|
/**
|
|
422
424
|
* Defines an icon which will be used to the left of the info message
|
|
423
425
|
*/
|
|
424
|
-
messageIcon
|
|
426
|
+
readonly messageIcon: InputSignal<KitSvgIcon | undefined>;
|
|
425
427
|
/**
|
|
426
428
|
* Defines a value which going to be an info message text
|
|
427
429
|
*/
|
|
428
|
-
messageText
|
|
430
|
+
readonly messageText: InputSignal<string | undefined>;
|
|
429
431
|
/**
|
|
430
432
|
* Defines a message template
|
|
431
433
|
*/
|
|
432
|
-
messageTemplate
|
|
434
|
+
readonly messageTemplate: InputSignal<TemplateRef<HTMLElement> | undefined>;
|
|
433
435
|
/**
|
|
434
436
|
* Defines a state whether the textbox will be disabled or not
|
|
435
437
|
*/
|
|
436
|
-
disabled: boolean
|
|
438
|
+
readonly disabled: ModelSignal<boolean>;
|
|
437
439
|
/**
|
|
438
440
|
* Defines the maximum length of the textbox value
|
|
439
441
|
*/
|
|
440
|
-
maxlength
|
|
442
|
+
readonly maxlength: InputSignal<number | undefined>;
|
|
441
443
|
/**
|
|
442
444
|
* Defines the state of the textbox
|
|
443
445
|
*/
|
|
444
|
-
state: KitTextboxState
|
|
446
|
+
readonly state: InputSignal<KitTextboxState>;
|
|
445
447
|
/**
|
|
446
448
|
* Defines the size of the textbox
|
|
447
449
|
*/
|
|
448
|
-
size: KitTextboxSize
|
|
450
|
+
readonly size: InputSignal<KitTextboxSize>;
|
|
449
451
|
/**
|
|
450
452
|
* Defines the icon which will be used with the input field
|
|
451
453
|
*/
|
|
452
|
-
icon
|
|
453
|
-
clearButton: boolean
|
|
454
|
-
showStateIcon: boolean
|
|
454
|
+
readonly icon: InputSignal<KitSvgIcon | undefined>;
|
|
455
|
+
readonly clearButton: InputSignal<boolean>;
|
|
456
|
+
readonly showStateIcon: InputSignal<boolean>;
|
|
455
457
|
/**
|
|
456
458
|
* An action which is emitted when input field lost focus
|
|
457
459
|
*/
|
|
458
|
-
blured:
|
|
459
|
-
|
|
460
|
+
readonly blured: OutputEmitterRef<void>;
|
|
461
|
+
/**
|
|
462
|
+
* An action which is emitted when input field received focus
|
|
463
|
+
*/
|
|
464
|
+
readonly focused: OutputEmitterRef<void>;
|
|
460
465
|
/**
|
|
461
466
|
* An action which is emitted when input value changed
|
|
462
467
|
*/
|
|
463
|
-
changed:
|
|
468
|
+
readonly changed: OutputEmitterRef<string>;
|
|
464
469
|
readonly textboxComponent: Signal<TextBoxComponent>;
|
|
465
470
|
readonly textboxStateIcon: Record<KitTextboxState, KitSvgIcon>;
|
|
466
471
|
/**
|
|
@@ -485,7 +490,7 @@ declare class KitTextboxComponent implements ControlValueAccessor {
|
|
|
485
490
|
onInputChange(value: string): void;
|
|
486
491
|
updateValue(value: string): void;
|
|
487
492
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitTextboxComponent, never>;
|
|
488
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitTextboxComponent, "kit-textbox", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelTooltip": { "alias": "labelTooltip"; "required": false; }; "defaultValue": { "alias": "defaultValue"; "required": false; }; "messageIcon": { "alias": "messageIcon"; "required": false; }; "messageText": { "alias": "messageText"; "required": false; }; "messageTemplate": { "alias": "messageTemplate"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "state": { "alias": "state"; "required": false; }; "size": { "alias": "size"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "showStateIcon": { "alias": "showStateIcon"; "required": false; }; }, { "blured": "blured"; "focused": "focused"; "changed": "changed"; }, never, never, true, never>;
|
|
493
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitTextboxComponent, "kit-textbox", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "labelTooltip": { "alias": "labelTooltip"; "required": false; "isSignal": true; }; "defaultValue": { "alias": "defaultValue"; "required": false; "isSignal": true; }; "messageIcon": { "alias": "messageIcon"; "required": false; "isSignal": true; }; "messageText": { "alias": "messageText"; "required": false; "isSignal": true; }; "messageTemplate": { "alias": "messageTemplate"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "maxlength": { "alias": "maxlength"; "required": false; "isSignal": true; }; "state": { "alias": "state"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "clearButton": { "alias": "clearButton"; "required": false; "isSignal": true; }; "showStateIcon": { "alias": "showStateIcon"; "required": false; "isSignal": true; }; }, { "defaultValue": "defaultValueChange"; "disabled": "disabledChange"; "blured": "blured"; "focused": "focused"; "changed": "changed"; }, never, never, true, never>;
|
|
489
494
|
}
|
|
490
495
|
|
|
491
496
|
declare class KitTextboxActionsComponent implements OnInit, OnDestroy {
|
|
@@ -538,64 +543,64 @@ declare class KitNumericTextboxComponent implements ControlValueAccessor {
|
|
|
538
543
|
/**
|
|
539
544
|
* Defines a value that is going to be applied as an input placeholder
|
|
540
545
|
*/
|
|
541
|
-
placeholder
|
|
546
|
+
readonly placeholder: InputSignal<string | undefined>;
|
|
542
547
|
/**
|
|
543
548
|
* Defines a value that is going to be applied as an input label
|
|
544
549
|
*/
|
|
545
|
-
label
|
|
550
|
+
readonly label: InputSignal<string | undefined>;
|
|
546
551
|
/**
|
|
547
552
|
* Defines a value that is going to be applied as a default input value
|
|
548
553
|
*/
|
|
549
|
-
defaultValue
|
|
554
|
+
readonly defaultValue: ModelSignal<number | undefined>;
|
|
550
555
|
/**
|
|
551
556
|
* Specifies the number of decimals that the user can enter when the input is focused
|
|
552
557
|
*/
|
|
553
|
-
decimals
|
|
558
|
+
readonly decimals: InputSignal<number | undefined>;
|
|
554
559
|
/**
|
|
555
560
|
* Specifies the smallest value that is valid
|
|
556
561
|
*/
|
|
557
|
-
min
|
|
562
|
+
readonly min: InputSignal<number | undefined>;
|
|
558
563
|
/**
|
|
559
564
|
* Specifies the greatest value that is valid
|
|
560
565
|
*/
|
|
561
|
-
max
|
|
566
|
+
readonly max: InputSignal<number | undefined>;
|
|
562
567
|
/**
|
|
563
568
|
* Specifies the maximum number of characters the end user can type
|
|
564
569
|
*/
|
|
565
|
-
maxlength
|
|
570
|
+
readonly maxlength: InputSignal<number | undefined>;
|
|
566
571
|
/**
|
|
567
572
|
* Defines an icon which will be used to the left of the info message
|
|
568
573
|
*/
|
|
569
|
-
messageIcon
|
|
574
|
+
readonly messageIcon: InputSignal<KitSvgIcon | undefined>;
|
|
570
575
|
/**
|
|
571
576
|
* Defines a value which going to be an info message text
|
|
572
577
|
*/
|
|
573
|
-
messageText
|
|
578
|
+
readonly messageText: InputSignal<string | undefined>;
|
|
574
579
|
/**
|
|
575
580
|
* Defines a state whether the textbox will be disabled or not
|
|
576
581
|
*/
|
|
577
|
-
disabled: boolean
|
|
582
|
+
readonly disabled: ModelSignal<boolean>;
|
|
578
583
|
/**
|
|
579
584
|
* Specifies the number format
|
|
580
585
|
*/
|
|
581
|
-
format
|
|
586
|
+
readonly format: InputSignal<string | undefined>;
|
|
582
587
|
/**
|
|
583
588
|
* Defines the state of the textbox
|
|
584
589
|
*/
|
|
585
|
-
state: KitNumericTextboxState
|
|
590
|
+
readonly state: InputSignal<KitNumericTextboxState>;
|
|
586
591
|
/**
|
|
587
592
|
* Defines the icon which will be used with the input field
|
|
588
593
|
*/
|
|
589
|
-
icon
|
|
594
|
+
readonly icon: InputSignal<KitSvgIcon | undefined>;
|
|
590
595
|
readonly size: InputSignal<KitNumericTextboxSize>;
|
|
591
596
|
/**
|
|
592
597
|
* An action which is emitted when input field lost focus
|
|
593
598
|
*/
|
|
594
|
-
blured:
|
|
599
|
+
readonly blured: OutputEmitterRef<void>;
|
|
595
600
|
/**
|
|
596
601
|
* An action which is emitted when input value changed
|
|
597
602
|
*/
|
|
598
|
-
changed:
|
|
603
|
+
readonly changed: OutputEmitterRef<number>;
|
|
599
604
|
readonly numericTextboxStateIcon: Record<KitNumericTextboxState, KitSvgIcon>;
|
|
600
605
|
/**
|
|
601
606
|
* Function that should be called every time the form control value changes
|
|
@@ -618,7 +623,7 @@ declare class KitNumericTextboxComponent implements ControlValueAccessor {
|
|
|
618
623
|
*/
|
|
619
624
|
onInputChange(value: number): void;
|
|
620
625
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitNumericTextboxComponent, never>;
|
|
621
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitNumericTextboxComponent, "kit-numeric-textbox", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "defaultValue": { "alias": "defaultValue"; "required": false; }; "decimals": { "alias": "decimals"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "messageIcon": { "alias": "messageIcon"; "required": false; }; "messageText": { "alias": "messageText"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "format": { "alias": "format"; "required": false; }; "state": { "alias": "state"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "blured": "blured"; "changed": "changed"; }, never, never, true, never>;
|
|
626
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitNumericTextboxComponent, "kit-numeric-textbox", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "defaultValue": { "alias": "defaultValue"; "required": false; "isSignal": true; }; "decimals": { "alias": "decimals"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "maxlength": { "alias": "maxlength"; "required": false; "isSignal": true; }; "messageIcon": { "alias": "messageIcon"; "required": false; "isSignal": true; }; "messageText": { "alias": "messageText"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "format": { "alias": "format"; "required": false; "isSignal": true; }; "state": { "alias": "state"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "defaultValue": "defaultValueChange"; "disabled": "disabledChange"; "blured": "blured"; "changed": "changed"; }, never, never, true, never>;
|
|
622
627
|
}
|
|
623
628
|
|
|
624
629
|
declare class KitInputMessageComponent {
|
|
@@ -646,54 +651,53 @@ interface KitDropdownItem<T, U = unknown> {
|
|
|
646
651
|
disabled?: Predicate<KitDropdownItem<T>>;
|
|
647
652
|
}
|
|
648
653
|
declare class KitDropdownComponent<T> implements ControlValueAccessor {
|
|
649
|
-
private readonly changeDetectorRef;
|
|
650
654
|
/**
|
|
651
655
|
* an items list which is going to be rendered as dropdown items
|
|
652
656
|
*/
|
|
653
|
-
items: KitDropdownItem<T>[]
|
|
657
|
+
readonly items: InputSignal<KitDropdownItem<T>[]>;
|
|
654
658
|
/**
|
|
655
659
|
* an item which needs to be selected as a default value
|
|
656
660
|
*/
|
|
657
|
-
selectedItem
|
|
661
|
+
readonly selectedItem: ModelSignal<T | undefined>;
|
|
658
662
|
/**
|
|
659
663
|
* an informative text that will be above the dropdown
|
|
660
664
|
*/
|
|
661
|
-
label
|
|
665
|
+
readonly label: InputSignal<string | undefined>;
|
|
662
666
|
/**
|
|
663
667
|
* defines whether the component will be in disabled state
|
|
664
668
|
*/
|
|
665
|
-
disabled
|
|
669
|
+
readonly disabled: ModelSignal<boolean | undefined>;
|
|
666
670
|
/**
|
|
667
671
|
* Defines an icon which will be used to the left of the info message
|
|
668
672
|
*/
|
|
669
|
-
messageIcon
|
|
673
|
+
readonly messageIcon: InputSignal<KitSvgIcon | undefined>;
|
|
670
674
|
/**
|
|
671
675
|
* Defines a value which going to be an info message text
|
|
672
676
|
*/
|
|
673
|
-
messageText
|
|
677
|
+
readonly messageText: InputSignal<string | undefined>;
|
|
674
678
|
/**
|
|
675
679
|
* Defines a state whether the component will be invalid
|
|
676
680
|
*/
|
|
677
|
-
invalid
|
|
681
|
+
readonly invalid: InputSignal<boolean>;
|
|
678
682
|
/**
|
|
679
683
|
* An item that is going to be presented as a default value.
|
|
680
684
|
* Using as a placeholder
|
|
681
685
|
*/
|
|
682
|
-
defaultItem
|
|
686
|
+
readonly defaultItem: InputSignal<KitDropdownItem<T> | undefined>;
|
|
683
687
|
/**
|
|
684
688
|
* Defines dropdown popup list height. By default, listHeight is 200px.
|
|
685
689
|
*/
|
|
686
|
-
listHeight: number
|
|
690
|
+
readonly listHeight: InputSignal<number>;
|
|
687
691
|
/**
|
|
688
692
|
* Whether the default item will be hidden. "true" by default
|
|
689
693
|
*/
|
|
690
|
-
hideDefaultItem: boolean
|
|
694
|
+
readonly hideDefaultItem: InputSignal<boolean>;
|
|
691
695
|
/**
|
|
692
696
|
* Defines the icon which going to be the icon for the dropdown toggle button
|
|
693
697
|
*/
|
|
694
|
-
toggleIcon: KitSvgIcon
|
|
695
|
-
popupSettings: PopupSettings
|
|
696
|
-
isValuePrimitive: boolean
|
|
698
|
+
readonly toggleIcon: InputSignal<KitSvgIcon>;
|
|
699
|
+
readonly popupSettings: InputSignal<PopupSettings>;
|
|
700
|
+
readonly isValuePrimitive: InputSignal<boolean>;
|
|
697
701
|
readonly footerTemplate: InputSignal<TemplateRef<HTMLTemplateElement> | undefined>;
|
|
698
702
|
readonly noDataTemplate: InputSignal<TemplateRef<HTMLTemplateElement> | undefined>;
|
|
699
703
|
/**
|
|
@@ -703,7 +707,7 @@ declare class KitDropdownComponent<T> implements ControlValueAccessor {
|
|
|
703
707
|
/**
|
|
704
708
|
* occurs once an item in the dropdown is selected
|
|
705
709
|
*/
|
|
706
|
-
selected:
|
|
710
|
+
readonly selected: OutputEmitterRef<KitDropdownItem<T>>;
|
|
707
711
|
/**
|
|
708
712
|
* Defines template for a dropdown value
|
|
709
713
|
*/
|
|
@@ -741,7 +745,7 @@ declare class KitDropdownComponent<T> implements ControlValueAccessor {
|
|
|
741
745
|
onClose(): void;
|
|
742
746
|
getCssClasses(): Record<string, boolean>;
|
|
743
747
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitDropdownComponent<any>, never>;
|
|
744
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitDropdownComponent<any>, "kit-dropdown", never, { "items": { "alias": "items"; "required": false; }; "selectedItem": { "alias": "selectedItem"; "required": false; }; "label": { "alias": "label"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "messageIcon": { "alias": "messageIcon"; "required": false; }; "messageText": { "alias": "messageText"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "defaultItem": { "alias": "defaultItem"; "required": false; }; "listHeight": { "alias": "listHeight"; "required": false; }; "hideDefaultItem": { "alias": "hideDefaultItem"; "required": false; }; "toggleIcon": { "alias": "toggleIcon"; "required": false; }; "popupSettings": { "alias": "popupSettings"; "required": false; }; "isValuePrimitive": { "alias": "isValuePrimitive"; "required": false; }; "footerTemplate": { "alias": "footerTemplate"; "required": false; "isSignal": true; }; "noDataTemplate": { "alias": "noDataTemplate"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "selected": "selected"; }, ["kitDropdownValueTemplate", "kitDropdownItemTemplate"], never, true, never>;
|
|
748
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitDropdownComponent<any>, "kit-dropdown", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "selectedItem": { "alias": "selectedItem"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "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; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "defaultItem": { "alias": "defaultItem"; "required": false; "isSignal": true; }; "listHeight": { "alias": "listHeight"; "required": false; "isSignal": true; }; "hideDefaultItem": { "alias": "hideDefaultItem"; "required": false; "isSignal": true; }; "toggleIcon": { "alias": "toggleIcon"; "required": false; "isSignal": true; }; "popupSettings": { "alias": "popupSettings"; "required": false; "isSignal": true; }; "isValuePrimitive": { "alias": "isValuePrimitive"; "required": false; "isSignal": true; }; "footerTemplate": { "alias": "footerTemplate"; "required": false; "isSignal": true; }; "noDataTemplate": { "alias": "noDataTemplate"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "selectedItem": "selectedItemChange"; "disabled": "disabledChange"; "selected": "selected"; }, ["kitDropdownValueTemplate", "kitDropdownItemTemplate"], never, true, never>;
|
|
745
749
|
}
|
|
746
750
|
|
|
747
751
|
declare class KitDropdownItemTemplateDirective {
|
|
@@ -764,78 +768,77 @@ declare enum KitTextareaState {
|
|
|
764
768
|
}
|
|
765
769
|
|
|
766
770
|
declare class KitTextareaComponent implements ControlValueAccessor, OnChanges {
|
|
767
|
-
private readonly cdr;
|
|
768
771
|
/**
|
|
769
772
|
* Defines a value that is going to be applied as a textarea placeholder
|
|
770
773
|
*/
|
|
771
|
-
placeholder
|
|
774
|
+
readonly placeholder: InputSignal<string | undefined>;
|
|
772
775
|
/**
|
|
773
776
|
* Defines a value that is going to be applied as a textarea label
|
|
774
777
|
*/
|
|
775
|
-
label
|
|
778
|
+
readonly label: InputSignal<string | undefined>;
|
|
776
779
|
/**
|
|
777
780
|
* Defines a value that is going to be applied as a default textarea value
|
|
778
781
|
*/
|
|
779
|
-
defaultValue
|
|
782
|
+
readonly defaultValue: ModelSignal<string>;
|
|
780
783
|
/**
|
|
781
784
|
* Defines a value that will determine the maximum number of characters in the textarea field
|
|
782
785
|
*/
|
|
783
|
-
maxlength
|
|
786
|
+
readonly maxlength: InputSignal<number | undefined>;
|
|
784
787
|
/**
|
|
785
788
|
* Defines a value that is going to be applied as a minimal number of visible text lines in
|
|
786
789
|
* the textarea field
|
|
787
790
|
*/
|
|
788
|
-
minLines
|
|
791
|
+
readonly minLines: InputSignal<number | undefined>;
|
|
789
792
|
/**
|
|
790
793
|
* Defines a value that is going to be applied as a maximal number of visible text lines in
|
|
791
794
|
* the textarea field
|
|
792
795
|
*/
|
|
793
|
-
maxLines
|
|
796
|
+
readonly maxLines: InputSignal<number | undefined>;
|
|
794
797
|
/**
|
|
795
798
|
* Defines a state whether the textarea will be disabled or not
|
|
796
799
|
*/
|
|
797
|
-
disabled: boolean
|
|
800
|
+
readonly disabled: ModelSignal<boolean>;
|
|
798
801
|
/**
|
|
799
802
|
* Defines an icon which will be used to the left of the info message
|
|
800
803
|
*/
|
|
801
|
-
messageIcon
|
|
804
|
+
readonly messageIcon: InputSignal<KitSvgIcon | undefined>;
|
|
802
805
|
/**
|
|
803
806
|
* Defines a value which going to be an info message text
|
|
804
807
|
*/
|
|
805
|
-
messageText
|
|
808
|
+
readonly messageText: InputSignal<string | undefined>;
|
|
806
809
|
/**
|
|
807
810
|
* Defines a particular state for the component
|
|
808
811
|
*/
|
|
809
|
-
state: KitTextareaState
|
|
812
|
+
readonly state: InputSignal<KitTextareaState>;
|
|
810
813
|
/**
|
|
811
814
|
* Defines the icon which will be used with the input field
|
|
812
815
|
*/
|
|
813
|
-
icon
|
|
816
|
+
readonly icon: InputSignal<KitSvgIcon | undefined>;
|
|
814
817
|
/**
|
|
815
818
|
* Defines whether the textarea will be in the readonly mode
|
|
816
819
|
*/
|
|
817
|
-
readonly: boolean
|
|
818
|
-
tooltip
|
|
820
|
+
readonly readonly: InputSignal<boolean>;
|
|
821
|
+
readonly tooltip: InputSignal<string | undefined>;
|
|
819
822
|
/**
|
|
820
823
|
* Defines a value that is going to be applied as a minimal textarea height
|
|
821
824
|
*/
|
|
822
|
-
minHeight
|
|
825
|
+
readonly minHeight: WritableSignal<number | undefined>;
|
|
823
826
|
/**
|
|
824
827
|
* Defines a value that is going to be applied as a maximal textarea height
|
|
825
828
|
*/
|
|
826
|
-
maxHeight
|
|
829
|
+
readonly maxHeight: WritableSignal<number | undefined>;
|
|
827
830
|
/**
|
|
828
831
|
* An action which is emitted when textarea field received focus
|
|
829
832
|
*/
|
|
830
|
-
focused:
|
|
833
|
+
readonly focused: OutputEmitterRef<void>;
|
|
831
834
|
/**
|
|
832
835
|
* An action which is emitted when textarea field lost focus
|
|
833
836
|
*/
|
|
834
|
-
blured:
|
|
837
|
+
readonly blured: OutputEmitterRef<void>;
|
|
835
838
|
/**
|
|
836
839
|
* An action which is emitted when textarea value changed
|
|
837
840
|
*/
|
|
838
|
-
changed:
|
|
841
|
+
readonly changed: OutputEmitterRef<string>;
|
|
839
842
|
readonly textareaStateIcon: Record<KitTextareaState, KitSvgIcon>;
|
|
840
843
|
readonly kitTooltipPosition: typeof KitTooltipPosition;
|
|
841
844
|
ngOnChanges(): void;
|
|
@@ -868,7 +871,7 @@ declare class KitTextareaComponent implements ControlValueAccessor, OnChanges {
|
|
|
868
871
|
*/
|
|
869
872
|
onTextareaChange(event: Event): void;
|
|
870
873
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitTextareaComponent, never>;
|
|
871
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitTextareaComponent, "kit-textarea", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "defaultValue": { "alias": "defaultValue"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "minLines": { "alias": "minLines"; "required": false; }; "maxLines": { "alias": "maxLines"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "messageIcon": { "alias": "messageIcon"; "required": false; }; "messageText": { "alias": "messageText"; "required": false; }; "state": { "alias": "state"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; }, { "focused": "focused"; "blured": "blured"; "changed": "changed"; }, never, never, true, never>;
|
|
874
|
+
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>;
|
|
872
875
|
}
|
|
873
876
|
|
|
874
877
|
declare class KitTextareaAutoresizeDirective implements OnInit {
|
|
@@ -1046,63 +1049,62 @@ declare class KitUnitsTextboxComponent<T> {
|
|
|
1046
1049
|
}
|
|
1047
1050
|
|
|
1048
1051
|
declare class KitDatetimepickerComponent implements ControlValueAccessor {
|
|
1049
|
-
private readonly cdr;
|
|
1050
1052
|
/**
|
|
1051
1053
|
* Defines a value that is going to be applied as a datetimepicker label
|
|
1052
1054
|
*/
|
|
1053
|
-
label
|
|
1055
|
+
readonly label: InputSignal<string | undefined>;
|
|
1054
1056
|
/**
|
|
1055
1057
|
* Defines a value that is going to be applied as a datepicker label tooltip
|
|
1056
1058
|
*/
|
|
1057
|
-
labelTooltip
|
|
1059
|
+
readonly labelTooltip: InputSignal<string | undefined>;
|
|
1058
1060
|
/**
|
|
1059
1061
|
* Defines a value that is going to be applied as a datetimepicker placeholder
|
|
1060
1062
|
*/
|
|
1061
|
-
placeholder
|
|
1063
|
+
readonly placeholder: InputSignal<string | undefined>;
|
|
1062
1064
|
/**
|
|
1063
1065
|
* Defines whether the component will be in disabled state
|
|
1064
1066
|
*/
|
|
1065
|
-
disabled
|
|
1067
|
+
readonly disabled: ModelSignal<boolean>;
|
|
1066
1068
|
/**
|
|
1067
1069
|
* Defines an icon which will be used to the left of the info message
|
|
1068
1070
|
*/
|
|
1069
|
-
messageIcon
|
|
1071
|
+
readonly messageIcon: InputSignal<KitSvgIcon | undefined>;
|
|
1070
1072
|
/**
|
|
1071
1073
|
* Defines a value which going to be an info message text
|
|
1072
1074
|
*/
|
|
1073
|
-
messageText
|
|
1075
|
+
readonly messageText: InputSignal<string | undefined>;
|
|
1074
1076
|
/**
|
|
1075
1077
|
* Defines a state whether the component will be invalid
|
|
1076
1078
|
*/
|
|
1077
|
-
invalid
|
|
1079
|
+
readonly invalid: InputSignal<boolean>;
|
|
1078
1080
|
/**
|
|
1079
1081
|
* Defines a value that is going to be applied as a datetimepicker format
|
|
1080
1082
|
*/
|
|
1081
|
-
format: string
|
|
1083
|
+
readonly format: InputSignal<string>;
|
|
1082
1084
|
/**
|
|
1083
1085
|
* Defines a value that is going to be applied as a default datetimepicker value
|
|
1084
1086
|
*/
|
|
1085
|
-
defaultDate
|
|
1087
|
+
readonly defaultDate: ModelSignal<Date | null | undefined>;
|
|
1086
1088
|
/**
|
|
1087
1089
|
* Specifies the smallest valid date
|
|
1088
1090
|
*/
|
|
1089
|
-
min
|
|
1091
|
+
readonly min: InputSignal<Date | undefined>;
|
|
1090
1092
|
/**
|
|
1091
1093
|
* Specifies the biggest valid date
|
|
1092
1094
|
*/
|
|
1093
|
-
max
|
|
1095
|
+
readonly max: InputSignal<Date | undefined>;
|
|
1094
1096
|
/**
|
|
1095
1097
|
* Defines the text of the Apply button in the popup footer of the component, "Apply" by default
|
|
1096
1098
|
*/
|
|
1097
|
-
applyButtonText: string
|
|
1099
|
+
readonly applyButtonText: InputSignal<string>;
|
|
1098
1100
|
/**
|
|
1099
1101
|
* Defines the text of the Cancel button in the popup footer of the component, "Cancel" by default
|
|
1100
1102
|
*/
|
|
1101
|
-
cancelButtonText: string
|
|
1103
|
+
readonly cancelButtonText: InputSignal<string>;
|
|
1102
1104
|
/**
|
|
1103
1105
|
* An action which is emitted when datetimepicker value changed
|
|
1104
1106
|
*/
|
|
1105
|
-
changed:
|
|
1107
|
+
readonly changed: OutputEmitterRef<Date>;
|
|
1106
1108
|
/**
|
|
1107
1109
|
* Defines a reference of the DateTimePicker component
|
|
1108
1110
|
*/
|
|
@@ -1136,12 +1138,12 @@ declare class KitDatetimepickerComponent implements ControlValueAccessor {
|
|
|
1136
1138
|
* Function that should be called when input lost focus and changed form control state to "touched"
|
|
1137
1139
|
*/
|
|
1138
1140
|
onTouched: () => void;
|
|
1139
|
-
writeValue(value: string): void;
|
|
1141
|
+
writeValue(value: string | Date | null): void;
|
|
1140
1142
|
registerOnChange(fn: (_: Date | null) => void): void;
|
|
1141
1143
|
registerOnTouched(fn: () => void): void;
|
|
1142
1144
|
setDisabledState(disabled: boolean): void;
|
|
1143
1145
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitDatetimepickerComponent, never>;
|
|
1144
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitDatetimepickerComponent, "kit-datetimepicker", never, { "label": { "alias": "label"; "required": false; }; "labelTooltip": { "alias": "labelTooltip"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "messageIcon": { "alias": "messageIcon"; "required": false; }; "messageText": { "alias": "messageText"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "format": { "alias": "format"; "required": false; }; "defaultDate": { "alias": "defaultDate"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "applyButtonText": { "alias": "applyButtonText"; "required": false; }; "cancelButtonText": { "alias": "cancelButtonText"; "required": false; }; }, { "changed": "changed"; }, never, never, true, never>;
|
|
1146
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitDatetimepickerComponent, "kit-datetimepicker", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "labelTooltip": { "alias": "labelTooltip"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "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; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "format": { "alias": "format"; "required": false; "isSignal": true; }; "defaultDate": { "alias": "defaultDate"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "applyButtonText": { "alias": "applyButtonText"; "required": false; "isSignal": true; }; "cancelButtonText": { "alias": "cancelButtonText"; "required": false; "isSignal": true; }; }, { "disabled": "disabledChange"; "defaultDate": "defaultDateChange"; "changed": "changed"; }, never, never, true, never>;
|
|
1145
1147
|
}
|
|
1146
1148
|
|
|
1147
1149
|
declare enum KitNotificationType {
|
|
@@ -1218,39 +1220,39 @@ declare class KitAutocompleteComponent<T> implements ControlValueAccessor {
|
|
|
1218
1220
|
/**
|
|
1219
1221
|
* Defines a value that is going to be applied as an input label
|
|
1220
1222
|
*/
|
|
1221
|
-
label
|
|
1223
|
+
readonly label: InputSignal<string | undefined>;
|
|
1222
1224
|
/**
|
|
1223
1225
|
* Defines a value that is going to be applied as an input placeholder
|
|
1224
1226
|
*/
|
|
1225
|
-
placeholder
|
|
1227
|
+
readonly placeholder: InputSignal<string | undefined>;
|
|
1226
1228
|
/**
|
|
1227
1229
|
* Defines an items list which is going to be an autocomplete items data
|
|
1228
1230
|
*/
|
|
1229
|
-
items: KitAutocompleteItem<T>[]
|
|
1231
|
+
readonly items: InputSignal<KitAutocompleteItem<T>[]>;
|
|
1230
1232
|
/**
|
|
1231
1233
|
* An item which is going to be an autocomplete selected value
|
|
1232
1234
|
*/
|
|
1233
|
-
selectedValue: T | null
|
|
1235
|
+
readonly selectedValue: ModelSignal<T | null>;
|
|
1234
1236
|
/**
|
|
1235
1237
|
* Defines whether the component will be in disabled state
|
|
1236
1238
|
*/
|
|
1237
|
-
disabled
|
|
1239
|
+
readonly disabled: ModelSignal<boolean>;
|
|
1238
1240
|
/**
|
|
1239
1241
|
* Defines whether the loader will be visible or not
|
|
1240
1242
|
*/
|
|
1241
|
-
loaderVisible: boolean
|
|
1243
|
+
readonly loaderVisible: InputSignal<boolean>;
|
|
1242
1244
|
/**
|
|
1243
1245
|
* Defines an icon which will be used to the left of the info message
|
|
1244
1246
|
*/
|
|
1245
|
-
messageIcon
|
|
1247
|
+
readonly messageIcon: InputSignal<KitSvgIcon | undefined>;
|
|
1246
1248
|
/**
|
|
1247
1249
|
* Defines a value which going to be an info message text
|
|
1248
1250
|
*/
|
|
1249
|
-
messageText
|
|
1251
|
+
readonly messageText: InputSignal<string | undefined>;
|
|
1250
1252
|
/**
|
|
1251
1253
|
* Defines a state whether the component will be invalid
|
|
1252
1254
|
*/
|
|
1253
|
-
invalid
|
|
1255
|
+
readonly invalid: InputSignal<boolean>;
|
|
1254
1256
|
/**
|
|
1255
1257
|
* Specifies whether the autocomplete allows user-defined values
|
|
1256
1258
|
*/
|
|
@@ -1274,11 +1276,11 @@ declare class KitAutocompleteComponent<T> implements ControlValueAccessor {
|
|
|
1274
1276
|
/**
|
|
1275
1277
|
* An action which is emitted when input lost focus
|
|
1276
1278
|
*/
|
|
1277
|
-
blured:
|
|
1279
|
+
readonly blured: OutputEmitterRef<void>;
|
|
1278
1280
|
/**
|
|
1279
1281
|
* An action which is emitted when input field got focus
|
|
1280
1282
|
*/
|
|
1281
|
-
focused:
|
|
1283
|
+
readonly focused: OutputEmitterRef<void>;
|
|
1282
1284
|
private combobox;
|
|
1283
1285
|
/**
|
|
1284
1286
|
* Settings for popup that will be opened as dropdown options list
|
|
@@ -1316,7 +1318,7 @@ declare class KitAutocompleteComponent<T> implements ControlValueAccessor {
|
|
|
1316
1318
|
registerOnTouched(fn: () => void): void;
|
|
1317
1319
|
setDisabledState(disabled: boolean): void;
|
|
1318
1320
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitAutocompleteComponent<any>, never>;
|
|
1319
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitAutocompleteComponent<any>, "kit-autocomplete", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "items": { "alias": "items"; "required": false; }; "selectedValue": { "alias": "selectedValue"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loaderVisible": { "alias": "loaderVisible"; "required": false; }; "messageIcon": { "alias": "messageIcon"; "required": false; }; "messageText": { "alias": "messageText"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "allowCustom": { "alias": "allowCustom"; "required": false; "isSignal": true; }; "closePopupIfDataNotFound": { "alias": "closePopupIfDataNotFound"; "required": false; "isSignal": true; }; }, { "filterChanged": "filterChanged"; "valueChanged": "valueChanged"; "selectionChanged": "selectionChanged"; "blured": "blured"; "focused": "focused"; }, never, never, true, never>;
|
|
1321
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitAutocompleteComponent<any>, "kit-autocomplete", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; "selectedValue": { "alias": "selectedValue"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "loaderVisible": { "alias": "loaderVisible"; "required": false; "isSignal": true; }; "messageIcon": { "alias": "messageIcon"; "required": false; "isSignal": true; }; "messageText": { "alias": "messageText"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "allowCustom": { "alias": "allowCustom"; "required": false; "isSignal": true; }; "closePopupIfDataNotFound": { "alias": "closePopupIfDataNotFound"; "required": false; "isSignal": true; }; }, { "selectedValue": "selectedValueChange"; "disabled": "disabledChange"; "filterChanged": "filterChanged"; "valueChanged": "valueChanged"; "selectionChanged": "selectionChanged"; "blured": "blured"; "focused": "focused"; }, never, never, true, never>;
|
|
1320
1322
|
}
|
|
1321
1323
|
|
|
1322
1324
|
declare class KitAutocompleteDirective<T> {
|
|
@@ -1393,40 +1395,41 @@ declare class KitToggleComponent implements ControlValueAccessor {
|
|
|
1393
1395
|
/**
|
|
1394
1396
|
* Defines a label text which will be displayed next to the toggle
|
|
1395
1397
|
*/
|
|
1396
|
-
label
|
|
1398
|
+
readonly label: InputSignal<string | undefined>;
|
|
1397
1399
|
/**
|
|
1398
1400
|
* Defines whether the component will be in disabled state
|
|
1399
1401
|
*/
|
|
1400
|
-
disabled: boolean
|
|
1402
|
+
readonly disabled: ModelSignal<boolean>;
|
|
1401
1403
|
/**
|
|
1402
1404
|
* Defines whether the component will be in readonly state
|
|
1403
1405
|
*/
|
|
1404
|
-
readonly: boolean
|
|
1406
|
+
readonly readonly: InputSignal<boolean>;
|
|
1405
1407
|
/**
|
|
1406
1408
|
* Defines a default value
|
|
1407
1409
|
*/
|
|
1408
|
-
defaultChecked: boolean
|
|
1410
|
+
readonly defaultChecked: ModelSignal<boolean>;
|
|
1409
1411
|
/**
|
|
1410
1412
|
* Defines the left label of the toggle
|
|
1411
1413
|
*/
|
|
1412
|
-
leftLabel
|
|
1414
|
+
readonly leftLabel: InputSignal<string | undefined>;
|
|
1413
1415
|
/**
|
|
1414
1416
|
* Defines the right label of the toggle
|
|
1415
1417
|
*/
|
|
1416
|
-
rightLabel
|
|
1418
|
+
readonly rightLabel: InputSignal<string | undefined>;
|
|
1417
1419
|
/**
|
|
1418
1420
|
* Defines an icon which will be used to the left of the info message
|
|
1419
1421
|
*/
|
|
1420
|
-
messageIcon
|
|
1422
|
+
readonly messageIcon: InputSignal<KitSvgIcon | undefined>;
|
|
1421
1423
|
/**
|
|
1422
1424
|
* Defines a value which going to be an info message text
|
|
1423
1425
|
*/
|
|
1424
|
-
messageText
|
|
1426
|
+
readonly messageText: InputSignal<string | undefined>;
|
|
1425
1427
|
readonly size: InputSignal<KitToggleSize>;
|
|
1426
1428
|
/**
|
|
1427
1429
|
* Occurs as soon as toggle state is changed
|
|
1428
1430
|
*/
|
|
1429
|
-
changed:
|
|
1431
|
+
readonly changed: OutputEmitterRef<boolean>;
|
|
1432
|
+
private readonly isFormControlled;
|
|
1430
1433
|
/**
|
|
1431
1434
|
* Function that is called when toggle state changed
|
|
1432
1435
|
*/
|
|
@@ -1444,7 +1447,7 @@ declare class KitToggleComponent implements ControlValueAccessor {
|
|
|
1444
1447
|
writeValue(value: boolean): void;
|
|
1445
1448
|
setDisabledState(disabled: boolean): void;
|
|
1446
1449
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitToggleComponent, never>;
|
|
1447
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitToggleComponent, "kit-toggle", never, { "label": { "alias": "label"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "defaultChecked": { "alias": "defaultChecked"; "required": false; }; "leftLabel": { "alias": "leftLabel"; "required": false; }; "rightLabel": { "alias": "rightLabel"; "required": false; }; "messageIcon": { "alias": "messageIcon"; "required": false; }; "messageText": { "alias": "messageText"; "required": false; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "changed": "changed"; }, never, never, true, never>;
|
|
1450
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitToggleComponent, "kit-toggle", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "defaultChecked": { "alias": "defaultChecked"; "required": false; "isSignal": true; }; "leftLabel": { "alias": "leftLabel"; "required": false; "isSignal": true; }; "rightLabel": { "alias": "rightLabel"; "required": false; "isSignal": true; }; "messageIcon": { "alias": "messageIcon"; "required": false; "isSignal": true; }; "messageText": { "alias": "messageText"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "disabled": "disabledChange"; "defaultChecked": "defaultCheckedChange"; "changed": "changed"; }, never, never, true, never>;
|
|
1448
1451
|
}
|
|
1449
1452
|
|
|
1450
1453
|
interface KitOptionToggleOption {
|
|
@@ -1453,26 +1456,26 @@ interface KitOptionToggleOption {
|
|
|
1453
1456
|
}
|
|
1454
1457
|
|
|
1455
1458
|
declare class KitOptionToggleComponent implements ControlValueAccessor {
|
|
1456
|
-
readonly disabled:
|
|
1457
|
-
readonly defaultActiveOption:
|
|
1459
|
+
readonly disabled: ModelSignal<boolean>;
|
|
1460
|
+
readonly defaultActiveOption: ModelSignal<string | undefined>;
|
|
1458
1461
|
readonly leftOption: InputSignal<KitOptionToggleOption>;
|
|
1459
1462
|
readonly rightOption: InputSignal<KitOptionToggleOption>;
|
|
1460
|
-
readonly
|
|
1463
|
+
readonly handleChange: OutputEmitterRef<string>;
|
|
1461
1464
|
readonly name: string;
|
|
1462
1465
|
readonly leftOptionChecked: Signal<boolean>;
|
|
1463
1466
|
readonly rightOptionChecked: Signal<boolean>;
|
|
1464
|
-
private readonly
|
|
1465
|
-
toggleOption(): void;
|
|
1466
|
-
onChange(value: string)
|
|
1467
|
+
private readonly isFormControlled;
|
|
1468
|
+
toggleOption(option?: string): void;
|
|
1469
|
+
onChange: (value: string) => void;
|
|
1470
|
+
onTouched: () => void;
|
|
1467
1471
|
writeValue(value: string): void;
|
|
1468
1472
|
registerOnChange(fn: (value: string) => void): void;
|
|
1469
1473
|
registerOnTouched(fn: () => void): void;
|
|
1470
|
-
|
|
1471
|
-
private onTouchedFn;
|
|
1474
|
+
setDisabledState(disabled: boolean): void;
|
|
1472
1475
|
private buildUniqName;
|
|
1473
1476
|
private getFirstPartOfUUID;
|
|
1474
1477
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitOptionToggleComponent, never>;
|
|
1475
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitOptionToggleComponent, "kit-option-toggle", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "defaultActiveOption": { "alias": "defaultActiveOption"; "required": false; "isSignal": true; }; "leftOption": { "alias": "leftOption"; "required": true; "isSignal": true; }; "rightOption": { "alias": "rightOption"; "required": true; "isSignal": true; }; }, { "
|
|
1478
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitOptionToggleComponent, "kit-option-toggle", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "defaultActiveOption": { "alias": "defaultActiveOption"; "required": false; "isSignal": true; }; "leftOption": { "alias": "leftOption"; "required": true; "isSignal": true; }; "rightOption": { "alias": "rightOption"; "required": true; "isSignal": true; }; }, { "disabled": "disabledChange"; "defaultActiveOption": "defaultActiveOptionChange"; "handleChange": "handleChange"; }, never, never, true, never>;
|
|
1476
1479
|
}
|
|
1477
1480
|
|
|
1478
1481
|
declare enum KitPillType {
|
|
@@ -1606,83 +1609,83 @@ interface KitDaterangeValue {
|
|
|
1606
1609
|
end: Date | null;
|
|
1607
1610
|
}
|
|
1608
1611
|
declare class KitDaterangeComponent {
|
|
1609
|
-
type: KitDaterangeType
|
|
1612
|
+
readonly type: InputSignal<KitDaterangeType>;
|
|
1610
1613
|
/**
|
|
1611
1614
|
* Defines a value that is going to be applied as a daterange button label
|
|
1612
1615
|
*/
|
|
1613
|
-
label
|
|
1616
|
+
readonly label: InputSignal<string | undefined>;
|
|
1614
1617
|
/**
|
|
1615
1618
|
* Defines a value that is going to be applied as a daterange start input label
|
|
1616
1619
|
*/
|
|
1617
|
-
startLabel
|
|
1620
|
+
readonly startLabel: InputSignal<string | undefined>;
|
|
1618
1621
|
/**
|
|
1619
1622
|
* Defines a value that is going to be applied as a daterange end input label
|
|
1620
1623
|
*/
|
|
1621
|
-
endLabel
|
|
1624
|
+
readonly endLabel: InputSignal<string | undefined>;
|
|
1622
1625
|
/**
|
|
1623
1626
|
* Defines a value that is going to be applied as a daterange start input placeholder
|
|
1624
1627
|
*/
|
|
1625
|
-
startPlaceholder
|
|
1628
|
+
readonly startPlaceholder: InputSignal<string | undefined>;
|
|
1626
1629
|
/**
|
|
1627
1630
|
* Defines a value that is going to be applied as a daterange end input placeholder
|
|
1628
1631
|
*/
|
|
1629
|
-
endPlaceholder
|
|
1632
|
+
readonly endPlaceholder: InputSignal<string | undefined>;
|
|
1630
1633
|
/**
|
|
1631
1634
|
* Defines a value that is going to be applied as a daterange format
|
|
1632
1635
|
*/
|
|
1633
|
-
format: string
|
|
1636
|
+
readonly format: InputSignal<string>;
|
|
1634
1637
|
/**
|
|
1635
1638
|
* Defines a value that is going to be applied as a default daterange start date value
|
|
1636
1639
|
*/
|
|
1637
|
-
defaultStartDate
|
|
1640
|
+
readonly defaultStartDate: ModelSignal<Date | undefined>;
|
|
1638
1641
|
/**
|
|
1639
1642
|
* Defines a value that is going to be applied as a default daterange end date value
|
|
1640
1643
|
*/
|
|
1641
|
-
defaultEndDate
|
|
1644
|
+
readonly defaultEndDate: ModelSignal<Date | undefined>;
|
|
1642
1645
|
/**
|
|
1643
1646
|
* Specifies the smallest valid date
|
|
1644
1647
|
*/
|
|
1645
|
-
min
|
|
1648
|
+
readonly min: InputSignal<Date | undefined>;
|
|
1646
1649
|
/**
|
|
1647
1650
|
* Specifies the biggest valid date
|
|
1648
1651
|
*/
|
|
1649
|
-
max
|
|
1652
|
+
readonly max: InputSignal<Date | undefined>;
|
|
1650
1653
|
/**
|
|
1651
1654
|
* Defines whether the component will be in disabled state
|
|
1652
1655
|
*/
|
|
1653
|
-
disabled
|
|
1656
|
+
readonly disabled: ModelSignal<boolean>;
|
|
1654
1657
|
/**
|
|
1655
1658
|
* Defines a state whether the component will be invalid
|
|
1656
1659
|
*/
|
|
1657
|
-
invalid: boolean
|
|
1660
|
+
readonly invalid: InputSignal<boolean>;
|
|
1658
1661
|
/**
|
|
1659
1662
|
* Defines an icon which will be used to the left of the info message
|
|
1660
1663
|
*/
|
|
1661
|
-
messageIcon
|
|
1664
|
+
readonly messageIcon: InputSignal<KitSvgIcon | undefined>;
|
|
1662
1665
|
/**
|
|
1663
1666
|
* Defines a value which going to be an info message text
|
|
1664
1667
|
*/
|
|
1665
|
-
messageText
|
|
1668
|
+
readonly messageText: InputSignal<string | undefined>;
|
|
1666
1669
|
/**
|
|
1667
1670
|
* Defines a value that is going to be applied as a start date form control
|
|
1668
1671
|
*/
|
|
1669
|
-
startDateControl: AbstractControl
|
|
1672
|
+
readonly startDateControl: InputSignal<AbstractControl>;
|
|
1670
1673
|
/**
|
|
1671
1674
|
* Defines a value that is going to be applied as an end date form control
|
|
1672
1675
|
*/
|
|
1673
|
-
endDateControl: AbstractControl
|
|
1676
|
+
readonly endDateControl: InputSignal<AbstractControl>;
|
|
1674
1677
|
/**
|
|
1675
1678
|
* An action which is emitted when start date changed
|
|
1676
1679
|
*/
|
|
1677
|
-
startDateChanged:
|
|
1680
|
+
readonly startDateChanged: OutputEmitterRef<Date>;
|
|
1678
1681
|
/**
|
|
1679
1682
|
* An action which is emitted when daterange popup closed
|
|
1680
1683
|
*/
|
|
1681
|
-
closed:
|
|
1684
|
+
readonly closed: OutputEmitterRef<KitDaterangeValue>;
|
|
1682
1685
|
/**
|
|
1683
1686
|
* An action which is emitted when end date changed
|
|
1684
1687
|
*/
|
|
1685
|
-
endDateChanged:
|
|
1688
|
+
readonly endDateChanged: OutputEmitterRef<Date>;
|
|
1686
1689
|
popup: DateRangePopupComponent;
|
|
1687
1690
|
/**
|
|
1688
1691
|
* An icon which will be used in a daterange input icon
|
|
@@ -1695,7 +1698,7 @@ declare class KitDaterangeComponent {
|
|
|
1695
1698
|
onBlur(): void;
|
|
1696
1699
|
onClose(): void;
|
|
1697
1700
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitDaterangeComponent, never>;
|
|
1698
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitDaterangeComponent, "kit-daterange", never, { "type": { "alias": "type"; "required": false; }; "label": { "alias": "label"; "required": false; }; "startLabel": { "alias": "startLabel"; "required": false; }; "endLabel": { "alias": "endLabel"; "required": false; }; "startPlaceholder": { "alias": "startPlaceholder"; "required": false; }; "endPlaceholder": { "alias": "endPlaceholder"; "required": false; }; "format": { "alias": "format"; "required": false; }; "defaultStartDate": { "alias": "defaultStartDate"; "required": false; }; "defaultEndDate": { "alias": "defaultEndDate"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "messageIcon": { "alias": "messageIcon"; "required": false; }; "messageText": { "alias": "messageText"; "required": false; }; "startDateControl": { "alias": "startDateControl"; "required": false; }; "endDateControl": { "alias": "endDateControl"; "required": false; }; }, { "startDateChanged": "startDateChanged"; "closed": "closed"; "endDateChanged": "endDateChanged"; }, never, never, true, never>;
|
|
1701
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitDaterangeComponent, "kit-daterange", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "startLabel": { "alias": "startLabel"; "required": false; "isSignal": true; }; "endLabel": { "alias": "endLabel"; "required": false; "isSignal": true; }; "startPlaceholder": { "alias": "startPlaceholder"; "required": false; "isSignal": true; }; "endPlaceholder": { "alias": "endPlaceholder"; "required": false; "isSignal": true; }; "format": { "alias": "format"; "required": false; "isSignal": true; }; "defaultStartDate": { "alias": "defaultStartDate"; "required": false; "isSignal": true; }; "defaultEndDate": { "alias": "defaultEndDate"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "messageIcon": { "alias": "messageIcon"; "required": false; "isSignal": true; }; "messageText": { "alias": "messageText"; "required": false; "isSignal": true; }; "startDateControl": { "alias": "startDateControl"; "required": false; "isSignal": true; }; "endDateControl": { "alias": "endDateControl"; "required": false; "isSignal": true; }; }, { "defaultStartDate": "defaultStartDateChange"; "defaultEndDate": "defaultEndDateChange"; "disabled": "disabledChange"; "startDateChanged": "startDateChanged"; "closed": "closed"; "endDateChanged": "endDateChanged"; }, never, never, true, never>;
|
|
1699
1702
|
}
|
|
1700
1703
|
|
|
1701
1704
|
interface KitCtaPanelItem {
|
|
@@ -1821,13 +1824,13 @@ interface KitRadioButton<T> {
|
|
|
1821
1824
|
}
|
|
1822
1825
|
|
|
1823
1826
|
declare class KitRadioButtonComponent<T> implements ControlValueAccessor {
|
|
1824
|
-
items: KitRadioButton<T>[]
|
|
1825
|
-
label: string | null
|
|
1826
|
-
name: string
|
|
1827
|
-
readonly: boolean
|
|
1828
|
-
disabled: boolean
|
|
1829
|
-
type: KitRadioButtonType
|
|
1830
|
-
changed:
|
|
1827
|
+
readonly items: InputSignal<KitRadioButton<T>[]>;
|
|
1828
|
+
readonly label: InputSignal<string | null>;
|
|
1829
|
+
readonly name: InputSignal<string>;
|
|
1830
|
+
readonly readonly: InputSignal<boolean>;
|
|
1831
|
+
readonly disabled: ModelSignal<boolean>;
|
|
1832
|
+
readonly type: InputSignal<KitRadioButtonType>;
|
|
1833
|
+
readonly changed: OutputEmitterRef<KitRadioButton<T>>;
|
|
1831
1834
|
readonly kitRadioButtonType: typeof KitRadioButtonType;
|
|
1832
1835
|
readonly KitSvgIcon: typeof KitSvgIcon;
|
|
1833
1836
|
readonly KitSvgIconType: typeof KitSvgIconType;
|
|
@@ -1845,7 +1848,7 @@ declare class KitRadioButtonComponent<T> implements ControlValueAccessor {
|
|
|
1845
1848
|
private getFirstPartOfUUID;
|
|
1846
1849
|
private needToPrevent;
|
|
1847
1850
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitRadioButtonComponent<any>, never>;
|
|
1848
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitRadioButtonComponent<any>, "kit-radio-button", never, { "items": { "alias": "items"; "required": false; }; "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, { "changed": "changed"; }, never, never, true, never>;
|
|
1851
|
+
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; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; }, { "disabled": "disabledChange"; "changed": "changed"; }, never, never, true, never>;
|
|
1849
1852
|
}
|
|
1850
1853
|
|
|
1851
1854
|
declare const buildRandomUUID: () => string;
|
|
@@ -1923,67 +1926,67 @@ declare class KitTimepickerComponent implements ControlValueAccessor {
|
|
|
1923
1926
|
/**
|
|
1924
1927
|
* Defines a value that is going to be applied as a timepicker label
|
|
1925
1928
|
*/
|
|
1926
|
-
label: string | null
|
|
1929
|
+
readonly label: InputSignal<string | null>;
|
|
1927
1930
|
/**
|
|
1928
1931
|
* Defines a value that is going to be applied as a timepicker placeholder
|
|
1929
1932
|
*/
|
|
1930
|
-
placeholder: string | null
|
|
1933
|
+
readonly placeholder: InputSignal<string | null>;
|
|
1931
1934
|
/**
|
|
1932
1935
|
* Defines a value that is going to be applied as a default timepicker value
|
|
1933
1936
|
*/
|
|
1934
|
-
defaultValue: Date | null
|
|
1937
|
+
readonly defaultValue: ModelSignal<Date | null>;
|
|
1935
1938
|
/**
|
|
1936
1939
|
* Defines whether 24-hour time format will be applied to timepicker component
|
|
1937
1940
|
*/
|
|
1938
|
-
longFormatEnabled: boolean
|
|
1941
|
+
readonly longFormatEnabled: InputSignal<boolean>;
|
|
1939
1942
|
/**
|
|
1940
1943
|
* Defines whether the component will be in disabled state
|
|
1941
1944
|
*/
|
|
1942
|
-
disabled: boolean
|
|
1945
|
+
readonly disabled: ModelSignal<boolean>;
|
|
1943
1946
|
/**
|
|
1944
1947
|
* Defines a state whether the component will be invalid
|
|
1945
1948
|
*/
|
|
1946
|
-
invalid: boolean
|
|
1949
|
+
readonly invalid: InputSignal<boolean>;
|
|
1947
1950
|
/**
|
|
1948
1951
|
* Specifies the smallest valid time value
|
|
1949
1952
|
*/
|
|
1950
|
-
min: Date | null
|
|
1953
|
+
readonly min: InputSignal<Date | null>;
|
|
1951
1954
|
/**
|
|
1952
1955
|
* Specifies the biggest valid time value
|
|
1953
1956
|
*/
|
|
1954
|
-
max: Date | null
|
|
1957
|
+
readonly max: InputSignal<Date | null>;
|
|
1955
1958
|
/**
|
|
1956
1959
|
* Defines the text of the Apply button in the popup footer of the component, "Apply" by default
|
|
1957
1960
|
*/
|
|
1958
|
-
applyButtonText: string
|
|
1961
|
+
readonly applyButtonText: InputSignal<string>;
|
|
1959
1962
|
/**
|
|
1960
1963
|
* Defines the text of the Cancel button in the popup footer of the component, "Cancel" by default
|
|
1961
1964
|
*/
|
|
1962
|
-
cancelButtonText: string
|
|
1965
|
+
readonly cancelButtonText: InputSignal<string>;
|
|
1963
1966
|
/**
|
|
1964
1967
|
* Defines an icon which will be used to the left of the info message
|
|
1965
1968
|
*/
|
|
1966
|
-
messageIcon
|
|
1969
|
+
readonly messageIcon: InputSignal<KitSvgIcon | undefined>;
|
|
1967
1970
|
/**
|
|
1968
1971
|
* Defines a value which going to be an info message text
|
|
1969
1972
|
*/
|
|
1970
|
-
messageText
|
|
1973
|
+
readonly messageText: InputSignal<string | undefined>;
|
|
1971
1974
|
/**
|
|
1972
1975
|
* An action which is emitted when timepicker popup opened
|
|
1973
1976
|
*/
|
|
1974
|
-
popupOpened:
|
|
1977
|
+
readonly popupOpened: OutputEmitterRef<void>;
|
|
1975
1978
|
/**
|
|
1976
1979
|
* An action which is emitted when timepicker popup closed
|
|
1977
1980
|
*/
|
|
1978
|
-
popupClosed:
|
|
1981
|
+
readonly popupClosed: OutputEmitterRef<void>;
|
|
1979
1982
|
/**
|
|
1980
1983
|
* An action which is emitted when timepicker value changed
|
|
1981
1984
|
*/
|
|
1982
|
-
changed:
|
|
1985
|
+
readonly changed: OutputEmitterRef<Date>;
|
|
1983
1986
|
/**
|
|
1984
1987
|
* An action which is emitted when timepicker input field lost focus
|
|
1985
1988
|
*/
|
|
1986
|
-
blured:
|
|
1989
|
+
readonly blured: OutputEmitterRef<void>;
|
|
1987
1990
|
readonly KitSvgIcon: typeof KitSvgIcon;
|
|
1988
1991
|
readonly longTimeFormat: string;
|
|
1989
1992
|
readonly shortTimeFormat: string;
|
|
@@ -1997,7 +2000,7 @@ declare class KitTimepickerComponent implements ControlValueAccessor {
|
|
|
1997
2000
|
registerOnTouched(fn: () => void): void;
|
|
1998
2001
|
setDisabledState(disabled: boolean): void;
|
|
1999
2002
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitTimepickerComponent, never>;
|
|
2000
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitTimepickerComponent, "kit-timepicker", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "defaultValue": { "alias": "defaultValue"; "required": false; }; "longFormatEnabled": { "alias": "longFormatEnabled"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "applyButtonText": { "alias": "applyButtonText"; "required": false; }; "cancelButtonText": { "alias": "cancelButtonText"; "required": false; }; "messageIcon": { "alias": "messageIcon"; "required": false; }; "messageText": { "alias": "messageText"; "required": false; }; }, { "popupOpened": "popupOpened"; "popupClosed": "popupClosed"; "changed": "changed"; "blured": "blured"; }, never, never, true, never>;
|
|
2003
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitTimepickerComponent, "kit-timepicker", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "defaultValue": { "alias": "defaultValue"; "required": false; "isSignal": true; }; "longFormatEnabled": { "alias": "longFormatEnabled"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "applyButtonText": { "alias": "applyButtonText"; "required": false; "isSignal": true; }; "cancelButtonText": { "alias": "cancelButtonText"; "required": false; "isSignal": true; }; "messageIcon": { "alias": "messageIcon"; "required": false; "isSignal": true; }; "messageText": { "alias": "messageText"; "required": false; "isSignal": true; }; }, { "defaultValue": "defaultValueChange"; "disabled": "disabledChange"; "popupOpened": "popupOpened"; "popupClosed": "popupClosed"; "changed": "changed"; "blured": "blured"; }, never, never, true, never>;
|
|
2001
2004
|
}
|
|
2002
2005
|
|
|
2003
2006
|
declare enum KitSkeletonShape {
|
|
@@ -2447,43 +2450,43 @@ declare class KitDatepickerComponent implements ControlValueAccessor {
|
|
|
2447
2450
|
/**
|
|
2448
2451
|
* Defines a value that is going to be applied as a datepicker placeholder
|
|
2449
2452
|
*/
|
|
2450
|
-
placeholder
|
|
2453
|
+
readonly placeholder: InputSignal<string | undefined>;
|
|
2451
2454
|
/**
|
|
2452
2455
|
* Defines a value that is going to be applied as a datepicker label
|
|
2453
2456
|
*/
|
|
2454
|
-
label
|
|
2457
|
+
readonly label: InputSignal<string | undefined>;
|
|
2455
2458
|
/**
|
|
2456
2459
|
* Defines a value that is going to be applied as a datepicker label tooltip
|
|
2457
2460
|
*/
|
|
2458
|
-
labelTooltip
|
|
2461
|
+
readonly labelTooltip: InputSignal<string | undefined>;
|
|
2459
2462
|
/**
|
|
2460
2463
|
* Defines a value that is going to be applied as a default datepicker value
|
|
2461
2464
|
*/
|
|
2462
|
-
defaultDate
|
|
2465
|
+
readonly defaultDate: ModelSignal<Date | undefined>;
|
|
2463
2466
|
/**
|
|
2464
2467
|
* Defines whether the component will be in disabled state
|
|
2465
2468
|
*/
|
|
2466
|
-
disabled
|
|
2469
|
+
readonly disabled: ModelSignal<boolean>;
|
|
2467
2470
|
/**
|
|
2468
2471
|
* Defines a value that is going to be applied as a datepicker format
|
|
2469
2472
|
*/
|
|
2470
|
-
format: string
|
|
2473
|
+
readonly format: InputSignal<string>;
|
|
2471
2474
|
/**
|
|
2472
2475
|
* Specifies the smallest valid date
|
|
2473
2476
|
*/
|
|
2474
|
-
min
|
|
2477
|
+
readonly min: InputSignal<Date | undefined>;
|
|
2475
2478
|
/**
|
|
2476
2479
|
* Specifies the biggest valid date
|
|
2477
2480
|
*/
|
|
2478
|
-
max
|
|
2481
|
+
readonly max: InputSignal<Date | undefined>;
|
|
2479
2482
|
/**
|
|
2480
2483
|
* Defines an icon which will be used to the left of the info message
|
|
2481
2484
|
*/
|
|
2482
|
-
messageIcon
|
|
2485
|
+
readonly messageIcon: InputSignal<KitSvgIcon | undefined>;
|
|
2483
2486
|
/**
|
|
2484
2487
|
* Defines a value which going to be an info message text
|
|
2485
2488
|
*/
|
|
2486
|
-
messageText
|
|
2489
|
+
readonly messageText: InputSignal<string | undefined>;
|
|
2487
2490
|
/**
|
|
2488
2491
|
* Defines the size of the datepicker input field
|
|
2489
2492
|
*/
|
|
@@ -2491,7 +2494,7 @@ declare class KitDatepickerComponent implements ControlValueAccessor {
|
|
|
2491
2494
|
/**
|
|
2492
2495
|
* An action which is emitted when datepicker value changed
|
|
2493
2496
|
*/
|
|
2494
|
-
changed:
|
|
2497
|
+
readonly changed: OutputEmitterRef<Date>;
|
|
2495
2498
|
/**
|
|
2496
2499
|
* Defines a reference of the DatePicker component
|
|
2497
2500
|
*/
|
|
@@ -2510,12 +2513,12 @@ declare class KitDatepickerComponent implements ControlValueAccessor {
|
|
|
2510
2513
|
onBlur(): void;
|
|
2511
2514
|
onChange: (_value: Date) => void;
|
|
2512
2515
|
onTouched: () => void;
|
|
2513
|
-
writeValue(value: string): void;
|
|
2516
|
+
writeValue(value: string | Date): void;
|
|
2514
2517
|
registerOnChange(fn: (_: Date) => void): void;
|
|
2515
2518
|
registerOnTouched(fn: () => void): void;
|
|
2516
2519
|
setDisabledState(disabled: boolean): void;
|
|
2517
2520
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitDatepickerComponent, never>;
|
|
2518
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitDatepickerComponent, "kit-datepicker", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelTooltip": { "alias": "labelTooltip"; "required": false; }; "defaultDate": { "alias": "defaultDate"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "format": { "alias": "format"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "messageIcon": { "alias": "messageIcon"; "required": false; }; "messageText": { "alias": "messageText"; "required": false; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "changed": "changed"; }, never, never, true, never>;
|
|
2521
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitDatepickerComponent, "kit-datepicker", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "labelTooltip": { "alias": "labelTooltip"; "required": false; "isSignal": true; }; "defaultDate": { "alias": "defaultDate"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "format": { "alias": "format"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "messageIcon": { "alias": "messageIcon"; "required": false; "isSignal": true; }; "messageText": { "alias": "messageText"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "defaultDate": "defaultDateChange"; "disabled": "disabledChange"; "changed": "changed"; }, never, never, true, never>;
|
|
2519
2522
|
}
|
|
2520
2523
|
|
|
2521
2524
|
interface KitProfileMenuItem {
|