igniteui-angular-spreadsheet
Version:
Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.
36 lines (35 loc) • 1.56 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { __extends } from "tslib";
import { CanvasGestureDOMEventProxy } from "igniteui-angular-core";
import { markType } from "igniteui-angular-core";
/**
* @hidden
*/
var CustomDOMEventProxy = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(CustomDOMEventProxy, _super);
function CustomDOMEventProxy(a, b, c) {
var _this = _super.call(this, a, b, c) || this;
_this._d9 = null;
return _this;
}
CustomDOMEventProxy.prototype.cv = function (a) {
_super.prototype.cv.call(this, a);
if (!this.ae && a.stopPropagation != null) {
a.stopPropagation();
}
};
CustomDOMEventProxy.prototype.cw = function (a) {
if (this._d9 != null && this._d9(a)) {
return;
}
_super.prototype.cw.call(this, a);
};
CustomDOMEventProxy.$t = markType(CustomDOMEventProxy, 'CustomDOMEventProxy', CanvasGestureDOMEventProxy.$);
return CustomDOMEventProxy;
}(CanvasGestureDOMEventProxy));
export { CustomDOMEventProxy };