Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
}
});
}
var gotResult = count > 1;
var gotNumberResult = numberCount > 1;
// we show count even if no numbers
this.setAggregationComponentValue('count', count, gotResult);
// show if numbers found
this.setAggregationComponentValue('sum', sum, gotNumberResult);
this.setAggregationComponentValue('min', min, gotNumberResult);
this.setAggregationComponentValue('max', max, gotNumberResult);
this.setAggregationComponentValue('avg', (sum / numberCount), gotNumberResult);
};
AggregationComp.TEMPLATE = "<div class="\"ag-status-panel">\n \n \n \n \n \n </div>";
__decorate([
ag_grid_community_1.Autowired('eventService'),
__metadata("design:type", ag_grid_community_1.EventService)
], AggregationComp.prototype, "eventService", void 0);
__decorate([
ag_grid_community_1.Autowired('rangeController'),
__metadata("design:type", rangeController_1.RangeController)
], AggregationComp.prototype, "rangeController", void 0);
__decorate([
ag_grid_community_1.Autowired('valueService'),
__metadata("design:type", ag_grid_community_1.ValueService)
], AggregationComp.prototype, "valueService", void 0);
__decorate([
ag_grid_community_1.Autowired('cellNavigationService'),
__metadata("design:type", ag_grid_community_1.CellNavigationService)
], AggregationComp.prototype, "cellNavigationService", void 0);
__decorate([
ag_grid_community_1.Autowired('rowRenderer'),
};
RangeChartService.prototype.getSelectedRange = function () {
var ranges = this.rangeController.getCellRanges();
return ranges.length > 0 ? ranges[0] : {};
};
RangeChartService.prototype.destroyAllActiveCharts = function () {
// we take copy as the forEach is removing from the array as we process
var activeCharts = this.activeCharts.slice();
activeCharts.forEach(function (chart) { return chart.destroyChart(); });
};
__decorate([
ag_grid_community_1.Autowired('rangeController'),
__metadata("design:type", rangeController_1.RangeController)
], RangeChartService.prototype, "rangeController", void 0);
__decorate([
ag_grid_community_1.Autowired('context'),
__metadata("design:type", ag_grid_community_1.Context)
], RangeChartService.prototype, "context", void 0);
__decorate([
ag_grid_community_1.Autowired('gridOptionsWrapper'),
__metadata("design:type", ag_grid_community_1.GridOptionsWrapper)
], RangeChartService.prototype, "gridOptionsWrapper", void 0);
__decorate([
ag_grid_community_1.PreDestroy,
__metadata("design:type", Function),
__metadata("design:paramtypes", []),
__metadata("design:returntype", void 0)
], RangeChartService.prototype, "destroyAllActiveCharts", null);
RangeChartService = __decorate([
ag_grid_community_1.Bean('rangeChartService')
], RangeChartService);
return RangeChartService;
ToolPanelWrapper.prototype.setupResize = function () {
var resizeBar = new horizontalResizeComp_1.HorizontalResizeComp();
this.getContext().wireBean(resizeBar);
resizeBar.setElementToResize(this.getGui());
this.appendChild(resizeBar);
};
ToolPanelWrapper.prototype.setToolPanelComponent = function (compInstance) {
this.toolPanelCompInstance = compInstance;
this.appendChild(compInstance);
};
ToolPanelWrapper.prototype.refresh = function () {
this.toolPanelCompInstance.refresh();
};
ToolPanelWrapper.TEMPLATE = "<div class="\"ag-tool-panel-wrapper\"/">";
__decorate([
ag_grid_community_1.Autowired("userComponentFactory"),
__metadata("design:type", ag_grid_community_1.UserComponentFactory)
], ToolPanelWrapper.prototype, "userComponentFactory", void 0);
__decorate([
ag_grid_community_1.Autowired("gridOptionsWrapper"),
__metadata("design:type", ag_grid_community_1.GridOptionsWrapper)
], ToolPanelWrapper.prototype, "gridOptionsWrapper", void 0);
__decorate([
ag_grid_community_1.PostConstruct,
__metadata("design:type", Function),
__metadata("design:paramtypes", []),
__metadata("design:returntype", void 0)
], ToolPanelWrapper.prototype, "setupResize", null);
return ToolPanelWrapper;
}(ag_grid_community_1.Component));
exports.ToolPanelWrapper = ToolPanelWrapper;</div>
__metadata("design:type", ag_grid_community_1.StylingService)
], ExcelCreator.prototype, "stylingService", void 0);
__decorate([
ag_grid_community_1.Autowired('downloader'),
__metadata("design:type", ag_grid_community_1.Downloader)
], ExcelCreator.prototype, "downloader", void 0);
__decorate([
ag_grid_community_1.Autowired('gridSerializer'),
__metadata("design:type", ag_grid_community_1.GridSerializer)
], ExcelCreator.prototype, "gridSerializer", void 0);
__decorate([
ag_grid_community_1.Autowired('gridOptionsWrapper'),
__metadata("design:type", ag_grid_community_1.GridOptionsWrapper)
], ExcelCreator.prototype, "gridOptionsWrapper", void 0);
__decorate([
ag_grid_community_1.Autowired('zipContainer'),
__metadata("design:type", ag_grid_community_1.ZipContainer)
], ExcelCreator.prototype, "zipContainer", void 0);
__decorate([
ag_grid_community_1.PostConstruct,
__metadata("design:type", Function),
__metadata("design:paramtypes", []),
__metadata("design:returntype", void 0)
], ExcelCreator.prototype, "postConstruct", null);
ExcelCreator = __decorate([
ag_grid_community_1.Bean('excelCreator')
], ExcelCreator);
return ExcelCreator;
}(ag_grid_community_1.BaseCreator));
exports.ExcelCreator = ExcelCreator;
var valueUnformatted = values[i];
var valueFormatted = this.valueFormatterService.formatValue(this.column, null, null, valueUnformatted);
if (valueFormatted != null) {
values[i] = valueFormatted;
}
}
var arrayToDisplay = values.length > 10 ? values.slice(0, 10).concat('...') : values;
var valuesString = "(" + values.length + ") " + arrayToDisplay.join(",");
this.eFloatingFilterText.value = valuesString;
};
__decorate([
ag_grid_community_1.RefSelector('eFloatingFilterText'),
__metadata("design:type", HTMLInputElement)
], SetFloatingFilterComp.prototype, "eFloatingFilterText", void 0);
__decorate([
ag_grid_community_1.Autowired('valueFormatterService'),
__metadata("design:type", ag_grid_community_1.ValueFormatterService)
], SetFloatingFilterComp.prototype, "valueFormatterService", void 0);
return SetFloatingFilterComp;
}(ag_grid_community_1.Component));
exports.SetFloatingFilterComp = SetFloatingFilterComp;
__metadata("design:type", ag_grid_community_1.AgColorPicker)
], ShadowPanel.prototype, "shadowColorPicker", void 0);
__decorate([
ag_grid_community_1.RefSelector('shadowBlurSlider'),
__metadata("design:type", ag_grid_community_1.AgSlider)
], ShadowPanel.prototype, "shadowBlurSlider", void 0);
__decorate([
ag_grid_community_1.RefSelector('shadowXOffsetSlider'),
__metadata("design:type", ag_grid_community_1.AgSlider)
], ShadowPanel.prototype, "shadowXOffsetSlider", void 0);
__decorate([
ag_grid_community_1.RefSelector('shadowYOffsetSlider'),
__metadata("design:type", ag_grid_community_1.AgSlider)
], ShadowPanel.prototype, "shadowYOffsetSlider", void 0);
__decorate([
ag_grid_community_1.Autowired('chartTranslator'),
__metadata("design:type", chartTranslator_1.ChartTranslator)
], ShadowPanel.prototype, "chartTranslator", void 0);
__decorate([
ag_grid_community_1.PostConstruct,
__metadata("design:type", Function),
__metadata("design:paramtypes", []),
__metadata("design:returntype", void 0)
], ShadowPanel.prototype, "init", null);
return ShadowPanel;
}(ag_grid_community_1.Component));
exports.ShadowPanel = ShadowPanel;
return this.rows.length;
};
__decorate([
ag_grid_community_1.Autowired('columnController'),
__metadata("design:type", ag_grid_community_1.ColumnController)
], ChartEverythingDatasource.prototype, "columnController", void 0);
__decorate([
ag_grid_community_1.Autowired('valueService'),
__metadata("design:type", ag_grid_community_1.ValueService)
], ChartEverythingDatasource.prototype, "valueService", void 0);
__decorate([
ag_grid_community_1.Autowired('rowModel'),
__metadata("design:type", ag_grid_community_1.ClientSideRowModel)
], ChartEverythingDatasource.prototype, "clientSideRowModel", void 0);
__decorate([
ag_grid_community_1.Autowired('paginationProxy'),
__metadata("design:type", ag_grid_community_1.PaginationProxy)
], ChartEverythingDatasource.prototype, "paginationProxy", void 0);
__decorate([
ag_grid_community_1.Autowired('eventService'),
__metadata("design:type", ag_grid_community_1.EventService)
], ChartEverythingDatasource.prototype, "eventService", void 0);
__decorate([
ag_grid_community_1.PostConstruct,
__metadata("design:type", Function),
__metadata("design:paramtypes", []),
__metadata("design:returntype", void 0)
], ChartEverythingDatasource.prototype, "postConstruct", null);
return ChartEverythingDatasource;
}(ag_grid_community_1.BeanStub));
exports.ChartEverythingDatasource = ChartEverythingDatasource;
}
});
});
});
};
StatusBar.TEMPLATE = "<div class="\"ag-status-bar\"">\n <div class="\"ag-status-bar-left\""></div>\n <div class="\"ag-status-bar-center\""></div>\n <div class="\"ag-status-bar-right\""></div>\n </div>";
__decorate([
ag_grid_community_1.Autowired('gridOptionsWrapper'),
__metadata("design:type", ag_grid_community_1.GridOptionsWrapper)
], StatusBar.prototype, "gridOptionsWrapper", void 0);
__decorate([
ag_grid_community_1.Autowired('gridOptions'),
__metadata("design:type", Object)
], StatusBar.prototype, "gridOptions", void 0);
__decorate([
ag_grid_community_1.Autowired('userComponentFactory'),
__metadata("design:type", ag_grid_community_1.UserComponentFactory)
], StatusBar.prototype, "userComponentFactory", void 0);
__decorate([
ag_grid_community_1.Autowired('statusBarService'),
__metadata("design:type", statusBarService_1.StatusBarService)
], StatusBar.prototype, "statusBarService", void 0);
__decorate([
ag_grid_community_1.RefSelector('eStatusBarLeft'),
__metadata("design:type", HTMLElement)
], StatusBar.prototype, "eStatusBarLeft", void 0);
__decorate([
ag_grid_community_1.RefSelector('eStatusBarCenter'),
__metadata("design:type", HTMLElement)
], StatusBar.prototype, "eStatusBarCenter", void 0);
__decorate([
ag_grid_community_1.RefSelector('eStatusBarRight'),
__metadata("design:type", ag_grid_community_1.RowRenderer)
], AggregationComp.prototype, "rowRenderer", void 0);
__decorate([
ag_grid_community_1.Autowired('gridOptionsWrapper'),
__metadata("design:type", ag_grid_community_1.GridOptionsWrapper)
], AggregationComp.prototype, "gridOptionsWrapper", void 0);
__decorate([
ag_grid_community_1.Autowired('gridOptions'),
__metadata("design:type", Object)
], AggregationComp.prototype, "gridOptions", void 0);
__decorate([
ag_grid_community_1.Autowired('gridApi'),
__metadata("design:type", ag_grid_community_1.GridApi)
], AggregationComp.prototype, "gridApi", void 0);
__decorate([
ag_grid_community_1.Autowired('cellPositionUtils'),
__metadata("design:type", ag_grid_community_1.CellPositionUtils)
], AggregationComp.prototype, "cellPositionUtils", void 0);
__decorate([
ag_grid_community_1.Autowired('rowPositionUtils'),
__metadata("design:type", ag_grid_community_1.RowPositionUtils)
], AggregationComp.prototype, "rowPositionUtils", void 0);
__decorate([
ag_grid_community_1.RefSelector('sumAggregationComp'),
__metadata("design:type", nameValueComp_1.NameValueComp)
], AggregationComp.prototype, "sumAggregationComp", void 0);
__decorate([
ag_grid_community_1.RefSelector('countAggregationComp'),
__metadata("design:type", nameValueComp_1.NameValueComp)
], AggregationComp.prototype, "countAggregationComp", void 0);
__decorate([
ag_grid_community_1.RefSelector('minAggregationComp'),
__metadata("design:type", ag_grid_community_1.ResizeObserverService)
], GridChartComp.prototype, "resizeObserverService", void 0);
__decorate([
ag_grid_community_1.Autowired('gridOptionsWrapper'),
__metadata("design:type", ag_grid_community_1.GridOptionsWrapper)
], GridChartComp.prototype, "gridOptionsWrapper", void 0);
__decorate([
ag_grid_community_1.Autowired('environment'),
__metadata("design:type", ag_grid_community_1.Environment)
], GridChartComp.prototype, "environment", void 0);
__decorate([
ag_grid_community_1.Autowired('chartTranslator'),
__metadata("design:type", chartTranslator_1.ChartTranslator)
], GridChartComp.prototype, "chartTranslator", void 0);
__decorate([
ag_grid_community_1.Autowired('eventService'),
__metadata("design:type", ag_grid_community_1.EventService)
], GridChartComp.prototype, "eventService", void 0);
__decorate([
ag_grid_community_1.PostConstruct,
__metadata("design:type", Function),
__metadata("design:paramtypes", []),
__metadata("design:returntype", void 0)
], GridChartComp.prototype, "init", null);
return GridChartComp;
}(ag_grid_community_1.Component));
exports.GridChartComp = GridChartComp;