@progress/kendo-angular-inputs 25.0.0-develop.4 → 25.0.0-develop.6

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.
@@ -583,8 +583,8 @@ const packageMetadata = {
583
583
  productName: 'Kendo UI for Angular',
584
584
  productCode: 'KENDOUIANGULAR',
585
585
  productCodes: ['KENDOUIANGULAR'],
586
- publishDate: 1783940194,
587
- version: '25.0.0-develop.4',
586
+ publishDate: 1784041064,
587
+ version: '25.0.0-develop.6',
588
588
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
589
589
  };
590
590
 
@@ -13011,8 +13011,11 @@ class ColorPickerComponent {
13011
13011
  get disabledClass() {
13012
13012
  return this.disabled;
13013
13013
  }
13014
+ get ariaDisabled() {
13015
+ return this.disabled || null;
13016
+ }
13014
13017
  get ariaReadonly() {
13015
- return this.readonly;
13018
+ return this.readonly || null;
13016
13019
  }
13017
13020
  get ariaExpanded() {
13018
13021
  return this.isOpen;
@@ -13827,7 +13830,7 @@ class ColorPickerComponent {
13827
13830
  }
13828
13831
  }
13829
13832
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: ColorPickerComponent, deps: [{ token: i0.ElementRef }, { token: i1$2.PopupService }, { token: i0.ChangeDetectorRef }, { token: i1.LocalizationService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: i2.AdaptiveService }], target: i0.ɵɵFactoryTarget.Component });
13830
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.25", type: ColorPickerComponent, isStandalone: true, selector: "kendo-colorpicker", inputs: { views: "views", view: "view", adaptiveMode: "adaptiveMode", activeView: "activeView", readonly: "readonly", disabled: "disabled", format: "format", value: "value", popupSettings: "popupSettings", paletteSettings: "paletteSettings", gradientSettings: "gradientSettings", icon: "icon", iconClass: "iconClass", svgIcon: "svgIcon", adaptiveTitle: "adaptiveTitle", adaptiveSubtitle: "adaptiveSubtitle", clearButton: "clearButton", tabindex: "tabindex", preview: "preview", actionsLayout: "actionsLayout", size: "size", rounded: "rounded", fillMode: "fillMode" }, outputs: { valueChange: "valueChange", open: "open", close: "close", onFocus: "focus", onBlur: "blur", cancel: "cancel", activeColorClick: "activeColorClick", clearButtonClick: "clearButtonClick", activeViewChange: "activeViewChange" }, host: { properties: { "class.k-colorpicker": "this.hostClasses", "class.k-icon-picker": "this.hostClasses", "class.k-picker": "this.hostClasses", "class.k-focus": "this.focusedClass", "attr.aria-disabled": "this.disabledClass", "class.k-disabled": "this.disabledClass", "attr.aria-readonly": "this.ariaReadonly", "attr.aria-expanded": "this.ariaExpanded", "attr.tabindex": "this.hostTabindex", "attr.dir": "this.direction", "attr.role": "this.role", "attr.aria-haspopup": "this.hasPopup", "attr.aria-invalid": "this.isControlInvalid", "class.k-readonly": "this.readonly" } }, providers: [{
13833
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.25", type: ColorPickerComponent, isStandalone: true, selector: "kendo-colorpicker", inputs: { views: "views", view: "view", adaptiveMode: "adaptiveMode", activeView: "activeView", readonly: "readonly", disabled: "disabled", format: "format", value: "value", popupSettings: "popupSettings", paletteSettings: "paletteSettings", gradientSettings: "gradientSettings", icon: "icon", iconClass: "iconClass", svgIcon: "svgIcon", adaptiveTitle: "adaptiveTitle", adaptiveSubtitle: "adaptiveSubtitle", clearButton: "clearButton", tabindex: "tabindex", preview: "preview", actionsLayout: "actionsLayout", size: "size", rounded: "rounded", fillMode: "fillMode" }, outputs: { valueChange: "valueChange", open: "open", close: "close", onFocus: "focus", onBlur: "blur", cancel: "cancel", activeColorClick: "activeColorClick", clearButtonClick: "clearButtonClick", activeViewChange: "activeViewChange" }, host: { properties: { "class.k-colorpicker": "this.hostClasses", "class.k-icon-picker": "this.hostClasses", "class.k-picker": "this.hostClasses", "class.k-focus": "this.focusedClass", "class.k-disabled": "this.disabledClass", "attr.aria-disabled": "this.ariaDisabled", "attr.aria-readonly": "this.ariaReadonly", "attr.aria-expanded": "this.ariaExpanded", "attr.tabindex": "this.hostTabindex", "attr.dir": "this.direction", "attr.role": "this.role", "attr.aria-haspopup": "this.hasPopup", "attr.aria-invalid": "this.isControlInvalid", "class.k-readonly": "this.readonly" } }, providers: [{
13831
13834
  multi: true,
