UNPKG

1.24 kBJavaScriptView Raw
1/**
2 * ag-grid - Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components
3 * @version v18.1.2
4 * @link http://www.ag-grid.com/
5 * @license MIT
6 */
7"use strict";
8var __extends = (this && this.__extends) || (function () {
9 var extendStatics = Object.setPrototypeOf ||
10 ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
11 function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
12 return function (d, b) {
13 extendStatics(d, b);
14 function __() { this.constructor = d; }
15 d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
16 };
17})();
18Object.defineProperty(exports, "__esModule", { value: true });
19var selectCellEditor_1 = require("./selectCellEditor");
20var PopupSelectCellEditor = (function (_super) {
21 __extends(PopupSelectCellEditor, _super);
22 function PopupSelectCellEditor() {
23 return _super !== null && _super.apply(this, arguments) || this;
24 }
25 PopupSelectCellEditor.prototype.isPopup = function () {
26 return true;
27 };
28 return PopupSelectCellEditor;
29}(selectCellEditor_1.SelectCellEditor));
30exports.PopupSelectCellEditor = PopupSelectCellEditor;