ag-grid-angular.umd.js 120 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850
  1. (function (global, factory) {
  2. typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('ag-grid-community')) :
  3. typeof define === 'function' && define.amd ? define('ag-grid-angular', ['exports', '@angular/core', 'ag-grid-community'], factory) :
  4. (global = global || self, factory(global['ag-grid-angular'] = {}, global.ng.core, global.agGrid));
  5. }(this, (function (exports, core, agGridCommunity) { 'use strict';
  6. /*! *****************************************************************************
  7. Copyright (c) Microsoft Corporation.
  8. Permission to use, copy, modify, and/or distribute this software for any
  9. purpose with or without fee is hereby granted.
  10. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
  11. REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
  12. AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
  13. INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  14. LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
  15. OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. PERFORMANCE OF THIS SOFTWARE.
  17. ***************************************************************************** */
  18. /* global Reflect, Promise */
  19. var extendStatics = function(d, b) {
  20. extendStatics = Object.setPrototypeOf ||
  21. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  22. function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
  23. return extendStatics(d, b);
  24. };
  25. function __extends(d, b) {
  26. extendStatics(d, b);
  27. function __() { this.constructor = d; }
  28. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  29. }
  30. var __assign = function() {
  31. __assign = Object.assign || function __assign(t) {
  32. for (var s, i = 1, n = arguments.length; i < n; i++) {
  33. s = arguments[i];
  34. for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
  35. }
  36. return t;
  37. };
  38. return __assign.apply(this, arguments);
  39. };
  40. function __rest(s, e) {
  41. var t = {};
  42. for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
  43. t[p] = s[p];
  44. if (s != null && typeof Object.getOwnPropertySymbols === "function")
  45. for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
  46. if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
  47. t[p[i]] = s[p[i]];
  48. }
  49. return t;
  50. }
  51. function __decorate(decorators, target, key, desc) {
  52. var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
  53. if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
  54. else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
  55. return c > 3 && r && Object.defineProperty(target, key, r), r;
  56. }
  57. function __param(paramIndex, decorator) {
  58. return function (target, key) { decorator(target, key, paramIndex); }
  59. }
  60. function __metadata(metadataKey, metadataValue) {
  61. if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
  62. }
  63. function __awaiter(thisArg, _arguments, P, generator) {
  64. function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
  65. return new (P || (P = Promise))(function (resolve, reject) {
  66. function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
  67. function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
  68. function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
  69. step((generator = generator.apply(thisArg, _arguments || [])).next());
  70. });
  71. }
  72. function __generator(thisArg, body) {
  73. var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
  74. return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
  75. function verb(n) { return function (v) { return step([n, v]); }; }
  76. function step(op) {
  77. if (f) throw new TypeError("Generator is already executing.");
  78. while (_) try {
  79. if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
  80. if (y = 0, t) op = [op[0] & 2, t.value];
  81. switch (op[0]) {
  82. case 0: case 1: t = op; break;
  83. case 4: _.label++; return { value: op[1], done: false };
  84. case 5: _.label++; y = op[1]; op = [0]; continue;
  85. case 7: op = _.ops.pop(); _.trys.pop(); continue;
  86. default:
  87. if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
  88. if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
  89. if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
  90. if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
  91. if (t[2]) _.ops.pop();
  92. _.trys.pop(); continue;
  93. }
  94. op = body.call(thisArg, _);
  95. } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
  96. if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
  97. }
  98. }
  99. function __createBinding(o, m, k, k2) {
  100. if (k2 === undefined) k2 = k;
  101. o[k2] = m[k];
  102. }
  103. function __exportStar(m, exports) {
  104. for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) exports[p] = m[p];
  105. }
  106. function __values(o) {
  107. var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
  108. if (m) return m.call(o);
  109. if (o && typeof o.length === "number") return {
  110. next: function () {
  111. if (o && i >= o.length) o = void 0;
  112. return { value: o && o[i++], done: !o };
  113. }
  114. };
  115. throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
  116. }
  117. function __read(o, n) {
  118. var m = typeof Symbol === "function" && o[Symbol.iterator];
  119. if (!m) return o;
  120. var i = m.call(o), r, ar = [], e;
  121. try {
  122. while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
  123. }
  124. catch (error) { e = { error: error }; }
  125. finally {
  126. try {
  127. if (r && !r.done && (m = i["return"])) m.call(i);
  128. }
  129. finally { if (e) throw e.error; }
  130. }
  131. return ar;
  132. }
  133. function __spread() {
  134. for (var ar = [], i = 0; i < arguments.length; i++)
  135. ar = ar.concat(__read(arguments[i]));
  136. return ar;
  137. }
  138. function __spreadArrays() {
  139. for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
  140. for (var r = Array(s), k = 0, i = 0; i < il; i++)
  141. for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
  142. r[k] = a[j];
  143. return r;
  144. };
  145. function __await(v) {
  146. return this instanceof __await ? (this.v = v, this) : new __await(v);
  147. }
  148. function __asyncGenerator(thisArg, _arguments, generator) {
  149. if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
  150. var g = generator.apply(thisArg, _arguments || []), i, q = [];
  151. return i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i;
  152. function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }
  153. function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }
  154. function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }
  155. function fulfill(value) { resume("next", value); }
  156. function reject(value) { resume("throw", value); }
  157. function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }
  158. }
  159. function __asyncDelegator(o) {
  160. var i, p;
  161. return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
  162. function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
  163. }
  164. function __asyncValues(o) {
  165. if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
  166. var m = o[Symbol.asyncIterator], i;
  167. return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
  168. function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
  169. function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
  170. }
  171. function __makeTemplateObject(cooked, raw) {
  172. if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
  173. return cooked;
  174. };
  175. function __importStar(mod) {
  176. if (mod && mod.__esModule) return mod;
  177. var result = {};
  178. if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
  179. result.default = mod;
  180. return result;
  181. }
  182. function __importDefault(mod) {
  183. return (mod && mod.__esModule) ? mod : { default: mod };
  184. }
  185. function __classPrivateFieldGet(receiver, privateMap) {
  186. if (!privateMap.has(receiver)) {
  187. throw new TypeError("attempted to get private field on non-instance");
  188. }
  189. return privateMap.get(receiver);
  190. }
  191. function __classPrivateFieldSet(receiver, privateMap, value) {
  192. if (!privateMap.has(receiver)) {
  193. throw new TypeError("attempted to set private field on non-instance");
  194. }
  195. privateMap.set(receiver, value);
  196. return value;
  197. }
  198. var AgGridColumn = /** @class */ (function () {
  199. function AgGridColumn() {
  200. }
  201. AgGridColumn_1 = AgGridColumn;
  202. AgGridColumn.prototype.hasChildColumns = function () {
  203. if (this.childColumns && this.childColumns.length > 0) {
  204. // necessary because of https://github.com/angular/angular/issues/10098
  205. return !(this.childColumns.length === 1 && this.childColumns.first === this);
  206. }
  207. return false;
  208. };
  209. AgGridColumn.prototype.toColDef = function () {
  210. var colDef = this.createColDefFromGridColumn(this);
  211. if (this.hasChildColumns()) {
  212. colDef["children"] = this.getChildColDefs(this.childColumns);
  213. }
  214. return colDef;
  215. };
  216. AgGridColumn.prototype.getChildColDefs = function (childColumns) {
  217. return childColumns
  218. // necessary because of https://github.com/angular/angular/issues/10098
  219. .filter(function (column) { return !column.hasChildColumns(); })
  220. .map(function (column) {
  221. return column.toColDef();
  222. });
  223. };
  224. ;
  225. AgGridColumn.prototype.createColDefFromGridColumn = function (from) {
  226. var colDef = {};
  227. Object.assign(colDef, from);
  228. delete colDef.childColumns;
  229. return colDef;
  230. };
  231. ;
  232. var AgGridColumn_1;
  233. __decorate([
  234. core.ContentChildren(AgGridColumn_1),
  235. __metadata("design:type", core.QueryList)
  236. ], AgGridColumn.prototype, "childColumns", void 0);
  237. __decorate([
  238. core.Input(),
  239. __metadata("design:type", Object)
  240. ], AgGridColumn.prototype, "children", void 0);
  241. __decorate([
  242. core.Input(),
  243. __metadata("design:type", Object)
  244. ], AgGridColumn.prototype, "sortingOrder", void 0);
  245. __decorate([
  246. core.Input(),
  247. __metadata("design:type", Object)
  248. ], AgGridColumn.prototype, "allowedAggFuncs", void 0);
  249. __decorate([
  250. core.Input(),
  251. __metadata("design:type", Object)
  252. ], AgGridColumn.prototype, "menuTabs", void 0);
  253. __decorate([
  254. core.Input(),
  255. __metadata("design:type", Object)
  256. ], AgGridColumn.prototype, "cellClassRules", void 0);
  257. __decorate([
  258. core.Input(),
  259. __metadata("design:type", Object)
  260. ], AgGridColumn.prototype, "icons", void 0);
  261. __decorate([
  262. core.Input(),
  263. __metadata("design:type", Object)
  264. ], AgGridColumn.prototype, "headerGroupComponent", void 0);
  265. __decorate([
  266. core.Input(),
  267. __metadata("design:type", Object)
  268. ], AgGridColumn.prototype, "headerGroupComponentFramework", void 0);
  269. __decorate([
  270. core.Input(),
  271. __metadata("design:type", Object)
  272. ], AgGridColumn.prototype, "headerGroupComponentParams", void 0);
  273. __decorate([
  274. core.Input(),
  275. __metadata("design:type", Object)
  276. ], AgGridColumn.prototype, "cellStyle", void 0);
  277. __decorate([
  278. core.Input(),
  279. __metadata("design:type", Object)
  280. ], AgGridColumn.prototype, "cellRendererParams", void 0);
  281. __decorate([
  282. core.Input(),
  283. __metadata("design:type", Object)
  284. ], AgGridColumn.prototype, "cellEditorFramework", void 0);
  285. __decorate([
  286. core.Input(),
  287. __metadata("design:type", Object)
  288. ], AgGridColumn.prototype, "cellEditorParams", void 0);
  289. __decorate([
  290. core.Input(),
  291. __metadata("design:type", Object)
  292. ], AgGridColumn.prototype, "pinnedRowCellRendererFramework", void 0);
  293. __decorate([
  294. core.Input(),
  295. __metadata("design:type", Object)
  296. ], AgGridColumn.prototype, "pinnedRowCellRendererParams", void 0);
  297. __decorate([
  298. core.Input(),
  299. __metadata("design:type", Object)
  300. ], AgGridColumn.prototype, "filterFramework", void 0);
  301. __decorate([
  302. core.Input(),
  303. __metadata("design:type", Object)
  304. ], AgGridColumn.prototype, "filterParams", void 0);
  305. __decorate([
  306. core.Input(),
  307. __metadata("design:type", Object)
  308. ], AgGridColumn.prototype, "headerComponent", void 0);
  309. __decorate([
  310. core.Input(),
  311. __metadata("design:type", Object)
  312. ], AgGridColumn.prototype, "headerComponentFramework", void 0);
  313. __decorate([
  314. core.Input(),
  315. __metadata("design:type", Object)
  316. ], AgGridColumn.prototype, "headerComponentParams", void 0);
  317. __decorate([
  318. core.Input(),
  319. __metadata("design:type", Object)
  320. ], AgGridColumn.prototype, "floatingFilterComponent", void 0);
  321. __decorate([
  322. core.Input(),
  323. __metadata("design:type", Object)
  324. ], AgGridColumn.prototype, "floatingFilterComponentParams", void 0);
  325. __decorate([
  326. core.Input(),
  327. __metadata("design:type", Object)
  328. ], AgGridColumn.prototype, "floatingFilterComponentFramework", void 0);
  329. __decorate([
  330. core.Input(),
  331. __metadata("design:type", Object)
  332. ], AgGridColumn.prototype, "tooltipComponent", void 0);
  333. __decorate([
  334. core.Input(),
  335. __metadata("design:type", Object)
  336. ], AgGridColumn.prototype, "tooltipComponentParams", void 0);
  337. __decorate([
  338. core.Input(),
  339. __metadata("design:type", Object)
  340. ], AgGridColumn.prototype, "tooltipComponentFramework", void 0);
  341. __decorate([
  342. core.Input(),
  343. __metadata("design:type", Object)
  344. ], AgGridColumn.prototype, "refData", void 0);
  345. __decorate([
  346. core.Input(),
  347. __metadata("design:type", Object)
  348. ], AgGridColumn.prototype, "headerName", void 0);
  349. __decorate([
  350. core.Input(),
  351. __metadata("design:type", Object)
  352. ], AgGridColumn.prototype, "columnGroupShow", void 0);
  353. __decorate([
  354. core.Input(),
  355. __metadata("design:type", Object)
  356. ], AgGridColumn.prototype, "headerClass", void 0);
  357. __decorate([
  358. core.Input(),
  359. __metadata("design:type", Object)
  360. ], AgGridColumn.prototype, "toolPanelClass", void 0);
  361. __decorate([
  362. core.Input(),
  363. __metadata("design:type", Object)
  364. ], AgGridColumn.prototype, "headerValueGetter", void 0);
  365. __decorate([
  366. core.Input(),
  367. __metadata("design:type", Object)
  368. ], AgGridColumn.prototype, "groupId", void 0);
  369. __decorate([
  370. core.Input(),
  371. __metadata("design:type", Object)
  372. ], AgGridColumn.prototype, "colId", void 0);
  373. __decorate([
  374. core.Input(),
  375. __metadata("design:type", Object)
  376. ], AgGridColumn.prototype, "sort", void 0);
  377. __decorate([
  378. core.Input(),
  379. __metadata("design:type", Object)
  380. ], AgGridColumn.prototype, "field", void 0);
  381. __decorate([
  382. core.Input(),
  383. __metadata("design:type", Object)
  384. ], AgGridColumn.prototype, "type", void 0);
  385. __decorate([
  386. core.Input(),
  387. __metadata("design:type", Object)
  388. ], AgGridColumn.prototype, "tooltipField", void 0);
  389. __decorate([
  390. core.Input(),
  391. __metadata("design:type", Object)
  392. ], AgGridColumn.prototype, "headerTooltip", void 0);
  393. __decorate([
  394. core.Input(),
  395. __metadata("design:type", Object)
  396. ], AgGridColumn.prototype, "cellClass", void 0);
  397. __decorate([
  398. core.Input(),
  399. __metadata("design:type", Object)
  400. ], AgGridColumn.prototype, "showRowGroup", void 0);
  401. __decorate([
  402. core.Input(),
  403. __metadata("design:type", Object)
  404. ], AgGridColumn.prototype, "filter", void 0);
  405. __decorate([
  406. core.Input(),
  407. __metadata("design:type", Object)
  408. ], AgGridColumn.prototype, "aggFunc", void 0);
  409. __decorate([
  410. core.Input(),
  411. __metadata("design:type", Object)
  412. ], AgGridColumn.prototype, "cellRenderer", void 0);
  413. __decorate([
  414. core.Input(),
  415. __metadata("design:type", Object)
  416. ], AgGridColumn.prototype, "cellEditor", void 0);
  417. __decorate([
  418. core.Input(),
  419. __metadata("design:type", Object)
  420. ], AgGridColumn.prototype, "pinned", void 0);
  421. __decorate([
  422. core.Input(),
  423. __metadata("design:type", Object)
  424. ], AgGridColumn.prototype, "chartDataType", void 0);
  425. __decorate([
  426. core.Input(),
  427. __metadata("design:type", Object)
  428. ], AgGridColumn.prototype, "sortedAt", void 0);
  429. __decorate([
  430. core.Input(),
  431. __metadata("design:type", Object)
  432. ], AgGridColumn.prototype, "flex", void 0);
  433. __decorate([
  434. core.Input(),
  435. __metadata("design:type", Object)
  436. ], AgGridColumn.prototype, "width", void 0);
  437. __decorate([
  438. core.Input(),
  439. __metadata("design:type", Object)
  440. ], AgGridColumn.prototype, "minWidth", void 0);
  441. __decorate([
  442. core.Input(),
  443. __metadata("design:type", Object)
  444. ], AgGridColumn.prototype, "maxWidth", void 0);
  445. __decorate([
  446. core.Input(),
  447. __metadata("design:type", Object)
  448. ], AgGridColumn.prototype, "rowGroupIndex", void 0);
  449. __decorate([
  450. core.Input(),
  451. __metadata("design:type", Object)
  452. ], AgGridColumn.prototype, "pivotIndex", void 0);
  453. __decorate([
  454. core.Input(),
  455. __metadata("design:type", Object)
  456. ], AgGridColumn.prototype, "dndSourceOnRowDrag", void 0);
  457. __decorate([
  458. core.Input(),
  459. __metadata("design:type", Object)
  460. ], AgGridColumn.prototype, "valueGetter", void 0);
  461. __decorate([
  462. core.Input(),
  463. __metadata("design:type", Object)
  464. ], AgGridColumn.prototype, "valueSetter", void 0);
  465. __decorate([
  466. core.Input(),
  467. __metadata("design:type", Object)
  468. ], AgGridColumn.prototype, "filterValueGetter", void 0);
  469. __decorate([
  470. core.Input(),
  471. __metadata("design:type", Object)
  472. ], AgGridColumn.prototype, "keyCreator", void 0);
  473. __decorate([
  474. core.Input(),
  475. __metadata("design:type", Object)
  476. ], AgGridColumn.prototype, "cellRendererFramework", void 0);
  477. __decorate([
  478. core.Input(),
  479. __metadata("design:type", Object)
  480. ], AgGridColumn.prototype, "pinnedRowCellRenderer", void 0);
  481. __decorate([
  482. core.Input(),
  483. __metadata("design:type", Object)
  484. ], AgGridColumn.prototype, "valueFormatter", void 0);
  485. __decorate([
  486. core.Input(),
  487. __metadata("design:type", Object)
  488. ], AgGridColumn.prototype, "pinnedRowValueFormatter", void 0);
  489. __decorate([
  490. core.Input(),
  491. __metadata("design:type", Object)
  492. ], AgGridColumn.prototype, "valueParser", void 0);
  493. __decorate([
  494. core.Input(),
  495. __metadata("design:type", Object)
  496. ], AgGridColumn.prototype, "comparator", void 0);
  497. __decorate([
  498. core.Input(),
  499. __metadata("design:type", Object)
  500. ], AgGridColumn.prototype, "equals", void 0);
  501. __decorate([
  502. core.Input(),
  503. __metadata("design:type", Object)
  504. ], AgGridColumn.prototype, "pivotComparator", void 0);
  505. __decorate([
  506. core.Input(),
  507. __metadata("design:type", Object)
  508. ], AgGridColumn.prototype, "suppressKeyboardEvent", void 0);
  509. __decorate([
  510. core.Input(),
  511. __metadata("design:type", Object)
  512. ], AgGridColumn.prototype, "colSpan", void 0);
  513. __decorate([
  514. core.Input(),
  515. __metadata("design:type", Object)
  516. ], AgGridColumn.prototype, "rowSpan", void 0);
  517. __decorate([
  518. core.Input(),
  519. __metadata("design:type", Object)
  520. ], AgGridColumn.prototype, "getQuickFilterText", void 0);
  521. __decorate([
  522. core.Input(),
  523. __metadata("design:type", Object)
  524. ], AgGridColumn.prototype, "newValueHandler", void 0);
  525. __decorate([
  526. core.Input(),
  527. __metadata("design:type", Object)
  528. ], AgGridColumn.prototype, "onCellValueChanged", void 0);
  529. __decorate([
  530. core.Input(),
  531. __metadata("design:type", Object)
  532. ], AgGridColumn.prototype, "onCellClicked", void 0);
  533. __decorate([
  534. core.Input(),
  535. __metadata("design:type", Object)
  536. ], AgGridColumn.prototype, "onCellDoubleClicked", void 0);
  537. __decorate([
  538. core.Input(),
  539. __metadata("design:type", Object)
  540. ], AgGridColumn.prototype, "onCellContextMenu", void 0);
  541. __decorate([
  542. core.Input(),
  543. __metadata("design:type", Object)
  544. ], AgGridColumn.prototype, "rowDragText", void 0);
  545. __decorate([
  546. core.Input(),
  547. __metadata("design:type", Object)
  548. ], AgGridColumn.prototype, "tooltip", void 0);
  549. __decorate([
  550. core.Input(),
  551. __metadata("design:type", Object)
  552. ], AgGridColumn.prototype, "tooltipValueGetter", void 0);
  553. __decorate([
  554. core.Input(),
  555. __metadata("design:type", Object)
  556. ], AgGridColumn.prototype, "cellRendererSelector", void 0);
  557. __decorate([
  558. core.Input(),
  559. __metadata("design:type", Object)
  560. ], AgGridColumn.prototype, "cellEditorSelector", void 0);
  561. __decorate([
  562. core.Input(),
  563. __metadata("design:type", Object)
  564. ], AgGridColumn.prototype, "suppressCellFlash", void 0);
  565. __decorate([
  566. core.Input(),
  567. __metadata("design:type", Object)
  568. ], AgGridColumn.prototype, "suppressColumnsToolPanel", void 0);
  569. __decorate([
  570. core.Input(),
  571. __metadata("design:type", Object)
  572. ], AgGridColumn.prototype, "suppressFiltersToolPanel", void 0);
  573. __decorate([
  574. core.Input(),
  575. __metadata("design:type", Object)
  576. ], AgGridColumn.prototype, "openByDefault", void 0);
  577. __decorate([
  578. core.Input(),
  579. __metadata("design:type", Object)
  580. ], AgGridColumn.prototype, "marryChildren", void 0);
  581. __decorate([
  582. core.Input(),
  583. __metadata("design:type", Object)
  584. ], AgGridColumn.prototype, "hide", void 0);
  585. __decorate([
  586. core.Input(),
  587. __metadata("design:type", Object)
  588. ], AgGridColumn.prototype, "rowGroup", void 0);
  589. __decorate([
  590. core.Input(),
  591. __metadata("design:type", Object)
  592. ], AgGridColumn.prototype, "pivot", void 0);
  593. __decorate([
  594. core.Input(),
  595. __metadata("design:type", Object)
  596. ], AgGridColumn.prototype, "checkboxSelection", void 0);
  597. __decorate([
  598. core.Input(),
  599. __metadata("design:type", Object)
  600. ], AgGridColumn.prototype, "headerCheckboxSelection", void 0);
  601. __decorate([
  602. core.Input(),
  603. __metadata("design:type", Object)
  604. ], AgGridColumn.prototype, "headerCheckboxSelectionFilteredOnly", void 0);
  605. __decorate([
  606. core.Input(),
  607. __metadata("design:type", Object)
  608. ], AgGridColumn.prototype, "suppressMenu", void 0);
  609. __decorate([
  610. core.Input(),
  611. __metadata("design:type", Object)
  612. ], AgGridColumn.prototype, "suppressSorting", void 0);
  613. __decorate([
  614. core.Input(),
  615. __metadata("design:type", Object)
  616. ], AgGridColumn.prototype, "suppressMovable", void 0);
  617. __decorate([
  618. core.Input(),
  619. __metadata("design:type", Object)
  620. ], AgGridColumn.prototype, "suppressFilter", void 0);
  621. __decorate([
  622. core.Input(),
  623. __metadata("design:type", Object)
  624. ], AgGridColumn.prototype, "lockPosition", void 0);
  625. __decorate([
  626. core.Input(),
  627. __metadata("design:type", Object)
  628. ], AgGridColumn.prototype, "lockVisible", void 0);
  629. __decorate([
  630. core.Input(),
  631. __metadata("design:type", Object)
  632. ], AgGridColumn.prototype, "lockPinned", void 0);
  633. __decorate([
  634. core.Input(),
  635. __metadata("design:type", Object)
  636. ], AgGridColumn.prototype, "unSortIcon", void 0);
  637. __decorate([
  638. core.Input(),
  639. __metadata("design:type", Object)
  640. ], AgGridColumn.prototype, "suppressSizeToFit", void 0);
  641. __decorate([
  642. core.Input(),
  643. __metadata("design:type", Object)
  644. ], AgGridColumn.prototype, "suppressResize", void 0);
  645. __decorate([
  646. core.Input(),
  647. __metadata("design:type", Object)
  648. ], AgGridColumn.prototype, "suppressAutoSize", void 0);
  649. __decorate([
  650. core.Input(),
  651. __metadata("design:type", Object)
  652. ], AgGridColumn.prototype, "enableRowGroup", void 0);
  653. __decorate([
  654. core.Input(),
  655. __metadata("design:type", Object)
  656. ], AgGridColumn.prototype, "enablePivot", void 0);
  657. __decorate([
  658. core.Input(),
  659. __metadata("design:type", Object)
  660. ], AgGridColumn.prototype, "enableValue", void 0);
  661. __decorate([
  662. core.Input(),
  663. __metadata("design:type", Object)
  664. ], AgGridColumn.prototype, "editable", void 0);
  665. __decorate([
  666. core.Input(),
  667. __metadata("design:type", Object)
  668. ], AgGridColumn.prototype, "suppressPaste", void 0);
  669. __decorate([
  670. core.Input(),
  671. __metadata("design:type", Object)
  672. ], AgGridColumn.prototype, "suppressNavigable", void 0);
  673. __decorate([
  674. core.Input(),
  675. __metadata("design:type", Object)
  676. ], AgGridColumn.prototype, "enableCellChangeFlash", void 0);
  677. __decorate([
  678. core.Input(),
  679. __metadata("design:type", Object)
  680. ], AgGridColumn.prototype, "rowDrag", void 0);
  681. __decorate([
  682. core.Input(),
  683. __metadata("design:type", Object)
  684. ], AgGridColumn.prototype, "dndSource", void 0);
  685. __decorate([
  686. core.Input(),
  687. __metadata("design:type", Object)
  688. ], AgGridColumn.prototype, "autoHeight", void 0);
  689. __decorate([
  690. core.Input(),
  691. __metadata("design:type", Object)
  692. ], AgGridColumn.prototype, "sortable", void 0);
  693. __decorate([
  694. core.Input(),
  695. __metadata("design:type", Object)
  696. ], AgGridColumn.prototype, "resizable", void 0);
  697. __decorate([
  698. core.Input(),
  699. __metadata("design:type", Object)
  700. ], AgGridColumn.prototype, "singleClickEdit", void 0);
  701. __decorate([
  702. core.Input(),
  703. __metadata("design:type", Object)
  704. ], AgGridColumn.prototype, "floatingFilter", void 0);
  705. AgGridColumn = AgGridColumn_1 = __decorate([
  706. core.Component({
  707. selector: 'ag-grid-column',
  708. template: ''
  709. })
  710. ], AgGridColumn);
  711. return AgGridColumn;
  712. }());
  713. var AngularFrameworkOverrides = /** @class */ (function (_super) {
  714. __extends(AngularFrameworkOverrides, _super);
  715. function AngularFrameworkOverrides(_ngZone) {
  716. var _this = _super.call(this) || this;
  717. _this._ngZone = _ngZone;
  718. return _this;
  719. }
  720. AngularFrameworkOverrides.prototype.setTimeout = function (action, timeout) {
  721. this._ngZone.runOutsideAngular(function () {
  722. window.setTimeout(function () {
  723. action();
  724. }, timeout);
  725. });
  726. };
  727. AngularFrameworkOverrides.prototype.addEventListenerOutsideAngular = function (element, type, listener, useCapture) {
  728. var _this = this;
  729. this._ngZone.runOutsideAngular(function () {
  730. _super.prototype.addEventListenerOutsideAngular.call(_this, element, type, listener, useCapture);
  731. });
  732. };
  733. AngularFrameworkOverrides.ctorParameters = function () { return [
  734. { type: core.NgZone }
  735. ]; };
  736. AngularFrameworkOverrides = __decorate([
  737. core.Injectable(),
  738. __metadata("design:paramtypes", [core.NgZone])
  739. ], AngularFrameworkOverrides);
  740. return AngularFrameworkOverrides;
  741. }(agGridCommunity.VanillaFrameworkOverrides));
  742. var AngularFrameworkComponentWrapper = /** @class */ (function (_super) {
  743. __extends(AngularFrameworkComponentWrapper, _super);
  744. function AngularFrameworkComponentWrapper() {
  745. return _super !== null && _super.apply(this, arguments) || this;
  746. }
  747. AngularFrameworkComponentWrapper.prototype.setViewContainerRef = function (viewContainerRef) {
  748. this.viewContainerRef = viewContainerRef;
  749. };
  750. AngularFrameworkComponentWrapper.prototype.setComponentFactoryResolver = function (componentFactoryResolver) {
  751. this.componentFactoryResolver = componentFactoryResolver;
  752. };
  753. AngularFrameworkComponentWrapper.prototype.createWrapper = function (OriginalConstructor) {
  754. var that = this;
  755. var DynamicAgNg2Component = /** @class */ (function (_super) {
  756. __extends(DynamicAgNg2Component, _super);
  757. function DynamicAgNg2Component() {
  758. return _super !== null && _super.apply(this, arguments) || this;
  759. }
  760. DynamicAgNg2Component.prototype.init = function (params) {
  761. _super.prototype.init.call(this, params);
  762. this._componentRef.changeDetectorRef.detectChanges();
  763. };
  764. DynamicAgNg2Component.prototype.createComponent = function () {
  765. return that.createComponent(OriginalConstructor);
  766. };
  767. DynamicAgNg2Component.prototype.hasMethod = function (name) {
  768. return wrapper.getFrameworkComponentInstance()[name] != null;
  769. };
  770. DynamicAgNg2Component.prototype.callMethod = function (name, args) {
  771. var componentRef = this.getFrameworkComponentInstance();
  772. return wrapper.getFrameworkComponentInstance()[name].apply(componentRef, args);
  773. };
  774. DynamicAgNg2Component.prototype.addMethod = function (name, callback) {
  775. wrapper[name] = callback;
  776. };
  777. return DynamicAgNg2Component;
  778. }(BaseGuiComponent));
  779. var wrapper = new DynamicAgNg2Component();
  780. return wrapper;
  781. };
  782. AngularFrameworkComponentWrapper.prototype.createComponent = function (componentType) {
  783. // used to cache the factory, but this a) caused issues when used with either webpack/angularcli with --prod
  784. // but more significantly, the underlying implementation of resolveComponentFactory uses a map too, so us
  785. // caching the factory here yields no performance benefits
  786. var factory = this.componentFactoryResolver.resolveComponentFactory(componentType);
  787. return this.viewContainerRef.createComponent(factory);
  788. };
  789. AngularFrameworkComponentWrapper = __decorate([
  790. core.Injectable()
  791. ], AngularFrameworkComponentWrapper);
  792. return AngularFrameworkComponentWrapper;
  793. }(agGridCommunity.BaseComponentWrapper));
  794. var BaseGuiComponent = /** @class */ (function () {
  795. function BaseGuiComponent() {
  796. }
  797. BaseGuiComponent.prototype.init = function (params) {
  798. this._params = params;
  799. this._componentRef = this.createComponent();
  800. this._agAwareComponent = this._componentRef.instance;
  801. this._frameworkComponentInstance = this._componentRef.instance;
  802. this._eGui = this._componentRef.location.nativeElement;
  803. this._agAwareComponent.agInit(this._params);
  804. };
  805. BaseGuiComponent.prototype.getGui = function () {
  806. return this._eGui;
  807. };
  808. BaseGuiComponent.prototype.destroy = function () {
  809. if (this._componentRef) {
  810. this._componentRef.destroy();
  811. }
  812. };
  813. BaseGuiComponent.prototype.getFrameworkComponentInstance = function () {
  814. return this._frameworkComponentInstance;
  815. };
  816. return BaseGuiComponent;
  817. }());
  818. var AgGridAngular = /** @class */ (function () {
  819. function AgGridAngular(elementDef, viewContainerRef, angularFrameworkOverrides, frameworkComponentWrapper, _componentFactoryResolver) {
  820. this.viewContainerRef = viewContainerRef;
  821. this.angularFrameworkOverrides = angularFrameworkOverrides;
  822. this.frameworkComponentWrapper = frameworkComponentWrapper;
  823. this._componentFactoryResolver = _componentFactoryResolver;
  824. this._initialised = false;
  825. this._destroyed = false;
  826. // in order to ensure firing of gridReady is deterministic
  827. this._fullyReady = agGridCommunity.Promise.resolve(true);
  828. // @START@
  829. this.slaveGrids = undefined;
  830. this.alignedGrids = undefined;
  831. this.rowData = undefined;
  832. this.columnDefs = undefined;
  833. this.excelStyles = undefined;
  834. this.pinnedTopRowData = undefined;
  835. this.pinnedBottomRowData = undefined;
  836. this.components = undefined;
  837. this.frameworkComponents = undefined;
  838. this.rowStyle = undefined;
  839. this.context = undefined;
  840. this.autoGroupColumnDef = undefined;
  841. this.groupColumnDef = undefined;
  842. this.localeText = undefined;
  843. this.icons = undefined;
  844. this.datasource = undefined;
  845. this.serverSideDatasource = undefined;
  846. this.viewportDatasource = undefined;
  847. this.groupRowRendererParams = undefined;
  848. this.aggFuncs = undefined;
  849. this.fullWidthCellRendererParams = undefined;
  850. this.defaultColGroupDef = undefined;
  851. this.defaultColDef = undefined;
  852. this.defaultExportParams = undefined;
  853. this.columnTypes = undefined;
  854. this.rowClassRules = undefined;
  855. this.detailGridOptions = undefined;
  856. this.detailCellRendererParams = undefined;
  857. this.loadingCellRendererParams = undefined;
  858. this.loadingOverlayComponentParams = undefined;
  859. this.noRowsOverlayComponentParams = undefined;
  860. this.popupParent = undefined;
  861. this.colResizeDefault = undefined;
  862. this.reduxStore = undefined;
  863. this.statusBar = undefined;
  864. this.sideBar = undefined;
  865. this.sortingOrder = undefined;
  866. this.rowClass = undefined;
  867. this.rowSelection = undefined;
  868. this.overlayLoadingTemplate = undefined;
  869. this.overlayNoRowsTemplate = undefined;
  870. this.quickFilterText = undefined;
  871. this.rowModelType = undefined;
  872. this.editType = undefined;
  873. this.domLayout = undefined;
  874. this.clipboardDeliminator = undefined;
  875. this.rowGroupPanelShow = undefined;
  876. this.multiSortKey = undefined;
  877. this.pivotColumnGroupTotals = undefined;
  878. this.pivotRowTotals = undefined;
  879. this.pivotPanelShow = undefined;
  880. this.rowHeight = undefined;
  881. this.detailRowHeight = undefined;
  882. this.rowBuffer = undefined;
  883. this.colWidth = undefined;
  884. this.headerHeight = undefined;
  885. this.groupHeaderHeight = undefined;
  886. this.floatingFiltersHeight = undefined;
  887. this.pivotHeaderHeight = undefined;
  888. this.pivotGroupHeaderHeight = undefined;
  889. this.groupDefaultExpanded = undefined;
  890. this.minColWidth = undefined;
  891. this.maxColWidth = undefined;
  892. this.viewportRowModelPageSize = undefined;
  893. this.viewportRowModelBufferSize = undefined;
  894. this.autoSizePadding = undefined;
  895. this.maxBlocksInCache = undefined;
  896. this.maxConcurrentDatasourceRequests = undefined;
  897. this.tooltipShowDelay = undefined;
  898. this.cacheOverflowSize = undefined;
  899. this.paginationPageSize = undefined;
  900. this.cacheBlockSize = undefined;
  901. this.infiniteInitialRowCount = undefined;
  902. this.scrollbarWidth = undefined;
  903. this.paginationStartPage = undefined;
  904. this.infiniteBlockSize = undefined;
  905. this.batchUpdateWaitMillis = undefined;
  906. this.asyncTransactionWaitMillis = undefined;
  907. this.blockLoadDebounceMillis = undefined;
  908. this.keepDetailRowsCount = undefined;
  909. this.undoRedoCellEditingLimit = undefined;
  910. this.cellFlashDelay = undefined;
  911. this.cellFadeDelay = undefined;
  912. this.localeTextFunc = undefined;
  913. this.groupRowInnerRenderer = undefined;
  914. this.groupRowInnerRendererFramework = undefined;
  915. this.dateComponent = undefined;
  916. this.dateComponentFramework = undefined;
  917. this.groupRowRenderer = undefined;
  918. this.groupRowRendererFramework = undefined;
  919. this.isExternalFilterPresent = undefined;
  920. this.getRowHeight = undefined;
  921. this.doesExternalFilterPass = undefined;
  922. this.getRowClass = undefined;
  923. this.getRowStyle = undefined;
  924. this.getRowClassRules = undefined;
  925. this.traverseNode = undefined;
  926. this.getContextMenuItems = undefined;
  927. this.getMainMenuItems = undefined;
  928. this.processRowPostCreate = undefined;
  929. this.processCellForClipboard = undefined;
  930. this.getNodeChildDetails = undefined;
  931. this.groupRowAggNodes = undefined;
  932. this.getRowNodeId = undefined;
  933. this.isFullWidthCell = undefined;
  934. this.fullWidthCellRenderer = undefined;
  935. this.fullWidthCellRendererFramework = undefined;
  936. this.doesDataFlower = undefined;
  937. this.processSecondaryColDef = undefined;
  938. this.processSecondaryColGroupDef = undefined;
  939. this.getBusinessKeyForNode = undefined;
  940. this.sendToClipboard = undefined;
  941. this.navigateToNextCell = undefined;
  942. this.tabToNextCell = undefined;
  943. this.getDetailRowData = undefined;
  944. this.processCellFromClipboard = undefined;
  945. this.getDocument = undefined;
  946. this.postProcessPopup = undefined;
  947. this.getChildCount = undefined;
  948. this.getDataPath = undefined;
  949. this.loadingCellRenderer = undefined;
  950. this.loadingCellRendererFramework = undefined;
  951. this.loadingOverlayComponent = undefined;
  952. this.loadingOverlayComponentFramework = undefined;
  953. this.noRowsOverlayComponent = undefined;
  954. this.noRowsOverlayComponentFramework = undefined;
  955. this.detailCellRenderer = undefined;
  956. this.detailCellRendererFramework = undefined;
  957. this.defaultGroupSortComparator = undefined;
  958. this.isRowMaster = undefined;
  959. this.isRowSelectable = undefined;
  960. this.postSort = undefined;
  961. this.processHeaderForClipboard = undefined;
  962. this.paginationNumberFormatter = undefined;
  963. this.processDataFromClipboard = undefined;
  964. this.getServerSideGroupKey = undefined;
  965. this.isServerSideGroup = undefined;
  966. this.suppressKeyboardEvent = undefined;
  967. this.createChartContainer = undefined;
  968. this.processChartOptions = undefined;
  969. this.getChartToolbarItems = undefined;
  970. this.fillOperation = undefined;
  971. this.toolPanelSuppressRowGroups = undefined;
  972. this.toolPanelSuppressValues = undefined;
  973. this.toolPanelSuppressPivots = undefined;
  974. this.toolPanelSuppressPivotMode = undefined;
  975. this.toolPanelSuppressSideButtons = undefined;
  976. this.toolPanelSuppressColumnFilter = undefined;
  977. this.toolPanelSuppressColumnSelectAll = undefined;
  978. this.toolPanelSuppressColumnExpandAll = undefined;
  979. this.suppressMakeColumnVisibleAfterUnGroup = undefined;
  980. this.suppressRowClickSelection = undefined;
  981. this.suppressCellSelection = undefined;
  982. this.suppressHorizontalScroll = undefined;
  983. this.alwaysShowVerticalScroll = undefined;
  984. this.debug = undefined;
  985. this.enableBrowserTooltips = undefined;
  986. this.enableColResize = undefined;
  987. this.enableCellExpressions = undefined;
  988. this.enableSorting = undefined;
  989. this.enableServerSideSorting = undefined;
  990. this.enableFilter = undefined;
  991. this.enableServerSideFilter = undefined;
  992. this.angularCompileRows = undefined;
  993. this.angularCompileFilters = undefined;
  994. this.angularCompileHeaders = undefined;
  995. this.groupSuppressAutoColumn = undefined;
  996. this.groupSelectsChildren = undefined;
  997. this.groupIncludeFooter = undefined;
  998. this.groupIncludeTotalFooter = undefined;
  999. this.groupUseEntireRow = undefined;
  1000. this.groupSuppressRow = undefined;
  1001. this.groupSuppressBlankHeader = undefined;
  1002. this.forPrint = undefined;
  1003. this.suppressMenuHide = undefined;
  1004. this.rowDeselection = undefined;
  1005. this.unSortIcon = undefined;
  1006. this.suppressMultiSort = undefined;
  1007. this.singleClickEdit = undefined;
  1008. this.suppressLoadingOverlay = undefined;
  1009. this.suppressNoRowsOverlay = undefined;
  1010. this.suppressAutoSize = undefined;
  1011. this.skipHeaderOnAutoSize = undefined;
  1012. this.suppressParentsInRowNodes = undefined;
  1013. this.showToolPanel = undefined;
  1014. this.suppressColumnMoveAnimation = undefined;
  1015. this.suppressMovableColumns = undefined;
  1016. this.suppressFieldDotNotation = undefined;
  1017. this.enableRangeSelection = undefined;
  1018. this.enableRangeHandle = undefined;
  1019. this.enableFillHandle = undefined;
  1020. this.suppressClearOnFillReduction = undefined;
  1021. this.deltaSort = undefined;
  1022. this.suppressTouch = undefined;
  1023. this.suppressAsyncEvents = undefined;
  1024. this.allowContextMenuWithControlKey = undefined;
  1025. this.suppressContextMenu = undefined;
  1026. this.suppressMenuFilterPanel = undefined;
  1027. this.suppressMenuMainPanel = undefined;
  1028. this.suppressMenuColumnPanel = undefined;
  1029. this.rememberGroupStateWhenNewData = undefined;
  1030. this.enableCellChangeFlash = undefined;
  1031. this.suppressDragLeaveHidesColumns = undefined;
  1032. this.suppressMiddleClickScrolls = undefined;
  1033. this.suppressPreventDefaultOnMouseWheel = undefined;
  1034. this.suppressUseColIdForGroups = undefined;
  1035. this.suppressCopyRowsToClipboard = undefined;
  1036. this.copyHeadersToClipboard = undefined;
  1037. this.pivotMode = undefined;
  1038. this.suppressAggFuncInHeader = undefined;
  1039. this.suppressColumnVirtualisation = undefined;
  1040. this.suppressAggAtRootLevel = undefined;
  1041. this.suppressFocusAfterRefresh = undefined;
  1042. this.functionsPassive = undefined;
  1043. this.functionsReadOnly = undefined;
  1044. this.animateRows = undefined;
  1045. this.groupSelectsFiltered = undefined;
  1046. this.groupRemoveSingleChildren = undefined;
  1047. this.groupRemoveLowestSingleChildren = undefined;
  1048. this.enableRtl = undefined;
  1049. this.suppressClickEdit = undefined;
  1050. this.rowDragManaged = undefined;
  1051. this.suppressRowDrag = undefined;
  1052. this.suppressMoveWhenRowDragging = undefined;
  1053. this.enableMultiRowDragging = undefined;
  1054. this.enableGroupEdit = undefined;
  1055. this.embedFullWidthRows = undefined;
  1056. this.deprecatedEmbedFullWidthRows = undefined;
  1057. this.suppressTabbing = undefined;
  1058. this.suppressPaginationPanel = undefined;
  1059. this.floatingFilter = undefined;
  1060. this.groupHideOpenParents = undefined;
  1061. this.groupMultiAutoColumn = undefined;
  1062. this.pagination = undefined;
  1063. this.stopEditingWhenGridLosesFocus = undefined;
  1064. this.paginationAutoPageSize = undefined;
  1065. this.suppressScrollOnNewData = undefined;
  1066. this.purgeClosedRowNodes = undefined;
  1067. this.cacheQuickFilter = undefined;
  1068. this.deltaRowDataMode = undefined;
  1069. this.ensureDomOrder = undefined;
  1070. this.accentedSort = undefined;
  1071. this.pivotTotals = undefined;
  1072. this.suppressChangeDetection = undefined;
  1073. this.valueCache = undefined;
  1074. this.valueCacheNeverExpires = undefined;
  1075. this.aggregateOnlyChangedColumns = undefined;
  1076. this.suppressAnimationFrame = undefined;
  1077. this.suppressExcelExport = undefined;
  1078. this.suppressCsvExport = undefined;
  1079. this.treeData = undefined;
  1080. this.masterDetail = undefined;
  1081. this.suppressMultiRangeSelection = undefined;
  1082. this.enterMovesDownAfterEdit = undefined;
  1083. this.enterMovesDown = undefined;
  1084. this.suppressPropertyNamesCheck = undefined;
  1085. this.rowMultiSelectWithClick = undefined;
  1086. this.contractColumnSelection = undefined;
  1087. this.suppressEnterpriseResetOnNewColumns = undefined;
  1088. this.enableOldSetFilterModel = undefined;
  1089. this.suppressRowHoverHighlight = undefined;
  1090. this.gridAutoHeight = undefined;
  1091. this.suppressRowTransform = undefined;
  1092. this.suppressClipboardPaste = undefined;
  1093. this.suppressLastEmptyLineOnPaste = undefined;
  1094. this.serverSideSortingAlwaysResets = undefined;
  1095. this.reactNext = undefined;
  1096. this.suppressSetColumnStateEvents = undefined;
  1097. this.enableCharts = undefined;
  1098. this.deltaColumnMode = undefined;
  1099. this.suppressMaintainUnsortedOrder = undefined;
  1100. this.enableCellTextSelection = undefined;
  1101. this.suppressBrowserResizeObserver = undefined;
  1102. this.suppressMaxRenderedRowRestriction = undefined;
  1103. this.excludeChildrenWhenTreeDataFiltering = undefined;
  1104. this.tooltipMouseTrack = undefined;
  1105. this.keepDetailRows = undefined;
  1106. this.paginateChildRows = undefined;
  1107. this.preventDefaultOnContextMenu = undefined;
  1108. this.undoRedoCellEditing = undefined;
  1109. this.allowDragFromColumnsToolPanel = undefined;
  1110. this.immutableData = undefined;
  1111. this.immutableColumns = undefined;
  1112. this.pivotSuppressAutoColumn = undefined;
  1113. this.columnEverythingChanged = new core.EventEmitter();
  1114. this.newColumnsLoaded = new core.EventEmitter();
  1115. this.columnPivotModeChanged = new core.EventEmitter();
  1116. this.columnRowGroupChanged = new core.EventEmitter();
  1117. this.expandOrCollapseAll = new core.EventEmitter();
  1118. this.columnPivotChanged = new core.EventEmitter();
  1119. this.gridColumnsChanged = new core.EventEmitter();
  1120. this.columnValueChanged = new core.EventEmitter();
  1121. this.columnMoved = new core.EventEmitter();
  1122. this.columnVisible = new core.EventEmitter();
  1123. this.columnPinned = new core.EventEmitter();
  1124. this.columnGroupOpened = new core.EventEmitter();
  1125. this.columnResized = new core.EventEmitter();
  1126. this.displayedColumnsChanged = new core.EventEmitter();
  1127. this.virtualColumnsChanged = new core.EventEmitter();
  1128. this.rowGroupOpened = new core.EventEmitter();
  1129. this.rowDataChanged = new core.EventEmitter();
  1130. this.rowDataUpdated = new core.EventEmitter();
  1131. this.pinnedRowDataChanged = new core.EventEmitter();
  1132. this.rangeSelectionChanged = new core.EventEmitter();
  1133. this.chartCreated = new core.EventEmitter();
  1134. this.chartRangeSelectionChanged = new core.EventEmitter();
  1135. this.chartOptionsChanged = new core.EventEmitter();
  1136. this.chartDestroyed = new core.EventEmitter();
  1137. this.toolPanelVisibleChanged = new core.EventEmitter();
  1138. this.modelUpdated = new core.EventEmitter();
  1139. this.pasteStart = new core.EventEmitter();
  1140. this.pasteEnd = new core.EventEmitter();
  1141. this.fillStart = new core.EventEmitter();
  1142. this.fillEnd = new core.EventEmitter();
  1143. this.cellClicked = new core.EventEmitter();
  1144. this.cellDoubleClicked = new core.EventEmitter();
  1145. this.cellMouseDown = new core.EventEmitter();
  1146. this.cellContextMenu = new core.EventEmitter();
  1147. this.cellValueChanged = new core.EventEmitter();
  1148. this.rowValueChanged = new core.EventEmitter();
  1149. this.cellFocused = new core.EventEmitter();
  1150. this.rowSelected = new core.EventEmitter();
  1151. this.selectionChanged = new core.EventEmitter();
  1152. this.cellKeyDown = new core.EventEmitter();
  1153. this.cellKeyPress = new core.EventEmitter();
  1154. this.cellMouseOver = new core.EventEmitter();
  1155. this.cellMouseOut = new core.EventEmitter();
  1156. this.filterChanged = new core.EventEmitter();
  1157. this.filterModified = new core.EventEmitter();
  1158. this.filterOpened = new core.EventEmitter();
  1159. this.sortChanged = new core.EventEmitter();
  1160. this.virtualRowRemoved = new core.EventEmitter();
  1161. this.rowClicked = new core.EventEmitter();
  1162. this.rowDoubleClicked = new core.EventEmitter();
  1163. this.gridReady = new core.EventEmitter();
  1164. this.gridSizeChanged = new core.EventEmitter();
  1165. this.viewportChanged = new core.EventEmitter();
  1166. this.firstDataRendered = new core.EventEmitter();
  1167. this.dragStarted = new core.EventEmitter();
  1168. this.dragStopped = new core.EventEmitter();
  1169. this.checkboxChanged = new core.EventEmitter();
  1170. this.rowEditingStarted = new core.EventEmitter();
  1171. this.rowEditingStopped = new core.EventEmitter();
  1172. this.cellEditingStarted = new core.EventEmitter();
  1173. this.cellEditingStopped = new core.EventEmitter();
  1174. this.bodyScroll = new core.EventEmitter();
  1175. this.animationQueueEmpty = new core.EventEmitter();
  1176. this.heightScaleChanged = new core.EventEmitter();
  1177. this.paginationChanged = new core.EventEmitter();
  1178. this.componentStateChanged = new core.EventEmitter();
  1179. this.bodyHeightChanged = new core.EventEmitter();
  1180. this.displayedColumnsWidthChanged = new core.EventEmitter();
  1181. this.scrollVisibilityChanged = new core.EventEmitter();
  1182. this.columnHoverChanged = new core.EventEmitter();
  1183. this.flashCells = new core.EventEmitter();
  1184. this.rowDragEnter = new core.EventEmitter();
  1185. this.rowDragMove = new core.EventEmitter();
  1186. this.rowDragLeave = new core.EventEmitter();
  1187. this.rowDragEnd = new core.EventEmitter();
  1188. this.popupToFront = new core.EventEmitter();
  1189. this.columnRowGroupChangeRequest = new core.EventEmitter();
  1190. this.columnPivotChangeRequest = new core.EventEmitter();
  1191. this.columnValueChangeRequest = new core.EventEmitter();
  1192. this.columnAggFuncChangeRequest = new core.EventEmitter();
  1193. this.keyboardFocus = new core.EventEmitter();
  1194. this.mouseFocus = new core.EventEmitter();
  1195. this._nativeElement = elementDef.nativeElement;
  1196. this.frameworkComponentWrapper.setViewContainerRef(this.viewContainerRef);
  1197. this.frameworkComponentWrapper.setComponentFactoryResolver(this._componentFactoryResolver);
  1198. }
  1199. AgGridAngular.prototype.ngAfterViewInit = function () {
  1200. this.checkForDeprecatedEvents();
  1201. this.gridOptions = agGridCommunity.ComponentUtil.copyAttributesToGridOptions(this.gridOptions, this, true);
  1202. this.gridParams = {
  1203. globalEventListener: this.globalEventListener.bind(this),
  1204. frameworkOverrides: this.angularFrameworkOverrides,
  1205. providedBeanInstances: {
  1206. frameworkComponentWrapper: this.frameworkComponentWrapper
  1207. },
  1208. modules: (this.modules || [])
  1209. };
  1210. if (this.columns && this.columns.length > 0) {
  1211. this.gridOptions.columnDefs = this.columns
  1212. .map(function (column) {
  1213. return column.toColDef();
  1214. });
  1215. }
  1216. new agGridCommunity.Grid(this._nativeElement, this.gridOptions, this.gridParams);
  1217. if (this.gridOptions.api) {
  1218. this.api = this.gridOptions.api;
  1219. }
  1220. if (this.gridOptions.columnApi) {
  1221. this.columnApi = this.gridOptions.columnApi;
  1222. }
  1223. this._initialised = true;
  1224. // sometimes, especially in large client apps gridReady can fire before ngAfterViewInit
  1225. // this ties these together so that gridReady will always fire after agGridAngular's ngAfterViewInit
  1226. // the actual containing component's ngAfterViewInit will fire just after agGridAngular's
  1227. this._fullyReady.resolveNow(null, function (resolve) { return resolve; });
  1228. };
  1229. AgGridAngular.prototype.ngOnChanges = function (changes) {
  1230. if (this._initialised) {
  1231. agGridCommunity.ComponentUtil.processOnChange(changes, this.gridOptions, this.api, this.columnApi);
  1232. }
  1233. };
  1234. AgGridAngular.prototype.ngOnDestroy = function () {
  1235. if (this._initialised) {
  1236. // need to do this before the destroy, so we know not to emit any events
  1237. // while tearing down the grid.
  1238. this._destroyed = true;
  1239. if (this.api) {
  1240. this.api.destroy();
  1241. }
  1242. }
  1243. };
  1244. AgGridAngular.prototype.checkForDeprecatedEvents = function () {
  1245. var _this = this;
  1246. agGridCommunity._.iterateObject(agGridCommunity.Events, function (key, eventName) {
  1247. if (_this[eventName] && _this[eventName].observers.length > 0) {
  1248. agGridCommunity.GridOptionsWrapper.checkEventDeprecation(eventName);
  1249. }
  1250. });
  1251. };
  1252. AgGridAngular.prototype.globalEventListener = function (eventType, event) {
  1253. // if we are tearing down, don't emit angular events, as this causes
  1254. // problems with the angular router
  1255. if (this._destroyed) {
  1256. return;
  1257. }
  1258. // generically look up the eventType
  1259. var emitter = this[eventType];
  1260. if (emitter) {
  1261. if (eventType === 'gridReady') {
  1262. // if the user is listening for gridReady, wait for ngAfterViewInit to fire first, then emit the
  1263. // gridReady event
  1264. this._fullyReady.then((function (result) {
  1265. emitter.emit(event);
  1266. }));
  1267. }
  1268. else {
  1269. emitter.emit(event);
  1270. }
  1271. }
  1272. else {
  1273. console.log('ag-Grid-angular: could not find EventEmitter: ' + eventType);
  1274. }
  1275. };
  1276. AgGridAngular.ctorParameters = function () { return [
  1277. { type: core.ElementRef },
  1278. { type: core.ViewContainerRef },
  1279. { type: AngularFrameworkOverrides },
  1280. { type: AngularFrameworkComponentWrapper },
  1281. { type: core.ComponentFactoryResolver }
  1282. ]; };
  1283. __decorate([
  1284. core.ContentChildren(AgGridColumn),
  1285. __metadata("design:type", core.QueryList)
  1286. ], AgGridAngular.prototype, "columns", void 0);
  1287. __decorate([
  1288. core.Input(),
  1289. __metadata("design:type", Object)
  1290. ], AgGridAngular.prototype, "gridOptions", void 0);
  1291. __decorate([
  1292. core.Input(),
  1293. __metadata("design:type", Array)
  1294. ], AgGridAngular.prototype, "modules", void 0);
  1295. __decorate([
  1296. core.Input(),
  1297. __metadata("design:type", Object)
  1298. ], AgGridAngular.prototype, "slaveGrids", void 0);
  1299. __decorate([
  1300. core.Input(),
  1301. __metadata("design:type", Object)
  1302. ], AgGridAngular.prototype, "alignedGrids", void 0);
  1303. __decorate([
  1304. core.Input(),
  1305. __metadata("design:type", Object)
  1306. ], AgGridAngular.prototype, "rowData", void 0);
  1307. __decorate([
  1308. core.Input(),
  1309. __metadata("design:type", Object)
  1310. ], AgGridAngular.prototype, "columnDefs", void 0);
  1311. __decorate([
  1312. core.Input(),
  1313. __metadata("design:type", Object)
  1314. ], AgGridAngular.prototype, "excelStyles", void 0);
  1315. __decorate([
  1316. core.Input(),
  1317. __metadata("design:type", Object)
  1318. ], AgGridAngular.prototype, "pinnedTopRowData", void 0);
  1319. __decorate([
  1320. core.Input(),
  1321. __metadata("design:type", Object)
  1322. ], AgGridAngular.prototype, "pinnedBottomRowData", void 0);
  1323. __decorate([
  1324. core.Input(),
  1325. __metadata("design:type", Object)
  1326. ], AgGridAngular.prototype, "components", void 0);
  1327. __decorate([
  1328. core.Input(),
  1329. __metadata("design:type", Object)
  1330. ], AgGridAngular.prototype, "frameworkComponents", void 0);
  1331. __decorate([
  1332. core.Input(),
  1333. __metadata("design:type", Object)
  1334. ], AgGridAngular.prototype, "rowStyle", void 0);
  1335. __decorate([
  1336. core.Input(),
  1337. __metadata("design:type", Object)
  1338. ], AgGridAngular.prototype, "context", void 0);
  1339. __decorate([
  1340. core.Input(),
  1341. __metadata("design:type", Object)
  1342. ], AgGridAngular.prototype, "autoGroupColumnDef", void 0);
  1343. __decorate([
  1344. core.Input(),
  1345. __metadata("design:type", Object)
  1346. ], AgGridAngular.prototype, "groupColumnDef", void 0);
  1347. __decorate([
  1348. core.Input(),
  1349. __metadata("design:type", Object)
  1350. ], AgGridAngular.prototype, "localeText", void 0);
  1351. __decorate([
  1352. core.Input(),
  1353. __metadata("design:type", Object)
  1354. ], AgGridAngular.prototype, "icons", void 0);
  1355. __decorate([
  1356. core.Input(),
  1357. __metadata("design:type", Object)
  1358. ], AgGridAngular.prototype, "datasource", void 0);
  1359. __decorate([
  1360. core.Input(),
  1361. __metadata("design:type", Object)
  1362. ], AgGridAngular.prototype, "serverSideDatasource", void 0);
  1363. __decorate([
  1364. core.Input(),
  1365. __metadata("design:type", Object)
  1366. ], AgGridAngular.prototype, "viewportDatasource", void 0);
  1367. __decorate([
  1368. core.Input(),
  1369. __metadata("design:type", Object)
  1370. ], AgGridAngular.prototype, "groupRowRendererParams", void 0);
  1371. __decorate([
  1372. core.Input(),
  1373. __metadata("design:type", Object)
  1374. ], AgGridAngular.prototype, "aggFuncs", void 0);
  1375. __decorate([
  1376. core.Input(),
  1377. __metadata("design:type", Object)
  1378. ], AgGridAngular.prototype, "fullWidthCellRendererParams", void 0);
  1379. __decorate([
  1380. core.Input(),
  1381. __metadata("design:type", Object)
  1382. ], AgGridAngular.prototype, "defaultColGroupDef", void 0);
  1383. __decorate([
  1384. core.Input(),
  1385. __metadata("design:type", Object)
  1386. ], AgGridAngular.prototype, "defaultColDef", void 0);
  1387. __decorate([
  1388. core.Input(),
  1389. __metadata("design:type", Object)
  1390. ], AgGridAngular.prototype, "defaultExportParams", void 0);
  1391. __decorate([
  1392. core.Input(),
  1393. __metadata("design:type", Object)
  1394. ], AgGridAngular.prototype, "columnTypes", void 0);
  1395. __decorate([
  1396. core.Input(),
  1397. __metadata("design:type", Object)
  1398. ], AgGridAngular.prototype, "rowClassRules", void 0);
  1399. __decorate([
  1400. core.Input(),
  1401. __metadata("design:type", Object)
  1402. ], AgGridAngular.prototype, "detailGridOptions", void 0);
  1403. __decorate([
  1404. core.Input(),
  1405. __metadata("design:type", Object)
  1406. ], AgGridAngular.prototype, "detailCellRendererParams", void 0);
  1407. __decorate([
  1408. core.Input(),
  1409. __metadata("design:type", Object)
  1410. ], AgGridAngular.prototype, "loadingCellRendererParams", void 0);
  1411. __decorate([
  1412. core.Input(),
  1413. __metadata("design:type", Object)
  1414. ], AgGridAngular.prototype, "loadingOverlayComponentParams", void 0);
  1415. __decorate([
  1416. core.Input(),
  1417. __metadata("design:type", Object)
  1418. ], AgGridAngular.prototype, "noRowsOverlayComponentParams", void 0);
  1419. __decorate([
  1420. core.Input(),
  1421. __metadata("design:type", Object)
  1422. ], AgGridAngular.prototype, "popupParent", void 0);
  1423. __decorate([
  1424. core.Input(),
  1425. __metadata("design:type", Object)
  1426. ], AgGridAngular.prototype, "colResizeDefault", void 0);
  1427. __decorate([
  1428. core.Input(),
  1429. __metadata("design:type", Object)
  1430. ], AgGridAngular.prototype, "reduxStore", void 0);
  1431. __decorate([
  1432. core.Input(),
  1433. __metadata("design:type", Object)
  1434. ], AgGridAngular.prototype, "statusBar", void 0);
  1435. __decorate([
  1436. core.Input(),
  1437. __metadata("design:type", Object)
  1438. ], AgGridAngular.prototype, "sideBar", void 0);
  1439. __decorate([
  1440. core.Input(),
  1441. __metadata("design:type", Object)
  1442. ], AgGridAngular.prototype, "sortingOrder", void 0);
  1443. __decorate([
  1444. core.Input(),
  1445. __metadata("design:type", Object)
  1446. ], AgGridAngular.prototype, "rowClass", void 0);
  1447. __decorate([
  1448. core.Input(),
  1449. __metadata("design:type", Object)
  1450. ], AgGridAngular.prototype, "rowSelection", void 0);
  1451. __decorate([
  1452. core.Input(),
  1453. __metadata("design:type", Object)
  1454. ], AgGridAngular.prototype, "overlayLoadingTemplate", void 0);
  1455. __decorate([
  1456. core.Input(),
  1457. __metadata("design:type", Object)
  1458. ], AgGridAngular.prototype, "overlayNoRowsTemplate", void 0);
  1459. __decorate([
  1460. core.Input(),
  1461. __metadata("design:type", Object)
  1462. ], AgGridAngular.prototype, "quickFilterText", void 0);
  1463. __decorate([
  1464. core.Input(),
  1465. __metadata("design:type", Object)
  1466. ], AgGridAngular.prototype, "rowModelType", void 0);
  1467. __decorate([
  1468. core.Input(),
  1469. __metadata("design:type", Object)
  1470. ], AgGridAngular.prototype, "editType", void 0);
  1471. __decorate([
  1472. core.Input(),
  1473. __metadata("design:type", Object)
  1474. ], AgGridAngular.prototype, "domLayout", void 0);
  1475. __decorate([
  1476. core.Input(),
  1477. __metadata("design:type", Object)
  1478. ], AgGridAngular.prototype, "clipboardDeliminator", void 0);
  1479. __decorate([
  1480. core.Input(),
  1481. __metadata("design:type", Object)
  1482. ], AgGridAngular.prototype, "rowGroupPanelShow", void 0);
  1483. __decorate([
  1484. core.Input(),
  1485. __metadata("design:type", Object)
  1486. ], AgGridAngular.prototype, "multiSortKey", void 0);
  1487. __decorate([
  1488. core.Input(),
  1489. __metadata("design:type", Object)
  1490. ], AgGridAngular.prototype, "pivotColumnGroupTotals", void 0);
  1491. __decorate([
  1492. core.Input(),
  1493. __metadata("design:type", Object)
  1494. ], AgGridAngular.prototype, "pivotRowTotals", void 0);
  1495. __decorate([
  1496. core.Input(),
  1497. __metadata("design:type", Object)
  1498. ], AgGridAngular.prototype, "pivotPanelShow", void 0);
  1499. __decorate([
  1500. core.Input(),
  1501. __metadata("design:type", Object)
  1502. ], AgGridAngular.prototype, "rowHeight", void 0);
  1503. __decorate([
  1504. core.Input(),
  1505. __metadata("design:type", Object)
  1506. ], AgGridAngular.prototype, "detailRowHeight", void 0);
  1507. __decorate([
  1508. core.Input(),
  1509. __metadata("design:type", Object)
  1510. ], AgGridAngular.prototype, "rowBuffer", void 0);
  1511. __decorate([
  1512. core.Input(),
  1513. __metadata("design:type", Object)
  1514. ], AgGridAngular.prototype, "colWidth", void 0);
  1515. __decorate([
  1516. core.Input(),
  1517. __metadata("design:type", Object)
  1518. ], AgGridAngular.prototype, "headerHeight", void 0);
  1519. __decorate([
  1520. core.Input(),
  1521. __metadata("design:type", Object)
  1522. ], AgGridAngular.prototype, "groupHeaderHeight", void 0);
  1523. __decorate([
  1524. core.Input(),
  1525. __metadata("design:type", Object)
  1526. ], AgGridAngular.prototype, "floatingFiltersHeight", void 0);
  1527. __decorate([
  1528. core.Input(),
  1529. __metadata("design:type", Object)
  1530. ], AgGridAngular.prototype, "pivotHeaderHeight", void 0);
  1531. __decorate([
  1532. core.Input(),
  1533. __metadata("design:type", Object)
  1534. ], AgGridAngular.prototype, "pivotGroupHeaderHeight", void 0);
  1535. __decorate([
  1536. core.Input(),
  1537. __metadata("design:type", Object)
  1538. ], AgGridAngular.prototype, "groupDefaultExpanded", void 0);
  1539. __decorate([
  1540. core.Input(),
  1541. __metadata("design:type", Object)
  1542. ], AgGridAngular.prototype, "minColWidth", void 0);
  1543. __decorate([
  1544. core.Input(),
  1545. __metadata("design:type", Object)
  1546. ], AgGridAngular.prototype, "maxColWidth", void 0);
  1547. __decorate([
  1548. core.Input(),
  1549. __metadata("design:type", Object)
  1550. ], AgGridAngular.prototype, "viewportRowModelPageSize", void 0);
  1551. __decorate([
  1552. core.Input(),
  1553. __metadata("design:type", Object)
  1554. ], AgGridAngular.prototype, "viewportRowModelBufferSize", void 0);
  1555. __decorate([
  1556. core.Input(),
  1557. __metadata("design:type", Object)
  1558. ], AgGridAngular.prototype, "autoSizePadding", void 0);
  1559. __decorate([
  1560. core.Input(),
  1561. __metadata("design:type", Object)
  1562. ], AgGridAngular.prototype, "maxBlocksInCache", void 0);
  1563. __decorate([
  1564. core.Input(),
  1565. __metadata("design:type", Object)
  1566. ], AgGridAngular.prototype, "maxConcurrentDatasourceRequests", void 0);
  1567. __decorate([
  1568. core.Input(),
  1569. __metadata("design:type", Object)
  1570. ], AgGridAngular.prototype, "tooltipShowDelay", void 0);
  1571. __decorate([
  1572. core.Input(),
  1573. __metadata("design:type", Object)
  1574. ], AgGridAngular.prototype, "cacheOverflowSize", void 0);
  1575. __decorate([
  1576. core.Input(),
  1577. __metadata("design:type", Object)
  1578. ], AgGridAngular.prototype, "paginationPageSize", void 0);
  1579. __decorate([
  1580. core.Input(),
  1581. __metadata("design:type", Object)
  1582. ], AgGridAngular.prototype, "cacheBlockSize", void 0);
  1583. __decorate([
  1584. core.Input(),
  1585. __metadata("design:type", Object)
  1586. ], AgGridAngular.prototype, "infiniteInitialRowCount", void 0);
  1587. __decorate([
  1588. core.Input(),
  1589. __metadata("design:type", Object)
  1590. ], AgGridAngular.prototype, "scrollbarWidth", void 0);
  1591. __decorate([
  1592. core.Input(),
  1593. __metadata("design:type", Object)
  1594. ], AgGridAngular.prototype, "paginationStartPage", void 0);
  1595. __decorate([
  1596. core.Input(),
  1597. __metadata("design:type", Object)
  1598. ], AgGridAngular.prototype, "infiniteBlockSize", void 0);
  1599. __decorate([
  1600. core.Input(),
  1601. __metadata("design:type", Object)
  1602. ], AgGridAngular.prototype, "batchUpdateWaitMillis", void 0);
  1603. __decorate([
  1604. core.Input(),
  1605. __metadata("design:type", Object)
  1606. ], AgGridAngular.prototype, "asyncTransactionWaitMillis", void 0);
  1607. __decorate([
  1608. core.Input(),
  1609. __metadata("design:type", Object)
  1610. ], AgGridAngular.prototype, "blockLoadDebounceMillis", void 0);
  1611. __decorate([
  1612. core.Input(),
  1613. __metadata("design:type", Object)
  1614. ], AgGridAngular.prototype, "keepDetailRowsCount", void 0);
  1615. __decorate([
  1616. core.Input(),
  1617. __metadata("design:type", Object)
  1618. ], AgGridAngular.prototype, "undoRedoCellEditingLimit", void 0);
  1619. __decorate([
  1620. core.Input(),
  1621. __metadata("design:type", Object)
  1622. ], AgGridAngular.prototype, "cellFlashDelay", void 0);
  1623. __decorate([
  1624. core.Input(),
  1625. __metadata("design:type", Object)
  1626. ], AgGridAngular.prototype, "cellFadeDelay", void 0);
  1627. __decorate([
  1628. core.Input(),
  1629. __metadata("design:type", Object)
  1630. ], AgGridAngular.prototype, "localeTextFunc", void 0);
  1631. __decorate([
  1632. core.Input(),
  1633. __metadata("design:type", Object)
  1634. ], AgGridAngular.prototype, "groupRowInnerRenderer", void 0);
  1635. __decorate([
  1636. core.Input(),
  1637. __metadata("design:type", Object)
  1638. ], AgGridAngular.prototype, "groupRowInnerRendererFramework", void 0);
  1639. __decorate([
  1640. core.Input(),
  1641. __metadata("design:type", Object)
  1642. ], AgGridAngular.prototype, "dateComponent", void 0);
  1643. __decorate([
  1644. core.Input(),
  1645. __metadata("design:type", Object)
  1646. ], AgGridAngular.prototype, "dateComponentFramework", void 0);
  1647. __decorate([
  1648. core.Input(),
  1649. __metadata("design:type", Object)
  1650. ], AgGridAngular.prototype, "groupRowRenderer", void 0);
  1651. __decorate([
  1652. core.Input(),
  1653. __metadata("design:type", Object)
  1654. ], AgGridAngular.prototype, "groupRowRendererFramework", void 0);
  1655. __decorate([
  1656. core.Input(),
  1657. __metadata("design:type", Object)
  1658. ], AgGridAngular.prototype, "isExternalFilterPresent", void 0);
  1659. __decorate([
  1660. core.Input(),
  1661. __metadata("design:type", Object)
  1662. ], AgGridAngular.prototype, "getRowHeight", void 0);
  1663. __decorate([
  1664. core.Input(),
  1665. __metadata("design:type", Object)
  1666. ], AgGridAngular.prototype, "doesExternalFilterPass", void 0);
  1667. __decorate([
  1668. core.Input(),
  1669. __metadata("design:type", Object)
  1670. ], AgGridAngular.prototype, "getRowClass", void 0);
  1671. __decorate([
  1672. core.Input(),
  1673. __metadata("design:type", Object)
  1674. ], AgGridAngular.prototype, "getRowStyle", void 0);
  1675. __decorate([
  1676. core.Input(),
  1677. __metadata("design:type", Object)
  1678. ], AgGridAngular.prototype, "getRowClassRules", void 0);
  1679. __decorate([
  1680. core.Input(),
  1681. __metadata("design:type", Object)
  1682. ], AgGridAngular.prototype, "traverseNode", void 0);
  1683. __decorate([
  1684. core.Input(),
  1685. __metadata("design:type", Object)
  1686. ], AgGridAngular.prototype, "getContextMenuItems", void 0);
  1687. __decorate([
  1688. core.Input(),
  1689. __metadata("design:type", Object)
  1690. ], AgGridAngular.prototype, "getMainMenuItems", void 0);
  1691. __decorate([
  1692. core.Input(),
  1693. __metadata("design:type", Object)
  1694. ], AgGridAngular.prototype, "processRowPostCreate", void 0);
  1695. __decorate([
  1696. core.Input(),
  1697. __metadata("design:type", Object)
  1698. ], AgGridAngular.prototype, "processCellForClipboard", void 0);
  1699. __decorate([
  1700. core.Input(),
  1701. __metadata("design:type", Object)
  1702. ], AgGridAngular.prototype, "getNodeChildDetails", void 0);
  1703. __decorate([
  1704. core.Input(),
  1705. __metadata("design:type", Object)
  1706. ], AgGridAngular.prototype, "groupRowAggNodes", void 0);
  1707. __decorate([
  1708. core.Input(),
  1709. __metadata("design:type", Object)
  1710. ], AgGridAngular.prototype, "getRowNodeId", void 0);
  1711. __decorate([
  1712. core.Input(),
  1713. __metadata("design:type", Object)
  1714. ], AgGridAngular.prototype, "isFullWidthCell", void 0);
  1715. __decorate([
  1716. core.Input(),
  1717. __metadata("design:type", Object)
  1718. ], AgGridAngular.prototype, "fullWidthCellRenderer", void 0);
  1719. __decorate([
  1720. core.Input(),
  1721. __metadata("design:type", Object)
  1722. ], AgGridAngular.prototype, "fullWidthCellRendererFramework", void 0);
  1723. __decorate([
  1724. core.Input(),
  1725. __metadata("design:type", Object)
  1726. ], AgGridAngular.prototype, "doesDataFlower", void 0);
  1727. __decorate([
  1728. core.Input(),
  1729. __metadata("design:type", Object)
  1730. ], AgGridAngular.prototype, "processSecondaryColDef", void 0);
  1731. __decorate([
  1732. core.Input(),
  1733. __metadata("design:type", Object)
  1734. ], AgGridAngular.prototype, "processSecondaryColGroupDef", void 0);
  1735. __decorate([
  1736. core.Input(),
  1737. __metadata("design:type", Object)
  1738. ], AgGridAngular.prototype, "getBusinessKeyForNode", void 0);
  1739. __decorate([
  1740. core.Input(),
  1741. __metadata("design:type", Object)
  1742. ], AgGridAngular.prototype, "sendToClipboard", void 0);
  1743. __decorate([
  1744. core.Input(),
  1745. __metadata("design:type", Object)
  1746. ], AgGridAngular.prototype, "navigateToNextCell", void 0);
  1747. __decorate([
  1748. core.Input(),
  1749. __metadata("design:type", Object)
  1750. ], AgGridAngular.prototype, "tabToNextCell", void 0);
  1751. __decorate([
  1752. core.Input(),
  1753. __metadata("design:type", Object)
  1754. ], AgGridAngular.prototype, "getDetailRowData", void 0);
  1755. __decorate([
  1756. core.Input(),
  1757. __metadata("design:type", Object)
  1758. ], AgGridAngular.prototype, "processCellFromClipboard", void 0);
  1759. __decorate([
  1760. core.Input(),
  1761. __metadata("design:type", Object)
  1762. ], AgGridAngular.prototype, "getDocument", void 0);
  1763. __decorate([
  1764. core.Input(),
  1765. __metadata("design:type", Object)
  1766. ], AgGridAngular.prototype, "postProcessPopup", void 0);
  1767. __decorate([
  1768. core.Input(),
  1769. __metadata("design:type", Object)
  1770. ], AgGridAngular.prototype, "getChildCount", void 0);
  1771. __decorate([
  1772. core.Input(),
  1773. __metadata("design:type", Object)
  1774. ], AgGridAngular.prototype, "getDataPath", void 0);
  1775. __decorate([
  1776. core.Input(),
  1777. __metadata("design:type", Object)
  1778. ], AgGridAngular.prototype, "loadingCellRenderer", void 0);
  1779. __decorate([
  1780. core.Input(),
  1781. __metadata("design:type", Object)
  1782. ], AgGridAngular.prototype, "loadingCellRendererFramework", void 0);
  1783. __decorate([
  1784. core.Input(),
  1785. __metadata("design:type", Object)
  1786. ], AgGridAngular.prototype, "loadingOverlayComponent", void 0);
  1787. __decorate([
  1788. core.Input(),
  1789. __metadata("design:type", Object)
  1790. ], AgGridAngular.prototype, "loadingOverlayComponentFramework", void 0);
  1791. __decorate([
  1792. core.Input(),
  1793. __metadata("design:type", Object)
  1794. ], AgGridAngular.prototype, "noRowsOverlayComponent", void 0);
  1795. __decorate([
  1796. core.Input(),
  1797. __metadata("design:type", Object)
  1798. ], AgGridAngular.prototype, "noRowsOverlayComponentFramework", void 0);
  1799. __decorate([
  1800. core.Input(),
  1801. __metadata("design:type", Object)
  1802. ], AgGridAngular.prototype, "detailCellRenderer", void 0);
  1803. __decorate([
  1804. core.Input(),
  1805. __metadata("design:type", Object)
  1806. ], AgGridAngular.prototype, "detailCellRendererFramework", void 0);
  1807. __decorate([
  1808. core.Input(),
  1809. __metadata("design:type", Object)
  1810. ], AgGridAngular.prototype, "defaultGroupSortComparator", void 0);
  1811. __decorate([
  1812. core.Input(),
  1813. __metadata("design:type", Object)
  1814. ], AgGridAngular.prototype, "isRowMaster", void 0);
  1815. __decorate([
  1816. core.Input(),
  1817. __metadata("design:type", Object)
  1818. ], AgGridAngular.prototype, "isRowSelectable", void 0);
  1819. __decorate([
  1820. core.Input(),
  1821. __metadata("design:type", Object)
  1822. ], AgGridAngular.prototype, "postSort", void 0);
  1823. __decorate([
  1824. core.Input(),
  1825. __metadata("design:type", Object)
  1826. ], AgGridAngular.prototype, "processHeaderForClipboard", void 0);
  1827. __decorate([
  1828. core.Input(),
  1829. __metadata("design:type", Object)
  1830. ], AgGridAngular.prototype, "paginationNumberFormatter", void 0);
  1831. __decorate([
  1832. core.Input(),
  1833. __metadata("design:type", Object)
  1834. ], AgGridAngular.prototype, "processDataFromClipboard", void 0);
  1835. __decorate([
  1836. core.Input(),
  1837. __metadata("design:type", Object)
  1838. ], AgGridAngular.prototype, "getServerSideGroupKey", void 0);
  1839. __decorate([
  1840. core.Input(),
  1841. __metadata("design:type", Object)
  1842. ], AgGridAngular.prototype, "isServerSideGroup", void 0);
  1843. __decorate([
  1844. core.Input(),
  1845. __metadata("design:type", Object)
  1846. ], AgGridAngular.prototype, "suppressKeyboardEvent", void 0);
  1847. __decorate([
  1848. core.Input(),
  1849. __metadata("design:type", Object)
  1850. ], AgGridAngular.prototype, "createChartContainer", void 0);
  1851. __decorate([
  1852. core.Input(),
  1853. __metadata("design:type", Object)
  1854. ], AgGridAngular.prototype, "processChartOptions", void 0);
  1855. __decorate([
  1856. core.Input(),
  1857. __metadata("design:type", Object)
  1858. ], AgGridAngular.prototype, "getChartToolbarItems", void 0);
  1859. __decorate([
  1860. core.Input(),
  1861. __metadata("design:type", Object)
  1862. ], AgGridAngular.prototype, "fillOperation", void 0);
  1863. __decorate([
  1864. core.Input(),
  1865. __metadata("design:type", Object)
  1866. ], AgGridAngular.prototype, "toolPanelSuppressRowGroups", void 0);
  1867. __decorate([
  1868. core.Input(),
  1869. __metadata("design:type", Object)
  1870. ], AgGridAngular.prototype, "toolPanelSuppressValues", void 0);
  1871. __decorate([
  1872. core.Input(),
  1873. __metadata("design:type", Object)
  1874. ], AgGridAngular.prototype, "toolPanelSuppressPivots", void 0);
  1875. __decorate([
  1876. core.Input(),
  1877. __metadata("design:type", Object)
  1878. ], AgGridAngular.prototype, "toolPanelSuppressPivotMode", void 0);
  1879. __decorate([
  1880. core.Input(),
  1881. __metadata("design:type", Object)
  1882. ], AgGridAngular.prototype, "toolPanelSuppressSideButtons", void 0);
  1883. __decorate([
  1884. core.Input(),
  1885. __metadata("design:type", Object)
  1886. ], AgGridAngular.prototype, "toolPanelSuppressColumnFilter", void 0);
  1887. __decorate([
  1888. core.Input(),
  1889. __metadata("design:type", Object)
  1890. ], AgGridAngular.prototype, "toolPanelSuppressColumnSelectAll", void 0);
  1891. __decorate([
  1892. core.Input(),
  1893. __metadata("design:type", Object)
  1894. ], AgGridAngular.prototype, "toolPanelSuppressColumnExpandAll", void 0);
  1895. __decorate([
  1896. core.Input(),
  1897. __metadata("design:type", Object)
  1898. ], AgGridAngular.prototype, "suppressMakeColumnVisibleAfterUnGroup", void 0);
  1899. __decorate([
  1900. core.Input(),
  1901. __metadata("design:type", Object)
  1902. ], AgGridAngular.prototype, "suppressRowClickSelection", void 0);
  1903. __decorate([
  1904. core.Input(),
  1905. __metadata("design:type", Object)
  1906. ], AgGridAngular.prototype, "suppressCellSelection", void 0);
  1907. __decorate([
  1908. core.Input(),
  1909. __metadata("design:type", Object)
  1910. ], AgGridAngular.prototype, "suppressHorizontalScroll", void 0);
  1911. __decorate([
  1912. core.Input(),
  1913. __metadata("design:type", Object)
  1914. ], AgGridAngular.prototype, "alwaysShowVerticalScroll", void 0);
  1915. __decorate([
  1916. core.Input(),
  1917. __metadata("design:type", Object)
  1918. ], AgGridAngular.prototype, "debug", void 0);
  1919. __decorate([
  1920. core.Input(),
  1921. __metadata("design:type", Object)
  1922. ], AgGridAngular.prototype, "enableBrowserTooltips", void 0);
  1923. __decorate([
  1924. core.Input(),
  1925. __metadata("design:type", Object)
  1926. ], AgGridAngular.prototype, "enableColResize", void 0);
  1927. __decorate([
  1928. core.Input(),
  1929. __metadata("design:type", Object)
  1930. ], AgGridAngular.prototype, "enableCellExpressions", void 0);
  1931. __decorate([
  1932. core.Input(),
  1933. __metadata("design:type", Object)
  1934. ], AgGridAngular.prototype, "enableSorting", void 0);
  1935. __decorate([
  1936. core.Input(),
  1937. __metadata("design:type", Object)
  1938. ], AgGridAngular.prototype, "enableServerSideSorting", void 0);
  1939. __decorate([
  1940. core.Input(),
  1941. __metadata("design:type", Object)
  1942. ], AgGridAngular.prototype, "enableFilter", void 0);
  1943. __decorate([
  1944. core.Input(),
  1945. __metadata("design:type", Object)
  1946. ], AgGridAngular.prototype, "enableServerSideFilter", void 0);
  1947. __decorate([
  1948. core.Input(),
  1949. __metadata("design:type", Object)
  1950. ], AgGridAngular.prototype, "angularCompileRows", void 0);
  1951. __decorate([
  1952. core.Input(),
  1953. __metadata("design:type", Object)
  1954. ], AgGridAngular.prototype, "angularCompileFilters", void 0);
  1955. __decorate([
  1956. core.Input(),
  1957. __metadata("design:type", Object)
  1958. ], AgGridAngular.prototype, "angularCompileHeaders", void 0);
  1959. __decorate([
  1960. core.Input(),
  1961. __metadata("design:type", Object)
  1962. ], AgGridAngular.prototype, "groupSuppressAutoColumn", void 0);
  1963. __decorate([
  1964. core.Input(),
  1965. __metadata("design:type", Object)
  1966. ], AgGridAngular.prototype, "groupSelectsChildren", void 0);
  1967. __decorate([
  1968. core.Input(),
  1969. __metadata("design:type", Object)
  1970. ], AgGridAngular.prototype, "groupIncludeFooter", void 0);
  1971. __decorate([
  1972. core.Input(),
  1973. __metadata("design:type", Object)
  1974. ], AgGridAngular.prototype, "groupIncludeTotalFooter", void 0);
  1975. __decorate([
  1976. core.Input(),
  1977. __metadata("design:type", Object)
  1978. ], AgGridAngular.prototype, "groupUseEntireRow", void 0);
  1979. __decorate([
  1980. core.Input(),
  1981. __metadata("design:type", Object)
  1982. ], AgGridAngular.prototype, "groupSuppressRow", void 0);
  1983. __decorate([
  1984. core.Input(),
  1985. __metadata("design:type", Object)
  1986. ], AgGridAngular.prototype, "groupSuppressBlankHeader", void 0);
  1987. __decorate([
  1988. core.Input(),
  1989. __metadata("design:type", Object)
  1990. ], AgGridAngular.prototype, "forPrint", void 0);
  1991. __decorate([
  1992. core.Input(),
  1993. __metadata("design:type", Object)
  1994. ], AgGridAngular.prototype, "suppressMenuHide", void 0);
  1995. __decorate([
  1996. core.Input(),
  1997. __metadata("design:type", Object)
  1998. ], AgGridAngular.prototype, "rowDeselection", void 0);
  1999. __decorate([
  2000. core.Input(),
  2001. __metadata("design:type", Object)
  2002. ], AgGridAngular.prototype, "unSortIcon", void 0);
  2003. __decorate([
  2004. core.Input(),
  2005. __metadata("design:type", Object)
  2006. ], AgGridAngular.prototype, "suppressMultiSort", void 0);
  2007. __decorate([
  2008. core.Input(),
  2009. __metadata("design:type", Object)
  2010. ], AgGridAngular.prototype, "singleClickEdit", void 0);
  2011. __decorate([
  2012. core.Input(),
  2013. __metadata("design:type", Object)
  2014. ], AgGridAngular.prototype, "suppressLoadingOverlay", void 0);
  2015. __decorate([
  2016. core.Input(),
  2017. __metadata("design:type", Object)
  2018. ], AgGridAngular.prototype, "suppressNoRowsOverlay", void 0);
  2019. __decorate([
  2020. core.Input(),
  2021. __metadata("design:type", Object)
  2022. ], AgGridAngular.prototype, "suppressAutoSize", void 0);
  2023. __decorate([
  2024. core.Input(),
  2025. __metadata("design:type", Object)
  2026. ], AgGridAngular.prototype, "skipHeaderOnAutoSize", void 0);
  2027. __decorate([
  2028. core.Input(),
  2029. __metadata("design:type", Object)
  2030. ], AgGridAngular.prototype, "suppressParentsInRowNodes", void 0);
  2031. __decorate([
  2032. core.Input(),
  2033. __metadata("design:type", Object)
  2034. ], AgGridAngular.prototype, "showToolPanel", void 0);
  2035. __decorate([
  2036. core.Input(),
  2037. __metadata("design:type", Object)
  2038. ], AgGridAngular.prototype, "suppressColumnMoveAnimation", void 0);
  2039. __decorate([
  2040. core.Input(),
  2041. __metadata("design:type", Object)
  2042. ], AgGridAngular.prototype, "suppressMovableColumns", void 0);
  2043. __decorate([
  2044. core.Input(),
  2045. __metadata("design:type", Object)
  2046. ], AgGridAngular.prototype, "suppressFieldDotNotation", void 0);
  2047. __decorate([
  2048. core.Input(),
  2049. __metadata("design:type", Object)
  2050. ], AgGridAngular.prototype, "enableRangeSelection", void 0);
  2051. __decorate([
  2052. core.Input(),
  2053. __metadata("design:type", Object)
  2054. ], AgGridAngular.prototype, "enableRangeHandle", void 0);
  2055. __decorate([
  2056. core.Input(),
  2057. __metadata("design:type", Object)
  2058. ], AgGridAngular.prototype, "enableFillHandle", void 0);
  2059. __decorate([
  2060. core.Input(),
  2061. __metadata("design:type", Object)
  2062. ], AgGridAngular.prototype, "suppressClearOnFillReduction", void 0);
  2063. __decorate([
  2064. core.Input(),
  2065. __metadata("design:type", Object)
  2066. ], AgGridAngular.prototype, "deltaSort", void 0);
  2067. __decorate([
  2068. core.Input(),
  2069. __metadata("design:type", Object)
  2070. ], AgGridAngular.prototype, "suppressTouch", void 0);
  2071. __decorate([
  2072. core.Input(),
  2073. __metadata("design:type", Object)
  2074. ], AgGridAngular.prototype, "suppressAsyncEvents", void 0);
  2075. __decorate([
  2076. core.Input(),
  2077. __metadata("design:type", Object)
  2078. ], AgGridAngular.prototype, "allowContextMenuWithControlKey", void 0);
  2079. __decorate([
  2080. core.Input(),
  2081. __metadata("design:type", Object)
  2082. ], AgGridAngular.prototype, "suppressContextMenu", void 0);
  2083. __decorate([
  2084. core.Input(),
  2085. __metadata("design:type", Object)
  2086. ], AgGridAngular.prototype, "suppressMenuFilterPanel", void 0);
  2087. __decorate([
  2088. core.Input(),
  2089. __metadata("design:type", Object)
  2090. ], AgGridAngular.prototype, "suppressMenuMainPanel", void 0);
  2091. __decorate([
  2092. core.Input(),
  2093. __metadata("design:type", Object)
  2094. ], AgGridAngular.prototype, "suppressMenuColumnPanel", void 0);
  2095. __decorate([
  2096. core.Input(),
  2097. __metadata("design:type", Object)
  2098. ], AgGridAngular.prototype, "rememberGroupStateWhenNewData", void 0);
  2099. __decorate([
  2100. core.Input(),
  2101. __metadata("design:type", Object)
  2102. ], AgGridAngular.prototype, "enableCellChangeFlash", void 0);
  2103. __decorate([
  2104. core.Input(),
  2105. __metadata("design:type", Object)
  2106. ], AgGridAngular.prototype, "suppressDragLeaveHidesColumns", void 0);
  2107. __decorate([
  2108. core.Input(),
  2109. __metadata("design:type", Object)
  2110. ], AgGridAngular.prototype, "suppressMiddleClickScrolls", void 0);
  2111. __decorate([
  2112. core.Input(),
  2113. __metadata("design:type", Object)
  2114. ], AgGridAngular.prototype, "suppressPreventDefaultOnMouseWheel", void 0);
  2115. __decorate([
  2116. core.Input(),
  2117. __metadata("design:type", Object)
  2118. ], AgGridAngular.prototype, "suppressUseColIdForGroups", void 0);
  2119. __decorate([
  2120. core.Input(),
  2121. __metadata("design:type", Object)
  2122. ], AgGridAngular.prototype, "suppressCopyRowsToClipboard", void 0);
  2123. __decorate([
  2124. core.Input(),
  2125. __metadata("design:type", Object)
  2126. ], AgGridAngular.prototype, "copyHeadersToClipboard", void 0);
  2127. __decorate([
  2128. core.Input(),
  2129. __metadata("design:type", Object)
  2130. ], AgGridAngular.prototype, "pivotMode", void 0);
  2131. __decorate([
  2132. core.Input(),
  2133. __metadata("design:type", Object)
  2134. ], AgGridAngular.prototype, "suppressAggFuncInHeader", void 0);
  2135. __decorate([
  2136. core.Input(),
  2137. __metadata("design:type", Object)
  2138. ], AgGridAngular.prototype, "suppressColumnVirtualisation", void 0);
  2139. __decorate([
  2140. core.Input(),
  2141. __metadata("design:type", Object)
  2142. ], AgGridAngular.prototype, "suppressAggAtRootLevel", void 0);
  2143. __decorate([
  2144. core.Input(),
  2145. __metadata("design:type", Object)
  2146. ], AgGridAngular.prototype, "suppressFocusAfterRefresh", void 0);
  2147. __decorate([
  2148. core.Input(),
  2149. __metadata("design:type", Object)
  2150. ], AgGridAngular.prototype, "functionsPassive", void 0);
  2151. __decorate([
  2152. core.Input(),
  2153. __metadata("design:type", Object)
  2154. ], AgGridAngular.prototype, "functionsReadOnly", void 0);
  2155. __decorate([
  2156. core.Input(),
  2157. __metadata("design:type", Object)
  2158. ], AgGridAngular.prototype, "animateRows", void 0);
  2159. __decorate([
  2160. core.Input(),
  2161. __metadata("design:type", Object)
  2162. ], AgGridAngular.prototype, "groupSelectsFiltered", void 0);
  2163. __decorate([
  2164. core.Input(),
  2165. __metadata("design:type", Object)
  2166. ], AgGridAngular.prototype, "groupRemoveSingleChildren", void 0);
  2167. __decorate([
  2168. core.Input(),
  2169. __metadata("design:type", Object)
  2170. ], AgGridAngular.prototype, "groupRemoveLowestSingleChildren", void 0);
  2171. __decorate([
  2172. core.Input(),
  2173. __metadata("design:type", Object)
  2174. ], AgGridAngular.prototype, "enableRtl", void 0);
  2175. __decorate([
  2176. core.Input(),
  2177. __metadata("design:type", Object)
  2178. ], AgGridAngular.prototype, "suppressClickEdit", void 0);
  2179. __decorate([
  2180. core.Input(),
  2181. __metadata("design:type", Object)
  2182. ], AgGridAngular.prototype, "rowDragManaged", void 0);
  2183. __decorate([
  2184. core.Input(),
  2185. __metadata("design:type", Object)
  2186. ], AgGridAngular.prototype, "suppressRowDrag", void 0);
  2187. __decorate([
  2188. core.Input(),
  2189. __metadata("design:type", Object)
  2190. ], AgGridAngular.prototype, "suppressMoveWhenRowDragging", void 0);
  2191. __decorate([
  2192. core.Input(),
  2193. __metadata("design:type", Object)
  2194. ], AgGridAngular.prototype, "enableMultiRowDragging", void 0);
  2195. __decorate([
  2196. core.Input(),
  2197. __metadata("design:type", Object)
  2198. ], AgGridAngular.prototype, "enableGroupEdit", void 0);
  2199. __decorate([
  2200. core.Input(),
  2201. __metadata("design:type", Object)
  2202. ], AgGridAngular.prototype, "embedFullWidthRows", void 0);
  2203. __decorate([
  2204. core.Input(),
  2205. __metadata("design:type", Object)
  2206. ], AgGridAngular.prototype, "deprecatedEmbedFullWidthRows", void 0);
  2207. __decorate([
  2208. core.Input(),
  2209. __metadata("design:type", Object)
  2210. ], AgGridAngular.prototype, "suppressTabbing", void 0);
  2211. __decorate([
  2212. core.Input(),
  2213. __metadata("design:type", Object)
  2214. ], AgGridAngular.prototype, "suppressPaginationPanel", void 0);
  2215. __decorate([
  2216. core.Input(),
  2217. __metadata("design:type", Object)
  2218. ], AgGridAngular.prototype, "floatingFilter", void 0);
  2219. __decorate([
  2220. core.Input(),
  2221. __metadata("design:type", Object)
  2222. ], AgGridAngular.prototype, "groupHideOpenParents", void 0);
  2223. __decorate([
  2224. core.Input(),
  2225. __metadata("design:type", Object)
  2226. ], AgGridAngular.prototype, "groupMultiAutoColumn", void 0);
  2227. __decorate([
  2228. core.Input(),
  2229. __metadata("design:type", Object)
  2230. ], AgGridAngular.prototype, "pagination", void 0);
  2231. __decorate([
  2232. core.Input(),
  2233. __metadata("design:type", Object)
  2234. ], AgGridAngular.prototype, "stopEditingWhenGridLosesFocus", void 0);
  2235. __decorate([
  2236. core.Input(),
  2237. __metadata("design:type", Object)
  2238. ], AgGridAngular.prototype, "paginationAutoPageSize", void 0);
  2239. __decorate([
  2240. core.Input(),
  2241. __metadata("design:type", Object)
  2242. ], AgGridAngular.prototype, "suppressScrollOnNewData", void 0);
  2243. __decorate([
  2244. core.Input(),
  2245. __metadata("design:type", Object)
  2246. ], AgGridAngular.prototype, "purgeClosedRowNodes", void 0);
  2247. __decorate([
  2248. core.Input(),
  2249. __metadata("design:type", Object)
  2250. ], AgGridAngular.prototype, "cacheQuickFilter", void 0);
  2251. __decorate([
  2252. core.Input(),
  2253. __metadata("design:type", Object)
  2254. ], AgGridAngular.prototype, "deltaRowDataMode", void 0);
  2255. __decorate([
  2256. core.Input(),
  2257. __metadata("design:type", Object)
  2258. ], AgGridAngular.prototype, "ensureDomOrder", void 0);
  2259. __decorate([
  2260. core.Input(),
  2261. __metadata("design:type", Object)
  2262. ], AgGridAngular.prototype, "accentedSort", void 0);
  2263. __decorate([
  2264. core.Input(),
  2265. __metadata("design:type", Object)
  2266. ], AgGridAngular.prototype, "pivotTotals", void 0);
  2267. __decorate([
  2268. core.Input(),
  2269. __metadata("design:type", Object)
  2270. ], AgGridAngular.prototype, "suppressChangeDetection", void 0);
  2271. __decorate([
  2272. core.Input(),
  2273. __metadata("design:type", Object)
  2274. ], AgGridAngular.prototype, "valueCache", void 0);
  2275. __decorate([
  2276. core.Input(),
  2277. __metadata("design:type", Object)
  2278. ], AgGridAngular.prototype, "valueCacheNeverExpires", void 0);
  2279. __decorate([
  2280. core.Input(),
  2281. __metadata("design:type", Object)
  2282. ], AgGridAngular.prototype, "aggregateOnlyChangedColumns", void 0);
  2283. __decorate([
  2284. core.Input(),
  2285. __metadata("design:type", Object)
  2286. ], AgGridAngular.prototype, "suppressAnimationFrame", void 0);
  2287. __decorate([
  2288. core.Input(),
  2289. __metadata("design:type", Object)
  2290. ], AgGridAngular.prototype, "suppressExcelExport", void 0);
  2291. __decorate([
  2292. core.Input(),
  2293. __metadata("design:type", Object)
  2294. ], AgGridAngular.prototype, "suppressCsvExport", void 0);
  2295. __decorate([
  2296. core.Input(),
  2297. __metadata("design:type", Object)
  2298. ], AgGridAngular.prototype, "treeData", void 0);
  2299. __decorate([
  2300. core.Input(),
  2301. __metadata("design:type", Object)
  2302. ], AgGridAngular.prototype, "masterDetail", void 0);
  2303. __decorate([
  2304. core.Input(),
  2305. __metadata("design:type", Object)
  2306. ], AgGridAngular.prototype, "suppressMultiRangeSelection", void 0);
  2307. __decorate([
  2308. core.Input(),
  2309. __metadata("design:type", Object)
  2310. ], AgGridAngular.prototype, "enterMovesDownAfterEdit", void 0);
  2311. __decorate([
  2312. core.Input(),
  2313. __metadata("design:type", Object)
  2314. ], AgGridAngular.prototype, "enterMovesDown", void 0);
  2315. __decorate([
  2316. core.Input(),
  2317. __metadata("design:type", Object)
  2318. ], AgGridAngular.prototype, "suppressPropertyNamesCheck", void 0);
  2319. __decorate([
  2320. core.Input(),
  2321. __metadata("design:type", Object)
  2322. ], AgGridAngular.prototype, "rowMultiSelectWithClick", void 0);
  2323. __decorate([
  2324. core.Input(),
  2325. __metadata("design:type", Object)
  2326. ], AgGridAngular.prototype, "contractColumnSelection", void 0);
  2327. __decorate([
  2328. core.Input(),
  2329. __metadata("design:type", Object)
  2330. ], AgGridAngular.prototype, "suppressEnterpriseResetOnNewColumns", void 0);
  2331. __decorate([
  2332. core.Input(),
  2333. __metadata("design:type", Object)
  2334. ], AgGridAngular.prototype, "enableOldSetFilterModel", void 0);
  2335. __decorate([
  2336. core.Input(),
  2337. __metadata("design:type", Object)
  2338. ], AgGridAngular.prototype, "suppressRowHoverHighlight", void 0);
  2339. __decorate([
  2340. core.Input(),
  2341. __metadata("design:type", Object)
  2342. ], AgGridAngular.prototype, "gridAutoHeight", void 0);
  2343. __decorate([
  2344. core.Input(),
  2345. __metadata("design:type", Object)
  2346. ], AgGridAngular.prototype, "suppressRowTransform", void 0);
  2347. __decorate([
  2348. core.Input(),
  2349. __metadata("design:type", Object)
  2350. ], AgGridAngular.prototype, "suppressClipboardPaste", void 0);
  2351. __decorate([
  2352. core.Input(),
  2353. __metadata("design:type", Object)
  2354. ], AgGridAngular.prototype, "suppressLastEmptyLineOnPaste", void 0);
  2355. __decorate([
  2356. core.Input(),
  2357. __metadata("design:type", Object)
  2358. ], AgGridAngular.prototype, "serverSideSortingAlwaysResets", void 0);
  2359. __decorate([
  2360. core.Input(),
  2361. __metadata("design:type", Object)
  2362. ], AgGridAngular.prototype, "reactNext", void 0);
  2363. __decorate([
  2364. core.Input(),
  2365. __metadata("design:type", Object)
  2366. ], AgGridAngular.prototype, "suppressSetColumnStateEvents", void 0);
  2367. __decorate([
  2368. core.Input(),
  2369. __metadata("design:type", Object)
  2370. ], AgGridAngular.prototype, "enableCharts", void 0);
  2371. __decorate([
  2372. core.Input(),
  2373. __metadata("design:type", Object)
  2374. ], AgGridAngular.prototype, "deltaColumnMode", void 0);
  2375. __decorate([
  2376. core.Input(),
  2377. __metadata("design:type", Object)
  2378. ], AgGridAngular.prototype, "suppressMaintainUnsortedOrder", void 0);
  2379. __decorate([
  2380. core.Input(),
  2381. __metadata("design:type", Object)
  2382. ], AgGridAngular.prototype, "enableCellTextSelection", void 0);
  2383. __decorate([
  2384. core.Input(),
  2385. __metadata("design:type", Object)
  2386. ], AgGridAngular.prototype, "suppressBrowserResizeObserver", void 0);
  2387. __decorate([
  2388. core.Input(),
  2389. __metadata("design:type", Object)
  2390. ], AgGridAngular.prototype, "suppressMaxRenderedRowRestriction", void 0);
  2391. __decorate([
  2392. core.Input(),
  2393. __metadata("design:type", Object)
  2394. ], AgGridAngular.prototype, "excludeChildrenWhenTreeDataFiltering", void 0);
  2395. __decorate([
  2396. core.Input(),
  2397. __metadata("design:type", Object)
  2398. ], AgGridAngular.prototype, "tooltipMouseTrack", void 0);
  2399. __decorate([
  2400. core.Input(),
  2401. __metadata("design:type", Object)
  2402. ], AgGridAngular.prototype, "keepDetailRows", void 0);
  2403. __decorate([
  2404. core.Input(),
  2405. __metadata("design:type", Object)
  2406. ], AgGridAngular.prototype, "paginateChildRows", void 0);
  2407. __decorate([
  2408. core.Input(),
  2409. __metadata("design:type", Object)
  2410. ], AgGridAngular.prototype, "preventDefaultOnContextMenu", void 0);
  2411. __decorate([
  2412. core.Input(),
  2413. __metadata("design:type", Object)
  2414. ], AgGridAngular.prototype, "undoRedoCellEditing", void 0);
  2415. __decorate([
  2416. core.Input(),
  2417. __metadata("design:type", Object)
  2418. ], AgGridAngular.prototype, "allowDragFromColumnsToolPanel", void 0);
  2419. __decorate([
  2420. core.Input(),
  2421. __metadata("design:type", Object)
  2422. ], AgGridAngular.prototype, "immutableData", void 0);
  2423. __decorate([
  2424. core.Input(),
  2425. __metadata("design:type", Object)
  2426. ], AgGridAngular.prototype, "immutableColumns", void 0);
  2427. __decorate([
  2428. core.Input(),
  2429. __metadata("design:type", Object)
  2430. ], AgGridAngular.prototype, "pivotSuppressAutoColumn", void 0);
  2431. __decorate([
  2432. core.Output(),
  2433. __metadata("design:type", core.EventEmitter)
  2434. ], AgGridAngular.prototype, "columnEverythingChanged", void 0);
  2435. __decorate([
  2436. core.Output(),
  2437. __metadata("design:type", core.EventEmitter)
  2438. ], AgGridAngular.prototype, "newColumnsLoaded", void 0);
  2439. __decorate([
  2440. core.Output(),
  2441. __metadata("design:type", core.EventEmitter)
  2442. ], AgGridAngular.prototype, "columnPivotModeChanged", void 0);
  2443. __decorate([
  2444. core.Output(),
  2445. __metadata("design:type", core.EventEmitter)
  2446. ], AgGridAngular.prototype, "columnRowGroupChanged", void 0);
  2447. __decorate([
  2448. core.Output(),
  2449. __metadata("design:type", core.EventEmitter)
  2450. ], AgGridAngular.prototype, "expandOrCollapseAll", void 0);
  2451. __decorate([
  2452. core.Output(),
  2453. __metadata("design:type", core.EventEmitter)
  2454. ], AgGridAngular.prototype, "columnPivotChanged", void 0);
  2455. __decorate([
  2456. core.Output(),
  2457. __metadata("design:type", core.EventEmitter)
  2458. ], AgGridAngular.prototype, "gridColumnsChanged", void 0);
  2459. __decorate([
  2460. core.Output(),
  2461. __metadata("design:type", core.EventEmitter)
  2462. ], AgGridAngular.prototype, "columnValueChanged", void 0);
  2463. __decorate([
  2464. core.Output(),
  2465. __metadata("design:type", core.EventEmitter)
  2466. ], AgGridAngular.prototype, "columnMoved", void 0);
  2467. __decorate([
  2468. core.Output(),
  2469. __metadata("design:type", core.EventEmitter)
  2470. ], AgGridAngular.prototype, "columnVisible", void 0);
  2471. __decorate([
  2472. core.Output(),
  2473. __metadata("design:type", core.EventEmitter)
  2474. ], AgGridAngular.prototype, "columnPinned", void 0);
  2475. __decorate([
  2476. core.Output(),
  2477. __metadata("design:type", core.EventEmitter)
  2478. ], AgGridAngular.prototype, "columnGroupOpened", void 0);
  2479. __decorate([
  2480. core.Output(),
  2481. __metadata("design:type", core.EventEmitter)
  2482. ], AgGridAngular.prototype, "columnResized", void 0);
  2483. __decorate([
  2484. core.Output(),
  2485. __metadata("design:type", core.EventEmitter)
  2486. ], AgGridAngular.prototype, "displayedColumnsChanged", void 0);
  2487. __decorate([
  2488. core.Output(),
  2489. __metadata("design:type", core.EventEmitter)
  2490. ], AgGridAngular.prototype, "virtualColumnsChanged", void 0);
  2491. __decorate([
  2492. core.Output(),
  2493. __metadata("design:type", core.EventEmitter)
  2494. ], AgGridAngular.prototype, "rowGroupOpened", void 0);
  2495. __decorate([
  2496. core.Output(),
  2497. __metadata("design:type", core.EventEmitter)
  2498. ], AgGridAngular.prototype, "rowDataChanged", void 0);
  2499. __decorate([
  2500. core.Output(),
  2501. __metadata("design:type", core.EventEmitter)
  2502. ], AgGridAngular.prototype, "rowDataUpdated", void 0);
  2503. __decorate([
  2504. core.Output(),
  2505. __metadata("design:type", core.EventEmitter)
  2506. ], AgGridAngular.prototype, "pinnedRowDataChanged", void 0);
  2507. __decorate([
  2508. core.Output(),
  2509. __metadata("design:type", core.EventEmitter)
  2510. ], AgGridAngular.prototype, "rangeSelectionChanged", void 0);
  2511. __decorate([
  2512. core.Output(),
  2513. __metadata("design:type", core.EventEmitter)
  2514. ], AgGridAngular.prototype, "chartCreated", void 0);
  2515. __decorate([
  2516. core.Output(),
  2517. __metadata("design:type", core.EventEmitter)
  2518. ], AgGridAngular.prototype, "chartRangeSelectionChanged", void 0);
  2519. __decorate([
  2520. core.Output(),
  2521. __metadata("design:type", core.EventEmitter)
  2522. ], AgGridAngular.prototype, "chartOptionsChanged", void 0);
  2523. __decorate([
  2524. core.Output(),
  2525. __metadata("design:type", core.EventEmitter)
  2526. ], AgGridAngular.prototype, "chartDestroyed", void 0);
  2527. __decorate([
  2528. core.Output(),
  2529. __metadata("design:type", core.EventEmitter)
  2530. ], AgGridAngular.prototype, "toolPanelVisibleChanged", void 0);
  2531. __decorate([
  2532. core.Output(),
  2533. __metadata("design:type", core.EventEmitter)
  2534. ], AgGridAngular.prototype, "modelUpdated", void 0);
  2535. __decorate([
  2536. core.Output(),
  2537. __metadata("design:type", core.EventEmitter)
  2538. ], AgGridAngular.prototype, "pasteStart", void 0);
  2539. __decorate([
  2540. core.Output(),
  2541. __metadata("design:type", core.EventEmitter)
  2542. ], AgGridAngular.prototype, "pasteEnd", void 0);
  2543. __decorate([
  2544. core.Output(),
  2545. __metadata("design:type", core.EventEmitter)
  2546. ], AgGridAngular.prototype, "fillStart", void 0);
  2547. __decorate([
  2548. core.Output(),
  2549. __metadata("design:type", core.EventEmitter)
  2550. ], AgGridAngular.prototype, "fillEnd", void 0);
  2551. __decorate([
  2552. core.Output(),
  2553. __metadata("design:type", core.EventEmitter)
  2554. ], AgGridAngular.prototype, "cellClicked", void 0);
  2555. __decorate([
  2556. core.Output(),
  2557. __metadata("design:type", core.EventEmitter)
  2558. ], AgGridAngular.prototype, "cellDoubleClicked", void 0);
  2559. __decorate([
  2560. core.Output(),
  2561. __metadata("design:type", core.EventEmitter)
  2562. ], AgGridAngular.prototype, "cellMouseDown", void 0);
  2563. __decorate([
  2564. core.Output(),
  2565. __metadata("design:type", core.EventEmitter)
  2566. ], AgGridAngular.prototype, "cellContextMenu", void 0);
  2567. __decorate([
  2568. core.Output(),
  2569. __metadata("design:type", core.EventEmitter)
  2570. ], AgGridAngular.prototype, "cellValueChanged", void 0);
  2571. __decorate([
  2572. core.Output(),
  2573. __metadata("design:type", core.EventEmitter)
  2574. ], AgGridAngular.prototype, "rowValueChanged", void 0);
  2575. __decorate([
  2576. core.Output(),
  2577. __metadata("design:type", core.EventEmitter)
  2578. ], AgGridAngular.prototype, "cellFocused", void 0);
  2579. __decorate([
  2580. core.Output(),
  2581. __metadata("design:type", core.EventEmitter)
  2582. ], AgGridAngular.prototype, "rowSelected", void 0);
  2583. __decorate([
  2584. core.Output(),
  2585. __metadata("design:type", core.EventEmitter)
  2586. ], AgGridAngular.prototype, "selectionChanged", void 0);
  2587. __decorate([
  2588. core.Output(),
  2589. __metadata("design:type", core.EventEmitter)
  2590. ], AgGridAngular.prototype, "cellKeyDown", void 0);
  2591. __decorate([
  2592. core.Output(),
  2593. __metadata("design:type", core.EventEmitter)
  2594. ], AgGridAngular.prototype, "cellKeyPress", void 0);
  2595. __decorate([
  2596. core.Output(),
  2597. __metadata("design:type", core.EventEmitter)
  2598. ], AgGridAngular.prototype, "cellMouseOver", void 0);
  2599. __decorate([
  2600. core.Output(),
  2601. __metadata("design:type", core.EventEmitter)
  2602. ], AgGridAngular.prototype, "cellMouseOut", void 0);
  2603. __decorate([
  2604. core.Output(),
  2605. __metadata("design:type", core.EventEmitter)
  2606. ], AgGridAngular.prototype, "filterChanged", void 0);
  2607. __decorate([
  2608. core.Output(),
  2609. __metadata("design:type", core.EventEmitter)
  2610. ], AgGridAngular.prototype, "filterModified", void 0);
  2611. __decorate([
  2612. core.Output(),
  2613. __metadata("design:type", core.EventEmitter)
  2614. ], AgGridAngular.prototype, "filterOpened", void 0);
  2615. __decorate([
  2616. core.Output(),
  2617. __metadata("design:type", core.EventEmitter)
  2618. ], AgGridAngular.prototype, "sortChanged", void 0);
  2619. __decorate([
  2620. core.Output(),
  2621. __metadata("design:type", core.EventEmitter)
  2622. ], AgGridAngular.prototype, "virtualRowRemoved", void 0);
  2623. __decorate([
  2624. core.Output(),
  2625. __metadata("design:type", core.EventEmitter)
  2626. ], AgGridAngular.prototype, "rowClicked", void 0);
  2627. __decorate([
  2628. core.Output(),
  2629. __metadata("design:type", core.EventEmitter)
  2630. ], AgGridAngular.prototype, "rowDoubleClicked", void 0);
  2631. __decorate([
  2632. core.Output(),
  2633. __metadata("design:type", core.EventEmitter)
  2634. ], AgGridAngular.prototype, "gridReady", void 0);
  2635. __decorate([
  2636. core.Output(),
  2637. __metadata("design:type", core.EventEmitter)
  2638. ], AgGridAngular.prototype, "gridSizeChanged", void 0);
  2639. __decorate([
  2640. core.Output(),
  2641. __metadata("design:type", core.EventEmitter)
  2642. ], AgGridAngular.prototype, "viewportChanged", void 0);
  2643. __decorate([
  2644. core.Output(),
  2645. __metadata("design:type", core.EventEmitter)
  2646. ], AgGridAngular.prototype, "firstDataRendered", void 0);
  2647. __decorate([
  2648. core.Output(),
  2649. __metadata("design:type", core.EventEmitter)
  2650. ], AgGridAngular.prototype, "dragStarted", void 0);
  2651. __decorate([
  2652. core.Output(),
  2653. __metadata("design:type", core.EventEmitter)
  2654. ], AgGridAngular.prototype, "dragStopped", void 0);
  2655. __decorate([
  2656. core.Output(),
  2657. __metadata("design:type", core.EventEmitter)
  2658. ], AgGridAngular.prototype, "checkboxChanged", void 0);
  2659. __decorate([
  2660. core.Output(),
  2661. __metadata("design:type", core.EventEmitter)
  2662. ], AgGridAngular.prototype, "rowEditingStarted", void 0);
  2663. __decorate([
  2664. core.Output(),
  2665. __metadata("design:type", core.EventEmitter)
  2666. ], AgGridAngular.prototype, "rowEditingStopped", void 0);
  2667. __decorate([
  2668. core.Output(),
  2669. __metadata("design:type", core.EventEmitter)
  2670. ], AgGridAngular.prototype, "cellEditingStarted", void 0);
  2671. __decorate([
  2672. core.Output(),
  2673. __metadata("design:type", core.EventEmitter)
  2674. ], AgGridAngular.prototype, "cellEditingStopped", void 0);
  2675. __decorate([
  2676. core.Output(),
  2677. __metadata("design:type", core.EventEmitter)
  2678. ], AgGridAngular.prototype, "bodyScroll", void 0);
  2679. __decorate([
  2680. core.Output(),
  2681. __metadata("design:type", core.EventEmitter)
  2682. ], AgGridAngular.prototype, "animationQueueEmpty", void 0);
  2683. __decorate([
  2684. core.Output(),
  2685. __metadata("design:type", core.EventEmitter)
  2686. ], AgGridAngular.prototype, "heightScaleChanged", void 0);
  2687. __decorate([
  2688. core.Output(),
  2689. __metadata("design:type", core.EventEmitter)
  2690. ], AgGridAngular.prototype, "paginationChanged", void 0);
  2691. __decorate([
  2692. core.Output(),
  2693. __metadata("design:type", core.EventEmitter)
  2694. ], AgGridAngular.prototype, "componentStateChanged", void 0);
  2695. __decorate([
  2696. core.Output(),
  2697. __metadata("design:type", core.EventEmitter)
  2698. ], AgGridAngular.prototype, "bodyHeightChanged", void 0);
  2699. __decorate([
  2700. core.Output(),
  2701. __metadata("design:type", core.EventEmitter)
  2702. ], AgGridAngular.prototype, "displayedColumnsWidthChanged", void 0);
  2703. __decorate([
  2704. core.Output(),
  2705. __metadata("design:type", core.EventEmitter)
  2706. ], AgGridAngular.prototype, "scrollVisibilityChanged", void 0);
  2707. __decorate([
  2708. core.Output(),
  2709. __metadata("design:type", core.EventEmitter)
  2710. ], AgGridAngular.prototype, "columnHoverChanged", void 0);
  2711. __decorate([
  2712. core.Output(),
  2713. __metadata("design:type", core.EventEmitter)
  2714. ], AgGridAngular.prototype, "flashCells", void 0);
  2715. __decorate([
  2716. core.Output(),
  2717. __metadata("design:type", core.EventEmitter)
  2718. ], AgGridAngular.prototype, "rowDragEnter", void 0);
  2719. __decorate([
  2720. core.Output(),
  2721. __metadata("design:type", core.EventEmitter)
  2722. ], AgGridAngular.prototype, "rowDragMove", void 0);
  2723. __decorate([
  2724. core.Output(),
  2725. __metadata("design:type", core.EventEmitter)
  2726. ], AgGridAngular.prototype, "rowDragLeave", void 0);
  2727. __decorate([
  2728. core.Output(),
  2729. __metadata("design:type", core.EventEmitter)
  2730. ], AgGridAngular.prototype, "rowDragEnd", void 0);
  2731. __decorate([
  2732. core.Output(),
  2733. __metadata("design:type", core.EventEmitter)
  2734. ], AgGridAngular.prototype, "popupToFront", void 0);
  2735. __decorate([
  2736. core.Output(),
  2737. __metadata("design:type", core.EventEmitter)
  2738. ], AgGridAngular.prototype, "columnRowGroupChangeRequest", void 0);
  2739. __decorate([
  2740. core.Output(),
  2741. __metadata("design:type", core.EventEmitter)
  2742. ], AgGridAngular.prototype, "columnPivotChangeRequest", void 0);
  2743. __decorate([
  2744. core.Output(),
  2745. __metadata("design:type", core.EventEmitter)
  2746. ], AgGridAngular.prototype, "columnValueChangeRequest", void 0);
  2747. __decorate([
  2748. core.Output(),
  2749. __metadata("design:type", core.EventEmitter)
  2750. ], AgGridAngular.prototype, "columnAggFuncChangeRequest", void 0);
  2751. __decorate([
  2752. core.Output(),
  2753. __metadata("design:type", core.EventEmitter)
  2754. ], AgGridAngular.prototype, "keyboardFocus", void 0);
  2755. __decorate([
  2756. core.Output(),
  2757. __metadata("design:type", core.EventEmitter)
  2758. ], AgGridAngular.prototype, "mouseFocus", void 0);
  2759. AgGridAngular = __decorate([
  2760. core.Component({
  2761. selector: 'ag-grid-angular',
  2762. template: '',
  2763. providers: [
  2764. AngularFrameworkOverrides,
  2765. AngularFrameworkComponentWrapper
  2766. ],
  2767. // tell angular we don't want view encapsulation, we don't want a shadow root
  2768. encapsulation: core.ViewEncapsulation.None
  2769. }),
  2770. __metadata("design:paramtypes", [core.ElementRef,
  2771. core.ViewContainerRef,
  2772. AngularFrameworkOverrides,
  2773. AngularFrameworkComponentWrapper,
  2774. core.ComponentFactoryResolver])
  2775. ], AgGridAngular);
  2776. return AgGridAngular;
  2777. }());
  2778. var AgGridModule = /** @class */ (function () {
  2779. function AgGridModule() {
  2780. }
  2781. AgGridModule_1 = AgGridModule;
  2782. AgGridModule.withComponents = function (components) {
  2783. return {
  2784. ngModule: AgGridModule_1,
  2785. providers: [
  2786. { provide: core.ANALYZE_FOR_ENTRY_COMPONENTS, useValue: components, multi: true }
  2787. ],
  2788. };
  2789. };
  2790. AgGridModule.forRoot = function (components) {
  2791. return {
  2792. ngModule: AgGridModule_1,
  2793. providers: [
  2794. { provide: core.ANALYZE_FOR_ENTRY_COMPONENTS, useValue: components, multi: true }
  2795. ],
  2796. };
  2797. };
  2798. var AgGridModule_1;
  2799. AgGridModule = AgGridModule_1 = __decorate([
  2800. core.NgModule({
  2801. declarations: [AgGridAngular, AgGridColumn],
  2802. imports: [],
  2803. exports: [AgGridAngular, AgGridColumn]
  2804. })
  2805. ], AgGridModule);
  2806. return AgGridModule;
  2807. }());
  2808. exports.AgGridAngular = AgGridAngular;
  2809. exports.AgGridColumn = AgGridColumn;
  2810. exports.AgGridModule = AgGridModule;
  2811. exports.ɵa = AngularFrameworkOverrides;
  2812. exports.ɵb = AngularFrameworkComponentWrapper;
  2813. Object.defineProperty(exports, '__esModule', { value: true });
  2814. })));
  2815. //# sourceMappingURL=ag-grid-angular.umd.js.map