@progress/kendo-angular-inputs 9.1.0-sig.202208261640 → 10.0.0-dev.202209120911
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/bundles/kendo-angular-inputs.umd.js +1 -1
- package/esm2015/maskedtextbox/maskedtextbox.component.js +10 -0
- package/esm2015/numerictextbox/numerictextbox.component.js +56 -48
- package/esm2015/package-metadata.js +1 -1
- package/esm2015/signature/signature.component.js +7 -1
- package/esm2015/signature.module.js +4 -4
- package/esm2015/switch/switch.component.js +10 -0
- package/esm2015/textarea/textarea.component.js +8 -0
- package/esm2015/textbox/textbox.component.js +8 -0
- package/fesm2015/kendo-angular-inputs.js +104 -54
- package/maskedtextbox/maskedtextbox.component.d.ts +4 -0
- package/numerictextbox/numerictextbox.component.d.ts +4 -0
- package/package.json +2 -2
- package/signature.module.d.ts +4 -4
- package/switch/switch.component.d.ts +4 -0
- package/textarea/textarea.component.d.ts +4 -0
- package/textbox/textbox.component.d.ts +4 -0
|
@@ -449,6 +449,12 @@ export class MaskedTextBoxComponent {
|
|
|
449
449
|
}
|
|
450
450
|
return null;
|
|
451
451
|
}
|
|
452
|
+
/**
|
|
453
|
+
* @hidden
|
|
454
|
+
*/
|
|
455
|
+
get isControlInvalid() {
|
|
456
|
+
return this.control && this.control.touched && !this.control.valid;
|
|
457
|
+
}
|
|
452
458
|
/**
|
|
453
459
|
* @hidden
|
|
454
460
|
*/
|
|
@@ -574,6 +580,8 @@ MaskedTextBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
574
580
|
[id]="focusableId"
|
|
575
581
|
[tabindex]="tabIndex"
|
|
576
582
|
[attr.title]="title"
|
|
583
|
+
[attr.aria-placeholder]="mask"
|
|
584
|
+
[attr.aria-invalid]="isControlInvalid"
|
|
577
585
|
[disabled]="disabled"
|
|
578
586
|
[readonly]="readonly"
|
|
579
587
|
[kendoEventsOutsideAngular]="{
|
|
@@ -618,6 +626,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
618
626
|
[id]="focusableId"
|
|
619
627
|
[tabindex]="tabIndex"
|
|
620
628
|
[attr.title]="title"
|
|
629
|
+
[attr.aria-placeholder]="mask"
|
|
630
|
+
[attr.aria-invalid]="isControlInvalid"
|
|
621
631
|
[disabled]="disabled"
|
|
622
632
|
[readonly]="readonly"
|
|
623
633
|
[kendoEventsOutsideAngular]="{
|
|
@@ -524,6 +524,12 @@ export class NumericTextBoxComponent {
|
|
|
524
524
|
get decrementTitle() {
|
|
525
525
|
return this.localizationService.get('decrement');
|
|
526
526
|
}
|
|
527
|
+
/**
|
|
528
|
+
* @hidden
|
|
529
|
+
*/
|
|
530
|
+
get isControlInvalid() {
|
|
531
|
+
return this.control && this.control.touched && !this.control.valid;
|
|
532
|
+
}
|
|
527
533
|
get decimalSeparator() {
|
|
528
534
|
const numberSymbols = this.intl.numberSymbols();
|
|
529
535
|
return numberSymbols.decimal;
|
|
@@ -865,30 +871,31 @@ NumericTextBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
865
871
|
>
|
|
866
872
|
</ng-container>
|
|
867
873
|
<input
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
874
|
+
role="spinbutton"
|
|
875
|
+
class="k-input-inner"
|
|
876
|
+
autocomplete="off"
|
|
877
|
+
autocorrect="off"
|
|
878
|
+
[id]="focusableId"
|
|
879
|
+
[attr.aria-valuemin]="min"
|
|
880
|
+
[attr.aria-valuemax]="max"
|
|
881
|
+
[attr.aria-valuenow]="value"
|
|
882
|
+
[attr.title]="title"
|
|
883
|
+
[attr.placeholder]="placeholder"
|
|
884
|
+
[attr.maxLength]="maxlength"
|
|
885
|
+
[attr.aria-invalid]="isControlInvalid"
|
|
886
|
+
[tabindex]="tabIndex"
|
|
887
|
+
[disabled]="disabled"
|
|
888
|
+
[readonly]="readonly"
|
|
889
|
+
[kendoEventsOutsideAngular]="{
|
|
890
|
+
mousedown: handleMouseDown,
|
|
891
|
+
dragenter: handleDragEnter,
|
|
892
|
+
keydown: handleKeyDown,
|
|
893
|
+
input: handleInput,
|
|
894
|
+
focus: handleFocus,
|
|
895
|
+
blur: handleBlur,
|
|
896
|
+
paste: handlePaste
|
|
897
|
+
}"
|
|
898
|
+
#numericInput />
|
|
892
899
|
<span
|
|
893
900
|
class="k-input-spinner k-spin-button" *ngIf="spinners"
|
|
894
901
|
[kendoEventsOutsideAngular]="{ mouseup: releaseArrow, mouseleave: releaseArrow }"
|
|
@@ -940,30 +947,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
940
947
|
>
|
|
941
948
|
</ng-container>
|
|
942
949
|
<input
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
950
|
+
role="spinbutton"
|
|
951
|
+
class="k-input-inner"
|
|
952
|
+
autocomplete="off"
|
|
953
|
+
autocorrect="off"
|
|
954
|
+
[id]="focusableId"
|
|
955
|
+
[attr.aria-valuemin]="min"
|
|
956
|
+
[attr.aria-valuemax]="max"
|
|
957
|
+
[attr.aria-valuenow]="value"
|
|
958
|
+
[attr.title]="title"
|
|
959
|
+
[attr.placeholder]="placeholder"
|
|
960
|
+
[attr.maxLength]="maxlength"
|
|
961
|
+
[attr.aria-invalid]="isControlInvalid"
|
|
962
|
+
[tabindex]="tabIndex"
|
|
963
|
+
[disabled]="disabled"
|
|
964
|
+
[readonly]="readonly"
|
|
965
|
+
[kendoEventsOutsideAngular]="{
|
|
966
|
+
mousedown: handleMouseDown,
|
|
967
|
+
dragenter: handleDragEnter,
|
|
968
|
+
keydown: handleKeyDown,
|
|
969
|
+
input: handleInput,
|
|
970
|
+
focus: handleFocus,
|
|
971
|
+
blur: handleBlur,
|
|
972
|
+
paste: handlePaste
|
|
973
|
+
}"
|
|
974
|
+
#numericInput />
|
|
967
975
|
<span
|
|
968
976
|
class="k-input-spinner k-spin-button" *ngIf="spinners"
|
|
969
977
|
[kendoEventsOutsideAngular]="{ mouseup: releaseArrow, mouseleave: releaseArrow }"
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-inputs',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
12
|
+
publishDate: 1662973827,
|
|
13
13
|
version: '',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
15
15
|
};
|
|
@@ -447,7 +447,7 @@ export class SignatureComponent {
|
|
|
447
447
|
this.hostClasses.forEach(([name]) => classList.remove(name));
|
|
448
448
|
this.hostClasses = [
|
|
449
449
|
[`k-signature-${SIZE_MAP[this.size || DEFAULT_SIZE]}`, !isNone(this.size)],
|
|
450
|
-
[`k-
|
|
450
|
+
[`k-input-${this.fillMode || DEFAULT_FILL_MODE}`, !isNone(this.fillMode)],
|
|
451
451
|
[`k-rounded-${ROUNDED_MAP[this.rounded || DEFAULT_ROUNDED]}`, !isNone(this.rounded)]
|
|
452
452
|
];
|
|
453
453
|
this.hostClasses.forEach(([name, enabled]) => classList.toggle(name, enabled));
|
|
@@ -576,6 +576,7 @@ SignatureComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
576
576
|
class="k-signature-action k-signature-maximize"
|
|
577
577
|
icon="hyperlink-open"
|
|
578
578
|
fillMode="flat"
|
|
579
|
+
[size]="size"
|
|
579
580
|
(click)="onMaximize()"
|
|
580
581
|
[attr.aria-label]="maximizeTitle"
|
|
581
582
|
[title]="maximizeTitle">
|
|
@@ -586,6 +587,7 @@ SignatureComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
586
587
|
class="k-signature-action k-signature-minimize"
|
|
587
588
|
icon="window-minimize"
|
|
588
589
|
fillMode="flat"
|
|
590
|
+
[size]="size"
|
|
589
591
|
(click)="onMinimize()"
|
|
590
592
|
[attr.aria-label]="minimizeTitle"
|
|
591
593
|
[title]="minimizeTitle">
|
|
@@ -608,6 +610,7 @@ SignatureComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
608
610
|
class="k-signature-action k-signature-clear"
|
|
609
611
|
icon="close"
|
|
610
612
|
fillMode="flat"
|
|
613
|
+
[size]="size"
|
|
611
614
|
[attr.aria-label]="clearTitle"
|
|
612
615
|
[title]="clearTitle"
|
|
613
616
|
(click)="onClear()" >
|
|
@@ -666,6 +669,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
666
669
|
class="k-signature-action k-signature-maximize"
|
|
667
670
|
icon="hyperlink-open"
|
|
668
671
|
fillMode="flat"
|
|
672
|
+
[size]="size"
|
|
669
673
|
(click)="onMaximize()"
|
|
670
674
|
[attr.aria-label]="maximizeTitle"
|
|
671
675
|
[title]="maximizeTitle">
|
|
@@ -676,6 +680,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
676
680
|
class="k-signature-action k-signature-minimize"
|
|
677
681
|
icon="window-minimize"
|
|
678
682
|
fillMode="flat"
|
|
683
|
+
[size]="size"
|
|
679
684
|
(click)="onMinimize()"
|
|
680
685
|
[attr.aria-label]="minimizeTitle"
|
|
681
686
|
[title]="minimizeTitle">
|
|
@@ -698,6 +703,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
698
703
|
class="k-signature-action k-signature-clear"
|
|
699
704
|
icon="close"
|
|
700
705
|
fillMode="flat"
|
|
706
|
+
[size]="size"
|
|
701
707
|
[attr.aria-label]="clearTitle"
|
|
702
708
|
[title]="clearTitle"
|
|
703
709
|
(click)="onClear()" >
|
|
@@ -11,13 +11,13 @@ import { SignatureComponent } from './signature/signature.component';
|
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
/**
|
|
13
13
|
* Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
|
|
14
|
-
* definition for the
|
|
14
|
+
* definition for the Signature component.
|
|
15
15
|
*
|
|
16
16
|
* @example
|
|
17
17
|
*
|
|
18
18
|
* ```ts-no-run
|
|
19
|
-
* // Import the
|
|
20
|
-
* import {
|
|
19
|
+
* // Import the Signature module
|
|
20
|
+
* import { SignatureModule } from '@progress/kendo-angular-inputs';
|
|
21
21
|
*
|
|
22
22
|
* // The browser platform with a compiler
|
|
23
23
|
* import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
|
@@ -30,7 +30,7 @@ import * as i0 from "@angular/core";
|
|
|
30
30
|
* // Define the app module
|
|
31
31
|
* _@NgModule({
|
|
32
32
|
* declarations: [AppComponent], // declare app component
|
|
33
|
-
* imports: [BrowserModule,
|
|
33
|
+
* imports: [BrowserModule, SignatureModule], // import Signature module
|
|
34
34
|
* bootstrap: [AppComponent]
|
|
35
35
|
* })
|
|
36
36
|
* export class AppModule {}
|
|
@@ -277,6 +277,12 @@ export class SwitchComponent {
|
|
|
277
277
|
this.disabled = isDisabled;
|
|
278
278
|
this.changeDetector.markForCheck();
|
|
279
279
|
}
|
|
280
|
+
/**
|
|
281
|
+
* @hidden
|
|
282
|
+
*/
|
|
283
|
+
get isControlInvalid() {
|
|
284
|
+
return this.control && this.control.touched && !this.control.valid;
|
|
285
|
+
}
|
|
280
286
|
/**
|
|
281
287
|
* @hidden
|
|
282
288
|
*/
|
|
@@ -430,6 +436,8 @@ SwitchComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versio
|
|
|
430
436
|
[style.transitionDuration]="initialized ? '200ms' : '0ms'"
|
|
431
437
|
[attr.aria-checked]="checked"
|
|
432
438
|
[attr.tabindex]="(disabled ? undefined : tabIndex)"
|
|
439
|
+
[attr.aria-disabled]="disabled"
|
|
440
|
+
[attr.aria-invalid]="isControlInvalid"
|
|
433
441
|
[kendoEventsOutsideAngular]="{ keydown: keyDownHandler, focus: handleFocus, blur: handleBlur }"
|
|
434
442
|
>
|
|
435
443
|
<span class="k-switch-label-on" [attr.aria-hidden]="true" >{{onLabelMessage}}</span>
|
|
@@ -480,6 +488,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
480
488
|
[style.transitionDuration]="initialized ? '200ms' : '0ms'"
|
|
481
489
|
[attr.aria-checked]="checked"
|
|
482
490
|
[attr.tabindex]="(disabled ? undefined : tabIndex)"
|
|
491
|
+
[attr.aria-disabled]="disabled"
|
|
492
|
+
[attr.aria-invalid]="isControlInvalid"
|
|
483
493
|
[kendoEventsOutsideAngular]="{ keydown: keyDownHandler, focus: handleFocus, blur: handleBlur }"
|
|
484
494
|
>
|
|
485
495
|
<span class="k-switch-label-on" [attr.aria-hidden]="true" >{{onLabelMessage}}</span>
|
|
@@ -366,6 +366,12 @@ export class TextAreaComponent extends TextFieldsBase {
|
|
|
366
366
|
get resizableClass() {
|
|
367
367
|
return resizeClasses[this.resizable];
|
|
368
368
|
}
|
|
369
|
+
/**
|
|
370
|
+
* @hidden
|
|
371
|
+
*/
|
|
372
|
+
get isControlInvalid() {
|
|
373
|
+
return this.control && this.control.touched && !this.control.valid;
|
|
374
|
+
}
|
|
369
375
|
/**
|
|
370
376
|
* Focuses the TextArea component.
|
|
371
377
|
*
|
|
@@ -503,6 +509,7 @@ TextAreaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", vers
|
|
|
503
509
|
[attr.tabindex]="tabIndex"
|
|
504
510
|
[attr.title]="title"
|
|
505
511
|
[attr.maxlength]="maxlength"
|
|
512
|
+
[attr.aria-invalid]="isControlInvalid"
|
|
506
513
|
[kendoEventsOutsideAngular]="{
|
|
507
514
|
focus: handleInputFocus,
|
|
508
515
|
blur: handleInputBlur,
|
|
@@ -543,6 +550,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
543
550
|
[attr.tabindex]="tabIndex"
|
|
544
551
|
[attr.title]="title"
|
|
545
552
|
[attr.maxlength]="maxlength"
|
|
553
|
+
[attr.aria-invalid]="isControlInvalid"
|
|
546
554
|
[kendoEventsOutsideAngular]="{
|
|
547
555
|
focus: handleInputFocus,
|
|
548
556
|
blur: handleInputBlur,
|
|
@@ -473,6 +473,12 @@ export class TextBoxComponent {
|
|
|
473
473
|
const { valid, dirty, touched } = this.control;
|
|
474
474
|
return valid && (dirty || touched);
|
|
475
475
|
}
|
|
476
|
+
/**
|
|
477
|
+
* @hidden
|
|
478
|
+
*/
|
|
479
|
+
get isControlInvalid() {
|
|
480
|
+
return this.control && this.control.touched && !this.control.valid;
|
|
481
|
+
}
|
|
476
482
|
/**
|
|
477
483
|
* @hidden
|
|
478
484
|
*/
|
|
@@ -599,6 +605,7 @@ TextBoxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versi
|
|
|
599
605
|
[attr.placeholder]="placeholder"
|
|
600
606
|
[attr.title]="title"
|
|
601
607
|
[attr.maxlength]="maxlength"
|
|
608
|
+
[attr.aria-invalid]="isControlInvalid"
|
|
602
609
|
[kendoEventsOutsideAngular]="{
|
|
603
610
|
focus: handleInputFocus,
|
|
604
611
|
blur: handleInputBlur,
|
|
@@ -662,6 +669,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
662
669
|
[attr.placeholder]="placeholder"
|
|
663
670
|
[attr.title]="title"
|
|
664
671
|
[attr.maxlength]="maxlength"
|
|
672
|
+
[attr.aria-invalid]="isControlInvalid"
|
|
665
673
|
[kendoEventsOutsideAngular]="{
|
|
666
674
|
focus: handleInputFocus,
|
|
667
675
|
blur: handleInputBlur,
|