| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625 |
- import { __decorate, __metadata, __extends } from 'tslib';
- import { ContentChildren, QueryList, Input, Component, NgZone, Injectable, EventEmitter, ElementRef, ViewContainerRef, ComponentFactoryResolver, Output, ViewEncapsulation, ANALYZE_FOR_ENTRY_COMPONENTS, NgModule } from '@angular/core';
- import { VanillaFrameworkOverrides, BaseComponentWrapper, Promise, ComponentUtil, Grid, _, Events, GridOptionsWrapper } from 'ag-grid-community';
- var AgGridColumn = /** @class */ (function () {
- function AgGridColumn() {
- }
- AgGridColumn_1 = AgGridColumn;
- AgGridColumn.prototype.hasChildColumns = function () {
- if (this.childColumns && this.childColumns.length > 0) {
- // necessary because of https://github.com/angular/angular/issues/10098
- return !(this.childColumns.length === 1 && this.childColumns.first === this);
- }
- return false;
- };
- AgGridColumn.prototype.toColDef = function () {
- var colDef = this.createColDefFromGridColumn(this);
- if (this.hasChildColumns()) {
- colDef["children"] = this.getChildColDefs(this.childColumns);
- }
- return colDef;
- };
- AgGridColumn.prototype.getChildColDefs = function (childColumns) {
- return childColumns
- // necessary because of https://github.com/angular/angular/issues/10098
- .filter(function (column) { return !column.hasChildColumns(); })
- .map(function (column) {
- return column.toColDef();
- });
- };
- ;
- AgGridColumn.prototype.createColDefFromGridColumn = function (from) {
- var colDef = {};
- Object.assign(colDef, from);
- delete colDef.childColumns;
- return colDef;
- };
- ;
- var AgGridColumn_1;
- __decorate([
- ContentChildren(AgGridColumn_1),
- __metadata("design:type", QueryList)
- ], AgGridColumn.prototype, "childColumns", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "children", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "sortingOrder", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "allowedAggFuncs", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "menuTabs", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "cellClassRules", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "icons", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "headerGroupComponent", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "headerGroupComponentFramework", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "headerGroupComponentParams", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "cellStyle", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "cellRendererParams", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "cellEditorFramework", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "cellEditorParams", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "pinnedRowCellRendererFramework", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "pinnedRowCellRendererParams", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "filterFramework", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "filterParams", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "headerComponent", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "headerComponentFramework", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "headerComponentParams", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "floatingFilterComponent", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "floatingFilterComponentParams", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "floatingFilterComponentFramework", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "tooltipComponent", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "tooltipComponentParams", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "tooltipComponentFramework", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "refData", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "headerName", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "columnGroupShow", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "headerClass", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "toolPanelClass", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "headerValueGetter", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "groupId", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "colId", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "sort", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "field", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "type", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "tooltipField", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "headerTooltip", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "cellClass", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "showRowGroup", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "filter", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "aggFunc", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "cellRenderer", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "cellEditor", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "pinned", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "chartDataType", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "sortedAt", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "flex", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "width", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "minWidth", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "maxWidth", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "rowGroupIndex", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "pivotIndex", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "dndSourceOnRowDrag", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "valueGetter", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "valueSetter", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "filterValueGetter", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "keyCreator", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "cellRendererFramework", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "pinnedRowCellRenderer", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "valueFormatter", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "pinnedRowValueFormatter", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "valueParser", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "comparator", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "equals", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "pivotComparator", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "suppressKeyboardEvent", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "colSpan", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "rowSpan", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "getQuickFilterText", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "newValueHandler", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "onCellValueChanged", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "onCellClicked", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "onCellDoubleClicked", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "onCellContextMenu", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "rowDragText", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "tooltip", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "tooltipValueGetter", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "cellRendererSelector", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "cellEditorSelector", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "suppressCellFlash", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "suppressColumnsToolPanel", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "suppressFiltersToolPanel", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "openByDefault", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "marryChildren", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "hide", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "rowGroup", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "pivot", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "checkboxSelection", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "headerCheckboxSelection", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "headerCheckboxSelectionFilteredOnly", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "suppressMenu", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "suppressSorting", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "suppressMovable", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "suppressFilter", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "lockPosition", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "lockVisible", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "lockPinned", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "unSortIcon", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "suppressSizeToFit", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "suppressResize", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "suppressAutoSize", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "enableRowGroup", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "enablePivot", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "enableValue", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "editable", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "suppressPaste", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "suppressNavigable", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "enableCellChangeFlash", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "rowDrag", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "dndSource", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "autoHeight", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "sortable", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "resizable", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "singleClickEdit", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridColumn.prototype, "floatingFilter", void 0);
- AgGridColumn = AgGridColumn_1 = __decorate([
- Component({
- selector: 'ag-grid-column',
- template: ''
- })
- ], AgGridColumn);
- return AgGridColumn;
- }());
- var AngularFrameworkOverrides = /** @class */ (function (_super) {
- __extends(AngularFrameworkOverrides, _super);
- function AngularFrameworkOverrides(_ngZone) {
- var _this = _super.call(this) || this;
- _this._ngZone = _ngZone;
- return _this;
- }
- AngularFrameworkOverrides.prototype.setTimeout = function (action, timeout) {
- this._ngZone.runOutsideAngular(function () {
- window.setTimeout(function () {
- action();
- }, timeout);
- });
- };
- AngularFrameworkOverrides.prototype.addEventListenerOutsideAngular = function (element, type, listener, useCapture) {
- var _this = this;
- this._ngZone.runOutsideAngular(function () {
- _super.prototype.addEventListenerOutsideAngular.call(_this, element, type, listener, useCapture);
- });
- };
- AngularFrameworkOverrides.ctorParameters = function () { return [
- { type: NgZone }
- ]; };
- AngularFrameworkOverrides = __decorate([
- Injectable(),
- __metadata("design:paramtypes", [NgZone])
- ], AngularFrameworkOverrides);
- return AngularFrameworkOverrides;
- }(VanillaFrameworkOverrides));
- var AngularFrameworkComponentWrapper = /** @class */ (function (_super) {
- __extends(AngularFrameworkComponentWrapper, _super);
- function AngularFrameworkComponentWrapper() {
- return _super !== null && _super.apply(this, arguments) || this;
- }
- AngularFrameworkComponentWrapper.prototype.setViewContainerRef = function (viewContainerRef) {
- this.viewContainerRef = viewContainerRef;
- };
- AngularFrameworkComponentWrapper.prototype.setComponentFactoryResolver = function (componentFactoryResolver) {
- this.componentFactoryResolver = componentFactoryResolver;
- };
- AngularFrameworkComponentWrapper.prototype.createWrapper = function (OriginalConstructor) {
- var that = this;
- var DynamicAgNg2Component = /** @class */ (function (_super) {
- __extends(DynamicAgNg2Component, _super);
- function DynamicAgNg2Component() {
- return _super !== null && _super.apply(this, arguments) || this;
- }
- DynamicAgNg2Component.prototype.init = function (params) {
- _super.prototype.init.call(this, params);
- this._componentRef.changeDetectorRef.detectChanges();
- };
- DynamicAgNg2Component.prototype.createComponent = function () {
- return that.createComponent(OriginalConstructor);
- };
- DynamicAgNg2Component.prototype.hasMethod = function (name) {
- return wrapper.getFrameworkComponentInstance()[name] != null;
- };
- DynamicAgNg2Component.prototype.callMethod = function (name, args) {
- var componentRef = this.getFrameworkComponentInstance();
- return wrapper.getFrameworkComponentInstance()[name].apply(componentRef, args);
- };
- DynamicAgNg2Component.prototype.addMethod = function (name, callback) {
- wrapper[name] = callback;
- };
- return DynamicAgNg2Component;
- }(BaseGuiComponent));
- var wrapper = new DynamicAgNg2Component();
- return wrapper;
- };
- AngularFrameworkComponentWrapper.prototype.createComponent = function (componentType) {
- // used to cache the factory, but this a) caused issues when used with either webpack/angularcli with --prod
- // but more significantly, the underlying implementation of resolveComponentFactory uses a map too, so us
- // caching the factory here yields no performance benefits
- var factory = this.componentFactoryResolver.resolveComponentFactory(componentType);
- return this.viewContainerRef.createComponent(factory);
- };
- AngularFrameworkComponentWrapper = __decorate([
- Injectable()
- ], AngularFrameworkComponentWrapper);
- return AngularFrameworkComponentWrapper;
- }(BaseComponentWrapper));
- var BaseGuiComponent = /** @class */ (function () {
- function BaseGuiComponent() {
- }
- BaseGuiComponent.prototype.init = function (params) {
- this._params = params;
- this._componentRef = this.createComponent();
- this._agAwareComponent = this._componentRef.instance;
- this._frameworkComponentInstance = this._componentRef.instance;
- this._eGui = this._componentRef.location.nativeElement;
- this._agAwareComponent.agInit(this._params);
- };
- BaseGuiComponent.prototype.getGui = function () {
- return this._eGui;
- };
- BaseGuiComponent.prototype.destroy = function () {
- if (this._componentRef) {
- this._componentRef.destroy();
- }
- };
- BaseGuiComponent.prototype.getFrameworkComponentInstance = function () {
- return this._frameworkComponentInstance;
- };
- return BaseGuiComponent;
- }());
- var AgGridAngular = /** @class */ (function () {
- function AgGridAngular(elementDef, viewContainerRef, angularFrameworkOverrides, frameworkComponentWrapper, _componentFactoryResolver) {
- this.viewContainerRef = viewContainerRef;
- this.angularFrameworkOverrides = angularFrameworkOverrides;
- this.frameworkComponentWrapper = frameworkComponentWrapper;
- this._componentFactoryResolver = _componentFactoryResolver;
- this._initialised = false;
- this._destroyed = false;
- // in order to ensure firing of gridReady is deterministic
- this._fullyReady = Promise.resolve(true);
- // @START@
- this.slaveGrids = undefined;
- this.alignedGrids = undefined;
- this.rowData = undefined;
- this.columnDefs = undefined;
- this.excelStyles = undefined;
- this.pinnedTopRowData = undefined;
- this.pinnedBottomRowData = undefined;
- this.components = undefined;
- this.frameworkComponents = undefined;
- this.rowStyle = undefined;
- this.context = undefined;
- this.autoGroupColumnDef = undefined;
- this.groupColumnDef = undefined;
- this.localeText = undefined;
- this.icons = undefined;
- this.datasource = undefined;
- this.serverSideDatasource = undefined;
- this.viewportDatasource = undefined;
- this.groupRowRendererParams = undefined;
- this.aggFuncs = undefined;
- this.fullWidthCellRendererParams = undefined;
- this.defaultColGroupDef = undefined;
- this.defaultColDef = undefined;
- this.defaultExportParams = undefined;
- this.columnTypes = undefined;
- this.rowClassRules = undefined;
- this.detailGridOptions = undefined;
- this.detailCellRendererParams = undefined;
- this.loadingCellRendererParams = undefined;
- this.loadingOverlayComponentParams = undefined;
- this.noRowsOverlayComponentParams = undefined;
- this.popupParent = undefined;
- this.colResizeDefault = undefined;
- this.reduxStore = undefined;
- this.statusBar = undefined;
- this.sideBar = undefined;
- this.sortingOrder = undefined;
- this.rowClass = undefined;
- this.rowSelection = undefined;
- this.overlayLoadingTemplate = undefined;
- this.overlayNoRowsTemplate = undefined;
- this.quickFilterText = undefined;
- this.rowModelType = undefined;
- this.editType = undefined;
- this.domLayout = undefined;
- this.clipboardDeliminator = undefined;
- this.rowGroupPanelShow = undefined;
- this.multiSortKey = undefined;
- this.pivotColumnGroupTotals = undefined;
- this.pivotRowTotals = undefined;
- this.pivotPanelShow = undefined;
- this.rowHeight = undefined;
- this.detailRowHeight = undefined;
- this.rowBuffer = undefined;
- this.colWidth = undefined;
- this.headerHeight = undefined;
- this.groupHeaderHeight = undefined;
- this.floatingFiltersHeight = undefined;
- this.pivotHeaderHeight = undefined;
- this.pivotGroupHeaderHeight = undefined;
- this.groupDefaultExpanded = undefined;
- this.minColWidth = undefined;
- this.maxColWidth = undefined;
- this.viewportRowModelPageSize = undefined;
- this.viewportRowModelBufferSize = undefined;
- this.autoSizePadding = undefined;
- this.maxBlocksInCache = undefined;
- this.maxConcurrentDatasourceRequests = undefined;
- this.tooltipShowDelay = undefined;
- this.cacheOverflowSize = undefined;
- this.paginationPageSize = undefined;
- this.cacheBlockSize = undefined;
- this.infiniteInitialRowCount = undefined;
- this.scrollbarWidth = undefined;
- this.paginationStartPage = undefined;
- this.infiniteBlockSize = undefined;
- this.batchUpdateWaitMillis = undefined;
- this.asyncTransactionWaitMillis = undefined;
- this.blockLoadDebounceMillis = undefined;
- this.keepDetailRowsCount = undefined;
- this.undoRedoCellEditingLimit = undefined;
- this.cellFlashDelay = undefined;
- this.cellFadeDelay = undefined;
- this.localeTextFunc = undefined;
- this.groupRowInnerRenderer = undefined;
- this.groupRowInnerRendererFramework = undefined;
- this.dateComponent = undefined;
- this.dateComponentFramework = undefined;
- this.groupRowRenderer = undefined;
- this.groupRowRendererFramework = undefined;
- this.isExternalFilterPresent = undefined;
- this.getRowHeight = undefined;
- this.doesExternalFilterPass = undefined;
- this.getRowClass = undefined;
- this.getRowStyle = undefined;
- this.getRowClassRules = undefined;
- this.traverseNode = undefined;
- this.getContextMenuItems = undefined;
- this.getMainMenuItems = undefined;
- this.processRowPostCreate = undefined;
- this.processCellForClipboard = undefined;
- this.getNodeChildDetails = undefined;
- this.groupRowAggNodes = undefined;
- this.getRowNodeId = undefined;
- this.isFullWidthCell = undefined;
- this.fullWidthCellRenderer = undefined;
- this.fullWidthCellRendererFramework = undefined;
- this.doesDataFlower = undefined;
- this.processSecondaryColDef = undefined;
- this.processSecondaryColGroupDef = undefined;
- this.getBusinessKeyForNode = undefined;
- this.sendToClipboard = undefined;
- this.navigateToNextCell = undefined;
- this.tabToNextCell = undefined;
- this.getDetailRowData = undefined;
- this.processCellFromClipboard = undefined;
- this.getDocument = undefined;
- this.postProcessPopup = undefined;
- this.getChildCount = undefined;
- this.getDataPath = undefined;
- this.loadingCellRenderer = undefined;
- this.loadingCellRendererFramework = undefined;
- this.loadingOverlayComponent = undefined;
- this.loadingOverlayComponentFramework = undefined;
- this.noRowsOverlayComponent = undefined;
- this.noRowsOverlayComponentFramework = undefined;
- this.detailCellRenderer = undefined;
- this.detailCellRendererFramework = undefined;
- this.defaultGroupSortComparator = undefined;
- this.isRowMaster = undefined;
- this.isRowSelectable = undefined;
- this.postSort = undefined;
- this.processHeaderForClipboard = undefined;
- this.paginationNumberFormatter = undefined;
- this.processDataFromClipboard = undefined;
- this.getServerSideGroupKey = undefined;
- this.isServerSideGroup = undefined;
- this.suppressKeyboardEvent = undefined;
- this.createChartContainer = undefined;
- this.processChartOptions = undefined;
- this.getChartToolbarItems = undefined;
- this.fillOperation = undefined;
- this.toolPanelSuppressRowGroups = undefined;
- this.toolPanelSuppressValues = undefined;
- this.toolPanelSuppressPivots = undefined;
- this.toolPanelSuppressPivotMode = undefined;
- this.toolPanelSuppressSideButtons = undefined;
- this.toolPanelSuppressColumnFilter = undefined;
- this.toolPanelSuppressColumnSelectAll = undefined;
- this.toolPanelSuppressColumnExpandAll = undefined;
- this.suppressMakeColumnVisibleAfterUnGroup = undefined;
- this.suppressRowClickSelection = undefined;
- this.suppressCellSelection = undefined;
- this.suppressHorizontalScroll = undefined;
- this.alwaysShowVerticalScroll = undefined;
- this.debug = undefined;
- this.enableBrowserTooltips = undefined;
- this.enableColResize = undefined;
- this.enableCellExpressions = undefined;
- this.enableSorting = undefined;
- this.enableServerSideSorting = undefined;
- this.enableFilter = undefined;
- this.enableServerSideFilter = undefined;
- this.angularCompileRows = undefined;
- this.angularCompileFilters = undefined;
- this.angularCompileHeaders = undefined;
- this.groupSuppressAutoColumn = undefined;
- this.groupSelectsChildren = undefined;
- this.groupIncludeFooter = undefined;
- this.groupIncludeTotalFooter = undefined;
- this.groupUseEntireRow = undefined;
- this.groupSuppressRow = undefined;
- this.groupSuppressBlankHeader = undefined;
- this.forPrint = undefined;
- this.suppressMenuHide = undefined;
- this.rowDeselection = undefined;
- this.unSortIcon = undefined;
- this.suppressMultiSort = undefined;
- this.singleClickEdit = undefined;
- this.suppressLoadingOverlay = undefined;
- this.suppressNoRowsOverlay = undefined;
- this.suppressAutoSize = undefined;
- this.skipHeaderOnAutoSize = undefined;
- this.suppressParentsInRowNodes = undefined;
- this.showToolPanel = undefined;
- this.suppressColumnMoveAnimation = undefined;
- this.suppressMovableColumns = undefined;
- this.suppressFieldDotNotation = undefined;
- this.enableRangeSelection = undefined;
- this.enableRangeHandle = undefined;
- this.enableFillHandle = undefined;
- this.suppressClearOnFillReduction = undefined;
- this.deltaSort = undefined;
- this.suppressTouch = undefined;
- this.suppressAsyncEvents = undefined;
- this.allowContextMenuWithControlKey = undefined;
- this.suppressContextMenu = undefined;
- this.suppressMenuFilterPanel = undefined;
- this.suppressMenuMainPanel = undefined;
- this.suppressMenuColumnPanel = undefined;
- this.rememberGroupStateWhenNewData = undefined;
- this.enableCellChangeFlash = undefined;
- this.suppressDragLeaveHidesColumns = undefined;
- this.suppressMiddleClickScrolls = undefined;
- this.suppressPreventDefaultOnMouseWheel = undefined;
- this.suppressUseColIdForGroups = undefined;
- this.suppressCopyRowsToClipboard = undefined;
- this.copyHeadersToClipboard = undefined;
- this.pivotMode = undefined;
- this.suppressAggFuncInHeader = undefined;
- this.suppressColumnVirtualisation = undefined;
- this.suppressAggAtRootLevel = undefined;
- this.suppressFocusAfterRefresh = undefined;
- this.functionsPassive = undefined;
- this.functionsReadOnly = undefined;
- this.animateRows = undefined;
- this.groupSelectsFiltered = undefined;
- this.groupRemoveSingleChildren = undefined;
- this.groupRemoveLowestSingleChildren = undefined;
- this.enableRtl = undefined;
- this.suppressClickEdit = undefined;
- this.rowDragManaged = undefined;
- this.suppressRowDrag = undefined;
- this.suppressMoveWhenRowDragging = undefined;
- this.enableMultiRowDragging = undefined;
- this.enableGroupEdit = undefined;
- this.embedFullWidthRows = undefined;
- this.deprecatedEmbedFullWidthRows = undefined;
- this.suppressTabbing = undefined;
- this.suppressPaginationPanel = undefined;
- this.floatingFilter = undefined;
- this.groupHideOpenParents = undefined;
- this.groupMultiAutoColumn = undefined;
- this.pagination = undefined;
- this.stopEditingWhenGridLosesFocus = undefined;
- this.paginationAutoPageSize = undefined;
- this.suppressScrollOnNewData = undefined;
- this.purgeClosedRowNodes = undefined;
- this.cacheQuickFilter = undefined;
- this.deltaRowDataMode = undefined;
- this.ensureDomOrder = undefined;
- this.accentedSort = undefined;
- this.pivotTotals = undefined;
- this.suppressChangeDetection = undefined;
- this.valueCache = undefined;
- this.valueCacheNeverExpires = undefined;
- this.aggregateOnlyChangedColumns = undefined;
- this.suppressAnimationFrame = undefined;
- this.suppressExcelExport = undefined;
- this.suppressCsvExport = undefined;
- this.treeData = undefined;
- this.masterDetail = undefined;
- this.suppressMultiRangeSelection = undefined;
- this.enterMovesDownAfterEdit = undefined;
- this.enterMovesDown = undefined;
- this.suppressPropertyNamesCheck = undefined;
- this.rowMultiSelectWithClick = undefined;
- this.contractColumnSelection = undefined;
- this.suppressEnterpriseResetOnNewColumns = undefined;
- this.enableOldSetFilterModel = undefined;
- this.suppressRowHoverHighlight = undefined;
- this.gridAutoHeight = undefined;
- this.suppressRowTransform = undefined;
- this.suppressClipboardPaste = undefined;
- this.suppressLastEmptyLineOnPaste = undefined;
- this.serverSideSortingAlwaysResets = undefined;
- this.reactNext = undefined;
- this.suppressSetColumnStateEvents = undefined;
- this.enableCharts = undefined;
- this.deltaColumnMode = undefined;
- this.suppressMaintainUnsortedOrder = undefined;
- this.enableCellTextSelection = undefined;
- this.suppressBrowserResizeObserver = undefined;
- this.suppressMaxRenderedRowRestriction = undefined;
- this.excludeChildrenWhenTreeDataFiltering = undefined;
- this.tooltipMouseTrack = undefined;
- this.keepDetailRows = undefined;
- this.paginateChildRows = undefined;
- this.preventDefaultOnContextMenu = undefined;
- this.undoRedoCellEditing = undefined;
- this.allowDragFromColumnsToolPanel = undefined;
- this.immutableData = undefined;
- this.immutableColumns = undefined;
- this.pivotSuppressAutoColumn = undefined;
- this.columnEverythingChanged = new EventEmitter();
- this.newColumnsLoaded = new EventEmitter();
- this.columnPivotModeChanged = new EventEmitter();
- this.columnRowGroupChanged = new EventEmitter();
- this.expandOrCollapseAll = new EventEmitter();
- this.columnPivotChanged = new EventEmitter();
- this.gridColumnsChanged = new EventEmitter();
- this.columnValueChanged = new EventEmitter();
- this.columnMoved = new EventEmitter();
- this.columnVisible = new EventEmitter();
- this.columnPinned = new EventEmitter();
- this.columnGroupOpened = new EventEmitter();
- this.columnResized = new EventEmitter();
- this.displayedColumnsChanged = new EventEmitter();
- this.virtualColumnsChanged = new EventEmitter();
- this.rowGroupOpened = new EventEmitter();
- this.rowDataChanged = new EventEmitter();
- this.rowDataUpdated = new EventEmitter();
- this.pinnedRowDataChanged = new EventEmitter();
- this.rangeSelectionChanged = new EventEmitter();
- this.chartCreated = new EventEmitter();
- this.chartRangeSelectionChanged = new EventEmitter();
- this.chartOptionsChanged = new EventEmitter();
- this.chartDestroyed = new EventEmitter();
- this.toolPanelVisibleChanged = new EventEmitter();
- this.modelUpdated = new EventEmitter();
- this.pasteStart = new EventEmitter();
- this.pasteEnd = new EventEmitter();
- this.fillStart = new EventEmitter();
- this.fillEnd = new EventEmitter();
- this.cellClicked = new EventEmitter();
- this.cellDoubleClicked = new EventEmitter();
- this.cellMouseDown = new EventEmitter();
- this.cellContextMenu = new EventEmitter();
- this.cellValueChanged = new EventEmitter();
- this.rowValueChanged = new EventEmitter();
- this.cellFocused = new EventEmitter();
- this.rowSelected = new EventEmitter();
- this.selectionChanged = new EventEmitter();
- this.cellKeyDown = new EventEmitter();
- this.cellKeyPress = new EventEmitter();
- this.cellMouseOver = new EventEmitter();
- this.cellMouseOut = new EventEmitter();
- this.filterChanged = new EventEmitter();
- this.filterModified = new EventEmitter();
- this.filterOpened = new EventEmitter();
- this.sortChanged = new EventEmitter();
- this.virtualRowRemoved = new EventEmitter();
- this.rowClicked = new EventEmitter();
- this.rowDoubleClicked = new EventEmitter();
- this.gridReady = new EventEmitter();
- this.gridSizeChanged = new EventEmitter();
- this.viewportChanged = new EventEmitter();
- this.firstDataRendered = new EventEmitter();
- this.dragStarted = new EventEmitter();
- this.dragStopped = new EventEmitter();
- this.checkboxChanged = new EventEmitter();
- this.rowEditingStarted = new EventEmitter();
- this.rowEditingStopped = new EventEmitter();
- this.cellEditingStarted = new EventEmitter();
- this.cellEditingStopped = new EventEmitter();
- this.bodyScroll = new EventEmitter();
- this.animationQueueEmpty = new EventEmitter();
- this.heightScaleChanged = new EventEmitter();
- this.paginationChanged = new EventEmitter();
- this.componentStateChanged = new EventEmitter();
- this.bodyHeightChanged = new EventEmitter();
- this.displayedColumnsWidthChanged = new EventEmitter();
- this.scrollVisibilityChanged = new EventEmitter();
- this.columnHoverChanged = new EventEmitter();
- this.flashCells = new EventEmitter();
- this.rowDragEnter = new EventEmitter();
- this.rowDragMove = new EventEmitter();
- this.rowDragLeave = new EventEmitter();
- this.rowDragEnd = new EventEmitter();
- this.popupToFront = new EventEmitter();
- this.columnRowGroupChangeRequest = new EventEmitter();
- this.columnPivotChangeRequest = new EventEmitter();
- this.columnValueChangeRequest = new EventEmitter();
- this.columnAggFuncChangeRequest = new EventEmitter();
- this.keyboardFocus = new EventEmitter();
- this.mouseFocus = new EventEmitter();
- this._nativeElement = elementDef.nativeElement;
- this.frameworkComponentWrapper.setViewContainerRef(this.viewContainerRef);
- this.frameworkComponentWrapper.setComponentFactoryResolver(this._componentFactoryResolver);
- }
- AgGridAngular.prototype.ngAfterViewInit = function () {
- this.checkForDeprecatedEvents();
- this.gridOptions = ComponentUtil.copyAttributesToGridOptions(this.gridOptions, this, true);
- this.gridParams = {
- globalEventListener: this.globalEventListener.bind(this),
- frameworkOverrides: this.angularFrameworkOverrides,
- providedBeanInstances: {
- frameworkComponentWrapper: this.frameworkComponentWrapper
- },
- modules: (this.modules || [])
- };
- if (this.columns && this.columns.length > 0) {
- this.gridOptions.columnDefs = this.columns
- .map(function (column) {
- return column.toColDef();
- });
- }
- new Grid(this._nativeElement, this.gridOptions, this.gridParams);
- if (this.gridOptions.api) {
- this.api = this.gridOptions.api;
- }
- if (this.gridOptions.columnApi) {
- this.columnApi = this.gridOptions.columnApi;
- }
- this._initialised = true;
- // sometimes, especially in large client apps gridReady can fire before ngAfterViewInit
- // this ties these together so that gridReady will always fire after agGridAngular's ngAfterViewInit
- // the actual containing component's ngAfterViewInit will fire just after agGridAngular's
- this._fullyReady.resolveNow(null, function (resolve) { return resolve; });
- };
- AgGridAngular.prototype.ngOnChanges = function (changes) {
- if (this._initialised) {
- ComponentUtil.processOnChange(changes, this.gridOptions, this.api, this.columnApi);
- }
- };
- AgGridAngular.prototype.ngOnDestroy = function () {
- if (this._initialised) {
- // need to do this before the destroy, so we know not to emit any events
- // while tearing down the grid.
- this._destroyed = true;
- if (this.api) {
- this.api.destroy();
- }
- }
- };
- AgGridAngular.prototype.checkForDeprecatedEvents = function () {
- var _this = this;
- _.iterateObject(Events, function (key, eventName) {
- if (_this[eventName] && _this[eventName].observers.length > 0) {
- GridOptionsWrapper.checkEventDeprecation(eventName);
- }
- });
- };
- AgGridAngular.prototype.globalEventListener = function (eventType, event) {
- // if we are tearing down, don't emit angular events, as this causes
- // problems with the angular router
- if (this._destroyed) {
- return;
- }
- // generically look up the eventType
- var emitter = this[eventType];
- if (emitter) {
- if (eventType === 'gridReady') {
- // if the user is listening for gridReady, wait for ngAfterViewInit to fire first, then emit the
- // gridReady event
- this._fullyReady.then((function (result) {
- emitter.emit(event);
- }));
- }
- else {
- emitter.emit(event);
- }
- }
- else {
- console.log('ag-Grid-angular: could not find EventEmitter: ' + eventType);
- }
- };
- AgGridAngular.ctorParameters = function () { return [
- { type: ElementRef },
- { type: ViewContainerRef },
- { type: AngularFrameworkOverrides },
- { type: AngularFrameworkComponentWrapper },
- { type: ComponentFactoryResolver }
- ]; };
- __decorate([
- ContentChildren(AgGridColumn),
- __metadata("design:type", QueryList)
- ], AgGridAngular.prototype, "columns", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "gridOptions", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Array)
- ], AgGridAngular.prototype, "modules", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "slaveGrids", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "alignedGrids", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "rowData", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "columnDefs", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "excelStyles", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "pinnedTopRowData", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "pinnedBottomRowData", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "components", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "frameworkComponents", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "rowStyle", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "context", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "autoGroupColumnDef", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "groupColumnDef", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "localeText", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "icons", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "datasource", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "serverSideDatasource", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "viewportDatasource", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "groupRowRendererParams", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "aggFuncs", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "fullWidthCellRendererParams", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "defaultColGroupDef", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "defaultColDef", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "defaultExportParams", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "columnTypes", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "rowClassRules", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "detailGridOptions", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "detailCellRendererParams", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "loadingCellRendererParams", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "loadingOverlayComponentParams", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "noRowsOverlayComponentParams", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "popupParent", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "colResizeDefault", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "reduxStore", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "statusBar", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "sideBar", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "sortingOrder", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "rowClass", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "rowSelection", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "overlayLoadingTemplate", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "overlayNoRowsTemplate", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "quickFilterText", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "rowModelType", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "editType", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "domLayout", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "clipboardDeliminator", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "rowGroupPanelShow", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "multiSortKey", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "pivotColumnGroupTotals", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "pivotRowTotals", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "pivotPanelShow", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "rowHeight", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "detailRowHeight", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "rowBuffer", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "colWidth", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "headerHeight", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "groupHeaderHeight", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "floatingFiltersHeight", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "pivotHeaderHeight", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "pivotGroupHeaderHeight", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "groupDefaultExpanded", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "minColWidth", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "maxColWidth", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "viewportRowModelPageSize", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "viewportRowModelBufferSize", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "autoSizePadding", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "maxBlocksInCache", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "maxConcurrentDatasourceRequests", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "tooltipShowDelay", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "cacheOverflowSize", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "paginationPageSize", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "cacheBlockSize", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "infiniteInitialRowCount", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "scrollbarWidth", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "paginationStartPage", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "infiniteBlockSize", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "batchUpdateWaitMillis", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "asyncTransactionWaitMillis", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "blockLoadDebounceMillis", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "keepDetailRowsCount", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "undoRedoCellEditingLimit", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "cellFlashDelay", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "cellFadeDelay", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "localeTextFunc", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "groupRowInnerRenderer", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "groupRowInnerRendererFramework", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "dateComponent", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "dateComponentFramework", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "groupRowRenderer", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "groupRowRendererFramework", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "isExternalFilterPresent", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "getRowHeight", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "doesExternalFilterPass", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "getRowClass", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "getRowStyle", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "getRowClassRules", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "traverseNode", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "getContextMenuItems", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "getMainMenuItems", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "processRowPostCreate", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "processCellForClipboard", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "getNodeChildDetails", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "groupRowAggNodes", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "getRowNodeId", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "isFullWidthCell", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "fullWidthCellRenderer", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "fullWidthCellRendererFramework", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "doesDataFlower", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "processSecondaryColDef", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "processSecondaryColGroupDef", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "getBusinessKeyForNode", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "sendToClipboard", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "navigateToNextCell", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "tabToNextCell", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "getDetailRowData", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "processCellFromClipboard", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "getDocument", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "postProcessPopup", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "getChildCount", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "getDataPath", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "loadingCellRenderer", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "loadingCellRendererFramework", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "loadingOverlayComponent", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "loadingOverlayComponentFramework", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "noRowsOverlayComponent", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "noRowsOverlayComponentFramework", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "detailCellRenderer", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "detailCellRendererFramework", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "defaultGroupSortComparator", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "isRowMaster", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "isRowSelectable", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "postSort", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "processHeaderForClipboard", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "paginationNumberFormatter", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "processDataFromClipboard", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "getServerSideGroupKey", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "isServerSideGroup", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressKeyboardEvent", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "createChartContainer", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "processChartOptions", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "getChartToolbarItems", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "fillOperation", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "toolPanelSuppressRowGroups", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "toolPanelSuppressValues", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "toolPanelSuppressPivots", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "toolPanelSuppressPivotMode", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "toolPanelSuppressSideButtons", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "toolPanelSuppressColumnFilter", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "toolPanelSuppressColumnSelectAll", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "toolPanelSuppressColumnExpandAll", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressMakeColumnVisibleAfterUnGroup", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressRowClickSelection", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressCellSelection", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressHorizontalScroll", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "alwaysShowVerticalScroll", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "debug", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "enableBrowserTooltips", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "enableColResize", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "enableCellExpressions", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "enableSorting", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "enableServerSideSorting", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "enableFilter", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "enableServerSideFilter", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "angularCompileRows", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "angularCompileFilters", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "angularCompileHeaders", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "groupSuppressAutoColumn", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "groupSelectsChildren", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "groupIncludeFooter", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "groupIncludeTotalFooter", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "groupUseEntireRow", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "groupSuppressRow", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "groupSuppressBlankHeader", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "forPrint", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressMenuHide", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "rowDeselection", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "unSortIcon", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressMultiSort", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "singleClickEdit", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressLoadingOverlay", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressNoRowsOverlay", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressAutoSize", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "skipHeaderOnAutoSize", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressParentsInRowNodes", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "showToolPanel", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressColumnMoveAnimation", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressMovableColumns", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressFieldDotNotation", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "enableRangeSelection", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "enableRangeHandle", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "enableFillHandle", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressClearOnFillReduction", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "deltaSort", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressTouch", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressAsyncEvents", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "allowContextMenuWithControlKey", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressContextMenu", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressMenuFilterPanel", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressMenuMainPanel", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressMenuColumnPanel", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "rememberGroupStateWhenNewData", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "enableCellChangeFlash", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressDragLeaveHidesColumns", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressMiddleClickScrolls", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressPreventDefaultOnMouseWheel", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressUseColIdForGroups", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressCopyRowsToClipboard", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "copyHeadersToClipboard", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "pivotMode", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressAggFuncInHeader", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressColumnVirtualisation", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressAggAtRootLevel", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressFocusAfterRefresh", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "functionsPassive", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "functionsReadOnly", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "animateRows", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "groupSelectsFiltered", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "groupRemoveSingleChildren", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "groupRemoveLowestSingleChildren", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "enableRtl", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressClickEdit", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "rowDragManaged", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressRowDrag", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressMoveWhenRowDragging", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "enableMultiRowDragging", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "enableGroupEdit", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "embedFullWidthRows", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "deprecatedEmbedFullWidthRows", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressTabbing", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressPaginationPanel", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "floatingFilter", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "groupHideOpenParents", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "groupMultiAutoColumn", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "pagination", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "stopEditingWhenGridLosesFocus", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "paginationAutoPageSize", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressScrollOnNewData", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "purgeClosedRowNodes", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "cacheQuickFilter", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "deltaRowDataMode", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "ensureDomOrder", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "accentedSort", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "pivotTotals", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressChangeDetection", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "valueCache", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "valueCacheNeverExpires", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "aggregateOnlyChangedColumns", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressAnimationFrame", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressExcelExport", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressCsvExport", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "treeData", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "masterDetail", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressMultiRangeSelection", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "enterMovesDownAfterEdit", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "enterMovesDown", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressPropertyNamesCheck", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "rowMultiSelectWithClick", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "contractColumnSelection", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressEnterpriseResetOnNewColumns", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "enableOldSetFilterModel", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressRowHoverHighlight", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "gridAutoHeight", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressRowTransform", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressClipboardPaste", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressLastEmptyLineOnPaste", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "serverSideSortingAlwaysResets", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "reactNext", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressSetColumnStateEvents", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "enableCharts", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "deltaColumnMode", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressMaintainUnsortedOrder", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "enableCellTextSelection", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressBrowserResizeObserver", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "suppressMaxRenderedRowRestriction", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "excludeChildrenWhenTreeDataFiltering", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "tooltipMouseTrack", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "keepDetailRows", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "paginateChildRows", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "preventDefaultOnContextMenu", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "undoRedoCellEditing", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "allowDragFromColumnsToolPanel", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "immutableData", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "immutableColumns", void 0);
- __decorate([
- Input(),
- __metadata("design:type", Object)
- ], AgGridAngular.prototype, "pivotSuppressAutoColumn", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "columnEverythingChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "newColumnsLoaded", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "columnPivotModeChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "columnRowGroupChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "expandOrCollapseAll", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "columnPivotChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "gridColumnsChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "columnValueChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "columnMoved", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "columnVisible", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "columnPinned", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "columnGroupOpened", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "columnResized", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "displayedColumnsChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "virtualColumnsChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "rowGroupOpened", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "rowDataChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "rowDataUpdated", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "pinnedRowDataChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "rangeSelectionChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "chartCreated", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "chartRangeSelectionChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "chartOptionsChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "chartDestroyed", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "toolPanelVisibleChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "modelUpdated", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "pasteStart", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "pasteEnd", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "fillStart", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "fillEnd", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "cellClicked", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "cellDoubleClicked", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "cellMouseDown", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "cellContextMenu", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "cellValueChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "rowValueChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "cellFocused", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "rowSelected", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "selectionChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "cellKeyDown", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "cellKeyPress", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "cellMouseOver", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "cellMouseOut", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "filterChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "filterModified", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "filterOpened", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "sortChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "virtualRowRemoved", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "rowClicked", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "rowDoubleClicked", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "gridReady", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "gridSizeChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "viewportChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "firstDataRendered", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "dragStarted", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "dragStopped", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "checkboxChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "rowEditingStarted", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "rowEditingStopped", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "cellEditingStarted", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "cellEditingStopped", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "bodyScroll", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "animationQueueEmpty", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "heightScaleChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "paginationChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "componentStateChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "bodyHeightChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "displayedColumnsWidthChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "scrollVisibilityChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "columnHoverChanged", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "flashCells", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "rowDragEnter", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "rowDragMove", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "rowDragLeave", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "rowDragEnd", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "popupToFront", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "columnRowGroupChangeRequest", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "columnPivotChangeRequest", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "columnValueChangeRequest", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "columnAggFuncChangeRequest", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "keyboardFocus", void 0);
- __decorate([
- Output(),
- __metadata("design:type", EventEmitter)
- ], AgGridAngular.prototype, "mouseFocus", void 0);
- AgGridAngular = __decorate([
- Component({
- selector: 'ag-grid-angular',
- template: '',
- providers: [
- AngularFrameworkOverrides,
- AngularFrameworkComponentWrapper
- ],
- // tell angular we don't want view encapsulation, we don't want a shadow root
- encapsulation: ViewEncapsulation.None
- }),
- __metadata("design:paramtypes", [ElementRef,
- ViewContainerRef,
- AngularFrameworkOverrides,
- AngularFrameworkComponentWrapper,
- ComponentFactoryResolver])
- ], AgGridAngular);
- return AgGridAngular;
- }());
- var AgGridModule = /** @class */ (function () {
- function AgGridModule() {
- }
- AgGridModule_1 = AgGridModule;
- AgGridModule.withComponents = function (components) {
- return {
- ngModule: AgGridModule_1,
- providers: [
- { provide: ANALYZE_FOR_ENTRY_COMPONENTS, useValue: components, multi: true }
- ],
- };
- };
- AgGridModule.forRoot = function (components) {
- return {
- ngModule: AgGridModule_1,
- providers: [
- { provide: ANALYZE_FOR_ENTRY_COMPONENTS, useValue: components, multi: true }
- ],
- };
- };
- var AgGridModule_1;
- AgGridModule = AgGridModule_1 = __decorate([
- NgModule({
- declarations: [AgGridAngular, AgGridColumn],
- imports: [],
- exports: [AgGridAngular, AgGridColumn]
- })
- ], AgGridModule);
- return AgGridModule;
- }());
- /**
- * Generated bundle index. Do not edit.
- */
- export { AgGridAngular, AgGridColumn, AgGridModule, AngularFrameworkOverrides as ɵa, AngularFrameworkComponentWrapper as ɵb };
- //# sourceMappingURL=ag-grid-angular.js.map
|