@progress/kendo-angular-dateinputs 19.3.1-develop.2 → 19.3.1-develop.4

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.
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1755516843,
14
- version: '19.3.1-develop.2',
13
+ publishDate: 1755685659,
14
+ version: '19.3.1-develop.4',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
16
16
  };
@@ -99,7 +99,12 @@ export class TimePickerDOMService {
99
99
  this.itemHeight = parseFloat(itemStyle.getPropertyValue('height'));
100
100
  }
101
101
  else {
102
- this.itemHeight = this.sumCSSProperties(itemStyle, 'height', 'padding-top', 'padding-bottom');
102
+ if (itemStyle['box-sizing'] === 'border-box') {
103
+ this.itemHeight = parseFloat(itemStyle.getPropertyValue('height'));
104
+ }
105
+ else {
106
+ this.itemHeight = this.sumCSSProperties(itemStyle, 'height', 'padding-top', 'padding-bottom');
107
+ }
103
108
  }
104
109
  this.timeListHeight = parseFloat(listStyle.getPropertyValue('height'));
105
110
  hostContainer.removeChild(wrapper);
@@ -36,8 +36,8 @@ const packageMetadata = {
36
36
  productName: 'Kendo UI for Angular',
37
37
  productCode: 'KENDOUIANGULAR',
38
38
  productCodes: ['KENDOUIANGULAR'],
39
- publishDate: 1755516843,
40
- version: '19.3.1-develop.2',
39
+ publishDate: 1755685659,
40
+ version: '19.3.1-develop.4',
41
41
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
42
42
  };
43
43
 
@@ -11632,7 +11632,12 @@ class TimePickerDOMService {
11632
11632
  this.itemHeight = parseFloat(itemStyle.getPropertyValue('height'));
11633
11633
  }
11634
11634
  else {
11635
- this.itemHeight = this.sumCSSProperties(itemStyle, 'height', 'padding-top', 'padding-bottom');
11635
+ if (itemStyle['box-sizing'] === 'border-box') {
11636
+ this.itemHeight = parseFloat(itemStyle.getPropertyValue('height'));
11637
+ }
11638
+ else {
11639
+ this.itemHeight = this.sumCSSProperties(itemStyle, 'height', 'padding-top', 'padding-bottom');
11640
+ }
11636
11641
  }
11637
11642
  this.timeListHeight = parseFloat(listStyle.getPropertyValue('height'));
11638
11643
  hostContainer.removeChild(wrapper);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-dateinputs",
3
- "version": "19.3.1-develop.2",
3
+ "version": "19.3.1-develop.4",
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",
@@ -79,7 +79,7 @@
79
79
  "package": {
80
80
  "productName": "Kendo UI for Angular",
81
81
  "productCode": "KENDOUIANGULAR",
82
- "publishDate": 1755516843,
82
+ "publishDate": 1755685659,
83
83
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
84
84
  }
85
85
  },
@@ -90,19 +90,19 @@
90
90
  "@angular/forms": "16 - 20",
91
91
  "@angular/platform-browser": "16 - 20",
92
92
  "@progress/kendo-licensing": "^1.7.0",
93
- "@progress/kendo-angular-buttons": "19.3.1-develop.2",
94
- "@progress/kendo-angular-common": "19.3.1-develop.2",
95
- "@progress/kendo-angular-utils": "19.3.1-develop.2",
96
- "@progress/kendo-angular-intl": "19.3.1-develop.2",
97
- "@progress/kendo-angular-l10n": "19.3.1-develop.2",
98
- "@progress/kendo-angular-icons": "19.3.1-develop.2",
99
- "@progress/kendo-angular-popup": "19.3.1-develop.2",
100
- "@progress/kendo-angular-navigation": "19.3.1-develop.2",
93
+ "@progress/kendo-angular-buttons": "19.3.1-develop.4",
94
+ "@progress/kendo-angular-common": "19.3.1-develop.4",
95
+ "@progress/kendo-angular-utils": "19.3.1-develop.4",
96
+ "@progress/kendo-angular-intl": "19.3.1-develop.4",
97
+ "@progress/kendo-angular-l10n": "19.3.1-develop.4",
98
+ "@progress/kendo-angular-icons": "19.3.1-develop.4",
99
+ "@progress/kendo-angular-popup": "19.3.1-develop.4",
100
+ "@progress/kendo-angular-navigation": "19.3.1-develop.4",
101
101
  "rxjs": "^6.5.3 || ^7.0.0"
102
102
  },
103
103
  "dependencies": {
104
104
  "tslib": "^2.3.1",
105
- "@progress/kendo-angular-schematics": "19.3.1-develop.2",
105
+ "@progress/kendo-angular-schematics": "19.3.1-develop.4",
106
106
  "@progress/kendo-common": "^1.0.1",
107
107
  "@progress/kendo-date-math": "^1.1.0",
108
108
  "@progress/kendo-dateinputs-common": "^0.4.6",