@progress/kendo-angular-inputs 14.3.1-develop.1 → 14.4.0-develop.1

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: 1703146122,
13
- version: '14.3.1-develop.1',
12
+ publishDate: 1703163267,
13
+ version: '14.4.0-develop.1',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -38,12 +38,13 @@ const iconsMap = { xIcon, hyperlinkOpenIcon };
38
38
  * The Signature allows users to add a hand-drawn signature to forms.
39
39
  */
40
40
  export class SignatureComponent {
41
- constructor(element, renderer, ngZone, cd, localization) {
41
+ constructor(element, renderer, ngZone, cd, localization, cdr) {
42
42
  this.element = element;
43
43
  this.renderer = renderer;
44
44
  this.ngZone = ngZone;
45
45
  this.cd = cd;
46
46
  this.localization = localization;
47
+ this.cdr = cdr;
47
48
  this.staticHostClasses = true;
48
49
  /**
49
50
  * @hidden
@@ -567,6 +568,13 @@ export class SignatureComponent {
567
568
  registerOnTouched(fn) {
568
569
  this.notifyNgTouched = fn;
569
570
  }
571
+ /**
572
+ * @hidden
573
+ */
574
+ setDisabledState(isDisabled) {
575
+ this.disabled = isDisabled;
576
+ this.cdr.markForCheck();
577
+ }
570
578
  onDraw() {
571
579
  this.isDrawing = true;
572
580
  this.cd.markForCheck();
@@ -602,7 +610,7 @@ export class SignatureComponent {
602
610
  return this.localization.get(key);
603
611
  }
604
612
  }
605
- SignatureComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SignatureComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
613
+ SignatureComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SignatureComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i1.LocalizationService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
606
614
  SignatureComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SignatureComponent, selector: "kendo-signature", inputs: { focusableId: "focusableId", readonly: "readonly", disabled: "disabled", width: "width", height: "height", value: "value", tabindex: "tabindex", size: "size", rounded: "rounded", fillMode: "fillMode", color: "color", backgroundColor: "backgroundColor", strokeWidth: "strokeWidth", smooth: "smooth", maximizable: "maximizable", maximized: "maximized", popupScale: "popupScale", exportScale: "exportScale", parentLocalization: "parentLocalization", hideLine: "hideLine" }, outputs: { valueChange: "valueChange", open: "open", close: "close", onFocus: "focus", onBlur: "blur", minimize: "minimize" }, host: { properties: { "class.k-signature": "this.staticHostClasses", "class.k-input": "this.staticHostClasses", "attr.dir": "this.direction", "class.k-readonly": "this.readonly", "class.k-disabled": "this.disabled", "style.width.px": "this.width", "style.height.px": "this.height" } }, providers: [
607
615
  LocalizationService,
608
616
  { provide: L10N_PREFIX, useValue: 'kendo.signature' },
@@ -819,7 +827,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
819
827
  </kendo-dialog>
820
828
  `
821
829
  }]
822
- }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }, { type: i1.LocalizationService }]; }, propDecorators: { staticHostClasses: [{
830
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }, { type: i1.LocalizationService }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { staticHostClasses: [{
823
831
  type: HostBinding,
824
832
  args: ['class.k-signature']
825
833
  }, {
@@ -537,8 +537,8 @@ const packageMetadata = {
537
537
  name: '@progress/kendo-angular-inputs',
538
538
  productName: 'Kendo UI for Angular',
539
539
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
540
- publishDate: 1703146122,
541
- version: '14.3.1-develop.1',
540
+ publishDate: 1703163267,
541
+ version: '14.4.0-develop.1',
542
542
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
543
543
  };
544
544
 
@@ -14056,12 +14056,13 @@ const iconsMap = { xIcon, hyperlinkOpenIcon };
14056
14056
  * The Signature allows users to add a hand-drawn signature to forms.
14057
14057
  */
14058
14058
  class SignatureComponent {
14059
- constructor(element, renderer, ngZone, cd, localization) {
14059
+ constructor(element, renderer, ngZone, cd, localization, cdr) {
14060
14060
  this.element = element;
14061
14061
  this.renderer = renderer;
14062
14062
  this.ngZone = ngZone;
14063
14063
  this.cd = cd;
14064
14064
  this.localization = localization;
14065
+ this.cdr = cdr;
14065
14066
  this.staticHostClasses = true;
14066
14067
  /**
14067
14068
  * @hidden
@@ -14589,6 +14590,13 @@ class SignatureComponent {
14589
14590
  registerOnTouched(fn) {
14590
14591
  this.notifyNgTouched = fn;
14591
14592
  }
14593
+ /**
14594
+ * @hidden
14595
+ */
14596
+ setDisabledState(isDisabled) {
14597
+ this.disabled = isDisabled;
14598
+ this.cdr.markForCheck();
14599
+ }
14592
14600
  onDraw() {
14593
14601
  this.isDrawing = true;
14594
14602
  this.cd.markForCheck();
@@ -14624,7 +14632,7 @@ class SignatureComponent {
14624
14632
  return this.localization.get(key);
14625
14633
  }
14626
14634
  }
14627
- SignatureComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SignatureComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
14635
+ SignatureComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SignatureComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i1.LocalizationService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
14628
14636
  SignatureComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SignatureComponent, selector: "kendo-signature", inputs: { focusableId: "focusableId", readonly: "readonly", disabled: "disabled", width: "width", height: "height", value: "value", tabindex: "tabindex", size: "size", rounded: "rounded", fillMode: "fillMode", color: "color", backgroundColor: "backgroundColor", strokeWidth: "strokeWidth", smooth: "smooth", maximizable: "maximizable", maximized: "maximized", popupScale: "popupScale", exportScale: "exportScale", parentLocalization: "parentLocalization", hideLine: "hideLine" }, outputs: { valueChange: "valueChange", open: "open", close: "close", onFocus: "focus", onBlur: "blur", minimize: "minimize" }, host: { properties: { "class.k-signature": "this.staticHostClasses", "class.k-input": "this.staticHostClasses", "attr.dir": "this.direction", "class.k-readonly": "this.readonly", "class.k-disabled": "this.disabled", "style.width.px": "this.width", "style.height.px": "this.height" } }, providers: [
14629
14637
  LocalizationService,
14630
14638
  { provide: L10N_PREFIX, useValue: 'kendo.signature' },
@@ -14841,7 +14849,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
14841
14849
  </kendo-dialog>
14842
14850
  `
14843
14851
  }]
14844
- }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }, { type: i1.LocalizationService }]; }, propDecorators: { staticHostClasses: [{
14852
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }, { type: i1.LocalizationService }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { staticHostClasses: [{
14845
14853
  type: HostBinding,
14846
14854
  args: ['class.k-signature']
14847
14855
  }, {
@@ -536,8 +536,8 @@ const packageMetadata = {
536
536
  name: '@progress/kendo-angular-inputs',
537
537
  productName: 'Kendo UI for Angular',
538
538
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
539
- publishDate: 1703146122,
540
- version: '14.3.1-develop.1',
539
+ publishDate: 1703163267,
540
+ version: '14.4.0-develop.1',
541
541
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
542
542
  };
543
543
 
@@ -14025,12 +14025,13 @@ const iconsMap = { xIcon, hyperlinkOpenIcon };
14025
14025
  * The Signature allows users to add a hand-drawn signature to forms.
14026
14026
  */
14027
14027
  class SignatureComponent {
14028
- constructor(element, renderer, ngZone, cd, localization) {
14028
+ constructor(element, renderer, ngZone, cd, localization, cdr) {
14029
14029
  this.element = element;
14030
14030
  this.renderer = renderer;
14031
14031
  this.ngZone = ngZone;
14032
14032
  this.cd = cd;
14033
14033
  this.localization = localization;
14034
+ this.cdr = cdr;
14034
14035
  this.staticHostClasses = true;
14035
14036
  /**
14036
14037
  * @hidden
@@ -14554,6 +14555,13 @@ class SignatureComponent {
14554
14555
  registerOnTouched(fn) {
14555
14556
  this.notifyNgTouched = fn;
14556
14557
  }
14558
+ /**
14559
+ * @hidden
14560
+ */
14561
+ setDisabledState(isDisabled) {
14562
+ this.disabled = isDisabled;
14563
+ this.cdr.markForCheck();
14564
+ }
14557
14565
  onDraw() {
14558
14566
  this.isDrawing = true;
14559
14567
  this.cd.markForCheck();
@@ -14589,7 +14597,7 @@ class SignatureComponent {
14589
14597
  return this.localization.get(key);
14590
14598
  }
14591
14599
  }
14592
- SignatureComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SignatureComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
14600
+ SignatureComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SignatureComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i1.LocalizationService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
14593
14601
  SignatureComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SignatureComponent, selector: "kendo-signature", inputs: { focusableId: "focusableId", readonly: "readonly", disabled: "disabled", width: "width", height: "height", value: "value", tabindex: "tabindex", size: "size", rounded: "rounded", fillMode: "fillMode", color: "color", backgroundColor: "backgroundColor", strokeWidth: "strokeWidth", smooth: "smooth", maximizable: "maximizable", maximized: "maximized", popupScale: "popupScale", exportScale: "exportScale", parentLocalization: "parentLocalization", hideLine: "hideLine" }, outputs: { valueChange: "valueChange", open: "open", close: "close", onFocus: "focus", onBlur: "blur", minimize: "minimize" }, host: { properties: { "class.k-signature": "this.staticHostClasses", "class.k-input": "this.staticHostClasses", "attr.dir": "this.direction", "class.k-readonly": "this.readonly", "class.k-disabled": "this.disabled", "style.width.px": "this.width", "style.height.px": "this.height" } }, providers: [
14594
14602
  LocalizationService,
14595
14603
  { provide: L10N_PREFIX, useValue: 'kendo.signature' },
@@ -14806,7 +14814,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
14806
14814
  </kendo-dialog>
14807
14815
  `
14808
14816
  }]
14809
- }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }, { type: i1.LocalizationService }]; }, propDecorators: { staticHostClasses: [{
14817
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }, { type: i1.LocalizationService }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { staticHostClasses: [{
14810
14818
  type: HostBinding,
14811
14819
  args: ['class.k-signature']
14812
14820
  }, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-inputs",
3
- "version": "14.3.1-develop.1",
3
+ "version": "14.4.0-develop.1",
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",
@@ -34,19 +34,19 @@
34
34
  "@angular/platform-browser": "13 - 17",
35
35
  "@progress/kendo-drawing": "^1.17.2",
36
36
  "@progress/kendo-licensing": "^1.0.2",
37
- "@progress/kendo-angular-buttons": "14.3.1-develop.1",
38
- "@progress/kendo-angular-common": "14.3.1-develop.1",
39
- "@progress/kendo-angular-dialog": "14.3.1-develop.1",
40
- "@progress/kendo-angular-intl": "14.3.1-develop.1",
41
- "@progress/kendo-angular-l10n": "14.3.1-develop.1",
42
- "@progress/kendo-angular-popup": "14.3.1-develop.1",
43
- "@progress/kendo-angular-icons": "14.3.1-develop.1",
37
+ "@progress/kendo-angular-buttons": "14.4.0-develop.1",
38
+ "@progress/kendo-angular-common": "14.4.0-develop.1",
39
+ "@progress/kendo-angular-dialog": "14.4.0-develop.1",
40
+ "@progress/kendo-angular-intl": "14.4.0-develop.1",
41
+ "@progress/kendo-angular-l10n": "14.4.0-develop.1",
42
+ "@progress/kendo-angular-popup": "14.4.0-develop.1",
43
+ "@progress/kendo-angular-icons": "14.4.0-develop.1",
44
44
  "rxjs": "^6.5.3 || ^7.0.0",
45
- "@progress/kendo-angular-upload": "14.3.1-develop.1"
45
+ "@progress/kendo-angular-upload": "14.4.0-develop.1"
46
46
  },
47
47
  "dependencies": {
48
48
  "tslib": "^2.3.1",
49
- "@progress/kendo-angular-schematics": "14.3.1-develop.1",
49
+ "@progress/kendo-angular-schematics": "14.4.0-develop.1",
50
50
  "@progress/kendo-common": "^0.2.2",
51
51
  "@progress/kendo-draggable": "^3.0.0",
52
52
  "@progress/kendo-inputs-common": "^3.1.0"
@@ -20,6 +20,7 @@ export declare class SignatureComponent implements ControlValueAccessor {
20
20
  private ngZone;
21
21
  private cd;
22
22
  localization: LocalizationService;
23
+ private cdr;
23
24
  staticHostClasses: boolean;
24
25
  /**
25
26
  * @hidden
@@ -269,7 +270,7 @@ export declare class SignatureComponent implements ControlValueAccessor {
269
270
  private subscriptions;
270
271
  private unsubscribe;
271
272
  private hostClasses;
272
- constructor(element: ElementRef, renderer: Renderer2, ngZone: NgZone, cd: ChangeDetectorRef, localization: LocalizationService);
273
+ constructor(element: ElementRef, renderer: Renderer2, ngZone: NgZone, cd: ChangeDetectorRef, localization: LocalizationService, cdr: ChangeDetectorRef);
273
274
  ngOnInit(): void;
274
275
  ngAfterViewInit(): void;
275
276
  ngOnChanges(changes: SimpleChanges): void;
@@ -351,6 +352,10 @@ export declare class SignatureComponent implements ControlValueAccessor {
351
352
  * @hidden
352
353
  */
353
354
  registerOnTouched(fn: any): void;
355
+ /**
356
+ * @hidden
357
+ */
358
+ setDisabledState(isDisabled: boolean): void;
354
359
  /**
355
360
  * @hidden
356
361
  */