@progress/kendo-angular-dateinputs 5.3.1-dev.202201070925 → 6.0.1-dev.202201310951
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/LICENSE.md +1 -1
- package/NOTICE.txt +119 -79
- package/README.md +1 -1
- package/dist/cdn/js/kendo-angular-dateinputs.js +2 -2
- package/dist/cdn/main.js +1 -1
- package/dist/es/calendar/calendar.component.js +4 -2
- package/dist/es/calendar/header.component.js +1 -1
- package/dist/es/calendar/multiview-calendar.component.js +1 -1
- package/dist/es/calendar/services/dom.service.js +1 -1
- package/dist/es/calendar/view.component.js +1 -1
- package/dist/es/common/models/fillmode.js +4 -0
- package/dist/es/common/models/rounded.js +4 -0
- package/dist/es/common/models/size.js +4 -0
- package/dist/es/dateinput/dateinput.component.js +143 -18
- package/dist/es/datepicker/datepicker.component.js +127 -13
- package/dist/es/daterange/date-range-input.js +1 -1
- package/dist/es/datetimepicker/datetimepicker.component.js +147 -11
- package/dist/es/package-metadata.js +1 -1
- package/dist/es/timepicker/services/dom.service.js +12 -8
- package/dist/es/timepicker/timelist.component.js +3 -2
- package/dist/es/timepicker/timepicker.component.js +130 -13
- package/dist/es/timepicker/timeselector.component.js +2 -2
- package/dist/es/util.js +37 -0
- package/dist/es2015/calendar/calendar.component.js +4 -2
- package/dist/es2015/calendar/header.component.js +4 -4
- package/dist/es2015/calendar/multiview-calendar.component.js +1 -1
- package/dist/es2015/calendar/services/dom.service.js +1 -1
- package/dist/es2015/calendar/view.component.js +1 -1
- package/dist/es2015/common/models/fillmode.d.ts +14 -0
- package/dist/es2015/common/models/fillmode.js +4 -0
- package/dist/es2015/common/models/rounded.d.ts +15 -0
- package/dist/es2015/common/models/rounded.js +4 -0
- package/dist/es2015/common/models/size.d.ts +14 -0
- package/dist/es2015/common/models/size.js +4 -0
- package/dist/es2015/dateinput/dateinput.component.d.ts +49 -8
- package/dist/es2015/dateinput/dateinput.component.js +183 -68
- package/dist/es2015/datepicker/datepicker.component.d.ts +47 -5
- package/dist/es2015/datepicker/datepicker.component.js +152 -49
- package/dist/es2015/daterange/date-range-input.js +1 -1
- package/dist/es2015/datetimepicker/datetimepicker.component.d.ts +56 -6
- package/dist/es2015/datetimepicker/datetimepicker.component.js +186 -63
- package/dist/es2015/index.metadata.json +1 -1
- package/dist/es2015/package-metadata.js +1 -1
- package/dist/es2015/timepicker/services/dom.service.d.ts +1 -0
- package/dist/es2015/timepicker/services/dom.service.js +12 -8
- package/dist/es2015/timepicker/timelist.component.js +3 -2
- package/dist/es2015/timepicker/timepicker.component.d.ts +50 -5
- package/dist/es2015/timepicker/timepicker.component.js +174 -69
- package/dist/es2015/timepicker/timeselector.component.js +7 -5
- package/dist/es2015/util.d.ts +18 -0
- package/dist/es2015/util.js +37 -0
- package/dist/fesm2015/index.js +759 -268
- package/dist/fesm5/index.js +603 -68
- package/dist/npm/calendar/calendar.component.js +4 -2
- package/dist/npm/calendar/header.component.js +1 -1
- package/dist/npm/calendar/multiview-calendar.component.js +1 -1
- package/dist/npm/calendar/services/dom.service.js +1 -1
- package/dist/npm/calendar/view.component.js +1 -1
- package/dist/npm/common/models/fillmode.js +6 -0
- package/dist/npm/common/models/rounded.js +6 -0
- package/dist/npm/common/models/size.js +6 -0
- package/dist/npm/dateinput/dateinput.component.js +142 -17
- package/dist/npm/datepicker/datepicker.component.js +126 -12
- package/dist/npm/daterange/date-range-input.js +1 -1
- package/dist/npm/datetimepicker/datetimepicker.component.js +146 -10
- package/dist/npm/package-metadata.js +1 -1
- package/dist/npm/timepicker/services/dom.service.js +15 -10
- package/dist/npm/timepicker/timelist.component.js +3 -2
- package/dist/npm/timepicker/timepicker.component.js +129 -12
- package/dist/npm/timepicker/timeselector.component.js +2 -2
- package/dist/npm/util.js +37 -0
- package/dist/systemjs/kendo-angular-dateinputs.js +1 -1
- package/package.json +7 -7
|
@@ -513,11 +513,13 @@ var CalendarComponent = /** @class */ (function () {
|
|
|
513
513
|
};
|
|
514
514
|
CalendarComponent.prototype.ngOnDestroy = function () {
|
|
515
515
|
this.scrollSyncService.destroy();
|
|
516
|
-
this.viewChangeSubscription.unsubscribe();
|
|
517
516
|
this.domEvents.forEach(function (unbindCallback) { return unbindCallback(); });
|
|
518
517
|
if (this.pickerService) {
|
|
519
518
|
this.pickerService.calendar = null;
|
|
520
519
|
}
|
|
520
|
+
if (this.viewChangeSubscription) {
|
|
521
|
+
this.viewChangeSubscription.unsubscribe();
|
|
522
|
+
}
|
|
521
523
|
if (this.pageChangeSubscription) {
|
|
522
524
|
this.pageChangeSubscription.unsubscribe();
|
|
523
525
|
}
|
|
@@ -1095,7 +1097,7 @@ var CalendarComponent = /** @class */ (function () {
|
|
|
1095
1097
|
], CalendarComponent.prototype, "calendarTabIndex", null);
|
|
1096
1098
|
tslib_1.__decorate([
|
|
1097
1099
|
core_1.HostBinding('attr.aria-disabled'),
|
|
1098
|
-
core_1.HostBinding('class.k-
|
|
1100
|
+
core_1.HostBinding('class.k-disabled'),
|
|
1099
1101
|
tslib_1.__metadata("design:type", Boolean),
|
|
1100
1102
|
tslib_1.__metadata("design:paramtypes", [])
|
|
1101
1103
|
], CalendarComponent.prototype, "ariaDisabled", null);
|
|
@@ -159,7 +159,7 @@ var HeaderComponent = /** @class */ (function () {
|
|
|
159
159
|
HeaderComponent = tslib_1.__decorate([
|
|
160
160
|
core_1.Component({
|
|
161
161
|
selector: 'kendo-calendar-header',
|
|
162
|
-
template: "\n <span class=\"k-button k-flat k-
|
|
162
|
+
template: "\n <span class=\"k-button k-button-md k-rounded-md k-button-flat k-button-flat-base k-calendar-title\" [class.k-disabled]=\"!navigate\"\n [kendoEventsOutsideAngular]=\"{\n click: handleNavigation\n }\"\n [scope]=\"this\">\n <ng-template [ngIf]=\"!templateRef\">{{title}}</ng-template>\n <ng-template\n [ngIf]=\"templateRef\"\n [ngTemplateOutlet]=\"templateRef\"\n [ngTemplateOutletContext]=\"{ $implicit: title, activeView: activeViewValue, date: currentDate }\"\n ></ng-template>\n </span>\n <span class=\"k-spacer\"></span>\n <span class=\"k-calendar-nav k-hstack\">\n <button\n *ngIf=\"showNavigationButtons\"\n class=\"k-button k-button-md k-rounded-md k-button-flat k-button-flat-base k-icon-button k-prev-view\"\n type=\"button\"\n [attr.aria-disabled]=\"isPrevDisabled\"\n [disabled]=\"isPrevDisabled\"\n [title]=\"prevButtonTitle\"\n (click)=\"prevButtonClick.emit()\"\n >\n <span class=\"k-icon k-i-arrow-60-left\"></span>\n </button>\n <span\n class=\"k-today k-nav-today\"\n [class.k-disabled]=\"!todayAvailable\"\n [kendoEventsOutsideAngular]=\"{\n click: handleTodayClick\n }\"\n [scope]=\"this\"\n >\n {{ todayMessage }}\n </span>\n <button\n *ngIf=\"showNavigationButtons\"\n class=\"k-button k-button-md k-rounded-md k-button-flat k-button-flat-base k-icon-button k-next-view\"\n type=\"button\"\n [attr.aria-disabled]=\"isNextDisabled\"\n [disabled]=\"isNextDisabled\"\n [title]=\"nextButtonTitle\"\n (click)=\"nextButtonClick.emit()\"\n >\n <span class=\"k-icon k-i-arrow-60-right\"></span>\n </button>\n </span>\n "
|
|
163
163
|
}),
|
|
164
164
|
tslib_1.__metadata("design:paramtypes", [bus_view_service_1.BusViewService,
|
|
165
165
|
core_1.ChangeDetectorRef,
|
|
@@ -995,7 +995,7 @@ var MultiViewCalendarComponent = /** @class */ (function () {
|
|
|
995
995
|
], MultiViewCalendarComponent.prototype, "calendarTabIndex", null);
|
|
996
996
|
tslib_1.__decorate([
|
|
997
997
|
core_1.HostBinding('attr.aria-disabled'),
|
|
998
|
-
core_1.HostBinding('class.k-
|
|
998
|
+
core_1.HostBinding('class.k-disabled'),
|
|
999
999
|
tslib_1.__metadata("design:type", Boolean),
|
|
1000
1000
|
tslib_1.__metadata("design:paramtypes", [])
|
|
1001
1001
|
], MultiViewCalendarComponent.prototype, "ariaDisabled", null);
|
|
@@ -19,7 +19,7 @@ var tr = util_1.domContainerFactory('tr');
|
|
|
19
19
|
var tbody = util_1.domContainerFactory('tbody');
|
|
20
20
|
var thead = util_1.domContainerFactory('thead');
|
|
21
21
|
var table = util_1.domContainerFactory('table');
|
|
22
|
-
var monthHeader = function () { return (div("\n <span class=\"k-button k-flat k-
|
|
22
|
+
var monthHeader = function () { return (div("\n <span class=\"k-button k-button-md k-rounded-md k-button-flat k-button-flat-base k-calendar-title\">March 2017</span>\n <span class=\"k-spacer\"></span>\n <span class=\"k-calendar-nav k-hstack\">\n <span class=\"k-today k-nav-today\">TODAY</span>\n </span>\n ", 'k-calendar-header k-hstack')); };
|
|
23
23
|
var ɵ0 = monthHeader;
|
|
24
24
|
exports.ɵ0 = ɵ0;
|
|
25
25
|
var monthWeekHeader = function () { return (table([
|
|
@@ -124,7 +124,7 @@ var ViewComponent = /** @class */ (function () {
|
|
|
124
124
|
'k-state-selected': !context.isOtherMonth && (context.isSelected || isRangeStart || isRangeEnd),
|
|
125
125
|
'k-today': !context.isOtherMonth && context.isToday,
|
|
126
126
|
'k-weekend': context.isWeekend,
|
|
127
|
-
'k-
|
|
127
|
+
'k-disabled': context.isDisabled,
|
|
128
128
|
'k-other-month': context.isOtherMonth
|
|
129
129
|
});
|
|
130
130
|
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
"use strict";
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
"use strict";
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2021 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
"use strict";
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -457,11 +457,11 @@ var KendoDate = /** @class */ (function () {
|
|
|
457
457
|
* Represents the [Kendo UI DateInput component for Angular]({% slug overview_dateinput %}#toc-basic-usage).
|
|
458
458
|
*/
|
|
459
459
|
var DateInputComponent = /** @class */ (function () {
|
|
460
|
-
function DateInputComponent(cdr, intl, renderer,
|
|
460
|
+
function DateInputComponent(cdr, intl, renderer, wrapper, ngZone, injector, localization, pickerService) {
|
|
461
461
|
this.cdr = cdr;
|
|
462
462
|
this.intl = intl;
|
|
463
463
|
this.renderer = renderer;
|
|
464
|
-
this.
|
|
464
|
+
this.wrapper = wrapper;
|
|
465
465
|
this.ngZone = ngZone;
|
|
466
466
|
this.injector = injector;
|
|
467
467
|
this.localization = localization;
|
|
@@ -663,6 +663,9 @@ var DateInputComponent = /** @class */ (function () {
|
|
|
663
663
|
this.onControlChange = util_1.noop;
|
|
664
664
|
this.onControlTouched = util_1.noop;
|
|
665
665
|
this.onValidatorChange = util_1.noop;
|
|
666
|
+
this._size = 'medium';
|
|
667
|
+
this._rounded = 'medium';
|
|
668
|
+
this._fillMode = 'solid';
|
|
666
669
|
this.symbolsMap = this.dateSymbolMap();
|
|
667
670
|
this.updateFormatSections();
|
|
668
671
|
if (this.pickerService) {
|
|
@@ -703,6 +706,83 @@ var DateInputComponent = /** @class */ (function () {
|
|
|
703
706
|
enumerable: true,
|
|
704
707
|
configurable: true
|
|
705
708
|
});
|
|
709
|
+
Object.defineProperty(DateInputComponent.prototype, "size", {
|
|
710
|
+
get: function () {
|
|
711
|
+
return this._size;
|
|
712
|
+
},
|
|
713
|
+
/**
|
|
714
|
+
* Sets the size of the component.
|
|
715
|
+
*
|
|
716
|
+
* The possible values are:
|
|
717
|
+
* * `'small'`
|
|
718
|
+
* * `'medium'` (Default)
|
|
719
|
+
* * `'large'`
|
|
720
|
+
* * `null`
|
|
721
|
+
*
|
|
722
|
+
*/
|
|
723
|
+
set: function (size) {
|
|
724
|
+
this.renderer.removeClass(this.wrapper.nativeElement, util_1.getSizeClass('input', this.size));
|
|
725
|
+
if (size) {
|
|
726
|
+
this.renderer.addClass(this.wrapper.nativeElement, util_1.getSizeClass('input', size));
|
|
727
|
+
}
|
|
728
|
+
this._size = size;
|
|
729
|
+
},
|
|
730
|
+
enumerable: true,
|
|
731
|
+
configurable: true
|
|
732
|
+
});
|
|
733
|
+
Object.defineProperty(DateInputComponent.prototype, "rounded", {
|
|
734
|
+
get: function () {
|
|
735
|
+
return this._rounded;
|
|
736
|
+
},
|
|
737
|
+
/**
|
|
738
|
+
* Sets the border radius of the component.
|
|
739
|
+
*
|
|
740
|
+
* The possible values are:
|
|
741
|
+
* * `'small'`
|
|
742
|
+
* * `'medium'` (Default)
|
|
743
|
+
* * `'large'`
|
|
744
|
+
* * `'full'`
|
|
745
|
+
* * `null`
|
|
746
|
+
*
|
|
747
|
+
*/
|
|
748
|
+
set: function (rounded) {
|
|
749
|
+
this.renderer.removeClass(this.wrapper.nativeElement, util_1.getRoundedClass(this.rounded));
|
|
750
|
+
if (rounded) {
|
|
751
|
+
this.renderer.addClass(this.wrapper.nativeElement, util_1.getRoundedClass(rounded));
|
|
752
|
+
}
|
|
753
|
+
this._rounded = rounded;
|
|
754
|
+
},
|
|
755
|
+
enumerable: true,
|
|
756
|
+
configurable: true
|
|
757
|
+
});
|
|
758
|
+
Object.defineProperty(DateInputComponent.prototype, "fillMode", {
|
|
759
|
+
get: function () {
|
|
760
|
+
return this._fillMode;
|
|
761
|
+
},
|
|
762
|
+
/**
|
|
763
|
+
* Sets the fillMode of the component.
|
|
764
|
+
*
|
|
765
|
+
* The possible values are:
|
|
766
|
+
* * `'solid'` (Default)
|
|
767
|
+
* * `'flat'`
|
|
768
|
+
* * `'outline'`
|
|
769
|
+
* * `null`
|
|
770
|
+
*
|
|
771
|
+
*/
|
|
772
|
+
set: function (fillMode) {
|
|
773
|
+
this.renderer.removeClass(this.wrapper.nativeElement, util_1.getFillModeClass('input', this.fillMode));
|
|
774
|
+
if (fillMode) {
|
|
775
|
+
this.renderer.addClass(this.wrapper.nativeElement, util_1.getFillModeClass('input', fillMode));
|
|
776
|
+
if (this.spinners && this.spinup && this.spindown) {
|
|
777
|
+
this.setSpinnerFill(this.spinup.nativeElement, fillMode, this.fillMode);
|
|
778
|
+
this.setSpinnerFill(this.spindown.nativeElement, fillMode, this.fillMode);
|
|
779
|
+
}
|
|
780
|
+
}
|
|
781
|
+
this._fillMode = fillMode;
|
|
782
|
+
},
|
|
783
|
+
enumerable: true,
|
|
784
|
+
configurable: true
|
|
785
|
+
});
|
|
706
786
|
Object.defineProperty(DateInputComponent.prototype, "wrapperClass", {
|
|
707
787
|
get: function () {
|
|
708
788
|
return true;
|
|
@@ -737,16 +817,16 @@ var DateInputComponent = /** @class */ (function () {
|
|
|
737
817
|
},
|
|
738
818
|
set: function (value) {
|
|
739
819
|
this._active = value;
|
|
740
|
-
if (!this.
|
|
820
|
+
if (!this.wrapper) {
|
|
741
821
|
return;
|
|
742
822
|
}
|
|
743
823
|
if (!utils_1.isPresent(this.pickerService)) {
|
|
744
|
-
var element = this.
|
|
824
|
+
var element = this.wrapper.nativeElement;
|
|
745
825
|
if (value) {
|
|
746
|
-
this.renderer.addClass(element, 'k-
|
|
826
|
+
this.renderer.addClass(element, 'k-focus');
|
|
747
827
|
}
|
|
748
828
|
else {
|
|
749
|
-
this.renderer.removeClass(element, 'k-
|
|
829
|
+
this.renderer.removeClass(element, 'k-focus');
|
|
750
830
|
}
|
|
751
831
|
}
|
|
752
832
|
},
|
|
@@ -795,7 +875,7 @@ var DateInputComponent = /** @class */ (function () {
|
|
|
795
875
|
*/
|
|
796
876
|
DateInputComponent.prototype.containsElement = function (element) {
|
|
797
877
|
var _this = this;
|
|
798
|
-
return Boolean(dom_queries_1.closest(element, function (node) { return node === _this.
|
|
878
|
+
return Boolean(dom_queries_1.closest(element, function (node) { return node === _this.wrapper.nativeElement; }));
|
|
799
879
|
};
|
|
800
880
|
/**
|
|
801
881
|
* @hidden
|
|
@@ -848,13 +928,16 @@ var DateInputComponent = /** @class */ (function () {
|
|
|
848
928
|
this.updateElementValue();
|
|
849
929
|
this.intlSubscription = this.intl.changes.subscribe(this.intlChange.bind(this));
|
|
850
930
|
this.ngControl = this.injector.get(forms_1.NgControl, null);
|
|
851
|
-
if (this.
|
|
852
|
-
this.renderer.removeAttribute(this.
|
|
931
|
+
if (this.wrapper) {
|
|
932
|
+
this.renderer.removeAttribute(this.wrapper.nativeElement, 'tabindex');
|
|
853
933
|
this.ngZone.runOutsideAngular(function () {
|
|
854
934
|
_this.bindEvents();
|
|
855
935
|
});
|
|
856
936
|
}
|
|
857
937
|
};
|
|
938
|
+
DateInputComponent.prototype.ngAfterViewInit = function () {
|
|
939
|
+
this.setComponentClasses();
|
|
940
|
+
};
|
|
858
941
|
/**
|
|
859
942
|
* @hidden
|
|
860
943
|
*/
|
|
@@ -1208,7 +1291,7 @@ var DateInputComponent = /** @class */ (function () {
|
|
|
1208
1291
|
}
|
|
1209
1292
|
};
|
|
1210
1293
|
DateInputComponent.prototype.bindEvents = function () {
|
|
1211
|
-
var element = this.
|
|
1294
|
+
var element = this.wrapper.nativeElement;
|
|
1212
1295
|
var mousewheelHandler = this.handleMouseWheel.bind(this);
|
|
1213
1296
|
this.domEvents.push(this.renderer.listen(element, 'DOMMouseScroll', mousewheelHandler), this.renderer.listen(element, 'mousewheel', mousewheelHandler), this.renderer.listen(element, 'keydown', this.handleKeydown.bind(this)), this.renderer.listen(element, 'paste', this.handlePaste.bind(this)), this.renderer.listen(element, 'input', this.handleInput.bind(this)));
|
|
1214
1297
|
};
|
|
@@ -1340,6 +1423,29 @@ var DateInputComponent = /** @class */ (function () {
|
|
|
1340
1423
|
this.pickerService.dateCompletenessChange.emit();
|
|
1341
1424
|
}
|
|
1342
1425
|
};
|
|
1426
|
+
DateInputComponent.prototype.setSpinnerFill = function (spinner, fill, oldFill) {
|
|
1427
|
+
if (oldFill) {
|
|
1428
|
+
this.renderer.removeClass(spinner, "k-button-" + oldFill);
|
|
1429
|
+
this.renderer.removeClass(spinner, "k-button-" + oldFill + "-base");
|
|
1430
|
+
}
|
|
1431
|
+
this.renderer.addClass(spinner, "k-button-" + fill);
|
|
1432
|
+
this.renderer.addClass(spinner, "k-button-" + fill + "-base");
|
|
1433
|
+
};
|
|
1434
|
+
DateInputComponent.prototype.setComponentClasses = function () {
|
|
1435
|
+
if (this.size) {
|
|
1436
|
+
this.renderer.addClass(this.wrapper.nativeElement, util_1.getSizeClass('input', this.size));
|
|
1437
|
+
}
|
|
1438
|
+
if (this.rounded) {
|
|
1439
|
+
this.renderer.addClass(this.wrapper.nativeElement, util_1.getRoundedClass(this.rounded));
|
|
1440
|
+
}
|
|
1441
|
+
if (this.fillMode) {
|
|
1442
|
+
this.renderer.addClass(this.wrapper.nativeElement, util_1.getFillModeClass('input', this.fillMode));
|
|
1443
|
+
}
|
|
1444
|
+
if (this.spinners) {
|
|
1445
|
+
this.setSpinnerFill(this.spinup.nativeElement, this.fillMode);
|
|
1446
|
+
this.setSpinnerFill(this.spindown.nativeElement, this.fillMode);
|
|
1447
|
+
}
|
|
1448
|
+
};
|
|
1343
1449
|
var DateInputComponent_1;
|
|
1344
1450
|
tslib_1.__decorate([
|
|
1345
1451
|
core_1.Input(),
|
|
@@ -1431,6 +1537,21 @@ var DateInputComponent = /** @class */ (function () {
|
|
|
1431
1537
|
core_1.Input(),
|
|
1432
1538
|
tslib_1.__metadata("design:type", Boolean)
|
|
1433
1539
|
], DateInputComponent.prototype, "hasPopup", void 0);
|
|
1540
|
+
tslib_1.__decorate([
|
|
1541
|
+
core_1.Input(),
|
|
1542
|
+
tslib_1.__metadata("design:type", String),
|
|
1543
|
+
tslib_1.__metadata("design:paramtypes", [String])
|
|
1544
|
+
], DateInputComponent.prototype, "size", null);
|
|
1545
|
+
tslib_1.__decorate([
|
|
1546
|
+
core_1.Input(),
|
|
1547
|
+
tslib_1.__metadata("design:type", String),
|
|
1548
|
+
tslib_1.__metadata("design:paramtypes", [String])
|
|
1549
|
+
], DateInputComponent.prototype, "rounded", null);
|
|
1550
|
+
tslib_1.__decorate([
|
|
1551
|
+
core_1.Input(),
|
|
1552
|
+
tslib_1.__metadata("design:type", String),
|
|
1553
|
+
tslib_1.__metadata("design:paramtypes", [String])
|
|
1554
|
+
], DateInputComponent.prototype, "fillMode", null);
|
|
1434
1555
|
tslib_1.__decorate([
|
|
1435
1556
|
core_1.Output(),
|
|
1436
1557
|
tslib_1.__metadata("design:type", core_1.EventEmitter)
|
|
@@ -1452,20 +1573,24 @@ var DateInputComponent = /** @class */ (function () {
|
|
|
1452
1573
|
tslib_1.__metadata("design:type", core_1.ElementRef)
|
|
1453
1574
|
], DateInputComponent.prototype, "dateInput", void 0);
|
|
1454
1575
|
tslib_1.__decorate([
|
|
1455
|
-
core_1.
|
|
1456
|
-
tslib_1.__metadata("design:type", core_1.ElementRef)
|
|
1457
|
-
], DateInputComponent.prototype, "wrap", void 0);
|
|
1458
|
-
tslib_1.__decorate([
|
|
1459
|
-
core_1.HostBinding('class.k-widget'),
|
|
1576
|
+
core_1.HostBinding('class.k-input'),
|
|
1460
1577
|
core_1.HostBinding('class.k-dateinput'),
|
|
1461
1578
|
tslib_1.__metadata("design:type", Boolean),
|
|
1462
1579
|
tslib_1.__metadata("design:paramtypes", [])
|
|
1463
1580
|
], DateInputComponent.prototype, "wrapperClass", null);
|
|
1464
1581
|
tslib_1.__decorate([
|
|
1465
|
-
core_1.HostBinding('class.k-
|
|
1582
|
+
core_1.HostBinding('class.k-disabled'),
|
|
1466
1583
|
tslib_1.__metadata("design:type", Boolean),
|
|
1467
1584
|
tslib_1.__metadata("design:paramtypes", [])
|
|
1468
1585
|
], DateInputComponent.prototype, "disabledClass", null);
|
|
1586
|
+
tslib_1.__decorate([
|
|
1587
|
+
core_1.ViewChild('spinup', { static: false }),
|
|
1588
|
+
tslib_1.__metadata("design:type", core_1.ElementRef)
|
|
1589
|
+
], DateInputComponent.prototype, "spinup", void 0);
|
|
1590
|
+
tslib_1.__decorate([
|
|
1591
|
+
core_1.ViewChild('spindown', { static: false }),
|
|
1592
|
+
tslib_1.__metadata("design:type", core_1.ElementRef)
|
|
1593
|
+
], DateInputComponent.prototype, "spindown", void 0);
|
|
1469
1594
|
DateInputComponent = DateInputComponent_1 = tslib_1.__decorate([
|
|
1470
1595
|
core_1.Component({
|
|
1471
1596
|
changeDetection: core_1.ChangeDetectionStrategy.OnPush,
|
|
@@ -1478,7 +1603,7 @@ var DateInputComponent = /** @class */ (function () {
|
|
|
1478
1603
|
kendo_angular_l10n_1.LocalizationService
|
|
1479
1604
|
],
|
|
1480
1605
|
selector: 'kendo-dateinput',
|
|
1481
|
-
template: "\n <ng-container kendoDateInputLocalizedMessages\n i18n-increment=\"kendo.dateinput.increment|The label for the **Increment** button in the DateInput\"\n increment=\"Increase value\"\n\n i18n-decrement=\"kendo.dateinput.decrement|The label for the **Decrement** button in the DateInput\"\n decrement=\"Decrease value\"\n >\n </ng-container>\n <
|
|
1606
|
+
template: "\n <ng-container kendoDateInputLocalizedMessages\n i18n-increment=\"kendo.dateinput.increment|The label for the **Increment** button in the DateInput\"\n increment=\"Increase value\"\n\n i18n-decrement=\"kendo.dateinput.decrement|The label for the **Decrement** button in the DateInput\"\n decrement=\"Decrease value\"\n >\n </ng-container>\n <input\n #dateInput\n autocomplete=\"off\"\n autocorrect=\"off\"\n autocapitalize=\"off\"\n spellcheck=\"false\"\n class=\"k-input-inner\"\n [attr.role]=\"role\"\n [attr.aria-readonly]=\"ariaReadOnly\"\n [id]=\"focusableId\"\n [title]=\"title\"\n [tabindex]=\"tabindex\"\n [disabled]=\"disabled\"\n [readonly]=\"readonly\"\n [placeholder]=\"placeholder\"\n [attr.aria-expanded]=\"isPopupOpen\"\n [attr.aria-haspopup]=\"hasPopup\"\n [kendoEventsOutsideAngular]=\"{\n click: handleClick,\n focus: handleFocus,\n mousedown: handleMousedown,\n touchstart: handleMousedown,\n dragstart: handleDragAndDrop,\n drop: handleDragAndDrop,\n blur: handleBlur\n }\"\n [scope]=\"this\"\n />\n <span *ngIf=\"spinners\" class=\"k-input-spinner k-spin-button\" (mousedown)=\"$event.preventDefault()\">\n <button\n #spinup\n tabindex=\"-1\"\n class=\"k-spinner-increase k-button k-icon-button\"\n [class.k-active]=\"arrowDirection === arrow.Up\"\n (mousedown)=\"arrowDirection = arrow.Up\"\n (mouseleave)=\"arrowDirection = arrow.None\"\n (click)=\"handleButtonClick(1)\"\n [title]=\"localization.get('increment')\"\n [attr.aria-label]=\"localization.get('increment')\">\n <span class=\"k-button-icon k-icon k-i-arrow-n\"></span>\n </button>\n <button\n #spindown\n tabindex=\"-1\"\n class=\"k-spinner-decrease k-button k-icon-button\"\n (click)=\"handleButtonClick(-1)\"\n [class.k-active]=\"arrowDirection === arrow.Down\"\n (mousedown)=\"arrowDirection = arrow.Down\"\n (mouseleave)=\"arrowDirection = arrow.None\"\n [title]=\"localization.get('decrement')\"\n [attr.aria-label]=\"localization.get('decrement')\">\n <span class=\"k-button-icon k-icon k-i-arrow-s\"></span>\n </button>\n </span>\n "
|
|
1482
1607
|
}),
|
|
1483
1608
|
tslib_1.__param(7, core_1.Optional()),
|
|
1484
1609
|
tslib_1.__metadata("design:paramtypes", [core_1.ChangeDetectorRef,
|
|
@@ -44,12 +44,12 @@ var TWO_DIGIT_YEAR_MAX = 68;
|
|
|
44
44
|
* Represents the [Kendo UI DatePicker component for Angular]({% slug overview_datepicker %}#toc-basic-usage).
|
|
45
45
|
*/
|
|
46
46
|
var DatePickerComponent = /** @class */ (function () {
|
|
47
|
-
function DatePickerComponent(zone, localization, cdr, popupService,
|
|
47
|
+
function DatePickerComponent(zone, localization, cdr, popupService, wrapper, renderer, injector, pickerService, disabledDatesService, touchEnabled) {
|
|
48
48
|
this.zone = zone;
|
|
49
49
|
this.localization = localization;
|
|
50
50
|
this.cdr = cdr;
|
|
51
51
|
this.popupService = popupService;
|
|
52
|
-
this.
|
|
52
|
+
this.wrapper = wrapper;
|
|
53
53
|
this.renderer = renderer;
|
|
54
54
|
this.injector = injector;
|
|
55
55
|
this.pickerService = pickerService;
|
|
@@ -275,6 +275,9 @@ var DatePickerComponent = /** @class */ (function () {
|
|
|
275
275
|
this.incompleteValidator = util_1.noop;
|
|
276
276
|
this.resolvedPromise = Promise.resolve(null);
|
|
277
277
|
this.domEvents = [];
|
|
278
|
+
this._size = 'medium';
|
|
279
|
+
this._rounded = 'medium';
|
|
280
|
+
this._fillMode = 'solid';
|
|
278
281
|
kendo_licensing_1.validatePackage(package_metadata_1.packageMetadata);
|
|
279
282
|
this.pickerSubscriptions = this.pickerService.onFocus.subscribe(this.handleFocus.bind(this));
|
|
280
283
|
this.pickerSubscriptions.add(this.pickerService.onBlur.subscribe(this.handleBlur.bind(this)));
|
|
@@ -425,6 +428,85 @@ var DatePickerComponent = /** @class */ (function () {
|
|
|
425
428
|
enumerable: true,
|
|
426
429
|
configurable: true
|
|
427
430
|
});
|
|
431
|
+
Object.defineProperty(DatePickerComponent.prototype, "size", {
|
|
432
|
+
get: function () {
|
|
433
|
+
return this._size;
|
|
434
|
+
},
|
|
435
|
+
/**
|
|
436
|
+
* Sets the size of the component.
|
|
437
|
+
*
|
|
438
|
+
* The possible values are:
|
|
439
|
+
* * `'small'`
|
|
440
|
+
* * `'medium'` (Default)
|
|
441
|
+
* * `'large'`
|
|
442
|
+
* * `null`
|
|
443
|
+
*
|
|
444
|
+
*/
|
|
445
|
+
set: function (size) {
|
|
446
|
+
this.renderer.removeClass(this.wrapper.nativeElement, util_1.getSizeClass('input', this.size));
|
|
447
|
+
this.renderer.removeClass(this.toggleButton.nativeElement, util_1.getSizeClass('input', this.size));
|
|
448
|
+
if (size) {
|
|
449
|
+
this.renderer.addClass(this.wrapper.nativeElement, util_1.getSizeClass('input', size));
|
|
450
|
+
this.renderer.addClass(this.toggleButton.nativeElement, util_1.getSizeClass('input', size));
|
|
451
|
+
}
|
|
452
|
+
this._size = size;
|
|
453
|
+
},
|
|
454
|
+
enumerable: true,
|
|
455
|
+
configurable: true
|
|
456
|
+
});
|
|
457
|
+
Object.defineProperty(DatePickerComponent.prototype, "rounded", {
|
|
458
|
+
get: function () {
|
|
459
|
+
return this._rounded;
|
|
460
|
+
},
|
|
461
|
+
/**
|
|
462
|
+
* Sets the border radius of the component.
|
|
463
|
+
*
|
|
464
|
+
* The possible values are:
|
|
465
|
+
* * `'small'`
|
|
466
|
+
* * `'medium'` (Default)
|
|
467
|
+
* * `'large'`
|
|
468
|
+
* * `'full'`
|
|
469
|
+
* * `null`
|
|
470
|
+
*
|
|
471
|
+
*/
|
|
472
|
+
set: function (rounded) {
|
|
473
|
+
this.renderer.removeClass(this.wrapper.nativeElement, util_1.getRoundedClass(this.rounded));
|
|
474
|
+
if (rounded) {
|
|
475
|
+
this.renderer.addClass(this.wrapper.nativeElement, util_1.getRoundedClass(rounded));
|
|
476
|
+
}
|
|
477
|
+
this._rounded = rounded;
|
|
478
|
+
},
|
|
479
|
+
enumerable: true,
|
|
480
|
+
configurable: true
|
|
481
|
+
});
|
|
482
|
+
Object.defineProperty(DatePickerComponent.prototype, "fillMode", {
|
|
483
|
+
get: function () {
|
|
484
|
+
return this._fillMode;
|
|
485
|
+
},
|
|
486
|
+
/**
|
|
487
|
+
* Sets the fillMode of the component.
|
|
488
|
+
*
|
|
489
|
+
* The possible values are:
|
|
490
|
+
* * `'solid'` (Default)
|
|
491
|
+
* * `'flat'`
|
|
492
|
+
* * `'outline'`
|
|
493
|
+
* * `null`
|
|
494
|
+
*
|
|
495
|
+
*/
|
|
496
|
+
set: function (fillMode) {
|
|
497
|
+
this.renderer.removeClass(this.wrapper.nativeElement, util_1.getFillModeClass('input', this.fillMode));
|
|
498
|
+
this.renderer.removeClass(this.toggleButton.nativeElement, util_1.getFillModeClass('button', this.fillMode));
|
|
499
|
+
this.renderer.removeClass(this.toggleButton.nativeElement, "k-button-" + this.fillMode + "-base");
|
|
500
|
+
if (fillMode) {
|
|
501
|
+
this.renderer.addClass(this.toggleButton.nativeElement, util_1.getFillModeClass('button', fillMode));
|
|
502
|
+
this.renderer.addClass(this.toggleButton.nativeElement, "k-button-" + fillMode + "-base");
|
|
503
|
+
this.renderer.addClass(this.wrapper.nativeElement, util_1.getFillModeClass('input', fillMode));
|
|
504
|
+
}
|
|
505
|
+
this._fillMode = fillMode;
|
|
506
|
+
},
|
|
507
|
+
enumerable: true,
|
|
508
|
+
configurable: true
|
|
509
|
+
});
|
|
428
510
|
Object.defineProperty(DatePickerComponent.prototype, "disabledClass", {
|
|
429
511
|
/**
|
|
430
512
|
* @hidden
|
|
@@ -456,10 +538,10 @@ var DatePickerComponent = /** @class */ (function () {
|
|
|
456
538
|
}
|
|
457
539
|
var element = this.wrapper.nativeElement;
|
|
458
540
|
if (value) {
|
|
459
|
-
this.renderer.addClass(element, 'k-
|
|
541
|
+
this.renderer.addClass(element, 'k-focus');
|
|
460
542
|
}
|
|
461
543
|
else {
|
|
462
|
-
this.renderer.removeClass(element, 'k-
|
|
544
|
+
this.renderer.removeClass(element, 'k-focus');
|
|
463
545
|
}
|
|
464
546
|
},
|
|
465
547
|
enumerable: true,
|
|
@@ -503,13 +585,16 @@ var DatePickerComponent = /** @class */ (function () {
|
|
|
503
585
|
.changes
|
|
504
586
|
.subscribe(function () { return _this.cdr.markForCheck(); });
|
|
505
587
|
this.control = this.injector.get(forms_1.NgControl, null);
|
|
506
|
-
if (this.
|
|
507
|
-
this.renderer.removeAttribute(this.
|
|
588
|
+
if (this.wrapper) {
|
|
589
|
+
this.renderer.removeAttribute(this.wrapper.nativeElement, 'tabindex');
|
|
508
590
|
this.zone.runOutsideAngular(function () {
|
|
509
591
|
_this.bindEvents();
|
|
510
592
|
});
|
|
511
593
|
}
|
|
512
594
|
};
|
|
595
|
+
DatePickerComponent.prototype.ngAfterViewInit = function () {
|
|
596
|
+
this.setComponentClasses();
|
|
597
|
+
};
|
|
513
598
|
/**
|
|
514
599
|
* @hidden
|
|
515
600
|
*/
|
|
@@ -823,7 +908,7 @@ var DatePickerComponent = /** @class */ (function () {
|
|
|
823
908
|
}
|
|
824
909
|
};
|
|
825
910
|
DatePickerComponent.prototype.bindEvents = function () {
|
|
826
|
-
var element = this.
|
|
911
|
+
var element = this.wrapper.nativeElement;
|
|
827
912
|
this.domEvents.push(this.renderer.listen(element, 'keydown', this.handleKeydown.bind(this)));
|
|
828
913
|
if (util_1.isWindowAvailable()) {
|
|
829
914
|
this.windowBlurSubscription = rxjs_1.fromEvent(window, 'blur').subscribe(this.handleWindowBlur.bind(this));
|
|
@@ -882,6 +967,20 @@ var DatePickerComponent = /** @class */ (function () {
|
|
|
882
967
|
this.cdr.markForCheck();
|
|
883
968
|
this.zone.run(function () { return _this.onValidatorChange(); });
|
|
884
969
|
};
|
|
970
|
+
DatePickerComponent.prototype.setComponentClasses = function () {
|
|
971
|
+
if (this.size) {
|
|
972
|
+
this.renderer.addClass(this.wrapper.nativeElement, util_1.getSizeClass('input', this.size));
|
|
973
|
+
this.renderer.addClass(this.toggleButton.nativeElement, util_1.getSizeClass('button', this.size));
|
|
974
|
+
}
|
|
975
|
+
if (this.rounded) {
|
|
976
|
+
this.renderer.addClass(this.wrapper.nativeElement, util_1.getRoundedClass(this.rounded));
|
|
977
|
+
}
|
|
978
|
+
if (this.fillMode) {
|
|
979
|
+
this.renderer.addClass(this.wrapper.nativeElement, util_1.getFillModeClass('input', this.fillMode));
|
|
980
|
+
this.renderer.addClass(this.toggleButton.nativeElement, util_1.getFillModeClass('button', this.fillMode));
|
|
981
|
+
this.renderer.addClass(this.toggleButton.nativeElement, "k-button-" + this.fillMode + "-base");
|
|
982
|
+
}
|
|
983
|
+
};
|
|
885
984
|
var DatePickerComponent_1;
|
|
886
985
|
tslib_1.__decorate([
|
|
887
986
|
core_1.ViewChild('container', { read: core_1.ViewContainerRef, static: true }),
|
|
@@ -892,9 +991,9 @@ var DatePickerComponent = /** @class */ (function () {
|
|
|
892
991
|
tslib_1.__metadata("design:type", core_1.TemplateRef)
|
|
893
992
|
], DatePickerComponent.prototype, "popupTemplate", void 0);
|
|
894
993
|
tslib_1.__decorate([
|
|
895
|
-
core_1.ViewChild('
|
|
994
|
+
core_1.ViewChild('toggleButton', { static: true }),
|
|
896
995
|
tslib_1.__metadata("design:type", core_1.ElementRef)
|
|
897
|
-
], DatePickerComponent.prototype, "
|
|
996
|
+
], DatePickerComponent.prototype, "toggleButton", void 0);
|
|
898
997
|
tslib_1.__decorate([
|
|
899
998
|
core_1.ContentChild(cell_template_directive_1.CellTemplateDirective, { static: false }),
|
|
900
999
|
tslib_1.__metadata("design:type", cell_template_directive_1.CellTemplateDirective)
|
|
@@ -1079,6 +1178,21 @@ var DatePickerComponent = /** @class */ (function () {
|
|
|
1079
1178
|
core_1.Input(),
|
|
1080
1179
|
tslib_1.__metadata("design:type", Boolean)
|
|
1081
1180
|
], DatePickerComponent.prototype, "weekNumber", void 0);
|
|
1181
|
+
tslib_1.__decorate([
|
|
1182
|
+
core_1.Input(),
|
|
1183
|
+
tslib_1.__metadata("design:type", String),
|
|
1184
|
+
tslib_1.__metadata("design:paramtypes", [String])
|
|
1185
|
+
], DatePickerComponent.prototype, "size", null);
|
|
1186
|
+
tslib_1.__decorate([
|
|
1187
|
+
core_1.Input(),
|
|
1188
|
+
tslib_1.__metadata("design:type", String),
|
|
1189
|
+
tslib_1.__metadata("design:paramtypes", [String])
|
|
1190
|
+
], DatePickerComponent.prototype, "rounded", null);
|
|
1191
|
+
tslib_1.__decorate([
|
|
1192
|
+
core_1.Input(),
|
|
1193
|
+
tslib_1.__metadata("design:type", String),
|
|
1194
|
+
tslib_1.__metadata("design:paramtypes", [String])
|
|
1195
|
+
], DatePickerComponent.prototype, "fillMode", null);
|
|
1082
1196
|
tslib_1.__decorate([
|
|
1083
1197
|
core_1.Output(),
|
|
1084
1198
|
tslib_1.__metadata("design:type", core_1.EventEmitter)
|
|
@@ -1100,12 +1214,12 @@ var DatePickerComponent = /** @class */ (function () {
|
|
|
1100
1214
|
tslib_1.__metadata("design:type", core_1.EventEmitter)
|
|
1101
1215
|
], DatePickerComponent.prototype, "close", void 0);
|
|
1102
1216
|
tslib_1.__decorate([
|
|
1103
|
-
core_1.HostBinding('class.k-widget'),
|
|
1104
1217
|
core_1.HostBinding('class.k-datepicker'),
|
|
1218
|
+
core_1.HostBinding('class.k-input'),
|
|
1105
1219
|
tslib_1.__metadata("design:type", Boolean)
|
|
1106
1220
|
], DatePickerComponent.prototype, "wrapperClasses", void 0);
|
|
1107
1221
|
tslib_1.__decorate([
|
|
1108
|
-
core_1.HostBinding('class.k-
|
|
1222
|
+
core_1.HostBinding('class.k-disabled'),
|
|
1109
1223
|
tslib_1.__metadata("design:type", Boolean),
|
|
1110
1224
|
tslib_1.__metadata("design:paramtypes", [])
|
|
1111
1225
|
], DatePickerComponent.prototype, "disabledClass", null);
|
|
@@ -1126,7 +1240,7 @@ var DatePickerComponent = /** @class */ (function () {
|
|
|
1126
1240
|
}
|
|
1127
1241
|
],
|
|
1128
1242
|
selector: 'kendo-datepicker',
|
|
1129
|
-
template: "\n <ng-container kendoDatePickerLocalizedMessages\n i18n-today=\"kendo.datepicker.today|The label for the today button in the calendar header\"\n today=\"Today\"\n\n i18n-toggle=\"kendo.datepicker.toggle|The title of the toggle button in the datepicker component\"\n toggle=\"Toggle calendar\"\n\n i18n-prevButtonTitle=\"kendo.datepicker.prevButtonTitle|The title of the previous button in the Classic calendar\"\n prevButtonTitle=\"Navigate to previous view\"\n\n i18n-nextButtonTitle=\"kendo.datepicker.nextButtonTitle|The title of the next button in the Classic calendar\"\n nextButtonTitle=\"Navigate to next view\"\n >\n </ng-container>\n <
|
|
1243
|
+
template: "\n <ng-container kendoDatePickerLocalizedMessages\n i18n-today=\"kendo.datepicker.today|The label for the today button in the calendar header\"\n today=\"Today\"\n\n i18n-toggle=\"kendo.datepicker.toggle|The title of the toggle button in the datepicker component\"\n toggle=\"Toggle calendar\"\n\n i18n-prevButtonTitle=\"kendo.datepicker.prevButtonTitle|The title of the previous button in the Classic calendar\"\n prevButtonTitle=\"Navigate to previous view\"\n\n i18n-nextButtonTitle=\"kendo.datepicker.nextButtonTitle|The title of the next button in the Classic calendar\"\n nextButtonTitle=\"Navigate to next view\"\n >\n </ng-container>\n <kendo-dateinput\n #input\n [role]=\"inputRole\"\n [focusableId]=\"focusableId\"\n [hasPopup]=\"true\"\n [isPopupOpen]=\"show\"\n [disabled]=\"disabled\"\n [readonly]=\"readonly || readOnlyInput\"\n [ariaReadOnly]=\"readonly\"\n [tabindex]=\"tabindex\"\n [title]=\"title\"\n [format]=\"format\"\n [twoDigitYearMax]=\"twoDigitYearMax\"\n [formatPlaceholder]=\"formatPlaceholder\"\n [placeholder]=\"placeholder\"\n [min]=\"min\"\n [max]=\"max\"\n [incompleteDateValidation]=\"incompleteDateValidation\"\n [fillMode]=\"null\"\n [rounded]=\"null\"\n [size]=\"null\"\n [value]=\"value\"\n (valueChange)=\"handleInputChange($event)\"\n ></kendo-dateinput>\n <button\n #toggleButton\n type=\"button\"\n class=\"k-input-button k-button k-icon-button\"\n [tabindex]=\"-1\"\n [attr.title]=\"localization.get('toggle')\"\n [attr.aria-label]=\"localization.get('toggle')\"\n [kendoEventsOutsideAngular]=\"{\n click: handleIconClick,\n mousedown: handleMousedown\n }\"\n [scope]=\"this\"\n >\n <span class=\"k-button-icon k-icon k-i-calendar\"></span>\n </button>\n <ng-container #container></ng-container>\n <ng-template #popupTemplate>\n <kendo-calendar\n #calendar\n [type]=\"calendarType\"\n [min]=\"min\"\n [max]=\"max\"\n [navigation]=\"navigation\"\n [animateNavigation]=\"animateCalendarNavigation\"\n [activeView]=\"activeView\"\n [bottomView]=\"bottomView\"\n [topView]=\"topView\"\n [weekNumber]=\"weekNumber\"\n [cellTemplate]=\"cellTemplate\"\n [monthCellTemplate]=\"monthCellTemplate\"\n [yearCellTemplate]=\"yearCellTemplate\"\n [decadeCellTemplate]=\"decadeCellTemplate\"\n [centuryCellTemplate]=\"centuryCellTemplate\"\n [weekNumberTemplate]=\"weekNumberTemplate\"\n [headerTitleTemplate]=\"headerTitleTemplate\"\n [navigationItemTemplate]=\"navigationItemTemplate\"\n [focusedDate]=\"focusedDate\"\n [value]=\"value\"\n (valueChange)=\"handleChange(mergeTime($event))\"\n [kendoEventsOutsideAngular]=\"{\n keydown: handleKeydown\n }\"\n [scope]=\"this\"\n [disabledDates]=\"disabledDates\"\n >\n <kendo-calendar-messages\n [today]=\"localization.get('today')\"\n [prevButtonTitle]=\"localization.get('prevButtonTitle')\"\n [nextButtonTitle]=\"localization.get('nextButtonTitle')\"\n >\n </kendo-calendar-messages>\n </kendo-calendar>\n <ng-template>\n "
|
|
1130
1244
|
}),
|
|
1131
1245
|
tslib_1.__param(9, core_1.Optional()), tslib_1.__param(9, core_1.Inject(touch_enabled_1.TOUCH_ENABLED)),
|
|
1132
1246
|
tslib_1.__metadata("design:paramtypes", [core_1.NgZone,
|
|
@@ -125,7 +125,7 @@ var DateRangeInput = /** @class */ (function () {
|
|
|
125
125
|
var action = show ? 'addClass' : 'removeClass';
|
|
126
126
|
var nativeElement = this.element.nativeElement;
|
|
127
127
|
if (nativeElement && nativeElement.querySelector) {
|
|
128
|
-
this.renderer[action](nativeElement
|
|
128
|
+
this.renderer[action](nativeElement, 'k-focus');
|
|
129
129
|
}
|
|
130
130
|
};
|
|
131
131
|
return DateRangeInput;
|