ag-grid-angular.js 96 KB

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