@progress/kendo-angular-inputs 9.1.0-sig.202208261640 → 10.0.0-dev.202208291357
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.
|
@@ -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: 1661781385,
|
|
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 {}
|
|
@@ -535,7 +535,7 @@ const packageMetadata = {
|
|
|
535
535
|
name: '@progress/kendo-angular-inputs',
|
|
536
536
|
productName: 'Kendo UI for Angular',
|
|
537
537
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
538
|
-
publishDate:
|
|
538
|
+
publishDate: 1661781385,
|
|
539
539
|
version: '',
|
|
540
540
|
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'
|
|
541
541
|
};
|
|
@@ -13518,7 +13518,7 @@ class SignatureComponent {
|
|
|
13518
13518
|
this.hostClasses.forEach(([name]) => classList.remove(name));
|
|
13519
13519
|
this.hostClasses = [
|
|
13520
13520
|
[`k-signature-${SIZE_MAP[this.size || DEFAULT_SIZE]}`, !isNone(this.size)],
|
|
13521
|
-
[`k-
|
|
13521
|
+
[`k-input-${this.fillMode || DEFAULT_FILL_MODE}`, !isNone(this.fillMode)],
|
|
13522
13522
|
[`k-rounded-${ROUNDED_MAP[this.rounded || DEFAULT_ROUNDED]}`, !isNone(this.rounded)]
|
|
13523
13523
|
];
|
|
13524
13524
|
this.hostClasses.forEach(([name, enabled]) => classList.toggle(name, enabled));
|
|
@@ -13647,6 +13647,7 @@ SignatureComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
13647
13647
|
class="k-signature-action k-signature-maximize"
|
|
13648
13648
|
icon="hyperlink-open"
|
|
13649
13649
|
fillMode="flat"
|
|
13650
|
+
[size]="size"
|
|
13650
13651
|
(click)="onMaximize()"
|
|
13651
13652
|
[attr.aria-label]="maximizeTitle"
|
|
13652
13653
|
[title]="maximizeTitle">
|
|
@@ -13657,6 +13658,7 @@ SignatureComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
13657
13658
|
class="k-signature-action k-signature-minimize"
|
|
13658
13659
|
icon="window-minimize"
|
|
13659
13660
|
fillMode="flat"
|
|
13661
|
+
[size]="size"
|
|
13660
13662
|
(click)="onMinimize()"
|
|
13661
13663
|
[attr.aria-label]="minimizeTitle"
|
|
13662
13664
|
[title]="minimizeTitle">
|
|
@@ -13679,6 +13681,7 @@ SignatureComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ver
|
|
|
13679
13681
|
class="k-signature-action k-signature-clear"
|
|
13680
13682
|
icon="close"
|
|
13681
13683
|
fillMode="flat"
|
|
13684
|
+
[size]="size"
|
|
13682
13685
|
[attr.aria-label]="clearTitle"
|
|
13683
13686
|
[title]="clearTitle"
|
|
13684
13687
|
(click)="onClear()" >
|
|
@@ -13737,6 +13740,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
13737
13740
|
class="k-signature-action k-signature-maximize"
|
|
13738
13741
|
icon="hyperlink-open"
|
|
13739
13742
|
fillMode="flat"
|
|
13743
|
+
[size]="size"
|
|
13740
13744
|
(click)="onMaximize()"
|
|
13741
13745
|
[attr.aria-label]="maximizeTitle"
|
|
13742
13746
|
[title]="maximizeTitle">
|
|
@@ -13747,6 +13751,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
13747
13751
|
class="k-signature-action k-signature-minimize"
|
|
13748
13752
|
icon="window-minimize"
|
|
13749
13753
|
fillMode="flat"
|
|
13754
|
+
[size]="size"
|
|
13750
13755
|
(click)="onMinimize()"
|
|
13751
13756
|
[attr.aria-label]="minimizeTitle"
|
|
13752
13757
|
[title]="minimizeTitle">
|
|
@@ -13769,6 +13774,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
13769
13774
|
class="k-signature-action k-signature-clear"
|
|
13770
13775
|
icon="close"
|
|
13771
13776
|
fillMode="flat"
|
|
13777
|
+
[size]="size"
|
|
13772
13778
|
[attr.aria-label]="clearTitle"
|
|
13773
13779
|
[title]="clearTitle"
|
|
13774
13780
|
(click)="onClear()" >
|
|
@@ -13880,13 +13886,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
13880
13886
|
|
|
13881
13887
|
/**
|
|
13882
13888
|
* Represents the [NgModule]({{ site.data.urls.angular['ngmoduleapi'] }})
|
|
13883
|
-
* definition for the
|
|
13889
|
+
* definition for the Signature component.
|
|
13884
13890
|
*
|
|
13885
13891
|
* @example
|
|
13886
13892
|
*
|
|
13887
13893
|
* ```ts-no-run
|
|
13888
|
-
* // Import the
|
|
13889
|
-
* import {
|
|
13894
|
+
* // Import the Signature module
|
|
13895
|
+
* import { SignatureModule } from '@progress/kendo-angular-inputs';
|
|
13890
13896
|
*
|
|
13891
13897
|
* // The browser platform with a compiler
|
|
13892
13898
|
* import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
|
@@ -13899,7 +13905,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
13899
13905
|
* // Define the app module
|
|
13900
13906
|
* _@NgModule({
|
|
13901
13907
|
* declarations: [AppComponent], // declare app component
|
|
13902
|
-
* imports: [BrowserModule,
|
|
13908
|
+
* imports: [BrowserModule, SignatureModule], // import Signature module
|
|
13903
13909
|
* bootstrap: [AppComponent]
|
|
13904
13910
|
* })
|
|
13905
13911
|
* export class AppModule {}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-inputs",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "10.0.0-dev.202208291357",
|
|
4
4
|
"description": "Kendo UI for Angular Inputs Package - Everything you need to build professional form functionality (Checkbox, ColorGradient, ColorPalette, ColorPicker, FlatColorPicker, FormField, MaskedTextBox, NumericTextBox, RadioButton, RangeSlider, Slider, Switch, TextArea, and TextBox Components)",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@progress/kendo-common": "^0.2.2",
|
|
35
35
|
"@progress/kendo-draggable": "^3.0.0",
|
|
36
|
-
"@progress/kendo-inputs-common": "
|
|
36
|
+
"@progress/kendo-inputs-common": "^3.1.0",
|
|
37
37
|
"@progress/kendo-schematics": "^3.0.0",
|
|
38
38
|
"tslib": "^2.3.1"
|
|
39
39
|
},
|
package/signature.module.d.ts
CHANGED
|
@@ -11,13 +11,13 @@ import * as i5 from "@angular/common";
|
|
|
11
11
|
import * as i6 from "@progress/kendo-angular-dialog";
|
|
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 i6 from "@progress/kendo-angular-dialog";
|
|
|
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 {}
|