@progress/kendo-angular-inputs 19.2.0-develop.6 → 19.2.0-develop.8
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.
|
@@ -18,6 +18,7 @@ export declare class CheckBoxDirective {
|
|
|
18
18
|
private renderer;
|
|
19
19
|
private hostElement;
|
|
20
20
|
kendoClass: boolean;
|
|
21
|
+
get isDisabled(): boolean;
|
|
21
22
|
/**
|
|
22
23
|
* Sets the `size` property to specify the width and height of the CheckBox
|
|
23
24
|
* ([see example]({% slug appearance_checkboxdirective %}#toc-size)).
|
|
@@ -20,6 +20,9 @@ export class CheckBoxDirective {
|
|
|
20
20
|
renderer;
|
|
21
21
|
hostElement;
|
|
22
22
|
kendoClass = true;
|
|
23
|
+
get isDisabled() {
|
|
24
|
+
return this.hostElement.nativeElement.disabled;
|
|
25
|
+
}
|
|
23
26
|
/**
|
|
24
27
|
* Sets the `size` property to specify the width and height of the CheckBox
|
|
25
28
|
* ([see example]({% slug appearance_checkboxdirective %}#toc-size)).
|
|
@@ -72,7 +75,7 @@ export class CheckBoxDirective {
|
|
|
72
75
|
}
|
|
73
76
|
}
|
|
74
77
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CheckBoxDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
75
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: CheckBoxDirective, isStandalone: true, selector: "input[kendoCheckBox]", inputs: { size: "size", rounded: "rounded" }, host: { properties: { "class.k-checkbox": "this.kendoClass" } }, ngImport: i0 });
|
|
78
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: CheckBoxDirective, isStandalone: true, selector: "input[kendoCheckBox]", inputs: { size: "size", rounded: "rounded" }, host: { properties: { "class.k-checkbox": "this.kendoClass", "class.k-disabled": "this.isDisabled" } }, ngImport: i0 });
|
|
76
79
|
}
|
|
77
80
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CheckBoxDirective, decorators: [{
|
|
78
81
|
type: Directive,
|
|
@@ -83,6 +86,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
83
86
|
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { kendoClass: [{
|
|
84
87
|
type: HostBinding,
|
|
85
88
|
args: ['class.k-checkbox']
|
|
89
|
+
}], isDisabled: [{
|
|
90
|
+
type: HostBinding,
|
|
91
|
+
args: ['class.k-disabled']
|
|
86
92
|
}], size: [{
|
|
87
93
|
type: Input
|
|
88
94
|
}], rounded: [{
|
|
@@ -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: '19.2.0-develop.
|
|
13
|
+
publishDate: 1751032431,
|
|
14
|
+
version: '19.2.0-develop.8',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -554,8 +554,8 @@ const packageMetadata = {
|
|
|
554
554
|
productName: 'Kendo UI for Angular',
|
|
555
555
|
productCode: 'KENDOUIANGULAR',
|
|
556
556
|
productCodes: ['KENDOUIANGULAR'],
|
|
557
|
-
publishDate:
|
|
558
|
-
version: '19.2.0-develop.
|
|
557
|
+
publishDate: 1751032431,
|
|
558
|
+
version: '19.2.0-develop.8',
|
|
559
559
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
560
560
|
};
|
|
561
561
|
|
|
@@ -6889,6 +6889,9 @@ class CheckBoxDirective {
|
|
|
6889
6889
|
renderer;
|
|
6890
6890
|
hostElement;
|
|
6891
6891
|
kendoClass = true;
|
|
6892
|
+
get isDisabled() {
|
|
6893
|
+
return this.hostElement.nativeElement.disabled;
|
|
6894
|
+
}
|
|
6892
6895
|
/**
|
|
6893
6896
|
* Sets the `size` property to specify the width and height of the CheckBox
|
|
6894
6897
|
* ([see example]({% slug appearance_checkboxdirective %}#toc-size)).
|
|
@@ -6941,7 +6944,7 @@ class CheckBoxDirective {
|
|
|
6941
6944
|
}
|
|
6942
6945
|
}
|
|
6943
6946
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CheckBoxDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6944
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: CheckBoxDirective, isStandalone: true, selector: "input[kendoCheckBox]", inputs: { size: "size", rounded: "rounded" }, host: { properties: { "class.k-checkbox": "this.kendoClass" } }, ngImport: i0 });
|
|
6947
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: CheckBoxDirective, isStandalone: true, selector: "input[kendoCheckBox]", inputs: { size: "size", rounded: "rounded" }, host: { properties: { "class.k-checkbox": "this.kendoClass", "class.k-disabled": "this.isDisabled" } }, ngImport: i0 });
|
|
6945
6948
|
}
|
|
6946
6949
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CheckBoxDirective, decorators: [{
|
|
6947
6950
|
type: Directive,
|
|
@@ -6952,6 +6955,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
6952
6955
|
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { kendoClass: [{
|
|
6953
6956
|
type: HostBinding,
|
|
6954
6957
|
args: ['class.k-checkbox']
|
|
6958
|
+
}], isDisabled: [{
|
|
6959
|
+
type: HostBinding,
|
|
6960
|
+
args: ['class.k-disabled']
|
|
6955
6961
|
}], size: [{
|
|
6956
6962
|
type: Input
|
|
6957
6963
|
}], rounded: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-inputs",
|
|
3
|
-
"version": "19.2.0-develop.
|
|
3
|
+
"version": "19.2.0-develop.8",
|
|
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": 1751032431,
|
|
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.5.0",
|
|
43
|
-
"@progress/kendo-angular-buttons": "19.2.0-develop.
|
|
44
|
-
"@progress/kendo-angular-common": "19.2.0-develop.
|
|
45
|
-
"@progress/kendo-angular-utils": "19.2.0-develop.
|
|
46
|
-
"@progress/kendo-angular-navigation": "19.2.0-develop.
|
|
47
|
-
"@progress/kendo-angular-dialog": "19.2.0-develop.
|
|
48
|
-
"@progress/kendo-angular-intl": "19.2.0-develop.
|
|
49
|
-
"@progress/kendo-angular-l10n": "19.2.0-develop.
|
|
50
|
-
"@progress/kendo-angular-popup": "19.2.0-develop.
|
|
51
|
-
"@progress/kendo-angular-icons": "19.2.0-develop.
|
|
43
|
+
"@progress/kendo-angular-buttons": "19.2.0-develop.8",
|
|
44
|
+
"@progress/kendo-angular-common": "19.2.0-develop.8",
|
|
45
|
+
"@progress/kendo-angular-utils": "19.2.0-develop.8",
|
|
46
|
+
"@progress/kendo-angular-navigation": "19.2.0-develop.8",
|
|
47
|
+
"@progress/kendo-angular-dialog": "19.2.0-develop.8",
|
|
48
|
+
"@progress/kendo-angular-intl": "19.2.0-develop.8",
|
|
49
|
+
"@progress/kendo-angular-l10n": "19.2.0-develop.8",
|
|
50
|
+
"@progress/kendo-angular-popup": "19.2.0-develop.8",
|
|
51
|
+
"@progress/kendo-angular-icons": "19.2.0-develop.8",
|
|
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": "19.2.0-develop.
|
|
56
|
+
"@progress/kendo-angular-schematics": "19.2.0-develop.8",
|
|
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"
|