all files / modules/ time-picker.js

100% Statements 23/23
100% Branches 4/4
100% Functions 8/8
100% Lines 23/23
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34   22× 22× 22× 22×   33× 33×   30×   26× 25× 25×     387×   22×        
define(["require", "exports", "@syncfusion/ej2-calendars", "./base-module"], function (require, exports, ej2_calendars_1, base_module_1) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    var TimePicker = (function () {
        function TimePicker(parent) {
            this.compObj = undefined;
            this.parent = parent;
            this.parent.timeModule = this;
            this.base = new base_module_1.Base(this.parent, this);
        }
        TimePicker.prototype.render = function (e) {
            this.compObj = new ej2_calendars_1.TimePicker(this.parent.model);
            this.compObj.appendTo(e.target);
        };
        TimePicker.prototype.focus = function () {
            this.compObj.focusIn();
        };
        TimePicker.prototype.updateValue = function (e) {
            if (this.compObj && e.type === 'Time') {
                this.parent.setProperties({ value: this.compObj.value }, true);
                this.parent.extendModelValue(this.compObj.value);
            }
        };
        TimePicker.prototype.getModuleName = function () {
            return 'time-picker';
        };
        TimePicker.prototype.destroy = function () {
            this.base.destroy();
        };
        return TimePicker;
    }());
    exports.TimePicker = TimePicker;
});