@progress/kendo-angular-dateinputs 18.0.0-develop.1 → 18.0.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/esm2022/datepicker/datepicker.component.mjs +2 -0
- package/esm2022/datetimepicker/datetimepicker.component.mjs +2 -0
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/timepicker/timepicker.component.mjs +2 -0
- package/fesm2022/progress-kendo-angular-dateinputs.mjs +8 -2
- package/package.json +10 -10
|
@@ -1304,6 +1304,7 @@ export class DatePickerComponent extends MultiTabStop {
|
|
|
1304
1304
|
[tabindex]="-1"
|
|
1305
1305
|
[attr.title]="localization.get('toggle')"
|
|
1306
1306
|
[attr.aria-label]="localization.get('toggle')"
|
|
1307
|
+
[attr.disabled]="disabled ? '' : null"
|
|
1307
1308
|
[kendoEventsOutsideAngular]="{
|
|
1308
1309
|
click: handleIconClick,
|
|
1309
1310
|
mousedown: handleMousedown
|
|
@@ -1498,6 +1499,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1498
1499
|
[tabindex]="-1"
|
|
1499
1500
|
[attr.title]="localization.get('toggle')"
|
|
1500
1501
|
[attr.aria-label]="localization.get('toggle')"
|
|
1502
|
+
[attr.disabled]="disabled ? '' : null"
|
|
1501
1503
|
[kendoEventsOutsideAngular]="{
|
|
1502
1504
|
click: handleIconClick,
|
|
1503
1505
|
mousedown: handleMousedown
|
|
@@ -1620,6 +1620,7 @@ export class DateTimePickerComponent extends MultiTabStop {
|
|
|
1620
1620
|
[tabindex]="-1"
|
|
1621
1621
|
[attr.title]="localization.get('toggle')"
|
|
1622
1622
|
[attr.aria-label]="localization.get('toggle')"
|
|
1623
|
+
[attr.disabled]="disabled ? '' : null"
|
|
1623
1624
|
[kendoEventsOutsideAngular]="{
|
|
1624
1625
|
mousedown: preventMouseDown,
|
|
1625
1626
|
click: handleIconClick
|
|
@@ -2030,6 +2031,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2030
2031
|
[tabindex]="-1"
|
|
2031
2032
|
[attr.title]="localization.get('toggle')"
|
|
2032
2033
|
[attr.aria-label]="localization.get('toggle')"
|
|
2034
|
+
[attr.disabled]="disabled ? '' : null"
|
|
2033
2035
|
[kendoEventsOutsideAngular]="{
|
|
2034
2036
|
mousedown: preventMouseDown,
|
|
2035
2037
|
click: handleIconClick
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-dateinputs',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '18.0.0-develop.
|
|
12
|
+
publishDate: 1736860198,
|
|
13
|
+
version: '18.0.0-develop.11',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -1188,6 +1188,7 @@ export class TimePickerComponent extends MultiTabStop {
|
|
|
1188
1188
|
class="k-input-button k-button k-icon-button"
|
|
1189
1189
|
[attr.title]="localization.get('toggle')"
|
|
1190
1190
|
[attr.aria-label]="localization.get('toggle')"
|
|
1191
|
+
[attr.disabled]="disabled ? '' : null"
|
|
1191
1192
|
[kendoEventsOutsideAngular]="{
|
|
1192
1193
|
click: handleIconClick,
|
|
1193
1194
|
mousedown: handleMousedown
|
|
@@ -1415,6 +1416,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1415
1416
|
class="k-input-button k-button k-icon-button"
|
|
1416
1417
|
[attr.title]="localization.get('toggle')"
|
|
1417
1418
|
[attr.aria-label]="localization.get('toggle')"
|
|
1419
|
+
[attr.disabled]="disabled ? '' : null"
|
|
1418
1420
|
[kendoEventsOutsideAngular]="{
|
|
1419
1421
|
click: handleIconClick,
|
|
1420
1422
|
mousedown: handleMousedown
|
|
@@ -35,8 +35,8 @@ const packageMetadata = {
|
|
|
35
35
|
name: '@progress/kendo-angular-dateinputs',
|
|
36
36
|
productName: 'Kendo UI for Angular',
|
|
37
37
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
38
|
-
publishDate:
|
|
39
|
-
version: '18.0.0-develop.
|
|
38
|
+
publishDate: 1736860198,
|
|
39
|
+
version: '18.0.0-develop.11',
|
|
40
40
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
41
41
|
};
|
|
42
42
|
|
|
@@ -11116,6 +11116,7 @@ class DatePickerComponent extends MultiTabStop {
|
|
|
11116
11116
|
[tabindex]="-1"
|
|
11117
11117
|
[attr.title]="localization.get('toggle')"
|
|
11118
11118
|
[attr.aria-label]="localization.get('toggle')"
|
|
11119
|
+
[attr.disabled]="disabled ? '' : null"
|
|
11119
11120
|
[kendoEventsOutsideAngular]="{
|
|
11120
11121
|
click: handleIconClick,
|
|
11121
11122
|
mousedown: handleMousedown
|
|
@@ -11310,6 +11311,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
11310
11311
|
[tabindex]="-1"
|
|
11311
11312
|
[attr.title]="localization.get('toggle')"
|
|
11312
11313
|
[attr.aria-label]="localization.get('toggle')"
|
|
11314
|
+
[attr.disabled]="disabled ? '' : null"
|
|
11313
11315
|
[kendoEventsOutsideAngular]="{
|
|
11314
11316
|
click: handleIconClick,
|
|
11315
11317
|
mousedown: handleMousedown
|
|
@@ -14792,6 +14794,7 @@ class TimePickerComponent extends MultiTabStop {
|
|
|
14792
14794
|
class="k-input-button k-button k-icon-button"
|
|
14793
14795
|
[attr.title]="localization.get('toggle')"
|
|
14794
14796
|
[attr.aria-label]="localization.get('toggle')"
|
|
14797
|
+
[attr.disabled]="disabled ? '' : null"
|
|
14795
14798
|
[kendoEventsOutsideAngular]="{
|
|
14796
14799
|
click: handleIconClick,
|
|
14797
14800
|
mousedown: handleMousedown
|
|
@@ -15019,6 +15022,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
15019
15022
|
class="k-input-button k-button k-icon-button"
|
|
15020
15023
|
[attr.title]="localization.get('toggle')"
|
|
15021
15024
|
[attr.aria-label]="localization.get('toggle')"
|
|
15025
|
+
[attr.disabled]="disabled ? '' : null"
|
|
15022
15026
|
[kendoEventsOutsideAngular]="{
|
|
15023
15027
|
click: handleIconClick,
|
|
15024
15028
|
mousedown: handleMousedown
|
|
@@ -16980,6 +16984,7 @@ class DateTimePickerComponent extends MultiTabStop {
|
|
|
16980
16984
|
[tabindex]="-1"
|
|
16981
16985
|
[attr.title]="localization.get('toggle')"
|
|
16982
16986
|
[attr.aria-label]="localization.get('toggle')"
|
|
16987
|
+
[attr.disabled]="disabled ? '' : null"
|
|
16983
16988
|
[kendoEventsOutsideAngular]="{
|
|
16984
16989
|
mousedown: preventMouseDown,
|
|
16985
16990
|
click: handleIconClick
|
|
@@ -17390,6 +17395,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
17390
17395
|
[tabindex]="-1"
|
|
17391
17396
|
[attr.title]="localization.get('toggle')"
|
|
17392
17397
|
[attr.aria-label]="localization.get('toggle')"
|
|
17398
|
+
[attr.disabled]="disabled ? '' : null"
|
|
17393
17399
|
[kendoEventsOutsideAngular]="{
|
|
17394
17400
|
mousedown: preventMouseDown,
|
|
17395
17401
|
click: handleIconClick
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dateinputs",
|
|
3
|
-
"version": "18.0.0-develop.
|
|
3
|
+
"version": "18.0.0-develop.11",
|
|
4
4
|
"description": "Kendo UI for Angular Date Inputs Package - Everything you need to add date selection functionality to apps (DatePicker, TimePicker, DateInput, DateRangePicker, DateTimePicker, Calendar, and MultiViewCalendar).",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -34,19 +34,19 @@
|
|
|
34
34
|
"@angular/forms": "16 - 19",
|
|
35
35
|
"@angular/platform-browser": "16 - 19",
|
|
36
36
|
"@progress/kendo-licensing": "^1.0.2",
|
|
37
|
-
"@progress/kendo-angular-buttons": "18.0.0-develop.
|
|
38
|
-
"@progress/kendo-angular-common": "18.0.0-develop.
|
|
39
|
-
"@progress/kendo-angular-utils": "18.0.0-develop.
|
|
40
|
-
"@progress/kendo-angular-intl": "18.0.0-develop.
|
|
41
|
-
"@progress/kendo-angular-l10n": "18.0.0-develop.
|
|
42
|
-
"@progress/kendo-angular-icons": "18.0.0-develop.
|
|
43
|
-
"@progress/kendo-angular-popup": "18.0.0-develop.
|
|
44
|
-
"@progress/kendo-angular-navigation": "18.0.0-develop.
|
|
37
|
+
"@progress/kendo-angular-buttons": "18.0.0-develop.11",
|
|
38
|
+
"@progress/kendo-angular-common": "18.0.0-develop.11",
|
|
39
|
+
"@progress/kendo-angular-utils": "18.0.0-develop.11",
|
|
40
|
+
"@progress/kendo-angular-intl": "18.0.0-develop.11",
|
|
41
|
+
"@progress/kendo-angular-l10n": "18.0.0-develop.11",
|
|
42
|
+
"@progress/kendo-angular-icons": "18.0.0-develop.11",
|
|
43
|
+
"@progress/kendo-angular-popup": "18.0.0-develop.11",
|
|
44
|
+
"@progress/kendo-angular-navigation": "18.0.0-develop.11",
|
|
45
45
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"tslib": "^2.3.1",
|
|
49
|
-
"@progress/kendo-angular-schematics": "18.0.0-develop.
|
|
49
|
+
"@progress/kendo-angular-schematics": "18.0.0-develop.11",
|
|
50
50
|
"@progress/kendo-common": "^1.0.1",
|
|
51
51
|
"@progress/kendo-date-math": "^1.1.0",
|
|
52
52
|
"@progress/kendo-dateinputs-common": "^0.4.1"
|