@progress/kendo-angular-inputs 11.3.0-develop.1 → 11.3.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-input.component.d.ts +1 -0
- package/colorpicker/color-palette.component.d.ts +1 -0
- package/colorpicker/flatcolorpicker.component.d.ts +8 -4
- package/esm2020/colorpicker/color-gradient.component.mjs +0 -1
- package/esm2020/colorpicker/color-input.component.mjs +11 -6
- package/esm2020/colorpicker/color-palette.component.mjs +14 -14
- package/esm2020/colorpicker/colorpicker.component.mjs +4 -5
- package/esm2020/colorpicker/flatcolorpicker-header.component.mjs +7 -3
- package/esm2020/colorpicker/flatcolorpicker.component.mjs +30 -15
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/shared/utils.mjs +0 -11
- package/esm2020/signature/signature.component.mjs +54 -24
- package/esm2020/textbox/textbox.component.mjs +1 -2
- package/fesm2015/progress-kendo-angular-inputs.mjs +125 -82
- package/fesm2020/progress-kendo-angular-inputs.mjs +121 -81
- package/package.json +10 -10
- package/shared/utils.d.ts +0 -6
- package/signature/signature.component.d.ts +7 -2
|
@@ -21,8 +21,11 @@ export declare class SignatureComponent implements ControlValueAccessor {
|
|
|
21
21
|
private cd;
|
|
22
22
|
localization: LocalizationService;
|
|
23
23
|
staticHostClasses: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* @hidden
|
|
26
|
+
*/
|
|
27
|
+
focusableId: string;
|
|
24
28
|
direction: string;
|
|
25
|
-
maximizeButton: ElementRef;
|
|
26
29
|
/**
|
|
27
30
|
* Sets the read-only state of the Signature.
|
|
28
31
|
*
|
|
@@ -190,6 +193,8 @@ export declare class SignatureComponent implements ControlValueAccessor {
|
|
|
190
193
|
*/
|
|
191
194
|
minimize: EventEmitter<void>;
|
|
192
195
|
canvas: ElementRef;
|
|
196
|
+
minimizeButton: ElementRef;
|
|
197
|
+
maximizeButton: ElementRef;
|
|
193
198
|
/**
|
|
194
199
|
* Indicates whether the Signature wrapper is focused.
|
|
195
200
|
*/
|
|
@@ -355,5 +360,5 @@ export declare class SignatureComponent implements ControlValueAccessor {
|
|
|
355
360
|
private addEventListeners;
|
|
356
361
|
private getMessage;
|
|
357
362
|
static ɵfac: i0.ɵɵFactoryDeclaration<SignatureComponent, never>;
|
|
358
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SignatureComponent, "kendo-signature", ["kendoSignature"], { "readonly": "readonly"; "disabled": "disabled"; "width": "width"; "height": "height"; "value": "value"; "tabindex": "tabindex"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; "color": "color"; "backgroundColor": "backgroundColor"; "strokeWidth": "strokeWidth"; "smooth": "smooth"; "maximizable": "maximizable"; "maximized": "maximized"; "popupScale": "popupScale"; "exportScale": "exportScale"; "parentLocalization": "parentLocalization"; "hideLine": "hideLine"; }, { "valueChange": "valueChange"; "open": "open"; "close": "close"; "onFocus": "focus"; "onBlur": "blur"; "minimize": "minimize"; }, never, never>;
|
|
363
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SignatureComponent, "kendo-signature", ["kendoSignature"], { "focusableId": "focusableId"; "readonly": "readonly"; "disabled": "disabled"; "width": "width"; "height": "height"; "value": "value"; "tabindex": "tabindex"; "size": "size"; "rounded": "rounded"; "fillMode": "fillMode"; "color": "color"; "backgroundColor": "backgroundColor"; "strokeWidth": "strokeWidth"; "smooth": "smooth"; "maximizable": "maximizable"; "maximized": "maximized"; "popupScale": "popupScale"; "exportScale": "exportScale"; "parentLocalization": "parentLocalization"; "hideLine": "hideLine"; }, { "valueChange": "valueChange"; "open": "open"; "close": "close"; "onFocus": "focus"; "onBlur": "blur"; "minimize": "minimize"; }, never, never>;
|
|
359
364
|
}
|