@progress/kendo-angular-inputs 9.0.3 → 9.0.4
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/README.md +157 -6
- package/bundles/kendo-angular-inputs.umd.js +1 -1
- package/esm2015/colorpicker/color-gradient.component.js +4 -4
- package/esm2015/colorpicker/color-palette.component.js +6 -6
- package/esm2015/colorpicker/flatcolorpicker-header.component.js +2 -2
- package/esm2015/colorpicker/flatcolorpicker.component.js +4 -2
- package/esm2015/package-metadata.js +1 -1
- package/esm2015/sliders-common/slider-base.js +2 -2
- package/fesm2015/kendo-angular-inputs.js +19 -17
- package/package.json +2 -2
|
@@ -480,10 +480,10 @@ export class ColorGradientComponent {
|
|
|
480
480
|
}
|
|
481
481
|
});
|
|
482
482
|
const dragHandleFocusInListener = this.renderer.listen(this.gradientDragHandle.nativeElement, 'focusin', () => {
|
|
483
|
-
this.renderer.addClass(this.gradientDragHandle.nativeElement, 'k-
|
|
483
|
+
this.renderer.addClass(this.gradientDragHandle.nativeElement, 'k-focus');
|
|
484
484
|
});
|
|
485
485
|
const dragHandleFocusOutListener = this.renderer.listen(this.gradientDragHandle.nativeElement, 'focusout', () => {
|
|
486
|
-
this.renderer.removeClass(this.gradientDragHandle.nativeElement, 'k-
|
|
486
|
+
this.renderer.removeClass(this.gradientDragHandle.nativeElement, 'k-focus');
|
|
487
487
|
});
|
|
488
488
|
this.listeners.push(focusOutListener, keydownListener, keyupListener, dragHandleFocusInListener, dragHandleFocusOutListener);
|
|
489
489
|
});
|
|
@@ -500,7 +500,7 @@ export class ColorGradientComponent {
|
|
|
500
500
|
}
|
|
501
501
|
}
|
|
502
502
|
ColorGradientComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: ColorGradientComponent, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
503
|
-
ColorGradientComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: ColorGradientComponent, selector: "kendo-colorgradient", inputs: { id: "id", opacity: "opacity", disabled: "disabled", readonly: "readonly", clearButton: "clearButton", delay: "delay", value: "value", contrastTool: "contrastTool", tabindex: "tabindex", format: "format" }, outputs: { valueChange: "valueChange" }, host: { properties: { "class.k-colorgradient": "this.hostClasses", "attr.aria-readonly": "this.readonlyAttribute", "class.k-
|
|
503
|
+
ColorGradientComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: ColorGradientComponent, selector: "kendo-colorgradient", inputs: { id: "id", opacity: "opacity", disabled: "disabled", readonly: "readonly", clearButton: "clearButton", delay: "delay", value: "value", contrastTool: "contrastTool", tabindex: "tabindex", format: "format" }, outputs: { valueChange: "valueChange" }, host: { properties: { "class.k-colorgradient": "this.hostClasses", "attr.aria-readonly": "this.readonlyAttribute", "class.k-disabled": "this.disabledClass", "attr.id": "this.gradientId", "attr.dir": "this.direction", "attr.tabindex": "this.hostTabindex" } }, providers: [
|
|
504
504
|
{
|
|
505
505
|
multi: true,
|
|
506
506
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -800,7 +800,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
800
800
|
args: ['attr.aria-readonly']
|
|
801
801
|
}], disabledClass: [{
|
|
802
802
|
type: HostBinding,
|
|
803
|
-
args: ['class.k-
|
|
803
|
+
args: ['class.k-disabled']
|
|
804
804
|
}], gradientId: [{
|
|
805
805
|
type: HostBinding,
|
|
806
806
|
args: ['attr.id']
|
|
@@ -352,7 +352,7 @@ export class ColorPaletteComponent {
|
|
|
352
352
|
}
|
|
353
353
|
}
|
|
354
354
|
ColorPaletteComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: ColorPaletteComponent, deps: [{ token: i0.ElementRef }, { token: i1.ColorPaletteService }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
355
|
-
ColorPaletteComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: ColorPaletteComponent, selector: "kendo-colorpalette", inputs: { id: "id", format: "format", value: "value", columns: "columns", palette: "palette", tabindex: "tabindex", disabled: "disabled", readonly: "readonly", tileSize: "tileSize" }, outputs: { selectionChange: "selectionChange", valueChange: "valueChange", cellSelection: "cellSelection" }, host: { listeners: { "keydown": "handleKeydown($event)", "blur": "handleHostBlur()" }, properties: { "attr.dir": "this.direction", "attr.id": "this.paletteId", "attr.tabindex": "this.hostTabindex", "class.k-colorpalette": "this.hostClasses", "attr.aria-disabled": "this.disabledClass", "class.k-
|
|
355
|
+
ColorPaletteComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: ColorPaletteComponent, selector: "kendo-colorpalette", inputs: { id: "id", format: "format", value: "value", columns: "columns", palette: "palette", tabindex: "tabindex", disabled: "disabled", readonly: "readonly", tileSize: "tileSize" }, outputs: { selectionChange: "selectionChange", valueChange: "valueChange", cellSelection: "cellSelection" }, host: { listeners: { "keydown": "handleKeydown($event)", "blur": "handleHostBlur()" }, properties: { "attr.dir": "this.direction", "attr.id": "this.paletteId", "attr.tabindex": "this.hostTabindex", "class.k-colorpalette": "this.hostClasses", "attr.aria-disabled": "this.disabledClass", "class.k-disabled": "this.disabledClass", "attr.aria-readonly": "this.readonlyAttribute" } }, providers: [
|
|
356
356
|
{
|
|
357
357
|
multi: true,
|
|
358
358
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -383,8 +383,8 @@ ColorPaletteComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
383
383
|
<tr *ngFor="let row of colorRows; let rowIndex = index">
|
|
384
384
|
<td *ngFor="let color of row; let colIndex = index"
|
|
385
385
|
role="option"
|
|
386
|
-
[class.k-
|
|
387
|
-
[class.k-
|
|
386
|
+
[class.k-selected]="selectedCell?.row === rowIndex && selectedCell?.col === colIndex"
|
|
387
|
+
[class.k-focus]="focusInComponent && focusedCell?.row === rowIndex && focusedCell?.col === colIndex"
|
|
388
388
|
[attr.aria-selected]="selectedCell?.row === rowIndex && selectedCell?.col === colIndex"
|
|
389
389
|
[attr.aria-label]="color"
|
|
390
390
|
class="k-colorpalette-tile"
|
|
@@ -440,8 +440,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
440
440
|
<tr *ngFor="let row of colorRows; let rowIndex = index">
|
|
441
441
|
<td *ngFor="let color of row; let colIndex = index"
|
|
442
442
|
role="option"
|
|
443
|
-
[class.k-
|
|
444
|
-
[class.k-
|
|
443
|
+
[class.k-selected]="selectedCell?.row === rowIndex && selectedCell?.col === colIndex"
|
|
444
|
+
[class.k-focus]="focusInComponent && focusedCell?.row === rowIndex && focusedCell?.col === colIndex"
|
|
445
445
|
[attr.aria-selected]="selectedCell?.row === rowIndex && selectedCell?.col === colIndex"
|
|
446
446
|
[attr.aria-label]="color"
|
|
447
447
|
class="k-colorpalette-tile"
|
|
@@ -502,7 +502,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
502
502
|
args: ['attr.aria-disabled']
|
|
503
503
|
}, {
|
|
504
504
|
type: HostBinding,
|
|
505
|
-
args: ['class.k-
|
|
505
|
+
args: ['class.k-disabled']
|
|
506
506
|
}], readonlyAttribute: [{
|
|
507
507
|
type: HostBinding,
|
|
508
508
|
args: ['attr.aria-readonly']
|
|
@@ -43,7 +43,7 @@ FlatColorPickerHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
|
43
43
|
[attr.title]="getText(view === 'gradient' ? 'gradientView' : 'paletteView')"
|
|
44
44
|
[attr.aria-label]="getText(view === 'gradient' ? 'gradientView' : 'paletteView')"
|
|
45
45
|
[attr.aria-pressed]="activeView === view"
|
|
46
|
-
[ngClass]="activeView === view ? 'k-
|
|
46
|
+
[ngClass]="activeView === view ? 'k-selected' : ''"
|
|
47
47
|
>
|
|
48
48
|
<span
|
|
49
49
|
class="k-button-icon k-icon"
|
|
@@ -93,7 +93,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
93
93
|
[attr.title]="getText(view === 'gradient' ? 'gradientView' : 'paletteView')"
|
|
94
94
|
[attr.aria-label]="getText(view === 'gradient' ? 'gradientView' : 'paletteView')"
|
|
95
95
|
[attr.aria-pressed]="activeView === view"
|
|
96
|
-
[ngClass]="activeView === view ? 'k-
|
|
96
|
+
[ngClass]="activeView === view ? 'k-selected' : ''"
|
|
97
97
|
>
|
|
98
98
|
<span
|
|
99
99
|
class="k-button-icon k-icon"
|
|
@@ -374,7 +374,7 @@ export class FlatColorPickerComponent {
|
|
|
374
374
|
}
|
|
375
375
|
}
|
|
376
376
|
FlatColorPickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FlatColorPickerComponent, deps: [{ token: i0.ElementRef }, { token: i1.FlatColorPickerService }, { token: i2.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
377
|
-
FlatColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: FlatColorPickerComponent, selector: "kendo-flatcolorpicker", inputs: { readonly: "readonly", disabled: "disabled", format: "format", value: "value", tabindex: "tabindex", clearButton: "clearButton", preview: "preview", actionsLayout: "actionsLayout", activeView: "activeView", views: "views", gradientSettings: "gradientSettings", paletteSettings: "paletteSettings" }, outputs: { valueChange: "valueChange", cancel: "cancel", activeViewChange: "activeViewChange", actionButtonClick: "actionButtonClick" }, host: { properties: { "class.k-flatcolorpicker": "this.hostClasses", "class.k-coloreditor": "this.hostClasses", "class.k-
|
|
377
|
+
FlatColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: FlatColorPickerComponent, selector: "kendo-flatcolorpicker", inputs: { readonly: "readonly", disabled: "disabled", format: "format", value: "value", tabindex: "tabindex", clearButton: "clearButton", preview: "preview", actionsLayout: "actionsLayout", activeView: "activeView", views: "views", gradientSettings: "gradientSettings", paletteSettings: "paletteSettings" }, outputs: { valueChange: "valueChange", cancel: "cancel", activeViewChange: "activeViewChange", actionButtonClick: "actionButtonClick" }, host: { properties: { "class.k-flatcolorpicker": "this.hostClasses", "class.k-coloreditor": "this.hostClasses", "class.k-disabled": "this.disabledClass", "attr.aria-disabled": "this.disabledClass", "attr.aria-readonly": "this.ariaReadonly", "attr.dir": "this.direction", "attr.tabindex": "this.hostTabindex" } }, providers: [
|
|
378
378
|
{
|
|
379
379
|
multi: true,
|
|
380
380
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -461,6 +461,7 @@ FlatColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0
|
|
|
461
461
|
[tileSize]="paletteSettings.tileSize"
|
|
462
462
|
[format]="format"
|
|
463
463
|
[value]="selection"
|
|
464
|
+
[readonly]="readonly"
|
|
464
465
|
(valueChange)="handleValueChange($event)"
|
|
465
466
|
>
|
|
466
467
|
</kendo-colorpalette>
|
|
@@ -564,6 +565,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
564
565
|
[tileSize]="paletteSettings.tileSize"
|
|
565
566
|
[format]="format"
|
|
566
567
|
[value]="selection"
|
|
568
|
+
[readonly]="readonly"
|
|
567
569
|
(valueChange)="handleValueChange($event)"
|
|
568
570
|
>
|
|
569
571
|
</kendo-colorpalette>
|
|
@@ -583,7 +585,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
583
585
|
args: ['class.k-coloreditor']
|
|
584
586
|
}], disabledClass: [{
|
|
585
587
|
type: HostBinding,
|
|
586
|
-
args: ['class.k-
|
|
588
|
+
args: ['class.k-disabled']
|
|
587
589
|
}, {
|
|
588
590
|
type: HostBinding,
|
|
589
591
|
args: ['attr.aria-disabled']
|
|
@@ -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: 1659455021,
|
|
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
|
};
|
|
@@ -181,7 +181,7 @@ export class SliderBase {
|
|
|
181
181
|
}
|
|
182
182
|
}
|
|
183
183
|
SliderBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SliderBase, deps: [{ token: i1.LocalizationService }, { token: i0.Injector }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
184
|
-
SliderBase.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: SliderBase, selector: "kendo-slider-base", inputs: { title: "title", tickPlacement: "tickPlacement", vertical: "vertical", min: "min", max: "max", smallStep: "smallStep", largeStep: "largeStep", fixedTickWidth: "fixedTickWidth", disabled: "disabled", readonly: "readonly", tabindex: "tabindex" }, outputs: { onFocus: "focus", onBlur: "blur", valueChange: "valueChange" }, host: { properties: { "attr.dir": "this.direction", "class.k-slider-horizontal": "this.horizontalClass", "class.k-slider-vertical": "this.verticalClass", "class.k-slider": "this.sliderClass", "class.k-
|
|
184
|
+
SliderBase.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: SliderBase, selector: "kendo-slider-base", inputs: { title: "title", tickPlacement: "tickPlacement", vertical: "vertical", min: "min", max: "max", smallStep: "smallStep", largeStep: "largeStep", fixedTickWidth: "fixedTickWidth", disabled: "disabled", readonly: "readonly", tabindex: "tabindex" }, outputs: { onFocus: "focus", onBlur: "blur", valueChange: "valueChange" }, host: { properties: { "attr.dir": "this.direction", "class.k-slider-horizontal": "this.horizontalClass", "class.k-slider-vertical": "this.verticalClass", "class.k-slider": "this.sliderClass", "class.k-disabled": "this.disabledClass" } }, queries: [{ propertyName: "labelTemplate", first: true, predicate: LabelTemplateDirective, descendants: true }], viewQueries: [{ propertyName: "wrapper", first: true, predicate: ["wrap"], descendants: true, static: true }, { propertyName: "track", first: true, predicate: ["track"], descendants: true, static: true }, { propertyName: "sliderSelection", first: true, predicate: ["sliderSelection"], descendants: true, static: true }, { propertyName: "ticksContainer", first: true, predicate: ["ticks"], descendants: true, read: ElementRef }, { propertyName: "ticks", first: true, predicate: ["ticks"], descendants: true }], ngImport: i0, template: ``, isInline: true });
|
|
185
185
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SliderBase, decorators: [{
|
|
186
186
|
type: Component,
|
|
187
187
|
args: [{
|
|
@@ -232,7 +232,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
232
232
|
args: ['class.k-slider']
|
|
233
233
|
}], disabledClass: [{
|
|
234
234
|
type: HostBinding,
|
|
235
|
-
args: ['class.k-
|
|
235
|
+
args: ['class.k-disabled']
|
|
236
236
|
}], wrapper: [{
|
|
237
237
|
type: ViewChild,
|
|
238
238
|
args: ['wrap', { static: true }]
|
|
@@ -519,7 +519,7 @@ const packageMetadata = {
|
|
|
519
519
|
name: '@progress/kendo-angular-inputs',
|
|
520
520
|
productName: 'Kendo UI for Angular',
|
|
521
521
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
522
|
-
publishDate:
|
|
522
|
+
publishDate: 1659455021,
|
|
523
523
|
version: '',
|
|
524
524
|
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'
|
|
525
525
|
};
|
|
@@ -733,7 +733,7 @@ class SliderBase {
|
|
|
733
733
|
}
|
|
734
734
|
}
|
|
735
735
|
SliderBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SliderBase, deps: [{ token: i1.LocalizationService }, { token: i0.Injector }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
736
|
-
SliderBase.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: SliderBase, selector: "kendo-slider-base", inputs: { title: "title", tickPlacement: "tickPlacement", vertical: "vertical", min: "min", max: "max", smallStep: "smallStep", largeStep: "largeStep", fixedTickWidth: "fixedTickWidth", disabled: "disabled", readonly: "readonly", tabindex: "tabindex" }, outputs: { onFocus: "focus", onBlur: "blur", valueChange: "valueChange" }, host: { properties: { "attr.dir": "this.direction", "class.k-slider-horizontal": "this.horizontalClass", "class.k-slider-vertical": "this.verticalClass", "class.k-slider": "this.sliderClass", "class.k-
|
|
736
|
+
SliderBase.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: SliderBase, selector: "kendo-slider-base", inputs: { title: "title", tickPlacement: "tickPlacement", vertical: "vertical", min: "min", max: "max", smallStep: "smallStep", largeStep: "largeStep", fixedTickWidth: "fixedTickWidth", disabled: "disabled", readonly: "readonly", tabindex: "tabindex" }, outputs: { onFocus: "focus", onBlur: "blur", valueChange: "valueChange" }, host: { properties: { "attr.dir": "this.direction", "class.k-slider-horizontal": "this.horizontalClass", "class.k-slider-vertical": "this.verticalClass", "class.k-slider": "this.sliderClass", "class.k-disabled": "this.disabledClass" } }, queries: [{ propertyName: "labelTemplate", first: true, predicate: LabelTemplateDirective, descendants: true }], viewQueries: [{ propertyName: "wrapper", first: true, predicate: ["wrap"], descendants: true, static: true }, { propertyName: "track", first: true, predicate: ["track"], descendants: true, static: true }, { propertyName: "sliderSelection", first: true, predicate: ["sliderSelection"], descendants: true, static: true }, { propertyName: "ticksContainer", first: true, predicate: ["ticks"], descendants: true, read: ElementRef }, { propertyName: "ticks", first: true, predicate: ["ticks"], descendants: true }], ngImport: i0, template: ``, isInline: true });
|
|
737
737
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: SliderBase, decorators: [{
|
|
738
738
|
type: Component,
|
|
739
739
|
args: [{
|
|
@@ -784,7 +784,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
784
784
|
args: ['class.k-slider']
|
|
785
785
|
}], disabledClass: [{
|
|
786
786
|
type: HostBinding,
|
|
787
|
-
args: ['class.k-
|
|
787
|
+
args: ['class.k-disabled']
|
|
788
788
|
}], wrapper: [{
|
|
789
789
|
type: ViewChild,
|
|
790
790
|
args: ['wrap', { static: true }]
|
|
@@ -8316,7 +8316,7 @@ FlatColorPickerHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
|
8316
8316
|
[attr.title]="getText(view === 'gradient' ? 'gradientView' : 'paletteView')"
|
|
8317
8317
|
[attr.aria-label]="getText(view === 'gradient' ? 'gradientView' : 'paletteView')"
|
|
8318
8318
|
[attr.aria-pressed]="activeView === view"
|
|
8319
|
-
[ngClass]="activeView === view ? 'k-
|
|
8319
|
+
[ngClass]="activeView === view ? 'k-selected' : ''"
|
|
8320
8320
|
>
|
|
8321
8321
|
<span
|
|
8322
8322
|
class="k-button-icon k-icon"
|
|
@@ -8366,7 +8366,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
8366
8366
|
[attr.title]="getText(view === 'gradient' ? 'gradientView' : 'paletteView')"
|
|
8367
8367
|
[attr.aria-label]="getText(view === 'gradient' ? 'gradientView' : 'paletteView')"
|
|
8368
8368
|
[attr.aria-pressed]="activeView === view"
|
|
8369
|
-
[ngClass]="activeView === view ? 'k-
|
|
8369
|
+
[ngClass]="activeView === view ? 'k-selected' : ''"
|
|
8370
8370
|
>
|
|
8371
8371
|
<span
|
|
8372
8372
|
class="k-button-icon k-icon"
|
|
@@ -9581,10 +9581,10 @@ class ColorGradientComponent {
|
|
|
9581
9581
|
}
|
|
9582
9582
|
});
|
|
9583
9583
|
const dragHandleFocusInListener = this.renderer.listen(this.gradientDragHandle.nativeElement, 'focusin', () => {
|
|
9584
|
-
this.renderer.addClass(this.gradientDragHandle.nativeElement, 'k-
|
|
9584
|
+
this.renderer.addClass(this.gradientDragHandle.nativeElement, 'k-focus');
|
|
9585
9585
|
});
|
|
9586
9586
|
const dragHandleFocusOutListener = this.renderer.listen(this.gradientDragHandle.nativeElement, 'focusout', () => {
|
|
9587
|
-
this.renderer.removeClass(this.gradientDragHandle.nativeElement, 'k-
|
|
9587
|
+
this.renderer.removeClass(this.gradientDragHandle.nativeElement, 'k-focus');
|
|
9588
9588
|
});
|
|
9589
9589
|
this.listeners.push(focusOutListener, keydownListener, keyupListener, dragHandleFocusInListener, dragHandleFocusOutListener);
|
|
9590
9590
|
});
|
|
@@ -9601,7 +9601,7 @@ class ColorGradientComponent {
|
|
|
9601
9601
|
}
|
|
9602
9602
|
}
|
|
9603
9603
|
ColorGradientComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: ColorGradientComponent, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
9604
|
-
ColorGradientComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: ColorGradientComponent, selector: "kendo-colorgradient", inputs: { id: "id", opacity: "opacity", disabled: "disabled", readonly: "readonly", clearButton: "clearButton", delay: "delay", value: "value", contrastTool: "contrastTool", tabindex: "tabindex", format: "format" }, outputs: { valueChange: "valueChange" }, host: { properties: { "class.k-colorgradient": "this.hostClasses", "attr.aria-readonly": "this.readonlyAttribute", "class.k-
|
|
9604
|
+
ColorGradientComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: ColorGradientComponent, selector: "kendo-colorgradient", inputs: { id: "id", opacity: "opacity", disabled: "disabled", readonly: "readonly", clearButton: "clearButton", delay: "delay", value: "value", contrastTool: "contrastTool", tabindex: "tabindex", format: "format" }, outputs: { valueChange: "valueChange" }, host: { properties: { "class.k-colorgradient": "this.hostClasses", "attr.aria-readonly": "this.readonlyAttribute", "class.k-disabled": "this.disabledClass", "attr.id": "this.gradientId", "attr.dir": "this.direction", "attr.tabindex": "this.hostTabindex" } }, providers: [
|
|
9605
9605
|
{
|
|
9606
9606
|
multi: true,
|
|
9607
9607
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -9901,7 +9901,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
9901
9901
|
args: ['attr.aria-readonly']
|
|
9902
9902
|
}], disabledClass: [{
|
|
9903
9903
|
type: HostBinding,
|
|
9904
|
-
args: ['class.k-
|
|
9904
|
+
args: ['class.k-disabled']
|
|
9905
9905
|
}], gradientId: [{
|
|
9906
9906
|
type: HostBinding,
|
|
9907
9907
|
args: ['attr.id']
|
|
@@ -10380,7 +10380,7 @@ class ColorPaletteComponent {
|
|
|
10380
10380
|
}
|
|
10381
10381
|
}
|
|
10382
10382
|
ColorPaletteComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: ColorPaletteComponent, deps: [{ token: i0.ElementRef }, { token: ColorPaletteService }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i1.LocalizationService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
10383
|
-
ColorPaletteComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: ColorPaletteComponent, selector: "kendo-colorpalette", inputs: { id: "id", format: "format", value: "value", columns: "columns", palette: "palette", tabindex: "tabindex", disabled: "disabled", readonly: "readonly", tileSize: "tileSize" }, outputs: { selectionChange: "selectionChange", valueChange: "valueChange", cellSelection: "cellSelection" }, host: { listeners: { "keydown": "handleKeydown($event)", "blur": "handleHostBlur()" }, properties: { "attr.dir": "this.direction", "attr.id": "this.paletteId", "attr.tabindex": "this.hostTabindex", "class.k-colorpalette": "this.hostClasses", "attr.aria-disabled": "this.disabledClass", "class.k-
|
|
10383
|
+
ColorPaletteComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: ColorPaletteComponent, selector: "kendo-colorpalette", inputs: { id: "id", format: "format", value: "value", columns: "columns", palette: "palette", tabindex: "tabindex", disabled: "disabled", readonly: "readonly", tileSize: "tileSize" }, outputs: { selectionChange: "selectionChange", valueChange: "valueChange", cellSelection: "cellSelection" }, host: { listeners: { "keydown": "handleKeydown($event)", "blur": "handleHostBlur()" }, properties: { "attr.dir": "this.direction", "attr.id": "this.paletteId", "attr.tabindex": "this.hostTabindex", "class.k-colorpalette": "this.hostClasses", "attr.aria-disabled": "this.disabledClass", "class.k-disabled": "this.disabledClass", "attr.aria-readonly": "this.readonlyAttribute" } }, providers: [
|
|
10384
10384
|
{
|
|
10385
10385
|
multi: true,
|
|
10386
10386
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -10411,8 +10411,8 @@ ColorPaletteComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0",
|
|
|
10411
10411
|
<tr *ngFor="let row of colorRows; let rowIndex = index">
|
|
10412
10412
|
<td *ngFor="let color of row; let colIndex = index"
|
|
10413
10413
|
role="option"
|
|
10414
|
-
[class.k-
|
|
10415
|
-
[class.k-
|
|
10414
|
+
[class.k-selected]="selectedCell?.row === rowIndex && selectedCell?.col === colIndex"
|
|
10415
|
+
[class.k-focus]="focusInComponent && focusedCell?.row === rowIndex && focusedCell?.col === colIndex"
|
|
10416
10416
|
[attr.aria-selected]="selectedCell?.row === rowIndex && selectedCell?.col === colIndex"
|
|
10417
10417
|
[attr.aria-label]="color"
|
|
10418
10418
|
class="k-colorpalette-tile"
|
|
@@ -10468,8 +10468,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
10468
10468
|
<tr *ngFor="let row of colorRows; let rowIndex = index">
|
|
10469
10469
|
<td *ngFor="let color of row; let colIndex = index"
|
|
10470
10470
|
role="option"
|
|
10471
|
-
[class.k-
|
|
10472
|
-
[class.k-
|
|
10471
|
+
[class.k-selected]="selectedCell?.row === rowIndex && selectedCell?.col === colIndex"
|
|
10472
|
+
[class.k-focus]="focusInComponent && focusedCell?.row === rowIndex && focusedCell?.col === colIndex"
|
|
10473
10473
|
[attr.aria-selected]="selectedCell?.row === rowIndex && selectedCell?.col === colIndex"
|
|
10474
10474
|
[attr.aria-label]="color"
|
|
10475
10475
|
class="k-colorpalette-tile"
|
|
@@ -10530,7 +10530,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
10530
10530
|
args: ['attr.aria-disabled']
|
|
10531
10531
|
}, {
|
|
10532
10532
|
type: HostBinding,
|
|
10533
|
-
args: ['class.k-
|
|
10533
|
+
args: ['class.k-disabled']
|
|
10534
10534
|
}], readonlyAttribute: [{
|
|
10535
10535
|
type: HostBinding,
|
|
10536
10536
|
args: ['attr.aria-readonly']
|
|
@@ -10987,7 +10987,7 @@ class FlatColorPickerComponent {
|
|
|
10987
10987
|
}
|
|
10988
10988
|
}
|
|
10989
10989
|
FlatColorPickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: FlatColorPickerComponent, deps: [{ token: i0.ElementRef }, { token: FlatColorPickerService }, { token: i1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
10990
|
-
FlatColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: FlatColorPickerComponent, selector: "kendo-flatcolorpicker", inputs: { readonly: "readonly", disabled: "disabled", format: "format", value: "value", tabindex: "tabindex", clearButton: "clearButton", preview: "preview", actionsLayout: "actionsLayout", activeView: "activeView", views: "views", gradientSettings: "gradientSettings", paletteSettings: "paletteSettings" }, outputs: { valueChange: "valueChange", cancel: "cancel", activeViewChange: "activeViewChange", actionButtonClick: "actionButtonClick" }, host: { properties: { "class.k-flatcolorpicker": "this.hostClasses", "class.k-coloreditor": "this.hostClasses", "class.k-
|
|
10990
|
+
FlatColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: FlatColorPickerComponent, selector: "kendo-flatcolorpicker", inputs: { readonly: "readonly", disabled: "disabled", format: "format", value: "value", tabindex: "tabindex", clearButton: "clearButton", preview: "preview", actionsLayout: "actionsLayout", activeView: "activeView", views: "views", gradientSettings: "gradientSettings", paletteSettings: "paletteSettings" }, outputs: { valueChange: "valueChange", cancel: "cancel", activeViewChange: "activeViewChange", actionButtonClick: "actionButtonClick" }, host: { properties: { "class.k-flatcolorpicker": "this.hostClasses", "class.k-coloreditor": "this.hostClasses", "class.k-disabled": "this.disabledClass", "attr.aria-disabled": "this.disabledClass", "attr.aria-readonly": "this.ariaReadonly", "attr.dir": "this.direction", "attr.tabindex": "this.hostTabindex" } }, providers: [
|
|
10991
10991
|
{
|
|
10992
10992
|
multi: true,
|
|
10993
10993
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -11074,6 +11074,7 @@ FlatColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0
|
|
|
11074
11074
|
[tileSize]="paletteSettings.tileSize"
|
|
11075
11075
|
[format]="format"
|
|
11076
11076
|
[value]="selection"
|
|
11077
|
+
[readonly]="readonly"
|
|
11077
11078
|
(valueChange)="handleValueChange($event)"
|
|
11078
11079
|
>
|
|
11079
11080
|
</kendo-colorpalette>
|
|
@@ -11177,6 +11178,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
11177
11178
|
[tileSize]="paletteSettings.tileSize"
|
|
11178
11179
|
[format]="format"
|
|
11179
11180
|
[value]="selection"
|
|
11181
|
+
[readonly]="readonly"
|
|
11180
11182
|
(valueChange)="handleValueChange($event)"
|
|
11181
11183
|
>
|
|
11182
11184
|
</kendo-colorpalette>
|
|
@@ -11196,7 +11198,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
11196
11198
|
args: ['class.k-coloreditor']
|
|
11197
11199
|
}], disabledClass: [{
|
|
11198
11200
|
type: HostBinding,
|
|
11199
|
-
args: ['class.k-
|
|
11201
|
+
args: ['class.k-disabled']
|
|
11200
11202
|
}, {
|
|
11201
11203
|
type: HostBinding,
|
|
11202
11204
|
args: ['attr.aria-disabled']
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-inputs",
|
|
3
|
-
"version": "9.0.
|
|
4
|
-
"description": "Inputs Package
|
|
3
|
+
"version": "9.0.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",
|
|
7
7
|
"homepage": "https://www.telerik.com/kendo-angular-ui/components/",
|