13832
13835
  provide: NG_VALUE_ACCESSOR,
13833
13836
  useExisting: forwardRef(() => ColorPickerComponent)
@@ -14144,11 +14147,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
14144
14147
  type: HostBinding,
14145
14148
  args: ['class.k-focus']
14146
14149
  }], disabledClass: [{
14147
- type: HostBinding,
14148
- args: ['attr.aria-disabled']
14149
- }, {
14150
14150
  type: HostBinding,
14151
14151
  args: ['class.k-disabled']
14152
+ }], ariaDisabled: [{
14153
+ type: HostBinding,
14154
+ args: ['attr.aria-disabled']
14152
14155
  }], ariaReadonly: [{
14153
14156
  type: HostBinding,
14154
14157
  args: ['attr.aria-readonly']
package/index.d.ts CHANGED
@@ -4387,7 +4387,8 @@ declare class ColorPickerComponent implements OnInit, AfterViewInit, OnChanges,
4387
4387
  hostClasses: boolean;
4388
4388
  get focusedClass(): boolean;
4389
4389
  get disabledClass(): boolean;
4390
- get ariaReadonly(): boolean;
4390
+ get ariaDisabled(): boolean | null;
4391
+ get ariaReadonly(): boolean | null;
4391
4392
  get ariaExpanded(): boolean;
4392
4393
  get hostTabindex(): number;
4393
4394
  direction: string;
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1783940194,
11
- "version": "25.0.0-develop.4",
10
+ "publishDate": 1784041064,
11
+ "version": "25.0.0-develop.6",
12
12
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
13
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-inputs",
3
- "version": "25.0.0-develop.4",
3
+ "version": "25.0.0-develop.6",
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",
@@ -55,7 +55,7 @@
55
55
  "package": {
56
56
  "productName": "Kendo UI for Angular",
57
57
  "productCode": "KENDOUIANGULAR",
58
- "publishDate": 1783940194,
58
+ "publishDate": 1784041064,
59
59
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
60
60
  }
61
61
  },
@@ -67,20 +67,20 @@
67
67
  "@angular/platform-browser": "20 - 22",
68
68
  "@progress/kendo-drawing": "^1.25.0",
69
69
  "@progress/kendo-licensing": "^1.11.0",
70
- "@progress/kendo-angular-buttons": "25.0.0-develop.4",
71
- "@progress/kendo-angular-common": "25.0.0-develop.4",
72
- "@progress/kendo-angular-utils": "25.0.0-develop.4",
73
- "@progress/kendo-angular-navigation": "25.0.0-develop.4",
74
- "@progress/kendo-angular-dialog": "25.0.0-develop.4",
75
- "@progress/kendo-angular-intl": "25.0.0-develop.4",
76
- "@progress/kendo-angular-l10n": "25.0.0-develop.4",
77
- "@progress/kendo-angular-popup": "25.0.0-develop.4",
78
- "@progress/kendo-angular-icons": "25.0.0-develop.4",
70
+ "@progress/kendo-angular-buttons": "25.0.0-develop.6",
71
+ "@progress/kendo-angular-common": "25.0.0-develop.6",
72
+ "@progress/kendo-angular-utils": "25.0.0-develop.6",
73
+ "@progress/kendo-angular-navigation": "25.0.0-develop.6",
74
+ "@progress/kendo-angular-dialog": "25.0.0-develop.6",
75
+ "@progress/kendo-angular-intl": "25.0.0-develop.6",
76
+ "@progress/kendo-angular-l10n": "25.0.0-develop.6",
77
+ "@progress/kendo-angular-popup": "25.0.0-develop.6",
78
+ "@progress/kendo-angular-icons": "25.0.0-develop.6",
79
79
  "rxjs": "^6.5.3 || ^7.0.0"
80
80
  },
81
81
  "dependencies": {
82
82
  "tslib": "^2.3.1",
83
- "@progress/kendo-angular-schematics": "25.0.0-develop.4",
83
+ "@progress/kendo-angular-schematics": "25.0.0-develop.6",
84
84
  "@progress/kendo-common": "^1.0.1",
85
85
  "@progress/kendo-draggable": "^3.0.0",
86
86
  "@progress/kendo-inputs-common": "^3.1.0"