@progress/kendo-angular-dateinputs 18.0.0-develop.9 → 18.0.0
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 +4 -3
- package/esm2022/timepicker/timepicker.component.mjs +2 -0
- package/fesm2022/progress-kendo-angular-dateinputs.mjs +10 -3
- package/package.json +17 -11
|
@@ -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
|
|
@@ -8,8 +8,9 @@
|
|
|
8
8
|
export const packageMetadata = {
|
|
9
9
|
name: '@progress/kendo-angular-dateinputs',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
productCode: 'KENDOUIANGULAR',
|
|
12
|
+
productCodes: ['KENDOUIANGULAR'],
|
|
13
|
+
publishDate: 1737465047,
|
|
14
|
+
version: '18.0.0',
|
|
14
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
16
|
};
|
|
@@ -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
|
|
@@ -34,9 +34,10 @@ import { AdaptiveService } from '@progress/kendo-angular-utils';
|
|
|
34
34
|
const packageMetadata = {
|
|
35
35
|
name: '@progress/kendo-angular-dateinputs',
|
|
36
36
|
productName: 'Kendo UI for Angular',
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
37
|
+
productCode: 'KENDOUIANGULAR',
|
|
38
|
+
productCodes: ['KENDOUIANGULAR'],
|
|
39
|
+
publishDate: 1737465047,
|
|
40
|
+
version: '18.0.0',
|
|
40
41
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
41
42
|
};
|
|
42
43
|
|
|
@@ -11116,6 +11117,7 @@ class DatePickerComponent extends MultiTabStop {
|
|
|
11116
11117
|
[tabindex]="-1"
|
|
11117
11118
|
[attr.title]="localization.get('toggle')"
|
|
11118
11119
|
[attr.aria-label]="localization.get('toggle')"
|
|
11120
|
+
[attr.disabled]="disabled ? '' : null"
|
|
11119
11121
|
[kendoEventsOutsideAngular]="{
|
|
11120
11122
|
click: handleIconClick,
|
|
11121
11123
|
mousedown: handleMousedown
|
|
@@ -11310,6 +11312,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
11310
11312
|
[tabindex]="-1"
|
|
11311
11313
|
[attr.title]="localization.get('toggle')"
|
|
11312
11314
|
[attr.aria-label]="localization.get('toggle')"
|
|
11315
|
+
[attr.disabled]="disabled ? '' : null"
|
|
11313
11316
|
[kendoEventsOutsideAngular]="{
|
|
11314
11317
|
click: handleIconClick,
|
|
11315
11318
|
mousedown: handleMousedown
|
|
@@ -14792,6 +14795,7 @@ class TimePickerComponent extends MultiTabStop {
|
|
|
14792
14795
|
class="k-input-button k-button k-icon-button"
|
|
14793
14796
|
[attr.title]="localization.get('toggle')"
|
|
14794
14797
|
[attr.aria-label]="localization.get('toggle')"
|
|
14798
|
+
[attr.disabled]="disabled ? '' : null"
|
|
14795
14799
|
[kendoEventsOutsideAngular]="{
|
|
14796
14800
|
click: handleIconClick,
|
|
14797
14801
|
mousedown: handleMousedown
|
|
@@ -15019,6 +15023,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
15019
15023
|
class="k-input-button k-button k-icon-button"
|
|
15020
15024
|
[attr.title]="localization.get('toggle')"
|
|
15021
15025
|
[attr.aria-label]="localization.get('toggle')"
|
|
15026
|
+
[attr.disabled]="disabled ? '' : null"
|
|
15022
15027
|
[kendoEventsOutsideAngular]="{
|
|
15023
15028
|
click: handleIconClick,
|
|
15024
15029
|
mousedown: handleMousedown
|
|
@@ -16980,6 +16985,7 @@ class DateTimePickerComponent extends MultiTabStop {
|
|
|
16980
16985
|
[tabindex]="-1"
|
|
16981
16986
|
[attr.title]="localization.get('toggle')"
|
|
16982
16987
|
[attr.aria-label]="localization.get('toggle')"
|
|
16988
|
+
[attr.disabled]="disabled ? '' : null"
|
|
16983
16989
|
[kendoEventsOutsideAngular]="{
|
|
16984
16990
|
mousedown: preventMouseDown,
|
|
16985
16991
|
click: handleIconClick
|
|
@@ -17390,6 +17396,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
17390
17396
|
[tabindex]="-1"
|
|
17391
17397
|
[attr.title]="localization.get('toggle')"
|
|
17392
17398
|
[attr.aria-label]="localization.get('toggle')"
|
|
17399
|
+
[attr.disabled]="disabled ? '' : null"
|
|
17393
17400
|
[kendoEventsOutsideAngular]="{
|
|
17394
17401
|
mousedown: preventMouseDown,
|
|
17395
17402
|
click: handleIconClick
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dateinputs",
|
|
3
|
-
"version": "18.0.0
|
|
3
|
+
"version": "18.0.0",
|
|
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",
|
|
@@ -25,7 +25,13 @@
|
|
|
25
25
|
"timepicker"
|
|
26
26
|
],
|
|
27
27
|
"@progress": {
|
|
28
|
-
"friendlyName": "DateInputs"
|
|
28
|
+
"friendlyName": "DateInputs",
|
|
29
|
+
"package": {
|
|
30
|
+
"productName": "Kendo UI for Angular",
|
|
31
|
+
"productCode": "KENDOUIANGULAR",
|
|
32
|
+
"publishDate": 1737465047,
|
|
33
|
+
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
34
|
+
}
|
|
29
35
|
},
|
|
30
36
|
"peerDependencies": {
|
|
31
37
|
"@angular/animations": "16 - 19",
|
|
@@ -34,19 +40,19 @@
|
|
|
34
40
|
"@angular/forms": "16 - 19",
|
|
35
41
|
"@angular/platform-browser": "16 - 19",
|
|
36
42
|
"@progress/kendo-licensing": "^1.0.2",
|
|
37
|
-
"@progress/kendo-angular-buttons": "18.0.0
|
|
38
|
-
"@progress/kendo-angular-common": "18.0.0
|
|
39
|
-
"@progress/kendo-angular-utils": "18.0.0
|
|
40
|
-
"@progress/kendo-angular-intl": "18.0.0
|
|
41
|
-
"@progress/kendo-angular-l10n": "18.0.0
|
|
42
|
-
"@progress/kendo-angular-icons": "18.0.0
|
|
43
|
-
"@progress/kendo-angular-popup": "18.0.0
|
|
44
|
-
"@progress/kendo-angular-navigation": "18.0.0
|
|
43
|
+
"@progress/kendo-angular-buttons": "18.0.0",
|
|
44
|
+
"@progress/kendo-angular-common": "18.0.0",
|
|
45
|
+
"@progress/kendo-angular-utils": "18.0.0",
|
|
46
|
+
"@progress/kendo-angular-intl": "18.0.0",
|
|
47
|
+
"@progress/kendo-angular-l10n": "18.0.0",
|
|
48
|
+
"@progress/kendo-angular-icons": "18.0.0",
|
|
49
|
+
"@progress/kendo-angular-popup": "18.0.0",
|
|
50
|
+
"@progress/kendo-angular-navigation": "18.0.0",
|
|
45
51
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
46
52
|
},
|
|
47
53
|
"dependencies": {
|
|
48
54
|
"tslib": "^2.3.1",
|
|
49
|
-
"@progress/kendo-angular-schematics": "18.0.0
|
|
55
|
+
"@progress/kendo-angular-schematics": "18.0.0",
|
|
50
56
|
"@progress/kendo-common": "^1.0.1",
|
|
51
57
|
"@progress/kendo-date-math": "^1.1.0",
|
|
52
58
|
"@progress/kendo-dateinputs-common": "^0.4.1"
|