@progress/kendo-angular-dateinputs 13.2.1-develop.6 → 13.2.1-develop.7
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/esm2020/datepicker/datepicker.component.mjs +4 -2
- package/esm2020/datetimepicker/datetimepicker.component.mjs +4 -2
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/timepicker/timepicker.component.mjs +3 -1
- package/fesm2015/progress-kendo-angular-dateinputs.mjs +16 -10
- package/fesm2020/progress-kendo-angular-dateinputs.mjs +13 -7
- package/package.json +11 -11
|
@@ -868,8 +868,10 @@ export class DatePickerComponent {
|
|
|
868
868
|
this.popupRef = null;
|
|
869
869
|
this.subscription.unsubscribe();
|
|
870
870
|
this.ariaActiveDescendantSubscription.unsubscribe();
|
|
871
|
-
|
|
872
|
-
|
|
871
|
+
if (this.dateInput) {
|
|
872
|
+
this.renderer.removeAttribute(this.dateInput.inputElement, attributeNames.ariaControls);
|
|
873
|
+
this.renderer.removeAttribute(this.dateInput.inputElement, attributeNames.ariaActiveDescendant);
|
|
874
|
+
}
|
|
873
875
|
this.cdr.detectChanges();
|
|
874
876
|
}
|
|
875
877
|
}
|
|
@@ -974,8 +974,10 @@ export class DateTimePickerComponent {
|
|
|
974
974
|
else if (isPresent(show) && !show && this.isOpen) {
|
|
975
975
|
this.actionSheet.toggle();
|
|
976
976
|
this.ariaActiveDescendantSubscription.unsubscribe();
|
|
977
|
-
|
|
978
|
-
|
|
977
|
+
if (this.dateInput) {
|
|
978
|
+
this.renderer.removeAttribute(this.dateInput.inputElement, attributeNames.ariaActiveDescendant);
|
|
979
|
+
this.renderer.removeAttribute(this.dateInput.inputElement, attributeNames.ariaControls);
|
|
980
|
+
}
|
|
979
981
|
}
|
|
980
982
|
}
|
|
981
983
|
updateActionSheetAdaptiveAppearance() {
|
|
@@ -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: '13.2.1-develop.
|
|
12
|
+
publishDate: 1690384612,
|
|
13
|
+
version: '13.2.1-develop.7',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -787,7 +787,9 @@ export class TimePickerComponent {
|
|
|
787
787
|
else if (!show && this.isOpen) {
|
|
788
788
|
// Need to disable the pointer events to avoid triggering focus on the timelist when acionsheet close down animation starts
|
|
789
789
|
this.renderer.setStyle(this.timeSelector.element.nativeElement, 'pointer-events', 'none');
|
|
790
|
-
|
|
790
|
+
if (this.dateInput) {
|
|
791
|
+
this.renderer.removeAttribute(this.dateInput.inputElement, attributeNames.ariaControls);
|
|
792
|
+
}
|
|
791
793
|
this.actionSheet.toggle();
|
|
792
794
|
}
|
|
793
795
|
this._show = show;
|
|
@@ -36,8 +36,8 @@ const packageMetadata = {
|
|
|
36
36
|
name: '@progress/kendo-angular-dateinputs',
|
|
37
37
|
productName: 'Kendo UI for Angular',
|
|
38
38
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
39
|
-
publishDate:
|
|
40
|
-
version: '13.2.1-develop.
|
|
39
|
+
publishDate: 1690384612,
|
|
40
|
+
version: '13.2.1-develop.7',
|
|
41
41
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
42
42
|
};
|
|
43
43
|
|
|
@@ -9614,7 +9614,7 @@ class DatePickerComponent {
|
|
|
9614
9614
|
this.toggleFocus();
|
|
9615
9615
|
}
|
|
9616
9616
|
togglePopup(show) {
|
|
9617
|
-
var _a
|
|
9617
|
+
var _a;
|
|
9618
9618
|
if (show === this._show) {
|
|
9619
9619
|
return;
|
|
9620
9620
|
}
|
|
@@ -9641,8 +9641,10 @@ class DatePickerComponent {
|
|
|
9641
9641
|
this.popupRef = null;
|
|
9642
9642
|
this.subscription.unsubscribe();
|
|
9643
9643
|
this.ariaActiveDescendantSubscription.unsubscribe();
|
|
9644
|
-
|
|
9645
|
-
|
|
9644
|
+
if (this.dateInput) {
|
|
9645
|
+
this.renderer.removeAttribute(this.dateInput.inputElement, attributeNames.ariaControls);
|
|
9646
|
+
this.renderer.removeAttribute(this.dateInput.inputElement, attributeNames.ariaActiveDescendant);
|
|
9647
|
+
}
|
|
9646
9648
|
this.cdr.detectChanges();
|
|
9647
9649
|
}
|
|
9648
9650
|
}
|
|
@@ -12884,7 +12886,7 @@ class TimePickerComponent {
|
|
|
12884
12886
|
this.toggleFocus();
|
|
12885
12887
|
}
|
|
12886
12888
|
toggleActionSheet(show) {
|
|
12887
|
-
var _a
|
|
12889
|
+
var _a;
|
|
12888
12890
|
if (show === this._show) {
|
|
12889
12891
|
return;
|
|
12890
12892
|
}
|
|
@@ -12897,7 +12899,9 @@ class TimePickerComponent {
|
|
|
12897
12899
|
else if (!show && this.isOpen) {
|
|
12898
12900
|
// Need to disable the pointer events to avoid triggering focus on the timelist when acionsheet close down animation starts
|
|
12899
12901
|
this.renderer.setStyle(this.timeSelector.element.nativeElement, 'pointer-events', 'none');
|
|
12900
|
-
|
|
12902
|
+
if (this.dateInput) {
|
|
12903
|
+
this.renderer.removeAttribute(this.dateInput.inputElement, attributeNames.ariaControls);
|
|
12904
|
+
}
|
|
12901
12905
|
this.actionSheet.toggle();
|
|
12902
12906
|
}
|
|
12903
12907
|
this._show = show;
|
|
@@ -14553,7 +14557,7 @@ class DateTimePickerComponent {
|
|
|
14553
14557
|
this.resetActiveTab();
|
|
14554
14558
|
}
|
|
14555
14559
|
toggleActionSheet(show) {
|
|
14556
|
-
var _a
|
|
14560
|
+
var _a;
|
|
14557
14561
|
if (isPresent(show) && show && !this.isOpen) {
|
|
14558
14562
|
this.actionSheet.toggle();
|
|
14559
14563
|
this.updateActionSheetAdaptiveAppearance();
|
|
@@ -14564,8 +14568,10 @@ class DateTimePickerComponent {
|
|
|
14564
14568
|
else if (isPresent(show) && !show && this.isOpen) {
|
|
14565
14569
|
this.actionSheet.toggle();
|
|
14566
14570
|
this.ariaActiveDescendantSubscription.unsubscribe();
|
|
14567
|
-
|
|
14568
|
-
|
|
14571
|
+
if (this.dateInput) {
|
|
14572
|
+
this.renderer.removeAttribute(this.dateInput.inputElement, attributeNames.ariaActiveDescendant);
|
|
14573
|
+
this.renderer.removeAttribute(this.dateInput.inputElement, attributeNames.ariaControls);
|
|
14574
|
+
}
|
|
14569
14575
|
}
|
|
14570
14576
|
}
|
|
14571
14577
|
updateActionSheetAdaptiveAppearance() {
|
|
@@ -36,8 +36,8 @@ const packageMetadata = {
|
|
|
36
36
|
name: '@progress/kendo-angular-dateinputs',
|
|
37
37
|
productName: 'Kendo UI for Angular',
|
|
38
38
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
39
|
-
publishDate:
|
|
40
|
-
version: '13.2.1-develop.
|
|
39
|
+
publishDate: 1690384612,
|
|
40
|
+
version: '13.2.1-develop.7',
|
|
41
41
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
42
42
|
};
|
|
43
43
|
|
|
@@ -9628,8 +9628,10 @@ class DatePickerComponent {
|
|
|
9628
9628
|
this.popupRef = null;
|
|
9629
9629
|
this.subscription.unsubscribe();
|
|
9630
9630
|
this.ariaActiveDescendantSubscription.unsubscribe();
|
|
9631
|
-
|
|
9632
|
-
|
|
9631
|
+
if (this.dateInput) {
|
|
9632
|
+
this.renderer.removeAttribute(this.dateInput.inputElement, attributeNames.ariaControls);
|
|
9633
|
+
this.renderer.removeAttribute(this.dateInput.inputElement, attributeNames.ariaActiveDescendant);
|
|
9634
|
+
}
|
|
9633
9635
|
this.cdr.detectChanges();
|
|
9634
9636
|
}
|
|
9635
9637
|
}
|
|
@@ -12875,7 +12877,9 @@ class TimePickerComponent {
|
|
|
12875
12877
|
else if (!show && this.isOpen) {
|
|
12876
12878
|
// Need to disable the pointer events to avoid triggering focus on the timelist when acionsheet close down animation starts
|
|
12877
12879
|
this.renderer.setStyle(this.timeSelector.element.nativeElement, 'pointer-events', 'none');
|
|
12878
|
-
|
|
12880
|
+
if (this.dateInput) {
|
|
12881
|
+
this.renderer.removeAttribute(this.dateInput.inputElement, attributeNames.ariaControls);
|
|
12882
|
+
}
|
|
12879
12883
|
this.actionSheet.toggle();
|
|
12880
12884
|
}
|
|
12881
12885
|
this._show = show;
|
|
@@ -14531,8 +14535,10 @@ class DateTimePickerComponent {
|
|
|
14531
14535
|
else if (isPresent(show) && !show && this.isOpen) {
|
|
14532
14536
|
this.actionSheet.toggle();
|
|
14533
14537
|
this.ariaActiveDescendantSubscription.unsubscribe();
|
|
14534
|
-
|
|
14535
|
-
|
|
14538
|
+
if (this.dateInput) {
|
|
14539
|
+
this.renderer.removeAttribute(this.dateInput.inputElement, attributeNames.ariaActiveDescendant);
|
|
14540
|
+
this.renderer.removeAttribute(this.dateInput.inputElement, attributeNames.ariaControls);
|
|
14541
|
+
}
|
|
14536
14542
|
}
|
|
14537
14543
|
}
|
|
14538
14544
|
updateActionSheetAdaptiveAppearance() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-dateinputs",
|
|
3
|
-
"version": "13.2.1-develop.
|
|
3
|
+
"version": "13.2.1-develop.7",
|
|
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",
|
|
@@ -33,20 +33,20 @@
|
|
|
33
33
|
"@angular/core": "13 - 16",
|
|
34
34
|
"@angular/platform-browser": "13 - 16",
|
|
35
35
|
"@progress/kendo-licensing": "^1.0.2",
|
|
36
|
-
"@progress/kendo-angular-common": "13.2.1-develop.
|
|
37
|
-
"@progress/kendo-angular-intl": "13.2.1-develop.
|
|
38
|
-
"@progress/kendo-angular-l10n": "13.2.1-develop.
|
|
39
|
-
"@progress/kendo-angular-icons": "13.2.1-develop.
|
|
40
|
-
"@progress/kendo-angular-popup": "13.2.1-develop.
|
|
41
|
-
"@progress/kendo-angular-navigation": "13.2.1-develop.
|
|
36
|
+
"@progress/kendo-angular-common": "13.2.1-develop.7",
|
|
37
|
+
"@progress/kendo-angular-intl": "13.2.1-develop.7",
|
|
38
|
+
"@progress/kendo-angular-l10n": "13.2.1-develop.7",
|
|
39
|
+
"@progress/kendo-angular-icons": "13.2.1-develop.7",
|
|
40
|
+
"@progress/kendo-angular-popup": "13.2.1-develop.7",
|
|
41
|
+
"@progress/kendo-angular-navigation": "13.2.1-develop.7",
|
|
42
42
|
"rxjs": "^6.5.3 || ^7.0.0",
|
|
43
|
-
"@progress/kendo-angular-buttons": "13.2.1-develop.
|
|
44
|
-
"@progress/kendo-angular-inputs": "13.2.1-develop.
|
|
45
|
-
"@progress/kendo-angular-label": "13.2.1-develop.
|
|
43
|
+
"@progress/kendo-angular-buttons": "13.2.1-develop.7",
|
|
44
|
+
"@progress/kendo-angular-inputs": "13.2.1-develop.7",
|
|
45
|
+
"@progress/kendo-angular-label": "13.2.1-develop.7"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"tslib": "^2.3.1",
|
|
49
|
-
"@progress/kendo-angular-schematics": "13.2.1-develop.
|
|
49
|
+
"@progress/kendo-angular-schematics": "13.2.1-develop.7",
|
|
50
50
|
"@progress/kendo-common": "^0.2.0",
|
|
51
51
|
"@progress/kendo-date-math": "^1.1.0"
|
|
52
52
|
},
|