@progress/kendo-angular-inputs 11.0.1-develop.1 → 11.0.1-develop.3
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/colorpicker.component.d.ts +6 -1
- package/colorpicker/flatcolorpicker.component.d.ts +6 -1
- package/esm2020/colorpicker/colorpicker.component.mjs +11 -2
- package/esm2020/colorpicker/flatcolorpicker.component.mjs +10 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-inputs.mjs +23 -6
- package/fesm2020/progress-kendo-angular-inputs.mjs +23 -6
- package/package.json +9 -9
|
@@ -228,6 +228,11 @@ export declare class ColorPickerComponent implements OnInit, AfterViewInit, OnCh
|
|
|
228
228
|
* The [ActiveColorClickEvent]({% slug api_inputs_activecolorclickevent %}) event provides the option to prevent the popup opening.
|
|
229
229
|
*/
|
|
230
230
|
activeColorClick: EventEmitter<ActiveColorClickEvent>;
|
|
231
|
+
/**
|
|
232
|
+
* @hidden
|
|
233
|
+
* Fires each time the clear button is clicked.
|
|
234
|
+
*/
|
|
235
|
+
clearButtonClick: EventEmitter<any>;
|
|
231
236
|
/**
|
|
232
237
|
* Fires each time the view is about to change.
|
|
233
238
|
* Used to provide a two-way binding for the `activeView` property.
|
|
@@ -374,5 +379,5 @@ export declare class ColorPickerComponent implements OnInit, AfterViewInit, OnCh
|
|
|
374
379
|
private domFocusListener;
|
|
375
380
|
private handleHostId;
|
|
376
381
|
static ɵfac: i0.ɵɵFactoryDeclaration<ColorPickerComponent, never>;
|
|
377
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ColorPickerComponent, "kendo-colorpicker", ["kendoColorPicker"], { "views": "views"; "view": "view"; "activeView": "activeView"; "readonly": "readonly"; "disabled": "disabled"; "format": "format"; "value": "value"; "popupSettings": "popupSettings"; "paletteSettings": "paletteSettings"; "gradientSettings": "gradientSettings"; "icon": "icon"; "iconClass": "iconClass"; "svgIcon": "svgIcon"; "clearButton": "clearButton"; "tabindex": "tabindex"; "preview": "preview"; "actionsLayout": "actionsLayout"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; }, { "valueChange": "valueChange"; "open": "open"; "close": "close"; "onFocus": "focus"; "onBlur": "blur"; "cancel": "cancel"; "activeColorClick": "activeColorClick"; "activeViewChange": "activeViewChange"; }, never, never>;
|
|
382
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ColorPickerComponent, "kendo-colorpicker", ["kendoColorPicker"], { "views": "views"; "view": "view"; "activeView": "activeView"; "readonly": "readonly"; "disabled": "disabled"; "format": "format"; "value": "value"; "popupSettings": "popupSettings"; "paletteSettings": "paletteSettings"; "gradientSettings": "gradientSettings"; "icon": "icon"; "iconClass": "iconClass"; "svgIcon": "svgIcon"; "clearButton": "clearButton"; "tabindex": "tabindex"; "preview": "preview"; "actionsLayout": "actionsLayout"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; }, { "valueChange": "valueChange"; "open": "open"; "close": "close"; "onFocus": "focus"; "onBlur": "blur"; "cancel": "cancel"; "activeColorClick": "activeColorClick"; "clearButtonClick": "clearButtonClick"; "activeViewChange": "activeViewChange"; }, never, never>;
|
|
378
383
|
}
|
|
@@ -142,6 +142,11 @@ export declare class FlatColorPickerComponent implements OnInit, AfterViewInit,
|
|
|
142
142
|
* Used to provide a two-way binding for the `activeView` property.
|
|
143
143
|
*/
|
|
144
144
|
activeViewChange: EventEmitter<string>;
|
|
145
|
+
/**
|
|
146
|
+
* @hidden
|
|
147
|
+
* Fires each time the clear button is clicked.
|
|
148
|
+
*/
|
|
149
|
+
clearButtonClick: EventEmitter<any>;
|
|
145
150
|
/**
|
|
146
151
|
* @hidden
|
|
147
152
|
*/
|
|
@@ -254,5 +259,5 @@ export declare class FlatColorPickerComponent implements OnInit, AfterViewInit,
|
|
|
254
259
|
private initDomEvents;
|
|
255
260
|
private removeGradientAttributes;
|
|
256
261
|
static ɵfac: i0.ɵɵFactoryDeclaration<FlatColorPickerComponent, never>;
|
|
257
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FlatColorPickerComponent, "kendo-flatcolorpicker", ["kendoFlatColorPicker"], { "readonly": "readonly"; "disabled": "disabled"; "format": "format"; "value": "value"; "tabindex": "tabindex"; "clearButton": "clearButton"; "preview": "preview"; "actionsLayout": "actionsLayout"; "activeView": "activeView"; "views": "views"; "gradientSettings": "gradientSettings"; "paletteSettings": "paletteSettings"; }, { "valueChange": "valueChange"; "cancel": "cancel"; "activeViewChange": "activeViewChange"; "actionButtonClick": "actionButtonClick"; }, never, never>;
|
|
262
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FlatColorPickerComponent, "kendo-flatcolorpicker", ["kendoFlatColorPicker"], { "readonly": "readonly"; "disabled": "disabled"; "format": "format"; "value": "value"; "tabindex": "tabindex"; "clearButton": "clearButton"; "preview": "preview"; "actionsLayout": "actionsLayout"; "activeView": "activeView"; "views": "views"; "gradientSettings": "gradientSettings"; "paletteSettings": "paletteSettings"; }, { "valueChange": "valueChange"; "cancel": "cancel"; "activeViewChange": "activeViewChange"; "clearButtonClick": "clearButtonClick"; "actionButtonClick": "actionButtonClick"; }, never, never>;
|
|
258
263
|
}
|
|
@@ -145,6 +145,11 @@ export class ColorPickerComponent {
|
|
|
145
145
|
* The [ActiveColorClickEvent]({% slug api_inputs_activecolorclickevent %}) event provides the option to prevent the popup opening.
|
|
146
146
|
*/
|
|
147
147
|
this.activeColorClick = new EventEmitter();
|
|
148
|
+
/**
|
|
149
|
+
* @hidden
|
|
150
|
+
* Fires each time the clear button is clicked.
|
|
151
|
+
*/
|
|
152
|
+
this.clearButtonClick = new EventEmitter();
|
|
148
153
|
/**
|
|
149
154
|
* Fires each time the view is about to change.
|
|
150
155
|
* Used to provide a two-way binding for the `activeView` property.
|
|
@@ -724,7 +729,7 @@ export class ColorPickerComponent {
|
|
|
724
729
|
}
|
|
725
730
|
}
|
|
726
731
|
ColorPickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ColorPickerComponent, deps: [{ token: i0.ElementRef }, { token: i1.PopupService }, { token: i0.ChangeDetectorRef }, { token: i2.LocalizationService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
727
|
-
ColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: ColorPickerComponent, selector: "kendo-colorpicker", inputs: { views: "views", view: "view", activeView: "activeView", readonly: "readonly", disabled: "disabled", format: "format", value: "value", popupSettings: "popupSettings", paletteSettings: "paletteSettings", gradientSettings: "gradientSettings", icon: "icon", iconClass: "iconClass", svgIcon: "svgIcon", 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", 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" } }, providers: [{
|
|
732
|
+
ColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: ColorPickerComponent, selector: "kendo-colorpicker", inputs: { views: "views", view: "view", activeView: "activeView", readonly: "readonly", disabled: "disabled", format: "format", value: "value", popupSettings: "popupSettings", paletteSettings: "paletteSettings", gradientSettings: "gradientSettings", icon: "icon", iconClass: "iconClass", svgIcon: "svgIcon", 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" } }, providers: [{
|
|
728
733
|
multi: true,
|
|
729
734
|
provide: NG_VALUE_ACCESSOR,
|
|
730
735
|
useExisting: forwardRef(() => ColorPickerComponent)
|
|
@@ -837,11 +842,12 @@ ColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
837
842
|
(valueChange)="handleValueChange($event)"
|
|
838
843
|
(keydown)="handlePopupKeyDown($event)"
|
|
839
844
|
(activeViewChange)="activeViewChange.emit($event)"
|
|
845
|
+
(clearButtonClick)="clearButtonClick.emit()"
|
|
840
846
|
(actionButtonClick)="togglePopup()">
|
|
841
847
|
</kendo-flatcolorpicker>
|
|
842
848
|
</ng-template>
|
|
843
849
|
<ng-container #container></ng-container>
|
|
844
|
-
`, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }, { type: i4.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { type: i5.FlatColorPickerComponent, selector: "kendo-flatcolorpicker", inputs: ["readonly", "disabled", "format", "value", "tabindex", "clearButton", "preview", "actionsLayout", "activeView", "views", "gradientSettings", "paletteSettings"], outputs: ["valueChange", "cancel", "activeViewChange", "actionButtonClick"], exportAs: ["kendoFlatColorPicker"] }], directives: [{ type: i6.LocalizedColorPickerMessagesDirective, selector: "[kendoColorPickerLocalizedMessages], [kendoFlatColorPickerLocalizedMessages], [kendoColorGradientLocalizedMessages], [kendoColorPaletteLocalizedMessages]" }, { type: i7.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
850
|
+
`, isInline: true, components: [{ type: i3.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }, { type: i4.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { type: i5.FlatColorPickerComponent, selector: "kendo-flatcolorpicker", inputs: ["readonly", "disabled", "format", "value", "tabindex", "clearButton", "preview", "actionsLayout", "activeView", "views", "gradientSettings", "paletteSettings"], outputs: ["valueChange", "cancel", "activeViewChange", "clearButtonClick", "actionButtonClick"], exportAs: ["kendoFlatColorPicker"] }], directives: [{ type: i6.LocalizedColorPickerMessagesDirective, selector: "[kendoColorPickerLocalizedMessages], [kendoFlatColorPickerLocalizedMessages], [kendoColorGradientLocalizedMessages], [kendoColorPaletteLocalizedMessages]" }, { type: i7.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i7.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
845
851
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ColorPickerComponent, decorators: [{
|
|
846
852
|
type: Component,
|
|
847
853
|
args: [{
|
|
@@ -960,6 +966,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
960
966
|
(valueChange)="handleValueChange($event)"
|
|
961
967
|
(keydown)="handlePopupKeyDown($event)"
|
|
962
968
|
(activeViewChange)="activeViewChange.emit($event)"
|
|
969
|
+
(clearButtonClick)="clearButtonClick.emit()"
|
|
963
970
|
(actionButtonClick)="togglePopup()">
|
|
964
971
|
</kendo-flatcolorpicker>
|
|
965
972
|
</ng-template>
|
|
@@ -1061,6 +1068,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1061
1068
|
type: Output
|
|
1062
1069
|
}], activeColorClick: [{
|
|
1063
1070
|
type: Output
|
|
1071
|
+
}], clearButtonClick: [{
|
|
1072
|
+
type: Output
|
|
1064
1073
|
}], activeViewChange: [{
|
|
1065
1074
|
type: Output
|
|
1066
1075
|
}], container: [{
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
3
|
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
5
6
|
/* eslint-disable no-unused-expressions */
|
|
6
7
|
import { Component, ElementRef, EventEmitter, forwardRef, HostBinding, Input, isDevMode, NgZone, ChangeDetectorRef, Output, Renderer2, ViewChild, Injector, HostListener } from "@angular/core";
|
|
7
8
|
import { NgControl, NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
@@ -114,6 +115,11 @@ export class FlatColorPickerComponent {
|
|
|
114
115
|
* Used to provide a two-way binding for the `activeView` property.
|
|
115
116
|
*/
|
|
116
117
|
this.activeViewChange = new EventEmitter();
|
|
118
|
+
/**
|
|
119
|
+
* @hidden
|
|
120
|
+
* Fires each time the clear button is clicked.
|
|
121
|
+
*/
|
|
122
|
+
this.clearButtonClick = new EventEmitter();
|
|
117
123
|
/**
|
|
118
124
|
* @hidden
|
|
119
125
|
*/
|
|
@@ -354,6 +360,7 @@ export class FlatColorPickerComponent {
|
|
|
354
360
|
this.resetInnerComponentValue();
|
|
355
361
|
this.internalNavigation = false;
|
|
356
362
|
this.host.nativeElement.focus();
|
|
363
|
+
this.clearButtonClick.emit();
|
|
357
364
|
}
|
|
358
365
|
/**
|
|
359
366
|
* @hidden
|
|
@@ -469,7 +476,7 @@ export class FlatColorPickerComponent {
|
|
|
469
476
|
}
|
|
470
477
|
}
|
|
471
478
|
FlatColorPickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FlatColorPickerComponent, deps: [{ token: i0.ElementRef }, { token: i1.FlatColorPickerService }, { token: i2.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
472
|
-
FlatColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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: { listeners: { "keydown.enter": "enterHandler($event)", "keydown.escape": "escapeHandler()", "focusin": "focusHandler($event)" }, properties: { "class.k-flatcolorpicker": "this.hostClasses", "class.k-coloreditor": "this.hostClasses", "class.k-disabled": "this.disabledClass", "attr.aria-disabled": "this.isDisabled", "attr.aria-readonly": "this.ariaReadonly", "attr.dir": "this.direction", "attr.tabindex": "this.hostTabindex", "attr.role": "this.ariaRole", "attr.aria-invalid": "this.isControlInvalid" } }, providers: [
|
|
479
|
+
FlatColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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", clearButtonClick: "clearButtonClick", actionButtonClick: "actionButtonClick" }, host: { listeners: { "keydown.enter": "enterHandler($event)", "keydown.escape": "escapeHandler()", "focusin": "focusHandler($event)" }, properties: { "class.k-flatcolorpicker": "this.hostClasses", "class.k-coloreditor": "this.hostClasses", "class.k-disabled": "this.disabledClass", "attr.aria-disabled": "this.isDisabled", "attr.aria-readonly": "this.ariaReadonly", "attr.dir": "this.direction", "attr.tabindex": "this.hostTabindex", "attr.role": "this.ariaRole", "attr.aria-invalid": "this.isControlInvalid" } }, providers: [
|
|
473
480
|
{
|
|
474
481
|
multi: true,
|
|
475
482
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -779,6 +786,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
779
786
|
type: Output
|
|
780
787
|
}], activeViewChange: [{
|
|
781
788
|
type: Output
|
|
789
|
+
}], clearButtonClick: [{
|
|
790
|
+
type: Output
|
|
782
791
|
}], actionButtonClick: [{
|
|
783
792
|
type: Output
|
|
784
793
|
}], header: [{
|
|
@@ -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:
|
|
13
|
-
version: '11.0.1-develop.
|
|
12
|
+
publishDate: 1674112718,
|
|
13
|
+
version: '11.0.1-develop.3',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -539,8 +539,8 @@ const packageMetadata = {
|
|
|
539
539
|
name: '@progress/kendo-angular-inputs',
|
|
540
540
|
productName: 'Kendo UI for Angular',
|
|
541
541
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
542
|
-
publishDate:
|
|
543
|
-
version: '11.0.1-develop.
|
|
542
|
+
publishDate: 1674112718,
|
|
543
|
+
version: '11.0.1-develop.3',
|
|
544
544
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
545
545
|
};
|
|
546
546
|
|
|
@@ -11212,7 +11212,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
11212
11212
|
args: ['last', { read: ElementRef }]
|
|
11213
11213
|
}] } });
|
|
11214
11214
|
|
|
11215
|
-
/* eslint-disable no-
|
|
11215
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
11216
11216
|
/**
|
|
11217
11217
|
* Represents the [Kendo UI FlatColorPicker component for Angular]({% slug overview_flatcolorpicker %}).
|
|
11218
11218
|
*
|
|
@@ -11297,6 +11297,11 @@ class FlatColorPickerComponent {
|
|
|
11297
11297
|
* Used to provide a two-way binding for the `activeView` property.
|
|
11298
11298
|
*/
|
|
11299
11299
|
this.activeViewChange = new EventEmitter();
|
|
11300
|
+
/**
|
|
11301
|
+
* @hidden
|
|
11302
|
+
* Fires each time the clear button is clicked.
|
|
11303
|
+
*/
|
|
11304
|
+
this.clearButtonClick = new EventEmitter();
|
|
11300
11305
|
/**
|
|
11301
11306
|
* @hidden
|
|
11302
11307
|
*/
|
|
@@ -11541,6 +11546,7 @@ class FlatColorPickerComponent {
|
|
|
11541
11546
|
this.resetInnerComponentValue();
|
|
11542
11547
|
this.internalNavigation = false;
|
|
11543
11548
|
this.host.nativeElement.focus();
|
|
11549
|
+
this.clearButtonClick.emit();
|
|
11544
11550
|
}
|
|
11545
11551
|
/**
|
|
11546
11552
|
* @hidden
|
|
@@ -11656,7 +11662,7 @@ class FlatColorPickerComponent {
|
|
|
11656
11662
|
}
|
|
11657
11663
|
}
|
|
11658
11664
|
FlatColorPickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FlatColorPickerComponent, deps: [{ token: i0.ElementRef }, { token: FlatColorPickerService }, { token: i1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
11659
|
-
FlatColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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: { listeners: { "keydown.enter": "enterHandler($event)", "keydown.escape": "escapeHandler()", "focusin": "focusHandler($event)" }, properties: { "class.k-flatcolorpicker": "this.hostClasses", "class.k-coloreditor": "this.hostClasses", "class.k-disabled": "this.disabledClass", "attr.aria-disabled": "this.isDisabled", "attr.aria-readonly": "this.ariaReadonly", "attr.dir": "this.direction", "attr.tabindex": "this.hostTabindex", "attr.role": "this.ariaRole", "attr.aria-invalid": "this.isControlInvalid" } }, providers: [
|
|
11665
|
+
FlatColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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", clearButtonClick: "clearButtonClick", actionButtonClick: "actionButtonClick" }, host: { listeners: { "keydown.enter": "enterHandler($event)", "keydown.escape": "escapeHandler()", "focusin": "focusHandler($event)" }, properties: { "class.k-flatcolorpicker": "this.hostClasses", "class.k-coloreditor": "this.hostClasses", "class.k-disabled": "this.disabledClass", "attr.aria-disabled": "this.isDisabled", "attr.aria-readonly": "this.ariaReadonly", "attr.dir": "this.direction", "attr.tabindex": "this.hostTabindex", "attr.role": "this.ariaRole", "attr.aria-invalid": "this.isControlInvalid" } }, providers: [
|
|
11660
11666
|
{
|
|
11661
11667
|
multi: true,
|
|
11662
11668
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -11966,6 +11972,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
11966
11972
|
type: Output
|
|
11967
11973
|
}], activeViewChange: [{
|
|
11968
11974
|
type: Output
|
|
11975
|
+
}], clearButtonClick: [{
|
|
11976
|
+
type: Output
|
|
11969
11977
|
}], actionButtonClick: [{
|
|
11970
11978
|
type: Output
|
|
11971
11979
|
}], header: [{
|
|
@@ -12105,6 +12113,11 @@ class ColorPickerComponent {
|
|
|
12105
12113
|
* The [ActiveColorClickEvent]({% slug api_inputs_activecolorclickevent %}) event provides the option to prevent the popup opening.
|
|
12106
12114
|
*/
|
|
12107
12115
|
this.activeColorClick = new EventEmitter();
|
|
12116
|
+
/**
|
|
12117
|
+
* @hidden
|
|
12118
|
+
* Fires each time the clear button is clicked.
|
|
12119
|
+
*/
|
|
12120
|
+
this.clearButtonClick = new EventEmitter();
|
|
12108
12121
|
/**
|
|
12109
12122
|
* Fires each time the view is about to change.
|
|
12110
12123
|
* Used to provide a two-way binding for the `activeView` property.
|
|
@@ -12685,7 +12698,7 @@ class ColorPickerComponent {
|
|
|
12685
12698
|
}
|
|
12686
12699
|
}
|
|
12687
12700
|
ColorPickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ColorPickerComponent, deps: [{ token: i0.ElementRef }, { token: i1$3.PopupService }, { token: i0.ChangeDetectorRef }, { token: i1.LocalizationService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
12688
|
-
ColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: ColorPickerComponent, selector: "kendo-colorpicker", inputs: { views: "views", view: "view", activeView: "activeView", readonly: "readonly", disabled: "disabled", format: "format", value: "value", popupSettings: "popupSettings", paletteSettings: "paletteSettings", gradientSettings: "gradientSettings", icon: "icon", iconClass: "iconClass", svgIcon: "svgIcon", 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", 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" } }, providers: [{
|
|
12701
|
+
ColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: ColorPickerComponent, selector: "kendo-colorpicker", inputs: { views: "views", view: "view", activeView: "activeView", readonly: "readonly", disabled: "disabled", format: "format", value: "value", popupSettings: "popupSettings", paletteSettings: "paletteSettings", gradientSettings: "gradientSettings", icon: "icon", iconClass: "iconClass", svgIcon: "svgIcon", 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" } }, providers: [{
|
|
12689
12702
|
multi: true,
|
|
12690
12703
|
provide: NG_VALUE_ACCESSOR,
|
|
12691
12704
|
useExisting: forwardRef(() => ColorPickerComponent)
|
|
@@ -12798,11 +12811,12 @@ ColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
12798
12811
|
(valueChange)="handleValueChange($event)"
|
|
12799
12812
|
(keydown)="handlePopupKeyDown($event)"
|
|
12800
12813
|
(activeViewChange)="activeViewChange.emit($event)"
|
|
12814
|
+
(clearButtonClick)="clearButtonClick.emit()"
|
|
12801
12815
|
(actionButtonClick)="togglePopup()">
|
|
12802
12816
|
</kendo-flatcolorpicker>
|
|
12803
12817
|
</ng-template>
|
|
12804
12818
|
<ng-container #container></ng-container>
|
|
12805
|
-
`, isInline: true, components: [{ type: i2$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }, { type: i2.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { type: FlatColorPickerComponent, selector: "kendo-flatcolorpicker", inputs: ["readonly", "disabled", "format", "value", "tabindex", "clearButton", "preview", "actionsLayout", "activeView", "views", "gradientSettings", "paletteSettings"], outputs: ["valueChange", "cancel", "activeViewChange", "actionButtonClick"], exportAs: ["kendoFlatColorPicker"] }], directives: [{ type: LocalizedColorPickerMessagesDirective, selector: "[kendoColorPickerLocalizedMessages], [kendoFlatColorPickerLocalizedMessages], [kendoColorGradientLocalizedMessages], [kendoColorPaletteLocalizedMessages]" }, { type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
12819
|
+
`, isInline: true, components: [{ type: i2$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }, { type: i2.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { type: FlatColorPickerComponent, selector: "kendo-flatcolorpicker", inputs: ["readonly", "disabled", "format", "value", "tabindex", "clearButton", "preview", "actionsLayout", "activeView", "views", "gradientSettings", "paletteSettings"], outputs: ["valueChange", "cancel", "activeViewChange", "clearButtonClick", "actionButtonClick"], exportAs: ["kendoFlatColorPicker"] }], directives: [{ type: LocalizedColorPickerMessagesDirective, selector: "[kendoColorPickerLocalizedMessages], [kendoFlatColorPickerLocalizedMessages], [kendoColorGradientLocalizedMessages], [kendoColorPaletteLocalizedMessages]" }, { type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
12806
12820
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ColorPickerComponent, decorators: [{
|
|
12807
12821
|
type: Component,
|
|
12808
12822
|
args: [{
|
|
@@ -12921,6 +12935,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
12921
12935
|
(valueChange)="handleValueChange($event)"
|
|
12922
12936
|
(keydown)="handlePopupKeyDown($event)"
|
|
12923
12937
|
(activeViewChange)="activeViewChange.emit($event)"
|
|
12938
|
+
(clearButtonClick)="clearButtonClick.emit()"
|
|
12924
12939
|
(actionButtonClick)="togglePopup()">
|
|
12925
12940
|
</kendo-flatcolorpicker>
|
|
12926
12941
|
</ng-template>
|
|
@@ -13022,6 +13037,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
13022
13037
|
type: Output
|
|
13023
13038
|
}], activeColorClick: [{
|
|
13024
13039
|
type: Output
|
|
13040
|
+
}], clearButtonClick: [{
|
|
13041
|
+
type: Output
|
|
13025
13042
|
}], activeViewChange: [{
|
|
13026
13043
|
type: Output
|
|
13027
13044
|
}], container: [{
|
|
@@ -538,8 +538,8 @@ const packageMetadata = {
|
|
|
538
538
|
name: '@progress/kendo-angular-inputs',
|
|
539
539
|
productName: 'Kendo UI for Angular',
|
|
540
540
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
541
|
-
publishDate:
|
|
542
|
-
version: '11.0.1-develop.
|
|
541
|
+
publishDate: 1674112718,
|
|
542
|
+
version: '11.0.1-develop.3',
|
|
543
543
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
544
544
|
};
|
|
545
545
|
|
|
@@ -11187,7 +11187,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
11187
11187
|
args: ['last', { read: ElementRef }]
|
|
11188
11188
|
}] } });
|
|
11189
11189
|
|
|
11190
|
-
/* eslint-disable no-
|
|
11190
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
11191
11191
|
/**
|
|
11192
11192
|
* Represents the [Kendo UI FlatColorPicker component for Angular]({% slug overview_flatcolorpicker %}).
|
|
11193
11193
|
*
|
|
@@ -11272,6 +11272,11 @@ class FlatColorPickerComponent {
|
|
|
11272
11272
|
* Used to provide a two-way binding for the `activeView` property.
|
|
11273
11273
|
*/
|
|
11274
11274
|
this.activeViewChange = new EventEmitter();
|
|
11275
|
+
/**
|
|
11276
|
+
* @hidden
|
|
11277
|
+
* Fires each time the clear button is clicked.
|
|
11278
|
+
*/
|
|
11279
|
+
this.clearButtonClick = new EventEmitter();
|
|
11275
11280
|
/**
|
|
11276
11281
|
* @hidden
|
|
11277
11282
|
*/
|
|
@@ -11512,6 +11517,7 @@ class FlatColorPickerComponent {
|
|
|
11512
11517
|
this.resetInnerComponentValue();
|
|
11513
11518
|
this.internalNavigation = false;
|
|
11514
11519
|
this.host.nativeElement.focus();
|
|
11520
|
+
this.clearButtonClick.emit();
|
|
11515
11521
|
}
|
|
11516
11522
|
/**
|
|
11517
11523
|
* @hidden
|
|
@@ -11627,7 +11633,7 @@ class FlatColorPickerComponent {
|
|
|
11627
11633
|
}
|
|
11628
11634
|
}
|
|
11629
11635
|
FlatColorPickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: FlatColorPickerComponent, deps: [{ token: i0.ElementRef }, { token: FlatColorPickerService }, { token: i1.LocalizationService }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
11630
|
-
FlatColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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: { listeners: { "keydown.enter": "enterHandler($event)", "keydown.escape": "escapeHandler()", "focusin": "focusHandler($event)" }, properties: { "class.k-flatcolorpicker": "this.hostClasses", "class.k-coloreditor": "this.hostClasses", "class.k-disabled": "this.disabledClass", "attr.aria-disabled": "this.isDisabled", "attr.aria-readonly": "this.ariaReadonly", "attr.dir": "this.direction", "attr.tabindex": "this.hostTabindex", "attr.role": "this.ariaRole", "attr.aria-invalid": "this.isControlInvalid" } }, providers: [
|
|
11636
|
+
FlatColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", 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", clearButtonClick: "clearButtonClick", actionButtonClick: "actionButtonClick" }, host: { listeners: { "keydown.enter": "enterHandler($event)", "keydown.escape": "escapeHandler()", "focusin": "focusHandler($event)" }, properties: { "class.k-flatcolorpicker": "this.hostClasses", "class.k-coloreditor": "this.hostClasses", "class.k-disabled": "this.disabledClass", "attr.aria-disabled": "this.isDisabled", "attr.aria-readonly": "this.ariaReadonly", "attr.dir": "this.direction", "attr.tabindex": "this.hostTabindex", "attr.role": "this.ariaRole", "attr.aria-invalid": "this.isControlInvalid" } }, providers: [
|
|
11631
11637
|
{
|
|
11632
11638
|
multi: true,
|
|
11633
11639
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -11937,6 +11943,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
11937
11943
|
type: Output
|
|
11938
11944
|
}], activeViewChange: [{
|
|
11939
11945
|
type: Output
|
|
11946
|
+
}], clearButtonClick: [{
|
|
11947
|
+
type: Output
|
|
11940
11948
|
}], actionButtonClick: [{
|
|
11941
11949
|
type: Output
|
|
11942
11950
|
}], header: [{
|
|
@@ -12076,6 +12084,11 @@ class ColorPickerComponent {
|
|
|
12076
12084
|
* The [ActiveColorClickEvent]({% slug api_inputs_activecolorclickevent %}) event provides the option to prevent the popup opening.
|
|
12077
12085
|
*/
|
|
12078
12086
|
this.activeColorClick = new EventEmitter();
|
|
12087
|
+
/**
|
|
12088
|
+
* @hidden
|
|
12089
|
+
* Fires each time the clear button is clicked.
|
|
12090
|
+
*/
|
|
12091
|
+
this.clearButtonClick = new EventEmitter();
|
|
12079
12092
|
/**
|
|
12080
12093
|
* Fires each time the view is about to change.
|
|
12081
12094
|
* Used to provide a two-way binding for the `activeView` property.
|
|
@@ -12655,7 +12668,7 @@ class ColorPickerComponent {
|
|
|
12655
12668
|
}
|
|
12656
12669
|
}
|
|
12657
12670
|
ColorPickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ColorPickerComponent, deps: [{ token: i0.ElementRef }, { token: i1$3.PopupService }, { token: i0.ChangeDetectorRef }, { token: i1.LocalizationService }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
12658
|
-
ColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: ColorPickerComponent, selector: "kendo-colorpicker", inputs: { views: "views", view: "view", activeView: "activeView", readonly: "readonly", disabled: "disabled", format: "format", value: "value", popupSettings: "popupSettings", paletteSettings: "paletteSettings", gradientSettings: "gradientSettings", icon: "icon", iconClass: "iconClass", svgIcon: "svgIcon", 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", 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" } }, providers: [{
|
|
12671
|
+
ColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: ColorPickerComponent, selector: "kendo-colorpicker", inputs: { views: "views", view: "view", activeView: "activeView", readonly: "readonly", disabled: "disabled", format: "format", value: "value", popupSettings: "popupSettings", paletteSettings: "paletteSettings", gradientSettings: "gradientSettings", icon: "icon", iconClass: "iconClass", svgIcon: "svgIcon", 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" } }, providers: [{
|
|
12659
12672
|
multi: true,
|
|
12660
12673
|
provide: NG_VALUE_ACCESSOR,
|
|
12661
12674
|
useExisting: forwardRef(() => ColorPickerComponent)
|
|
@@ -12768,11 +12781,12 @@ ColorPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
12768
12781
|
(valueChange)="handleValueChange($event)"
|
|
12769
12782
|
(keydown)="handlePopupKeyDown($event)"
|
|
12770
12783
|
(activeViewChange)="activeViewChange.emit($event)"
|
|
12784
|
+
(clearButtonClick)="clearButtonClick.emit()"
|
|
12771
12785
|
(actionButtonClick)="togglePopup()">
|
|
12772
12786
|
</kendo-flatcolorpicker>
|
|
12773
12787
|
</ng-template>
|
|
12774
12788
|
<ng-container #container></ng-container>
|
|
12775
|
-
`, isInline: true, components: [{ type: i2$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }, { type: i2.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { type: FlatColorPickerComponent, selector: "kendo-flatcolorpicker", inputs: ["readonly", "disabled", "format", "value", "tabindex", "clearButton", "preview", "actionsLayout", "activeView", "views", "gradientSettings", "paletteSettings"], outputs: ["valueChange", "cancel", "activeViewChange", "actionButtonClick"], exportAs: ["kendoFlatColorPicker"] }], directives: [{ type: LocalizedColorPickerMessagesDirective, selector: "[kendoColorPickerLocalizedMessages], [kendoFlatColorPickerLocalizedMessages], [kendoColorGradientLocalizedMessages], [kendoColorPaletteLocalizedMessages]" }, { type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
12789
|
+
`, isInline: true, components: [{ type: i2$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }, { type: i2.Button, selector: "button[kendoButton], span[kendoButton], kendo-button", inputs: ["toggleable", "togglable", "selected", "tabIndex", "imageUrl", "iconClass", "icon", "disabled", "size", "rounded", "fillMode", "themeColor", "svgIcon", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }, { type: FlatColorPickerComponent, selector: "kendo-flatcolorpicker", inputs: ["readonly", "disabled", "format", "value", "tabindex", "clearButton", "preview", "actionsLayout", "activeView", "views", "gradientSettings", "paletteSettings"], outputs: ["valueChange", "cancel", "activeViewChange", "clearButtonClick", "actionButtonClick"], exportAs: ["kendoFlatColorPicker"] }], directives: [{ type: LocalizedColorPickerMessagesDirective, selector: "[kendoColorPickerLocalizedMessages], [kendoFlatColorPickerLocalizedMessages], [kendoColorGradientLocalizedMessages], [kendoColorPaletteLocalizedMessages]" }, { type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
12776
12790
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ColorPickerComponent, decorators: [{
|
|
12777
12791
|
type: Component,
|
|
12778
12792
|
args: [{
|
|
@@ -12891,6 +12905,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
12891
12905
|
(valueChange)="handleValueChange($event)"
|
|
12892
12906
|
(keydown)="handlePopupKeyDown($event)"
|
|
12893
12907
|
(activeViewChange)="activeViewChange.emit($event)"
|
|
12908
|
+
(clearButtonClick)="clearButtonClick.emit()"
|
|
12894
12909
|
(actionButtonClick)="togglePopup()">
|
|
12895
12910
|
</kendo-flatcolorpicker>
|
|
12896
12911
|
</ng-template>
|
|
@@ -12992,6 +13007,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
12992
13007
|
type: Output
|
|
12993
13008
|
}], activeColorClick: [{
|
|
12994
13009
|
type: Output
|
|
13010
|
+
}], clearButtonClick: [{
|
|
13011
|
+
type: Output
|
|
12995
13012
|
}], activeViewChange: [{
|
|
12996
13013
|
type: Output
|
|
12997
13014
|
}], container: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-inputs",
|
|
3
|
-
"version": "11.0.1-develop.
|
|
3
|
+
"version": "11.0.1-develop.3",
|
|
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,18 +33,18 @@
|
|
|
33
33
|
"@angular/platform-browser": "13 - 15",
|
|
34
34
|
"@progress/kendo-drawing": "^1.17.2",
|
|
35
35
|
"@progress/kendo-licensing": "^1.0.2",
|
|
36
|
-
"@progress/kendo-angular-buttons": "11.0.1-develop.
|
|
37
|
-
"@progress/kendo-angular-common": "11.0.1-develop.
|
|
38
|
-
"@progress/kendo-angular-dialog": "11.0.1-develop.
|
|
39
|
-
"@progress/kendo-angular-intl": "11.0.1-develop.
|
|
40
|
-
"@progress/kendo-angular-l10n": "11.0.1-develop.
|
|
41
|
-
"@progress/kendo-angular-popup": "11.0.1-develop.
|
|
42
|
-
"@progress/kendo-angular-icons": "11.0.1-develop.
|
|
36
|
+
"@progress/kendo-angular-buttons": "11.0.1-develop.3",
|
|
37
|
+
"@progress/kendo-angular-common": "11.0.1-develop.3",
|
|
38
|
+
"@progress/kendo-angular-dialog": "11.0.1-develop.3",
|
|
39
|
+
"@progress/kendo-angular-intl": "11.0.1-develop.3",
|
|
40
|
+
"@progress/kendo-angular-l10n": "11.0.1-develop.3",
|
|
41
|
+
"@progress/kendo-angular-popup": "11.0.1-develop.3",
|
|
42
|
+
"@progress/kendo-angular-icons": "11.0.1-develop.3",
|
|
43
43
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"tslib": "^2.3.1",
|
|
47
|
-
"@progress/kendo-angular-schematics": "11.0.1-develop.
|
|
47
|
+
"@progress/kendo-angular-schematics": "11.0.1-develop.3",
|
|
48
48
|
"@progress/kendo-common": "^0.2.2",
|
|
49
49
|
"@progress/kendo-draggable": "^3.0.0",
|
|
50
50
|
"@progress/kendo-inputs-common": "^3.1.0"
|