@progress/kendo-angular-inputs 20.1.0-develop.1 → 20.1.0-develop.11
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/colorpicker/color-gradient.component.d.ts +10 -2
- package/esm2022/colorpicker/color-gradient.component.mjs +20 -4
- package/esm2022/colorpicker/flatcolorpicker.component.mjs +3 -1
- package/esm2022/package-metadata.mjs +2 -2
- package/fesm2022/progress-kendo-angular-inputs.mjs +25 -7
- package/package.json +12 -12
|
@@ -38,7 +38,7 @@ export declare class ColorGradientComponent implements OnInit, OnChanges, OnDest
|
|
|
38
38
|
get gradientId(): string;
|
|
39
39
|
direction: string;
|
|
40
40
|
get hostTabindex(): string;
|
|
41
|
-
ariaRole: string;
|
|
41
|
+
get ariaRole(): string;
|
|
42
42
|
get isControlInvalid(): string;
|
|
43
43
|
get isDisabled(): string | undefined;
|
|
44
44
|
/**
|
|
@@ -157,6 +157,14 @@ export declare class ColorGradientComponent implements OnInit, OnChanges, OnDest
|
|
|
157
157
|
* @default 2
|
|
158
158
|
*/
|
|
159
159
|
gradientSliderSmallStep: number;
|
|
160
|
+
/**
|
|
161
|
+
* Controls whether ARIA attributes should be applied to the component.
|
|
162
|
+
* When used within FlatColorPicker, this should be set to false to comply with accessibility guidelines.
|
|
163
|
+
*
|
|
164
|
+
* @default true
|
|
165
|
+
* @hidden
|
|
166
|
+
*/
|
|
167
|
+
ariaAttributesEnabled: boolean;
|
|
160
168
|
gradientDragHandle: ElementRef;
|
|
161
169
|
inputs: ColorInputComponent;
|
|
162
170
|
private alphaSlider;
|
|
@@ -295,5 +303,5 @@ export declare class ColorGradientComponent implements OnInit, OnChanges, OnDest
|
|
|
295
303
|
private unsubscribeChanges;
|
|
296
304
|
private handleClasses;
|
|
297
305
|
static ɵfac: i0.ɵɵFactoryDeclaration<ColorGradientComponent, never>;
|
|
298
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ColorGradientComponent, "kendo-colorgradient", ["kendoColorGradient"], { "adaptiveMode": { "alias": "adaptiveMode"; "required": false; }; "id": { "alias": "id"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "size": { "alias": "size"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "delay": { "alias": "delay"; "required": false; }; "value": { "alias": "value"; "required": false; }; "contrastTool": { "alias": "contrastTool"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "format": { "alias": "format"; "required": false; }; "gradientSliderStep": { "alias": "gradientSliderStep"; "required": false; }; "gradientSliderSmallStep": { "alias": "gradientSliderSmallStep"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
306
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ColorGradientComponent, "kendo-colorgradient", ["kendoColorGradient"], { "adaptiveMode": { "alias": "adaptiveMode"; "required": false; }; "id": { "alias": "id"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "size": { "alias": "size"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "delay": { "alias": "delay"; "required": false; }; "value": { "alias": "value"; "required": false; }; "contrastTool": { "alias": "contrastTool"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "format": { "alias": "format"; "required": false; }; "gradientSliderStep": { "alias": "gradientSliderStep"; "required": false; }; "gradientSliderSmallStep": { "alias": "gradientSliderSmallStep"; "required": false; }; "ariaAttributesEnabled": { "alias": "ariaAttributesEnabled"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
299
307
|
}
|
|
@@ -50,7 +50,7 @@ export class ColorGradientComponent {
|
|
|
50
50
|
injector;
|
|
51
51
|
hostClasses = true;
|
|
52
52
|
get readonlyAttribute() {
|
|
53
|
-
return this.readonly;
|
|
53
|
+
return this.ariaAttributesEnabled ? this.readonly : undefined;
|
|
54
54
|
}
|
|
55
55
|
get disabledClass() {
|
|
56
56
|
return this.disabled;
|
|
@@ -62,9 +62,11 @@ export class ColorGradientComponent {
|
|
|
62
62
|
get hostTabindex() {
|
|
63
63
|
return this.tabindex?.toString() || '0';
|
|
64
64
|
}
|
|
65
|
-
ariaRole
|
|
65
|
+
get ariaRole() {
|
|
66
|
+
return this.ariaAttributesEnabled ? 'textbox' : undefined;
|
|
67
|
+
}
|
|
66
68
|
get isControlInvalid() {
|
|
67
|
-
return (this.control?.invalid)?.toString();
|
|
69
|
+
return this.ariaAttributesEnabled ? (this.control?.invalid)?.toString() : undefined;
|
|
68
70
|
}
|
|
69
71
|
get isDisabled() {
|
|
70
72
|
return this.disabled?.toString() || undefined;
|
|
@@ -235,6 +237,14 @@ export class ColorGradientComponent {
|
|
|
235
237
|
* @default 2
|
|
236
238
|
*/
|
|
237
239
|
gradientSliderSmallStep = DRAGHANDLE_MOVE_SPEED_SMALL_STEP;
|
|
240
|
+
/**
|
|
241
|
+
* Controls whether ARIA attributes should be applied to the component.
|
|
242
|
+
* When used within FlatColorPicker, this should be set to false to comply with accessibility guidelines.
|
|
243
|
+
*
|
|
244
|
+
* @default true
|
|
245
|
+
* @hidden
|
|
246
|
+
*/
|
|
247
|
+
ariaAttributesEnabled = true;
|
|
238
248
|
gradientDragHandle;
|
|
239
249
|
inputs;
|
|
240
250
|
alphaSlider;
|
|
@@ -557,6 +567,10 @@ export class ColorGradientComponent {
|
|
|
557
567
|
this.renderer.setStyle(sliderTrack, 'background', `linear-gradient(to ${this.adaptiveMode ? 'right' : 'top'}, transparent, ${backgroundColor})`);
|
|
558
568
|
}
|
|
559
569
|
setHostElementAriaLabel() {
|
|
570
|
+
if (!this.ariaAttributesEnabled) {
|
|
571
|
+
this.renderer.removeAttribute(this.host.nativeElement, 'aria-label');
|
|
572
|
+
return;
|
|
573
|
+
}
|
|
560
574
|
const parsed = parseColor(this.value, this.format, this.opacity);
|
|
561
575
|
this.renderer.setAttribute(this.host.nativeElement, 'aria-label', `${this.value ? parsed : this.localizationService.get('colorGradientNoColor')}`);
|
|
562
576
|
}
|
|
@@ -628,7 +642,7 @@ export class ColorGradientComponent {
|
|
|
628
642
|
}
|
|
629
643
|
}
|
|
630
644
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ColorGradientComponent, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }, { token: i1.LocalizationService }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
631
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ColorGradientComponent, isStandalone: true, selector: "kendo-colorgradient", inputs: { adaptiveMode: "adaptiveMode", id: "id", opacity: "opacity", size: "size", disabled: "disabled", readonly: "readonly", clearButton: "clearButton", delay: "delay", value: "value", contrastTool: "contrastTool", tabindex: "tabindex", format: "format", gradientSliderStep: "gradientSliderStep", gradientSliderSmallStep: "gradientSliderSmallStep" }, outputs: { valueChange: "valueChange" }, host: { listeners: { "keydown.enter": "enterHandler($event)", "keydown.escape": "escapeHandler($event)", "focusin": "focusHandler($event)" }, 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", "attr.role": "this.ariaRole", "attr.aria-invalid": "this.isControlInvalid", "attr.aria-disabled": "this.isDisabled", "class.k-readonly": "this.readonly" } }, providers: [
|
|
645
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ColorGradientComponent, isStandalone: true, selector: "kendo-colorgradient", inputs: { adaptiveMode: "adaptiveMode", id: "id", opacity: "opacity", size: "size", disabled: "disabled", readonly: "readonly", clearButton: "clearButton", delay: "delay", value: "value", contrastTool: "contrastTool", tabindex: "tabindex", format: "format", gradientSliderStep: "gradientSliderStep", gradientSliderSmallStep: "gradientSliderSmallStep", ariaAttributesEnabled: "ariaAttributesEnabled" }, outputs: { valueChange: "valueChange" }, host: { listeners: { "keydown.enter": "enterHandler($event)", "keydown.escape": "escapeHandler($event)", "focusin": "focusHandler($event)" }, 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", "attr.role": "this.ariaRole", "attr.aria-invalid": "this.isControlInvalid", "attr.aria-disabled": "this.isDisabled", "class.k-readonly": "this.readonly" } }, providers: [
|
|
632
646
|
{
|
|
633
647
|
multi: true,
|
|
634
648
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -1067,6 +1081,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1067
1081
|
type: Input
|
|
1068
1082
|
}], gradientSliderSmallStep: [{
|
|
1069
1083
|
type: Input
|
|
1084
|
+
}], ariaAttributesEnabled: [{
|
|
1085
|
+
type: Input
|
|
1070
1086
|
}], gradientDragHandle: [{
|
|
1071
1087
|
type: ViewChild,
|
|
1072
1088
|
args: ['gradientDragHandle']
|
|
@@ -649,6 +649,7 @@ export class FlatColorPickerComponent {
|
|
|
649
649
|
[gradientSliderSmallStep]="gradientSettings.gradientSliderSmallStep"
|
|
650
650
|
[gradientSliderStep]="gradientSettings.gradientSliderStep"
|
|
651
651
|
[readonly]="readonly"
|
|
652
|
+
[ariaAttributesEnabled]="false"
|
|
652
653
|
(keydown.tab)="focusFirstHeaderButton()"
|
|
653
654
|
(valueChange)="handleValueChange($event)"
|
|
654
655
|
></kendo-colorgradient>
|
|
@@ -674,7 +675,7 @@ export class FlatColorPickerComponent {
|
|
|
674
675
|
(actionButtonClick)="onAction($event)"
|
|
675
676
|
(tabOut)="firstFocusable.focus()">
|
|
676
677
|
</div>
|
|
677
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedColorPickerMessagesDirective, selector: "[kendoColorPickerLocalizedMessages], [kendoFlatColorPickerLocalizedMessages], [kendoColorGradientLocalizedMessages], [kendoColorPaletteLocalizedMessages]" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: FlatColorPickerHeaderComponent, selector: "[kendoFlatColorPickerHeader]", inputs: ["clearButton", "activeView", "views", "preview", "innerTabIndex", "value", "selection", "size"], outputs: ["viewChange", "valuePaneClick", "clearButtonClick", "tabOut"] }, { kind: "component", type: ColorGradientComponent, selector: "kendo-colorgradient", inputs: ["adaptiveMode", "id", "opacity", "size", "disabled", "readonly", "clearButton", "delay", "value", "contrastTool", "tabindex", "format", "gradientSliderStep", "gradientSliderSmallStep"], outputs: ["valueChange"], exportAs: ["kendoColorGradient"] }, { kind: "component", type: ColorPaletteComponent, selector: "kendo-colorpalette", inputs: ["id", "format", "value", "columns", "palette", "size", "tabindex", "disabled", "readonly", "tileSize"], outputs: ["selectionChange", "valueChange", "cellSelection"], exportAs: ["kendoColorPalette"] }, { kind: "component", type: FlatColorPickerActionButtonsComponent, selector: "[kendoFlatColorPickerActionButtons]", inputs: ["innerTabIndex", "size"], outputs: ["actionButtonClick", "tabOut"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
678
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedColorPickerMessagesDirective, selector: "[kendoColorPickerLocalizedMessages], [kendoFlatColorPickerLocalizedMessages], [kendoColorGradientLocalizedMessages], [kendoColorPaletteLocalizedMessages]" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: FlatColorPickerHeaderComponent, selector: "[kendoFlatColorPickerHeader]", inputs: ["clearButton", "activeView", "views", "preview", "innerTabIndex", "value", "selection", "size"], outputs: ["viewChange", "valuePaneClick", "clearButtonClick", "tabOut"] }, { kind: "component", type: ColorGradientComponent, selector: "kendo-colorgradient", inputs: ["adaptiveMode", "id", "opacity", "size", "disabled", "readonly", "clearButton", "delay", "value", "contrastTool", "tabindex", "format", "gradientSliderStep", "gradientSliderSmallStep", "ariaAttributesEnabled"], outputs: ["valueChange"], exportAs: ["kendoColorGradient"] }, { kind: "component", type: ColorPaletteComponent, selector: "kendo-colorpalette", inputs: ["id", "format", "value", "columns", "palette", "size", "tabindex", "disabled", "readonly", "tileSize"], outputs: ["selectionChange", "valueChange", "cellSelection"], exportAs: ["kendoColorPalette"] }, { kind: "component", type: FlatColorPickerActionButtonsComponent, selector: "[kendoFlatColorPickerActionButtons]", inputs: ["innerTabIndex", "size"], outputs: ["actionButtonClick", "tabOut"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
678
679
|
}
|
|
679
680
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FlatColorPickerComponent, decorators: [{
|
|
680
681
|
type: Component,
|
|
@@ -780,6 +781,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
780
781
|
[gradientSliderSmallStep]="gradientSettings.gradientSliderSmallStep"
|
|
781
782
|
[gradientSliderStep]="gradientSettings.gradientSliderStep"
|
|
782
783
|
[readonly]="readonly"
|
|
784
|
+
[ariaAttributesEnabled]="false"
|
|
783
785
|
(keydown.tab)="focusFirstHeaderButton()"
|
|
784
786
|
(valueChange)="handleValueChange($event)"
|
|
785
787
|
></kendo-colorgradient>
|
|
@@ -10,7 +10,7 @@ export const packageMetadata = {
|
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCode: 'KENDOUIANGULAR',
|
|
12
12
|
productCodes: ['KENDOUIANGULAR'],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: '20.1.0-develop.
|
|
13
|
+
publishDate: 1759739143,
|
|
14
|
+
version: '20.1.0-develop.11',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -550,8 +550,8 @@ const packageMetadata = {
|
|
|
550
550
|
productName: 'Kendo UI for Angular',
|
|
551
551
|
productCode: 'KENDOUIANGULAR',
|
|
552
552
|
productCodes: ['KENDOUIANGULAR'],
|
|
553
|
-
publishDate:
|
|
554
|
-
version: '20.1.0-develop.
|
|
553
|
+
publishDate: 1759739143,
|
|
554
|
+
version: '20.1.0-develop.11',
|
|
555
555
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
556
556
|
};
|
|
557
557
|
|
|
@@ -9408,7 +9408,7 @@ class ColorGradientComponent {
|
|
|
9408
9408
|
injector;
|
|
9409
9409
|
hostClasses = true;
|
|
9410
9410
|
get readonlyAttribute() {
|
|
9411
|
-
return this.readonly;
|
|
9411
|
+
return this.ariaAttributesEnabled ? this.readonly : undefined;
|
|
9412
9412
|
}
|
|
9413
9413
|
get disabledClass() {
|
|
9414
9414
|
return this.disabled;
|
|
@@ -9420,9 +9420,11 @@ class ColorGradientComponent {
|
|
|
9420
9420
|
get hostTabindex() {
|
|
9421
9421
|
return this.tabindex?.toString() || '0';
|
|
9422
9422
|
}
|
|
9423
|
-
ariaRole
|
|
9423
|
+
get ariaRole() {
|
|
9424
|
+
return this.ariaAttributesEnabled ? 'textbox' : undefined;
|
|
9425
|
+
}
|
|
9424
9426
|
get isControlInvalid() {
|
|
9425
|
-
return (this.control?.invalid)?.toString();
|
|
9427
|
+
return this.ariaAttributesEnabled ? (this.control?.invalid)?.toString() : undefined;
|
|
9426
9428
|
}
|
|
9427
9429
|
get isDisabled() {
|
|
9428
9430
|
return this.disabled?.toString() || undefined;
|
|
@@ -9593,6 +9595,14 @@ class ColorGradientComponent {
|
|
|
9593
9595
|
* @default 2
|
|
9594
9596
|
*/
|
|
9595
9597
|
gradientSliderSmallStep = DRAGHANDLE_MOVE_SPEED_SMALL_STEP;
|
|
9598
|
+
/**
|
|
9599
|
+
* Controls whether ARIA attributes should be applied to the component.
|
|
9600
|
+
* When used within FlatColorPicker, this should be set to false to comply with accessibility guidelines.
|
|
9601
|
+
*
|
|
9602
|
+
* @default true
|
|
9603
|
+
* @hidden
|
|
9604
|
+
*/
|
|
9605
|
+
ariaAttributesEnabled = true;
|
|
9596
9606
|
gradientDragHandle;
|
|
9597
9607
|
inputs;
|
|
9598
9608
|
alphaSlider;
|
|
@@ -9915,6 +9925,10 @@ class ColorGradientComponent {
|
|
|
9915
9925
|
this.renderer.setStyle(sliderTrack, 'background', `linear-gradient(to ${this.adaptiveMode ? 'right' : 'top'}, transparent, ${backgroundColor})`);
|
|
9916
9926
|
}
|
|
9917
9927
|
setHostElementAriaLabel() {
|
|
9928
|
+
if (!this.ariaAttributesEnabled) {
|
|
9929
|
+
this.renderer.removeAttribute(this.host.nativeElement, 'aria-label');
|
|
9930
|
+
return;
|
|
9931
|
+
}
|
|
9918
9932
|
const parsed = parseColor(this.value, this.format, this.opacity);
|
|
9919
9933
|
this.renderer.setAttribute(this.host.nativeElement, 'aria-label', `${this.value ? parsed : this.localizationService.get('colorGradientNoColor')}`);
|
|
9920
9934
|
}
|
|
@@ -9986,7 +10000,7 @@ class ColorGradientComponent {
|
|
|
9986
10000
|
}
|
|
9987
10001
|
}
|
|
9988
10002
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ColorGradientComponent, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }, { token: i1.LocalizationService }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
9989
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ColorGradientComponent, isStandalone: true, selector: "kendo-colorgradient", inputs: { adaptiveMode: "adaptiveMode", id: "id", opacity: "opacity", size: "size", disabled: "disabled", readonly: "readonly", clearButton: "clearButton", delay: "delay", value: "value", contrastTool: "contrastTool", tabindex: "tabindex", format: "format", gradientSliderStep: "gradientSliderStep", gradientSliderSmallStep: "gradientSliderSmallStep" }, outputs: { valueChange: "valueChange" }, host: { listeners: { "keydown.enter": "enterHandler($event)", "keydown.escape": "escapeHandler($event)", "focusin": "focusHandler($event)" }, 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", "attr.role": "this.ariaRole", "attr.aria-invalid": "this.isControlInvalid", "attr.aria-disabled": "this.isDisabled", "class.k-readonly": "this.readonly" } }, providers: [
|
|
10003
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ColorGradientComponent, isStandalone: true, selector: "kendo-colorgradient", inputs: { adaptiveMode: "adaptiveMode", id: "id", opacity: "opacity", size: "size", disabled: "disabled", readonly: "readonly", clearButton: "clearButton", delay: "delay", value: "value", contrastTool: "contrastTool", tabindex: "tabindex", format: "format", gradientSliderStep: "gradientSliderStep", gradientSliderSmallStep: "gradientSliderSmallStep", ariaAttributesEnabled: "ariaAttributesEnabled" }, outputs: { valueChange: "valueChange" }, host: { listeners: { "keydown.enter": "enterHandler($event)", "keydown.escape": "escapeHandler($event)", "focusin": "focusHandler($event)" }, 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", "attr.role": "this.ariaRole", "attr.aria-invalid": "this.isControlInvalid", "attr.aria-disabled": "this.isDisabled", "class.k-readonly": "this.readonly" } }, providers: [
|
|
9990
10004
|
{
|
|
9991
10005
|
multi: true,
|
|
9992
10006
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -10425,6 +10439,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
10425
10439
|
type: Input
|
|
10426
10440
|
}], gradientSliderSmallStep: [{
|
|
10427
10441
|
type: Input
|
|
10442
|
+
}], ariaAttributesEnabled: [{
|
|
10443
|
+
type: Input
|
|
10428
10444
|
}], gradientDragHandle: [{
|
|
10429
10445
|
type: ViewChild,
|
|
10430
10446
|
args: ['gradientDragHandle']
|
|
@@ -12258,6 +12274,7 @@ class FlatColorPickerComponent {
|
|
|
12258
12274
|
[gradientSliderSmallStep]="gradientSettings.gradientSliderSmallStep"
|
|
12259
12275
|
[gradientSliderStep]="gradientSettings.gradientSliderStep"
|
|
12260
12276
|
[readonly]="readonly"
|
|
12277
|
+
[ariaAttributesEnabled]="false"
|
|
12261
12278
|
(keydown.tab)="focusFirstHeaderButton()"
|
|
12262
12279
|
(valueChange)="handleValueChange($event)"
|
|
12263
12280
|
></kendo-colorgradient>
|
|
@@ -12283,7 +12300,7 @@ class FlatColorPickerComponent {
|
|
|
12283
12300
|
(actionButtonClick)="onAction($event)"
|
|
12284
12301
|
(tabOut)="firstFocusable.focus()">
|
|
12285
12302
|
</div>
|
|
12286
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedColorPickerMessagesDirective, selector: "[kendoColorPickerLocalizedMessages], [kendoFlatColorPickerLocalizedMessages], [kendoColorGradientLocalizedMessages], [kendoColorPaletteLocalizedMessages]" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: FlatColorPickerHeaderComponent, selector: "[kendoFlatColorPickerHeader]", inputs: ["clearButton", "activeView", "views", "preview", "innerTabIndex", "value", "selection", "size"], outputs: ["viewChange", "valuePaneClick", "clearButtonClick", "tabOut"] }, { kind: "component", type: ColorGradientComponent, selector: "kendo-colorgradient", inputs: ["adaptiveMode", "id", "opacity", "size", "disabled", "readonly", "clearButton", "delay", "value", "contrastTool", "tabindex", "format", "gradientSliderStep", "gradientSliderSmallStep"], outputs: ["valueChange"], exportAs: ["kendoColorGradient"] }, { kind: "component", type: ColorPaletteComponent, selector: "kendo-colorpalette", inputs: ["id", "format", "value", "columns", "palette", "size", "tabindex", "disabled", "readonly", "tileSize"], outputs: ["selectionChange", "valueChange", "cellSelection"], exportAs: ["kendoColorPalette"] }, { kind: "component", type: FlatColorPickerActionButtonsComponent, selector: "[kendoFlatColorPickerActionButtons]", inputs: ["innerTabIndex", "size"], outputs: ["actionButtonClick", "tabOut"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
12303
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: LocalizedColorPickerMessagesDirective, selector: "[kendoColorPickerLocalizedMessages], [kendoFlatColorPickerLocalizedMessages], [kendoColorGradientLocalizedMessages], [kendoColorPaletteLocalizedMessages]" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: FlatColorPickerHeaderComponent, selector: "[kendoFlatColorPickerHeader]", inputs: ["clearButton", "activeView", "views", "preview", "innerTabIndex", "value", "selection", "size"], outputs: ["viewChange", "valuePaneClick", "clearButtonClick", "tabOut"] }, { kind: "component", type: ColorGradientComponent, selector: "kendo-colorgradient", inputs: ["adaptiveMode", "id", "opacity", "size", "disabled", "readonly", "clearButton", "delay", "value", "contrastTool", "tabindex", "format", "gradientSliderStep", "gradientSliderSmallStep", "ariaAttributesEnabled"], outputs: ["valueChange"], exportAs: ["kendoColorGradient"] }, { kind: "component", type: ColorPaletteComponent, selector: "kendo-colorpalette", inputs: ["id", "format", "value", "columns", "palette", "size", "tabindex", "disabled", "readonly", "tileSize"], outputs: ["selectionChange", "valueChange", "cellSelection"], exportAs: ["kendoColorPalette"] }, { kind: "component", type: FlatColorPickerActionButtonsComponent, selector: "[kendoFlatColorPickerActionButtons]", inputs: ["innerTabIndex", "size"], outputs: ["actionButtonClick", "tabOut"] }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
12287
12304
|
}
|
|
12288
12305
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FlatColorPickerComponent, decorators: [{
|
|
12289
12306
|
type: Component,
|
|
@@ -12389,6 +12406,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
12389
12406
|
[gradientSliderSmallStep]="gradientSettings.gradientSliderSmallStep"
|
|
12390
12407
|
[gradientSliderStep]="gradientSettings.gradientSliderStep"
|
|
12391
12408
|
[readonly]="readonly"
|
|
12409
|
+
[ariaAttributesEnabled]="false"
|
|
12392
12410
|
(keydown.tab)="focusFirstHeaderButton()"
|
|
12393
12411
|
(valueChange)="handleValueChange($event)"
|
|
12394
12412
|
></kendo-colorgradient>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-inputs",
|
|
3
|
-
"version": "20.1.0-develop.
|
|
3
|
+
"version": "20.1.0-develop.11",
|
|
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",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"package": {
|
|
29
29
|
"productName": "Kendo UI for Angular",
|
|
30
30
|
"productCode": "KENDOUIANGULAR",
|
|
31
|
-
"publishDate":
|
|
31
|
+
"publishDate": 1759739143,
|
|
32
32
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
33
33
|
}
|
|
34
34
|
},
|
|
@@ -40,20 +40,20 @@
|
|
|
40
40
|
"@angular/platform-browser": "16 - 20",
|
|
41
41
|
"@progress/kendo-drawing": "^1.21.0",
|
|
42
42
|
"@progress/kendo-licensing": "^1.7.0",
|
|
43
|
-
"@progress/kendo-angular-buttons": "20.1.0-develop.
|
|
44
|
-
"@progress/kendo-angular-common": "20.1.0-develop.
|
|
45
|
-
"@progress/kendo-angular-utils": "20.1.0-develop.
|
|
46
|
-
"@progress/kendo-angular-navigation": "20.1.0-develop.
|
|
47
|
-
"@progress/kendo-angular-dialog": "20.1.0-develop.
|
|
48
|
-
"@progress/kendo-angular-intl": "20.1.0-develop.
|
|
49
|
-
"@progress/kendo-angular-l10n": "20.1.0-develop.
|
|
50
|
-
"@progress/kendo-angular-popup": "20.1.0-develop.
|
|
51
|
-
"@progress/kendo-angular-icons": "20.1.0-develop.
|
|
43
|
+
"@progress/kendo-angular-buttons": "20.1.0-develop.11",
|
|
44
|
+
"@progress/kendo-angular-common": "20.1.0-develop.11",
|
|
45
|
+
"@progress/kendo-angular-utils": "20.1.0-develop.11",
|
|
46
|
+
"@progress/kendo-angular-navigation": "20.1.0-develop.11",
|
|
47
|
+
"@progress/kendo-angular-dialog": "20.1.0-develop.11",
|
|
48
|
+
"@progress/kendo-angular-intl": "20.1.0-develop.11",
|
|
49
|
+
"@progress/kendo-angular-l10n": "20.1.0-develop.11",
|
|
50
|
+
"@progress/kendo-angular-popup": "20.1.0-develop.11",
|
|
51
|
+
"@progress/kendo-angular-icons": "20.1.0-develop.11",
|
|
52
52
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"tslib": "^2.3.1",
|
|
56
|
-
"@progress/kendo-angular-schematics": "20.1.0-develop.
|
|
56
|
+
"@progress/kendo-angular-schematics": "20.1.0-develop.11",
|
|
57
57
|
"@progress/kendo-common": "^1.0.1",
|
|
58
58
|
"@progress/kendo-draggable": "^3.0.0",
|
|
59
59
|
"@progress/kendo-inputs-common": "^3.1.0"
|