all files / modules/ color-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   13× 13× 13× 13×   24× 24×   21×   18× 17× 17×     13×   387×        
define(["require", "exports", "@syncfusion/ej2-inputs", "./base-module"], function (require, exports, ej2_inputs_1, base_module_1) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    var ColorPicker = (function () {
        function ColorPicker(parent) {
            this.compObj = undefined;
            this.parent = parent;
            this.parent.colorModule = this;
            this.base = new base_module_1.Base(this.parent, this);
        }
        ColorPicker.prototype.render = function (e) {
            this.compObj = new ej2_inputs_1.ColorPicker(this.parent.model);
            this.compObj.appendTo(e.target);
        };
        ColorPicker.prototype.focus = function () {
            this.compObj.element.focus();
        };
        ColorPicker.prototype.updateValue = function (e) {
            if (this.compObj && e.type === 'Color') {
                this.parent.setProperties({ value: this.compObj.value }, true);
                this.parent.extendModelValue(this.compObj.value);
            }
        };
        ColorPicker.prototype.destroy = function () {
            this.base.destroy();
        };
        ColorPicker.prototype.getModuleName = function () {
            return 'color-picker';
        };
        return ColorPicker;
    }());
    exports.ColorPicker = ColorPicker;
});