@progress/kendo-angular-inputs 24.1.1-develop.1 → 24.2.0-develop.10
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/checkbox/checkbox.directive.d.ts +0 -1
- package/colorpicker/color-gradient.component.d.ts +1 -1
- package/colorpicker/color-palette.component.d.ts +1 -1
- package/colorpicker/colorpicker.component.d.ts +1 -1
- package/colorpicker/flatcolorpicker.component.d.ts +1 -1
- package/fesm2022/progress-kendo-angular-inputs.mjs +40 -72
- package/maskedtextbox/maskedtextbox.component.d.ts +0 -1
- package/numerictextbox/numerictextbox.component.d.ts +0 -1
- package/package-metadata.mjs +2 -2
- package/package.json +12 -12
- package/signature/signature.component.d.ts +0 -1
- package/textarea/textarea.component.d.ts +0 -1
- package/textarea/textarea.directive.d.ts +0 -1
- package/textbox/textbox.directive.d.ts +0 -1
|
@@ -17,7 +17,6 @@ import * as i0 from "@angular/core";
|
|
|
17
17
|
export declare class CheckBoxDirective {
|
|
18
18
|
private renderer;
|
|
19
19
|
private hostElement;
|
|
20
|
-
kendoClass: boolean;
|
|
21
20
|
get isDisabled(): boolean;
|
|
22
21
|
/**
|
|
23
22
|
* Sets the `size` property to specify the width and height of the CheckBox
|
|
@@ -23,7 +23,7 @@ import * as i0 from "@angular/core";
|
|
|
23
23
|
* ```
|
|
24
24
|
*
|
|
25
25
|
* @remarks
|
|
26
|
-
* Supported children components are: {@link
|
|
26
|
+
* Supported children components are: {@link ColorPickerCustomMessagesComponent}.
|
|
27
27
|
*/
|
|
28
28
|
export declare class ColorGradientComponent implements OnInit, OnChanges, OnDestroy, ControlValueAccessor {
|
|
29
29
|
private host;
|
|
@@ -20,7 +20,7 @@ import * as i0 from "@angular/core";
|
|
|
20
20
|
* ```
|
|
21
21
|
*
|
|
22
22
|
* @remarks
|
|
23
|
-
* Supported children components are: {@link
|
|
23
|
+
* Supported children components are: {@link ColorPickerCustomMessagesComponent}.
|
|
24
24
|
*/
|
|
25
25
|
export declare class ColorPaletteComponent implements OnInit, AfterViewInit, OnDestroy, OnChanges, ControlValueAccessor {
|
|
26
26
|
host: ElementRef;
|
|
@@ -27,7 +27,7 @@ import * as i0 from "@angular/core";
|
|
|
27
27
|
* ```
|
|
28
28
|
*
|
|
29
29
|
* @remarks
|
|
30
|
-
* Supported children components are: {@link
|
|
30
|
+
* Supported children components are: {@link ColorPickerCustomMessagesComponent}.
|
|
31
31
|
*/
|
|
32
32
|
export declare class ColorPickerComponent implements OnInit, AfterViewInit, OnChanges, OnDestroy, ControlValueAccessor {
|
|
33
33
|
private host;
|
|
@@ -25,7 +25,7 @@ import * as i0 from "@angular/core";
|
|
|
25
25
|
* ```
|
|
26
26
|
*
|
|
27
27
|
* @remarks
|
|
28
|
-
* Supported children components are: {@link
|
|
28
|
+
* Supported children components are: {@link ColorPickerCustomMessagesComponent}.
|
|
29
29
|
*/
|
|
30
30
|
export declare class FlatColorPickerComponent implements OnInit, AfterViewInit, OnDestroy, ControlValueAccessor {
|
|
31
31
|
host: ElementRef;
|
|
@@ -583,8 +583,8 @@ const packageMetadata = {
|
|
|
583
583
|
productName: 'Kendo UI for Angular',
|
|
584
584
|
productCode: 'KENDOUIANGULAR',
|
|
585
585
|
productCodes: ['KENDOUIANGULAR'],
|
|
586
|
-
publishDate:
|
|
587
|
-
version: '24.
|
|
586
|
+
publishDate: 1782305633,
|
|
587
|
+
version: '24.2.0-develop.10',
|
|
588
588
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
589
589
|
};
|
|
590
590
|
|
|
@@ -3107,7 +3107,6 @@ class TextBoxDirective {
|
|
|
3107
3107
|
renderer;
|
|
3108
3108
|
inputElement;
|
|
3109
3109
|
ngZone;
|
|
3110
|
-
hostClasses = true;
|
|
3111
3110
|
/**
|
|
3112
3111
|
* @hidden
|
|
3113
3112
|
*/
|
|
@@ -3155,6 +3154,8 @@ class TextBoxDirective {
|
|
|
3155
3154
|
this.renderer = renderer;
|
|
3156
3155
|
this.inputElement = inputElement;
|
|
3157
3156
|
this.ngZone = ngZone;
|
|
3157
|
+
this.renderer.addClass(this.inputElement.nativeElement, 'k-input');
|
|
3158
|
+
this.renderer.addClass(this.inputElement.nativeElement, 'k-textbox');
|
|
3158
3159
|
}
|
|
3159
3160
|
ngAfterViewInit() {
|
|
3160
3161
|
const input = this.inputElement.nativeElement;
|
|
@@ -3177,7 +3178,7 @@ class TextBoxDirective {
|
|
|
3177
3178
|
this.listeners.forEach(listener => listener());
|
|
3178
3179
|
}
|
|
3179
3180
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: TextBoxDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3180
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: TextBoxDirective, isStandalone: true, selector: "input[kendoTextBox]", inputs: { value: "value" },
|
|
3181
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: TextBoxDirective, isStandalone: true, selector: "input[kendoTextBox]", inputs: { value: "value" }, providers: [{
|
|
3181
3182
|
provide: KendoInput,
|
|
3182
3183
|
useExisting: forwardRef(() => TextBoxDirective)
|
|
3183
3184
|
}], ngImport: i0 });
|
|
@@ -3192,13 +3193,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
3192
3193
|
}],
|
|
3193
3194
|
standalone: true
|
|
3194
3195
|
}]
|
|
3195
|
-
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: {
|
|
3196
|
-
type: HostBinding,
|
|
3197
|
-
args: ['class.k-textbox']
|
|
3198
|
-
}, {
|
|
3199
|
-
type: HostBinding,
|
|
3200
|
-
args: ['class.k-input']
|
|
3201
|
-
}], value: [{
|
|
3196
|
+
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { value: [{
|
|
3202
3197
|
type: Input
|
|
3203
3198
|
}] } });
|
|
3204
3199
|
|
|
@@ -3216,7 +3211,6 @@ class TextAreaDirective {
|
|
|
3216
3211
|
zone;
|
|
3217
3212
|
changeDetector;
|
|
3218
3213
|
injector;
|
|
3219
|
-
elementClasses = true;
|
|
3220
3214
|
autofillClass = true;
|
|
3221
3215
|
direction;
|
|
3222
3216
|
/**
|
|
@@ -3273,6 +3267,8 @@ class TextAreaDirective {
|
|
|
3273
3267
|
this.changeDetector = changeDetector;
|
|
3274
3268
|
this.injector = injector;
|
|
3275
3269
|
this.direction = rtl ? 'rtl' : 'ltr';
|
|
3270
|
+
this.renderer.addClass(this.element.nativeElement, 'k-input');
|
|
3271
|
+
this.renderer.addClass(this.element.nativeElement, 'k-textarea');
|
|
3276
3272
|
}
|
|
3277
3273
|
/**
|
|
3278
3274
|
* @hidden
|
|
@@ -3422,7 +3418,7 @@ class TextAreaDirective {
|
|
|
3422
3418
|
}
|
|
3423
3419
|
}
|
|
3424
3420
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: TextAreaDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.Injector }, { token: RTL, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3425
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: TextAreaDirective, isStandalone: true, selector: "textarea[kendoTextArea]", inputs: { autoSize: "autoSize", value: "value" }, outputs: { valueChange: "valueChange" }, host: { properties: { "class.k-
|
|
3421
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: TextAreaDirective, isStandalone: true, selector: "textarea[kendoTextArea]", inputs: { autoSize: "autoSize", value: "value" }, outputs: { valueChange: "valueChange" }, host: { properties: { "class.k-autofill": "this.autofillClass", "attr.dir": "this.direction" } }, providers: [{
|
|
3426
3422
|
provide: NG_VALUE_ACCESSOR,
|
|
3427
3423
|
useExisting: forwardRef(() => TextAreaDirective),
|
|
3428
3424
|
multi: true
|
|
@@ -3450,13 +3446,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
3450
3446
|
}, {
|
|
3451
3447
|
type: Inject,
|
|
3452
3448
|
args: [RTL]
|
|
3453
|
-
}] }], propDecorators: {
|
|
3454
|
-
type: HostBinding,
|
|
3455
|
-
args: ['class.k-textarea']
|
|
3456
|
-
}, {
|
|
3457
|
-
type: HostBinding,
|
|
3458
|
-
args: ['class.k-input']
|
|
3459
|
-
}], autofillClass: [{
|
|
3449
|
+
}] }], propDecorators: { autofillClass: [{
|
|
3460
3450
|
type: HostBinding,
|
|
3461
3451
|
args: ['class.k-autofill']
|
|
3462
3452
|
}], direction: [{
|
|
@@ -4078,7 +4068,6 @@ class NumericTextBoxComponent {
|
|
|
4078
4068
|
get disableClass() {
|
|
4079
4069
|
return this.disabled;
|
|
4080
4070
|
}
|
|
4081
|
-
hostClasses = true;
|
|
4082
4071
|
/**
|
|
4083
4072
|
* @hidden
|
|
4084
4073
|
*/
|
|
@@ -4142,6 +4131,8 @@ class NumericTextBoxComponent {
|
|
|
4142
4131
|
this.hostElement = hostElement;
|
|
4143
4132
|
validatePackage(packageMetadata);
|
|
4144
4133
|
this.direction = localizationService.rtl ? 'rtl' : 'ltr';
|
|
4134
|
+
this.renderer.addClass(this.hostElement.nativeElement, 'k-input');
|
|
4135
|
+
this.renderer.addClass(this.hostElement.nativeElement, 'k-numerictextbox');
|
|
4145
4136
|
}
|
|
4146
4137
|
ngOnInit() {
|
|
4147
4138
|
this.subscriptions = this.localizationService
|
|
@@ -4834,7 +4825,7 @@ class NumericTextBoxComponent {
|
|
|
4834
4825
|
setHTMLAttributes(attributesToRender, this.renderer, this.numericInput.nativeElement, this.ngZone);
|
|
4835
4826
|
}
|
|
4836
4827
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: NumericTextBoxComponent, deps: [{ token: i1$1.IntlService }, { token: i0.Renderer2 }, { token: i1.LocalizationService }, { token: i0.Injector }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
4837
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.25", type: NumericTextBoxComponent, isStandalone: true, selector: "kendo-numerictextbox", inputs: { focusableId: "focusableId", disabled: "disabled", readonly: "readonly", title: "title", autoCorrect: "autoCorrect", format: "format", max: "max", min: "min", decimals: "decimals", placeholder: "placeholder", step: "step", spinners: "spinners", rangeValidation: "rangeValidation", tabindex: "tabindex", tabIndex: "tabIndex", changeValueOnScroll: "changeValueOnScroll", selectOnFocus: "selectOnFocus", value: "value", maxlength: "maxlength", size: "size", rounded: "rounded", fillMode: "fillMode", inputAttributes: "inputAttributes" }, outputs: { valueChange: "valueChange", onFocus: "focus", onBlur: "blur", inputFocus: "inputFocus", inputBlur: "inputBlur" }, host: { properties: { "class.k-readonly": "this.readonly", "attr.dir": "this.direction", "class.k-disabled": "this.disableClass"
|
|
4828
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.25", type: NumericTextBoxComponent, isStandalone: true, selector: "kendo-numerictextbox", inputs: { focusableId: "focusableId", disabled: "disabled", readonly: "readonly", title: "title", autoCorrect: "autoCorrect", format: "format", max: "max", min: "min", decimals: "decimals", placeholder: "placeholder", step: "step", spinners: "spinners", rangeValidation: "rangeValidation", tabindex: "tabindex", tabIndex: "tabIndex", changeValueOnScroll: "changeValueOnScroll", selectOnFocus: "selectOnFocus", value: "value", maxlength: "maxlength", size: "size", rounded: "rounded", fillMode: "fillMode", inputAttributes: "inputAttributes" }, outputs: { valueChange: "valueChange", onFocus: "focus", onBlur: "blur", inputFocus: "inputFocus", inputBlur: "inputBlur" }, host: { properties: { "class.k-readonly": "this.readonly", "attr.dir": "this.direction", "class.k-disabled": "this.disableClass" } }, providers: [
|
|
4838
4829
|
LocalizationService,
|
|
4839
4830
|
{ provide: L10N_PREFIX, useValue: 'kendo.numerictextbox' },
|
|
4840
4831
|
{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => NumericTextBoxComponent), multi: true },
|
|
@@ -5138,12 +5129,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
5138
5129
|
}], disableClass: [{
|
|
5139
5130
|
type: HostBinding,
|
|
5140
5131
|
args: ['class.k-disabled']
|
|
5141
|
-
}], hostClasses: [{
|
|
5142
|
-
type: HostBinding,
|
|
5143
|
-
args: ['class.k-input']
|
|
5144
|
-
}, {
|
|
5145
|
-
type: HostBinding,
|
|
5146
|
-
args: ['class.k-numerictextbox']
|
|
5147
5132
|
}] } });
|
|
5148
5133
|
|
|
5149
5134
|
/**
|
|
@@ -5330,9 +5315,8 @@ const mask = ({ prompt, promptPlaceholder }) => rule => new Parser(stream => {
|
|
|
5330
5315
|
* @hidden
|
|
5331
5316
|
*/
|
|
5332
5317
|
const literal = _token => new Parser(stream => {
|
|
5333
|
-
|
|
5334
|
-
|
|
5335
|
-
if (char === _token) {
|
|
5318
|
+
const { char, control } = stream.peek();
|
|
5319
|
+
if (char === _token && control === _token) {
|
|
5336
5320
|
stream.eat();
|
|
5337
5321
|
return new Result(_token, stream, ResultType.Literal);
|
|
5338
5322
|
}
|
|
@@ -5828,7 +5812,6 @@ class MaskedTextBoxComponent {
|
|
|
5828
5812
|
*/
|
|
5829
5813
|
valueChange = new EventEmitter();
|
|
5830
5814
|
direction;
|
|
5831
|
-
hostClasses = true;
|
|
5832
5815
|
get hostDisabledClass() {
|
|
5833
5816
|
return this.disabled;
|
|
5834
5817
|
}
|
|
@@ -5877,6 +5860,8 @@ class MaskedTextBoxComponent {
|
|
|
5877
5860
|
validatePackage(packageMetadata);
|
|
5878
5861
|
this.direction = rtl ? 'rtl' : 'ltr';
|
|
5879
5862
|
this.updateService();
|
|
5863
|
+
this.renderer.addClass(this.hostElement.nativeElement, 'k-input');
|
|
5864
|
+
this.renderer.addClass(this.hostElement.nativeElement, 'k-maskedtextbox');
|
|
5880
5865
|
}
|
|
5881
5866
|
ngOnInit() {
|
|
5882
5867
|
if (this.hostElement) {
|
|
@@ -6249,7 +6234,7 @@ class MaskedTextBoxComponent {
|
|
|
6249
6234
|
setHTMLAttributes(attributesToRender, this.renderer, this.input.nativeElement, this.ngZone);
|
|
6250
6235
|
}
|
|
6251
6236
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: MaskedTextBoxComponent, deps: [{ token: MaskingService }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }, { token: RTL, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
6252
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.25", type: MaskedTextBoxComponent, isStandalone: true, selector: "kendo-maskedtextbox", inputs: { focusableId: "focusableId", disabled: "disabled", readonly: "readonly", title: "title", size: "size", rounded: "rounded", fillMode: "fillMode", mask: "mask", value: "value", rules: "rules", prompt: "prompt", promptPlaceholder: "promptPlaceholder", includeLiterals: "includeLiterals", maskOnFocus: "maskOnFocus", maskValidation: "maskValidation", tabindex: "tabindex", tabIndex: "tabIndex", inputAttributes: "inputAttributes" }, outputs: { onFocus: "focus", onBlur: "blur", inputFocus: "inputFocus", inputBlur: "inputBlur", valueChange: "valueChange" }, host: { listeners: { "paste": "pasteHandler($event)", "input": "inputHandler($event)" }, properties: { "class.k-readonly": "this.readonly", "attr.dir": "this.direction", "class.k-
|
|
6237
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.25", type: MaskedTextBoxComponent, isStandalone: true, selector: "kendo-maskedtextbox", inputs: { focusableId: "focusableId", disabled: "disabled", readonly: "readonly", title: "title", size: "size", rounded: "rounded", fillMode: "fillMode", mask: "mask", value: "value", rules: "rules", prompt: "prompt", promptPlaceholder: "promptPlaceholder", includeLiterals: "includeLiterals", maskOnFocus: "maskOnFocus", maskValidation: "maskValidation", tabindex: "tabindex", tabIndex: "tabIndex", inputAttributes: "inputAttributes" }, outputs: { onFocus: "focus", onBlur: "blur", inputFocus: "inputFocus", inputBlur: "inputBlur", valueChange: "valueChange" }, host: { listeners: { "paste": "pasteHandler($event)", "input": "inputHandler($event)" }, properties: { "class.k-readonly": "this.readonly", "attr.dir": "this.direction", "class.k-disabled": "this.hostDisabledClass" } }, providers: [
|
|
6253
6238
|
MaskingService,
|
|
6254
6239
|
{
|
|
6255
6240
|
multi: true,
|
|
@@ -6458,12 +6443,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
6458
6443
|
}], direction: [{
|
|
6459
6444
|
type: HostBinding,
|
|
6460
6445
|
args: ['attr.dir']
|
|
6461
|
-
}], hostClasses: [{
|
|
6462
|
-
type: HostBinding,
|
|
6463
|
-
args: ['class.k-input']
|
|
6464
|
-
}, {
|
|
6465
|
-
type: HostBinding,
|
|
6466
|
-
args: ['class.k-maskedtextbox']
|
|
6467
6446
|
}], hostDisabledClass: [{
|
|
6468
6447
|
type: HostBinding,
|
|
6469
6448
|
args: ['class.k-disabled']
|
|
@@ -6998,7 +6977,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
6998
6977
|
class CheckBoxDirective {
|
|
6999
6978
|
renderer;
|
|
7000
6979
|
hostElement;
|
|
7001
|
-
kendoClass = true;
|
|
7002
6980
|
get isDisabled() {
|
|
7003
6981
|
return this.hostElement.nativeElement.disabled;
|
|
7004
6982
|
}
|
|
@@ -7030,6 +7008,7 @@ class CheckBoxDirective {
|
|
|
7030
7008
|
constructor(renderer, hostElement) {
|
|
7031
7009
|
this.renderer = renderer;
|
|
7032
7010
|
this.hostElement = hostElement;
|
|
7011
|
+
this.renderer.addClass(this.hostElement.nativeElement, 'k-checkbox');
|
|
7033
7012
|
}
|
|
7034
7013
|
ngAfterViewInit() {
|
|
7035
7014
|
const stylingInputs = ['size', 'rounded'];
|
|
@@ -7048,7 +7027,7 @@ class CheckBoxDirective {
|
|
|
7048
7027
|
}
|
|
7049
7028
|
}
|
|
7050
7029
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: CheckBoxDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
7051
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: CheckBoxDirective, isStandalone: true, selector: "input[kendoCheckBox]", inputs: { size: "size", rounded: "rounded" }, host: { properties: { "class.k-
|
|
7030
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.25", type: CheckBoxDirective, isStandalone: true, selector: "input[kendoCheckBox]", inputs: { size: "size", rounded: "rounded" }, host: { properties: { "class.k-disabled": "this.isDisabled" } }, ngImport: i0 });
|
|
7052
7031
|
}
|
|
7053
7032
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: CheckBoxDirective, decorators: [{
|
|
7054
7033
|
type: Directive,
|
|
@@ -7056,10 +7035,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
7056
7035
|
selector: 'input[kendoCheckBox]',
|
|
7057
7036
|
standalone: true
|
|
7058
7037
|
}]
|
|
7059
|
-
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }], propDecorators: {
|
|
7060
|
-
type: HostBinding,
|
|
7061
|
-
args: ['class.k-checkbox']
|
|
7062
|
-
}], isDisabled: [{
|
|
7038
|
+
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }], propDecorators: { isDisabled: [{
|
|
7063
7039
|
type: HostBinding,
|
|
7064
7040
|
args: ['class.k-disabled']
|
|
7065
7041
|
}], size: [{
|
|
@@ -7852,10 +7828,10 @@ class TextBoxComponent {
|
|
|
7852
7828
|
this.hostElement = hostElement;
|
|
7853
7829
|
validatePackage(packageMetadata);
|
|
7854
7830
|
this.direction = localizationService.rtl ? 'rtl' : 'ltr';
|
|
7855
|
-
}
|
|
7856
|
-
ngOnInit() {
|
|
7857
7831
|
this.renderer.addClass(this.hostElement.nativeElement, 'k-textbox');
|
|
7858
7832
|
this.renderer.addClass(this.hostElement.nativeElement, 'k-input');
|
|
7833
|
+
}
|
|
7834
|
+
ngOnInit() {
|
|
7859
7835
|
this.control = this.injector.get(NgControl, null);
|
|
7860
7836
|
this.checkClearButton();
|
|
7861
7837
|
this.subscriptions = this.localizationService.changes.subscribe(({ rtl }) => {
|
|
@@ -9542,7 +9518,7 @@ let serial$3 = 0;
|
|
|
9542
9518
|
* ```
|
|
9543
9519
|
*
|
|
9544
9520
|
* @remarks
|
|
9545
|
-
* Supported children components are: {@link
|
|
9521
|
+
* Supported children components are: {@link ColorPickerCustomMessagesComponent}.
|
|
9546
9522
|
*/
|
|
9547
9523
|
class ColorGradientComponent {
|
|
9548
9524
|
host;
|
|
@@ -10780,7 +10756,7 @@ let serial$2 = 0;
|
|
|
10780
10756
|
* ```
|
|
10781
10757
|
*
|
|
10782
10758
|
* @remarks
|
|
10783
|
-
* Supported children components are: {@link
|
|
10759
|
+
* Supported children components are: {@link ColorPickerCustomMessagesComponent}.
|
|
10784
10760
|
*/
|
|
10785
10761
|
class ColorPaletteComponent {
|
|
10786
10762
|
host;
|
|
@@ -11825,7 +11801,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
11825
11801
|
* ```
|
|
11826
11802
|
*
|
|
11827
11803
|
* @remarks
|
|
11828
|
-
* Supported children components are: {@link
|
|
11804
|
+
* Supported children components are: {@link ColorPickerCustomMessagesComponent}.
|
|
11829
11805
|
*/
|
|
11830
11806
|
class FlatColorPickerComponent {
|
|
11831
11807
|
host;
|
|
@@ -12118,11 +12094,11 @@ class FlatColorPickerComponent {
|
|
|
12118
12094
|
}
|
|
12119
12095
|
event.stopImmediatePropagation();
|
|
12120
12096
|
const gradient = this.gradientElement?.nativeElement;
|
|
12121
|
-
const palette = this.palette?.host
|
|
12122
|
-
if (this.activeView === 'gradient') {
|
|
12097
|
+
const palette = this.palette?.host?.nativeElement;
|
|
12098
|
+
if (this.activeView === 'gradient' && gradient) {
|
|
12123
12099
|
gradient.focus();
|
|
12124
12100
|
}
|
|
12125
|
-
else {
|
|
12101
|
+
else if (palette) {
|
|
12126
12102
|
palette.focus();
|
|
12127
12103
|
}
|
|
12128
12104
|
}
|
|
@@ -13006,7 +12982,7 @@ let nextColorPickerId = 0;
|
|
|
13006
12982
|
* ```
|
|
13007
12983
|
*
|
|
13008
12984
|
* @remarks
|
|
13009
|
-
* Supported children components are: {@link
|
|
12985
|
+
* Supported children components are: {@link ColorPickerCustomMessagesComponent}.
|
|
13010
12986
|
*/
|
|
13011
12987
|
class ColorPickerComponent {
|
|
13012
12988
|
host;
|
|
@@ -13721,7 +13697,9 @@ class ColorPickerComponent {
|
|
|
13721
13697
|
const gradientDragHandle = this.flatColorPicker.gradient?.gradientDragHandle;
|
|
13722
13698
|
const palette = this.flatColorPicker.palette?.host;
|
|
13723
13699
|
const elementToFocus = gradientDragHandle ? gradientDragHandle : palette;
|
|
13724
|
-
elementToFocus
|
|
13700
|
+
if (elementToFocus) {
|
|
13701
|
+
elementToFocus.nativeElement.focus({ preventScroll: true });
|
|
13702
|
+
}
|
|
13725
13703
|
}
|
|
13726
13704
|
});
|
|
13727
13705
|
}
|
|
@@ -16277,7 +16255,6 @@ class SignatureComponent {
|
|
|
16277
16255
|
cd;
|
|
16278
16256
|
localization;
|
|
16279
16257
|
cdr;
|
|
16280
|
-
staticHostClasses = true;
|
|
16281
16258
|
/**
|
|
16282
16259
|
* @hidden
|
|
16283
16260
|
*/
|
|
@@ -16584,6 +16561,8 @@ class SignatureComponent {
|
|
|
16584
16561
|
this.cdr = cdr;
|
|
16585
16562
|
validatePackage(packageMetadata);
|
|
16586
16563
|
this.direction = localization.rtl ? 'rtl' : 'ltr';
|
|
16564
|
+
this.renderer.addClass(this.element.nativeElement, 'k-signature');
|
|
16565
|
+
this.renderer.addClass(this.element.nativeElement, 'k-input');
|
|
16587
16566
|
}
|
|
16588
16567
|
ngOnInit() {
|
|
16589
16568
|
this.subscriptions = this.localization
|
|
@@ -16885,7 +16864,7 @@ class SignatureComponent {
|
|
|
16885
16864
|
return this.localization.get(key);
|
|
16886
16865
|
}
|
|
16887
16866
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: SignatureComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i1.LocalizationService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
16888
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.25", type: SignatureComponent, isStandalone: true, selector: "kendo-signature", inputs: { 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" }, outputs: { valueChange: "valueChange", open: "open", close: "close", onFocus: "focus", onBlur: "blur", minimize: "minimize" }, host: { properties: { "
|
|
16867
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.25", type: SignatureComponent, isStandalone: true, selector: "kendo-signature", inputs: { 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" }, outputs: { valueChange: "valueChange", open: "open", close: "close", onFocus: "focus", onBlur: "blur", minimize: "minimize" }, host: { properties: { "attr.dir": "this.direction", "class.k-readonly": "this.readonly", "class.k-disabled": "this.disabled", "style.width.px": "this.width", "style.height.px": "this.height" } }, providers: [
|
|
16889
16868
|
LocalizationService,
|
|
16890
16869
|
{ provide: L10N_PREFIX, useValue: 'kendo.signature' },
|
|
16891
16870
|
{ multi: true, provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => SignatureComponent) },
|
|
@@ -17116,13 +17095,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
17116
17095
|
standalone: true,
|
|
17117
17096
|
imports: [LocalizedSignatureMessagesDirective, ButtonComponent, DialogComponent]
|
|
17118
17097
|
}]
|
|
17119
|
-
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }, { type: i1.LocalizationService }, { type: i0.ChangeDetectorRef }], propDecorators: {
|
|
17120
|
-
type: HostBinding,
|
|
17121
|
-
args: ['class.k-signature']
|
|
17122
|
-
}, {
|
|
17123
|
-
type: HostBinding,
|
|
17124
|
-
args: ['class.k-input']
|
|
17125
|
-
}], focusableId: [{
|
|
17098
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }, { type: i1.LocalizationService }, { type: i0.ChangeDetectorRef }], propDecorators: { focusableId: [{
|
|
17126
17099
|
type: Input
|
|
17127
17100
|
}], direction: [{
|
|
17128
17101
|
type: HostBinding,
|
|
@@ -17577,7 +17550,6 @@ class TextAreaComponent extends TextFieldsBase {
|
|
|
17577
17550
|
* @hidden
|
|
17578
17551
|
*/
|
|
17579
17552
|
focusableId = `k-${guid()}`;
|
|
17580
|
-
hostClasses = true;
|
|
17581
17553
|
get flowCol() {
|
|
17582
17554
|
return this.flow === 'vertical';
|
|
17583
17555
|
}
|
|
@@ -17773,6 +17745,8 @@ class TextAreaComponent extends TextFieldsBase {
|
|
|
17773
17745
|
this.hostElement = hostElement;
|
|
17774
17746
|
validatePackage(packageMetadata);
|
|
17775
17747
|
this.direction = localizationService.rtl ? 'rtl' : 'ltr';
|
|
17748
|
+
this.renderer.addClass(this.hostElement.nativeElement, 'k-input');
|
|
17749
|
+
this.renderer.addClass(this.hostElement.nativeElement, 'k-textarea');
|
|
17776
17750
|
}
|
|
17777
17751
|
ngAfterContentInit() {
|
|
17778
17752
|
this.ngZone.onStable.pipe((take(1))).subscribe(() => {
|
|
@@ -18077,7 +18051,7 @@ class TextAreaComponent extends TextFieldsBase {
|
|
|
18077
18051
|
setHTMLAttributes(attributesToRender, this.renderer, this.input.nativeElement, this.ngZone);
|
|
18078
18052
|
}
|
|
18079
18053
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: TextAreaComponent, deps: [{ token: i1.LocalizationService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
18080
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.25", type: TextAreaComponent, isStandalone: true, selector: "kendo-textarea", inputs: { focusableId: "focusableId", flow: "flow", inputAttributes: "inputAttributes", adornmentsOrientation: "adornmentsOrientation", rows: "rows", cols: "cols", maxlength: "maxlength", maxResizableRows: "maxResizableRows", tabindex: "tabindex", tabIndex: "tabIndex", resizable: "resizable", size: "size", rounded: "rounded", fillMode: "fillMode", showPrefixSeparator: "showPrefixSeparator", showSuffixSeparator: "showSuffixSeparator" }, outputs: { onFocus: "focus", onBlur: "blur", valueChange: "valueChange" }, host: { properties: { "class
|
|
18054
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.25", type: TextAreaComponent, isStandalone: true, selector: "kendo-textarea", inputs: { focusableId: "focusableId", flow: "flow", inputAttributes: "inputAttributes", adornmentsOrientation: "adornmentsOrientation", rows: "rows", cols: "cols", maxlength: "maxlength", maxResizableRows: "maxResizableRows", tabindex: "tabindex", tabIndex: "tabIndex", resizable: "resizable", size: "size", rounded: "rounded", fillMode: "fillMode", showPrefixSeparator: "showPrefixSeparator", showSuffixSeparator: "showSuffixSeparator" }, outputs: { onFocus: "focus", onBlur: "blur", valueChange: "valueChange" }, host: { properties: { "class.!k-flex-col": "this.flowCol", "class.!k-flex-row": "this.flowRow" } }, providers: [
|
|
18081
18055
|
LocalizationService,
|
|
18082
18056
|
{ provide: L10N_PREFIX, useValue: 'kendo.textarea' },
|
|
18083
18057
|
{
|
|
@@ -18201,12 +18175,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
18201
18175
|
}]
|
|
18202
18176
|
}], ctorParameters: () => [{ type: i1.LocalizationService }, { type: i0.NgZone }, { type: i0.ChangeDetectorRef }, { type: i0.Renderer2 }, { type: i0.Injector }, { type: i0.ElementRef }], propDecorators: { focusableId: [{
|
|
18203
18177
|
type: Input
|
|
18204
|
-
}], hostClasses: [{
|
|
18205
|
-
type: HostBinding,
|
|
18206
|
-
args: ['class.k-textarea']
|
|
18207
|
-
}, {
|
|
18208
|
-
type: HostBinding,
|
|
18209
|
-
args: ['class.k-input']
|
|
18210
18178
|
}], flowCol: [{
|
|
18211
18179
|
type: HostBinding,
|
|
18212
18180
|
args: ['class.\!k-flex-col']
|
|
@@ -171,7 +171,6 @@ export declare class MaskedTextBoxComponent implements ControlValueAccessor, OnC
|
|
|
171
171
|
*/
|
|
172
172
|
valueChange: EventEmitter<string>;
|
|
173
173
|
direction: string;
|
|
174
|
-
hostClasses: boolean;
|
|
175
174
|
get hostDisabledClass(): boolean;
|
|
176
175
|
/**
|
|
177
176
|
* Returns the `ElementRef` of the visible `input` element.
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "24.
|
|
10
|
+
"publishDate": 1782305633,
|
|
11
|
+
"version": "24.2.0-develop.10",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-inputs",
|
|
3
|
-
"version": "24.
|
|
3
|
+
"version": "24.2.0-develop.10",
|
|
4
4
|
"description": "Kendo UI for Angular Inputs Package - Everything you need to build professional form functionality (Checkbox, ColorGradient, ColorPalette, ColorPicker, FlatColorPicker, FormField, MaskedTextBox, NumericTextBox, RadioButton, RangeSlider, Slider, Switch, TextArea, and TextBox Components)",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"package": {
|
|
56
56
|
"productName": "Kendo UI for Angular",
|
|
57
57
|
"productCode": "KENDOUIANGULAR",
|
|
58
|
-
"publishDate":
|
|
58
|
+
"publishDate": 1782305633,
|
|
59
59
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
60
60
|
}
|
|
61
61
|
},
|
|
@@ -67,20 +67,20 @@
|
|
|
67
67
|
"@angular/platform-browser": "19 - 22",
|
|
68
68
|
"@progress/kendo-drawing": "^1.25.0",
|
|
69
69
|
"@progress/kendo-licensing": "^1.11.0",
|
|
70
|
-
"@progress/kendo-angular-buttons": "24.
|
|
71
|
-
"@progress/kendo-angular-common": "24.
|
|
72
|
-
"@progress/kendo-angular-utils": "24.
|
|
73
|
-
"@progress/kendo-angular-navigation": "24.
|
|
74
|
-
"@progress/kendo-angular-dialog": "24.
|
|
75
|
-
"@progress/kendo-angular-intl": "24.
|
|
76
|
-
"@progress/kendo-angular-l10n": "24.
|
|
77
|
-
"@progress/kendo-angular-popup": "24.
|
|
78
|
-
"@progress/kendo-angular-icons": "24.
|
|
70
|
+
"@progress/kendo-angular-buttons": "24.2.0-develop.10",
|
|
71
|
+
"@progress/kendo-angular-common": "24.2.0-develop.10",
|
|
72
|
+
"@progress/kendo-angular-utils": "24.2.0-develop.10",
|
|
73
|
+
"@progress/kendo-angular-navigation": "24.2.0-develop.10",
|
|
74
|
+
"@progress/kendo-angular-dialog": "24.2.0-develop.10",
|
|
75
|
+
"@progress/kendo-angular-intl": "24.2.0-develop.10",
|
|
76
|
+
"@progress/kendo-angular-l10n": "24.2.0-develop.10",
|
|
77
|
+
"@progress/kendo-angular-popup": "24.2.0-develop.10",
|
|
78
|
+
"@progress/kendo-angular-icons": "24.2.0-develop.10",
|
|
79
79
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
80
80
|
},
|
|
81
81
|
"dependencies": {
|
|
82
82
|
"tslib": "^2.3.1",
|
|
83
|
-
"@progress/kendo-angular-schematics": "24.
|
|
83
|
+
"@progress/kendo-angular-schematics": "24.2.0-develop.10",
|
|
84
84
|
"@progress/kendo-common": "^1.0.1",
|
|
85
85
|
"@progress/kendo-draggable": "^3.0.0",
|
|
86
86
|
"@progress/kendo-inputs-common": "^3.1.0"
|