`\n );\n this.selectItem = itemSelected;\n this.getGui().innerText = value;\n this.addGuiEventListener(\"click\", this.selectItem);\n }\n};\nvar BaseDropZonePanel = class extends PillDropZonePanel2 {\n constructor(horizontal, dropZonePurpose) {\n super(horizontal);\n this.dropZonePurpose = dropZonePurpose;\n }\n init(params) {\n super.init(params);\n this.addManagedListener(this.eventService, Events33.EVENT_NEW_COLUMNS_LOADED, this.refreshGui.bind(this));\n this.addManagedPropertyListeners([\"functionsReadOnly\", \"rowGroupPanelSuppressSort\", \"groupLockGroupColumns\"], this.refreshGui.bind(this));\n }\n getItems(dragItem) {\n var _a;\n return (_a = dragItem.columns) != null ? _a : [];\n }\n isInterestedIn(type) {\n return type === DragSourceType23.HeaderCell || type === DragSourceType23.ToolPanel;\n }\n minimumAllowedNewInsertIndex() {\n const numberOfLockedCols = this.gos.get(\"groupLockGroupColumns\");\n const numberOfGroupCols = this.columnModel.getRowGroupColumns().length;\n if (numberOfLockedCols === -1) {\n return numberOfGroupCols;\n }\n return Math.min(numberOfLockedCols, numberOfGroupCols);\n }\n showOrHideColumnOnExit(draggingEvent) {\n return this.isRowGroupPanel() && !this.gos.get(\"suppressRowGroupHidesColumns\") && !draggingEvent.fromNudge;\n }\n handleDragEnterEnd(draggingEvent) {\n const hideColumnOnExit = this.showOrHideColumnOnExit(draggingEvent);\n if (hideColumnOnExit) {\n const dragItem = draggingEvent.dragSource.getDragItem();\n const columns = dragItem.columns;\n this.setColumnsVisible(columns, false, \"uiColumnDragged\");\n }\n }\n handleDragLeaveEnd(draggingEvent) {\n const showColumnOnExit = this.showOrHideColumnOnExit(draggingEvent);\n if (showColumnOnExit) {\n const dragItem = draggingEvent.dragSource.getDragItem();\n this.setColumnsVisible(dragItem.columns, true, \"uiColumnDragged\");\n }\n }\n setColumnsVisible(columns, visible, source) {\n if (columns) {\n const allowedCols = columns.filter((c) => !c.getColDef().lockVisible);\n this.columnModel.setColumnsVisible(allowedCols, visible, source);\n }\n }\n isRowGroupPanel() {\n return this.dropZonePurpose === \"rowGroup\";\n }\n refreshOnDragStop() {\n return !this.gos.get(\"functionsPassive\");\n }\n createPillComponent(column, dropTarget, ghost, horizontal) {\n return new DropZoneColumnComp(column, dropTarget, ghost, this.dropZonePurpose, horizontal);\n }\n};\n__decorateClass6([\n Autowired63(\"columnModel\")\n], BaseDropZonePanel.prototype, \"columnModel\", 2);\nvar RowGroupDropZonePanel = class extends BaseDropZonePanel {\n constructor(horizontal) {\n super(horizontal, \"rowGroup\");\n }\n passBeansUp() {\n const localeTextFunc = this.localeService.getLocaleTextFunc();\n const emptyMessage = localeTextFunc(\"rowGroupColumnsEmptyMessage\", \"Drag here to set row groups\");\n const title = localeTextFunc(\"groups\", \"Row Groups\");\n super.init({\n icon: _83.createIconNoSpan(\"rowGroupPanel\", this.gos, null),\n emptyMessage,\n title\n });\n this.addManagedListener(this.eventService, Events43.EVENT_COLUMN_ROW_GROUP_CHANGED, this.refreshGui.bind(this));\n }\n getAriaLabel() {\n const translate = this.localeService.getLocaleTextFunc();\n const label = translate(\"ariaRowGroupDropZonePanelLabel\", \"Row Groups\");\n return label;\n }\n getTooltipParams() {\n const res = super.getTooltipParams();\n res.location = \"rowGroupColumnsList\";\n return res;\n }\n isItemDroppable(column, draggingEvent) {\n if (this.gos.get(\"functionsReadOnly\") || !column.isPrimary()) {\n return false;\n }\n return column.isAllowRowGroup() && (!column.isRowGroupActive() || this.isSourceEventFromTarget(draggingEvent));\n }\n updateItems(columns) {\n if (this.gos.get(\"functionsPassive\")) {\n const event = {\n type: Events43.EVENT_COLUMN_ROW_GROUP_CHANGE_REQUEST,\n columns\n };\n this.eventService.dispatchEvent(event);\n } else {\n this.columnModel.setRowGroupColumns(columns, \"toolPanelUi\");\n }\n }\n getIconName() {\n return this.isPotentialDndItems() ? DragAndDropService22.ICON_GROUP : DragAndDropService22.ICON_NOT_ALLOWED;\n }\n getExistingItems() {\n return this.columnModel.getRowGroupColumns();\n }\n};\n__decorateClass6([\n PostConstruct310\n], RowGroupDropZonePanel.prototype, \"passBeansUp\", 1);\nvar PivotDropZonePanel = class extends BaseDropZonePanel {\n constructor(horizontal) {\n super(horizontal, \"pivot\");\n }\n passBeansUp() {\n const localeTextFunc = this.localeService.getLocaleTextFunc();\n const emptyMessage = localeTextFunc(\"pivotColumnsEmptyMessage\", \"Drag here to set column labels\");\n const title = localeTextFunc(\"pivots\", \"Column Labels\");\n super.init({\n icon: _93.createIconNoSpan(\"pivotPanel\", this.gos, null),\n emptyMessage,\n title\n });\n this.addManagedListener(this.eventService, Events53.EVENT_NEW_COLUMNS_LOADED, this.refresh.bind(this));\n this.addManagedListener(this.eventService, Events53.EVENT_COLUMN_PIVOT_CHANGED, this.refresh.bind(this));\n this.addManagedListener(this.eventService, Events53.EVENT_COLUMN_PIVOT_MODE_CHANGED, this.checkVisibility.bind(this));\n this.refresh();\n }\n getAriaLabel() {\n const translate = this.localeService.getLocaleTextFunc();\n const label = translate(\"ariaPivotDropZonePanelLabel\", \"Column Labels\");\n return label;\n }\n getTooltipParams() {\n const res = super.getTooltipParams();\n res.location = \"pivotColumnsList\";\n return res;\n }\n refresh() {\n this.checkVisibility();\n this.refreshGui();\n }\n checkVisibility() {\n const pivotMode = this.columnModel.isPivotMode();\n if (this.isHorizontal()) {\n switch (this.gos.get(\"pivotPanelShow\")) {\n case \"always\":\n this.setDisplayed(pivotMode);\n break;\n case \"onlyWhenPivoting\":\n const pivotActive = this.columnModel.isPivotActive();\n this.setDisplayed(pivotMode && pivotActive);\n break;\n default:\n this.setDisplayed(false);\n break;\n }\n } else {\n this.setDisplayed(pivotMode);\n }\n }\n isItemDroppable(column, draggingEvent) {\n if (this.gos.get(\"functionsReadOnly\") || !column.isPrimary()) {\n return false;\n }\n return column.isAllowPivot() && (!column.isPivotActive() || this.isSourceEventFromTarget(draggingEvent));\n }\n updateItems(columns) {\n if (this.gos.get(\"functionsPassive\")) {\n const event = {\n type: Events53.EVENT_COLUMN_PIVOT_CHANGE_REQUEST,\n columns\n };\n this.eventService.dispatchEvent(event);\n } else {\n this.columnModel.setPivotColumns(columns, \"toolPanelUi\");\n }\n }\n getIconName() {\n return this.isPotentialDndItems() ? DragAndDropService32.ICON_PIVOT : DragAndDropService32.ICON_NOT_ALLOWED;\n }\n getExistingItems() {\n return this.columnModel.getPivotColumns();\n }\n};\n__decorateClass6([\n PostConstruct410\n], PivotDropZonePanel.prototype, \"passBeansUp\", 1);\nvar GridHeaderDropZones = class extends Component27 {\n constructor() {\n super();\n }\n postConstruct() {\n this.setGui(this.createNorthPanel());\n this.addManagedListener(this.eventService, Events63.EVENT_COLUMN_ROW_GROUP_CHANGED, () => this.onRowGroupChanged());\n this.addManagedListener(this.eventService, Events63.EVENT_NEW_COLUMNS_LOADED, () => this.onRowGroupChanged());\n this.addManagedPropertyListener(\"rowGroupPanelShow\", () => this.onRowGroupChanged());\n this.addManagedPropertyListener(\"pivotPanelShow\", () => this.onPivotPanelShow());\n this.onRowGroupChanged();\n }\n createNorthPanel() {\n const topPanelGui = document.createElement(\"div\");\n topPanelGui.classList.add(\"ag-column-drop-wrapper\");\n _103.setAriaRole(topPanelGui, \"presentation\");\n this.rowGroupComp = new RowGroupDropZonePanel(true);\n this.createManagedBean(this.rowGroupComp);\n this.pivotComp = new PivotDropZonePanel(true);\n this.createManagedBean(this.pivotComp);\n topPanelGui.appendChild(this.rowGroupComp.getGui());\n topPanelGui.appendChild(this.pivotComp.getGui());\n this.addManagedListener(this.rowGroupComp, Component27.EVENT_DISPLAYED_CHANGED, () => this.onDropPanelVisible());\n this.addManagedListener(this.pivotComp, Component27.EVENT_DISPLAYED_CHANGED, () => this.onDropPanelVisible());\n this.onDropPanelVisible();\n return topPanelGui;\n }\n onDropPanelVisible() {\n const bothDisplayed = this.rowGroupComp.isDisplayed() && this.pivotComp.isDisplayed();\n this.rowGroupComp.addOrRemoveCssClass(\"ag-column-drop-horizontal-half-width\", bothDisplayed);\n this.pivotComp.addOrRemoveCssClass(\"ag-column-drop-horizontal-half-width\", bothDisplayed);\n }\n onRowGroupChanged() {\n if (!this.rowGroupComp) {\n return;\n }\n const rowGroupPanelShow = this.gos.get(\"rowGroupPanelShow\");\n if (rowGroupPanelShow === \"always\") {\n this.rowGroupComp.setDisplayed(true);\n } else if (rowGroupPanelShow === \"onlyWhenGrouping\") {\n const grouping = !this.columnModel.isRowGroupEmpty();\n this.rowGroupComp.setDisplayed(grouping);\n } else {\n this.rowGroupComp.setDisplayed(false);\n }\n }\n onPivotPanelShow() {\n if (!this.pivotComp) {\n return;\n }\n const pivotPanelShow = this.gos.get(\"pivotPanelShow\");\n if (pivotPanelShow === \"always\") {\n this.pivotComp.setDisplayed(true);\n } else if (pivotPanelShow === \"onlyWhenPivoting\") {\n const pivoting = this.columnModel.isPivotActive();\n this.pivotComp.setDisplayed(pivoting);\n } else {\n this.pivotComp.setDisplayed(false);\n }\n }\n};\n__decorateClass6([\n Autowired73(\"columnModel\")\n], GridHeaderDropZones.prototype, \"columnModel\", 2);\n__decorateClass6([\n PostConstruct53\n], GridHeaderDropZones.prototype, \"postConstruct\", 1);\nvar FilterAggregatesStage = class extends BeanStub63 {\n execute(params) {\n const isPivotMode = this.columnModel.isPivotMode();\n const isAggFilterActive = this.filterManager.isAggregateFilterPresent() || this.filterManager.isAggregateQuickFilterPresent();\n const defaultPrimaryColumnPredicate = (params2) => !params2.node.group;\n const defaultSecondaryColumnPredicate = (params2) => params2.node.leafGroup;\n const applyFilterToNode = this.gos.getGroupAggFiltering() || (isPivotMode ? defaultSecondaryColumnPredicate : defaultPrimaryColumnPredicate);\n const { changedPath } = params;\n const preserveChildren = (node, recursive = false) => {\n if (node.childrenAfterFilter) {\n node.childrenAfterAggFilter = node.childrenAfterFilter;\n if (recursive) {\n node.childrenAfterAggFilter.forEach((child) => preserveChildren(child, recursive));\n }\n this.setAllChildrenCount(node);\n }\n if (node.sibling) {\n node.sibling.childrenAfterAggFilter = node.childrenAfterAggFilter;\n }\n };\n const filterChildren = (node) => {\n var _a;\n node.childrenAfterAggFilter = ((_a = node.childrenAfterFilter) == null ? void 0 : _a.filter((child) => {\n var _a2;\n const shouldFilterRow = applyFilterToNode({ node: child });\n if (shouldFilterRow) {\n const doesNodePassFilter = this.filterManager.doesRowPassAggregateFilters({ rowNode: child });\n if (doesNodePassFilter) {\n preserveChildren(child, true);\n return true;\n }\n }\n const hasChildPassed = (_a2 = child.childrenAfterAggFilter) == null ? void 0 : _a2.length;\n return hasChildPassed;\n })) || null;\n this.setAllChildrenCount(node);\n if (node.sibling) {\n node.sibling.childrenAfterAggFilter = node.childrenAfterAggFilter;\n }\n };\n changedPath.forEachChangedNodeDepthFirst(\n isAggFilterActive ? filterChildren : preserveChildren,\n true\n );\n }\n setAllChildrenCountTreeData(rowNode) {\n let allChildrenCount = 0;\n rowNode.childrenAfterAggFilter.forEach((child) => {\n allChildrenCount++;\n allChildrenCount += child.allChildrenCount;\n });\n rowNode.setAllChildrenCount(allChildrenCount);\n }\n setAllChildrenCountGridGrouping(rowNode) {\n let allChildrenCount = 0;\n rowNode.childrenAfterAggFilter.forEach((child) => {\n if (child.group) {\n allChildrenCount += child.allChildrenCount;\n } else {\n allChildrenCount++;\n }\n });\n rowNode.setAllChildrenCount(allChildrenCount);\n }\n setAllChildrenCount(rowNode) {\n if (!rowNode.hasChildren()) {\n rowNode.setAllChildrenCount(null);\n return;\n }\n if (this.gos.get(\"treeData\")) {\n this.setAllChildrenCountTreeData(rowNode);\n } else {\n this.setAllChildrenCountGridGrouping(rowNode);\n }\n }\n};\n__decorateClass6([\n Autowired83(\"filterManager\")\n], FilterAggregatesStage.prototype, \"filterManager\", 2);\n__decorateClass6([\n Autowired83(\"columnModel\")\n], FilterAggregatesStage.prototype, \"columnModel\", 2);\nFilterAggregatesStage = __decorateClass6([\n Bean62(\"filterAggregatesStage\")\n], FilterAggregatesStage);\nvar VERSION6 = \"31.3.2\";\nvar _GroupFilter = class _GroupFilter2 extends TabGuardComp3 {\n constructor() {\n super(\n /* html */\n `\n
\n `\n );\n }\n postConstruct() {\n this.initialiseTabGuard({});\n }\n init(params) {\n this.params = params;\n this.validateParams();\n return this.updateGroups().then(() => {\n this.addManagedListener(this.eventService, Events73.EVENT_COLUMN_ROW_GROUP_CHANGED, () => this.onColumnRowGroupChanged());\n });\n }\n validateParams() {\n const { colDef } = this.params;\n if (colDef.field) {\n _113.warnOnce('Group Column Filter does not work with the colDef property \"field\". This property will be ignored.');\n }\n if (colDef.filterValueGetter) {\n _113.warnOnce('Group Column Filter does not work with the colDef property \"filterValueGetter\". This property will be ignored.');\n }\n if (colDef.filterParams) {\n _113.warnOnce('Group Column Filter does not work with the colDef property \"filterParams\". This property will be ignored.');\n }\n }\n updateGroups() {\n const sourceColumns = this.updateGroupField();\n return this.getUnderlyingFilters(sourceColumns);\n }\n getSourceColumns() {\n this.groupColumn = this.params.column;\n if (this.gos.get(\"treeData\")) {\n _113.warnOnce(\"Group Column Filter does not work with Tree Data enabled. Please disable Tree Data, or use a different filter.\");\n return [];\n }\n const sourceColumns = this.columnModel.getSourceColumnsForGroupColumn(this.groupColumn);\n if (!sourceColumns) {\n _113.warnOnce(\"Group Column Filter only works on group columns. Please use a different filter.\");\n return [];\n }\n return sourceColumns;\n }\n updateGroupField() {\n _113.clearElement(this.eGroupField);\n if (this.eGroupFieldSelect) {\n this.destroyBean(this.eGroupFieldSelect);\n }\n const allSourceColumns = this.getSourceColumns();\n const sourceColumns = allSourceColumns.filter((sourceColumn) => sourceColumn.isFilterAllowed());\n if (!sourceColumns.length) {\n this.selectedColumn = void 0;\n _113.setDisplayed(this.eGroupField, false);\n return null;\n }\n if (allSourceColumns.length === 1) {\n this.selectedColumn = sourceColumns[0];\n _113.setDisplayed(this.eGroupField, false);\n } else {\n if (!this.selectedColumn || !sourceColumns.some((column) => column.getId() === this.selectedColumn.getId())) {\n this.selectedColumn = sourceColumns[0];\n }\n this.createGroupFieldSelectElement(sourceColumns);\n this.eGroupField.appendChild(this.eGroupFieldSelect.getGui());\n this.eGroupField.appendChild(_113.loadTemplate(\n /* html */\n `
`\n ));\n _113.setDisplayed(this.eGroupField, true);\n }\n return sourceColumns;\n }\n createGroupFieldSelectElement(sourceColumns) {\n this.eGroupFieldSelect = this.createManagedBean(new AgSelect5());\n const localeTextFunc = this.localeService.getLocaleTextFunc();\n this.eGroupFieldSelect.setLabel(localeTextFunc(\"groupFilterSelect\", \"Select field:\"));\n this.eGroupFieldSelect.setLabelAlignment(\"top\");\n this.eGroupFieldSelect.addOptions(sourceColumns.map((sourceColumn) => {\n var _a;\n return {\n value: sourceColumn.getId(),\n text: (_a = this.columnModel.getDisplayNameForColumn(sourceColumn, \"groupFilter\", false)) != null ? _a : void 0\n };\n }));\n this.eGroupFieldSelect.setValue(this.selectedColumn.getId());\n this.eGroupFieldSelect.onValueChange((newValue) => this.updateSelectedColumn(newValue));\n this.eGroupFieldSelect.addCssClass(\"ag-group-filter-field-select-wrapper\");\n if (sourceColumns.length === 1) {\n this.eGroupFieldSelect.setDisabled(true);\n }\n }\n getUnderlyingFilters(sourceColumns) {\n if (!sourceColumns) {\n this.filterColumnPairs = void 0;\n this.selectedFilter = void 0;\n this.groupColumn.setFilterActive(false, \"columnRowGroupChanged\");\n return AgPromise3.resolve();\n }\n const filterPromises = [];\n const filterColumnPairs = [];\n sourceColumns.forEach((column) => {\n const filterWrapper = this.filterManager.getOrCreateFilterWrapper(column, \"COLUMN_MENU\");\n if (filterWrapper == null ? void 0 : filterWrapper.filterPromise) {\n filterPromises.push(filterWrapper.filterPromise.then((filter) => {\n if (filter) {\n filterColumnPairs.push({\n filter,\n column\n });\n }\n if (column.getId() === this.selectedColumn.getId()) {\n this.selectedFilter = filter != null ? filter : void 0;\n }\n return filter;\n }));\n }\n });\n return AgPromise3.all(filterPromises).then(() => {\n this.filterColumnPairs = filterColumnPairs;\n this.groupColumn.setFilterActive(this.isFilterActive(), \"columnRowGroupChanged\");\n });\n }\n addUnderlyingFilterElement() {\n var _a, _b;\n _113.clearElement(this.eUnderlyingFilter);\n if (!this.selectedColumn) {\n return AgPromise3.resolve();\n }\n const comp = this.createManagedBean(new FilterWrapperComp(this.selectedColumn, \"COLUMN_MENU\"));\n this.filterWrapperComp = comp;\n if (!comp.hasFilter()) {\n return AgPromise3.resolve();\n }\n this.eUnderlyingFilter.appendChild(comp.getGui());\n return (_b = (_a = comp.getFilter()) == null ? void 0 : _a.then(() => {\n var _a2, _b2;\n (_a2 = comp.afterGuiAttached) == null ? void 0 : _a2.call(comp, this.afterGuiAttachedParams);\n if (!((_b2 = this.afterGuiAttachedParams) == null ? void 0 : _b2.suppressFocus) && this.eGroupFieldSelect && !this.eGroupFieldSelect.isDisabled()) {\n this.eGroupFieldSelect.getFocusableElement().focus();\n }\n })) != null ? _b : AgPromise3.resolve();\n }\n updateSelectedColumn(columnId) {\n var _a;\n if (!columnId) {\n return;\n }\n (_a = this.filterWrapperComp) == null ? void 0 : _a.afterGuiDetached();\n this.destroyBean(this.filterWrapperComp);\n const selectedFilterColumnPair = this.getFilterColumnPair(columnId);\n this.selectedColumn = selectedFilterColumnPair == null ? void 0 : selectedFilterColumnPair.column;\n this.selectedFilter = selectedFilterColumnPair == null ? void 0 : selectedFilterColumnPair.filter;\n this.dispatchEvent({\n type: _GroupFilter2.EVENT_SELECTED_COLUMN_CHANGED\n });\n this.addUnderlyingFilterElement();\n }\n isFilterActive() {\n var _a;\n return !!((_a = this.filterColumnPairs) == null ? void 0 : _a.some(({ filter }) => filter.isFilterActive()));\n }\n doesFilterPass() {\n return true;\n }\n getModel() {\n return null;\n }\n setModel() {\n return AgPromise3.resolve();\n }\n afterGuiAttached(params) {\n this.afterGuiAttachedParams = params;\n this.addUnderlyingFilterElement();\n }\n afterGuiDetached() {\n var _a, _b;\n _113.clearElement(this.eUnderlyingFilter);\n (_b = (_a = this.selectedFilter) == null ? void 0 : _a.afterGuiDetached) == null ? void 0 : _b.call(_a);\n }\n onColumnRowGroupChanged() {\n this.updateGroups().then(() => {\n this.dispatchEvent({\n type: _GroupFilter2.EVENT_COLUMN_ROW_GROUP_CHANGED\n });\n this.eventService.dispatchEvent({\n type: \"filterAllowedUpdated\"\n });\n });\n }\n getFilterColumnPair(columnId) {\n var _a;\n if (!columnId) {\n return void 0;\n }\n return (_a = this.filterColumnPairs) == null ? void 0 : _a.find(({ column }) => column.getId() === columnId);\n }\n getSelectedFilter() {\n return this.selectedFilter;\n }\n getSelectedColumn() {\n return this.selectedColumn;\n }\n isFilterAllowed() {\n return !!this.selectedColumn;\n }\n destroy() {\n super.destroy();\n }\n};\n_GroupFilter.EVENT_COLUMN_ROW_GROUP_CHANGED = \"columnRowGroupChanged\";\n_GroupFilter.EVENT_SELECTED_COLUMN_CHANGED = \"selectedColumnChanged\";\n__decorateClass6([\n Autowired93(\"filterManager\")\n], _GroupFilter.prototype, \"filterManager\", 2);\n__decorateClass6([\n Autowired93(\"columnModel\")\n], _GroupFilter.prototype, \"columnModel\", 2);\n__decorateClass6([\n RefSelector23(\"eGroupField\")\n], _GroupFilter.prototype, \"eGroupField\", 2);\n__decorateClass6([\n RefSelector23(\"eUnderlyingFilter\")\n], _GroupFilter.prototype, \"eUnderlyingFilter\", 2);\n__decorateClass6([\n PostConstruct63\n], _GroupFilter.prototype, \"postConstruct\", 1);\nvar GroupFilter = _GroupFilter;\nvar GroupFloatingFilterComp = class extends Component310 {\n constructor() {\n super(\n /* html */\n `\n
\n `\n );\n this.haveAddedColumnListeners = false;\n }\n init(params) {\n this.params = params;\n const canShowUnderlyingFloatingFilter = this.gos.get(\"groupDisplayType\") === \"multipleColumns\";\n return new AgPromise22((resolve) => {\n this.params.parentFilterInstance((parentFilterInstance) => {\n this.parentFilterInstance = parentFilterInstance;\n if (canShowUnderlyingFloatingFilter) {\n this.setupUnderlyingFloatingFilterElement().then(() => resolve());\n } else {\n this.setupReadOnlyFloatingFilterElement();\n resolve();\n }\n });\n }).then(() => {\n this.addManagedListener(this.parentFilterInstance, GroupFilter.EVENT_SELECTED_COLUMN_CHANGED, () => this.onSelectedColumnChanged());\n this.addManagedListener(this.parentFilterInstance, GroupFilter.EVENT_COLUMN_ROW_GROUP_CHANGED, () => this.onColumnRowGroupChanged());\n });\n }\n onParamsUpdated(params) {\n this.refresh(params);\n }\n refresh(params) {\n this.params = params;\n this.setParams();\n }\n setParams() {\n var _a;\n const displayName = this.columnModel.getDisplayNameForColumn(this.params.column, \"header\", true);\n const translate = this.localeService.getLocaleTextFunc();\n (_a = this.eFloatingFilterText) == null ? void 0 : _a.setInputAriaLabel(`${displayName} ${translate(\"ariaFilterInput\", \"Filter Input\")}`);\n }\n setupReadOnlyFloatingFilterElement() {\n if (!this.eFloatingFilterText) {\n this.eFloatingFilterText = this.createManagedBean(new AgInputTextField2());\n this.eFloatingFilterText.setDisabled(true).addGuiEventListener(\"click\", () => this.params.showParentFilter());\n this.setParams();\n }\n this.updateDisplayedValue();\n this.eFloatingFilter.appendChild(this.eFloatingFilterText.getGui());\n }\n setupUnderlyingFloatingFilterElement() {\n this.showingUnderlyingFloatingFilter = false;\n this.underlyingFloatingFilter = void 0;\n _123.clearElement(this.eFloatingFilter);\n const column = this.parentFilterInstance.getSelectedColumn();\n if (column && !column.isVisible()) {\n const compDetails = this.filterManager.getFloatingFilterCompDetails(column, this.params.showParentFilter);\n if (compDetails) {\n this.compDetails = compDetails;\n if (!this.haveAddedColumnListeners) {\n this.haveAddedColumnListeners = true;\n this.addManagedListener(column, Column11.EVENT_VISIBLE_CHANGED, this.onColumnVisibleChanged.bind(this));\n this.addManagedListener(column, Column11.EVENT_COL_DEF_CHANGED, this.onColDefChanged.bind(this));\n }\n return compDetails.newAgStackInstance().then((floatingFilter) => {\n var _a, _b;\n this.underlyingFloatingFilter = floatingFilter;\n (_b = this.underlyingFloatingFilter) == null ? void 0 : _b.onParentModelChanged((_a = this.parentFilterInstance.getSelectedFilter()) == null ? void 0 : _a.getModel());\n this.appendChild(floatingFilter.getGui());\n this.showingUnderlyingFloatingFilter = true;\n });\n }\n }\n this.setupReadOnlyFloatingFilterElement();\n return AgPromise22.resolve();\n }\n onColumnVisibleChanged() {\n this.setupUnderlyingFloatingFilterElement();\n }\n onColDefChanged(event) {\n var _a, _b, _c;\n if (!event.column) {\n return;\n }\n const compDetails = this.filterManager.getFloatingFilterCompDetails(event.column, this.params.showParentFilter);\n if (compDetails) {\n if ((_a = this.underlyingFloatingFilter) == null ? void 0 : _a.refresh) {\n this.underlyingFloatingFilter.refresh(compDetails.params);\n } else {\n (_c = (_b = this.underlyingFloatingFilter) == null ? void 0 : _b.onParamsUpdated) == null ? void 0 : _c.call(_b, compDetails.params);\n }\n }\n }\n onParentModelChanged(_model, event) {\n var _a, _b;\n if (this.showingUnderlyingFloatingFilter) {\n (_b = this.underlyingFloatingFilter) == null ? void 0 : _b.onParentModelChanged((_a = this.parentFilterInstance.getSelectedFilter()) == null ? void 0 : _a.getModel(), event);\n } else {\n this.updateDisplayedValue();\n }\n }\n updateDisplayedValue() {\n if (!this.parentFilterInstance || !this.eFloatingFilterText) {\n return;\n }\n const selectedFilter = this.parentFilterInstance.getSelectedFilter();\n if (!selectedFilter) {\n this.eFloatingFilterText.setValue(\"\");\n this.eFloatingFilterText.setDisplayed(false);\n return;\n }\n this.eFloatingFilterText.setDisplayed(true);\n if (selectedFilter.getModelAsString) {\n const filterModel = selectedFilter.getModel();\n this.eFloatingFilterText.setValue(filterModel == null ? \"\" : selectedFilter.getModelAsString(filterModel));\n } else {\n this.eFloatingFilterText.setValue(\"\");\n }\n }\n onSelectedColumnChanged() {\n if (!this.showingUnderlyingFloatingFilter) {\n this.updateDisplayedValue();\n }\n }\n onColumnRowGroupChanged() {\n if (!this.showingUnderlyingFloatingFilter) {\n this.updateDisplayedValue();\n }\n }\n destroy() {\n super.destroy();\n }\n};\n__decorateClass6([\n Autowired103(\"columnModel\")\n], GroupFloatingFilterComp.prototype, \"columnModel\", 2);\n__decorateClass6([\n Autowired103(\"filterManager\")\n], GroupFloatingFilterComp.prototype, \"filterManager\", 2);\n__decorateClass6([\n RefSelector34(\"eFloatingFilter\")\n], GroupFloatingFilterComp.prototype, \"eFloatingFilter\", 2);\nvar RowGroupingModule = {\n version: VERSION6,\n moduleName: ModuleNames6.RowGroupingModule,\n beans: [AggregationStage, FilterAggregatesStage, GroupStage, PivotColDefService, PivotStage, AggFuncService],\n agStackComponents: [\n { componentName: \"AgGridHeaderDropZones\", componentClass: GridHeaderDropZones }\n ],\n userComponents: [\n { componentName: \"agGroupColumnFilter\", componentClass: GroupFilter },\n { componentName: \"agGroupColumnFloatingFilter\", componentClass: GroupFloatingFilterComp }\n ],\n dependantModules: [\n EnterpriseCoreModule\n ]\n};\nvar ValuesDropZonePanel = class extends BaseDropZonePanel {\n constructor(horizontal) {\n super(horizontal, \"aggregation\");\n }\n passBeansUp() {\n const localeTextFunc = this.localeService.getLocaleTextFunc();\n const emptyMessage = localeTextFunc(\"valueColumnsEmptyMessage\", \"Drag here to aggregate\");\n const title = localeTextFunc(\"values\", \"Values\");\n super.init({\n icon: _132.createIconNoSpan(\"valuePanel\", this.gos, null),\n emptyMessage,\n title\n });\n this.addManagedListener(this.eventService, Events82.EVENT_COLUMN_VALUE_CHANGED, this.refreshGui.bind(this));\n }\n getAriaLabel() {\n const translate = this.localeService.getLocaleTextFunc();\n const label = translate(\"ariaValuesDropZonePanelLabel\", \"Values\");\n return label;\n }\n getTooltipParams() {\n const res = super.getTooltipParams();\n res.location = \"valueColumnsList\";\n return res;\n }\n getIconName() {\n return this.isPotentialDndItems() ? DragAndDropService42.ICON_AGGREGATE : DragAndDropService42.ICON_NOT_ALLOWED;\n }\n isItemDroppable(column, draggingEvent) {\n if (this.gos.get(\"functionsReadOnly\") || !column.isPrimary()) {\n return false;\n }\n return column.isAllowValue() && (!column.isValueActive() || this.isSourceEventFromTarget(draggingEvent));\n }\n updateItems(columns) {\n if (this.gos.get(\"functionsPassive\")) {\n const event = {\n type: Events82.EVENT_COLUMN_VALUE_CHANGE_REQUEST,\n columns\n };\n this.eventService.dispatchEvent(event);\n } else {\n this.columnModel.setValueColumns(columns, \"toolPanelUi\");\n }\n }\n getExistingItems() {\n return this.columnModel.getValueColumns();\n }\n};\n__decorateClass6([\n PostConstruct73\n], ValuesDropZonePanel.prototype, \"passBeansUp\", 1);\n\n// enterprise-modules/column-tool-panel/dist/package/main.esm.mjs\nimport {\n Component as Component73,\n RefSelector as RefSelector53,\n PositionableFeature\n} from \"ag-grid-community\";\n\n// enterprise-modules/side-bar/dist/package/main.esm.mjs\nimport { ModuleNames as ModuleNames23 } from \"ag-grid-community\";\nimport {\n Autowired as Autowired51,\n Component as Component44,\n PostConstruct as PostConstruct54,\n Events as Events13\n} from \"ag-grid-community\";\nimport {\n _ as _38,\n Component as Component53,\n Events as Events25,\n ModuleNames as ModuleNames7,\n ModuleRegistry as ModuleRegistry2,\n PostConstruct as PostConstruct55,\n RefSelector as RefSelector24,\n Autowired as Autowired411,\n ManagedFocusFeature,\n KeyCode as KeyCode22\n} from \"ag-grid-community\";\nimport {\n Autowired as Autowired211,\n Component as Component311,\n PostConstruct as PostConstruct311,\n PreDestroy as PreDestroy2,\n _ as _210,\n KeyCode as KeyCode7\n} from \"ag-grid-community\";\nimport {\n Component as Component210,\n PostConstruct as PostConstruct211,\n RefSelector as RefSelector16,\n _ as _31\n} from \"ag-grid-community\";\nimport {\n Autowired as Autowired311,\n Component as Component45,\n PostConstruct as PostConstruct411\n} from \"ag-grid-community\";\nimport {\n _ as _45,\n Autowired as Autowired54,\n Bean as Bean10,\n BeanStub as BeanStub17,\n ProvidedColumnGroup\n} from \"ag-grid-community\";\nimport { Bean as Bean26, BeanStub as BeanStub26 } from \"ag-grid-community\";\nvar __defProp7 = Object.defineProperty;\nvar __defProps5 = Object.defineProperties;\nvar __getOwnPropDesc7 = Object.getOwnPropertyDescriptor;\nvar __getOwnPropDescs5 = Object.getOwnPropertyDescriptors;\nvar __getOwnPropSymbols5 = Object.getOwnPropertySymbols;\nvar __hasOwnProp6 = Object.prototype.hasOwnProperty;\nvar __propIsEnum5 = Object.prototype.propertyIsEnumerable;\nvar __defNormalProp5 = (obj, key, value) => key in obj ? __defProp7(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;\nvar __spreadValues5 = (a, b) => {\n for (var prop in b || (b = {}))\n if (__hasOwnProp6.call(b, prop))\n __defNormalProp5(a, prop, b[prop]);\n if (__getOwnPropSymbols5)\n for (var prop of __getOwnPropSymbols5(b)) {\n if (__propIsEnum5.call(b, prop))\n __defNormalProp5(a, prop, b[prop]);\n }\n return a;\n};\nvar __spreadProps5 = (a, b) => __defProps5(a, __getOwnPropDescs5(b));\nvar __decorateClass7 = (decorators, target, key, kind) => {\n var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc7(target, key) : target;\n for (var i = decorators.length - 1, decorator; i >= 0; i--)\n if (decorator = decorators[i])\n result = (kind ? decorator(target, key, result) : decorator(result)) || result;\n if (kind && result)\n __defProp7(target, key, result);\n return result;\n};\nvar HorizontalResizeComp = class extends Component44 {\n constructor() {\n super(\n /* html */\n `
`\n );\n this.minWidth = 100;\n this.maxWidth = null;\n }\n setElementToResize(elementToResize) {\n this.elementToResize = elementToResize;\n }\n postConstruct() {\n const finishedWithResizeFunc = this.horizontalResizeService.addResizeBar({\n eResizeBar: this.getGui(),\n dragStartPixels: 1,\n onResizeStart: this.onResizeStart.bind(this),\n onResizing: this.onResizing.bind(this),\n onResizeEnd: this.onResizeEnd.bind(this)\n });\n this.addDestroyFunc(finishedWithResizeFunc);\n this.setInverted(this.gos.get(\"enableRtl\"));\n }\n dispatchResizeEvent(start, end, width) {\n const event = {\n type: Events13.EVENT_TOOL_PANEL_SIZE_CHANGED,\n width,\n started: start,\n ended: end\n };\n this.eventService.dispatchEvent(event);\n }\n onResizeStart() {\n this.startingWidth = this.elementToResize.offsetWidth;\n this.dispatchResizeEvent(true, false, this.startingWidth);\n }\n onResizeEnd(delta) {\n return this.onResizing(delta, true);\n }\n onResizing(delta, isEnd = false) {\n const direction = this.inverted ? -1 : 1;\n let newWidth = Math.max(this.minWidth, Math.floor(this.startingWidth - delta * direction));\n if (this.maxWidth != null) {\n newWidth = Math.min(this.maxWidth, newWidth);\n }\n this.elementToResize.style.width = `${newWidth}px`;\n this.dispatchResizeEvent(false, isEnd, newWidth);\n }\n setInverted(inverted) {\n this.inverted = inverted;\n }\n setMaxWidth(value) {\n this.maxWidth = value;\n }\n setMinWidth(value) {\n if (value != null) {\n this.minWidth = value;\n } else {\n this.minWidth = 100;\n }\n }\n};\n__decorateClass7([\n Autowired51(\"horizontalResizeService\")\n], HorizontalResizeComp.prototype, \"horizontalResizeService\", 2);\n__decorateClass7([\n PostConstruct54\n], HorizontalResizeComp.prototype, \"postConstruct\", 1);\nvar _SideBarButtonComp = class _SideBarButtonComp2 extends Component210 {\n constructor(toolPanelDef) {\n super();\n this.toolPanelDef = toolPanelDef;\n }\n getToolPanelId() {\n return this.toolPanelDef.id;\n }\n postConstruct() {\n const template = this.createTemplate();\n this.setTemplate(template);\n this.setLabel();\n this.setIcon();\n this.addManagedListener(this.eToggleButton, \"click\", this.onButtonPressed.bind(this));\n this.eToggleButton.setAttribute(\"id\", `ag-${this.getCompId()}-button`);\n }\n createTemplate() {\n const res = (\n /* html */\n `
`\n );\n return res;\n }\n setLabel() {\n const translate = this.localeService.getLocaleTextFunc();\n const def = this.toolPanelDef;\n const label = translate(def.labelKey, def.labelDefault);\n this.eLabel.innerText = label;\n }\n setIcon() {\n this.eIconWrapper.insertAdjacentElement(\"afterbegin\", _31.createIconNoSpan(this.toolPanelDef.iconKey, this.gos));\n }\n onButtonPressed() {\n this.dispatchEvent({ type: _SideBarButtonComp2.EVENT_TOGGLE_BUTTON_CLICKED });\n }\n setSelected(selected) {\n this.addOrRemoveCssClass(\"ag-selected\", selected);\n _31.setAriaExpanded(this.eToggleButton, selected);\n }\n getButtonElement() {\n return this.eToggleButton;\n }\n};\n_SideBarButtonComp.EVENT_TOGGLE_BUTTON_CLICKED = \"toggleButtonClicked\";\n__decorateClass7([\n RefSelector16(\"eToggleButton\")\n], _SideBarButtonComp.prototype, \"eToggleButton\", 2);\n__decorateClass7([\n RefSelector16(\"eIconWrapper\")\n], _SideBarButtonComp.prototype, \"eIconWrapper\", 2);\n__decorateClass7([\n RefSelector16(\"eLabel\")\n], _SideBarButtonComp.prototype, \"eLabel\", 2);\n__decorateClass7([\n PostConstruct211\n], _SideBarButtonComp.prototype, \"postConstruct\", 1);\nvar SideBarButtonComp = _SideBarButtonComp;\nvar _SideBarButtonsComp = class _SideBarButtonsComp2 extends Component311 {\n constructor() {\n super(_SideBarButtonsComp2.TEMPLATE);\n this.buttonComps = [];\n }\n postConstruct() {\n this.addManagedListener(this.getFocusableElement(), \"keydown\", this.handleKeyDown.bind(this));\n }\n handleKeyDown(e) {\n if (e.key !== KeyCode7.TAB || !e.shiftKey) {\n return;\n }\n const lastColumn = _210.last(this.columnModel.getAllDisplayedColumns());\n if (this.focusService.focusGridView(lastColumn, true)) {\n e.preventDefault();\n }\n }\n setActiveButton(id) {\n this.buttonComps.forEach((comp) => {\n comp.setSelected(id === comp.getToolPanelId());\n });\n }\n addButtonComp(def) {\n const buttonComp = this.createBean(new SideBarButtonComp(def));\n this.buttonComps.push(buttonComp);\n this.appendChild(buttonComp);\n buttonComp.addEventListener(SideBarButtonComp.EVENT_TOGGLE_BUTTON_CLICKED, () => {\n this.dispatchEvent({\n type: _SideBarButtonsComp2.EVENT_SIDE_BAR_BUTTON_CLICKED,\n toolPanelId: def.id\n });\n });\n return buttonComp;\n }\n clearButtons() {\n this.buttonComps = this.destroyBeans(this.buttonComps);\n _210.clearElement(this.getGui());\n }\n};\n_SideBarButtonsComp.EVENT_SIDE_BAR_BUTTON_CLICKED = \"sideBarButtonClicked\";\n_SideBarButtonsComp.TEMPLATE = /* html */\n`
`;\n__decorateClass7([\n Autowired211(\"focusService\")\n], _SideBarButtonsComp.prototype, \"focusService\", 2);\n__decorateClass7([\n Autowired211(\"columnModel\")\n], _SideBarButtonsComp.prototype, \"columnModel\", 2);\n__decorateClass7([\n PostConstruct311\n], _SideBarButtonsComp.prototype, \"postConstruct\", 1);\n__decorateClass7([\n PreDestroy2\n], _SideBarButtonsComp.prototype, \"clearButtons\", 1);\nvar SideBarButtonsComp = _SideBarButtonsComp;\nvar _SideBarDefParser = class _SideBarDefParser2 {\n static parse(toParse) {\n if (!toParse) {\n return void 0;\n }\n if (toParse === true) {\n return {\n toolPanels: [\n _SideBarDefParser2.DEFAULT_COLUMN_COMP,\n _SideBarDefParser2.DEFAULT_FILTER_COMP\n ],\n defaultToolPanel: \"columns\"\n };\n }\n if (typeof toParse === \"string\") {\n return _SideBarDefParser2.parse([toParse]);\n }\n if (Array.isArray(toParse)) {\n const comps = [];\n toParse.forEach((key) => {\n const lookupResult = _SideBarDefParser2.DEFAULT_BY_KEY[key];\n if (!lookupResult) {\n console.warn(`AG Grid: the key ${key} is not a valid key for specifying a tool panel, valid keys are: ${Object.keys(_SideBarDefParser2.DEFAULT_BY_KEY).join(\",\")}`);\n return;\n }\n comps.push(lookupResult);\n });\n if (comps.length === 0) {\n return void 0;\n }\n return {\n toolPanels: comps,\n defaultToolPanel: comps[0].id\n };\n }\n const result = {\n toolPanels: _SideBarDefParser2.parseComponents(toParse.toolPanels),\n defaultToolPanel: toParse.defaultToolPanel,\n hiddenByDefault: toParse.hiddenByDefault,\n position: toParse.position\n };\n return result;\n }\n static parseComponents(from) {\n const result = [];\n if (!from) {\n return result;\n }\n from.forEach((it) => {\n let toAdd = null;\n if (typeof it === \"string\") {\n const lookupResult = _SideBarDefParser2.DEFAULT_BY_KEY[it];\n if (!lookupResult) {\n console.warn(`AG Grid: the key ${it} is not a valid key for specifying a tool panel, valid keys are: ${Object.keys(_SideBarDefParser2.DEFAULT_BY_KEY).join(\",\")}`);\n return;\n }\n toAdd = lookupResult;\n } else {\n toAdd = it;\n }\n result.push(toAdd);\n });\n return result;\n }\n};\n_SideBarDefParser.DEFAULT_COLUMN_COMP = {\n id: \"columns\",\n labelDefault: \"Columns\",\n labelKey: \"columns\",\n iconKey: \"columns\",\n toolPanel: \"agColumnsToolPanel\"\n};\n_SideBarDefParser.DEFAULT_FILTER_COMP = {\n id: \"filters\",\n labelDefault: \"Filters\",\n labelKey: \"filters\",\n iconKey: \"filter\",\n toolPanel: \"agFiltersToolPanel\"\n};\n_SideBarDefParser.DEFAULT_BY_KEY = {\n columns: _SideBarDefParser.DEFAULT_COLUMN_COMP,\n filters: _SideBarDefParser.DEFAULT_FILTER_COMP\n};\nvar SideBarDefParser = _SideBarDefParser;\nvar _ToolPanelWrapper = class _ToolPanelWrapper2 extends Component45 {\n constructor() {\n super(_ToolPanelWrapper2.TEMPLATE);\n }\n setupResize() {\n const eGui = this.getGui();\n const resizeBar = this.resizeBar = this.createManagedBean(new HorizontalResizeComp());\n eGui.setAttribute(\"id\", `ag-${this.getCompId()}`);\n resizeBar.setElementToResize(eGui);\n this.appendChild(resizeBar);\n }\n getToolPanelId() {\n return this.toolPanelId;\n }\n setToolPanelDef(toolPanelDef, params) {\n const { id, minWidth, maxWidth, width } = toolPanelDef;\n this.toolPanelId = id;\n this.width = width;\n const compDetails = this.userComponentFactory.getToolPanelCompDetails(toolPanelDef, params);\n const componentPromise = compDetails.newAgStackInstance();\n this.params = compDetails.params;\n if (componentPromise == null) {\n console.warn(`AG Grid: error processing tool panel component ${id}. You need to specify 'toolPanel'`);\n return;\n }\n componentPromise.then(this.setToolPanelComponent.bind(this));\n if (minWidth != null) {\n this.resizeBar.setMinWidth(minWidth);\n }\n if (maxWidth != null) {\n this.resizeBar.setMaxWidth(maxWidth);\n }\n }\n setToolPanelComponent(compInstance) {\n this.toolPanelCompInstance = compInstance;\n this.appendChild(compInstance.getGui());\n this.addDestroyFunc(() => {\n this.destroyBean(compInstance);\n });\n if (this.width) {\n this.getGui().style.width = `${this.width}px`;\n }\n }\n getToolPanelInstance() {\n return this.toolPanelCompInstance;\n }\n setResizerSizerSide(side) {\n const isRtl = this.gos.get(\"enableRtl\");\n const isLeft = side === \"left\";\n const inverted = isRtl ? isLeft : !isLeft;\n this.resizeBar.setInverted(inverted);\n }\n refresh() {\n this.toolPanelCompInstance.refresh(this.params);\n }\n};\n_ToolPanelWrapper.TEMPLATE = /* html */\n`
`;\n__decorateClass7([\n Autowired311(\"userComponentFactory\")\n], _ToolPanelWrapper.prototype, \"userComponentFactory\", 2);\n__decorateClass7([\n PostConstruct411\n], _ToolPanelWrapper.prototype, \"setupResize\", 1);\nvar ToolPanelWrapper = _ToolPanelWrapper;\nvar _SideBarComp = class _SideBarComp2 extends Component53 {\n constructor() {\n super(_SideBarComp2.TEMPLATE);\n this.toolPanelWrappers = [];\n }\n postConstruct() {\n var _a;\n this.sideBarButtonsComp.addEventListener(SideBarButtonsComp.EVENT_SIDE_BAR_BUTTON_CLICKED, this.onToolPanelButtonClicked.bind(this));\n const { sideBar: sideBarState } = (_a = this.gos.get(\"initialState\")) != null ? _a : {};\n this.setSideBarDef({\n sideBarDef: SideBarDefParser.parse(this.gos.get(\"sideBar\")),\n sideBarState\n });\n this.addManagedPropertyListener(\"sideBar\", this.onSideBarUpdated.bind(this));\n this.sideBarService.registerSideBarComp(this);\n this.createManagedBean(new ManagedFocusFeature(\n this.getFocusableElement(),\n {\n onTabKeyDown: this.onTabKeyDown.bind(this),\n handleKeyDown: this.handleKeyDown.bind(this)\n }\n ));\n }\n onTabKeyDown(e) {\n if (e.defaultPrevented) {\n return;\n }\n const { focusService, sideBarButtonsComp } = this;\n const eGui = this.getGui();\n const sideBarGui = sideBarButtonsComp.getGui();\n const activeElement = this.gos.getActiveDomElement();\n const openPanel = eGui.querySelector(\".ag-tool-panel-wrapper:not(.ag-hidden)\");\n const target = e.target;\n if (!openPanel) {\n return;\n }\n if (sideBarGui.contains(activeElement)) {\n if (focusService.focusInto(openPanel, e.shiftKey)) {\n e.preventDefault();\n }\n return;\n }\n if (!e.shiftKey) {\n return;\n }\n let nextEl = null;\n if (openPanel.contains(activeElement)) {\n nextEl = this.focusService.findNextFocusableElement(openPanel, void 0, true);\n } else if (focusService.isTargetUnderManagedComponent(openPanel, target) && e.shiftKey) {\n nextEl = this.focusService.findFocusableElementBeforeTabGuard(openPanel, target);\n }\n if (!nextEl) {\n nextEl = sideBarGui.querySelector(\".ag-selected button\");\n }\n if (nextEl && nextEl !== e.target) {\n e.preventDefault();\n nextEl.focus();\n }\n }\n handleKeyDown(e) {\n const currentButton = this.gos.getActiveDomElement();\n if (!this.sideBarButtonsComp.getGui().contains(currentButton)) {\n return;\n }\n const sideBarGui = this.sideBarButtonsComp.getGui();\n const buttons = Array.prototype.slice.call(sideBarGui.querySelectorAll(\".ag-side-button\"));\n const currentPos = buttons.findIndex((button) => button.contains(currentButton));\n let nextPos = null;\n switch (e.key) {\n case KeyCode22.LEFT:\n case KeyCode22.UP:\n nextPos = Math.max(0, currentPos - 1);\n break;\n case KeyCode22.RIGHT:\n case KeyCode22.DOWN:\n nextPos = Math.min(currentPos + 1, buttons.length - 1);\n break;\n }\n if (nextPos === null) {\n return;\n }\n const innerButton = buttons[nextPos].querySelector(\"button\");\n if (innerButton) {\n innerButton.focus();\n e.preventDefault();\n }\n }\n onToolPanelButtonClicked(event) {\n const id = event.toolPanelId;\n const openedItem = this.openedItem();\n if (openedItem === id) {\n this.openToolPanel(void 0, \"sideBarButtonClicked\");\n } else {\n this.openToolPanel(id, \"sideBarButtonClicked\");\n }\n }\n clearDownUi() {\n this.sideBarButtonsComp.clearButtons();\n this.destroyToolPanelWrappers();\n }\n setSideBarDef({\n sideBarDef,\n sideBarState,\n existingToolPanelWrappers\n }) {\n this.setDisplayed(false);\n this.sideBar = sideBarDef;\n if (!!this.sideBar && !!this.sideBar.toolPanels) {\n const toolPanelDefs = this.sideBar.toolPanels;\n this.createToolPanelsAndSideButtons(toolPanelDefs, sideBarState, existingToolPanelWrappers);\n if (!this.toolPanelWrappers.length) {\n return;\n }\n const shouldDisplaySideBar = sideBarState ? sideBarState.visible : !this.sideBar.hiddenByDefault;\n this.setDisplayed(shouldDisplaySideBar);\n this.setSideBarPosition(sideBarState ? sideBarState.position : this.sideBar.position);\n if (shouldDisplaySideBar) {\n if (sideBarState) {\n const { openToolPanel } = sideBarState;\n if (openToolPanel) {\n this.openToolPanel(openToolPanel, \"sideBarInitializing\");\n }\n } else {\n this.openToolPanel(this.sideBar.defaultToolPanel, \"sideBarInitializing\");\n }\n }\n }\n }\n getDef() {\n return this.sideBar;\n }\n setSideBarPosition(position) {\n if (!position) {\n position = \"right\";\n }\n this.position = position;\n const isLeft = position === \"left\";\n const resizerSide = isLeft ? \"right\" : \"left\";\n this.addOrRemoveCssClass(\"ag-side-bar-left\", isLeft);\n this.addOrRemoveCssClass(\"ag-side-bar-right\", !isLeft);\n this.toolPanelWrappers.forEach((wrapper) => {\n wrapper.setResizerSizerSide(resizerSide);\n });\n this.eventService.dispatchEvent({ type: Events25.EVENT_SIDE_BAR_UPDATED });\n return this;\n }\n setDisplayed(displayed, options) {\n super.setDisplayed(displayed, options);\n this.eventService.dispatchEvent({ type: Events25.EVENT_SIDE_BAR_UPDATED });\n }\n getState() {\n const toolPanels = {};\n this.toolPanelWrappers.forEach((wrapper) => {\n var _a, _b;\n toolPanels[wrapper.getToolPanelId()] = (_b = (_a = wrapper.getToolPanelInstance()) == null ? void 0 : _a.getState) == null ? void 0 : _b.call(_a);\n });\n return {\n visible: this.isDisplayed(),\n position: this.position,\n openToolPanel: this.openedItem(),\n toolPanels\n };\n }\n createToolPanelsAndSideButtons(defs, sideBarState, existingToolPanelWrappers) {\n var _a;\n for (const def of defs) {\n this.createToolPanelAndSideButton(def, (_a = sideBarState == null ? void 0 : sideBarState.toolPanels) == null ? void 0 : _a[def.id], existingToolPanelWrappers == null ? void 0 : existingToolPanelWrappers[def.id]);\n }\n }\n validateDef(def) {\n if (def.id == null) {\n console.warn(`AG Grid: please review all your toolPanel components, it seems like at least one of them doesn't have an id`);\n return false;\n }\n if (def.toolPanel === \"agColumnsToolPanel\") {\n const moduleMissing = !ModuleRegistry2.__assertRegistered(ModuleNames7.ColumnsToolPanelModule, \"Column Tool Panel\", this.context.getGridId());\n if (moduleMissing) {\n return false;\n }\n }\n if (def.toolPanel === \"agFiltersToolPanel\") {\n const moduleMissing = !ModuleRegistry2.__assertRegistered(ModuleNames7.FiltersToolPanelModule, \"Filters Tool Panel\", this.context.getGridId());\n if (moduleMissing) {\n return false;\n }\n if (this.filterManager.isAdvancedFilterEnabled()) {\n _38.warnOnce(\"Advanced Filter does not work with Filters Tool Panel. Filters Tool Panel has been disabled.\");\n return false;\n }\n }\n return true;\n }\n createToolPanelAndSideButton(def, initialState, existingToolPanelWrapper) {\n if (!this.validateDef(def)) {\n return;\n }\n const button = this.sideBarButtonsComp.addButtonComp(def);\n let wrapper;\n if (existingToolPanelWrapper) {\n wrapper = existingToolPanelWrapper;\n } else {\n wrapper = this.getContext().createBean(new ToolPanelWrapper());\n wrapper.setToolPanelDef(def, {\n initialState,\n onStateUpdated: () => this.eventService.dispatchEvent({ type: Events25.EVENT_SIDE_BAR_UPDATED })\n });\n }\n wrapper.setDisplayed(false);\n const wrapperGui = wrapper.getGui();\n this.appendChild(wrapperGui);\n this.toolPanelWrappers.push(wrapper);\n _38.setAriaControls(button.getButtonElement(), wrapperGui);\n }\n refresh() {\n this.toolPanelWrappers.forEach((wrapper) => wrapper.refresh());\n }\n openToolPanel(key, source = \"api\") {\n const currentlyOpenedKey = this.openedItem();\n if (currentlyOpenedKey === key) {\n return;\n }\n this.toolPanelWrappers.forEach((wrapper) => {\n const show = key === wrapper.getToolPanelId();\n wrapper.setDisplayed(show);\n });\n const newlyOpenedKey = this.openedItem();\n const openToolPanelChanged = currentlyOpenedKey !== newlyOpenedKey;\n if (openToolPanelChanged) {\n this.sideBarButtonsComp.setActiveButton(key);\n this.raiseToolPanelVisibleEvent(key, currentlyOpenedKey != null ? currentlyOpenedKey : void 0, source);\n }\n }\n getToolPanelInstance(key) {\n const toolPanelWrapper = this.toolPanelWrappers.filter((toolPanel) => toolPanel.getToolPanelId() === key)[0];\n if (!toolPanelWrapper) {\n console.warn(`AG Grid: unable to lookup Tool Panel as invalid key supplied: ${key}`);\n return;\n }\n return toolPanelWrapper.getToolPanelInstance();\n }\n raiseToolPanelVisibleEvent(key, previousKey, source) {\n const switchingToolPanel = !!key && !!previousKey;\n if (previousKey) {\n const event = {\n type: Events25.EVENT_TOOL_PANEL_VISIBLE_CHANGED,\n source,\n key: previousKey,\n visible: false,\n switchingToolPanel\n };\n this.eventService.dispatchEvent(event);\n }\n if (key) {\n const event = {\n type: Events25.EVENT_TOOL_PANEL_VISIBLE_CHANGED,\n source,\n key,\n visible: true,\n switchingToolPanel\n };\n this.eventService.dispatchEvent(event);\n }\n }\n close(source = \"api\") {\n this.openToolPanel(void 0, source);\n }\n isToolPanelShowing() {\n return !!this.openedItem();\n }\n openedItem() {\n let activeToolPanel = null;\n this.toolPanelWrappers.forEach((wrapper) => {\n if (wrapper.isDisplayed()) {\n activeToolPanel = wrapper.getToolPanelId();\n }\n });\n return activeToolPanel;\n }\n onSideBarUpdated() {\n var _a;\n const sideBarDef = SideBarDefParser.parse(this.gos.get(\"sideBar\"));\n let existingToolPanelWrappers = {};\n if (sideBarDef && this.sideBar) {\n (_a = sideBarDef.toolPanels) == null ? void 0 : _a.forEach((toolPanelDef) => {\n var _a2, _b;\n const { id } = toolPanelDef;\n if (!id) {\n return;\n }\n const existingToolPanelDef = (_a2 = this.sideBar.toolPanels) == null ? void 0 : _a2.find(\n (toolPanelDefToCheck) => toolPanelDefToCheck.id === id\n );\n if (!existingToolPanelDef || toolPanelDef.toolPanel !== existingToolPanelDef.toolPanel) {\n return;\n }\n const toolPanelWrapper = this.toolPanelWrappers.find((toolPanel) => toolPanel.getToolPanelId() === id);\n if (!toolPanelWrapper) {\n return;\n }\n const params = this.gos.addGridCommonParams(__spreadProps5(__spreadValues5({}, (_b = toolPanelDef.toolPanelParams) != null ? _b : {}), {\n onStateUpdated: () => this.eventService.dispatchEvent({ type: Events25.EVENT_SIDE_BAR_UPDATED })\n }));\n const hasRefreshed = toolPanelWrapper.getToolPanelInstance().refresh(params);\n if (hasRefreshed !== true) {\n return;\n }\n this.toolPanelWrappers = this.toolPanelWrappers.filter((toolPanel) => toolPanel !== toolPanelWrapper);\n _38.removeFromParent(toolPanelWrapper.getGui());\n existingToolPanelWrappers[id] = toolPanelWrapper;\n });\n }\n this.clearDownUi();\n this.setSideBarDef({ sideBarDef, existingToolPanelWrappers });\n }\n destroyToolPanelWrappers() {\n this.toolPanelWrappers.forEach((wrapper) => {\n _38.removeFromParent(wrapper.getGui());\n this.destroyBean(wrapper);\n });\n this.toolPanelWrappers.length = 0;\n }\n destroy() {\n this.destroyToolPanelWrappers();\n super.destroy();\n }\n};\n_SideBarComp.TEMPLATE = /* html */\n`
`;\n__decorateClass7([\n Autowired411(\"focusService\")\n], _SideBarComp.prototype, \"focusService\", 2);\n__decorateClass7([\n Autowired411(\"filterManager\")\n], _SideBarComp.prototype, \"filterManager\", 2);\n__decorateClass7([\n Autowired411(\"sideBarService\")\n], _SideBarComp.prototype, \"sideBarService\", 2);\n__decorateClass7([\n RefSelector24(\"sideBarButtons\")\n], _SideBarComp.prototype, \"sideBarButtonsComp\", 2);\n__decorateClass7([\n PostConstruct55\n], _SideBarComp.prototype, \"postConstruct\", 1);\nvar SideBarComp = _SideBarComp;\nvar ToolPanelColDefService = class extends BeanStub17 {\n constructor() {\n super(...arguments);\n this.isColGroupDef = (colDef) => colDef && typeof colDef.children !== \"undefined\";\n this.getId = (colDef) => {\n return this.isColGroupDef(colDef) ? colDef.groupId : colDef.colId;\n };\n }\n createColumnTree(colDefs) {\n const invalidColIds = [];\n const createDummyColGroup = (abstractColDef, depth) => {\n if (this.isColGroupDef(abstractColDef)) {\n const groupDef = abstractColDef;\n const groupId = typeof groupDef.groupId !== \"undefined\" ? groupDef.groupId : groupDef.headerName;\n const group = new ProvidedColumnGroup(groupDef, groupId, false, depth);\n const children = [];\n groupDef.children.forEach((def) => {\n const child = createDummyColGroup(def, depth + 1);\n if (child) {\n children.push(child);\n }\n });\n group.setChildren(children);\n return group;\n } else {\n const colDef = abstractColDef;\n const key = colDef.colId ? colDef.colId : colDef.field;\n const column = this.columnModel.getPrimaryColumn(key);\n if (!column) {\n invalidColIds.push(colDef);\n }\n return column;\n }\n };\n const mappedResults = [];\n colDefs.forEach((colDef) => {\n const result = createDummyColGroup(colDef, 0);\n if (result) {\n mappedResults.push(result);\n }\n });\n if (invalidColIds.length > 0) {\n console.warn(\"AG Grid: unable to find grid columns for the supplied colDef(s):\", invalidColIds);\n }\n return mappedResults;\n }\n syncLayoutWithGrid(syncLayoutCallback) {\n const leafPathTrees = this.getLeafPathTrees();\n const mergedColumnTrees = this.mergeLeafPathTrees(leafPathTrees);\n syncLayoutCallback(mergedColumnTrees);\n }\n getLeafPathTrees() {\n const getLeafPathTree = (node, childDef) => {\n let leafPathTree;\n if (node instanceof ProvidedColumnGroup) {\n if (node.isPadding()) {\n leafPathTree = childDef;\n } else {\n const groupDef = Object.assign({}, node.getColGroupDef());\n groupDef.groupId = node.getGroupId();\n groupDef.children = [childDef];\n leafPathTree = groupDef;\n }\n } else {\n const colDef = Object.assign({}, node.getColDef());\n colDef.colId = node.getColId();\n leafPathTree = colDef;\n }\n const parent = node.getOriginalParent();\n if (parent) {\n return getLeafPathTree(parent, leafPathTree);\n } else {\n return leafPathTree;\n }\n };\n const allGridColumns = this.columnModel.getAllGridColumns();\n const allPrimaryGridColumns = allGridColumns.filter((column) => {\n const colDef = column.getColDef();\n return column.isPrimary() && !colDef.showRowGroup;\n });\n return allPrimaryGridColumns.map((col) => getLeafPathTree(col, col.getColDef()));\n }\n mergeLeafPathTrees(leafPathTrees) {\n const matchingRootGroupIds = (pathA, pathB) => {\n const bothPathsAreGroups = this.isColGroupDef(pathA) && this.isColGroupDef(pathB);\n return bothPathsAreGroups && this.getId(pathA) === this.getId(pathB);\n };\n const mergeTrees = (treeA, treeB) => {\n if (!this.isColGroupDef(treeB)) {\n return treeA;\n }\n const mergeResult = treeA;\n const groupToMerge = treeB;\n if (groupToMerge.children && groupToMerge.groupId) {\n const added = this.addChildrenToGroup(mergeResult, groupToMerge.groupId, groupToMerge.children[0]);\n if (added) {\n return mergeResult;\n }\n }\n groupToMerge.children.forEach((child) => mergeTrees(mergeResult, child));\n return mergeResult;\n };\n const mergeColDefs = [];\n for (let i = 1; i <= leafPathTrees.length; i++) {\n const first = leafPathTrees[i - 1];\n const second = leafPathTrees[i];\n if (matchingRootGroupIds(first, second)) {\n leafPathTrees[i] = mergeTrees(first, second);\n } else {\n mergeColDefs.push(first);\n }\n }\n return mergeColDefs;\n }\n addChildrenToGroup(tree, groupId, colDef) {\n const subGroupIsSplit = (currentSubGroup, currentSubGroupToAdd) => {\n const existingChildIds = currentSubGroup.children.map(this.getId);\n const childGroupAlreadyExists = _45.includes(existingChildIds, this.getId(currentSubGroupToAdd));\n const lastChild = _45.last(currentSubGroup.children);\n const lastChildIsDifferent = lastChild && this.getId(lastChild) !== this.getId(currentSubGroupToAdd);\n return childGroupAlreadyExists && lastChildIsDifferent;\n };\n if (!this.isColGroupDef(tree)) {\n return true;\n }\n const currentGroup = tree;\n const groupToAdd = colDef;\n if (subGroupIsSplit(currentGroup, groupToAdd)) {\n currentGroup.children.push(groupToAdd);\n return true;\n }\n if (currentGroup.groupId === groupId) {\n const existingChildIds = currentGroup.children.map(this.getId);\n const colDefAlreadyPresent = _45.includes(existingChildIds, this.getId(groupToAdd));\n if (!colDefAlreadyPresent) {\n currentGroup.children.push(groupToAdd);\n return true;\n }\n }\n currentGroup.children.forEach((subGroup) => this.addChildrenToGroup(subGroup, groupId, colDef));\n return false;\n }\n};\n__decorateClass7([\n Autowired54(\"columnModel\")\n], ToolPanelColDefService.prototype, \"columnModel\", 2);\nToolPanelColDefService = __decorateClass7([\n Bean10(\"toolPanelColDefService\")\n], ToolPanelColDefService);\nvar VERSION7 = \"31.3.2\";\nvar SideBarService = class extends BeanStub26 {\n registerSideBarComp(sideBarComp) {\n this.sideBarComp = sideBarComp;\n }\n getSideBarComp() {\n return this.sideBarComp;\n }\n};\nSideBarService = __decorateClass7([\n Bean26(\"sideBarService\")\n], SideBarService);\nvar SideBarModule = {\n version: VERSION7,\n moduleName: ModuleNames23.SideBarModule,\n beans: [ToolPanelColDefService, SideBarService],\n agStackComponents: [\n { componentName: \"AgHorizontalResize\", componentClass: HorizontalResizeComp },\n { componentName: \"AgSideBar\", componentClass: SideBarComp },\n { componentName: \"AgSideBarButtons\", componentClass: SideBarButtonsComp }\n ],\n dependantModules: [\n EnterpriseCoreModule\n ]\n};\n\n// enterprise-modules/column-tool-panel/dist/package/main.esm.mjs\nimport {\n Events as Events83,\n Bean as Bean11,\n Autowired as Autowired84,\n _ as _84\n} from \"ag-grid-community\";\nvar __defProp8 = Object.defineProperty;\nvar __getOwnPropDesc8 = Object.getOwnPropertyDescriptor;\nvar __getOwnPropSymbols6 = Object.getOwnPropertySymbols;\nvar __hasOwnProp7 = Object.prototype.hasOwnProperty;\nvar __propIsEnum6 = Object.prototype.propertyIsEnumerable;\nvar __defNormalProp6 = (obj, key, value) => key in obj ? __defProp8(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;\nvar __spreadValues6 = (a, b) => {\n for (var prop in b || (b = {}))\n if (__hasOwnProp7.call(b, prop))\n __defNormalProp6(a, prop, b[prop]);\n if (__getOwnPropSymbols6)\n for (var prop of __getOwnPropSymbols6(b)) {\n if (__propIsEnum6.call(b, prop))\n __defNormalProp6(a, prop, b[prop]);\n }\n return a;\n};\nvar __decorateClass8 = (decorators, target, key, kind) => {\n var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc8(target, key) : target;\n for (var i = decorators.length - 1, decorator; i >= 0; i--)\n if (decorator = decorators[i])\n result = (kind ? decorator(target, key, result) : decorator(result)) || result;\n if (kind && result)\n __defProp8(target, key, result);\n return result;\n};\nvar _PrimaryColsHeaderPanel = class _PrimaryColsHeaderPanel2 extends Component46 {\n constructor() {\n super(_PrimaryColsHeaderPanel2.TEMPLATE);\n }\n postConstruct() {\n this.createExpandIcons();\n this.addManagedListener(this.eExpand, \"click\", this.onExpandClicked.bind(this));\n this.addManagedListener(this.eExpand, \"keydown\", (e) => {\n if (e.key === KeyCode8.SPACE) {\n e.preventDefault();\n this.onExpandClicked();\n }\n });\n this.addManagedListener(this.eSelect.getInputElement(), \"click\", this.onSelectClicked.bind(this));\n this.addManagedPropertyListener(\"functionsReadOnly\", () => this.onFunctionsReadOnlyPropChanged());\n this.eFilterTextField.setAutoComplete(false).onValueChange(() => this.onFilterTextChanged());\n this.addManagedListener(\n this.eFilterTextField.getInputElement(),\n \"keydown\",\n this.onMiniFilterKeyDown.bind(this)\n );\n this.addManagedListener(this.eventService, Events14.EVENT_NEW_COLUMNS_LOADED, this.showOrHideOptions.bind(this));\n const translate = this.localeService.getLocaleTextFunc();\n this.eSelect.setInputAriaLabel(translate(\"ariaColumnSelectAll\", \"Toggle Select All Columns\"));\n this.eFilterTextField.setInputAriaLabel(translate(\"ariaFilterColumnsInput\", \"Filter Columns Input\"));\n this.activateTabIndex([this.eExpand]);\n }\n onFunctionsReadOnlyPropChanged() {\n const readOnly = this.gos.get(\"functionsReadOnly\");\n this.eSelect.setReadOnly(readOnly);\n this.eSelect.addOrRemoveCssClass(\"ag-column-select-column-readonly\", readOnly);\n }\n init(params) {\n this.params = params;\n const readOnly = this.gos.get(\"functionsReadOnly\");\n this.eSelect.setReadOnly(readOnly);\n this.eSelect.addOrRemoveCssClass(\"ag-column-select-column-readonly\", readOnly);\n if (this.columnModel.isReady()) {\n this.showOrHideOptions();\n }\n }\n createExpandIcons() {\n this.eExpand.appendChild(this.eExpandChecked = _39.createIconNoSpan(\"columnSelectOpen\", this.gos));\n this.eExpand.appendChild(this.eExpandUnchecked = _39.createIconNoSpan(\"columnSelectClosed\", this.gos));\n this.eExpand.appendChild(this.eExpandIndeterminate = _39.createIconNoSpan(\"columnSelectIndeterminate\", this.gos));\n this.setExpandState(\n 0\n /* EXPANDED */\n );\n }\n // we only show expand / collapse if we are showing columns\n showOrHideOptions() {\n const showFilter = !this.params.suppressColumnFilter;\n const showSelect = !this.params.suppressColumnSelectAll;\n const showExpand = !this.params.suppressColumnExpandAll;\n const groupsPresent = this.columnModel.isPrimaryColumnGroupsPresent();\n const translate = this.localeService.getLocaleTextFunc();\n this.eFilterTextField.setInputPlaceholder(translate(\"searchOoo\", \"Search...\"));\n _39.setDisplayed(this.eFilterTextField.getGui(), showFilter);\n _39.setDisplayed(this.eSelect.getGui(), showSelect);\n _39.setDisplayed(this.eExpand, showExpand && groupsPresent);\n }\n onFilterTextChanged() {\n if (!this.onFilterTextChangedDebounced) {\n this.onFilterTextChangedDebounced = _39.debounce(() => {\n const filterText = this.eFilterTextField.getValue();\n this.dispatchEvent({ type: \"filterChanged\", filterText });\n }, _PrimaryColsHeaderPanel2.DEBOUNCE_DELAY);\n }\n this.onFilterTextChangedDebounced();\n }\n onMiniFilterKeyDown(e) {\n if (e.key === KeyCode8.ENTER) {\n setTimeout(() => this.onSelectClicked(), _PrimaryColsHeaderPanel2.DEBOUNCE_DELAY);\n }\n }\n onSelectClicked() {\n this.dispatchEvent({ type: this.selectState ? \"unselectAll\" : \"selectAll\" });\n }\n onExpandClicked() {\n this.dispatchEvent({ type: this.expandState === 0 ? \"collapseAll\" : \"expandAll\" });\n }\n setExpandState(state) {\n this.expandState = state;\n _39.setDisplayed(\n this.eExpandChecked,\n this.expandState === 0\n /* EXPANDED */\n );\n _39.setDisplayed(\n this.eExpandUnchecked,\n this.expandState === 1\n /* COLLAPSED */\n );\n _39.setDisplayed(\n this.eExpandIndeterminate,\n this.expandState === 2\n /* INDETERMINATE */\n );\n }\n setSelectionState(state) {\n this.selectState = state;\n this.eSelect.setValue(this.selectState);\n }\n};\n_PrimaryColsHeaderPanel.DEBOUNCE_DELAY = 300;\n_PrimaryColsHeaderPanel.TEMPLATE = /* html */\n`
`;\n__decorateClass8([\n Autowired55(\"columnModel\")\n], _PrimaryColsHeaderPanel.prototype, \"columnModel\", 2);\n__decorateClass8([\n RefSelector17(\"eExpand\")\n], _PrimaryColsHeaderPanel.prototype, \"eExpand\", 2);\n__decorateClass8([\n RefSelector17(\"eSelect\")\n], _PrimaryColsHeaderPanel.prototype, \"eSelect\", 2);\n__decorateClass8([\n RefSelector17(\"eFilterTextField\")\n], _PrimaryColsHeaderPanel.prototype, \"eFilterTextField\", 2);\n__decorateClass8([\n PostConstruct56\n], _PrimaryColsHeaderPanel.prototype, \"postConstruct\", 1);\nvar PrimaryColsHeaderPanel = _PrimaryColsHeaderPanel;\nvar _ColumnModelItem = class _ColumnModelItem2 {\n constructor(displayName, columnOrGroup, dept, group = false, expanded) {\n this.eventService = new EventService();\n this.displayName = displayName;\n this.dept = dept;\n this.group = group;\n if (group) {\n this.columnGroup = columnOrGroup;\n this.expanded = expanded;\n this.children = [];\n } else {\n this.column = columnOrGroup;\n }\n }\n isGroup() {\n return this.group;\n }\n getDisplayName() {\n return this.displayName;\n }\n getColumnGroup() {\n return this.columnGroup;\n }\n getColumn() {\n return this.column;\n }\n getDept() {\n return this.dept;\n }\n isExpanded() {\n return !!this.expanded;\n }\n getChildren() {\n return this.children;\n }\n isPassesFilter() {\n return this.passesFilter;\n }\n setExpanded(expanded) {\n if (expanded === this.expanded) {\n return;\n }\n this.expanded = expanded;\n this.eventService.dispatchEvent({ type: _ColumnModelItem2.EVENT_EXPANDED_CHANGED });\n }\n setPassesFilter(passesFilter) {\n this.passesFilter = passesFilter;\n }\n addEventListener(eventType, listener) {\n this.eventService.addEventListener(eventType, listener);\n }\n removeEventListener(eventType, listener) {\n this.eventService.removeEventListener(eventType, listener);\n }\n};\n_ColumnModelItem.EVENT_EXPANDED_CHANGED = \"expandedChanged\";\nvar ColumnModelItem = _ColumnModelItem;\nvar ToolPanelContextMenu = class extends Component211 {\n constructor(column, mouseEvent, parentEl) {\n super(\n /* html */\n ``\n );\n this.column = column;\n this.mouseEvent = mouseEvent;\n this.parentEl = parentEl;\n this.displayName = null;\n }\n postConstruct() {\n this.initializeProperties(this.column);\n this.buildMenuItemMap();\n if (this.column instanceof Column2) {\n this.displayName = this.columnModel.getDisplayNameForColumn(this.column, \"columnToolPanel\");\n } else {\n this.displayName = this.columnModel.getDisplayNameForProvidedColumnGroup(null, this.column, \"columnToolPanel\");\n }\n if (this.isActive()) {\n this.mouseEvent.preventDefault();\n const menuItemsMapped = this.getMappedMenuItems();\n if (menuItemsMapped.length === 0) {\n return;\n }\n this.displayContextMenu(menuItemsMapped);\n }\n }\n initializeProperties(column) {\n if (column instanceof ProvidedColumnGroup2) {\n this.columns = column.getLeafColumns();\n } else {\n this.columns = [column];\n }\n this.allowGrouping = this.columns.some((col) => col.isPrimary() && col.isAllowRowGroup());\n this.allowValues = this.columns.some((col) => col.isPrimary() && col.isAllowValue());\n this.allowPivoting = this.columnModel.isPivotMode() && this.columns.some((col) => col.isPrimary() && col.isAllowPivot());\n }\n buildMenuItemMap() {\n const localeTextFunc = this.localeService.getLocaleTextFunc();\n this.menuItemMap = /* @__PURE__ */ new Map();\n this.menuItemMap.set(\"rowGroup\", {\n allowedFunction: (col) => col.isPrimary() && col.isAllowRowGroup() && !this.columnModel.isColumnGroupingLocked(col),\n activeFunction: (col) => col.isRowGroupActive(),\n activateLabel: () => `${localeTextFunc(\"groupBy\", \"Group by\")} ${this.displayName}`,\n deactivateLabel: () => `${localeTextFunc(\"ungroupBy\", \"Un-Group by\")} ${this.displayName}`,\n activateFunction: () => {\n const groupedColumns = this.columnModel.getRowGroupColumns();\n this.columnModel.setRowGroupColumns(this.addColumnsToList(groupedColumns), \"toolPanelUi\");\n },\n deActivateFunction: () => {\n const groupedColumns = this.columnModel.getRowGroupColumns();\n this.columnModel.setRowGroupColumns(this.removeColumnsFromList(groupedColumns), \"toolPanelUi\");\n },\n addIcon: \"menuAddRowGroup\",\n removeIcon: \"menuRemoveRowGroup\"\n });\n this.menuItemMap.set(\"value\", {\n allowedFunction: (col) => col.isPrimary() && col.isAllowValue(),\n activeFunction: (col) => col.isValueActive(),\n activateLabel: () => localeTextFunc(\"addToValues\", `Add ${this.displayName} to values`, [this.displayName]),\n deactivateLabel: () => localeTextFunc(\"removeFromValues\", `Remove ${this.displayName} from values`, [this.displayName]),\n activateFunction: () => {\n const valueColumns = this.columnModel.getValueColumns();\n this.columnModel.setValueColumns(this.addColumnsToList(valueColumns), \"toolPanelUi\");\n },\n deActivateFunction: () => {\n const valueColumns = this.columnModel.getValueColumns();\n this.columnModel.setValueColumns(this.removeColumnsFromList(valueColumns), \"toolPanelUi\");\n },\n addIcon: \"valuePanel\",\n removeIcon: \"valuePanel\"\n });\n this.menuItemMap.set(\"pivot\", {\n allowedFunction: (col) => this.columnModel.isPivotMode() && col.isPrimary() && col.isAllowPivot(),\n activeFunction: (col) => col.isPivotActive(),\n activateLabel: () => localeTextFunc(\"addToLabels\", `Add ${this.displayName} to labels`, [this.displayName]),\n deactivateLabel: () => localeTextFunc(\"removeFromLabels\", `Remove ${this.displayName} from labels`, [this.displayName]),\n activateFunction: () => {\n const pivotColumns = this.columnModel.getPivotColumns();\n this.columnModel.setPivotColumns(this.addColumnsToList(pivotColumns), \"toolPanelUi\");\n },\n deActivateFunction: () => {\n const pivotColumns = this.columnModel.getPivotColumns();\n this.columnModel.setPivotColumns(this.removeColumnsFromList(pivotColumns), \"toolPanelUi\");\n },\n addIcon: \"pivotPanel\",\n removeIcon: \"pivotPanel\"\n });\n }\n addColumnsToList(columnList) {\n return [...columnList].concat(this.columns.filter((col) => columnList.indexOf(col) === -1));\n }\n removeColumnsFromList(columnList) {\n return columnList.filter((col) => this.columns.indexOf(col) === -1);\n }\n displayContextMenu(menuItemsMapped) {\n const eGui = this.getGui();\n const menuList = this.createBean(new AgMenuList2());\n const localeTextFunc = this.localeService.getLocaleTextFunc();\n let hideFunc = () => {\n };\n eGui.appendChild(menuList.getGui());\n menuList.addMenuItems(menuItemsMapped);\n menuList.addManagedListener(menuList, AgMenuItemComponent2.EVENT_CLOSE_MENU, () => {\n this.parentEl.focus();\n hideFunc();\n });\n const addPopupRes = this.popupService.addPopup({\n modal: true,\n eChild: eGui,\n closeOnEsc: true,\n afterGuiAttached: () => this.focusService.focusInto(menuList.getGui()),\n ariaLabel: localeTextFunc(\"ariaLabelContextMenu\", \"Context Menu\"),\n closedCallback: (e) => {\n if (e instanceof KeyboardEvent) {\n this.parentEl.focus();\n }\n this.destroyBean(menuList);\n }\n });\n if (addPopupRes) {\n hideFunc = addPopupRes.hideFunc;\n }\n this.popupService.positionPopupUnderMouseEvent({\n type: \"columnContextMenu\",\n mouseEvent: this.mouseEvent,\n ePopup: eGui\n });\n }\n isActive() {\n return this.allowGrouping || this.allowValues || this.allowPivoting;\n }\n getMappedMenuItems() {\n const ret = [];\n for (const val of this.menuItemMap.values()) {\n const isInactive = this.columns.some((col) => val.allowedFunction(col) && !val.activeFunction(col));\n const isActive = this.columns.some((col) => val.allowedFunction(col) && val.activeFunction(col));\n if (isInactive) {\n ret.push({\n name: val.activateLabel(this.displayName),\n icon: _211.createIconNoSpan(val.addIcon, this.gos, null),\n action: () => val.activateFunction()\n });\n }\n if (isActive) {\n ret.push({\n name: val.deactivateLabel(this.displayName),\n icon: _211.createIconNoSpan(val.removeIcon, this.gos, null),\n action: () => val.deActivateFunction()\n });\n }\n }\n return ret;\n }\n};\n__decorateClass8([\n Autowired212(\"columnModel\")\n], ToolPanelContextMenu.prototype, \"columnModel\", 2);\n__decorateClass8([\n Autowired212(\"popupService\")\n], ToolPanelContextMenu.prototype, \"popupService\", 2);\n__decorateClass8([\n Autowired212(\"focusService\")\n], ToolPanelContextMenu.prototype, \"focusService\", 2);\n__decorateClass8([\n PostConstruct212\n], ToolPanelContextMenu.prototype, \"postConstruct\", 1);\nvar _ToolPanelColumnGroupComp = class _ToolPanelColumnGroupComp2 extends Component312 {\n constructor(modelItem, allowDragging, eventType, focusWrapper) {\n super();\n this.modelItem = modelItem;\n this.allowDragging = allowDragging;\n this.eventType = eventType;\n this.focusWrapper = focusWrapper;\n this.processingColumnStateChange = false;\n this.modelItem = modelItem;\n this.columnGroup = modelItem.getColumnGroup();\n this.columnDept = modelItem.getDept();\n this.displayName = modelItem.getDisplayName();\n this.allowDragging = allowDragging;\n }\n init() {\n this.setTemplate(_ToolPanelColumnGroupComp2.TEMPLATE);\n this.eDragHandle = _310.createIconNoSpan(\"columnDrag\", this.gos);\n this.eDragHandle.classList.add(\"ag-drag-handle\", \"ag-column-select-column-group-drag-handle\");\n const checkboxGui = this.cbSelect.getGui();\n const checkboxInput = this.cbSelect.getInputElement();\n checkboxGui.insertAdjacentElement(\"afterend\", this.eDragHandle);\n checkboxInput.setAttribute(\"tabindex\", \"-1\");\n this.eLabel.innerHTML = this.displayName ? this.displayName : \"\";\n this.setupExpandContract();\n this.addCssClass(\"ag-column-select-indent-\" + this.columnDept);\n this.addManagedListener(this.eventService, Events26.EVENT_COLUMN_PIVOT_MODE_CHANGED, this.onColumnStateChanged.bind(this));\n this.addManagedListener(this.eLabel, \"click\", this.onLabelClicked.bind(this));\n this.addManagedListener(this.cbSelect, Events26.EVENT_FIELD_VALUE_CHANGED, this.onCheckboxChanged.bind(this));\n this.addManagedListener(this.modelItem, ColumnModelItem.EVENT_EXPANDED_CHANGED, this.onExpandChanged.bind(this));\n this.addManagedListener(this.focusWrapper, \"keydown\", this.handleKeyDown.bind(this));\n this.addManagedListener(this.focusWrapper, \"contextmenu\", this.onContextMenu.bind(this));\n this.setOpenClosedIcons();\n this.setupDragging();\n this.onColumnStateChanged();\n this.addVisibilityListenersToAllChildren();\n this.refreshAriaExpanded();\n this.refreshAriaLabel();\n this.setupTooltip();\n const classes = CssClassApplier.getToolPanelClassesFromColDef(this.columnGroup.getColGroupDef(), this.gos, null, this.columnGroup);\n classes.forEach((c) => this.addOrRemoveCssClass(c, true));\n }\n getColumns() {\n return this.columnGroup.getLeafColumns();\n }\n setupTooltip() {\n const colGroupDef = this.columnGroup.getColGroupDef();\n if (!colGroupDef) {\n return;\n }\n const isTooltipWhenTruncated = this.gos.get(\"tooltipShowMode\") === \"whenTruncated\";\n let shouldDisplayTooltip;\n if (isTooltipWhenTruncated) {\n shouldDisplayTooltip = () => this.eLabel.scrollWidth > this.eLabel.clientWidth;\n }\n const refresh = () => {\n const newTooltipText = colGroupDef.headerTooltip;\n this.setTooltip({ newTooltipText, location: \"columnToolPanelColumnGroup\", shouldDisplayTooltip });\n };\n refresh();\n this.addManagedListener(this.eventService, Events26.EVENT_NEW_COLUMNS_LOADED, refresh);\n }\n getTooltipParams() {\n const res = super.getTooltipParams();\n res.location = \"columnToolPanelColumnGroup\";\n return res;\n }\n handleKeyDown(e) {\n switch (e.key) {\n case KeyCode23.LEFT:\n e.preventDefault();\n this.modelItem.setExpanded(false);\n break;\n case KeyCode23.RIGHT:\n e.preventDefault();\n this.modelItem.setExpanded(true);\n break;\n case KeyCode23.SPACE:\n e.preventDefault();\n if (this.isSelectable()) {\n this.onSelectAllChanged(!this.isSelected());\n }\n break;\n }\n }\n onContextMenu(e) {\n const { columnGroup, gos } = this;\n if (gos.get(\"functionsReadOnly\")) {\n return;\n }\n const contextMenu = this.createBean(new ToolPanelContextMenu(columnGroup, e, this.focusWrapper));\n this.addDestroyFunc(() => {\n if (contextMenu.isAlive()) {\n this.destroyBean(contextMenu);\n }\n });\n }\n addVisibilityListenersToAllChildren() {\n this.columnGroup.getLeafColumns().forEach((column) => {\n this.addManagedListener(column, Column3.EVENT_VISIBLE_CHANGED, this.onColumnStateChanged.bind(this));\n this.addManagedListener(column, Column3.EVENT_VALUE_CHANGED, this.onColumnStateChanged.bind(this));\n this.addManagedListener(column, Column3.EVENT_PIVOT_CHANGED, this.onColumnStateChanged.bind(this));\n this.addManagedListener(column, Column3.EVENT_ROW_GROUP_CHANGED, this.onColumnStateChanged.bind(this));\n });\n }\n setupDragging() {\n if (!this.allowDragging) {\n _310.setDisplayed(this.eDragHandle, false);\n return;\n }\n let hideColumnOnExit = !this.gos.get(\"suppressDragLeaveHidesColumns\");\n const dragSource = {\n type: DragSourceType5.ToolPanel,\n eElement: this.eDragHandle,\n dragItemName: this.displayName,\n getDefaultIconName: () => hideColumnOnExit ? DragAndDropService6.ICON_HIDE : DragAndDropService6.ICON_NOT_ALLOWED,\n getDragItem: () => this.createDragItem(),\n onDragStarted: () => {\n hideColumnOnExit = !this.gos.get(\"suppressDragLeaveHidesColumns\");\n const event = {\n type: Events26.EVENT_COLUMN_PANEL_ITEM_DRAG_START,\n column: this.columnGroup\n };\n this.eventService.dispatchEvent(event);\n },\n onDragStopped: () => {\n const event = {\n type: Events26.EVENT_COLUMN_PANEL_ITEM_DRAG_END\n };\n this.eventService.dispatchEvent(event);\n },\n onGridEnter: (dragItem) => {\n if (hideColumnOnExit) {\n this.modelItemUtils.updateColumns({\n columns: this.columnGroup.getLeafColumns(),\n visibleState: dragItem == null ? void 0 : dragItem.visibleState,\n pivotState: dragItem == null ? void 0 : dragItem.pivotState,\n eventType: this.eventType\n });\n }\n },\n onGridExit: () => {\n if (hideColumnOnExit) {\n this.onChangeCommon(false);\n }\n }\n };\n this.dragAndDropService.addDragSource(dragSource, true);\n this.addDestroyFunc(() => this.dragAndDropService.removeDragSource(dragSource));\n }\n createDragItem() {\n const columns = this.columnGroup.getLeafColumns();\n const visibleState = {};\n const pivotState = {};\n columns.forEach((col) => {\n const colId = col.getId();\n visibleState[colId] = col.isVisible();\n pivotState[colId] = this.modelItemUtils.createPivotState(col);\n });\n return {\n columns,\n visibleState,\n pivotState\n };\n }\n setupExpandContract() {\n this.eGroupClosedIcon.appendChild(_310.createIcon(\"columnSelectClosed\", this.gos, null));\n this.eGroupOpenedIcon.appendChild(_310.createIcon(\"columnSelectOpen\", this.gos, null));\n this.addManagedListener(this.eGroupClosedIcon, \"click\", this.onExpandOrContractClicked.bind(this));\n this.addManagedListener(this.eGroupOpenedIcon, \"click\", this.onExpandOrContractClicked.bind(this));\n const touchListener = new TouchListener(this.eColumnGroupIcons, true);\n this.addManagedListener(touchListener, TouchListener.EVENT_TAP, this.onExpandOrContractClicked.bind(this));\n this.addDestroyFunc(touchListener.destroy.bind(touchListener));\n }\n onLabelClicked() {\n const nextState = !this.cbSelect.getValue();\n this.onChangeCommon(nextState);\n }\n onCheckboxChanged(event) {\n this.onChangeCommon(event.selected);\n }\n getVisibleLeafColumns() {\n const childColumns = [];\n const extractCols = (children) => {\n children.forEach((child) => {\n if (!child.isPassesFilter()) {\n return;\n }\n if (child.isGroup()) {\n extractCols(child.getChildren());\n } else {\n childColumns.push(child.getColumn());\n }\n });\n };\n extractCols(this.modelItem.getChildren());\n return childColumns;\n }\n onChangeCommon(nextState) {\n this.refreshAriaLabel();\n if (this.processingColumnStateChange) {\n return;\n }\n this.modelItemUtils.selectAllChildren(this.modelItem.getChildren(), nextState, this.eventType);\n }\n refreshAriaLabel() {\n const translate = this.localeService.getLocaleTextFunc();\n const columnLabel = translate(\"ariaColumnGroup\", \"Column Group\");\n const checkboxValue = this.cbSelect.getValue();\n const state = checkboxValue === void 0 ? translate(\"ariaIndeterminate\", \"indeterminate\") : checkboxValue ? translate(\"ariaVisible\", \"visible\") : translate(\"ariaHidden\", \"hidden\");\n const visibilityLabel = translate(\"ariaToggleVisibility\", \"Press SPACE to toggle visibility\");\n _310.setAriaLabel(this.focusWrapper, `${this.displayName} ${columnLabel}`);\n this.cbSelect.setInputAriaLabel(`${visibilityLabel} (${state})`);\n _310.setAriaDescribedBy(this.focusWrapper, this.cbSelect.getInputElement().id);\n }\n onColumnStateChanged() {\n const selectedValue = this.workOutSelectedValue();\n const readOnlyValue = this.workOutReadOnlyValue();\n this.processingColumnStateChange = true;\n this.cbSelect.setValue(selectedValue);\n this.cbSelect.setReadOnly(readOnlyValue);\n this.addOrRemoveCssClass(\"ag-column-select-column-group-readonly\", readOnlyValue);\n this.processingColumnStateChange = false;\n }\n workOutSelectedValue() {\n const pivotMode = this.columnModel.isPivotMode();\n const visibleLeafColumns = this.getVisibleLeafColumns();\n let checkedCount = 0;\n let uncheckedCount = 0;\n visibleLeafColumns.forEach((column) => {\n if (!pivotMode && column.getColDef().lockVisible) {\n return;\n }\n if (this.isColumnChecked(column, pivotMode)) {\n checkedCount++;\n } else {\n uncheckedCount++;\n }\n });\n if (checkedCount > 0 && uncheckedCount > 0) {\n return void 0;\n }\n return checkedCount > 0;\n }\n workOutReadOnlyValue() {\n const pivotMode = this.columnModel.isPivotMode();\n let colsThatCanAction = 0;\n this.columnGroup.getLeafColumns().forEach((col) => {\n if (pivotMode) {\n if (col.isAnyFunctionAllowed()) {\n colsThatCanAction++;\n }\n } else {\n if (!col.getColDef().lockVisible) {\n colsThatCanAction++;\n }\n }\n });\n return colsThatCanAction === 0;\n }\n isColumnChecked(column, pivotMode) {\n if (pivotMode) {\n const pivoted = column.isPivotActive();\n const grouped = column.isRowGroupActive();\n const aggregated = column.isValueActive();\n return pivoted || grouped || aggregated;\n }\n return column.isVisible();\n }\n onExpandOrContractClicked() {\n const oldState = this.modelItem.isExpanded();\n this.modelItem.setExpanded(!oldState);\n }\n onExpandChanged() {\n this.setOpenClosedIcons();\n this.refreshAriaExpanded();\n }\n setOpenClosedIcons() {\n const folderOpen = this.modelItem.isExpanded();\n _310.setDisplayed(this.eGroupClosedIcon, !folderOpen);\n _310.setDisplayed(this.eGroupOpenedIcon, folderOpen);\n }\n refreshAriaExpanded() {\n _310.setAriaExpanded(this.focusWrapper, this.modelItem.isExpanded());\n }\n getDisplayName() {\n return this.displayName;\n }\n onSelectAllChanged(value) {\n const cbValue = this.cbSelect.getValue();\n const readOnly = this.cbSelect.isReadOnly();\n if (!readOnly && (value && !cbValue || !value && cbValue)) {\n this.cbSelect.toggle();\n }\n }\n isSelected() {\n return this.cbSelect.getValue();\n }\n isSelectable() {\n return !this.cbSelect.isReadOnly();\n }\n setSelected(selected) {\n this.cbSelect.setValue(selected, true);\n }\n};\n_ToolPanelColumnGroupComp.TEMPLATE = /* html */\n`
`;\n__decorateClass8([\n Autowired312(\"columnModel\")\n], _ToolPanelColumnGroupComp.prototype, \"columnModel\", 2);\n__decorateClass8([\n Autowired312(\"dragAndDropService\")\n], _ToolPanelColumnGroupComp.prototype, \"dragAndDropService\", 2);\n__decorateClass8([\n Autowired312(\"modelItemUtils\")\n], _ToolPanelColumnGroupComp.prototype, \"modelItemUtils\", 2);\n__decorateClass8([\n RefSelector25(\"cbSelect\")\n], _ToolPanelColumnGroupComp.prototype, \"cbSelect\", 2);\n__decorateClass8([\n RefSelector25(\"eLabel\")\n], _ToolPanelColumnGroupComp.prototype, \"eLabel\", 2);\n__decorateClass8([\n RefSelector25(\"eGroupOpenedIcon\")\n], _ToolPanelColumnGroupComp.prototype, \"eGroupOpenedIcon\", 2);\n__decorateClass8([\n RefSelector25(\"eGroupClosedIcon\")\n], _ToolPanelColumnGroupComp.prototype, \"eGroupClosedIcon\", 2);\n__decorateClass8([\n RefSelector25(\"eColumnGroupIcons\")\n], _ToolPanelColumnGroupComp.prototype, \"eColumnGroupIcons\", 2);\n__decorateClass8([\n PostConstruct312\n], _ToolPanelColumnGroupComp.prototype, \"init\", 1);\nvar ToolPanelColumnGroupComp = _ToolPanelColumnGroupComp;\nvar PrimaryColsListPanelItemDragFeature = class extends BeanStub18 {\n constructor(comp, virtualList) {\n super();\n this.comp = comp;\n this.virtualList = virtualList;\n }\n postConstruct() {\n this.createManagedBean(new VirtualListDragFeature2(\n this.comp,\n this.virtualList,\n {\n dragSourceType: DragSourceType24.ToolPanel,\n listItemDragStartEvent: Events34.EVENT_COLUMN_PANEL_ITEM_DRAG_START,\n listItemDragEndEvent: Events34.EVENT_COLUMN_PANEL_ITEM_DRAG_END,\n eventSource: this.eventService,\n getCurrentDragValue: (listItemDragStartEvent) => this.getCurrentDragValue(listItemDragStartEvent),\n isMoveBlocked: (currentDragValue) => this.isMoveBlocked(currentDragValue),\n getNumRows: (comp) => comp.getDisplayedColsList().length,\n moveItem: (currentDragValue, lastHoveredListItem) => this.moveItem(currentDragValue, lastHoveredListItem)\n }\n ));\n }\n getCurrentDragValue(listItemDragStartEvent) {\n return listItemDragStartEvent.column;\n }\n isMoveBlocked(currentDragValue) {\n const preventMoving = this.gos.get(\"suppressMovableColumns\");\n if (preventMoving) {\n return true;\n }\n const currentColumns = this.getCurrentColumns(currentDragValue);\n const hasNotMovable = currentColumns.find((col) => {\n const colDef = col.getColDef();\n return !!colDef.suppressMovable || !!colDef.lockPosition;\n });\n return !!hasNotMovable;\n }\n moveItem(currentDragValue, lastHoveredListItem) {\n const targetIndex = this.getTargetIndex(currentDragValue, lastHoveredListItem);\n const columnsToMove = this.getCurrentColumns(currentDragValue);\n if (targetIndex != null) {\n this.columnModel.moveColumns(columnsToMove, targetIndex, \"toolPanelUi\");\n }\n }\n getMoveDiff(currentDragValue, end) {\n const allColumns = this.columnModel.getAllGridColumns();\n const currentColumns = this.getCurrentColumns(currentDragValue);\n const currentColumn = currentColumns[0];\n const span = currentColumns.length;\n const currentIndex = allColumns.indexOf(currentColumn);\n if (currentIndex < end) {\n return span;\n }\n return 0;\n }\n getCurrentColumns(currentDragValue) {\n if (currentDragValue instanceof ProvidedColumnGroup4) {\n return currentDragValue.getLeafColumns();\n }\n return [currentDragValue];\n }\n getTargetIndex(currentDragValue, lastHoveredListItem) {\n if (!lastHoveredListItem) {\n return null;\n }\n const columnItemComponent = lastHoveredListItem.component;\n let isBefore = lastHoveredListItem.position === \"top\";\n let targetColumn;\n if (columnItemComponent instanceof ToolPanelColumnGroupComp) {\n const columns = columnItemComponent.getColumns();\n targetColumn = columns[0];\n isBefore = true;\n } else {\n targetColumn = columnItemComponent.getColumn();\n }\n const movingCols = this.getCurrentColumns(currentDragValue);\n if (movingCols.indexOf(targetColumn) !== -1) {\n return null;\n }\n const targetColumnIndex = this.columnModel.getAllGridColumns().indexOf(targetColumn);\n const adjustedTarget = isBefore ? targetColumnIndex : targetColumnIndex + 1;\n const diff = this.getMoveDiff(currentDragValue, adjustedTarget);\n return adjustedTarget - diff;\n }\n};\n__decorateClass8([\n Autowired412(\"columnModel\")\n], PrimaryColsListPanelItemDragFeature.prototype, \"columnModel\", 2);\n__decorateClass8([\n PostConstruct412\n], PrimaryColsListPanelItemDragFeature.prototype, \"postConstruct\", 1);\nvar _ToolPanelColumnComp = class _ToolPanelColumnComp2 extends Component47 {\n constructor(modelItem, allowDragging, groupsExist, focusWrapper) {\n super();\n this.allowDragging = allowDragging;\n this.groupsExist = groupsExist;\n this.focusWrapper = focusWrapper;\n this.processingColumnStateChange = false;\n this.column = modelItem.getColumn();\n this.columnDept = modelItem.getDept();\n this.displayName = modelItem.getDisplayName();\n }\n init() {\n this.setTemplate(_ToolPanelColumnComp2.TEMPLATE);\n this.eDragHandle = _54.createIconNoSpan(\"columnDrag\", this.gos);\n this.eDragHandle.classList.add(\"ag-drag-handle\", \"ag-column-select-column-drag-handle\");\n const checkboxGui = this.cbSelect.getGui();\n const checkboxInput = this.cbSelect.getInputElement();\n checkboxGui.insertAdjacentElement(\"afterend\", this.eDragHandle);\n checkboxInput.setAttribute(\"tabindex\", \"-1\");\n const displayNameSanitised = _54.escapeString(this.displayName);\n this.eLabel.innerHTML = displayNameSanitised;\n const indent = this.columnDept;\n if (this.groupsExist) {\n this.addCssClass(\"ag-column-select-add-group-indent\");\n }\n this.addCssClass(`ag-column-select-indent-${indent}`);\n this.setupDragging();\n this.addManagedListener(this.eventService, Events44.EVENT_COLUMN_PIVOT_MODE_CHANGED, this.onColumnStateChanged.bind(this));\n this.addManagedListener(this.column, Column5.EVENT_VALUE_CHANGED, this.onColumnStateChanged.bind(this));\n this.addManagedListener(this.column, Column5.EVENT_PIVOT_CHANGED, this.onColumnStateChanged.bind(this));\n this.addManagedListener(this.column, Column5.EVENT_ROW_GROUP_CHANGED, this.onColumnStateChanged.bind(this));\n this.addManagedListener(this.column, Column5.EVENT_VISIBLE_CHANGED, this.onColumnStateChanged.bind(this));\n this.addManagedListener(this.focusWrapper, \"keydown\", this.handleKeyDown.bind(this));\n this.addManagedListener(this.focusWrapper, \"contextmenu\", this.onContextMenu.bind(this));\n this.addManagedPropertyListener(\"functionsReadOnly\", this.onColumnStateChanged.bind(this));\n this.addManagedListener(this.cbSelect, Events44.EVENT_FIELD_VALUE_CHANGED, this.onCheckboxChanged.bind(this));\n this.addManagedListener(this.eLabel, \"click\", this.onLabelClicked.bind(this));\n this.onColumnStateChanged();\n this.refreshAriaLabel();\n this.setupTooltip();\n const classes = CssClassApplier2.getToolPanelClassesFromColDef(this.column.getColDef(), this.gos, this.column, null);\n classes.forEach((c) => this.addOrRemoveCssClass(c, true));\n }\n getColumn() {\n return this.column;\n }\n setupTooltip() {\n const isTooltipWhenTruncated = this.gos.get(\"tooltipShowMode\") === \"whenTruncated\";\n let shouldDisplayTooltip;\n if (isTooltipWhenTruncated) {\n shouldDisplayTooltip = () => this.eLabel.scrollWidth > this.eLabel.clientWidth;\n }\n const refresh = () => {\n const newTooltipText = this.column.getColDef().headerTooltip;\n this.setTooltip({ newTooltipText, location: \"columnToolPanelColumn\", shouldDisplayTooltip });\n };\n refresh();\n this.addManagedListener(this.eventService, Events44.EVENT_NEW_COLUMNS_LOADED, refresh);\n }\n getTooltipParams() {\n const res = super.getTooltipParams();\n res.location = \"columnToolPanelColumn\";\n res.colDef = this.column.getColDef();\n return res;\n }\n onContextMenu(e) {\n const { column, gos } = this;\n if (gos.get(\"functionsReadOnly\")) {\n return;\n }\n const contextMenu = this.createBean(new ToolPanelContextMenu(column, e, this.focusWrapper));\n this.addDestroyFunc(() => {\n if (contextMenu.isAlive()) {\n this.destroyBean(contextMenu);\n }\n });\n }\n handleKeyDown(e) {\n if (e.key === KeyCode32.SPACE) {\n e.preventDefault();\n if (this.isSelectable()) {\n this.onSelectAllChanged(!this.isSelected());\n }\n }\n }\n onLabelClicked() {\n if (this.gos.get(\"functionsReadOnly\")) {\n return;\n }\n const nextState = !this.cbSelect.getValue();\n this.onChangeCommon(nextState);\n }\n onCheckboxChanged(event) {\n this.onChangeCommon(event.selected);\n }\n onChangeCommon(nextState) {\n if (this.cbSelect.isReadOnly()) {\n return;\n }\n this.refreshAriaLabel();\n if (this.processingColumnStateChange) {\n return;\n }\n this.modelItemUtils.setColumn(this.column, nextState, \"toolPanelUi\");\n }\n refreshAriaLabel() {\n const translate = this.localeService.getLocaleTextFunc();\n const columnLabel = translate(\"ariaColumn\", \"Column\");\n const state = this.cbSelect.getValue() ? translate(\"ariaVisible\", \"visible\") : translate(\"ariaHidden\", \"hidden\");\n const visibilityLabel = translate(\"ariaToggleVisibility\", \"Press SPACE to toggle visibility\");\n _54.setAriaLabel(this.focusWrapper, `${this.displayName} ${columnLabel}`);\n this.cbSelect.setInputAriaLabel(`${visibilityLabel} (${state})`);\n _54.setAriaDescribedBy(this.focusWrapper, this.cbSelect.getInputElement().id);\n }\n setupDragging() {\n if (!this.allowDragging) {\n _54.setDisplayed(this.eDragHandle, false);\n return;\n }\n let hideColumnOnExit = !this.gos.get(\"suppressDragLeaveHidesColumns\");\n const dragSource = {\n type: DragSourceType32.ToolPanel,\n eElement: this.eDragHandle,\n dragItemName: this.displayName,\n getDefaultIconName: () => hideColumnOnExit ? DragAndDropService23.ICON_HIDE : DragAndDropService23.ICON_NOT_ALLOWED,\n getDragItem: () => this.createDragItem(),\n onDragStarted: () => {\n hideColumnOnExit = !this.gos.get(\"suppressDragLeaveHidesColumns\");\n const event = {\n type: Events44.EVENT_COLUMN_PANEL_ITEM_DRAG_START,\n column: this.column\n };\n this.eventService.dispatchEvent(event);\n },\n onDragStopped: () => {\n const event = {\n type: Events44.EVENT_COLUMN_PANEL_ITEM_DRAG_END\n };\n this.eventService.dispatchEvent(event);\n },\n onGridEnter: (dragItem) => {\n if (hideColumnOnExit) {\n this.modelItemUtils.updateColumns({\n columns: [this.column],\n visibleState: dragItem == null ? void 0 : dragItem.visibleState,\n pivotState: dragItem == null ? void 0 : dragItem.pivotState,\n eventType: \"toolPanelUi\"\n });\n }\n },\n onGridExit: () => {\n if (hideColumnOnExit) {\n this.onChangeCommon(false);\n }\n }\n };\n this.dragAndDropService.addDragSource(dragSource, true);\n this.addDestroyFunc(() => this.dragAndDropService.removeDragSource(dragSource));\n }\n createDragItem() {\n const colId = this.column.getColId();\n const visibleState = { [colId]: this.column.isVisible() };\n const pivotState = { [colId]: this.modelItemUtils.createPivotState(this.column) };\n return {\n columns: [this.column],\n visibleState,\n pivotState\n };\n }\n onColumnStateChanged() {\n this.processingColumnStateChange = true;\n const isPivotMode = this.columnModel.isPivotMode();\n if (isPivotMode) {\n const anyFunctionActive = this.column.isAnyFunctionActive();\n this.cbSelect.setValue(anyFunctionActive);\n } else {\n this.cbSelect.setValue(this.column.isVisible());\n }\n let canBeToggled = true;\n let canBeDragged = true;\n if (isPivotMode) {\n const functionsReadOnly = this.gos.get(\"functionsReadOnly\");\n const noFunctionsAllowed = !this.column.isAnyFunctionAllowed();\n canBeToggled = !functionsReadOnly && !noFunctionsAllowed;\n canBeDragged = canBeToggled;\n } else {\n const { enableRowGroup, enableValue, lockPosition, suppressMovable, lockVisible } = this.column.getColDef();\n const forceDraggable = !!enableRowGroup || !!enableValue;\n const disableDraggable = !!lockPosition || !!suppressMovable;\n canBeToggled = !lockVisible;\n canBeDragged = forceDraggable || !disableDraggable;\n }\n this.cbSelect.setReadOnly(!canBeToggled);\n this.eDragHandle.classList.toggle(\"ag-column-select-column-readonly\", !canBeDragged);\n this.addOrRemoveCssClass(\"ag-column-select-column-readonly\", !canBeDragged && !canBeToggled);\n const checkboxPassive = isPivotMode && this.gos.get(\"functionsPassive\");\n this.cbSelect.setPassive(checkboxPassive);\n this.processingColumnStateChange = false;\n }\n getDisplayName() {\n return this.displayName;\n }\n onSelectAllChanged(value) {\n if (value !== this.cbSelect.getValue()) {\n if (!this.cbSelect.isReadOnly()) {\n this.cbSelect.toggle();\n }\n }\n }\n isSelected() {\n return this.cbSelect.getValue();\n }\n isSelectable() {\n return !this.cbSelect.isReadOnly();\n }\n isExpandable() {\n return false;\n }\n setExpanded(value) {\n console.warn(\"AG Grid: can not expand a column item that does not represent a column group header\");\n }\n};\n_ToolPanelColumnComp.TEMPLATE = /* html */\n`
`;\n__decorateClass8([\n Autowired56(\"columnModel\")\n], _ToolPanelColumnComp.prototype, \"columnModel\", 2);\n__decorateClass8([\n Autowired56(\"dragAndDropService\")\n], _ToolPanelColumnComp.prototype, \"dragAndDropService\", 2);\n__decorateClass8([\n Autowired56(\"modelItemUtils\")\n], _ToolPanelColumnComp.prototype, \"modelItemUtils\", 2);\n__decorateClass8([\n RefSelector35(\"eLabel\")\n], _ToolPanelColumnComp.prototype, \"eLabel\", 2);\n__decorateClass8([\n RefSelector35(\"cbSelect\")\n], _ToolPanelColumnComp.prototype, \"cbSelect\", 2);\n__decorateClass8([\n PostConstruct57\n], _ToolPanelColumnComp.prototype, \"init\", 1);\nvar ToolPanelColumnComp = _ToolPanelColumnComp;\nvar UIColumnModel = class {\n constructor(items) {\n this.items = items;\n }\n getRowCount() {\n return this.items.length;\n }\n getRow(index) {\n return this.items[index];\n }\n};\nvar PRIMARY_COLS_LIST_PANEL_CLASS = \"ag-column-select-list\";\nvar _PrimaryColsListPanel = class _PrimaryColsListPanel2 extends Component54 {\n constructor() {\n super(_PrimaryColsListPanel2.TEMPLATE);\n this.destroyColumnItemFuncs = [];\n this.hasLoadedInitialState = false;\n this.isInitialState = false;\n }\n destroyColumnTree() {\n this.allColsTree = [];\n this.destroyColumnItemFuncs.forEach((f) => f());\n this.destroyColumnItemFuncs = [];\n }\n init(params, allowDragging, eventType) {\n this.params = params;\n this.allowDragging = allowDragging;\n this.eventType = eventType;\n if (!this.params.suppressSyncLayoutWithGrid) {\n this.addManagedListener(this.eventService, Events54.EVENT_COLUMN_MOVED, this.onColumnsChanged.bind(this));\n }\n this.addManagedListener(this.eventService, Events54.EVENT_NEW_COLUMNS_LOADED, this.onColumnsChanged.bind(this));\n const eventsImpactingCheckedState = [\n Events54.EVENT_COLUMN_PIVOT_CHANGED,\n Events54.EVENT_COLUMN_PIVOT_MODE_CHANGED,\n Events54.EVENT_COLUMN_ROW_GROUP_CHANGED,\n Events54.EVENT_COLUMN_VALUE_CHANGED,\n Events54.EVENT_COLUMN_VISIBLE,\n Events54.EVENT_NEW_COLUMNS_LOADED\n ];\n eventsImpactingCheckedState.forEach((event) => {\n this.addManagedListener(this.eventService, event, this.fireSelectionChangedEvent.bind(this));\n });\n this.expandGroupsByDefault = !this.params.contractColumnSelection;\n this.virtualList = this.createManagedBean(new VirtualList2({\n cssIdentifier: \"column-select\",\n ariaRole: \"tree\"\n }));\n this.appendChild(this.virtualList.getGui());\n this.virtualList.setComponentCreator(\n (item, listItemElement) => {\n _64.setAriaLevel(listItemElement, item.getDept() + 1);\n return this.createComponentFromItem(item, listItemElement);\n }\n );\n if (this.columnModel.isReady()) {\n this.onColumnsChanged();\n }\n if (this.params.suppressColumnMove) {\n return;\n }\n this.createManagedBean(\n new PrimaryColsListPanelItemDragFeature(this, this.virtualList)\n );\n }\n createComponentFromItem(item, listItemElement) {\n if (item.isGroup()) {\n const renderedGroup = new ToolPanelColumnGroupComp(item, this.allowDragging, this.eventType, listItemElement);\n this.getContext().createBean(renderedGroup);\n return renderedGroup;\n }\n const columnComp = new ToolPanelColumnComp(item, this.allowDragging, this.groupsExist, listItemElement);\n this.getContext().createBean(columnComp);\n return columnComp;\n }\n onColumnsChanged() {\n if (!this.hasLoadedInitialState) {\n this.hasLoadedInitialState = true;\n this.isInitialState = !!this.params.initialState;\n }\n const expandedStates = this.getExpandedStates();\n const pivotModeActive = this.columnModel.isPivotMode();\n const shouldSyncColumnLayoutWithGrid = !this.params.suppressSyncLayoutWithGrid && !pivotModeActive;\n if (shouldSyncColumnLayoutWithGrid) {\n this.buildTreeFromWhatGridIsDisplaying();\n } else {\n this.buildTreeFromProvidedColumnDefs();\n }\n this.setExpandedStates(expandedStates);\n this.markFilteredColumns();\n this.flattenAndFilterModel();\n this.isInitialState = false;\n }\n getDisplayedColsList() {\n return this.displayedColsList;\n }\n getExpandedStates() {\n const res = {};\n if (this.isInitialState) {\n const { expandedGroupIds } = this.params.initialState;\n expandedGroupIds.forEach((id) => {\n res[id] = true;\n });\n return res;\n }\n if (!this.allColsTree) {\n return {};\n }\n this.forEachItem((item) => {\n if (!item.isGroup()) {\n return;\n }\n const colGroup = item.getColumnGroup();\n if (colGroup) {\n res[colGroup.getId()] = item.isExpanded();\n }\n });\n return res;\n }\n setExpandedStates(states) {\n if (!this.allColsTree) {\n return;\n }\n const { isInitialState } = this;\n this.forEachItem((item) => {\n if (!item.isGroup()) {\n return;\n }\n const colGroup = item.getColumnGroup();\n if (colGroup) {\n const expanded = states[colGroup.getId()];\n const groupExistedLastTime = expanded != null;\n if (groupExistedLastTime || isInitialState) {\n item.setExpanded(!!expanded);\n }\n }\n });\n }\n buildTreeFromWhatGridIsDisplaying() {\n this.colDefService.syncLayoutWithGrid(this.setColumnLayout.bind(this));\n }\n setColumnLayout(colDefs) {\n const columnTree = this.colDefService.createColumnTree(colDefs);\n this.buildListModel(columnTree);\n this.groupsExist = colDefs.some((colDef) => {\n return colDef && typeof colDef.children !== \"undefined\";\n });\n this.markFilteredColumns();\n this.flattenAndFilterModel();\n }\n buildTreeFromProvidedColumnDefs() {\n this.buildListModel(this.columnModel.getPrimaryColumnTree());\n this.groupsExist = this.columnModel.isPrimaryColumnGroupsPresent();\n }\n buildListModel(columnTree) {\n const columnExpandedListener = this.onColumnExpanded.bind(this);\n const addListeners = (item) => {\n item.addEventListener(ColumnModelItem.EVENT_EXPANDED_CHANGED, columnExpandedListener);\n const removeFunc = item.removeEventListener.bind(item, ColumnModelItem.EVENT_EXPANDED_CHANGED, columnExpandedListener);\n this.destroyColumnItemFuncs.push(removeFunc);\n };\n const recursivelyBuild = (tree, dept, parentList) => {\n tree.forEach((child) => {\n if (child instanceof ProvidedColumnGroup5) {\n createGroupItem(child, dept, parentList);\n } else {\n createColumnItem(child, dept, parentList);\n }\n });\n };\n const createGroupItem = (columnGroup, dept, parentList) => {\n const columnGroupDef = columnGroup.getColGroupDef();\n const skipThisGroup = columnGroupDef && columnGroupDef.suppressColumnsToolPanel;\n if (skipThisGroup) {\n return;\n }\n if (columnGroup.isPadding()) {\n recursivelyBuild(columnGroup.getChildren(), dept, parentList);\n return;\n }\n const displayName = this.columnModel.getDisplayNameForProvidedColumnGroup(null, columnGroup, \"columnToolPanel\");\n const item = new ColumnModelItem(displayName, columnGroup, dept, true, this.expandGroupsByDefault);\n parentList.push(item);\n addListeners(item);\n recursivelyBuild(columnGroup.getChildren(), dept + 1, item.getChildren());\n };\n const createColumnItem = (column, dept, parentList) => {\n const skipThisColumn = column.getColDef() && column.getColDef().suppressColumnsToolPanel;\n if (skipThisColumn) {\n return;\n }\n const displayName = this.columnModel.getDisplayNameForColumn(column, \"columnToolPanel\");\n parentList.push(new ColumnModelItem(displayName, column, dept));\n };\n this.destroyColumnTree();\n recursivelyBuild(columnTree, 0, this.allColsTree);\n }\n onColumnExpanded() {\n this.flattenAndFilterModel();\n }\n flattenAndFilterModel() {\n this.displayedColsList = [];\n const recursiveFunc = (item) => {\n if (!item.isPassesFilter()) {\n return;\n }\n this.displayedColsList.push(item);\n if (item.isGroup() && item.isExpanded()) {\n item.getChildren().forEach(recursiveFunc);\n }\n };\n this.allColsTree.forEach(recursiveFunc);\n this.virtualList.setModel(new UIColumnModel(this.displayedColsList));\n const focusedRow = this.virtualList.getLastFocusedRow();\n this.virtualList.refresh();\n if (focusedRow != null) {\n this.focusRowIfAlive(focusedRow);\n }\n this.notifyListeners();\n this.refreshAriaLabel();\n }\n refreshAriaLabel() {\n const translate = this.localeService.getLocaleTextFunc();\n const columnListName = translate(\"ariaColumnPanelList\", \"Column List\");\n const localeColumns = translate(\"columns\", \"Columns\");\n const items = this.displayedColsList.length;\n _64.setAriaLabel(this.virtualList.getAriaElement(), `${columnListName} ${items} ${localeColumns}`);\n }\n focusRowIfAlive(rowIndex) {\n window.setTimeout(() => {\n if (this.isAlive()) {\n this.virtualList.focusRow(rowIndex);\n }\n }, 0);\n }\n forEachItem(callback) {\n const recursiveFunc = (items) => {\n items.forEach((item) => {\n callback(item);\n if (item.isGroup()) {\n recursiveFunc(item.getChildren());\n }\n });\n };\n if (!this.allColsTree) {\n return;\n }\n recursiveFunc(this.allColsTree);\n }\n doSetExpandedAll(value) {\n this.forEachItem((item) => {\n if (item.isGroup()) {\n item.setExpanded(value);\n }\n });\n }\n setGroupsExpanded(expand, groupIds) {\n if (!groupIds) {\n this.doSetExpandedAll(expand);\n return;\n }\n const expandedGroupIds = [];\n this.forEachItem((item) => {\n if (!item.isGroup()) {\n return;\n }\n const groupId = item.getColumnGroup().getId();\n if (groupIds.indexOf(groupId) >= 0) {\n item.setExpanded(expand);\n expandedGroupIds.push(groupId);\n }\n });\n const unrecognisedGroupIds = groupIds.filter((groupId) => !_64.includes(expandedGroupIds, groupId));\n if (unrecognisedGroupIds.length > 0) {\n console.warn(\"AG Grid: unable to find group(s) for supplied groupIds:\", unrecognisedGroupIds);\n }\n }\n getExpandState() {\n let expandedCount = 0;\n let notExpandedCount = 0;\n this.forEachItem((item) => {\n if (!item.isGroup()) {\n return;\n }\n if (item.isExpanded()) {\n expandedCount++;\n } else {\n notExpandedCount++;\n }\n });\n if (expandedCount > 0 && notExpandedCount > 0) {\n return 2;\n }\n if (notExpandedCount > 0) {\n return 1;\n }\n return 0;\n }\n doSetSelectedAll(selectAllChecked) {\n this.modelItemUtils.selectAllChildren(this.allColsTree, selectAllChecked, this.eventType);\n }\n getSelectionState() {\n let checkedCount = 0;\n let uncheckedCount = 0;\n const pivotMode = this.columnModel.isPivotMode();\n this.forEachItem((item) => {\n if (item.isGroup()) {\n return;\n }\n if (!item.isPassesFilter()) {\n return;\n }\n const column = item.getColumn();\n const colDef = column.getColDef();\n let checked;\n if (pivotMode) {\n const noPivotModeOptionsAllowed = !column.isAllowPivot() && !column.isAllowRowGroup() && !column.isAllowValue();\n if (noPivotModeOptionsAllowed) {\n return;\n }\n checked = column.isValueActive() || column.isPivotActive() || column.isRowGroupActive();\n } else {\n if (colDef.lockVisible) {\n return;\n }\n checked = column.isVisible();\n }\n checked ? checkedCount++ : uncheckedCount++;\n });\n if (checkedCount > 0 && uncheckedCount > 0) {\n return void 0;\n }\n return !(checkedCount === 0 || uncheckedCount > 0);\n }\n setFilterText(filterText) {\n this.filterText = _64.exists(filterText) ? filterText.toLowerCase() : null;\n this.markFilteredColumns();\n this.flattenAndFilterModel();\n }\n markFilteredColumns() {\n const passesFilter = (item) => {\n if (!_64.exists(this.filterText)) {\n return true;\n }\n const displayName = item.getDisplayName();\n return displayName == null || displayName.toLowerCase().indexOf(this.filterText) !== -1;\n };\n const recursivelyCheckFilter = (item, parentPasses) => {\n let atLeastOneChildPassed = false;\n if (item.isGroup()) {\n const groupPasses = passesFilter(item);\n item.getChildren().forEach((child) => {\n const childPasses = recursivelyCheckFilter(child, groupPasses || parentPasses);\n if (childPasses) {\n atLeastOneChildPassed = childPasses;\n }\n });\n }\n const filterPasses = parentPasses || atLeastOneChildPassed ? true : passesFilter(item);\n item.setPassesFilter(filterPasses);\n return filterPasses;\n };\n this.allColsTree.forEach((item) => recursivelyCheckFilter(item, false));\n }\n notifyListeners() {\n this.fireGroupExpandedEvent();\n this.fireSelectionChangedEvent();\n }\n fireGroupExpandedEvent() {\n const expandState = this.getExpandState();\n this.dispatchEvent({ type: \"groupExpanded\", state: expandState });\n }\n fireSelectionChangedEvent() {\n if (!this.allColsTree) {\n return;\n }\n const selectionState = this.getSelectionState();\n this.dispatchEvent({ type: \"selectionChanged\", state: selectionState });\n }\n getExpandedGroups() {\n const expandedGroupIds = [];\n if (!this.allColsTree) {\n return expandedGroupIds;\n }\n this.forEachItem((item) => {\n if (item.isGroup() && item.isExpanded()) {\n expandedGroupIds.push(item.getColumnGroup().getId());\n }\n });\n return expandedGroupIds;\n }\n};\n_PrimaryColsListPanel.TEMPLATE = /* html */\n`
`;\n__decorateClass8([\n Autowired64(\"columnModel\")\n], _PrimaryColsListPanel.prototype, \"columnModel\", 2);\n__decorateClass8([\n Autowired64(\"toolPanelColDefService\")\n], _PrimaryColsListPanel.prototype, \"colDefService\", 2);\n__decorateClass8([\n Autowired64(\"modelItemUtils\")\n], _PrimaryColsListPanel.prototype, \"modelItemUtils\", 2);\n__decorateClass8([\n PreDestroy3\n], _PrimaryColsListPanel.prototype, \"destroyColumnTree\", 1);\nvar PrimaryColsListPanel = _PrimaryColsListPanel;\nvar PivotModePanel = class extends Component63 {\n createTemplate() {\n return (\n /* html */\n `
`\n );\n }\n init() {\n this.setTemplate(this.createTemplate());\n this.cbPivotMode.setValue(this.columnModel.isPivotMode());\n const localeTextFunc = this.localeService.getLocaleTextFunc();\n this.cbPivotMode.setLabel(localeTextFunc(\"pivotMode\", \"Pivot Mode\"));\n this.addManagedListener(this.cbPivotMode, Events64.EVENT_FIELD_VALUE_CHANGED, this.onBtPivotMode.bind(this));\n this.addManagedListener(this.eventService, Events64.EVENT_NEW_COLUMNS_LOADED, this.onPivotModeChanged.bind(this));\n this.addManagedListener(this.eventService, Events64.EVENT_COLUMN_PIVOT_MODE_CHANGED, this.onPivotModeChanged.bind(this));\n }\n onBtPivotMode() {\n const newValue = !!this.cbPivotMode.getValue();\n if (newValue !== this.columnModel.isPivotMode()) {\n this.gos.updateGridOptions({ options: { pivotMode: newValue }, source: \"toolPanelUi\" });\n const { api } = this;\n if (api) {\n api.refreshHeader();\n }\n }\n }\n onPivotModeChanged() {\n const pivotModeActive = this.columnModel.isPivotMode();\n this.cbPivotMode.setValue(pivotModeActive);\n }\n};\n__decorateClass8([\n Autowired74(\"columnModel\")\n], PivotModePanel.prototype, \"columnModel\", 2);\n__decorateClass8([\n Autowired74(\"gridApi\")\n], PivotModePanel.prototype, \"api\", 2);\n__decorateClass8([\n RefSelector43(\"cbPivotMode\")\n], PivotModePanel.prototype, \"cbPivotMode\", 2);\n__decorateClass8([\n PreConstruct2\n], PivotModePanel.prototype, \"init\", 1);\nvar _PrimaryColsPanel = class _PrimaryColsPanel2 extends Component73 {\n constructor() {\n super(_PrimaryColsPanel2.TEMPLATE);\n }\n // we allow dragging in the toolPanel, but not when this component appears in the column menu\n init(allowDragging, params, eventType) {\n this.allowDragging = allowDragging;\n this.params = params;\n this.eventType = eventType;\n this.primaryColsHeaderPanel.init(this.params);\n const hideFilter = this.params.suppressColumnFilter;\n const hideSelect = this.params.suppressColumnSelectAll;\n const hideExpand = this.params.suppressColumnExpandAll;\n if (hideExpand && hideFilter && hideSelect) {\n this.primaryColsHeaderPanel.setDisplayed(false);\n }\n this.addManagedListener(this.primaryColsListPanel, \"groupExpanded\", this.onGroupExpanded.bind(this));\n this.addManagedListener(this.primaryColsListPanel, \"selectionChanged\", this.onSelectionChange.bind(this));\n this.primaryColsListPanel.init(this.params, this.allowDragging, this.eventType);\n this.addManagedListener(this.primaryColsHeaderPanel, \"expandAll\", this.onExpandAll.bind(this));\n this.addManagedListener(this.primaryColsHeaderPanel, \"collapseAll\", this.onCollapseAll.bind(this));\n this.addManagedListener(this.primaryColsHeaderPanel, \"selectAll\", this.onSelectAll.bind(this));\n this.addManagedListener(this.primaryColsHeaderPanel, \"unselectAll\", this.onUnselectAll.bind(this));\n this.addManagedListener(this.primaryColsHeaderPanel, \"filterChanged\", this.onFilterChanged.bind(this));\n this.positionableFeature = new PositionableFeature(this.getGui(), { minHeight: 100 });\n this.createManagedBean(this.positionableFeature);\n }\n toggleResizable(resizable) {\n this.positionableFeature.setResizable(resizable ? { bottom: true } : false);\n }\n onExpandAll() {\n this.primaryColsListPanel.doSetExpandedAll(true);\n }\n onCollapseAll() {\n this.primaryColsListPanel.doSetExpandedAll(false);\n }\n expandGroups(groupIds) {\n this.primaryColsListPanel.setGroupsExpanded(true, groupIds);\n }\n collapseGroups(groupIds) {\n this.primaryColsListPanel.setGroupsExpanded(false, groupIds);\n }\n setColumnLayout(colDefs) {\n this.primaryColsListPanel.setColumnLayout(colDefs);\n }\n onFilterChanged(event) {\n this.primaryColsListPanel.setFilterText(event.filterText);\n }\n syncLayoutWithGrid() {\n this.primaryColsListPanel.onColumnsChanged();\n }\n onSelectAll() {\n this.primaryColsListPanel.doSetSelectedAll(true);\n }\n onUnselectAll() {\n this.primaryColsListPanel.doSetSelectedAll(false);\n }\n onGroupExpanded(event) {\n this.primaryColsHeaderPanel.setExpandState(event.state);\n this.params.onStateUpdated();\n }\n onSelectionChange(event) {\n this.primaryColsHeaderPanel.setSelectionState(event.state);\n }\n getExpandedGroups() {\n return this.primaryColsListPanel.getExpandedGroups();\n }\n};\n_PrimaryColsPanel.TEMPLATE = /* html */\n`
`;\n__decorateClass8([\n RefSelector53(\"primaryColsHeaderPanel\")\n], _PrimaryColsPanel.prototype, \"primaryColsHeaderPanel\", 2);\n__decorateClass8([\n RefSelector53(\"primaryColsListPanel\")\n], _PrimaryColsPanel.prototype, \"primaryColsListPanel\", 2);\nvar PrimaryColsPanel = _PrimaryColsPanel;\nvar _ColumnToolPanel = class _ColumnToolPanel2 extends Component83 {\n constructor() {\n super(_ColumnToolPanel2.TEMPLATE);\n this.initialised = false;\n this.childDestroyFuncs = [];\n }\n // lazy initialise the panel\n setVisible(visible) {\n super.setDisplayed(visible);\n if (visible && !this.initialised) {\n this.init(this.params);\n }\n }\n init(params) {\n const defaultParams = this.gos.addGridCommonParams({\n suppressColumnMove: false,\n suppressColumnSelectAll: false,\n suppressColumnFilter: false,\n suppressColumnExpandAll: false,\n contractColumnSelection: false,\n suppressPivotMode: false,\n suppressRowGroups: false,\n suppressValues: false,\n suppressPivots: false,\n suppressSyncLayoutWithGrid: false\n });\n this.params = __spreadValues6(__spreadValues6({}, defaultParams), params);\n if (this.isRowGroupingModuleLoaded() && !this.params.suppressPivotMode) {\n this.pivotModePanel = this.createBean(new PivotModePanel());\n this.childDestroyFuncs.push(() => this.destroyBean(this.pivotModePanel));\n this.appendChild(this.pivotModePanel);\n }\n this.primaryColsPanel = this.createBean(new PrimaryColsPanel());\n this.childDestroyFuncs.push(() => this.destroyBean(this.primaryColsPanel));\n this.primaryColsPanel.init(true, this.params, \"toolPanelUi\");\n this.primaryColsPanel.addCssClass(\"ag-column-panel-column-select\");\n this.appendChild(this.primaryColsPanel);\n if (this.isRowGroupingModuleLoaded()) {\n if (!this.params.suppressRowGroups) {\n this.rowGroupDropZonePanel = this.createBean(new RowGroupDropZonePanel(false));\n this.childDestroyFuncs.push(() => this.destroyBean(this.rowGroupDropZonePanel));\n this.appendChild(this.rowGroupDropZonePanel);\n }\n if (!this.params.suppressValues) {\n this.valuesDropZonePanel = this.createBean(new ValuesDropZonePanel(false));\n this.childDestroyFuncs.push(() => this.destroyBean(this.valuesDropZonePanel));\n this.appendChild(this.valuesDropZonePanel);\n }\n if (!this.params.suppressPivots) {\n this.pivotDropZonePanel = this.createBean(new PivotDropZonePanel(false));\n this.childDestroyFuncs.push(() => this.destroyBean(this.pivotDropZonePanel));\n this.appendChild(this.pivotDropZonePanel);\n }\n this.setLastVisible();\n const pivotModeListener = this.addManagedListener(this.eventService, Events74.EVENT_COLUMN_PIVOT_MODE_CHANGED, () => {\n this.resetChildrenHeight();\n this.setLastVisible();\n });\n this.childDestroyFuncs.push(() => pivotModeListener());\n }\n this.initialised = true;\n }\n setPivotModeSectionVisible(visible) {\n if (!this.isRowGroupingModuleLoaded()) {\n return;\n }\n if (this.pivotModePanel) {\n this.pivotModePanel.setDisplayed(visible);\n } else if (visible) {\n this.pivotModePanel = this.createBean(new PivotModePanel());\n this.getGui().insertBefore(this.pivotModePanel.getGui(), this.getGui().firstChild);\n this.childDestroyFuncs.push(() => this.destroyBean(this.pivotModePanel));\n }\n this.setLastVisible();\n }\n setRowGroupsSectionVisible(visible) {\n if (!this.isRowGroupingModuleLoaded()) {\n return;\n }\n if (this.rowGroupDropZonePanel) {\n this.rowGroupDropZonePanel.setDisplayed(visible);\n } else if (visible) {\n this.rowGroupDropZonePanel = this.createManagedBean(new RowGroupDropZonePanel(false));\n this.appendChild(this.rowGroupDropZonePanel);\n }\n this.setLastVisible();\n }\n setValuesSectionVisible(visible) {\n if (!this.isRowGroupingModuleLoaded()) {\n return;\n }\n if (this.valuesDropZonePanel) {\n this.valuesDropZonePanel.setDisplayed(visible);\n } else if (visible) {\n this.valuesDropZonePanel = this.createManagedBean(new ValuesDropZonePanel(false));\n this.appendChild(this.valuesDropZonePanel);\n }\n this.setLastVisible();\n }\n setPivotSectionVisible(visible) {\n if (!this.isRowGroupingModuleLoaded()) {\n return;\n }\n if (this.pivotDropZonePanel) {\n this.pivotDropZonePanel.setDisplayed(visible);\n } else if (visible) {\n this.pivotDropZonePanel = this.createManagedBean(new PivotDropZonePanel(false));\n this.appendChild(this.pivotDropZonePanel);\n this.pivotDropZonePanel.setDisplayed(visible);\n }\n this.setLastVisible();\n }\n setResizers() {\n [\n this.primaryColsPanel,\n this.rowGroupDropZonePanel,\n this.valuesDropZonePanel,\n this.pivotDropZonePanel\n ].forEach((panel) => {\n if (!panel) {\n return;\n }\n const eGui = panel.getGui();\n panel.toggleResizable(!eGui.classList.contains(\"ag-last-column-drop\") && !eGui.classList.contains(\"ag-hidden\"));\n });\n }\n setLastVisible() {\n const eGui = this.getGui();\n const columnDrops = Array.prototype.slice.call(eGui.querySelectorAll(\".ag-column-drop\"));\n columnDrops.forEach((columnDrop) => columnDrop.classList.remove(\"ag-last-column-drop\"));\n const columnDropEls = eGui.querySelectorAll(\".ag-column-drop:not(.ag-hidden)\");\n const lastVisible = _73.last(columnDropEls);\n if (lastVisible) {\n lastVisible.classList.add(\"ag-last-column-drop\");\n }\n this.setResizers();\n }\n resetChildrenHeight() {\n const eGui = this.getGui();\n const children = eGui.children;\n for (let i = 0; i < children.length; i++) {\n const child = children[i];\n child.style.removeProperty(\"height\");\n child.style.removeProperty(\"flex\");\n }\n }\n isRowGroupingModuleLoaded() {\n return ModuleRegistry3.__assertRegistered(ModuleNames8.RowGroupingModule, \"Row Grouping\", this.context.getGridId());\n }\n expandColumnGroups(groupIds) {\n this.primaryColsPanel.expandGroups(groupIds);\n }\n collapseColumnGroups(groupIds) {\n this.primaryColsPanel.collapseGroups(groupIds);\n }\n setColumnLayout(colDefs) {\n this.primaryColsPanel.setColumnLayout(colDefs);\n }\n syncLayoutWithGrid() {\n this.primaryColsPanel.syncLayoutWithGrid();\n }\n destroyChildren() {\n this.childDestroyFuncs.forEach((func) => func());\n this.childDestroyFuncs.length = 0;\n _73.clearElement(this.getGui());\n }\n refresh(params) {\n this.destroyChildren();\n this.init(params);\n return true;\n }\n getState() {\n return {\n expandedGroupIds: this.primaryColsPanel.getExpandedGroups()\n };\n }\n // this is a user component, and IComponent has \"public destroy()\" as part of the interface.\n // so this must be public.\n destroy() {\n this.destroyChildren();\n super.destroy();\n }\n};\n_ColumnToolPanel.TEMPLATE = `
`;\nvar ColumnToolPanel = _ColumnToolPanel;\nvar ModelItemUtils = class {\n selectAllChildren(colTree, selectAllChecked, eventType) {\n const cols = this.extractAllLeafColumns(colTree);\n this.setAllColumns(cols, selectAllChecked, eventType);\n }\n setColumn(col, selectAllChecked, eventType) {\n this.setAllColumns([col], selectAllChecked, eventType);\n }\n setAllColumns(cols, selectAllChecked, eventType) {\n if (this.columnModel.isPivotMode()) {\n this.setAllPivot(cols, selectAllChecked, eventType);\n } else {\n this.setAllVisible(cols, selectAllChecked, eventType);\n }\n }\n extractAllLeafColumns(allItems) {\n const res = [];\n const recursiveFunc = (items) => {\n items.forEach((item) => {\n if (!item.isPassesFilter()) {\n return;\n }\n if (item.isGroup()) {\n recursiveFunc(item.getChildren());\n } else {\n res.push(item.getColumn());\n }\n });\n };\n recursiveFunc(allItems);\n return res;\n }\n setAllVisible(columns, visible, eventType) {\n const colStateItems = [];\n columns.forEach((col) => {\n if (col.getColDef().lockVisible) {\n return;\n }\n if (col.isVisible() != visible) {\n colStateItems.push({\n colId: col.getId(),\n hide: !visible\n });\n }\n });\n if (colStateItems.length > 0) {\n this.columnModel.applyColumnState({ state: colStateItems }, eventType);\n }\n }\n setAllPivot(columns, value, eventType) {\n if (this.gos.get(\"functionsPassive\")) {\n this.setAllPivotPassive(columns, value);\n } else {\n this.setAllPivotActive(columns, value, eventType);\n }\n }\n setAllPivotPassive(columns, value) {\n const copyOfPivotColumns = this.columnModel.getPivotColumns().slice();\n const copyOfValueColumns = this.columnModel.getValueColumns().slice();\n const copyOfRowGroupColumns = this.columnModel.getRowGroupColumns().slice();\n let pivotChanged = false;\n let valueChanged = false;\n let rowGroupChanged = false;\n const turnOnAction = (col) => {\n if (col.isAnyFunctionActive()) {\n return;\n }\n if (col.isAllowValue()) {\n copyOfValueColumns.push(col);\n valueChanged = true;\n } else if (col.isAllowRowGroup()) {\n copyOfRowGroupColumns.push(col);\n pivotChanged = true;\n } else if (col.isAllowPivot()) {\n copyOfPivotColumns.push(col);\n rowGroupChanged = true;\n }\n };\n const turnOffAction = (col) => {\n if (!col.isAnyFunctionActive()) {\n return;\n }\n if (copyOfPivotColumns.indexOf(col) >= 0) {\n _84.removeFromArray(copyOfPivotColumns, col);\n pivotChanged = true;\n }\n if (copyOfValueColumns.indexOf(col) >= 0) {\n _84.removeFromArray(copyOfValueColumns, col);\n valueChanged = true;\n }\n if (copyOfRowGroupColumns.indexOf(col) >= 0) {\n _84.removeFromArray(copyOfRowGroupColumns, col);\n rowGroupChanged = true;\n }\n };\n const action = value ? turnOnAction : turnOffAction;\n columns.forEach(action);\n if (pivotChanged) {\n const event = {\n type: Events83.EVENT_COLUMN_PIVOT_CHANGE_REQUEST,\n columns: copyOfPivotColumns\n };\n this.eventService.dispatchEvent(event);\n }\n if (rowGroupChanged) {\n const event = {\n type: Events83.EVENT_COLUMN_ROW_GROUP_CHANGE_REQUEST,\n columns: copyOfRowGroupColumns\n };\n this.eventService.dispatchEvent(event);\n }\n if (valueChanged) {\n const event = {\n type: Events83.EVENT_COLUMN_VALUE_CHANGE_REQUEST,\n columns: copyOfRowGroupColumns\n };\n this.eventService.dispatchEvent(event);\n }\n }\n setAllPivotActive(columns, value, eventType) {\n const colStateItems = [];\n const turnOnAction = (col) => {\n if (col.isAnyFunctionActive()) {\n return;\n }\n if (col.isAllowValue()) {\n const aggFunc = typeof col.getAggFunc() === \"string\" ? col.getAggFunc() : this.aggFuncService.getDefaultAggFunc(col);\n colStateItems.push({\n colId: col.getId(),\n aggFunc\n });\n } else if (col.isAllowRowGroup()) {\n colStateItems.push({\n colId: col.getId(),\n rowGroup: true\n });\n } else if (col.isAllowPivot()) {\n colStateItems.push({\n colId: col.getId(),\n pivot: true\n });\n }\n };\n const turnOffAction = (col) => {\n const isActive = col.isPivotActive() || col.isRowGroupActive() || col.isValueActive();\n if (isActive) {\n colStateItems.push({\n colId: col.getId(),\n pivot: false,\n rowGroup: false,\n aggFunc: null\n });\n }\n };\n const action = value ? turnOnAction : turnOffAction;\n columns.forEach(action);\n if (colStateItems.length > 0) {\n this.columnModel.applyColumnState({ state: colStateItems }, eventType);\n }\n }\n updateColumns(params) {\n const { columns, visibleState, pivotState, eventType } = params;\n const state = columns.map((column) => {\n const colId = column.getColId();\n if (this.columnModel.isPivotMode()) {\n const pivotStateForColumn = pivotState == null ? void 0 : pivotState[colId];\n return {\n colId,\n pivot: pivotStateForColumn == null ? void 0 : pivotStateForColumn.pivot,\n rowGroup: pivotStateForColumn == null ? void 0 : pivotStateForColumn.rowGroup,\n aggFunc: pivotStateForColumn == null ? void 0 : pivotStateForColumn.aggFunc\n };\n } else {\n return {\n colId,\n hide: !(visibleState == null ? void 0 : visibleState[colId])\n };\n }\n });\n this.columnModel.applyColumnState({ state }, eventType);\n }\n createPivotState(column) {\n return {\n pivot: column.isPivotActive(),\n rowGroup: column.isRowGroupActive(),\n aggFunc: column.isValueActive() ? column.getAggFunc() : void 0\n };\n }\n};\n__decorateClass8([\n Autowired84(\"aggFuncService\")\n], ModelItemUtils.prototype, \"aggFuncService\", 2);\n__decorateClass8([\n Autowired84(\"columnModel\")\n], ModelItemUtils.prototype, \"columnModel\", 2);\n__decorateClass8([\n Autowired84(\"gridOptionsService\")\n], ModelItemUtils.prototype, \"gos\", 2);\n__decorateClass8([\n Autowired84(\"eventService\")\n], ModelItemUtils.prototype, \"eventService\", 2);\nModelItemUtils = __decorateClass8([\n Bean11(\"modelItemUtils\")\n], ModelItemUtils);\nvar VERSION8 = \"31.3.2\";\nvar ColumnsToolPanelModule = {\n version: VERSION8,\n moduleName: ModuleNames24.ColumnsToolPanelModule,\n beans: [ModelItemUtils],\n agStackComponents: [\n { componentName: \"AgPrimaryColsHeader\", componentClass: PrimaryColsHeaderPanel },\n { componentName: \"AgPrimaryColsList\", componentClass: PrimaryColsListPanel },\n { componentName: \"AgPrimaryCols\", componentClass: PrimaryColsPanel }\n ],\n userComponents: [\n { componentName: \"agColumnsToolPanel\", componentClass: ColumnToolPanel }\n ],\n dependantModules: [\n EnterpriseCoreModule,\n RowGroupingModule,\n SideBarModule\n ]\n};\n\n// enterprise-modules/excel-export/dist/package/main.esm.mjs\nimport { ModuleNames as ModuleNames9 } from \"ag-grid-community\";\nimport {\n Autowired as Autowired57,\n Bean as Bean12,\n PostConstruct as PostConstruct58,\n CssClassApplier as CssClassApplier3\n} from \"ag-grid-community\";\nimport {\n ExcelFactoryMode,\n _ as _55\n} from \"ag-grid-community\";\nimport { XmlFactory } from \"ag-grid-community\";\nimport { _ as _40 } from \"ag-grid-community\";\nimport { _ as _212 } from \"ag-grid-community\";\nimport {\n _ as _46\n} from \"ag-grid-community\";\nimport { _ as _311 } from \"ag-grid-community\";\nimport { BaseCreator, Downloader, RowType as RowType2, ZipContainer } from \"ag-grid-community\";\nimport {\n _ as _65\n} from \"ag-grid-community\";\nimport {\n BaseGridSerializingSession,\n RowType\n} from \"ag-grid-community\";\nimport { CsvCreator, GridSerializer as GridSerializer2 } from \"ag-grid-community\";\nimport { CsvExportModule as CsvExportModule2 } from \"ag-grid-community\";\nvar __defProp9 = Object.defineProperty;\nvar __defProps6 = Object.defineProperties;\nvar __getOwnPropDesc9 = Object.getOwnPropertyDescriptor;\nvar __getOwnPropDescs6 = Object.getOwnPropertyDescriptors;\nvar __getOwnPropSymbols7 = Object.getOwnPropertySymbols;\nvar __hasOwnProp8 = Object.prototype.hasOwnProperty;\nvar __propIsEnum7 = Object.prototype.propertyIsEnumerable;\nvar __defNormalProp7 = (obj, key, value) => key in obj ? __defProp9(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;\nvar __spreadValues7 = (a, b) => {\n for (var prop in b || (b = {}))\n if (__hasOwnProp8.call(b, prop))\n __defNormalProp7(a, prop, b[prop]);\n if (__getOwnPropSymbols7)\n for (var prop of __getOwnPropSymbols7(b)) {\n if (__propIsEnum7.call(b, prop))\n __defNormalProp7(a, prop, b[prop]);\n }\n return a;\n};\nvar __spreadProps6 = (a, b) => __defProps6(a, __getOwnPropDescs6(b));\nvar __decorateClass9 = (decorators, target, key, kind) => {\n var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc9(target, key) : target;\n for (var i = decorators.length - 1, decorator; i >= 0; i--)\n if (decorator = decorators[i])\n result = (kind ? decorator(target, key, result) : decorator(result)) || result;\n if (kind && result)\n __defProp9(target, key, result);\n return result;\n};\nvar coreFactory = {\n getTemplate(author) {\n const dt = /* @__PURE__ */ new Date();\n const jsonDate = dt.toJSON();\n return {\n name: \"cp:coreProperties\",\n properties: {\n prefixedAttributes: [{\n prefix: \"xmlns:\",\n map: {\n cp: \"http://schemas.openxmlformats.org/package/2006/metadata/core-properties\",\n dc: \"http://purl.org/dc/elements/1.1/\",\n dcterms: \"http://purl.org/dc/terms/\",\n dcmitype: \"http://purl.org/dc/dcmitype/\",\n xsi: \"http://www.w3.org/2001/XMLSchema-instance\"\n }\n }]\n },\n children: [{\n name: \"dc:creator\",\n textNode: author\n }, {\n name: \"dc:title\",\n textNode: \"Workbook\"\n }, {\n name: \"dcterms:created\",\n properties: {\n rawMap: {\n \"xsi:type\": \"dcterms:W3CDTF\"\n }\n },\n textNode: jsonDate\n }, {\n name: \"dcterms:modified\",\n properties: {\n rawMap: {\n \"xsi:type\": \"dcterms:W3CDTF\"\n }\n },\n textNode: jsonDate\n }]\n };\n }\n};\nvar core_default = coreFactory;\nvar contentTypeFactory = {\n getTemplate(config) {\n const { name, ContentType, Extension, PartName } = config;\n return {\n name,\n properties: {\n rawMap: {\n Extension,\n PartName,\n ContentType\n }\n }\n };\n }\n};\nvar contentType_default = contentTypeFactory;\nvar contentTypesFactory = {\n getTemplate(sheetLen) {\n const worksheets = new Array(sheetLen).fill(void 0).map((v, i) => ({\n name: \"Override\",\n ContentType: \"application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml\",\n PartName: `/xl/worksheets/sheet${i + 1}.xml`\n }));\n const sheetsWithImages = ExcelXlsxFactory.worksheetImages.size;\n const headerFooterImages = ExcelXlsxFactory.worksheetHeaderFooterImages.size;\n const sheetsWithTables = ExcelXlsxFactory.worksheetDataTables.size;\n const imageTypesObject = {};\n ExcelXlsxFactory.workbookImageIds.forEach((v) => {\n const type = v.type === \"jpg\" ? \"jpeg\" : v.type;\n imageTypesObject[type] = true;\n });\n const imageDocs = new Array(sheetsWithImages).fill(void 0).map((v, i) => ({\n name: \"Override\",\n ContentType: \"application/vnd.openxmlformats-officedocument.drawing+xml\",\n PartName: `/xl/drawings/drawing${i + 1}.xml`\n }));\n const tableDocs = new Array(sheetsWithTables).fill(void 0).map((v, i) => ({\n name: \"Override\",\n ContentType: \"application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml\",\n PartName: `/xl/tables/${ExcelXlsxFactory.getTableNameFromIndex(i)}.xml`\n }));\n const imageTypes = Object.keys(imageTypesObject).map((ext) => ({\n name: \"Default\",\n ContentType: `image/${ext}`,\n Extension: ext\n }));\n if (headerFooterImages) {\n imageTypes.push({\n name: \"Default\",\n Extension: \"vml\",\n ContentType: \"application/vnd.openxmlformats-officedocument.vmlDrawing\"\n });\n }\n const children = [\n ...imageTypes,\n {\n name: \"Default\",\n Extension: \"rels\",\n ContentType: \"application/vnd.openxmlformats-package.relationships+xml\"\n },\n {\n name: \"Default\",\n ContentType: \"application/xml\",\n Extension: \"xml\"\n },\n {\n name: \"Override\",\n ContentType: \"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml\",\n PartName: \"/xl/workbook.xml\"\n },\n ...worksheets,\n {\n name: \"Override\",\n ContentType: \"application/vnd.openxmlformats-officedocument.theme+xml\",\n PartName: \"/xl/theme/theme1.xml\"\n },\n {\n name: \"Override\",\n ContentType: \"application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml\",\n PartName: \"/xl/styles.xml\"\n },\n {\n name: \"Override\",\n ContentType: \"application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml\",\n PartName: \"/xl/sharedStrings.xml\"\n },\n ...imageDocs,\n ...tableDocs,\n {\n name: \"Override\",\n ContentType: \"application/vnd.openxmlformats-package.core-properties+xml\",\n PartName: \"/docProps/core.xml\"\n }\n ].map((contentType) => contentType_default.getTemplate(contentType));\n return {\n name: \"Types\",\n properties: {\n rawMap: {\n xmlns: \"http://schemas.openxmlformats.org/package/2006/content-types\"\n }\n },\n children\n };\n }\n};\nvar contentTypes_default = contentTypesFactory;\nvar INCH_TO_EMU = 9525;\nvar numberFormatMap = {\n \"0\": 1,\n \"0.00\": 2,\n \"#,##0\": 3,\n \"#,##0.00\": 4,\n \"0%\": 9,\n \"0.00%\": 10,\n \"0.00E+00\": 11,\n \"# ?/?\": 12,\n \"# ??/??\": 13,\n \"mm-dd-yy\": 14,\n \"d-mmm-yy\": 15,\n \"d-mmm\": 16,\n \"mmm-yy\": 17,\n \"h:mm AM/PM\": 18,\n \"h:mm:ss AM/PM\": 19,\n \"h:mm\": 20,\n \"h:mm:ss\": 21,\n \"m/d/yy h:mm\": 22,\n \"#,##0 ;(#,##0)\": 37,\n \"#,##0 ;[Red](#,##0)\": 38,\n \"#,##0.00;(#,##0.00)\": 39,\n \"#,##0.00;[Red](#,##0.00)\": 40,\n \"mm:ss\": 45,\n \"[h]:mm:ss\": 46,\n \"mmss.0\": 47,\n \"##0.0E+0\": 48,\n \"@\": 49\n};\nvar pixelsToPoint = (pixels) => {\n return Math.round(pixels * 72 / 96);\n};\nvar pointsToPixel = (points) => {\n return Math.round(points * 96 / 72);\n};\nvar pixelsToEMU = (value) => {\n return Math.ceil(value * INCH_TO_EMU);\n};\nvar getFontFamilyId = (name) => {\n if (name === void 0) {\n return;\n }\n const families = [\"Automatic\", \"Roman\", \"Swiss\", \"Modern\", \"Script\", \"Decorative\"];\n const pos = families.indexOf(name || \"Automatic\");\n return Math.max(pos, 0);\n};\nvar getHeightFromProperty = (rowIndex, height) => {\n if (!height) {\n return;\n }\n let finalHeight;\n if (typeof height === \"number\") {\n finalHeight = height;\n } else {\n const heightFunc = height;\n finalHeight = heightFunc({ rowIndex });\n }\n return pixelsToPoint(finalHeight);\n};\nvar setExcelImageTotalWidth = (image, columnsToExport) => {\n const { colSpan, column } = image.position;\n if (!image.width) {\n return;\n }\n if (colSpan) {\n const columnsInSpan = columnsToExport.slice(column - 1, column + colSpan - 1);\n let totalWidth = 0;\n for (let i = 0; i < columnsInSpan.length; i++) {\n const colWidth = columnsInSpan[i].getActualWidth();\n if (image.width < totalWidth + colWidth) {\n image.position.colSpan = i + 1;\n image.totalWidth = image.width;\n image.width = image.totalWidth - totalWidth;\n break;\n }\n totalWidth += colWidth;\n }\n } else {\n image.totalWidth = image.width;\n }\n};\nvar setExcelImageTotalHeight = (image, rowHeight) => {\n const { rowSpan, row } = image.position;\n if (!image.height) {\n return;\n }\n if (rowSpan) {\n let totalHeight = 0;\n let counter = 0;\n for (let i = row; i < row + rowSpan; i++) {\n const nextRowHeight = pointsToPixel(getHeightFromProperty(i, rowHeight) || 20);\n if (image.height < totalHeight + nextRowHeight) {\n image.position.rowSpan = counter + 1;\n image.totalHeight = image.height;\n image.height = image.totalHeight - totalHeight;\n break;\n }\n totalHeight += nextRowHeight;\n counter++;\n }\n } else {\n image.totalHeight = image.height;\n }\n};\nvar createXmlPart = (body, skipHeader) => {\n const header = XmlFactory.createHeader({\n encoding: \"UTF-8\",\n standalone: \"yes\"\n });\n const xmlBody = XmlFactory.createXml(body);\n if (skipHeader) {\n return xmlBody;\n }\n return `${header}${xmlBody}`;\n};\nvar getExcelColumnName = (colIdx) => {\n const startCode = 65;\n const tableWidth = 26;\n const fromCharCode = String.fromCharCode;\n const pos = Math.floor(colIdx / tableWidth);\n const tableIdx = colIdx % tableWidth;\n if (!pos || colIdx === tableWidth) {\n return fromCharCode(startCode + colIdx - 1);\n }\n if (!tableIdx) {\n return getExcelColumnName(pos - 1) + \"Z\";\n }\n if (pos < tableWidth) {\n return fromCharCode(startCode + pos - 1) + fromCharCode(startCode + tableIdx - 1);\n }\n return getExcelColumnName(pos) + fromCharCode(startCode + tableIdx - 1);\n};\nvar getAnchor = (name, imageAnchor) => ({\n name: `xdr:${name}`,\n children: [{\n name: \"xdr:col\",\n textNode: imageAnchor.col.toString()\n }, {\n name: \"xdr:colOff\",\n textNode: imageAnchor.offsetX.toString()\n }, {\n name: \"xdr:row\",\n textNode: imageAnchor.row.toString()\n }, {\n name: \"xdr:rowOff\",\n textNode: imageAnchor.offsetY.toString()\n }]\n});\nvar getExt = (image) => {\n const children = [{\n name: \"a:ext\",\n properties: {\n rawMap: {\n uri: \"{FF2B5EF4-FFF2-40B4-BE49-F238E27FC236}\"\n }\n },\n children: [{\n name: \"a16:creationId\",\n properties: {\n rawMap: {\n \"id\": \"{822E6D20-D7BC-2841-A643-D49A6EF008A2}\",\n \"xmlns:a16\": \"http://schemas.microsoft.com/office/drawing/2014/main\"\n }\n }\n }]\n }];\n const recolor = image.recolor && image.recolor.toLowerCase();\n switch (recolor) {\n case \"grayscale\":\n case \"sepia\":\n case \"washout\":\n children.push({\n name: \"a:ext\",\n properties: {\n rawMap: {\n uri: \"{C183D7F6-B498-43B3-948B-1728B52AA6E4}\"\n }\n },\n children: [{\n name: \"adec:decorative\",\n properties: {\n rawMap: {\n \"val\": \"0\",\n \"xmlns:adec\": \"http://schemas.microsoft.com/office/drawing/2017/decorative\"\n }\n }\n }]\n });\n }\n return {\n name: \"a:extLst\",\n children\n };\n};\nvar getNvPicPr = (image, index) => ({\n name: \"xdr:nvPicPr\",\n children: [{\n name: \"xdr:cNvPr\",\n properties: {\n rawMap: {\n id: index,\n name: image.id,\n descr: image.altText != null ? image.altText : void 0\n }\n },\n children: [getExt(image)]\n }, {\n name: \"xdr:cNvPicPr\",\n properties: {\n rawMap: {\n preferRelativeResize: \"0\"\n }\n },\n children: [{\n name: \"a:picLocks\"\n }]\n }]\n});\nvar getColorDetails = (color) => {\n if (!color.saturation && !color.tint) {\n return;\n }\n const ret = [];\n if (color.saturation) {\n ret.push({\n name: \"a:satMod\",\n properties: {\n rawMap: {\n val: color.saturation * 1e3\n }\n }\n });\n }\n if (color.tint) {\n ret.push({\n name: \"a:tint\",\n properties: {\n rawMap: {\n val: color.tint * 1e3\n }\n }\n });\n }\n return ret;\n};\nvar getDuoTone = (primaryColor, secondaryColor) => {\n return {\n name: \"a:duotone\",\n children: [{\n name: \"a:prstClr\",\n properties: {\n rawMap: {\n val: primaryColor.color\n }\n },\n children: getColorDetails(primaryColor)\n }, {\n name: \"a:srgbClr\",\n properties: {\n rawMap: {\n val: secondaryColor.color\n }\n },\n children: getColorDetails(secondaryColor)\n }]\n };\n};\nvar getBlipFill = (image, index) => {\n let blipChildren;\n if (image.transparency) {\n const transparency = Math.min(Math.max(image.transparency, 0), 100);\n blipChildren = [{\n name: \"a:alphaModFix\",\n properties: {\n rawMap: {\n amt: 1e5 - Math.round(transparency * 1e3)\n }\n }\n }];\n }\n if (image.recolor) {\n if (!blipChildren) {\n blipChildren = [];\n }\n switch (image.recolor.toLocaleLowerCase()) {\n case \"grayscale\":\n blipChildren.push({ name: \"a:grayscl\" });\n break;\n case \"sepia\":\n blipChildren.push(getDuoTone({ color: \"black\" }, { color: \"D9C3A5\", tint: 50, saturation: 180 }));\n break;\n case \"washout\":\n blipChildren.push({\n name: \"a:lum\",\n properties: {\n rawMap: {\n bright: \"70000\",\n contrast: \"-70000\"\n }\n }\n });\n break;\n default:\n }\n }\n return {\n name: \"xdr:blipFill\",\n children: [{\n name: \"a:blip\",\n properties: {\n rawMap: {\n \"cstate\": \"print\",\n \"r:embed\": `rId${index}`,\n \"xmlns:r\": \"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n }\n },\n children: blipChildren\n }, {\n name: \"a:stretch\",\n children: [{\n name: \"a:fillRect\"\n }]\n }]\n };\n};\nvar getSpPr = (image, imageBoxSize) => {\n const xfrm = {\n name: \"a:xfrm\",\n children: [{\n name: \"a:off\",\n properties: {\n rawMap: {\n x: 0,\n y: 0\n }\n }\n }, {\n name: \"a:ext\",\n properties: {\n rawMap: {\n cx: imageBoxSize.width,\n cy: imageBoxSize.height\n }\n }\n }]\n };\n if (image.rotation) {\n const rotation = image.rotation;\n xfrm.properties = {\n rawMap: {\n rot: Math.min(Math.max(rotation, 0), 360) * 6e4\n }\n };\n }\n const prstGeom = {\n name: \"a:prstGeom\",\n properties: {\n rawMap: {\n prst: \"rect\"\n }\n },\n children: [{ name: \"a:avLst\" }]\n };\n const ret = {\n name: \"xdr:spPr\",\n children: [xfrm, prstGeom]\n };\n return ret;\n};\nvar getImageBoxSize = (image) => {\n image.fitCell = !!image.fitCell || (!image.width || !image.height);\n const { position = {}, fitCell, width = 0, height = 0, totalHeight, totalWidth } = image;\n const { offsetX = 0, offsetY = 0, row = 1, rowSpan = 1, column = 1, colSpan = 1 } = position;\n return {\n from: {\n row: row - 1,\n col: column - 1,\n offsetX: pixelsToEMU(offsetX),\n offsetY: pixelsToEMU(offsetY)\n },\n to: {\n row: row - 1 + (fitCell ? 1 : rowSpan - 1),\n col: column - 1 + (fitCell ? 1 : colSpan - 1),\n offsetX: pixelsToEMU(width + offsetX),\n offsetY: pixelsToEMU(height + offsetY)\n },\n height: pixelsToEMU(totalHeight || height),\n width: pixelsToEMU(totalWidth || width)\n };\n};\nvar getPicture = (image, currentIndex, worksheetImageIndex, imageBoxSize) => {\n return {\n name: \"xdr:pic\",\n children: [\n getNvPicPr(image, currentIndex + 1),\n getBlipFill(image, worksheetImageIndex + 1),\n getSpPr(image, imageBoxSize)\n ]\n };\n};\nvar drawingFactory = {\n getTemplate(config) {\n const { sheetIndex } = config;\n const sheetImages = ExcelXlsxFactory.worksheetImages.get(sheetIndex);\n const sheetImageIds = ExcelXlsxFactory.worksheetImageIds.get(sheetIndex);\n const children = sheetImages.map((image, idx) => {\n const boxSize = getImageBoxSize(image);\n return {\n name: \"xdr:twoCellAnchor\",\n properties: {\n rawMap: {\n editAs: \"absolute\"\n }\n },\n children: [\n getAnchor(\"from\", boxSize.from),\n getAnchor(\"to\", boxSize.to),\n getPicture(image, idx, sheetImageIds.get(image.id).index, boxSize),\n { name: \"xdr:clientData\" }\n ]\n };\n });\n return {\n name: \"xdr:wsDr\",\n properties: {\n rawMap: {\n \"xmlns:a\": \"http://schemas.openxmlformats.org/drawingml/2006/main\",\n \"xmlns:xdr\": \"http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing\"\n }\n },\n children\n };\n }\n};\nvar drawing_default = drawingFactory;\nvar tableFactory = {\n getTemplate(dataTable, idx) {\n const {\n name,\n columns,\n rowCount,\n displayName,\n headerRowIndex,\n showRowStripes,\n showColumnStripes,\n showFilterButtons,\n highlightFirstColumn,\n highlightLastColumn\n } = dataTable || {};\n if (!dataTable || !name || !Array.isArray(columns) || !columns.length || !rowCount) {\n return { name: \"table\" };\n }\n const filterColumns = columns.map((col, idx2) => ({\n name: \"filterColumn\",\n properties: {\n rawMap: {\n colId: idx2.toString(),\n // For filters, this should start with 0\n hiddenButton: showFilterButtons[idx2] ? 0 : 1\n }\n }\n }));\n const firstRow = headerRowIndex + 1;\n const id = (idx + 1).toString();\n const firstCell = `A${firstRow}`;\n const lastCell = `${String.fromCharCode(64 + columns.length)}${firstRow + rowCount}`;\n const ref = `${firstCell}:${lastCell}`;\n const displayNameToUse = idx ? `${displayName}_${idx + 1}` : displayName;\n return {\n name: \"table\",\n properties: {\n rawMap: {\n \"xmlns\": \"http://schemas.openxmlformats.org/spreadsheetml/2006/main\",\n \"xmlns:mc\": \"http://schemas.openxmlformats.org/markup-compatibility/2006\",\n \"mc:Ignorable\": \"xr xr3\",\n \"xmlns:xr\": \"http://schemas.microsoft.com/office/spreadsheetml/2014/revision\",\n \"xmlns:xr3\": \"http://schemas.microsoft.com/office/spreadsheetml/2016/revision3\",\n \"name\": name,\n \"displayName\": displayNameToUse,\n \"ref\": ref,\n \"totalsRowShown\": 0,\n \"id\": id\n }\n },\n children: [\n {\n name: \"autoFilter\",\n properties: {\n rawMap: {\n ref\n }\n },\n children: filterColumns\n },\n {\n name: \"tableColumns\",\n properties: {\n rawMap: {\n count: columns.length\n }\n },\n children: columns.map((col, idx2) => ({\n name: \"tableColumn\",\n properties: {\n rawMap: {\n id: (idx2 + 1).toString(),\n name: col,\n dataCellStyle: \"Normal\"\n }\n }\n }))\n },\n {\n name: \"tableStyleInfo\",\n properties: {\n rawMap: {\n name: \"TableStyleLight1\",\n showFirstColumn: highlightFirstColumn ? 1 : 0,\n showLastColumn: highlightLastColumn ? 1 : 0,\n showRowStripes: showRowStripes ? 1 : 0,\n showColumnStripes: showColumnStripes ? 1 : 0\n }\n }\n }\n ]\n };\n }\n};\nvar table_default = tableFactory;\nvar getColorChildren = (props) => {\n const [type, innerType, val, lastClr] = props;\n return {\n name: `a:${type}`,\n children: [{\n name: `a:${innerType}`,\n properties: {\n rawMap: {\n val,\n lastClr\n }\n }\n }]\n };\n};\nvar colorScheme = {\n getTemplate() {\n return {\n name: \"a:clrScheme\",\n properties: {\n rawMap: {\n name: \"Office\"\n }\n },\n children: [\n getColorChildren([\"dk1\", \"sysClr\", \"windowText\", \"000000\"]),\n getColorChildren([\"lt1\", \"sysClr\", \"window\", \"FFFFFF\"]),\n getColorChildren([\"dk2\", \"srgbClr\", \"44546A\"]),\n getColorChildren([\"lt2\", \"srgbClr\", \"E7E6E6\"]),\n getColorChildren([\"accent1\", \"srgbClr\", \"4472C4\"]),\n getColorChildren([\"accent2\", \"srgbClr\", \"ED7D31\"]),\n getColorChildren([\"accent3\", \"srgbClr\", \"A5A5A5\"]),\n getColorChildren([\"accent4\", \"srgbClr\", \"FFC000\"]),\n getColorChildren([\"accent5\", \"srgbClr\", \"5B9BD5\"]),\n getColorChildren([\"accent6\", \"srgbClr\", \"70AD47\"]),\n getColorChildren([\"hlink\", \"srgbClr\", \"0563C1\"]),\n getColorChildren([\"folHlink\", \"srgbClr\", \"954F72\"])\n ]\n };\n }\n};\nvar colorScheme_default = colorScheme;\nvar getFont = (props) => {\n const [type, typeface, script, panose] = props;\n return {\n name: `a:${type}`,\n properties: {\n rawMap: {\n script,\n typeface,\n panose\n }\n }\n };\n};\nvar fontScheme = {\n getTemplate() {\n return {\n name: \"a:fontScheme\",\n properties: {\n rawMap: {\n name: \"Office\"\n }\n },\n children: [{\n name: \"a:majorFont\",\n children: [\n getFont([\"latin\", \"Calibri Light\", void 0, \"020F0302020204030204\"]),\n getFont([\"ea\", \"\"]),\n getFont([\"cs\", \"\"]),\n getFont([\"font\", \"\\u6E38\\u30B4\\u30B7\\u30C3\\u30AF Light\", \"Jpan\"]),\n getFont([\"font\", \"\\uB9D1\\uC740 \\uACE0\\uB515\", \"Hang\"]),\n getFont([\"font\", \"\\u7B49\\u7EBF Light\", \"Hans\"]),\n getFont([\"font\", \"\\u65B0\\u7D30\\u660E\\u9AD4\", \"Hant\"]),\n getFont([\"font\", \"Times New Roman\", \"Arab\"]),\n getFont([\"font\", \"Times New Roman\", \"Hebr\"]),\n getFont([\"font\", \"Tahoma\", \"Thai\"]),\n getFont([\"font\", \"Nyala\", \"Ethi\"]),\n getFont([\"font\", \"Vrinda\", \"Beng\"]),\n getFont([\"font\", \"Shruti\", \"Gujr\"]),\n getFont([\"font\", \"MoolBoran\", \"Khmr\"]),\n getFont([\"font\", \"Tunga\", \"Knda\"]),\n getFont([\"font\", \"Raavi\", \"Guru\"]),\n getFont([\"font\", \"Euphemia\", \"Cans\"]),\n getFont([\"font\", \"Plantagenet Cherokee\", \"Cher\"]),\n getFont([\"font\", \"Microsoft Yi Baiti\", \"Yiii\"]),\n getFont([\"font\", \"Microsoft Himalaya\", \"Tibt\"]),\n getFont([\"font\", \"MV Boli\", \"Thaa\"]),\n getFont([\"font\", \"Mangal\", \"Deva\"]),\n getFont([\"font\", \"Gautami\", \"Telu\"]),\n getFont([\"font\", \"Latha\", \"Taml\"]),\n getFont([\"font\", \"Estrangelo Edessa\", \"Syrc\"]),\n getFont([\"font\", \"Kalinga\", \"Orya\"]),\n getFont([\"font\", \"Kartika\", \"Mlym\"]),\n getFont([\"font\", \"DokChampa\", \"Laoo\"]),\n getFont([\"font\", \"Iskoola Pota\", \"Sinh\"]),\n getFont([\"font\", \"Mongolian Baiti\", \"Mong\"]),\n getFont([\"font\", \"Times New Roman\", \"Viet\"]),\n getFont([\"font\", \"Microsoft Uighur\", \"Uigh\"]),\n getFont([\"font\", \"Sylfaen\", \"Geor\"]),\n getFont([\"font\", \"Arial\", \"Armn\"]),\n getFont([\"font\", \"Leelawadee UI\", \"Bugi\"]),\n getFont([\"font\", \"Microsoft JhengHei\", \"Bopo\"]),\n getFont([\"font\", \"Javanese Text\", \"Java\"]),\n getFont([\"font\", \"Segoe UI\", \"Lisu\"]),\n getFont([\"font\", \"Myanmar Text\", \"Mymr\"]),\n getFont([\"font\", \"Ebrima\", \"Nkoo\"]),\n getFont([\"font\", \"Nirmala UI\", \"Olck\"]),\n getFont([\"font\", \"Ebrima\", \"Osma\"]),\n getFont([\"font\", \"Phagspa\", \"Phag\"]),\n getFont([\"font\", \"Estrangelo Edessa\", \"Syrn\"]),\n getFont([\"font\", \"Estrangelo Edessa\", \"Syrj\"]),\n getFont([\"font\", \"Estrangelo Edessa\", \"Syre\"]),\n getFont([\"font\", \"Nirmala UI\", \"Sora\"]),\n getFont([\"font\", \"Microsoft Tai Le\", \"Tale\"]),\n getFont([\"font\", \"Microsoft New Tai Lue\", \"Talu\"]),\n getFont([\"font\", \"Ebrima\", \"Tfng\"])\n ]\n }, {\n name: \"a:minorFont\",\n children: [\n getFont([\"latin\", \"Calibri\", void 0, \"020F0502020204030204\"]),\n getFont([\"ea\", \"\"]),\n getFont([\"cs\", \"\"]),\n getFont([\"font\", \"\\u6E38\\u30B4\\u30B7\\u30C3\\u30AF\", \"Jpan\"]),\n getFont([\"font\", \"\\uB9D1\\uC740 \\uACE0\\uB515\", \"Hang\"]),\n getFont([\"font\", \"\\u7B49\\u7EBF\", \"Hans\"]),\n getFont([\"font\", \"\\u65B0\\u7D30\\u660E\\u9AD4\", \"Hant\"]),\n getFont([\"font\", \"Arial\", \"Arab\"]),\n getFont([\"font\", \"Arial\", \"Hebr\"]),\n getFont([\"font\", \"Tahoma\", \"Thai\"]),\n getFont([\"font\", \"Nyala\", \"Ethi\"]),\n getFont([\"font\", \"Vrinda\", \"Beng\"]),\n getFont([\"font\", \"Shruti\", \"Gujr\"]),\n getFont([\"font\", \"DaunPenh\", \"Khmr\"]),\n getFont([\"font\", \"Tunga\", \"Knda\"]),\n getFont([\"font\", \"Raavi\", \"Guru\"]),\n getFont([\"font\", \"Euphemia\", \"Cans\"]),\n getFont([\"font\", \"Plantagenet Cherokee\", \"Cher\"]),\n getFont([\"font\", \"Microsoft Yi Baiti\", \"Yiii\"]),\n getFont([\"font\", \"Microsoft Himalaya\", \"Tibt\"]),\n getFont([\"font\", \"MV Boli\", \"Thaa\"]),\n getFont([\"font\", \"Mangal\", \"Deva\"]),\n getFont([\"font\", \"Gautami\", \"Telu\"]),\n getFont([\"font\", \"Latha\", \"Taml\"]),\n getFont([\"font\", \"Estrangelo Edessa\", \"Syrc\"]),\n getFont([\"font\", \"Kalinga\", \"Orya\"]),\n getFont([\"font\", \"Kartika\", \"Mlym\"]),\n getFont([\"font\", \"DokChampa\", \"Laoo\"]),\n getFont([\"font\", \"Iskoola Pota\", \"Sinh\"]),\n getFont([\"font\", \"Mongolian Baiti\", \"Mong\"]),\n getFont([\"font\", \"Arial\", \"Viet\"]),\n getFont([\"font\", \"Microsoft Uighur\", \"Uigh\"]),\n getFont([\"font\", \"Sylfaen\", \"Geor\"]),\n getFont([\"font\", \"Arial\", \"Armn\"]),\n getFont([\"font\", \"Leelawadee UI\", \"Bugi\"]),\n getFont([\"font\", \"Microsoft JhengHei\", \"Bopo\"]),\n getFont([\"font\", \"Javanese Text\", \"Java\"]),\n getFont([\"font\", \"Segoe UI\", \"Lisu\"]),\n getFont([\"font\", \"Myanmar Text\", \"Mymr\"]),\n getFont([\"font\", \"Ebrima\", \"Nkoo\"]),\n getFont([\"font\", \"Nirmala UI\", \"Olck\"]),\n getFont([\"font\", \"Ebrima\", \"Osma\"]),\n getFont([\"font\", \"Phagspa\", \"Phag\"]),\n getFont([\"font\", \"Estrangelo Edessa\", \"Syrn\"]),\n getFont([\"font\", \"Estrangelo Edessa\", \"Syrj\"]),\n getFont([\"font\", \"Estrangelo Edessa\", \"Syre\"]),\n getFont([\"font\", \"Nirmala UI\", \"Sora\"]),\n getFont([\"font\", \"Microsoft Tai Le\", \"Tale\"]),\n getFont([\"font\", \"Microsoft New Tai Lue\", \"Talu\"]),\n getFont([\"font\", \"Ebrima\", \"Tfng\"])\n ]\n }]\n };\n }\n};\nvar fontScheme_default = fontScheme;\nvar getPropertyVal = (name, val, children) => ({\n name: `a:${name}`,\n properties: {\n rawMap: {\n val\n }\n },\n children\n});\nvar getGs = (props) => {\n const [pos, schemeColor, satMod, lumMod, tint, shade] = props;\n const children = [];\n children.push(getPropertyVal(\"satMod\", satMod));\n if (lumMod) {\n children.push(getPropertyVal(\"lumMod\", lumMod));\n }\n if (tint) {\n children.push(getPropertyVal(\"tint\", tint));\n }\n if (shade) {\n children.push(getPropertyVal(\"shade\", shade));\n }\n return {\n name: \"a:gs\",\n properties: {\n rawMap: {\n pos\n }\n },\n children: [{\n name: \"a:schemeClr\",\n properties: {\n rawMap: {\n val: schemeColor\n }\n },\n children\n }]\n };\n};\nvar getSolidFill = (val, children) => ({\n name: \"a:solidFill\",\n children: [getPropertyVal(\"schemeClr\", val, children)]\n});\nvar getGradFill = (props) => {\n const [rotWithShape, gs1, gs2, gs3, lin] = props;\n const [ang, scaled] = lin;\n return {\n name: \"a:gradFill\",\n properties: {\n rawMap: {\n rotWithShape\n }\n },\n children: [{\n name: \"a:gsLst\",\n children: [\n getGs(gs1),\n getGs(gs2),\n getGs(gs3)\n ]\n }, {\n name: \"a:lin\",\n properties: {\n rawMap: {\n ang,\n scaled\n }\n }\n }]\n };\n};\nvar getLine = (props) => {\n const [w, cap, cmpd, algn] = props;\n return {\n name: \"a:ln\",\n properties: {\n rawMap: { w, cap, cmpd, algn }\n },\n children: [\n getSolidFill(\"phClr\"),\n getPropertyVal(\"prstDash\", \"solid\"),\n {\n name: \"a:miter\",\n properties: {\n rawMap: {\n lim: \"800000\"\n }\n }\n }\n ]\n };\n};\nvar getEffectStyle = (shadow) => {\n const children = [];\n if (shadow) {\n const [blurRad, dist, dir, algn, rotWithShape] = shadow;\n children.push({\n name: \"a:outerShdw\",\n properties: {\n rawMap: { blurRad, dist, dir, algn, rotWithShape }\n },\n children: [\n getPropertyVal(\"srgbClr\", \"000000\", [getPropertyVal(\"alpha\", \"63000\")])\n ]\n });\n }\n return {\n name: \"a:effectStyle\",\n children: [Object.assign({}, {\n name: \"a:effectLst\"\n }, children.length ? { children } : {})]\n };\n};\nvar getFillStyleList = () => ({\n name: \"a:fillStyleLst\",\n children: [\n getSolidFill(\"phClr\"),\n getGradFill([\n \"1\",\n [\"0\", \"phClr\", \"105000\", \"110000\", \"67000\"],\n [\"50000\", \"phClr\", \"103000\", \"105000\", \"73000\"],\n [\"100000\", \"phClr\", \"109000\", \"105000\", \"81000\"],\n [\"5400000\", \"0\"]\n ]),\n getGradFill([\n \"1\",\n [\"0\", \"phClr\", \"103000\", \"102000\", \"94000\"],\n [\"50000\", \"phClr\", \"110000\", \"100000\", void 0, \"100000\"],\n [\"100000\", \"phClr\", \"120000\", \"99000\", void 0, \"78000\"],\n [\"5400000\", \"0\"]\n ])\n ]\n});\nvar getLineStyleList = () => ({\n name: \"a:lnStyleLst\",\n children: [\n getLine([\"6350\", \"flat\", \"sng\", \"ctr\"]),\n getLine([\"12700\", \"flat\", \"sng\", \"ctr\"]),\n getLine([\"19050\", \"flat\", \"sng\", \"ctr\"])\n ]\n});\nvar getEffectStyleList = () => ({\n name: \"a:effectStyleLst\",\n children: [\n getEffectStyle(),\n getEffectStyle(),\n getEffectStyle([\"57150\", \"19050\", \"5400000\", \"ctr\", \"0\"])\n ]\n});\nvar getBgFillStyleList = () => ({\n name: \"a:bgFillStyleLst\",\n children: [\n getSolidFill(\"phClr\"),\n getSolidFill(\"phClr\", [\n getPropertyVal(\"tint\", \"95000\"),\n getPropertyVal(\"satMod\", \"170000\")\n ]),\n getGradFill([\n \"1\",\n [\"0\", \"phClr\", \"150000\", \"102000\", \"93000\", \"98000\"],\n [\"50000\", \"phClr\", \"130000\", \"103000\", \"98000\", \"90000\"],\n [\"100000\", \"phClr\", \"120000\", void 0, void 0, \"63000\"],\n [\"5400000\", \"0\"]\n ])\n ]\n});\nvar formatScheme = {\n getTemplate() {\n return {\n name: \"a:fmtScheme\",\n properties: {\n rawMap: {\n name: \"Office\"\n }\n },\n children: [\n getFillStyleList(),\n getLineStyleList(),\n getEffectStyleList(),\n getBgFillStyleList()\n ]\n };\n }\n};\nvar formatScheme_default = formatScheme;\nvar themeElements = {\n getTemplate() {\n return {\n name: \"a:themeElements\",\n children: [\n colorScheme_default.getTemplate(),\n fontScheme_default.getTemplate(),\n formatScheme_default.getTemplate()\n ]\n };\n }\n};\nvar themeElements_default = themeElements;\nvar officeTheme = {\n getTemplate() {\n return {\n name: \"a:theme\",\n properties: {\n prefixedAttributes: [{\n prefix: \"xmlns:\",\n map: {\n a: \"http://schemas.openxmlformats.org/drawingml/2006/main\"\n }\n }],\n rawMap: {\n name: \"Office Theme\"\n }\n },\n children: [\n themeElements_default.getTemplate(),\n {\n name: \"a:objectDefaults\"\n },\n {\n name: \"a:extraClrSchemeLst\"\n }\n ]\n };\n }\n};\nvar office_default = officeTheme;\nvar buildSharedString = (strMap) => {\n const ret = [];\n for (const key of strMap.keys()) {\n const textNode = key.toString();\n const child = {\n name: \"t\",\n textNode: _40.escapeString(textNode)\n };\n const preserveSpaces = textNode.trim().length !== textNode.length;\n if (preserveSpaces) {\n child.properties = {\n rawMap: {\n \"xml:space\": \"preserve\"\n }\n };\n }\n ret.push({\n name: \"si\",\n children: [child]\n });\n }\n return ret;\n};\nvar sharedStrings = {\n getTemplate(strings) {\n return {\n name: \"sst\",\n properties: {\n rawMap: {\n xmlns: \"http://schemas.openxmlformats.org/spreadsheetml/2006/main\",\n count: strings.size,\n uniqueCount: strings.size\n }\n },\n children: buildSharedString(strings)\n };\n }\n};\nvar sharedStrings_default = sharedStrings;\nfunction prepareString(str) {\n const split = str.split(/(\\[[^\\]]*\\])/);\n for (let i = 0; i < split.length; i++) {\n let currentString = split[i];\n if (!currentString.length) {\n continue;\n }\n if (!currentString.startsWith(\"[\")) {\n currentString = currentString.replace(/\\$/g, '\"$\"');\n }\n split[i] = _212.escapeString(currentString);\n }\n return split.join(\"\");\n}\nvar numberFormatFactory = {\n getTemplate(numberFormat) {\n let { formatCode, numFmtId } = numberFormat;\n if (formatCode.length) {\n formatCode = prepareString(formatCode);\n }\n return {\n name: \"numFmt\",\n properties: {\n rawMap: {\n formatCode,\n numFmtId\n }\n }\n };\n }\n};\nvar numberFormat_default = numberFormatFactory;\nvar numberFormatsFactory = {\n getTemplate(numberFormats) {\n return {\n name: \"numFmts\",\n properties: {\n rawMap: {\n count: numberFormats.length\n }\n },\n children: numberFormats.map((numberFormat) => numberFormat_default.getTemplate(numberFormat))\n };\n }\n};\nvar numberFormats_default = numberFormatsFactory;\nvar fontFactory = {\n getTemplate(font) {\n const {\n size,\n colorTheme,\n color = \"FF000000\",\n fontName = \"Calibri\",\n family,\n scheme,\n italic,\n bold,\n strikeThrough,\n outline,\n shadow,\n underline,\n verticalAlign\n } = font;\n const children = [\n { name: \"sz\", properties: { rawMap: { val: size } } },\n { name: \"color\", properties: { rawMap: { theme: colorTheme, rgb: color } } },\n { name: \"name\", properties: { rawMap: { val: fontName } } }\n ];\n if (family) {\n children.push({ name: \"family\", properties: { rawMap: { val: family } } });\n }\n if (scheme) {\n children.push({ name: \"scheme\", properties: { rawMap: { val: scheme } } });\n }\n if (italic) {\n children.push({ name: \"i\" });\n }\n if (bold) {\n children.push({ name: \"b\" });\n }\n if (strikeThrough) {\n children.push({ name: \"strike\" });\n }\n if (outline) {\n children.push({ name: \"outline\" });\n }\n if (shadow) {\n children.push({ name: \"shadow\" });\n }\n if (underline) {\n children.push({ name: \"u\", properties: { rawMap: { val: underline } } });\n }\n if (verticalAlign) {\n children.push({ name: \"vertAlign\", properties: { rawMap: { val: verticalAlign } } });\n }\n return { name: \"font\", children };\n }\n};\nvar font_default = fontFactory;\nvar fontsFactory = {\n getTemplate(fonts) {\n return {\n name: \"fonts\",\n properties: {\n rawMap: {\n count: fonts.length\n }\n },\n children: fonts.map((font) => font_default.getTemplate(font))\n };\n }\n};\nvar fonts_default = fontsFactory;\nvar fillFactory = {\n getTemplate(fill) {\n const { patternType, fgTheme, fgTint, fgRgb, bgRgb, bgIndexed } = fill;\n const pf = {\n name: \"patternFill\",\n properties: {\n rawMap: {\n patternType\n }\n }\n };\n if (fgTheme || fgTint || fgRgb) {\n pf.children = [{\n name: \"fgColor\",\n properties: {\n rawMap: {\n theme: fgTheme,\n tint: fgTint,\n rgb: fgRgb\n }\n }\n }];\n }\n if (bgIndexed || bgRgb) {\n if (!pf.children) {\n pf.children = [];\n }\n pf.children.push({\n name: \"bgColor\",\n properties: {\n rawMap: {\n indexed: bgIndexed,\n rgb: bgRgb\n }\n }\n });\n }\n return {\n name: \"fill\",\n children: [pf]\n };\n }\n};\nvar fill_default = fillFactory;\nvar fillsFactory = {\n getTemplate(fills) {\n return {\n name: \"fills\",\n properties: {\n rawMap: {\n count: fills.length\n }\n },\n children: fills.map((fill) => fill_default.getTemplate(fill))\n };\n }\n};\nvar fills_default = fillsFactory;\nvar getWeightName = (value) => {\n switch (value) {\n case 1:\n return \"thin\";\n case 2:\n return \"medium\";\n case 3:\n return \"thick\";\n default:\n return \"hair\";\n }\n};\nvar mappedBorderNames = {\n None: \"None\",\n Dot: \"Dotted\",\n Dash: \"Dashed\",\n Double: \"Double\",\n DashDot: \"DashDot\",\n DashDotDot: \"DashDotDot\",\n SlantDashDot: \"SlantDashDot\"\n};\nvar mediumBorders = [\"Dashed\", \"DashDot\", \"DashDotDot\"];\nvar colorMap = {\n None: \"none\",\n Solid: \"solid\",\n Gray50: \"mediumGray\",\n Gray75: \"darkGray\",\n Gray25: \"lightGray\",\n HorzStripe: \"darkHorizontal\",\n VertStripe: \"darkVertical\",\n ReverseDiagStripe: \"darkDown\",\n DiagStripe: \"darkUp\",\n DiagCross: \"darkGrid\",\n ThickDiagCross: \"darkTrellis\",\n ThinHorzStripe: \"lightHorizontal\",\n ThinVertStripe: \"lightVertical\",\n ThinReverseDiagStripe: \"lightDown\",\n ThinDiagStripe: \"lightUp\",\n ThinHorzCross: \"lightGrid\",\n ThinDiagCross: \"lightTrellis\",\n Gray125: \"gray125\",\n Gray0625: \"gray0625\"\n};\nvar horizontalAlignmentMap = {\n Automatic: \"general\",\n Left: \"left\",\n Center: \"center\",\n Right: \"right\",\n Fill: \"fill\",\n Justify: \"justify\",\n CenterAcrossSelection: \"centerContinuous\",\n Distributed: \"distributed\",\n JustifyDistributed: \"justify\"\n};\nvar verticalAlignmentMap = {\n Automatic: void 0,\n Top: \"top\",\n Bottom: \"bottom\",\n Center: \"center\",\n Justify: \"justify\",\n Distributed: \"distributed\",\n JustifyDistributed: \"justify\"\n};\nvar convertLegacyPattern = (name) => {\n if (!name) {\n return \"none\";\n }\n return colorMap[name] || name;\n};\nvar convertLegacyColor = (color) => {\n if (color == void 0) {\n return color;\n }\n if (color.charAt(0) === \"#\") {\n color = color.substring(1);\n }\n return color.length === 6 ? \"FF\" + color : color;\n};\nvar convertLegacyBorder = (type, weight) => {\n if (!type) {\n return \"thin\";\n }\n const namedWeight = getWeightName(weight);\n const mappedName = mappedBorderNames[type];\n if (type === \"Continuous\") {\n return namedWeight;\n }\n if (namedWeight === \"medium\" && mediumBorders.indexOf(mappedName) !== -1) {\n return `medium${mappedName}`;\n }\n return mappedName.charAt(0).toLowerCase() + mappedName.substring(1);\n};\nvar convertLegacyHorizontalAlignment = (alignment) => {\n return horizontalAlignmentMap[alignment] || \"general\";\n};\nvar convertLegacyVerticalAlignment = (alignment) => {\n return verticalAlignmentMap[alignment] || void 0;\n};\nvar getBorderColor = (color) => {\n return {\n name: \"color\",\n properties: {\n rawMap: {\n rgb: convertLegacyColor(color || \"#000000\")\n }\n }\n };\n};\nvar borderFactory = {\n getTemplate(border) {\n const { left, right, top, bottom, diagonal } = border;\n const leftChildren = left ? [getBorderColor(left.color)] : void 0;\n const rightChildren = right ? [getBorderColor(right.color)] : void 0;\n const topChildren = top ? [getBorderColor(top.color)] : void 0;\n const bottomChildren = bottom ? [getBorderColor(bottom.color)] : void 0;\n const diagonalChildren = diagonal ? [getBorderColor(diagonal.color)] : void 0;\n return {\n name: \"border\",\n children: [{\n name: \"left\",\n properties: { rawMap: { style: left && left.style } },\n children: leftChildren\n }, {\n name: \"right\",\n properties: { rawMap: { style: right && right.style } },\n children: rightChildren\n }, {\n name: \"top\",\n properties: { rawMap: { style: top && top.style } },\n children: topChildren\n }, {\n name: \"bottom\",\n properties: { rawMap: { style: bottom && bottom.style } },\n children: bottomChildren\n }, {\n name: \"diagonal\",\n properties: { rawMap: { style: diagonal && diagonal.style } },\n children: diagonalChildren\n }]\n };\n }\n};\nvar border_default = borderFactory;\nvar bordersFactory = {\n getTemplate(borders) {\n return {\n name: \"borders\",\n properties: {\n rawMap: {\n count: borders.length\n }\n },\n children: borders.map((border) => border_default.getTemplate(border))\n };\n }\n};\nvar borders_default = bordersFactory;\nvar getReadingOrderId = (readingOrder) => {\n const order = [\"Context\", \"LeftToRight\", \"RightToLeft\"];\n const pos = order.indexOf(readingOrder);\n return Math.max(pos, 0);\n};\nvar alignmentFactory = {\n getTemplate(alignment) {\n const { horizontal, indent, readingOrder, rotate, shrinkToFit, vertical, wrapText } = alignment;\n return {\n name: \"alignment\",\n properties: {\n rawMap: {\n horizontal: horizontal && convertLegacyHorizontalAlignment(horizontal),\n indent,\n readingOrder: readingOrder && getReadingOrderId(readingOrder),\n textRotation: rotate,\n shrinkToFit,\n vertical: vertical && convertLegacyVerticalAlignment(vertical),\n wrapText\n }\n }\n };\n }\n};\nvar alignment_default = alignmentFactory;\nvar protectionFactory = {\n getTemplate(protection) {\n const locked = protection.protected === false ? 0 : 1;\n const hidden = protection.hideFormula === true ? 1 : 0;\n return {\n name: \"protection\",\n properties: {\n rawMap: {\n hidden,\n locked\n }\n }\n };\n }\n};\nvar protection_default = protectionFactory;\nvar xfFactory = {\n getTemplate(xf) {\n const { alignment, borderId, fillId, fontId, numFmtId, protection, quotePrefix, xfId } = xf;\n const children = [];\n if (alignment) {\n children.push(alignment_default.getTemplate(alignment));\n }\n if (protection) {\n children.push(protection_default.getTemplate(protection));\n }\n return {\n name: \"xf\",\n properties: {\n rawMap: {\n applyAlignment: alignment ? 1 : void 0,\n applyProtection: protection ? 1 : void 0,\n applyBorder: borderId ? 1 : void 0,\n applyFill: fillId ? 1 : void 0,\n borderId,\n fillId,\n applyFont: fontId ? 1 : void 0,\n fontId,\n applyNumberFormat: numFmtId ? 1 : void 0,\n numFmtId,\n quotePrefix: quotePrefix ? 1 : void 0,\n xfId\n }\n },\n children: children.length ? children : void 0\n };\n }\n};\nvar xf_default = xfFactory;\nvar cellStylesXfsFactory = {\n getTemplate(xfs) {\n return {\n name: \"cellStyleXfs\",\n properties: {\n rawMap: {\n count: xfs.length\n }\n },\n children: xfs.map((xf) => xf_default.getTemplate(xf))\n };\n }\n};\nvar cellStyleXfs_default = cellStylesXfsFactory;\nvar cellXfsFactory = {\n getTemplate(xfs) {\n return {\n name: \"cellXfs\",\n properties: {\n rawMap: {\n count: xfs.length\n }\n },\n children: xfs.map((xf) => xf_default.getTemplate(xf))\n };\n }\n};\nvar cellXfs_default = cellXfsFactory;\nvar borderFactory2 = {\n getTemplate(cellStyle) {\n const { builtinId, name, xfId } = cellStyle;\n return {\n name: \"cellStyle\",\n properties: {\n rawMap: {\n builtinId,\n name,\n xfId\n }\n }\n };\n }\n};\nvar cellStyle_default = borderFactory2;\nvar cellStylesFactory = {\n getTemplate(cellStyles) {\n return {\n name: \"cellStyles\",\n properties: {\n rawMap: {\n count: cellStyles.length\n }\n },\n children: cellStyles.map((cellStyle) => cellStyle_default.getTemplate(cellStyle))\n };\n }\n};\nvar cellStyles_default = cellStylesFactory;\nvar stylesMap;\nvar registeredNumberFmts;\nvar registeredFonts;\nvar registeredFills;\nvar registeredBorders;\nvar registeredCellStyleXfs;\nvar registeredCellXfs;\nvar registeredCellStyles;\nvar currentSheet;\nvar getStyleName = (name, currentSheet2) => {\n if (name.indexOf(\"mixedStyle\") !== -1 && currentSheet2 > 1) {\n name += `_${currentSheet2}`;\n }\n return name;\n};\nvar resetStylesheetValues = () => {\n stylesMap = { base: 0 };\n registeredNumberFmts = [];\n registeredFonts = [{ fontName: \"Calibri\", colorTheme: \"1\", family: \"2\", scheme: \"minor\" }];\n registeredFills = [{ patternType: \"none\" }, { patternType: \"gray125\" }];\n registeredBorders = [{ left: void 0, right: void 0, top: void 0, bottom: void 0, diagonal: void 0 }];\n registeredCellStyleXfs = [{ borderId: 0, fillId: 0, fontId: 0, numFmtId: 0 }];\n registeredCellXfs = [{ borderId: 0, fillId: 0, fontId: 0, numFmtId: 0, xfId: 0 }];\n registeredCellStyles = [{ builtinId: 0, name: \"Normal\", xfId: 0 }];\n};\nvar registerFill = (fill) => {\n const convertedPattern = convertLegacyPattern(fill.pattern);\n const convertedFillColor = convertLegacyColor(fill.color);\n const convertedPatternColor = convertLegacyColor(fill.patternColor);\n let pos = registeredFills.findIndex((currentFill) => {\n const { patternType, fgRgb, bgRgb } = currentFill;\n if (patternType != convertedPattern || fgRgb != convertedFillColor || bgRgb != convertedPatternColor) {\n return false;\n }\n return true;\n });\n if (pos === -1) {\n pos = registeredFills.length;\n registeredFills.push({ patternType: convertedPattern, fgRgb: convertedFillColor, bgRgb: convertedPatternColor });\n }\n return pos;\n};\nvar registerNumberFmt = (format) => {\n if (numberFormatMap[format]) {\n return numberFormatMap[format];\n }\n let pos = registeredNumberFmts.findIndex((currentFormat) => currentFormat.formatCode === format);\n if (pos === -1) {\n pos = registeredNumberFmts.length + 164;\n registeredNumberFmts.push({ formatCode: format, numFmtId: pos });\n } else {\n pos = registeredNumberFmts[pos].numFmtId;\n }\n return pos;\n};\nvar registerBorders = (borders) => {\n const { borderBottom, borderTop, borderLeft, borderRight } = borders;\n let bottomStyle;\n let topStyle;\n let leftStyle;\n let rightStyle;\n let bottomColor;\n let topColor;\n let leftColor;\n let rightColor;\n if (borderLeft) {\n leftStyle = convertLegacyBorder(borderLeft.lineStyle, borderLeft.weight);\n leftColor = convertLegacyColor(borderLeft.color);\n }\n if (borderRight) {\n rightStyle = convertLegacyBorder(borderRight.lineStyle, borderRight.weight);\n rightColor = convertLegacyColor(borderRight.color);\n }\n if (borderBottom) {\n bottomStyle = convertLegacyBorder(borderBottom.lineStyle, borderBottom.weight);\n bottomColor = convertLegacyColor(borderBottom.color);\n }\n if (borderTop) {\n topStyle = convertLegacyBorder(borderTop.lineStyle, borderTop.weight);\n topColor = convertLegacyColor(borderTop.color);\n }\n let pos = registeredBorders.findIndex((currentBorder) => {\n const { left, right, top, bottom } = currentBorder;\n if (!left && (leftStyle || leftColor)) {\n return false;\n }\n if (!right && (rightStyle || rightColor)) {\n return false;\n }\n if (!top && (topStyle || topColor)) {\n return false;\n }\n if (!bottom && (bottomStyle || bottomColor)) {\n return false;\n }\n const { style: clS, color: clC } = left || {};\n const { style: crS, color: crC } = right || {};\n const { style: ctS, color: ctC } = top || {};\n const { style: cbS, color: cbC } = bottom || {};\n if (clS != leftStyle || clC != leftColor) {\n return false;\n }\n if (crS != rightStyle || crC != rightColor) {\n return false;\n }\n if (ctS != topStyle || ctC != topColor) {\n return false;\n }\n if (cbS != bottomStyle || cbC != bottomColor) {\n return false;\n }\n return true;\n });\n if (pos === -1) {\n pos = registeredBorders.length;\n registeredBorders.push({\n left: {\n style: leftStyle,\n color: leftColor\n },\n right: {\n style: rightStyle,\n color: rightColor\n },\n top: {\n style: topStyle,\n color: topColor\n },\n bottom: {\n style: bottomStyle,\n color: bottomColor\n },\n diagonal: {\n style: void 0,\n color: void 0\n }\n });\n }\n return pos;\n};\nvar registerFont = (font) => {\n const { fontName: name = \"Calibri\", color, size, bold, italic, outline, shadow, strikeThrough, underline, family, verticalAlign } = font;\n const convertedColor = convertLegacyColor(color);\n const familyId = getFontFamilyId(family);\n const convertedUnderline = underline ? underline.toLocaleLowerCase() : void 0;\n const convertedVerticalAlign = verticalAlign ? verticalAlign.toLocaleLowerCase() : void 0;\n let pos = registeredFonts.findIndex((currentFont) => {\n if (currentFont.fontName != name || currentFont.color != convertedColor || currentFont.size != size || currentFont.bold != bold || currentFont.italic != italic || currentFont.outline != outline || currentFont.shadow != shadow || currentFont.strikeThrough != strikeThrough || currentFont.underline != convertedUnderline || currentFont.verticalAlign != convertedVerticalAlign || // @ts-ignore\n currentFont.family != familyId) {\n return false;\n }\n return true;\n });\n if (pos === -1) {\n pos = registeredFonts.length;\n registeredFonts.push({\n fontName: name,\n color: convertedColor,\n size,\n bold,\n italic,\n outline,\n shadow,\n strikeThrough,\n underline: convertedUnderline,\n verticalAlign: convertedVerticalAlign,\n family: familyId != null ? familyId.toString() : void 0\n });\n }\n return pos;\n};\nvar registerStyle = (config) => {\n const { alignment, borders, font, interior, numberFormat, protection, quotePrefix } = config;\n let { id } = config;\n let currentFill = 0;\n let currentBorder = 0;\n let currentFont = 0;\n let currentNumberFmt = 0;\n if (!id) {\n return;\n }\n id = getStyleName(id, currentSheet);\n if (stylesMap[id] != void 0) {\n return;\n }\n if (interior) {\n currentFill = registerFill(interior);\n }\n if (borders) {\n currentBorder = registerBorders(borders);\n }\n if (font) {\n currentFont = registerFont(font);\n }\n if (numberFormat) {\n currentNumberFmt = registerNumberFmt(numberFormat.format);\n }\n stylesMap[id] = registeredCellXfs.length;\n registeredCellXfs.push({\n alignment,\n borderId: currentBorder || 0,\n fillId: currentFill || 0,\n fontId: currentFont || 0,\n numFmtId: currentNumberFmt || 0,\n protection,\n quotePrefix,\n xfId: 0\n });\n};\nvar stylesheetFactory = {\n getTemplate(defaultFontSize) {\n const numberFormats = numberFormats_default.getTemplate(registeredNumberFmts);\n const fonts = fonts_default.getTemplate(registeredFonts.map((font) => __spreadProps6(__spreadValues7({}, font), { size: font.size != null ? font.size : defaultFontSize })));\n const fills = fills_default.getTemplate(registeredFills);\n const borders = borders_default.getTemplate(registeredBorders);\n const cellStylesXfs = cellStyleXfs_default.getTemplate(registeredCellStyleXfs);\n const cellXfs = cellXfs_default.getTemplate(registeredCellXfs);\n const cellStyles = cellStyles_default.getTemplate(registeredCellStyles);\n resetStylesheetValues();\n return {\n name: \"styleSheet\",\n properties: {\n rawMap: {\n \"mc:Ignorable\": \"x14ac x16r2 xr\",\n \"xmlns\": \"http://schemas.openxmlformats.org/spreadsheetml/2006/main\",\n \"xmlns:mc\": \"http://schemas.openxmlformats.org/markup-compatibility/2006\",\n \"xmlns:x14ac\": \"http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac\",\n \"xmlns:x16r2\": \"http://schemas.microsoft.com/office/spreadsheetml/2015/02/main\",\n \"xmlns:xr\": \"http://schemas.microsoft.com/office/spreadsheetml/2014/revision\"\n }\n },\n children: [\n numberFormats,\n fonts,\n fills,\n borders,\n cellStylesXfs,\n cellXfs,\n cellStyles,\n {\n name: \"tableStyles\",\n properties: {\n rawMap: {\n count: 0,\n defaultPivotStyle: \"PivotStyleLight16\",\n defaultTableStyle: \"TableStyleMedium2\"\n }\n }\n }\n ]\n };\n }\n};\nvar getStyleId = (name, currentSheet2) => {\n return stylesMap[getStyleName(name, currentSheet2)] || 0;\n};\nvar registerStyles = (styles, _currentSheet) => {\n currentSheet = _currentSheet;\n if (currentSheet === 1) {\n resetStylesheetValues();\n }\n styles.forEach(registerStyle);\n};\nvar stylesheet_default = stylesheetFactory;\nvar sheetFactory = {\n getTemplate(name, idx) {\n const sheetId = (idx + 1).toString();\n return {\n name: \"sheet\",\n properties: {\n rawMap: {\n \"name\": name,\n \"sheetId\": sheetId,\n \"r:id\": `rId${sheetId}`\n }\n }\n };\n }\n};\nvar sheet_default = sheetFactory;\nvar sheetsFactory = {\n getTemplate(names) {\n return {\n name: \"sheets\",\n children: names.map((sheet, idx) => sheet_default.getTemplate(sheet, idx))\n };\n }\n};\nvar sheets_default = sheetsFactory;\nvar workbookFactory = {\n getTemplate(names) {\n return {\n name: \"workbook\",\n properties: {\n prefixedAttributes: [{\n prefix: \"xmlns:\",\n map: {\n r: \"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n }\n }],\n rawMap: {\n xmlns: \"http://schemas.openxmlformats.org/spreadsheetml/2006/main\"\n }\n },\n children: [sheets_default.getTemplate(names)]\n };\n }\n};\nvar workbook_default = workbookFactory;\nvar getExcelCellWidth = (width) => Math.ceil((width - 12) / 7 + 1);\nvar columnFactory = {\n getTemplate(config) {\n const { min, max, outlineLevel, s, width, hidden, bestFit } = config;\n let excelWidth = 1;\n let customWidth = \"0\";\n if (width > 1) {\n excelWidth = getExcelCellWidth(width);\n customWidth = \"1\";\n }\n return {\n name: \"col\",\n properties: {\n rawMap: {\n min,\n max,\n outlineLevel: outlineLevel != null ? outlineLevel : void 0,\n width: excelWidth,\n style: s,\n hidden: hidden ? \"1\" : \"0\",\n bestFit: bestFit ? \"1\" : \"0\",\n customWidth\n }\n }\n };\n }\n};\nvar column_default = columnFactory;\nvar convertLegacyType = (type) => {\n const t = type.charAt(0).toLowerCase();\n return t === \"s\" ? \"inlineStr\" : t;\n};\nvar cellFactory = {\n getTemplate(config, idx, currentSheet2) {\n const { ref, data, styleId } = config;\n const { type, value } = data || { type: \"empty\", value: null };\n let convertedType = type;\n if (type === \"f\") {\n convertedType = \"str\";\n } else if (type.charAt(0) === type.charAt(0).toUpperCase()) {\n convertedType = convertLegacyType(type);\n }\n const obj = {\n name: \"c\",\n properties: {\n rawMap: {\n r: ref,\n t: convertedType === \"empty\" ? void 0 : convertedType,\n s: styleId ? getStyleId(styleId, currentSheet2) : void 0\n }\n }\n };\n if (convertedType === \"empty\") {\n return obj;\n }\n let children;\n if (convertedType === \"str\" && type === \"f\") {\n children = [{\n name: \"f\",\n textNode: _311.escapeString(value)\n }];\n } else if (convertedType === \"inlineStr\") {\n children = [{\n name: \"is\",\n children: [{\n name: \"t\",\n textNode: _311.escapeString(value)\n }]\n }];\n } else {\n children = [{\n name: \"v\",\n textNode: value\n }];\n }\n return Object.assign({}, obj, { children });\n }\n};\nvar cell_default = cellFactory;\nvar addEmptyCells = (cells, rowIdx) => {\n const mergeMap = [];\n let posCounter = 0;\n for (let i = 0; i < cells.length; i++) {\n const cell = cells[i];\n if (cell.mergeAcross) {\n mergeMap.push({\n pos: i,\n excelPos: posCounter\n });\n posCounter += cell.mergeAcross;\n }\n posCounter++;\n }\n if (mergeMap.length) {\n for (let i = mergeMap.length - 1; i >= 0; i--) {\n const mergedCells = [];\n const cell = cells[mergeMap[i].pos];\n for (let j = 1; j <= cell.mergeAcross; j++) {\n mergedCells.push({\n ref: `${getExcelColumnName(mergeMap[i].excelPos + 1 + j)}${rowIdx + 1}`,\n styleId: cell.styleId,\n data: { type: \"empty\", value: null }\n });\n }\n if (mergedCells.length) {\n cells.splice(mergeMap[i].pos + 1, 0, ...mergedCells);\n }\n }\n }\n};\nvar shouldDisplayCell = (cell) => {\n var _a;\n return ((_a = cell.data) == null ? void 0 : _a.value) !== \"\" || cell.styleId !== void 0;\n};\nvar rowFactory = {\n getTemplate(config, idx, currentSheet2) {\n const { collapsed, hidden, height, outlineLevel, cells = [] } = config;\n addEmptyCells(cells, idx);\n const children = cells.filter(shouldDisplayCell).map((cell, idx2) => cell_default.getTemplate(cell, idx2, currentSheet2));\n return {\n name: \"row\",\n properties: {\n rawMap: {\n r: idx + 1,\n collapsed: collapsed ? \"1\" : \"0\",\n hidden: hidden ? \"1\" : \"0\",\n ht: height,\n customHeight: height != null ? \"1\" : \"0\",\n spans: \"1:1\",\n outlineLevel: outlineLevel || void 0\n }\n },\n children\n };\n }\n};\nvar row_default = rowFactory;\nvar mergeCellFactory = {\n getTemplate(ref) {\n return {\n name: \"mergeCell\",\n properties: {\n rawMap: {\n ref\n }\n }\n };\n }\n};\nvar mergeCell_default = mergeCellFactory;\nvar getMergedCellsAndAddColumnGroups = (rows, cols, suppressColumnOutline) => {\n const mergedCells = [];\n const cellsWithCollapsibleGroups = [];\n rows.forEach((currentRow, rowIdx) => {\n const cells = currentRow.cells;\n let merges = 0;\n let lastCol;\n cells.forEach((currentCell, cellIdx) => {\n const min = cellIdx + merges + 1;\n const start = getExcelColumnName(min);\n const outputRow = rowIdx + 1;\n if (currentCell.mergeAcross) {\n merges += currentCell.mergeAcross;\n const end = getExcelColumnName(cellIdx + merges + 1);\n mergedCells.push(`${start}${outputRow}:${end}${outputRow}`);\n }\n if (!cols[min - 1]) {\n cols[min - 1] = {};\n }\n const { collapsibleRanges } = currentCell;\n if (collapsibleRanges) {\n collapsibleRanges.forEach((range) => {\n cellsWithCollapsibleGroups.push([min + range[0], min + range[1]]);\n });\n }\n lastCol = cols[min - 1];\n lastCol.min = min;\n lastCol.max = min;\n currentCell.ref = `${start}${outputRow}`;\n });\n });\n cellsWithCollapsibleGroups.sort((a, b) => {\n if (a[0] !== b[0]) {\n return a[0] - b[0];\n }\n return b[1] - a[1];\n });\n const rangeMap = /* @__PURE__ */ new Map();\n const outlineLevel = /* @__PURE__ */ new Map();\n cellsWithCollapsibleGroups.filter((currentRange) => {\n const rangeString = currentRange.toString();\n const inMap = rangeMap.get(rangeString);\n if (inMap) {\n return false;\n }\n rangeMap.set(rangeString, true);\n return true;\n }).forEach((range) => {\n const refCol = cols.find((col) => col.min == range[0] && col.max == range[1]);\n const currentOutlineLevel = outlineLevel.get(range[0]);\n cols.push({\n min: range[0],\n max: range[1],\n outlineLevel: suppressColumnOutline ? void 0 : currentOutlineLevel || 1,\n width: (refCol || { width: 100 }).width\n });\n outlineLevel.set(range[0], (currentOutlineLevel || 0) + 1);\n });\n return mergedCells;\n};\nvar getPageOrientation = (orientation) => {\n if (!orientation || orientation !== \"Portrait\" && orientation !== \"Landscape\") {\n return \"portrait\";\n }\n return orientation.toLocaleLowerCase();\n};\nvar getPageSize = (pageSize) => {\n if (pageSize == null) {\n return 1;\n }\n const positions = [\"Letter\", \"Letter Small\", \"Tabloid\", \"Ledger\", \"Legal\", \"Statement\", \"Executive\", \"A3\", \"A4\", \"A4 Small\", \"A5\", \"A6\", \"B4\", \"B5\", \"Folio\", \"Envelope\", \"Envelope DL\", \"Envelope C5\", \"Envelope B5\", \"Envelope C3\", \"Envelope C4\", \"Envelope C6\", \"Envelope Monarch\", \"Japanese Postcard\", \"Japanese Double Postcard\"];\n const pos = positions.indexOf(pageSize);\n return pos === -1 ? 1 : pos + 1;\n};\nvar addColumns = (columns) => {\n return (params) => {\n if (columns.length) {\n params.children.push({\n name: \"cols\",\n children: columns.map((column) => column_default.getTemplate(column))\n });\n }\n return params;\n };\n};\nvar addSheetData = (rows, sheetNumber) => {\n return (params) => {\n if (rows.length) {\n params.children.push({\n name: \"sheetData\",\n children: rows.map((row, idx) => row_default.getTemplate(row, idx, sheetNumber))\n });\n }\n return params;\n };\n};\nvar addMergeCells = (mergeCells) => {\n return (params) => {\n if (mergeCells.length) {\n params.children.push({\n name: \"mergeCells\",\n properties: {\n rawMap: {\n count: mergeCells.length\n }\n },\n children: mergeCells.map((mergedCell) => mergeCell_default.getTemplate(mergedCell))\n });\n }\n return params;\n };\n};\nvar addPageMargins = (margins) => {\n return (params) => {\n const { top = 0.75, right = 0.7, bottom = 0.75, left = 0.7, header = 0.3, footer = 0.3 } = margins;\n params.children.push({\n name: \"pageMargins\",\n properties: {\n rawMap: { bottom, footer, header, left, right, top }\n }\n });\n return params;\n };\n};\nvar addPageSetup = (pageSetup) => {\n return (params) => {\n if (pageSetup) {\n params.children.push({\n name: \"pageSetup\",\n properties: {\n rawMap: {\n horizontalDpi: 0,\n verticalDpi: 0,\n orientation: getPageOrientation(pageSetup.orientation),\n paperSize: getPageSize(pageSetup.pageSize)\n }\n }\n });\n }\n return params;\n };\n};\nvar replaceHeaderFooterTokens = (value) => {\n const map = {\n \"&[Page]\": \"&P\",\n \"&[Pages]\": \"&N\",\n \"&[Date]\": \"&D\",\n \"&[Time]\": \"&T\",\n \"&[Tab]\": \"&A\",\n \"&[Path]\": \"&Z\",\n \"&[File]\": \"&F\",\n \"&[Picture]\": \"&G\"\n };\n _46.iterateObject(map, (key, val) => {\n value = value.replace(key, val);\n });\n return value;\n};\nvar getHeaderPosition = (position) => {\n if (position === \"Center\") {\n return \"C\";\n }\n if (position === \"Right\") {\n return \"R\";\n }\n return \"L\";\n};\nvar applyHeaderFontStyle = (headerString, font) => {\n if (!font) {\n return headerString;\n }\n headerString += \"&"\";\n headerString += font.fontName || \"Calibri\";\n if (font.bold !== font.italic) {\n headerString += font.bold ? \",Bold\" : \",Italic\";\n } else if (font.bold) {\n headerString += \",Bold Italic\";\n } else {\n headerString += \",Regular\";\n }\n headerString += \""\";\n if (font.size) {\n headerString += `&${font.size}`;\n }\n if (font.strikeThrough) {\n headerString += \"&S\";\n }\n if (font.underline) {\n headerString += `&${font.underline === \"Double\" ? \"E\" : \"U\"}`;\n }\n if (font.color) {\n headerString += `&K${font.color.replace(\"#\", \"\").toUpperCase()}`;\n }\n return headerString;\n};\nvar processHeaderFooterContent = (content, location, rule) => content.reduce((prev, curr, idx) => {\n const pos = getHeaderPosition(curr.position);\n const output = applyHeaderFontStyle(`${prev}&${pos}`, curr.font);\n const PositionMap = [\"Left\", \"Center\", \"Right\"];\n if (!curr.position) {\n curr.position = PositionMap[idx];\n }\n const { image } = curr;\n if (curr.value === \"&[Picture]\" && image) {\n const imagePosition = `${pos}${location}${rule}`;\n ExcelXlsxFactory.addHeaderFooterImageToMap(image, imagePosition);\n }\n return `${output}${_46.escapeString(replaceHeaderFooterTokens(curr.value))}`;\n}, \"\");\nvar buildHeaderFooter = (headerFooterConfig) => {\n const rules = [\"all\", \"first\", \"even\"];\n const headersAndFooters = [];\n rules.forEach((rule) => {\n const headerFooter = headerFooterConfig[rule];\n const namePrefix = rule === \"all\" ? \"odd\" : rule;\n if (!headerFooter) {\n return;\n }\n for (const [key, value] of Object.entries(headerFooter)) {\n const nameSuffix = `${key.charAt(0).toUpperCase()}${key.slice(1)}`;\n const location = key[0].toUpperCase();\n if (value) {\n const normalizedRule = rule === \"all\" ? \"\" : rule.toUpperCase();\n headersAndFooters.push({\n name: `${namePrefix}${nameSuffix}`,\n properties: {\n rawMap: { \"xml:space\": \"preserve\" }\n },\n textNode: processHeaderFooterContent(value, location, normalizedRule)\n });\n }\n }\n });\n return headersAndFooters;\n};\nvar addHeaderFooter = (headerFooterConfig) => {\n return (params) => {\n if (!headerFooterConfig) {\n return params;\n }\n const differentFirst = headerFooterConfig.first != null ? 1 : 0;\n const differentOddEven = headerFooterConfig.even != null ? 1 : 0;\n params.children.push({\n name: \"headerFooter\",\n properties: {\n rawMap: {\n differentFirst,\n differentOddEven\n }\n },\n children: buildHeaderFooter(headerFooterConfig)\n });\n return params;\n };\n};\nvar addExcelTableRel = (excelTable) => {\n return (params) => {\n if (excelTable) {\n params.children.push({\n name: \"tableParts\",\n properties: {\n rawMap: {\n count: \"1\"\n }\n },\n children: [{\n name: \"tablePart\",\n properties: {\n rawMap: {\n \"r:id\": `rId${++params.rIdCounter}`\n }\n }\n }]\n });\n }\n return params;\n };\n};\nvar addDrawingRel = (currentSheet2) => {\n return (params) => {\n const worksheetImages = ExcelXlsxFactory.worksheetImages.get(currentSheet2);\n if (worksheetImages == null ? void 0 : worksheetImages.length) {\n params.children.push({\n name: \"drawing\",\n properties: {\n rawMap: {\n \"r:id\": `rId${++params.rIdCounter}`\n }\n }\n });\n }\n return params;\n };\n};\nvar addVmlDrawingRel = (currentSheet2) => {\n return (params) => {\n if (ExcelXlsxFactory.worksheetHeaderFooterImages.get(currentSheet2)) {\n params.children.push({\n name: \"legacyDrawingHF\",\n properties: {\n rawMap: {\n \"r:id\": `rId${++params.rIdCounter}`\n }\n }\n });\n }\n return params;\n };\n};\nvar addSheetPr = () => {\n return (params) => {\n params.children.push({\n name: \"sheetPr\",\n children: [{\n name: \"outlinePr\",\n properties: {\n rawMap: {\n summaryBelow: 0\n }\n }\n }]\n });\n return params;\n };\n};\nvar addSheetFormatPr = (rows) => {\n return (params) => {\n const maxOutline = rows.reduce((prev, row) => {\n if (row.outlineLevel && row.outlineLevel > prev) {\n return row.outlineLevel;\n }\n return prev;\n }, 0);\n params.children.push({\n name: \"sheetFormatPr\",\n properties: {\n rawMap: {\n baseColWidth: 10,\n defaultRowHeight: 16,\n outlineLevelRow: maxOutline ? maxOutline : void 0\n }\n }\n });\n return params;\n };\n};\nvar worksheetFactory = {\n getTemplate(params) {\n const { worksheet, currentSheet: currentSheet2, config } = params;\n const { margins = {}, pageSetup, headerFooterConfig, suppressColumnOutline } = config;\n const { table } = worksheet;\n const { rows, columns } = table;\n const mergedCells = columns && columns.length ? getMergedCellsAndAddColumnGroups(rows, columns, !!suppressColumnOutline) : [];\n const { worksheetDataTables } = ExcelXlsxFactory;\n const worksheetExcelTables = worksheetDataTables.get(currentSheet2);\n const createWorksheetChildren = _46.compose(\n addSheetPr(),\n addSheetFormatPr(rows),\n addColumns(columns),\n addSheetData(rows, currentSheet2 + 1),\n addMergeCells(mergedCells),\n addPageMargins(margins),\n addPageSetup(pageSetup),\n addHeaderFooter(headerFooterConfig),\n addDrawingRel(currentSheet2),\n addVmlDrawingRel(currentSheet2),\n addExcelTableRel(worksheetExcelTables)\n );\n const { children } = createWorksheetChildren({ children: [], rIdCounter: 0 });\n return {\n name: \"worksheet\",\n properties: {\n prefixedAttributes: [{\n prefix: \"xmlns:\",\n map: {\n r: \"http://schemas.openxmlformats.org/officeDocument/2006/relationships\"\n }\n }],\n rawMap: {\n xmlns: \"http://schemas.openxmlformats.org/spreadsheetml/2006/main\"\n }\n },\n children\n };\n }\n};\nvar worksheet_default = worksheetFactory;\nvar relationshipFactory = {\n getTemplate(config) {\n const { Id, Type, Target } = config;\n return {\n name: \"Relationship\",\n properties: {\n rawMap: {\n Id,\n Type,\n Target\n }\n }\n };\n }\n};\nvar relationship_default = relationshipFactory;\nvar relationshipsFactory = {\n getTemplate(c) {\n const children = c.map((relationship) => relationship_default.getTemplate(relationship));\n return {\n name: \"Relationships\",\n properties: {\n rawMap: {\n xmlns: \"http://schemas.openxmlformats.org/package/2006/relationships\"\n }\n },\n children\n };\n }\n};\nvar relationships_default = relationshipsFactory;\nvar getShapeLayout = () => ({\n name: \"o:shapelayout\",\n properties: {\n prefixedAttributes: [{\n prefix: \"v:\",\n map: {\n ext: \"edit\"\n }\n }]\n },\n children: [\n {\n name: \"o:idmap\",\n properties: {\n prefixedAttributes: [{\n prefix: \"v:\",\n map: {\n ext: \"edit\"\n }\n }],\n rawMap: {\n data: \"1\"\n }\n }\n }\n ]\n});\nvar getStroke = () => ({\n name: \"v:stroke\",\n properties: {\n rawMap: {\n joinstyle: \"miter\"\n }\n }\n});\nvar getFormulas = (formulas) => ({\n name: \"v:formulas\",\n children: formulas.map((formula) => ({\n name: \"v:f\",\n properties: {\n rawMap: {\n eqn: formula\n }\n }\n }))\n});\nvar getPath = () => ({\n name: \"v:path\",\n properties: {\n prefixedAttributes: [{\n prefix: \"o:\",\n map: {\n connecttype: \"rect\",\n extrusionok: \"f\"\n }\n }],\n rawMap: {\n gradientshapeok: \"t\"\n }\n }\n});\nvar getLock = (params) => {\n const { aspectratio, rotation } = params || {};\n const rawMap = {};\n if (aspectratio) {\n rawMap.aspectratio = \"t\";\n }\n if (rotation) {\n rawMap.rotation = \"t\";\n }\n return {\n name: \"o:lock\",\n properties: {\n prefixedAttributes: [{\n prefix: \"v:\",\n map: {\n ext: \"edit\"\n }\n }],\n rawMap\n }\n };\n};\nfunction mapNumber(value, startSource, endSource, startTarget, endTarget) {\n return (value - startSource) / (endSource - startSource) * (endTarget - startTarget) + startTarget;\n}\nvar gainMap = {\n 0: \"0\",\n 5: \"6554f\",\n 10: \"13107f\",\n 15: \"19661f\",\n 20: \"26214f\",\n 25: \".5\",\n 30: \"39322f\",\n 35: \"45875f\",\n 40: \"52429f\",\n 45: \"58982f\",\n 50: \"1\",\n 55: \"72818f\",\n 60: \"1.25\",\n 65: \"93623f\",\n 70: \"109227f\",\n 75: \"2\",\n 80: \"2.5\",\n 85: \"3.4\",\n 90: \"5\",\n 95: \"10\",\n 96: \"12.5\",\n 97: \"1092267f\",\n 98: \"25\",\n 99: \"50\",\n 100: \"2147483647f\"\n};\nvar getImageData = (image, idx) => {\n var _a;\n let rawMap;\n const { recolor, brightness, contrast, id } = image;\n if (recolor) {\n rawMap = {};\n if (recolor === \"Washout\" || recolor === \"Grayscale\") {\n rawMap.gain = \"19661f\";\n rawMap.blacklevel = \"22938f\";\n }\n if (recolor === \"Black & White\" || recolor === \"Grayscale\") {\n rawMap.grayscale = \"t\";\n if (recolor === \"Black & White\") {\n rawMap.bilevel = \"t\";\n }\n }\n }\n if (!recolor || recolor === \"Grayscale\") {\n if (!rawMap) {\n rawMap = {};\n }\n if (contrast != null && contrast !== 50) {\n rawMap.gain = (_a = gainMap[contrast]) != null ? _a : \"1\";\n }\n if (brightness != null && brightness !== 50) {\n rawMap.blacklevel = mapNumber(brightness, 0, 100, -0.5, 0.5).toString();\n }\n }\n return {\n name: \"v:imagedata\",\n properties: {\n prefixedAttributes: [{\n prefix: \"o:\",\n map: {\n relid: `rId${idx}`,\n title: id\n }\n }],\n rawMap\n }\n };\n};\nvar getShapeType = () => {\n const formulas = [\n \"if lineDrawn pixelLineWidth 0\",\n \"sum @0 1 0\",\n \"sum 0 0 @1\",\n \"prod @2 1 2\",\n \"prod @3 21600 pixelWidth\",\n \"prod @3 21600 pixelHeight\",\n \"sum @0 0 1\",\n \"prod @6 1 2\",\n \"prod @7 21600 pixelWidth\",\n \"sum @8 21600 0\",\n \"prod @7 21600 pixelHeight\",\n \"sum @10 21600 0\"\n ];\n return {\n name: \"v:shapetype\",\n properties: {\n prefixedAttributes: [{\n prefix: \"o:\",\n map: {\n spt: \"75\",\n preferrelative: \"t\"\n }\n }],\n rawMap: {\n coordsize: \"21600,21600\",\n filled: \"f\",\n id: \"_x0000_t75\",\n path: \"m@4@5l@4@11@9@11@9@5xe\",\n stroked: \"f\"\n }\n },\n children: [\n getStroke(),\n getFormulas(formulas),\n getPath(),\n getLock({ aspectratio: true })\n ]\n };\n};\nvar pixelToPoint = (value) => Math.floor((value != null ? value : 0) * 0.74999943307122);\nvar getShape = (image, idx) => {\n const { width = 0, height = 0, altText } = image;\n const imageWidth = pixelToPoint(width);\n const imageHeight = pixelToPoint(height);\n return {\n name: \"v:shape\",\n properties: {\n rawMap: {\n id: image.headerFooterPosition,\n \"o:spid\": \"_x0000_s1025\",\n style: `position: absolute; margin-left: 0; margin-top: 10in; margin-bottom: 0; margin-right: 0; width: ${imageWidth}pt; height: ${imageHeight}pt; z-index: ${idx + 1}`,\n type: \"#_x0000_t75\",\n alt: altText\n }\n },\n children: [\n getImageData(image, idx + 1),\n getLock({ rotation: true })\n ]\n };\n};\nvar vmlDrawingFactory = {\n getTemplate(params) {\n const headerFooterImages = ExcelXlsxFactory.worksheetHeaderFooterImages.get(params.sheetIndex) || [];\n const children = [getShapeLayout(), getShapeType(), ...headerFooterImages.map((img, idx) => getShape(img, idx))];\n return {\n name: \"xml\",\n properties: {\n prefixedAttributes: [{\n prefix: \"xmlns:\",\n map: {\n v: \"urn:schemas-microsoft-com:vml\",\n o: \"urn:schemas-microsoft-com:office:office\",\n x: \"urn:schemas-microsoft-com:office:excel\"\n }\n }]\n },\n children\n };\n }\n};\nvar vmlDrawing_default = vmlDrawingFactory;\nvar _ExcelXlsxFactory = class _ExcelXlsxFactory2 {\n static createExcel(styles, worksheet, config) {\n this.addSheetName(worksheet);\n registerStyles(styles, this.sheetNames.length);\n let newConfig = Object.assign({}, config);\n if (config.exportAsExcelTable) {\n if (config.columnModel.isPivotActive()) {\n this.showExcelTableNonCompatibleFeaturesWarning(\"pivot mode\");\n newConfig.exportAsExcelTable = false;\n }\n if (config.gos.get(\"masterDetail\")) {\n this.showExcelTableNonCompatibleFeaturesWarning(\"master/detail\");\n newConfig.exportAsExcelTable = false;\n }\n }\n this.processTableConfig(worksheet, newConfig);\n return this.createWorksheet(worksheet, newConfig);\n }\n static showExcelTableNonCompatibleFeaturesWarning(featureName) {\n console.warn(\n `AG Grid: Excel table export does not work with ${featureName}. The exported Excel file will not contain any Excel tables.\nPlease turn off ${featureName} to enable Excel table exports.`\n );\n }\n static getTableNameFromIndex(idx) {\n return `table${idx + 1}`;\n }\n static getSanitizedTableName(name) {\n return name.replace(/^[^a-zA-Z_]+/, \"_\").replace(/\\s/g, \"_\").replace(/[^a-zA-Z0-9_]/g, \"_\");\n }\n static addTableToSheet(sheetIndex, table) {\n if (this.worksheetDataTables.has(sheetIndex)) {\n console.warn(\"Unable to add data table to Excel sheet: A table already exists.\");\n return;\n }\n this.worksheetDataTables.set(sheetIndex, table);\n }\n static processTableConfig(worksheet, config) {\n var _a;\n if (!config.exportAsExcelTable) {\n return;\n }\n const tableConfig = typeof config.exportAsExcelTable === \"boolean\" ? {} : config.exportAsExcelTable;\n const {\n name: nameFromConfig,\n showColumnStripes,\n showRowStripes,\n showFilterButton,\n highlightFirstColumn,\n highlightLastColumn\n } = tableConfig;\n const tableName = this.getSanitizedTableName(\n nameFromConfig || _ExcelXlsxFactory2.defaultTableDisplayName\n );\n const sheetIndex = this.sheetNames.length - 1;\n const { table } = worksheet;\n const { rows, columns } = table;\n const headerRowCount = config.columnModel.getHeaderRowCount();\n const tableHeaderRowIndex = headerRowCount - 1;\n const tableRowCount = rows.length;\n const tableColCount = columns.length;\n const tableColumns = [];\n const showFilterButtons = [];\n for (let i = 0; i < tableColCount; i++) {\n const col = columns[i];\n tableColumns.push(col.displayName || \"\");\n showFilterButtons.push(\n showFilterButton === \"match\" || showFilterButton === void 0 ? (_a = col.filterAllowed) != null ? _a : false : showFilterButton\n );\n }\n if (!tableColumns || !tableColumns.length || !tableRowCount || !tableName) {\n console.warn(\"Unable to add data table to Excel sheet: Missing required parameters.\");\n return;\n }\n this.addTableToSheet(sheetIndex, {\n name: this.getTableNameFromIndex(sheetIndex),\n displayName: tableName,\n columns: tableColumns,\n showFilterButtons,\n headerRowIndex: tableHeaderRowIndex,\n rowCount: tableRowCount - headerRowCount,\n showRowStripes: showRowStripes != null ? showRowStripes : true,\n showColumnStripes: showColumnStripes != null ? showColumnStripes : false,\n highlightFirstColumn: highlightFirstColumn != null ? highlightFirstColumn : false,\n highlightLastColumn: highlightLastColumn != null ? highlightLastColumn : false\n });\n }\n static addHeaderFooterImageToMap(image, position) {\n const sheetIndex = this.sheetNames.length - 1;\n const headerFooterImage = image;\n headerFooterImage.headerFooterPosition = position;\n this.buildImageMap({ imageToAdd: headerFooterImage, idx: sheetIndex });\n let headerFooterImagesForSheet = this.worksheetHeaderFooterImages.get(sheetIndex);\n if (!headerFooterImagesForSheet) {\n headerFooterImagesForSheet = [];\n this.worksheetHeaderFooterImages.set(sheetIndex, headerFooterImagesForSheet);\n }\n if (!headerFooterImagesForSheet.find((img) => img.id === image.id)) {\n headerFooterImagesForSheet.push(image);\n }\n }\n static addBodyImageToMap(image, rowIndex, col, columnsToExport, rowHeight) {\n let sheetIndex = this.sheetNames.length;\n const { row, column } = image.position || {};\n const calculatedImage = image;\n if (columnsToExport) {\n if (rowIndex != null && col != null && (!row || !column)) {\n if (!image.position) {\n image.position = {};\n }\n image.position = Object.assign({}, image.position, {\n row: rowIndex,\n column: columnsToExport.indexOf(col) + 1\n });\n }\n setExcelImageTotalWidth(calculatedImage, columnsToExport);\n setExcelImageTotalHeight(calculatedImage, rowHeight);\n }\n this.buildImageMap({ imageToAdd: calculatedImage, idx: sheetIndex });\n let worksheetImageIdMap = this.worksheetImageIds.get(sheetIndex);\n if (!worksheetImageIdMap) {\n worksheetImageIdMap = /* @__PURE__ */ new Map();\n this.worksheetImageIds.set(sheetIndex, worksheetImageIdMap);\n }\n const sheetImages = this.worksheetImages.get(sheetIndex);\n if (!sheetImages) {\n this.worksheetImages.set(sheetIndex, [calculatedImage]);\n } else {\n sheetImages.push(calculatedImage);\n }\n if (!worksheetImageIdMap.get(image.id)) {\n worksheetImageIdMap.set(image.id, { index: worksheetImageIdMap.size, type: image.imageType });\n }\n }\n static buildImageMap(params) {\n const { imageToAdd, idx } = params;\n const mappedImagesToSheet = this.images.get(imageToAdd.id);\n if (mappedImagesToSheet) {\n const currentSheetImages = mappedImagesToSheet.find((currentImage) => currentImage.sheetId === idx);\n if (currentSheetImages) {\n currentSheetImages.image.push(imageToAdd);\n } else {\n mappedImagesToSheet.push({\n sheetId: idx,\n image: [imageToAdd]\n });\n }\n } else {\n this.images.set(imageToAdd.id, [{ sheetId: idx, image: [imageToAdd] }]);\n this.workbookImageIds.set(imageToAdd.id, { type: imageToAdd.imageType, index: this.workbookImageIds.size });\n }\n }\n static addSheetName(worksheet) {\n const name = _55.escapeString(worksheet.name) || \"\";\n let append = \"\";\n while (this.sheetNames.indexOf(`${name}${append}`) !== -1) {\n if (append === \"\") {\n append = \"_1\";\n } else {\n const curr = parseInt(append.slice(1), 10);\n append = `_${curr + 1}`;\n }\n }\n worksheet.name = `${name}${append}`;\n this.sheetNames.push(worksheet.name);\n }\n static getStringPosition(str) {\n if (this.sharedStrings.has(str)) {\n return this.sharedStrings.get(str);\n }\n this.sharedStrings.set(str, this.sharedStrings.size);\n return this.sharedStrings.size - 1;\n }\n static resetFactory() {\n this.sharedStrings = /* @__PURE__ */ new Map();\n this.images = /* @__PURE__ */ new Map();\n this.worksheetImages = /* @__PURE__ */ new Map();\n this.worksheetHeaderFooterImages = /* @__PURE__ */ new Map();\n this.workbookImageIds = /* @__PURE__ */ new Map();\n this.worksheetImageIds = /* @__PURE__ */ new Map();\n this.worksheetDataTables = /* @__PURE__ */ new Map();\n this.sheetNames = [];\n this.factoryMode = ExcelFactoryMode.SINGLE_SHEET;\n }\n static createWorkbook() {\n return createXmlPart(workbook_default.getTemplate(this.sheetNames));\n }\n static createStylesheet(defaultFontSize) {\n return createXmlPart(stylesheet_default.getTemplate(defaultFontSize));\n }\n static createSharedStrings() {\n return createXmlPart(sharedStrings_default.getTemplate(this.sharedStrings));\n }\n static createCore(author) {\n return createXmlPart(core_default.getTemplate(author));\n }\n static createContentTypes(sheetLen) {\n return createXmlPart(contentTypes_default.getTemplate(sheetLen));\n }\n static createRels() {\n const rs = relationships_default.getTemplate([{\n Id: \"rId1\",\n Type: \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument\",\n Target: \"xl/workbook.xml\"\n }, {\n Id: \"rId2\",\n Type: \"http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties\",\n Target: \"docProps/core.xml\"\n }]);\n return createXmlPart(rs);\n }\n static createTheme() {\n return createXmlPart(office_default.getTemplate());\n }\n static createTable(dataTable, index) {\n return createXmlPart(table_default.getTemplate(dataTable, index));\n }\n static createWorkbookRels(sheetLen) {\n const worksheets = new Array(sheetLen).fill(void 0).map((v, i) => ({\n Id: `rId${i + 1}`,\n Type: \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet\",\n Target: `worksheets/sheet${i + 1}.xml`\n }));\n const rs = relationships_default.getTemplate([\n ...worksheets,\n {\n Id: `rId${sheetLen + 1}`,\n Type: \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme\",\n Target: \"theme/theme1.xml\"\n },\n {\n Id: `rId${sheetLen + 2}`,\n Type: \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles\",\n Target: \"styles.xml\"\n },\n {\n Id: `rId${sheetLen + 3}`,\n Type: \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/sharedStrings\",\n Target: \"sharedStrings.xml\"\n }\n ]);\n return createXmlPart(rs);\n }\n static createDrawing(sheetIndex) {\n return createXmlPart(drawing_default.getTemplate({ sheetIndex }));\n }\n static createDrawingRel(sheetIndex) {\n const worksheetImageIds = this.worksheetImageIds.get(sheetIndex) || [];\n const XMLArr = [];\n for (const [key, value] of worksheetImageIds) {\n XMLArr.push({\n Id: `rId${value.index + 1}`,\n Type: \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image\",\n Target: `../media/image${this.workbookImageIds.get(key).index + 1}.${value.type}`\n });\n }\n return createXmlPart(relationships_default.getTemplate(XMLArr));\n }\n static createVmlDrawing(sheetIndex) {\n return createXmlPart(vmlDrawing_default.getTemplate({ sheetIndex }), true);\n }\n static createVmlDrawingRel(sheetIndex) {\n const worksheetHeaderFooterImages = this.worksheetHeaderFooterImages.get(sheetIndex) || [];\n const XMLArr = [];\n for (let i = 0; i < worksheetHeaderFooterImages.length; i++) {\n const headerFooterImage = worksheetHeaderFooterImages[i];\n const workbookImage = this.workbookImageIds.get(headerFooterImage.id);\n if (!workbookImage) {\n continue;\n }\n const { index, type } = workbookImage;\n const imageType = type === \"jpg\" ? \"jpeg\" : type;\n XMLArr.push({\n Id: `rId${i + 1}`,\n Type: \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/image\",\n Target: `../media/image${index + 1}.${imageType}`\n });\n }\n return createXmlPart(relationships_default.getTemplate(XMLArr));\n }\n static createRelationships({\n drawingIndex,\n vmlDrawingIndex,\n tableIndex\n } = {}) {\n if (drawingIndex === void 0 && vmlDrawingIndex === void 0 && tableIndex === void 0) {\n return \"\";\n }\n const config = [];\n if (drawingIndex != null) {\n config.push({\n Id: `rId${config.length + 1}`,\n Type: \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/drawing\",\n Target: `../drawings/drawing${drawingIndex + 1}.xml`\n });\n }\n if (vmlDrawingIndex != null) {\n config.push({\n Id: `rId${config.length + 1}`,\n Type: \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/vmlDrawing\",\n Target: `../drawings/vmlDrawing${vmlDrawingIndex + 1}.vml`\n });\n }\n if (tableIndex != null) {\n config.push({\n Id: `rId${config.length + 1}`,\n Type: \"http://schemas.openxmlformats.org/officeDocument/2006/relationships/table\",\n Target: `../tables/${this.getTableNameFromIndex(tableIndex)}.xml`\n });\n }\n const rs = relationships_default.getTemplate(config);\n return createXmlPart(rs);\n }\n static createWorksheet(worksheet, config) {\n return createXmlPart(worksheet_default.getTemplate({\n worksheet,\n currentSheet: this.sheetNames.length - 1,\n config\n }));\n }\n};\n_ExcelXlsxFactory.sharedStrings = /* @__PURE__ */ new Map();\n_ExcelXlsxFactory.sheetNames = [];\n_ExcelXlsxFactory.images = /* @__PURE__ */ new Map();\n_ExcelXlsxFactory.worksheetImages = /* @__PURE__ */ new Map();\n_ExcelXlsxFactory.worksheetHeaderFooterImages = /* @__PURE__ */ new Map();\n_ExcelXlsxFactory.workbookImageIds = /* @__PURE__ */ new Map();\n_ExcelXlsxFactory.worksheetImageIds = /* @__PURE__ */ new Map();\n_ExcelXlsxFactory.worksheetDataTables = /* @__PURE__ */ new Map();\n_ExcelXlsxFactory.defaultTableDisplayName = \"AG-GRID-TABLE\";\n_ExcelXlsxFactory.factoryMode = ExcelFactoryMode.SINGLE_SHEET;\nvar ExcelXlsxFactory = _ExcelXlsxFactory;\nvar ExcelSerializingSession = class extends BaseGridSerializingSession {\n constructor(config) {\n super(config);\n this.mixedStyles = {};\n this.mixedStyleCounter = 0;\n this.rows = [];\n this.config = Object.assign({}, config);\n this.stylesByIds = {};\n this.config.baseExcelStyles.forEach((style) => {\n this.stylesByIds[style.id] = style;\n });\n this.excelStyles = [...this.config.baseExcelStyles, { id: \"_quotePrefix\", quotePrefix: 1 }];\n }\n addCustomContent(customContent) {\n customContent.forEach((row) => {\n const rowLen = this.rows.length + 1;\n let outlineLevel;\n if (!this.config.suppressRowOutline && row.outlineLevel != null) {\n outlineLevel = row.outlineLevel;\n }\n const rowObj = {\n height: getHeightFromProperty(rowLen, row.height || this.config.rowHeight),\n cells: (row.cells || []).map((cell, idx) => {\n var _a, _b, _c;\n const image = this.addImage(rowLen, this.columnsToExport[idx], (_a = cell.data) == null ? void 0 : _a.value);\n let excelStyles = null;\n if (cell.styleId) {\n excelStyles = typeof cell.styleId === \"string\" ? [cell.styleId] : cell.styleId;\n }\n const excelStyleId = this.getStyleId(excelStyles);\n if (image) {\n return this.createCell(excelStyleId, this.getDataTypeForValue(image.value), image.value == null ? \"\" : image.value);\n }\n const value = (_c = (_b = cell.data) == null ? void 0 : _b.value) != null ? _c : \"\";\n const type = this.getDataTypeForValue(value);\n if (cell.mergeAcross) {\n return this.createMergedCell(excelStyleId, type, value, cell.mergeAcross);\n }\n return this.createCell(excelStyleId, type, value);\n }),\n outlineLevel\n };\n if (row.collapsed != null) {\n rowObj.collapsed = row.collapsed;\n }\n if (row.hidden != null) {\n rowObj.hidden = row.hidden;\n }\n this.rows.push(rowObj);\n });\n }\n onNewHeaderGroupingRow() {\n const currentCells = [];\n this.rows.push({\n cells: currentCells,\n height: getHeightFromProperty(this.rows.length + 1, this.config.headerRowHeight)\n });\n return {\n onColumn: (columnGroup, header, index, span, collapsibleRanges) => {\n const styleIds = this.config.styleLinker({ rowType: RowType.HEADER_GROUPING, rowIndex: 1, value: `grouping-${header}`, columnGroup });\n currentCells.push(__spreadProps6(__spreadValues7({}, this.createMergedCell(this.getStyleId(styleIds), this.getDataTypeForValue(\"string\"), header, span)), {\n collapsibleRanges\n }));\n }\n };\n }\n onNewHeaderRow() {\n return this.onNewRow(this.onNewHeaderColumn, this.config.headerRowHeight);\n }\n onNewBodyRow(node) {\n const rowAccumulator = this.onNewRow(this.onNewBodyColumn, this.config.rowHeight);\n if (node) {\n this.addRowOutlineIfNecessary(node);\n }\n return rowAccumulator;\n }\n prepare(columnsToExport) {\n super.prepare(columnsToExport);\n this.columnsToExport = [...columnsToExport];\n this.cols = columnsToExport.map((col, i) => this.convertColumnToExcel(col, i));\n }\n parse() {\n const longestRow = this.rows.reduce((a, b) => Math.max(a, b.cells.length), 0);\n while (this.cols.length < longestRow) {\n this.cols.push(this.convertColumnToExcel(null, this.cols.length + 1));\n }\n const data = {\n name: this.config.sheetName,\n table: {\n columns: this.cols,\n rows: this.rows\n }\n };\n return this.createExcel(data);\n }\n addRowOutlineIfNecessary(node) {\n const { gos, suppressRowOutline, rowGroupExpandState = \"expanded\" } = this.config;\n const isGroupHideOpenParents = gos.get(\"groupHideOpenParents\");\n if (isGroupHideOpenParents || suppressRowOutline || node.level == null) {\n return;\n }\n const padding = node.footer ? 1 : 0;\n const currentRow = _65.last(this.rows);\n currentRow.outlineLevel = node.level + padding;\n if (rowGroupExpandState === \"expanded\") {\n return;\n }\n const collapseAll = rowGroupExpandState === \"collapsed\";\n if (node.isExpandable()) {\n const isExpanded = !collapseAll && node.expanded;\n currentRow.collapsed = !isExpanded;\n }\n currentRow.hidden = // always show the node if there is no parent to be expanded\n !!node.parent && // or if it is a child of the root node\n node.parent.level !== -1 && (collapseAll || this.isAnyParentCollapsed(node.parent));\n }\n isAnyParentCollapsed(node) {\n while (node && node.level !== -1) {\n if (!node.expanded) {\n return true;\n }\n node = node.parent;\n }\n return false;\n }\n convertColumnToExcel(column, index) {\n const columnWidth = this.config.columnWidth;\n const headerValue = column ? this.extractHeaderValue(column) : void 0;\n const displayName = headerValue != null ? headerValue : \"\";\n const filterAllowed = column ? column.isFilterAllowed() : false;\n if (columnWidth) {\n if (typeof columnWidth === \"number\") {\n return { width: columnWidth, displayName, filterAllowed };\n }\n return { width: columnWidth({ column, index }), displayName, filterAllowed };\n }\n if (column) {\n const smallestUsefulWidth = 75;\n return { width: Math.max(column.getActualWidth(), smallestUsefulWidth), displayName, filterAllowed };\n }\n return {\n displayName,\n filterAllowed\n };\n }\n onNewHeaderColumn(rowIndex, currentCells) {\n return (column) => {\n const nameForCol = this.extractHeaderValue(column);\n const styleIds = this.config.styleLinker({ rowType: RowType.HEADER, rowIndex, value: nameForCol, column });\n currentCells.push(this.createCell(this.getStyleId(styleIds), this.getDataTypeForValue(\"string\"), nameForCol));\n };\n }\n onNewBodyColumn(rowIndex, currentCells) {\n let skipCols = 0;\n return (column, index, node) => {\n if (skipCols > 0) {\n skipCols -= 1;\n return;\n }\n const { value: valueForCell, valueFormatted } = this.extractRowCellValue(column, index, rowIndex, \"excel\", node);\n const styleIds = this.config.styleLinker({ rowType: RowType.BODY, rowIndex, value: valueForCell, column, node });\n const excelStyleId = this.getStyleId(styleIds);\n const colSpan = column.getColSpan(node);\n const addedImage = this.addImage(rowIndex, column, valueForCell);\n if (addedImage) {\n currentCells.push(this.createCell(excelStyleId, this.getDataTypeForValue(addedImage.value), addedImage.value == null ? \"\" : addedImage.value));\n } else if (colSpan > 1) {\n skipCols = colSpan - 1;\n currentCells.push(this.createMergedCell(excelStyleId, this.getDataTypeForValue(valueForCell), valueForCell, colSpan - 1));\n } else {\n currentCells.push(this.createCell(excelStyleId, this.getDataTypeForValue(valueForCell), valueForCell, valueFormatted));\n }\n };\n }\n onNewRow(onNewColumnAccumulator, height) {\n const currentCells = [];\n this.rows.push({\n cells: currentCells,\n height: getHeightFromProperty(this.rows.length + 1, height)\n });\n return {\n onColumn: onNewColumnAccumulator.bind(this, this.rows.length, currentCells)()\n };\n }\n createExcel(data) {\n const { excelStyles, config } = this;\n return ExcelXlsxFactory.createExcel(\n excelStyles,\n data,\n config\n );\n }\n getDataTypeForValue(valueForCell) {\n if (valueForCell === void 0) {\n return \"empty\";\n }\n return this.isNumerical(valueForCell) ? \"n\" : \"s\";\n }\n getTypeFromStyle(style, value) {\n if (this.isFormula(value)) {\n return \"f\";\n }\n if (style && style.dataType) {\n switch (style.dataType.toLocaleLowerCase()) {\n case \"formula\":\n return \"f\";\n case \"string\":\n return \"s\";\n case \"number\":\n return \"n\";\n case \"datetime\":\n return \"d\";\n case \"error\":\n return \"e\";\n case \"boolean\":\n return \"b\";\n default:\n console.warn(`AG Grid: Unrecognized data type for excel export [${style.id}.dataType=${style.dataType}]`);\n }\n }\n return null;\n }\n addImage(rowIndex, column, value) {\n if (!this.config.addImageToCell) {\n return;\n }\n const addedImage = this.config.addImageToCell(rowIndex, column, value);\n if (!addedImage) {\n return;\n }\n ExcelXlsxFactory.addBodyImageToMap(addedImage.image, rowIndex, column, this.columnsToExport, this.config.rowHeight);\n return addedImage;\n }\n createCell(styleId, type, value, valueFormatted) {\n const actualStyle = this.getStyleById(styleId);\n if (!(actualStyle == null ? void 0 : actualStyle.dataType) && type === \"s\" && valueFormatted) {\n value = valueFormatted;\n }\n const processedType = this.getTypeFromStyle(actualStyle, value) || type;\n const { value: processedValue, escaped } = this.getCellValue(processedType, value);\n const styles = [];\n if (actualStyle) {\n styles.push(styleId);\n }\n if (escaped) {\n styles.push(\"_quotePrefix\");\n }\n styleId = this.getStyleId(styles) || void 0;\n return {\n styleId,\n data: {\n type: processedType,\n value: processedValue\n }\n };\n }\n createMergedCell(styleId, type, value, numOfCells) {\n const valueToUse = value == null ? \"\" : value;\n return {\n styleId: !!this.getStyleById(styleId) ? styleId : void 0,\n data: {\n type,\n value: type === \"s\" ? ExcelXlsxFactory.getStringPosition(valueToUse).toString() : value\n },\n mergeAcross: numOfCells\n };\n }\n getCellValue(type, value) {\n let escaped = false;\n if (value == null) {\n type = \"s\";\n value = \"\";\n }\n if (type === \"s\") {\n if (value && value[0] === \"'\") {\n escaped = true;\n value = value.slice(1);\n }\n value = ExcelXlsxFactory.getStringPosition(value).toString();\n } else if (type === \"f\") {\n value = value.slice(1);\n } else if (type === \"n\") {\n const numberValue = Number(value);\n if (isNaN(numberValue)) {\n value = \"\";\n } else if (value !== \"\") {\n value = numberValue.toString();\n }\n }\n return { value, escaped };\n }\n getStyleId(styleIds) {\n if (!styleIds || !styleIds.length) {\n return null;\n }\n if (styleIds.length === 1) {\n return styleIds[0];\n }\n const key = styleIds.join(\"-\");\n if (!this.mixedStyles[key]) {\n this.addNewMixedStyle(styleIds);\n }\n return this.mixedStyles[key].excelID;\n }\n deepCloneObject(object) {\n return JSON.parse(JSON.stringify(object));\n }\n addNewMixedStyle(styleIds) {\n this.mixedStyleCounter += 1;\n const excelId = `mixedStyle${this.mixedStyleCounter}`;\n const resultantStyle = {};\n for (const styleId of styleIds) {\n for (const excelStyle of this.excelStyles) {\n if (excelStyle.id === styleId) {\n _65.mergeDeep(resultantStyle, this.deepCloneObject(excelStyle));\n }\n }\n }\n resultantStyle.id = excelId;\n resultantStyle.name = excelId;\n const key = styleIds.join(\"-\");\n this.mixedStyles[key] = {\n excelID: excelId,\n key,\n result: resultantStyle\n };\n this.excelStyles.push(resultantStyle);\n this.stylesByIds[excelId] = resultantStyle;\n }\n isFormula(value) {\n if (value == null) {\n return false;\n }\n return this.config.autoConvertFormulas && value.toString().startsWith(\"=\");\n }\n isNumerical(value) {\n if (typeof value === \"bigint\") {\n return true;\n }\n return isFinite(value) && value !== \"\" && !isNaN(parseFloat(value));\n }\n getStyleById(styleId) {\n if (styleId == null) {\n return null;\n }\n return this.stylesByIds[styleId] || null;\n }\n};\nvar createExcelXMLCoreFolderStructure = () => {\n ZipContainer.addFolders([\n \"_rels/\",\n \"docProps/\",\n \"xl/\",\n \"xl/theme/\",\n \"xl/_rels/\",\n \"xl/worksheets/\"\n ]);\n const { images } = ExcelXlsxFactory;\n if (!images.size) {\n return;\n }\n ZipContainer.addFolders([\n \"xl/worksheets/_rels\",\n \"xl/drawings/\",\n \"xl/drawings/_rels\",\n \"xl/media/\"\n ]);\n let imgCounter = 0;\n images.forEach((value) => {\n const firstImage = value[0].image[0];\n const { base64, imageType } = firstImage;\n const ext = imageType === \"jpg\" ? \"jpeg\" : imageType;\n ZipContainer.addFile(`xl/media/image${++imgCounter}.${ext}`, base64, true);\n });\n};\nvar createExcelXmlWorksheets = (data) => {\n let imageRelationCounter = 0;\n let headerFooterImageCounter = 0;\n let tableRelationCounter = 0;\n const { images, worksheetDataTables, worksheetImages, worksheetHeaderFooterImages } = ExcelXlsxFactory;\n for (let i = 0; i < data.length; i++) {\n const value = data[i];\n ZipContainer.addFile(`xl/worksheets/sheet${i + 1}.xml`, value, false);\n const hasImages = images.size > 0 && worksheetImages.has(i);\n const hasTables = worksheetDataTables.size > 0 && worksheetDataTables.has(i);\n const hasHeaderFooterImages = images.size && worksheetHeaderFooterImages.has(i);\n if (!hasImages && !hasTables && !hasHeaderFooterImages) {\n continue;\n }\n let tableIndex;\n let drawingIndex;\n let vmlDrawingIndex;\n if (hasImages) {\n createExcelXmlDrawings(i, imageRelationCounter);\n drawingIndex = imageRelationCounter;\n imageRelationCounter++;\n }\n if (hasHeaderFooterImages) {\n createExcelVmlDrawings(i, headerFooterImageCounter);\n vmlDrawingIndex = headerFooterImageCounter;\n headerFooterImageCounter++;\n }\n if (hasTables) {\n tableIndex = tableRelationCounter++;\n }\n const worksheetRelFile = `xl/worksheets/_rels/sheet${i + 1}.xml.rels`;\n ZipContainer.addFile(\n worksheetRelFile,\n ExcelXlsxFactory.createRelationships({\n tableIndex,\n drawingIndex,\n vmlDrawingIndex\n })\n );\n }\n};\nvar createExcelXmlDrawings = (sheetIndex, drawingIndex) => {\n const drawingFolder = \"xl/drawings\";\n const drawingFileName = `${drawingFolder}/drawing${drawingIndex + 1}.xml`;\n const relFileName = `${drawingFolder}/_rels/drawing${drawingIndex + 1}.xml.rels`;\n ZipContainer.addFile(relFileName, ExcelXlsxFactory.createDrawingRel(sheetIndex));\n ZipContainer.addFile(drawingFileName, ExcelXlsxFactory.createDrawing(sheetIndex));\n};\nvar createExcelVmlDrawings = (sheetIndex, drawingIndex) => {\n const drawingFolder = \"xl/drawings\";\n const drawingFileName = `${drawingFolder}/vmlDrawing${drawingIndex + 1}.vml`;\n const relFileName = `${drawingFolder}/_rels/vmlDrawing${drawingIndex + 1}.vml.rels`;\n ZipContainer.addFile(drawingFileName, ExcelXlsxFactory.createVmlDrawing(sheetIndex));\n ZipContainer.addFile(relFileName, ExcelXlsxFactory.createVmlDrawingRel(sheetIndex));\n};\nvar createExcelXmlTables = () => {\n const { worksheetDataTables } = ExcelXlsxFactory;\n const tablesDataByWorksheet = worksheetDataTables;\n const worksheetKeys = Array.from(tablesDataByWorksheet.keys());\n for (let i = 0; i < worksheetKeys.length; i++) {\n const sheetIndex = worksheetKeys[i];\n const dataTable = tablesDataByWorksheet.get(sheetIndex);\n if (!dataTable) {\n continue;\n }\n ZipContainer.addFile(\n `xl/tables/${dataTable.name}.xml`,\n ExcelXlsxFactory.createTable(dataTable, i)\n );\n }\n};\nvar createExcelXmlCoreSheets = (fontSize, author, sheetLen) => {\n ZipContainer.addFile(\"xl/workbook.xml\", ExcelXlsxFactory.createWorkbook());\n ZipContainer.addFile(\"xl/styles.xml\", ExcelXlsxFactory.createStylesheet(fontSize));\n ZipContainer.addFile(\"xl/sharedStrings.xml\", ExcelXlsxFactory.createSharedStrings());\n ZipContainer.addFile(\"xl/theme/theme1.xml\", ExcelXlsxFactory.createTheme());\n ZipContainer.addFile(\"xl/_rels/workbook.xml.rels\", ExcelXlsxFactory.createWorkbookRels(sheetLen));\n ZipContainer.addFile(\"docProps/core.xml\", ExcelXlsxFactory.createCore(author));\n ZipContainer.addFile(\"[Content_Types].xml\", ExcelXlsxFactory.createContentTypes(sheetLen));\n ZipContainer.addFile(\"_rels/.rels\", ExcelXlsxFactory.createRels());\n};\nvar createExcelFileForExcel = (data, options = {}) => {\n if (!data || data.length === 0) {\n console.warn(\"AG Grid: Invalid params supplied to createExcelFileForExcel() - `ExcelExportParams.data` is empty.\");\n ExcelXlsxFactory.resetFactory();\n return false;\n }\n const {\n fontSize = 11,\n author = \"AG Grid\"\n } = options;\n createExcelXMLCoreFolderStructure();\n createExcelXmlTables();\n createExcelXmlWorksheets(data);\n createExcelXmlCoreSheets(fontSize, author, data.length);\n ExcelXlsxFactory.resetFactory();\n return true;\n};\nvar getMultipleSheetsAsExcelCompressed = (params) => {\n const { data, fontSize, author } = params;\n const mimeType = params.mimeType || \"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\";\n if (!createExcelFileForExcel(data, {\n author,\n fontSize\n })) {\n return Promise.resolve(void 0);\n }\n return ZipContainer.getZipFile(mimeType);\n};\nvar getMultipleSheetsAsExcel = (params) => {\n const { data, fontSize, author } = params;\n const mimeType = params.mimeType || \"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\";\n if (!createExcelFileForExcel(data, {\n author,\n fontSize\n })) {\n return;\n }\n return ZipContainer.getUncompressedZipFile(mimeType);\n};\nvar exportMultipleSheetsAsExcel = (params) => {\n const { fileName = \"export.xlsx\" } = params;\n getMultipleSheetsAsExcelCompressed(params).then((contents) => {\n if (contents) {\n const downloadFileName = typeof fileName === \"function\" ? fileName() : fileName;\n Downloader.download(downloadFileName, contents);\n }\n });\n};\nvar ExcelCreator = class extends BaseCreator {\n postConstruct() {\n this.setBeans({\n gridSerializer: this.gridSerializer,\n gos: this.gos\n });\n }\n getMergedParams(params) {\n const baseParams = this.gos.get(\"defaultExcelExportParams\");\n return Object.assign({}, baseParams, params);\n }\n export(userParams) {\n if (this.isExportSuppressed()) {\n console.warn(`AG Grid: Export cancelled. Export is not allowed as per your configuration.`);\n return;\n }\n const mergedParams = this.getMergedParams(userParams);\n const data = this.getData(mergedParams);\n const exportParams = {\n data: [data],\n fontSize: mergedParams.fontSize,\n author: mergedParams.author,\n mimeType: mergedParams.mimeType\n };\n this.packageCompressedFile(exportParams).then((packageFile) => {\n if (packageFile) {\n const { fileName } = mergedParams;\n const providedFileName = typeof fileName === \"function\" ? fileName(this.gos.getGridCommonParams()) : fileName;\n Downloader.download(this.getFileName(providedFileName), packageFile);\n }\n });\n }\n exportDataAsExcel(params) {\n this.export(params);\n }\n getDataAsExcel(params) {\n const mergedParams = this.getMergedParams(params);\n const data = this.getData(mergedParams);\n const exportParams = {\n data: [data],\n fontSize: mergedParams.fontSize,\n author: mergedParams.author,\n mimeType: mergedParams.mimeType\n };\n return this.packageFile(exportParams);\n }\n setFactoryMode(factoryMode) {\n ExcelXlsxFactory.factoryMode = factoryMode;\n }\n getFactoryMode() {\n return ExcelXlsxFactory.factoryMode;\n }\n getSheetDataForExcel(params) {\n const mergedParams = this.getMergedParams(params);\n return this.getData(mergedParams);\n }\n getMultipleSheetsAsExcel(params) {\n return getMultipleSheetsAsExcel(params);\n }\n exportMultipleSheetsAsExcel(params) {\n exportMultipleSheetsAsExcel(params);\n }\n getDefaultFileExtension() {\n return \"xlsx\";\n }\n createSerializingSession(params) {\n const { columnModel, valueService, gos } = this;\n let sheetName;\n if (params.sheetName != null) {\n const { sheetName: sheetNameParam } = params;\n const sheetNameValue = typeof sheetNameParam === \"function\" ? sheetNameParam(this.gos.getGridCommonParams()) : sheetNameParam;\n sheetName = String(sheetNameValue).substring(0, 31);\n } else {\n sheetName = \"ag-grid\";\n }\n const config = __spreadProps6(__spreadValues7({}, params), {\n sheetName,\n columnModel,\n valueService,\n gos,\n suppressRowOutline: params.suppressRowOutline || params.skipRowGroups,\n headerRowHeight: params.headerRowHeight || params.rowHeight,\n baseExcelStyles: this.gos.get(\"excelStyles\") || [],\n styleLinker: this.styleLinker.bind(this)\n });\n return new ExcelSerializingSession(config);\n }\n styleLinker(params) {\n const { rowType, rowIndex, value, column, columnGroup, node } = params;\n const isHeader = rowType === RowType2.HEADER;\n const isGroupHeader = rowType === RowType2.HEADER_GROUPING;\n const col = isHeader ? column : columnGroup;\n let headerClasses = [];\n if (isHeader || isGroupHeader) {\n headerClasses.push(\"header\");\n if (isGroupHeader) {\n headerClasses.push(\"headerGroup\");\n }\n if (col) {\n headerClasses = headerClasses.concat(CssClassApplier3.getHeaderClassesFromColDef(\n col.getDefinition(),\n this.gos,\n column || null,\n columnGroup || null\n ));\n }\n return headerClasses;\n }\n const styles = this.gos.get(\"excelStyles\");\n const applicableStyles = [\"cell\"];\n if (!styles || !styles.length) {\n return applicableStyles;\n }\n const styleIds = styles.map((it) => {\n return it.id;\n });\n this.stylingService.processAllCellClasses(\n column.getDefinition(),\n this.gos.addGridCommonParams({\n value,\n data: node.data,\n node,\n colDef: column.getDefinition(),\n column,\n rowIndex\n }),\n (className) => {\n if (styleIds.indexOf(className) > -1) {\n applicableStyles.push(className);\n }\n }\n );\n return applicableStyles.sort((left, right) => {\n return styleIds.indexOf(left) < styleIds.indexOf(right) ? -1 : 1;\n });\n }\n isExportSuppressed() {\n return this.gos.get(\"suppressExcelExport\");\n }\n packageCompressedFile(params) {\n return getMultipleSheetsAsExcelCompressed(params);\n }\n packageFile(params) {\n return getMultipleSheetsAsExcel(params);\n }\n};\n__decorateClass9([\n Autowired57(\"columnModel\")\n], ExcelCreator.prototype, \"columnModel\", 2);\n__decorateClass9([\n Autowired57(\"valueService\")\n], ExcelCreator.prototype, \"valueService\", 2);\n__decorateClass9([\n Autowired57(\"stylingService\")\n], ExcelCreator.prototype, \"stylingService\", 2);\n__decorateClass9([\n Autowired57(\"gridSerializer\")\n], ExcelCreator.prototype, \"gridSerializer\", 2);\n__decorateClass9([\n Autowired57(\"gridOptionsService\")\n], ExcelCreator.prototype, \"gos\", 2);\n__decorateClass9([\n PostConstruct58\n], ExcelCreator.prototype, \"postConstruct\", 1);\nExcelCreator = __decorateClass9([\n Bean12(\"excelCreator\")\n], ExcelCreator);\nvar VERSION9 = \"31.3.2\";\nvar ExcelExportModule = {\n version: VERSION9,\n moduleName: ModuleNames9.ExcelExportModule,\n beans: [\n // beans in this module\n ExcelCreator,\n // these beans are part of CSV Export module\n GridSerializer2,\n CsvCreator\n ],\n dependantModules: [\n CsvExportModule2,\n EnterpriseCoreModule\n ]\n};\n\n// enterprise-modules/filter-tool-panel/dist/package/main.esm.mjs\nimport { ModuleNames as ModuleNames10 } from \"ag-grid-community\";\nimport {\n _ as _41,\n Autowired as Autowired58,\n Component as Component48,\n Events as Events15,\n PostConstruct as PostConstruct59,\n PreConstruct as PreConstruct3,\n RefSelector as RefSelector18\n} from \"ag-grid-community\";\nimport {\n _ as _47,\n Autowired as Autowired413,\n Component as Component49,\n Events as Events45,\n ProvidedColumnGroup as ProvidedColumnGroup22\n} from \"ag-grid-community\";\nimport {\n _ as _213,\n Autowired as Autowired213,\n Column as Column22,\n Component as Component212,\n Events as Events27,\n KeyCode as KeyCode9,\n PostConstruct as PostConstruct213,\n RefSelector as RefSelector26,\n FilterWrapperComp as FilterWrapperComp2\n} from \"ag-grid-community\";\nimport {\n _ as _312,\n AgGroupComponent,\n Autowired as Autowired313,\n Column as Column32,\n Component as Component313,\n Events as Events35,\n ProvidedColumnGroup as ProvidedColumnGroup3,\n PostConstruct as PostConstruct313,\n PreConstruct as PreConstruct22,\n RefSelector as RefSelector36\n} from \"ag-grid-community\";\nimport {\n Component as Component55,\n RefSelector as RefSelector44\n} from \"ag-grid-community\";\nvar __defProp10 = Object.defineProperty;\nvar __getOwnPropDesc10 = Object.getOwnPropertyDescriptor;\nvar __getOwnPropSymbols8 = Object.getOwnPropertySymbols;\nvar __hasOwnProp9 = Object.prototype.hasOwnProperty;\nvar __propIsEnum8 = Object.prototype.propertyIsEnumerable;\nvar __defNormalProp8 = (obj, key, value) => key in obj ? __defProp10(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;\nvar __spreadValues8 = (a, b) => {\n for (var prop in b || (b = {}))\n if (__hasOwnProp9.call(b, prop))\n __defNormalProp8(a, prop, b[prop]);\n if (__getOwnPropSymbols8)\n for (var prop of __getOwnPropSymbols8(b)) {\n if (__propIsEnum8.call(b, prop))\n __defNormalProp8(a, prop, b[prop]);\n }\n return a;\n};\nvar __decorateClass10 = (decorators, target, key, kind) => {\n var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc10(target, key) : target;\n for (var i = decorators.length - 1, decorator; i >= 0; i--)\n if (decorator = decorators[i])\n result = (kind ? decorator(target, key, result) : decorator(result)) || result;\n if (kind && result)\n __defProp10(target, key, result);\n return result;\n};\nvar FiltersToolPanelHeaderPanel = class extends Component48 {\n preConstruct() {\n this.setTemplate(\n /* html */\n `
`\n );\n }\n postConstruct() {\n const translate = this.localeService.getLocaleTextFunc();\n this.eFilterTextField.setAutoComplete(false).setInputAriaLabel(translate(\"ariaFilterColumnsInput\", \"Filter Columns Input\")).onValueChange(this.onSearchTextChanged.bind(this));\n this.createExpandIcons();\n this.setExpandState(\n 0\n /* EXPANDED */\n );\n this.addManagedListener(this.eExpand, \"click\", this.onExpandClicked.bind(this));\n this.addManagedListener(this.eventService, Events15.EVENT_NEW_COLUMNS_LOADED, this.showOrHideOptions.bind(this));\n }\n init(params) {\n this.params = params;\n if (this.columnModel.isReady()) {\n this.showOrHideOptions();\n }\n }\n createExpandIcons() {\n this.eExpand.appendChild(this.eExpandChecked = _41.createIconNoSpan(\"columnSelectOpen\", this.gos));\n this.eExpand.appendChild(this.eExpandUnchecked = _41.createIconNoSpan(\"columnSelectClosed\", this.gos));\n this.eExpand.appendChild(this.eExpandIndeterminate = _41.createIconNoSpan(\"columnSelectIndeterminate\", this.gos));\n }\n // we only show expand / collapse if we are showing filters\n showOrHideOptions() {\n const showFilterSearch = !this.params.suppressFilterSearch;\n const showExpand = !this.params.suppressExpandAll;\n const translate = this.localeService.getLocaleTextFunc();\n this.eFilterTextField.setInputPlaceholder(translate(\"searchOoo\", \"Search...\"));\n const isFilterGroupPresent = (col) => col.getOriginalParent() && col.isFilterAllowed();\n const filterGroupsPresent = this.columnModel.getAllGridColumns().some(isFilterGroupPresent);\n _41.setDisplayed(this.eFilterTextField.getGui(), showFilterSearch);\n _41.setDisplayed(this.eExpand, showExpand && filterGroupsPresent);\n }\n onSearchTextChanged() {\n if (!this.onSearchTextChangedDebounced) {\n this.onSearchTextChangedDebounced = _41.debounce(() => {\n this.dispatchEvent({ type: \"searchChanged\", searchText: this.eFilterTextField.getValue() });\n }, 300);\n }\n this.onSearchTextChangedDebounced();\n }\n onExpandClicked() {\n const event = this.currentExpandState === 0 ? { type: \"collapseAll\" } : { type: \"expandAll\" };\n this.dispatchEvent(event);\n }\n setExpandState(state) {\n this.currentExpandState = state;\n _41.setDisplayed(\n this.eExpandChecked,\n this.currentExpandState === 0\n /* EXPANDED */\n );\n _41.setDisplayed(\n this.eExpandUnchecked,\n this.currentExpandState === 1\n /* COLLAPSED */\n );\n _41.setDisplayed(\n this.eExpandIndeterminate,\n this.currentExpandState === 2\n /* INDETERMINATE */\n );\n }\n};\n__decorateClass10([\n Autowired58(\"columnModel\")\n], FiltersToolPanelHeaderPanel.prototype, \"columnModel\", 2);\n__decorateClass10([\n RefSelector18(\"eExpand\")\n], FiltersToolPanelHeaderPanel.prototype, \"eExpand\", 2);\n__decorateClass10([\n RefSelector18(\"eFilterTextField\")\n], FiltersToolPanelHeaderPanel.prototype, \"eFilterTextField\", 2);\n__decorateClass10([\n PreConstruct3\n], FiltersToolPanelHeaderPanel.prototype, \"preConstruct\", 1);\n__decorateClass10([\n PostConstruct59\n], FiltersToolPanelHeaderPanel.prototype, \"postConstruct\", 1);\nvar _ToolPanelFilterComp = class _ToolPanelFilterComp2 extends Component212 {\n constructor(hideHeader, expandedCallback) {\n super(_ToolPanelFilterComp2.TEMPLATE);\n this.expandedCallback = expandedCallback;\n this.expanded = false;\n this.hideHeader = hideHeader;\n }\n postConstruct() {\n this.eExpandChecked = _213.createIconNoSpan(\"columnSelectOpen\", this.gos);\n this.eExpandUnchecked = _213.createIconNoSpan(\"columnSelectClosed\", this.gos);\n this.eExpand.appendChild(this.eExpandChecked);\n this.eExpand.appendChild(this.eExpandUnchecked);\n }\n setColumn(column) {\n this.column = column;\n this.eFilterName.innerText = this.columnModel.getDisplayNameForColumn(this.column, \"filterToolPanel\", false) || \"\";\n this.addManagedListener(this.eFilterToolPanelHeader, \"click\", this.toggleExpanded.bind(this));\n this.addManagedListener(this.eFilterToolPanelHeader, \"keydown\", this.onKeyDown.bind(this));\n this.addManagedListener(this.eventService, Events27.EVENT_FILTER_OPENED, this.onFilterOpened.bind(this));\n this.addInIcon(\"filter\", this.eFilterIcon, this.column);\n _213.setDisplayed(this.eFilterIcon, this.isFilterActive(), { skipAriaHidden: true });\n _213.setDisplayed(this.eExpandChecked, false);\n if (this.hideHeader) {\n _213.setDisplayed(this.eFilterToolPanelHeader, false);\n this.eFilterToolPanelHeader.removeAttribute(\"tabindex\");\n } else {\n this.eFilterToolPanelHeader.setAttribute(\"tabindex\", \"0\");\n }\n this.addManagedListener(this.column, Column22.EVENT_FILTER_CHANGED, this.onFilterChanged.bind(this));\n }\n onKeyDown(e) {\n const { key } = e;\n const { ENTER, SPACE, LEFT, RIGHT } = KeyCode9;\n if (key !== ENTER && key !== SPACE && key !== LEFT && key !== RIGHT) {\n return;\n }\n e.preventDefault();\n if (key === ENTER || key === SPACE) {\n this.toggleExpanded();\n } else if (key === KeyCode9.LEFT) {\n this.collapse();\n } else {\n this.expand();\n }\n }\n getColumn() {\n return this.column;\n }\n getColumnFilterName() {\n return this.columnModel.getDisplayNameForColumn(this.column, \"filterToolPanel\", false);\n }\n addCssClassToTitleBar(cssClass) {\n this.eFilterToolPanelHeader.classList.add(cssClass);\n }\n addInIcon(iconName, eParent, column) {\n if (eParent == null) {\n return;\n }\n const eIcon = _213.createIconNoSpan(iconName, this.gos, column);\n eParent.appendChild(eIcon);\n }\n isFilterActive() {\n return this.filterManager.isFilterActive(this.column);\n }\n onFilterChanged() {\n _213.setDisplayed(this.eFilterIcon, this.isFilterActive(), { skipAriaHidden: true });\n this.dispatchEvent({ type: Column22.EVENT_FILTER_CHANGED });\n }\n toggleExpanded() {\n this.expanded ? this.collapse() : this.expand();\n }\n expand() {\n if (this.expanded) {\n return;\n }\n this.expanded = true;\n _213.setAriaExpanded(this.eFilterToolPanelHeader, true);\n _213.setDisplayed(this.eExpandChecked, true);\n _213.setDisplayed(this.eExpandUnchecked, false);\n this.addFilterElement();\n this.expandedCallback();\n }\n addFilterElement(suppressFocus) {\n var _a;\n const filterPanelWrapper = _213.loadTemplate(\n /* html */\n `
`\n );\n const comp = this.createManagedBean(new FilterWrapperComp2(this.column, \"TOOLBAR\"));\n this.filterWrapperComp = comp;\n if (!comp.hasFilter()) {\n return;\n }\n (_a = comp.getFilter()) == null ? void 0 : _a.then((filter) => {\n this.underlyingFilter = filter;\n if (!filter) {\n return;\n }\n filterPanelWrapper.appendChild(comp.getGui());\n this.agFilterToolPanelBody.appendChild(filterPanelWrapper);\n comp.afterGuiAttached({ container: \"toolPanel\", suppressFocus });\n });\n }\n collapse() {\n var _a;\n if (!this.expanded) {\n return;\n }\n this.expanded = false;\n _213.setAriaExpanded(this.eFilterToolPanelHeader, false);\n this.removeFilterElement();\n _213.setDisplayed(this.eExpandChecked, false);\n _213.setDisplayed(this.eExpandUnchecked, true);\n (_a = this.filterWrapperComp) == null ? void 0 : _a.afterGuiDetached();\n this.destroyBean(this.filterWrapperComp);\n this.expandedCallback();\n }\n removeFilterElement() {\n _213.clearElement(this.agFilterToolPanelBody);\n }\n isExpanded() {\n return this.expanded;\n }\n refreshFilter(isDisplayed) {\n var _a;\n if (!this.expanded) {\n return;\n }\n const filter = this.underlyingFilter;\n if (!filter) {\n return;\n }\n if (isDisplayed) {\n if (typeof filter.refreshVirtualList === \"function\") {\n filter.refreshVirtualList();\n }\n } else {\n (_a = filter.afterGuiDetached) == null ? void 0 : _a.call(filter);\n }\n }\n onFilterOpened(event) {\n if (event.source !== \"COLUMN_MENU\") {\n return;\n }\n if (event.column !== this.column) {\n return;\n }\n if (!this.expanded) {\n return;\n }\n this.collapse();\n }\n};\n_ToolPanelFilterComp.TEMPLATE = /* html */\n`\n
`;\n__decorateClass10([\n RefSelector26(\"eFilterToolPanelHeader\")\n], _ToolPanelFilterComp.prototype, \"eFilterToolPanelHeader\", 2);\n__decorateClass10([\n RefSelector26(\"eFilterName\")\n], _ToolPanelFilterComp.prototype, \"eFilterName\", 2);\n__decorateClass10([\n RefSelector26(\"agFilterToolPanelBody\")\n], _ToolPanelFilterComp.prototype, \"agFilterToolPanelBody\", 2);\n__decorateClass10([\n RefSelector26(\"eFilterIcon\")\n], _ToolPanelFilterComp.prototype, \"eFilterIcon\", 2);\n__decorateClass10([\n RefSelector26(\"eExpand\")\n], _ToolPanelFilterComp.prototype, \"eExpand\", 2);\n__decorateClass10([\n Autowired213(\"filterManager\")\n], _ToolPanelFilterComp.prototype, \"filterManager\", 2);\n__decorateClass10([\n Autowired213(\"columnModel\")\n], _ToolPanelFilterComp.prototype, \"columnModel\", 2);\n__decorateClass10([\n PostConstruct213\n], _ToolPanelFilterComp.prototype, \"postConstruct\", 1);\nvar ToolPanelFilterComp = _ToolPanelFilterComp;\nvar _ToolPanelFilterGroupComp = class _ToolPanelFilterGroupComp2 extends Component313 {\n constructor(columnGroup, childFilterComps, expandedCallback, depth, showingColumn) {\n super();\n this.columnGroup = columnGroup;\n this.childFilterComps = childFilterComps;\n this.depth = depth;\n this.expandedCallback = expandedCallback;\n this.showingColumn = showingColumn;\n }\n preConstruct() {\n const groupParams = {\n cssIdentifier: \"filter-toolpanel\",\n direction: \"vertical\"\n };\n this.setTemplate(_ToolPanelFilterGroupComp2.TEMPLATE, { filterGroupComp: groupParams });\n }\n init() {\n this.setGroupTitle();\n this.filterGroupComp.setAlignItems(\"stretch\");\n this.filterGroupComp.addCssClass(`ag-filter-toolpanel-group-level-${this.depth}`);\n this.filterGroupComp.addCssClassToTitleBar(`ag-filter-toolpanel-group-level-${this.depth}-header`);\n this.childFilterComps.forEach((filterComp) => {\n this.filterGroupComp.addItem(filterComp);\n filterComp.addCssClassToTitleBar(`ag-filter-toolpanel-group-level-${this.depth + 1}-header`);\n });\n this.refreshFilterClass();\n this.addExpandCollapseListeners();\n this.addFilterChangedListeners();\n this.setupTooltip();\n this.addInIcon(\"filter\");\n }\n setupTooltip() {\n if (!this.showingColumn) {\n return;\n }\n const isTooltipWhenTruncated = this.gos.get(\"tooltipShowMode\") === \"whenTruncated\";\n let shouldDisplayTooltip;\n if (isTooltipWhenTruncated) {\n shouldDisplayTooltip = () => {\n const eGui = this.filterGroupComp.getGui();\n const eTitle = eGui.querySelector(\".ag-group-title\");\n if (!eTitle) {\n return true;\n }\n return eTitle.scrollWidth > eTitle.clientWidth;\n };\n }\n const refresh = () => {\n const newTooltipText = this.columnGroup.getColDef().headerTooltip;\n this.setTooltip({ newTooltipText, location: \"filterToolPanelColumnGroup\", shouldDisplayTooltip });\n };\n refresh();\n this.addManagedListener(this.eventService, Events35.EVENT_NEW_COLUMNS_LOADED, refresh);\n }\n getTooltipParams() {\n const res = super.getTooltipParams();\n res.location = \"filterToolPanelColumnGroup\";\n return res;\n }\n addCssClassToTitleBar(cssClass) {\n this.filterGroupComp.addCssClassToTitleBar(cssClass);\n }\n refreshFilters(isDisplayed) {\n this.childFilterComps.forEach((filterComp) => {\n if (filterComp instanceof _ToolPanelFilterGroupComp2) {\n filterComp.refreshFilters(isDisplayed);\n } else {\n filterComp.refreshFilter(isDisplayed);\n }\n });\n }\n isColumnGroup() {\n return this.columnGroup instanceof ProvidedColumnGroup3;\n }\n isExpanded() {\n return this.filterGroupComp.isExpanded();\n }\n getChildren() {\n return this.childFilterComps;\n }\n getFilterGroupName() {\n return this.filterGroupName ? this.filterGroupName : \"\";\n }\n getFilterGroupId() {\n return this.columnGroup.getId();\n }\n hideGroupItem(hide, index) {\n this.filterGroupComp.hideItem(hide, index);\n }\n hideGroup(hide) {\n this.setDisplayed(!hide);\n }\n addInIcon(iconName) {\n const eIcon = _312.createIconNoSpan(iconName, this.gos);\n if (eIcon) {\n eIcon.classList.add(\"ag-filter-toolpanel-group-instance-header-icon\");\n }\n this.filterGroupComp.addTitleBarWidget(eIcon);\n }\n forEachToolPanelFilterChild(action) {\n this.childFilterComps.forEach((filterComp) => {\n if (filterComp instanceof ToolPanelFilterComp) {\n action(filterComp);\n }\n });\n }\n addExpandCollapseListeners() {\n const expandListener = this.isColumnGroup() ? () => this.expandedCallback() : () => this.forEachToolPanelFilterChild((filterComp) => filterComp.expand());\n const collapseListener = this.isColumnGroup() ? () => this.expandedCallback() : () => this.forEachToolPanelFilterChild((filterComp) => filterComp.collapse());\n this.addManagedListener(this.filterGroupComp, AgGroupComponent.EVENT_EXPANDED, expandListener);\n this.addManagedListener(this.filterGroupComp, AgGroupComponent.EVENT_COLLAPSED, collapseListener);\n }\n getColumns() {\n if (this.columnGroup instanceof ProvidedColumnGroup3) {\n return this.columnGroup.getLeafColumns();\n }\n return [this.columnGroup];\n }\n addFilterChangedListeners() {\n this.getColumns().forEach((column) => {\n this.addManagedListener(column, Column32.EVENT_FILTER_CHANGED, () => this.refreshFilterClass());\n });\n if (!(this.columnGroup instanceof ProvidedColumnGroup3)) {\n this.addManagedListener(this.eventService, Events35.EVENT_FILTER_OPENED, this.onFilterOpened.bind(this));\n }\n }\n refreshFilterClass() {\n const columns = this.getColumns();\n const anyChildFiltersActive = () => columns.some((col) => col.isFilterActive());\n this.filterGroupComp.addOrRemoveCssClass(\"ag-has-filter\", anyChildFiltersActive());\n }\n onFilterOpened(event) {\n if (event.source !== \"COLUMN_MENU\") {\n return;\n }\n if (event.column !== this.columnGroup) {\n return;\n }\n if (!this.isExpanded()) {\n return;\n }\n this.collapse();\n }\n expand() {\n this.filterGroupComp.toggleGroupExpand(true);\n }\n collapse() {\n this.filterGroupComp.toggleGroupExpand(false);\n }\n setGroupTitle() {\n this.filterGroupName = this.columnGroup instanceof ProvidedColumnGroup3 ? this.getColumnGroupName(this.columnGroup) : this.getColumnName(this.columnGroup);\n this.filterGroupComp.setTitle(this.filterGroupName || \"\");\n }\n getColumnGroupName(columnGroup) {\n return this.columnModel.getDisplayNameForProvidedColumnGroup(null, columnGroup, \"filterToolPanel\");\n }\n getColumnName(column) {\n return this.columnModel.getDisplayNameForColumn(column, \"filterToolPanel\", false);\n }\n destroyFilters() {\n this.childFilterComps = this.destroyBeans(this.childFilterComps);\n _312.clearElement(this.getGui());\n }\n destroy() {\n this.destroyFilters();\n super.destroy();\n }\n};\n_ToolPanelFilterGroupComp.TEMPLATE = /* html */\n`
`;\n__decorateClass10([\n RefSelector36(\"filterGroupComp\")\n], _ToolPanelFilterGroupComp.prototype, \"filterGroupComp\", 2);\n__decorateClass10([\n Autowired313(\"columnModel\")\n], _ToolPanelFilterGroupComp.prototype, \"columnModel\", 2);\n__decorateClass10([\n PreConstruct22\n], _ToolPanelFilterGroupComp.prototype, \"preConstruct\", 1);\n__decorateClass10([\n PostConstruct313\n], _ToolPanelFilterGroupComp.prototype, \"init\", 1);\nvar ToolPanelFilterGroupComp = _ToolPanelFilterGroupComp;\nvar _FiltersToolPanelListPanel = class _FiltersToolPanelListPanel2 extends Component49 {\n constructor() {\n super(_FiltersToolPanelListPanel2.TEMPLATE);\n this.initialised = false;\n this.hasLoadedInitialState = false;\n this.isInitialState = false;\n this.filterGroupComps = [];\n this.suppressOnColumnsChanged = false;\n this.onColumnsChangedPending = false;\n }\n init(params) {\n this.initialised = true;\n const defaultParams = this.gos.addGridCommonParams({\n suppressExpandAll: false,\n suppressFilterSearch: false,\n suppressSyncLayoutWithGrid: false\n });\n _47.mergeDeep(defaultParams, params);\n this.params = defaultParams;\n if (!this.params.suppressSyncLayoutWithGrid) {\n this.addManagedListener(this.eventService, Events45.EVENT_COLUMN_MOVED, () => this.onColumnsChanged());\n }\n this.addManagedListener(this.eventService, Events45.EVENT_NEW_COLUMNS_LOADED, () => this.onColumnsChanged());\n this.addManagedListener(this.eventService, Events45.EVENT_TOOL_PANEL_VISIBLE_CHANGED, (event) => {\n if (event.key === \"filters\") {\n this.refreshFilters(event.visible);\n }\n });\n this.addManagedListener(this.eventService, Events45.EVENT_DRAG_STARTED, () => {\n this.suppressOnColumnsChanged = true;\n });\n this.addManagedListener(this.eventService, Events45.EVENT_DRAG_STOPPED, () => {\n this.suppressOnColumnsChanged = false;\n if (this.onColumnsChangedPending) {\n this.onColumnsChangedPending = false;\n this.onColumnsChanged();\n }\n });\n if (this.columnModel.isReady()) {\n this.onColumnsChanged();\n }\n }\n onColumnsChanged() {\n if (this.suppressOnColumnsChanged) {\n this.onColumnsChangedPending = true;\n return;\n }\n const pivotModeActive = this.columnModel.isPivotMode();\n const shouldSyncColumnLayoutWithGrid = !this.params.suppressSyncLayoutWithGrid && !pivotModeActive;\n shouldSyncColumnLayoutWithGrid ? this.syncFilterLayout() : this.buildTreeFromProvidedColumnDefs();\n this.refreshAriaLabel();\n }\n syncFilterLayout() {\n this.toolPanelColDefService.syncLayoutWithGrid(this.setFiltersLayout.bind(this));\n this.refreshAriaLabel();\n }\n buildTreeFromProvidedColumnDefs() {\n const columnTree = this.columnModel.getPrimaryColumnTree();\n this.recreateFilters(columnTree);\n }\n setFiltersLayout(colDefs) {\n const columnTree = this.toolPanelColDefService.createColumnTree(colDefs);\n this.recreateFilters(columnTree);\n }\n recreateFilters(columnTree) {\n const activeElement = this.gos.getActiveDomElement();\n if (!this.hasLoadedInitialState) {\n this.hasLoadedInitialState = true;\n this.isInitialState = !!this.params.initialState;\n }\n const expansionState = this.getExpansionState();\n this.destroyFilters();\n this.filterGroupComps = this.recursivelyAddComps(columnTree, 0, expansionState);\n const len = this.filterGroupComps.length;\n if (len) {\n this.filterGroupComps.forEach((comp) => this.appendChild(comp));\n this.setFirstAndLastVisible(0, len - 1);\n }\n if (_47.exists(this.searchFilterText)) {\n this.searchFilters(this.searchFilterText);\n }\n this.fireExpandedEvent();\n if (this.getGui().contains(activeElement)) {\n activeElement.focus();\n }\n this.isInitialState = false;\n this.refreshAriaLabel();\n }\n recursivelyAddComps(tree, depth, expansionState) {\n return _47.flatten(tree.map((child) => {\n if (child instanceof ProvidedColumnGroup22) {\n return _47.flatten(this.recursivelyAddFilterGroupComps(child, depth, expansionState));\n }\n const column = child;\n if (!this.shouldDisplayFilter(column)) {\n return [];\n }\n const hideFilterCompHeader = depth === 0;\n const filterComp = new ToolPanelFilterComp(hideFilterCompHeader, () => this.onFilterExpanded());\n this.createBean(filterComp);\n filterComp.setColumn(column);\n if (expansionState.get(column.getId())) {\n filterComp.expand();\n }\n if (depth > 0) {\n return filterComp;\n }\n const filterGroupComp = this.createBean(new ToolPanelFilterGroupComp(column, [filterComp], this.onGroupExpanded.bind(this), depth, true));\n filterGroupComp.addCssClassToTitleBar(\"ag-filter-toolpanel-header\");\n if (!expansionState.get(filterGroupComp.getFilterGroupId())) {\n filterGroupComp.collapse();\n }\n return filterGroupComp;\n }));\n }\n refreshAriaLabel() {\n const translate = this.localeService.getLocaleTextFunc();\n const filterListName = translate(\"ariaFilterPanelList\", \"Filter List\");\n const localeFilters = translate(\"filters\", \"Filters\");\n const eGui = this.getGui();\n const groupSelector = \".ag-filter-toolpanel-group-wrapper\";\n const itemSelector = \".ag-filter-toolpanel-group-item\";\n const hiddenSelector = \".ag-hidden\";\n const visibleItems = eGui.querySelectorAll(`${itemSelector}:not(${groupSelector}, ${hiddenSelector})`);\n const totalVisibleItems = visibleItems.length;\n _47.setAriaLabel(this.getAriaElement(), `${filterListName} ${totalVisibleItems} ${localeFilters}`);\n }\n recursivelyAddFilterGroupComps(columnGroup, depth, expansionState) {\n if (!this.filtersExistInChildren(columnGroup.getChildren())) {\n return;\n }\n const colGroupDef = columnGroup.getColGroupDef();\n if (colGroupDef && colGroupDef.suppressFiltersToolPanel) {\n return [];\n }\n const newDepth = columnGroup.isPadding() ? depth : depth + 1;\n const childFilterComps = _47.flatten(this.recursivelyAddComps(columnGroup.getChildren(), newDepth, expansionState));\n if (columnGroup.isPadding()) {\n return childFilterComps;\n }\n const filterGroupComp = new ToolPanelFilterGroupComp(columnGroup, childFilterComps, this.onGroupExpanded.bind(this), depth, false);\n this.createBean(filterGroupComp);\n filterGroupComp.addCssClassToTitleBar(\"ag-filter-toolpanel-header\");\n const expansionStateValue = expansionState.get(filterGroupComp.getFilterGroupId());\n if (this.isInitialState && !expansionStateValue || expansionStateValue === false) {\n filterGroupComp.collapse();\n }\n return [filterGroupComp];\n }\n filtersExistInChildren(tree) {\n return tree.some((child) => {\n if (child instanceof ProvidedColumnGroup22) {\n return this.filtersExistInChildren(child.getChildren());\n }\n return this.shouldDisplayFilter(child);\n });\n }\n shouldDisplayFilter(column) {\n const suppressFiltersToolPanel = column.getColDef() && column.getColDef().suppressFiltersToolPanel;\n return column.isFilterAllowed() && !suppressFiltersToolPanel;\n }\n getExpansionState() {\n const expansionState = /* @__PURE__ */ new Map();\n if (this.isInitialState) {\n const { expandedColIds, expandedGroupIds } = this.params.initialState;\n expandedColIds.forEach((id) => expansionState.set(id, true));\n expandedGroupIds.forEach((id) => expansionState.set(id, true));\n return expansionState;\n }\n const recursiveGetExpansionState = (filterGroupComp) => {\n expansionState.set(filterGroupComp.getFilterGroupId(), filterGroupComp.isExpanded());\n filterGroupComp.getChildren().forEach((child) => {\n if (child instanceof ToolPanelFilterGroupComp) {\n recursiveGetExpansionState(child);\n } else {\n expansionState.set(child.getColumn().getId(), child.isExpanded());\n }\n });\n };\n this.filterGroupComps.forEach(recursiveGetExpansionState);\n return expansionState;\n }\n // we don't support refreshing, but must implement because it's on the tool panel interface\n refresh() {\n }\n // lazy initialise the panel\n setVisible(visible) {\n super.setDisplayed(visible);\n if (visible && !this.initialised) {\n this.init(this.params);\n }\n }\n expandFilterGroups(expand, groupIds) {\n const updatedGroupIds = [];\n const updateGroupExpandState = (filterGroup) => {\n const groupId = filterGroup.getFilterGroupId();\n const shouldExpandOrCollapse = !groupIds || _47.includes(groupIds, groupId);\n if (shouldExpandOrCollapse) {\n if (expand && filterGroup.isColumnGroup()) {\n filterGroup.expand();\n } else {\n filterGroup.collapse();\n }\n updatedGroupIds.push(groupId);\n }\n filterGroup.getChildren().forEach((child) => {\n if (child instanceof ToolPanelFilterGroupComp) {\n updateGroupExpandState(child);\n }\n });\n };\n this.filterGroupComps.forEach(updateGroupExpandState);\n this.onGroupExpanded();\n if (groupIds) {\n const unrecognisedGroupIds = groupIds.filter((groupId) => updatedGroupIds.indexOf(groupId) < 0);\n if (unrecognisedGroupIds.length > 0) {\n console.warn(\"AG Grid: unable to find groups for these supplied groupIds:\", unrecognisedGroupIds);\n }\n }\n }\n expandFilters(expand, colIds) {\n const updatedColIds = [];\n const updateGroupExpandState = (filterComp) => {\n if (filterComp instanceof ToolPanelFilterGroupComp) {\n let anyChildrenChanged = false;\n filterComp.getChildren().forEach((child) => {\n const childUpdated = updateGroupExpandState(child);\n if (childUpdated) {\n if (expand) {\n filterComp.expand();\n anyChildrenChanged = true;\n } else if (!filterComp.isColumnGroup()) {\n filterComp.collapse();\n }\n }\n });\n return anyChildrenChanged;\n }\n const colId = filterComp.getColumn().getColId();\n const updateFilterExpandState = !colIds || _47.includes(colIds, colId);\n if (updateFilterExpandState) {\n expand ? filterComp.expand() : filterComp.collapse();\n updatedColIds.push(colId);\n }\n return updateFilterExpandState;\n };\n this.filterGroupComps.forEach(updateGroupExpandState);\n this.onGroupExpanded();\n if (colIds) {\n const unrecognisedColIds = colIds.filter((colId) => updatedColIds.indexOf(colId) < 0);\n if (unrecognisedColIds.length > 0) {\n console.warn(\"AG Grid: unable to find columns for these supplied colIds:\", unrecognisedColIds);\n }\n }\n }\n onGroupExpanded() {\n this.fireExpandedEvent();\n }\n onFilterExpanded() {\n this.dispatchEvent({ type: \"filterExpanded\" });\n }\n fireExpandedEvent() {\n let expandedCount = 0;\n let notExpandedCount = 0;\n const updateExpandCounts = (filterGroup) => {\n if (!filterGroup.isColumnGroup()) {\n return;\n }\n filterGroup.isExpanded() ? expandedCount++ : notExpandedCount++;\n filterGroup.getChildren().forEach((child) => {\n if (child instanceof ToolPanelFilterGroupComp) {\n updateExpandCounts(child);\n }\n });\n };\n this.filterGroupComps.forEach(updateExpandCounts);\n let state;\n if (expandedCount > 0 && notExpandedCount > 0) {\n state = 2;\n } else if (notExpandedCount > 0) {\n state = 1;\n } else {\n state = 0;\n }\n this.dispatchEvent({ type: \"groupExpanded\", state });\n }\n performFilterSearch(searchText) {\n this.searchFilterText = _47.exists(searchText) ? searchText.toLowerCase() : null;\n this.searchFilters(this.searchFilterText);\n }\n searchFilters(searchFilter) {\n const passesFilter = (groupName) => {\n return !_47.exists(searchFilter) || groupName.toLowerCase().indexOf(searchFilter) !== -1;\n };\n const recursivelySearch = (filterItem, parentPasses) => {\n if (!(filterItem instanceof ToolPanelFilterGroupComp)) {\n return passesFilter(filterItem.getColumnFilterName() || \"\");\n }\n const children = filterItem.getChildren();\n const groupNamePasses = passesFilter(filterItem.getFilterGroupName());\n const alreadyPassed = parentPasses || groupNamePasses;\n if (alreadyPassed) {\n filterItem.hideGroup(false);\n for (let i = 0; i < children.length; i++) {\n recursivelySearch(children[i], alreadyPassed);\n filterItem.hideGroupItem(false, i);\n }\n return true;\n }\n let anyChildPasses = false;\n children.forEach((child, index) => {\n const childPasses = recursivelySearch(child, parentPasses);\n filterItem.hideGroupItem(!childPasses, index);\n if (childPasses) {\n anyChildPasses = true;\n }\n });\n filterItem.hideGroup(!anyChildPasses);\n return anyChildPasses;\n };\n let firstVisible;\n let lastVisible;\n this.filterGroupComps.forEach((filterGroup, idx) => {\n recursivelySearch(filterGroup, false);\n if (firstVisible === void 0) {\n if (!filterGroup.containsCssClass(\"ag-hidden\")) {\n firstVisible = idx;\n lastVisible = idx;\n }\n } else if (!filterGroup.containsCssClass(\"ag-hidden\") && lastVisible !== idx) {\n lastVisible = idx;\n }\n });\n this.setFirstAndLastVisible(firstVisible, lastVisible);\n this.refreshAriaLabel();\n }\n setFirstAndLastVisible(firstIdx, lastIdx) {\n this.filterGroupComps.forEach((filterGroup, idx) => {\n filterGroup.removeCssClass(\"ag-first-group-visible\");\n filterGroup.removeCssClass(\"ag-last-group-visible\");\n if (idx === firstIdx) {\n filterGroup.addCssClass(\"ag-first-group-visible\");\n }\n if (idx === lastIdx) {\n filterGroup.addCssClass(\"ag-last-group-visible\");\n }\n });\n }\n refreshFilters(isDisplayed) {\n this.filterGroupComps.forEach((filterGroupComp) => filterGroupComp.refreshFilters(isDisplayed));\n }\n getExpandedFiltersAndGroups() {\n const expandedGroupIds = [];\n const expandedColIds = /* @__PURE__ */ new Set();\n const getExpandedFiltersAndGroups = (filterComp) => {\n if (filterComp instanceof ToolPanelFilterGroupComp) {\n filterComp.getChildren().forEach((child) => getExpandedFiltersAndGroups(child));\n const groupId = filterComp.getFilterGroupId();\n if (filterComp.isExpanded() && !expandedColIds.has(groupId)) {\n expandedGroupIds.push(groupId);\n }\n } else {\n if (filterComp.isExpanded()) {\n expandedColIds.add(filterComp.getColumn().getColId());\n }\n }\n };\n this.filterGroupComps.forEach(getExpandedFiltersAndGroups);\n return { expandedGroupIds, expandedColIds: Array.from(expandedColIds) };\n }\n destroyFilters() {\n this.filterGroupComps = this.destroyBeans(this.filterGroupComps);\n _47.clearElement(this.getGui());\n }\n destroy() {\n this.destroyFilters();\n super.destroy();\n }\n};\n_FiltersToolPanelListPanel.TEMPLATE = /* html */\n`
`;\n__decorateClass10([\n Autowired413(\"toolPanelColDefService\")\n], _FiltersToolPanelListPanel.prototype, \"toolPanelColDefService\", 2);\n__decorateClass10([\n Autowired413(\"columnModel\")\n], _FiltersToolPanelListPanel.prototype, \"columnModel\", 2);\nvar FiltersToolPanelListPanel = _FiltersToolPanelListPanel;\nvar _FiltersToolPanel = class _FiltersToolPanel2 extends Component55 {\n constructor() {\n super(_FiltersToolPanel2.TEMPLATE);\n this.initialised = false;\n this.listenerDestroyFuncs = [];\n }\n init(params) {\n if (this.initialised) {\n this.listenerDestroyFuncs.forEach((func) => func());\n this.listenerDestroyFuncs = [];\n }\n this.initialised = true;\n const defaultParams = this.gos.addGridCommonParams({\n suppressExpandAll: false,\n suppressFilterSearch: false,\n suppressSyncLayoutWithGrid: false\n });\n this.params = __spreadValues8(__spreadValues8({}, defaultParams), params);\n this.filtersToolPanelHeaderPanel.init(this.params);\n this.filtersToolPanelListPanel.init(this.params);\n const hideExpand = this.params.suppressExpandAll;\n const hideSearch = this.params.suppressFilterSearch;\n if (hideExpand && hideSearch) {\n this.filtersToolPanelHeaderPanel.setDisplayed(false);\n }\n this.listenerDestroyFuncs.push(\n this.addManagedListener(this.filtersToolPanelHeaderPanel, \"expandAll\", this.onExpandAll.bind(this)),\n this.addManagedListener(this.filtersToolPanelHeaderPanel, \"collapseAll\", this.onCollapseAll.bind(this)),\n this.addManagedListener(this.filtersToolPanelHeaderPanel, \"searchChanged\", this.onSearchChanged.bind(this)),\n this.addManagedListener(this.filtersToolPanelListPanel, \"filterExpanded\", this.onFilterExpanded.bind(this)),\n this.addManagedListener(this.filtersToolPanelListPanel, \"groupExpanded\", this.onGroupExpanded.bind(this))\n );\n }\n // lazy initialise the panel\n setVisible(visible) {\n super.setDisplayed(visible);\n if (visible && !this.initialised) {\n this.init(this.params);\n }\n }\n onExpandAll() {\n this.filtersToolPanelListPanel.expandFilterGroups(true);\n }\n onCollapseAll() {\n this.filtersToolPanelListPanel.expandFilterGroups(false);\n }\n onSearchChanged(event) {\n this.filtersToolPanelListPanel.performFilterSearch(event.searchText);\n }\n setFilterLayout(colDefs) {\n this.filtersToolPanelListPanel.setFiltersLayout(colDefs);\n }\n onFilterExpanded() {\n this.params.onStateUpdated();\n }\n onGroupExpanded(event) {\n this.filtersToolPanelHeaderPanel.setExpandState(event.state);\n this.params.onStateUpdated();\n }\n expandFilterGroups(groupIds) {\n this.filtersToolPanelListPanel.expandFilterGroups(true, groupIds);\n }\n collapseFilterGroups(groupIds) {\n this.filtersToolPanelListPanel.expandFilterGroups(false, groupIds);\n }\n expandFilters(colIds) {\n this.filtersToolPanelListPanel.expandFilters(true, colIds);\n }\n collapseFilters(colIds) {\n this.filtersToolPanelListPanel.expandFilters(false, colIds);\n }\n syncLayoutWithGrid() {\n this.filtersToolPanelListPanel.syncFilterLayout();\n }\n refresh(params) {\n this.init(params);\n return true;\n }\n getState() {\n return this.filtersToolPanelListPanel.getExpandedFiltersAndGroups();\n }\n // this is a user component, and IComponent has \"public destroy()\" as part of the interface.\n // so we need to override destroy() just to make the method public.\n destroy() {\n super.destroy();\n }\n};\n_FiltersToolPanel.TEMPLATE = /* html */\n`
`;\n__decorateClass10([\n RefSelector44(\"filtersToolPanelHeaderPanel\")\n], _FiltersToolPanel.prototype, \"filtersToolPanelHeaderPanel\", 2);\n__decorateClass10([\n RefSelector44(\"filtersToolPanelListPanel\")\n], _FiltersToolPanel.prototype, \"filtersToolPanelListPanel\", 2);\nvar FiltersToolPanel = _FiltersToolPanel;\nvar VERSION10 = \"31.3.2\";\nvar FiltersToolPanelModule = {\n version: VERSION10,\n moduleName: ModuleNames10.FiltersToolPanelModule,\n beans: [],\n agStackComponents: [\n { componentName: \"AgFiltersToolPanelHeader\", componentClass: FiltersToolPanelHeaderPanel },\n { componentName: \"AgFiltersToolPanelList\", componentClass: FiltersToolPanelListPanel }\n ],\n userComponents: [\n { componentName: \"agFiltersToolPanel\", componentClass: FiltersToolPanel }\n ],\n dependantModules: [\n SideBarModule,\n EnterpriseCoreModule\n ]\n};\n\n// enterprise-modules/master-detail/dist/package/main.esm.mjs\nimport { ModuleNames as ModuleNames11 } from \"ag-grid-community\";\nimport { Component as Component50, RefSelector as RefSelector19, _ as _214, ModuleRegistry as ModuleRegistry4, createGrid, ColumnApi as ColumnApi2 } from \"ag-grid-community\";\nimport {\n Autowired as Autowired59,\n BeanStub as BeanStub19,\n Events as Events16,\n _ as _48\n} from \"ag-grid-community\";\nvar __defProp11 = Object.defineProperty;\nvar __getOwnPropDesc11 = Object.getOwnPropertyDescriptor;\nvar __getOwnPropSymbols9 = Object.getOwnPropertySymbols;\nvar __hasOwnProp10 = Object.prototype.hasOwnProperty;\nvar __propIsEnum9 = Object.prototype.propertyIsEnumerable;\nvar __defNormalProp9 = (obj, key, value) => key in obj ? __defProp11(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;\nvar __spreadValues9 = (a, b) => {\n for (var prop in b || (b = {}))\n if (__hasOwnProp10.call(b, prop))\n __defNormalProp9(a, prop, b[prop]);\n if (__getOwnPropSymbols9)\n for (var prop of __getOwnPropSymbols9(b)) {\n if (__propIsEnum9.call(b, prop))\n __defNormalProp9(a, prop, b[prop]);\n }\n return a;\n};\nvar __decorateClass11 = (decorators, target, key, kind) => {\n var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc11(target, key) : target;\n for (var i = decorators.length - 1, decorator; i >= 0; i--)\n if (decorator = decorators[i])\n result = (kind ? decorator(target, key, result) : decorator(result)) || result;\n if (kind && result)\n __defProp11(target, key, result);\n return result;\n};\nvar DetailCellRendererCtrl = class extends BeanStub19 {\n constructor() {\n super(...arguments);\n this.loadRowDataVersion = 0;\n }\n init(comp, params) {\n this.params = params;\n this.comp = comp;\n const doNothingBecauseInsidePinnedSection = params.pinned != null;\n if (doNothingBecauseInsidePinnedSection) {\n return;\n }\n this.setAutoHeightClasses();\n this.setupRefreshStrategy();\n this.addThemeToDetailGrid();\n this.createDetailGrid();\n this.loadRowData();\n this.addManagedListener(this.eventService, Events16.EVENT_FULL_WIDTH_ROW_FOCUSED, this.onFullWidthRowFocused.bind(this));\n }\n onFullWidthRowFocused(e) {\n const params = this.params;\n const row = { rowIndex: params.node.rowIndex, rowPinned: params.node.rowPinned };\n const eventRow = { rowIndex: e.rowIndex, rowPinned: e.rowPinned };\n const isSameRow = this.rowPositionUtils.sameRow(row, eventRow);\n if (!isSameRow) {\n return;\n }\n this.focusService.focusInto(this.comp.getGui(), e.fromBelow);\n }\n setAutoHeightClasses() {\n const autoHeight = this.gos.get(\"detailRowAutoHeight\");\n const parentClass = autoHeight ? \"ag-details-row-auto-height\" : \"ag-details-row-fixed-height\";\n const detailClass = autoHeight ? \"ag-details-grid-auto-height\" : \"ag-details-grid-fixed-height\";\n this.comp.addOrRemoveCssClass(parentClass, true);\n this.comp.addOrRemoveDetailGridCssClass(detailClass, true);\n }\n setupRefreshStrategy() {\n const providedStrategy = this.params.refreshStrategy;\n const validSelection = providedStrategy == \"everything\" || providedStrategy == \"nothing\" || providedStrategy == \"rows\";\n if (validSelection) {\n this.refreshStrategy = providedStrategy;\n return;\n }\n if (providedStrategy != null) {\n console.warn(\"AG Grid: invalid cellRendererParams.refreshStrategy = '\" + providedStrategy + \"' supplied, defaulting to refreshStrategy = 'rows'.\");\n }\n this.refreshStrategy = \"rows\";\n }\n addThemeToDetailGrid() {\n const { theme } = this.environment.getTheme();\n if (theme) {\n this.comp.addOrRemoveDetailGridCssClass(theme, true);\n }\n }\n createDetailGrid() {\n if (_48.missing(this.params.detailGridOptions)) {\n console.warn(\"AG Grid: could not find detail grid options for master detail, please set gridOptions.detailCellRendererParams.detailGridOptions\");\n return;\n }\n const autoHeight = this.gos.get(\"detailRowAutoHeight\");\n const gridOptions = __spreadValues9({}, this.params.detailGridOptions);\n if (autoHeight) {\n gridOptions.domLayout = \"autoHeight\";\n }\n this.comp.setDetailGrid(gridOptions);\n }\n registerDetailWithMaster(api, columnApi) {\n const rowId = this.params.node.id;\n const masterGridApi = this.params.api;\n const gridInfo = {\n id: rowId,\n api,\n columnApi\n };\n const rowNode = this.params.node;\n if (masterGridApi.isDestroyed()) {\n return;\n }\n masterGridApi.addDetailGridInfo(rowId, gridInfo);\n rowNode.detailGridInfo = gridInfo;\n this.addDestroyFunc(() => {\n if (rowNode.detailGridInfo !== gridInfo) {\n return;\n }\n if (!masterGridApi.isDestroyed()) {\n masterGridApi.removeDetailGridInfo(rowId);\n }\n rowNode.detailGridInfo = null;\n });\n }\n loadRowData() {\n var _a, _b, _c;\n this.loadRowDataVersion++;\n const versionThisCall = this.loadRowDataVersion;\n if (((_a = this.params.detailGridOptions) == null ? void 0 : _a.rowModelType) === \"serverSide\") {\n const node = this.params.node;\n (_c = (_b = node.detailGridInfo) == null ? void 0 : _b.api) == null ? void 0 : _c.refreshServerSide({ purge: true });\n return;\n }\n const userFunc = this.params.getDetailRowData;\n if (!userFunc) {\n console.warn(\"AG Grid: could not find getDetailRowData for master / detail, please set gridOptions.detailCellRendererParams.getDetailRowData\");\n return;\n }\n const successCallback = (rowData) => {\n const mostRecentCall = this.loadRowDataVersion === versionThisCall;\n if (mostRecentCall) {\n this.comp.setRowData(rowData);\n }\n };\n const funcParams = {\n node: this.params.node,\n // we take data from node, rather than params.data\n // as the data could have been updated with new instance\n data: this.params.node.data,\n successCallback,\n context: this.gos.getGridCommonParams().context\n };\n userFunc(funcParams);\n }\n refresh() {\n const GET_GRID_TO_REFRESH = false;\n const GET_GRID_TO_DO_NOTHING = true;\n switch (this.refreshStrategy) {\n case \"nothing\":\n return GET_GRID_TO_DO_NOTHING;\n case \"everything\":\n return GET_GRID_TO_REFRESH;\n }\n this.loadRowData();\n return GET_GRID_TO_DO_NOTHING;\n }\n};\n__decorateClass11([\n Autowired59(\"rowPositionUtils\")\n], DetailCellRendererCtrl.prototype, \"rowPositionUtils\", 2);\n__decorateClass11([\n Autowired59(\"focusService\")\n], DetailCellRendererCtrl.prototype, \"focusService\", 2);\nvar _DetailCellRenderer = class _DetailCellRenderer2 extends Component50 {\n init(params) {\n this.params = params;\n this.selectAndSetTemplate();\n const compProxy = {\n addOrRemoveCssClass: (cssClassName, on) => this.addOrRemoveCssClass(cssClassName, on),\n addOrRemoveDetailGridCssClass: (cssClassName, on) => this.eDetailGrid.classList.toggle(cssClassName, on),\n setDetailGrid: (gridOptions) => this.setDetailGrid(gridOptions),\n setRowData: (rowData) => this.setRowData(rowData),\n getGui: () => this.eDetailGrid\n };\n this.ctrl = this.createManagedBean(new DetailCellRendererCtrl());\n this.ctrl.init(compProxy, params);\n }\n refresh() {\n return this.ctrl && this.ctrl.refresh();\n }\n // this is a user component, and IComponent has \"public destroy()\" as part of the interface.\n // so we need to override destroy() just to make the method public.\n destroy() {\n super.destroy();\n }\n selectAndSetTemplate() {\n if (this.params.pinned) {\n this.setTemplate('
');\n return;\n }\n const setDefaultTemplate = () => {\n this.setTemplate(_DetailCellRenderer2.TEMPLATE);\n };\n if (_214.missing(this.params.template)) {\n setDefaultTemplate();\n } else {\n if (typeof this.params.template === \"string\") {\n this.setTemplate(this.params.template);\n } else if (typeof this.params.template === \"function\") {\n const templateFunc = this.params.template;\n const template = templateFunc(this.params);\n this.setTemplate(template);\n } else {\n console.warn(\"AG Grid: detailCellRendererParams.template should be function or string\");\n setDefaultTemplate();\n }\n }\n if (this.eDetailGrid == null) {\n console.warn('AG Grid: reference to eDetailGrid was missing from the details template. Please add ref=\"eDetailGrid\" to the template.');\n }\n }\n setDetailGrid(gridOptions) {\n if (!this.eDetailGrid) {\n return;\n }\n const agGridReact = this.context.getBean(\"agGridReact\");\n const agGridReactCloned = agGridReact ? _214.cloneObject(agGridReact) : void 0;\n const frameworkComponentWrapper = this.context.getBean(\"frameworkComponentWrapper\");\n const frameworkOverrides = this.getFrameworkOverrides();\n const api = createGrid(this.eDetailGrid, gridOptions, {\n frameworkOverrides,\n providedBeanInstances: {\n agGridReact: agGridReactCloned,\n frameworkComponentWrapper\n },\n modules: ModuleRegistry4.__getGridRegisteredModules(this.params.api.getGridId())\n });\n this.detailApi = api;\n this.ctrl.registerDetailWithMaster(api, new ColumnApi2(api));\n this.addDestroyFunc(() => {\n api == null ? void 0 : api.destroy();\n });\n }\n setRowData(rowData) {\n this.detailApi && this.detailApi.setGridOption(\"rowData\", rowData);\n }\n};\n_DetailCellRenderer.TEMPLATE = /* html */\n`
`;\n__decorateClass11([\n RefSelector19(\"eDetailGrid\")\n], _DetailCellRenderer.prototype, \"eDetailGrid\", 2);\nvar DetailCellRenderer = _DetailCellRenderer;\nvar VERSION11 = \"31.3.2\";\nvar MasterDetailModule = {\n version: VERSION11,\n moduleName: ModuleNames11.MasterDetailModule,\n beans: [],\n userComponents: [\n { componentName: \"agDetailCellRenderer\", componentClass: DetailCellRenderer }\n ],\n controllers: [\n { controllerName: \"detailCellRenderer\", controllerClass: DetailCellRendererCtrl }\n ],\n dependantModules: [\n EnterpriseCoreModule\n ]\n};\n\n// enterprise-modules/menu/dist/package/main.esm.mjs\nimport { ModuleNames as ModuleNames52 } from \"ag-grid-community\";\nimport {\n _ as _49,\n Autowired as Autowired60,\n Bean as Bean13,\n BeanStub as BeanStub20,\n ModuleNames as ModuleNames12,\n ModuleRegistry as ModuleRegistry5,\n PostConstruct as PostConstruct60,\n RefSelector as RefSelector20,\n AgPromise as AgPromise4,\n TabbedLayout as TabbedLayout2,\n AgMenuItemComponent as AgMenuItemComponent3,\n Component as Component51,\n Events as Events17,\n FilterWrapperComp as FilterWrapperComp3\n} from \"ag-grid-community\";\nimport {\n _ as _215,\n AgMenuItemComponent as AgMenuItemComponent22,\n AgMenuList as AgMenuList22,\n Autowired as Autowired214,\n Bean as Bean27,\n BeanStub as BeanStub27,\n Component as Component213,\n ModuleNames as ModuleNames25,\n ModuleRegistry as ModuleRegistry22,\n Optional as Optional5,\n PostConstruct as PostConstruct214,\n Events as Events28\n} from \"ag-grid-community\";\nimport {\n _ as _313,\n Autowired as Autowired314,\n Bean as Bean34,\n BeanStub as BeanStub34,\n ModuleNames as ModuleNames32,\n ModuleRegistry as ModuleRegistry32,\n Optional as Optional22\n} from \"ag-grid-community\";\nimport { Bean as Bean44, BeanStub as BeanStub44, ModuleNames as ModuleNames42, ModuleRegistry as ModuleRegistry42, Optional as Optional32, _ as _410 } from \"ag-grid-community\";\nimport {\n AgDialog as AgDialog4,\n Autowired as Autowired414,\n Bean as Bean53,\n BeanStub as BeanStub54,\n Events as Events36\n} from \"ag-grid-community\";\nimport {\n AgMenuList as AgMenuList3,\n Autowired as Autowired510,\n Bean as Bean63,\n BeanStub as BeanStub64,\n _ as _56\n} from \"ag-grid-community\";\nimport {\n Autowired as Autowired65,\n Bean as Bean72,\n BeanStub as BeanStub73,\n _ as _66\n} from \"ag-grid-community\";\nvar __defProp12 = Object.defineProperty;\nvar __defProps7 = Object.defineProperties;\nvar __getOwnPropDesc12 = Object.getOwnPropertyDescriptor;\nvar __getOwnPropDescs7 = Object.getOwnPropertyDescriptors;\nvar __getOwnPropSymbols10 = Object.getOwnPropertySymbols;\nvar __hasOwnProp11 = Object.prototype.hasOwnProperty;\nvar __propIsEnum10 = Object.prototype.propertyIsEnumerable;\nvar __defNormalProp10 = (obj, key, value) => key in obj ? __defProp12(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;\nvar __spreadValues10 = (a, b) => {\n for (var prop in b || (b = {}))\n if (__hasOwnProp11.call(b, prop))\n __defNormalProp10(a, prop, b[prop]);\n if (__getOwnPropSymbols10)\n for (var prop of __getOwnPropSymbols10(b)) {\n if (__propIsEnum10.call(b, prop))\n __defNormalProp10(a, prop, b[prop]);\n }\n return a;\n};\nvar __spreadProps7 = (a, b) => __defProps7(a, __getOwnPropDescs7(b));\nvar __decorateClass12 = (decorators, target, key, kind) => {\n var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc12(target, key) : target;\n for (var i = decorators.length - 1, decorator; i >= 0; i--)\n if (decorator = decorators[i])\n result = (kind ? decorator(target, key, result) : decorator(result)) || result;\n if (kind && result)\n __defProp12(target, key, result);\n return result;\n};\nvar EnterpriseMenuFactory = class extends BeanStub20 {\n hideActiveMenu() {\n this.destroyBean(this.activeMenu);\n }\n showMenuAfterMouseEvent(column, mouseEvent, containerType, filtersOnly) {\n const defaultTab = filtersOnly ? \"filterMenuTab\" : void 0;\n this.showMenu(column, (menu) => {\n var _a;\n const ePopup = menu.getGui();\n this.popupService.positionPopupUnderMouseEvent({\n type: containerType,\n column,\n mouseEvent,\n ePopup\n });\n if (defaultTab) {\n (_a = menu.showTab) == null ? void 0 : _a.call(menu, defaultTab);\n }\n this.dispatchVisibleChangedEvent(true, false, column, defaultTab);\n }, containerType, defaultTab, void 0, mouseEvent.target);\n }\n showMenuAfterButtonClick(column, eventSource, containerType, filtersOnly) {\n let multiplier = -1;\n let alignSide = \"left\";\n if (this.gos.get(\"enableRtl\")) {\n multiplier = 1;\n alignSide = \"right\";\n }\n const defaultTab = filtersOnly ? \"filterMenuTab\" : void 0;\n const restrictToTabs = defaultTab ? [defaultTab] : void 0;\n const isLegacyMenuEnabled = this.menuService.isLegacyMenuEnabled();\n let nudgeX = (isLegacyMenuEnabled ? 9 : 4) * multiplier;\n let nudgeY = isLegacyMenuEnabled ? -23 : 4;\n this.showMenu(column, (menu) => {\n var _a;\n const ePopup = menu.getGui();\n this.popupService.positionPopupByComponent({\n type: containerType,\n column,\n eventSource,\n ePopup,\n alignSide,\n nudgeX,\n nudgeY,\n position: \"under\",\n keepWithinBounds: true\n });\n if (defaultTab) {\n (_a = menu.showTab) == null ? void 0 : _a.call(menu, defaultTab);\n }\n this.dispatchVisibleChangedEvent(true, false, column, defaultTab);\n }, containerType, defaultTab, restrictToTabs, eventSource);\n }\n showMenu(column, positionCallback, containerType, defaultTab, restrictToTabs, eventSource) {\n var _a;\n const { menu, eMenuGui, anchorToElement, restoreFocusParams } = this.getMenuParams(column, restrictToTabs, eventSource);\n const closedFuncs = [];\n closedFuncs.push(\n (e) => {\n const eComp = menu.getGui();\n this.destroyBean(menu);\n if (column) {\n column.setMenuVisible(false, \"contextMenu\");\n this.menuUtils.restoreFocusOnClose(restoreFocusParams, eComp, e);\n }\n }\n );\n const translate = this.localeService.getLocaleTextFunc();\n this.popupService.addPopup({\n modal: true,\n eChild: eMenuGui,\n closeOnEsc: true,\n closedCallback: (e) => {\n closedFuncs.forEach((f) => f(e));\n this.dispatchVisibleChangedEvent(false, false, column, defaultTab);\n },\n afterGuiAttached: (params) => menu.afterGuiAttached(Object.assign({}, { container: containerType }, params)),\n // if defaultTab is not present, positionCallback will be called\n // after `showTabBasedOnPreviousSelection` is called.\n positionCallback: !!defaultTab ? () => positionCallback(menu) : void 0,\n ariaLabel: translate(\"ariaLabelColumnMenu\", \"Column Menu\")\n });\n if (!defaultTab) {\n (_a = menu.showTabBasedOnPreviousSelection) == null ? void 0 : _a.call(menu);\n positionCallback(menu);\n }\n if (this.menuService.isColumnMenuAnchoringEnabled()) {\n const stopAnchoringPromise = this.popupService.setPopupPositionRelatedToElement(eMenuGui, anchorToElement);\n if (stopAnchoringPromise && column) {\n this.addStopAnchoring(stopAnchoringPromise, column, closedFuncs);\n }\n }\n menu.addEventListener(TabbedColumnMenu.EVENT_TAB_SELECTED, (event) => {\n this.dispatchVisibleChangedEvent(false, true, column);\n this.lastSelectedTab = event.key;\n this.dispatchVisibleChangedEvent(true, true, column);\n });\n column == null ? void 0 : column.setMenuVisible(true, \"contextMenu\");\n this.activeMenu = menu;\n menu.addEventListener(BeanStub20.EVENT_DESTROYED, () => {\n if (this.activeMenu === menu) {\n this.activeMenu = null;\n }\n });\n }\n addStopAnchoring(stopAnchoringPromise, column, closedFuncsArr) {\n stopAnchoringPromise.then((stopAnchoringFunc) => {\n column.addEventListener(\"leftChanged\", stopAnchoringFunc);\n column.addEventListener(\"visibleChanged\", stopAnchoringFunc);\n closedFuncsArr.push(() => {\n column.removeEventListener(\"leftChanged\", stopAnchoringFunc);\n column.removeEventListener(\"visibleChanged\", stopAnchoringFunc);\n });\n });\n }\n getMenuParams(column, restrictToTabs, eventSource) {\n const restoreFocusParams = {\n column,\n headerPosition: this.focusService.getFocusedHeader(),\n columnIndex: this.columnModel.getAllDisplayedColumns().indexOf(column),\n eventSource\n };\n const menu = this.createMenu(column, restoreFocusParams, restrictToTabs, eventSource);\n return {\n menu,\n eMenuGui: menu.getGui(),\n anchorToElement: eventSource || this.ctrlsService.getGridBodyCtrl().getGui(),\n restoreFocusParams\n };\n }\n createMenu(column, restoreFocusParams, restrictToTabs, eventSource) {\n if (this.menuService.isLegacyMenuEnabled()) {\n return this.createBean(new TabbedColumnMenu(column, restoreFocusParams, this.lastSelectedTab, restrictToTabs, eventSource));\n } else {\n return this.createBean(new ColumnContextMenu(column, restoreFocusParams, eventSource));\n }\n }\n dispatchVisibleChangedEvent(visible, switchingTab, column, defaultTab) {\n var _a, _b;\n const event = {\n type: Events17.EVENT_COLUMN_MENU_VISIBLE_CHANGED,\n visible,\n switchingTab,\n key: (_b = (_a = this.lastSelectedTab) != null ? _a : defaultTab) != null ? _b : this.menuService.isLegacyMenuEnabled() ? TabbedColumnMenu.TAB_GENERAL : \"columnMenu\",\n column: column != null ? column : null\n };\n this.eventService.dispatchEvent(event);\n }\n isMenuEnabled(column) {\n var _a;\n if (!this.menuService.isLegacyMenuEnabled()) {\n return true;\n }\n const isFilterDisabled = !this.filterManager.isFilterAllowed(column);\n const tabs = (_a = column.getColDef().menuTabs) != null ? _a : TabbedColumnMenu.TABS_DEFAULT;\n const numActiveTabs = isFilterDisabled && tabs.includes(TabbedColumnMenu.TAB_FILTER) ? tabs.length - 1 : tabs.length;\n return numActiveTabs > 0;\n }\n showMenuAfterContextMenuEvent(column, mouseEvent, touchEvent) {\n this.menuUtils.onContextMenu(mouseEvent, touchEvent, (eventOrTouch) => {\n this.showMenuAfterMouseEvent(column, eventOrTouch, \"columnMenu\");\n return true;\n });\n }\n};\n__decorateClass12([\n Autowired60(\"popupService\")\n], EnterpriseMenuFactory.prototype, \"popupService\", 2);\n__decorateClass12([\n Autowired60(\"focusService\")\n], EnterpriseMenuFactory.prototype, \"focusService\", 2);\n__decorateClass12([\n Autowired60(\"ctrlsService\")\n], EnterpriseMenuFactory.prototype, \"ctrlsService\", 2);\n__decorateClass12([\n Autowired60(\"columnModel\")\n], EnterpriseMenuFactory.prototype, \"columnModel\", 2);\n__decorateClass12([\n Autowired60(\"filterManager\")\n], EnterpriseMenuFactory.prototype, \"filterManager\", 2);\n__decorateClass12([\n Autowired60(\"menuUtils\")\n], EnterpriseMenuFactory.prototype, \"menuUtils\", 2);\n__decorateClass12([\n Autowired60(\"menuService\")\n], EnterpriseMenuFactory.prototype, \"menuService\", 2);\nEnterpriseMenuFactory = __decorateClass12([\n Bean13(\"enterpriseMenuFactory\")\n], EnterpriseMenuFactory);\nvar _TabbedColumnMenu = class _TabbedColumnMenu2 extends BeanStub20 {\n constructor(column, restoreFocusParams, initialSelection, restrictTo, sourceElement) {\n super();\n this.column = column;\n this.restoreFocusParams = restoreFocusParams;\n this.initialSelection = initialSelection;\n this.restrictTo = restrictTo;\n this.sourceElement = sourceElement;\n this.tabFactories = {};\n this.includeChecks = {};\n this.tabFactories[_TabbedColumnMenu2.TAB_GENERAL] = this.createMainPanel.bind(this);\n this.tabFactories[_TabbedColumnMenu2.TAB_FILTER] = this.createFilterPanel.bind(this);\n this.tabFactories[_TabbedColumnMenu2.TAB_COLUMNS] = this.createColumnsPanel.bind(this);\n this.includeChecks[_TabbedColumnMenu2.TAB_GENERAL] = () => true;\n this.includeChecks[_TabbedColumnMenu2.TAB_FILTER] = () => column ? this.filterManager.isFilterAllowed(column) : false;\n this.includeChecks[_TabbedColumnMenu2.TAB_COLUMNS] = () => true;\n }\n init() {\n const tabs = this.getTabsToCreate().map((name) => this.createTab(name));\n this.tabbedLayout = new TabbedLayout2({\n items: tabs,\n cssClass: \"ag-menu\",\n onActiveItemClicked: this.onHidePopup.bind(this),\n onItemClicked: this.onTabItemClicked.bind(this)\n });\n this.createBean(this.tabbedLayout);\n if (this.mainMenuList) {\n this.mainMenuList.setParentComponent(this.tabbedLayout);\n }\n this.addDestroyFunc(() => this.destroyBean(this.tabbedLayout));\n }\n getTabsToCreate() {\n var _a, _b;\n if (this.restrictTo) {\n return this.restrictTo;\n }\n return ((_b = (_a = this.column) == null ? void 0 : _a.getColDef().menuTabs) != null ? _b : _TabbedColumnMenu2.TABS_DEFAULT).filter((tabName) => this.isValidMenuTabItem(tabName)).filter((tabName) => this.isNotSuppressed(tabName)).filter((tabName) => this.isModuleLoaded(tabName));\n }\n isModuleLoaded(menuTabName) {\n if (menuTabName === _TabbedColumnMenu2.TAB_COLUMNS) {\n return ModuleRegistry5.__isRegistered(ModuleNames12.ColumnsToolPanelModule, this.context.getGridId());\n }\n return true;\n }\n isValidMenuTabItem(menuTabName) {\n let isValid = true;\n let itemsToConsider = _TabbedColumnMenu2.TABS_DEFAULT;\n if (this.restrictTo != null) {\n isValid = this.restrictTo.indexOf(menuTabName) > -1;\n itemsToConsider = this.restrictTo;\n }\n isValid = isValid && _TabbedColumnMenu2.TABS_DEFAULT.indexOf(menuTabName) > -1;\n if (!isValid) {\n console.warn(`AG Grid: Trying to render an invalid menu item '${menuTabName}'. Check that your 'menuTabs' contains one of [${itemsToConsider}]`);\n }\n return isValid;\n }\n isNotSuppressed(menuTabName) {\n return this.includeChecks[menuTabName]();\n }\n createTab(name) {\n return this.tabFactories[name]();\n }\n showTabBasedOnPreviousSelection() {\n this.showTab(this.initialSelection);\n }\n showTab(toShow) {\n if (this.tabItemColumns && toShow === _TabbedColumnMenu2.TAB_COLUMNS) {\n this.tabbedLayout.showItem(this.tabItemColumns);\n } else if (this.tabItemFilter && toShow === _TabbedColumnMenu2.TAB_FILTER) {\n this.tabbedLayout.showItem(this.tabItemFilter);\n } else if (this.tabItemGeneral && toShow === _TabbedColumnMenu2.TAB_GENERAL) {\n this.tabbedLayout.showItem(this.tabItemGeneral);\n } else {\n this.tabbedLayout.showFirstItem();\n }\n }\n onTabItemClicked(event) {\n let key = null;\n switch (event.item) {\n case this.tabItemColumns:\n key = _TabbedColumnMenu2.TAB_COLUMNS;\n break;\n case this.tabItemFilter:\n key = _TabbedColumnMenu2.TAB_FILTER;\n break;\n case this.tabItemGeneral:\n key = _TabbedColumnMenu2.TAB_GENERAL;\n break;\n }\n if (key) {\n this.activateTab(key);\n }\n }\n activateTab(tab) {\n const ev = {\n type: _TabbedColumnMenu2.EVENT_TAB_SELECTED,\n key: tab\n };\n this.dispatchEvent(ev);\n }\n createMainPanel() {\n this.mainMenuList = this.columnMenuFactory.createMenu(this, this.column, () => {\n var _a;\n return (_a = this.sourceElement) != null ? _a : this.getGui();\n });\n this.mainMenuList.addEventListener(AgMenuItemComponent3.EVENT_CLOSE_MENU, this.onHidePopup.bind(this));\n this.tabItemGeneral = {\n title: _49.createIconNoSpan(\"menu\", this.gos, this.column),\n titleLabel: _TabbedColumnMenu2.TAB_GENERAL.replace(\"MenuTab\", \"\"),\n bodyPromise: AgPromise4.resolve(this.mainMenuList.getGui()),\n name: _TabbedColumnMenu2.TAB_GENERAL\n };\n return this.tabItemGeneral;\n }\n onHidePopup(event) {\n this.menuUtils.closePopupAndRestoreFocusOnSelect(this.hidePopupFunc, this.restoreFocusParams, event);\n }\n createFilterPanel() {\n const comp = this.column ? this.createManagedBean(new FilterWrapperComp3(this.column, \"COLUMN_MENU\")) : null;\n if (!(comp == null ? void 0 : comp.hasFilter())) {\n throw new Error(\"AG Grid - Unable to instantiate filter\");\n }\n const afterAttachedCallback = (params) => comp.afterGuiAttached(params);\n const afterDetachedCallback = () => comp.afterGuiDetached();\n this.tabItemFilter = {\n title: _49.createIconNoSpan(\"filter\", this.gos, this.column),\n titleLabel: _TabbedColumnMenu2.TAB_FILTER.replace(\"MenuTab\", \"\"),\n bodyPromise: AgPromise4.resolve(comp == null ? void 0 : comp.getGui()),\n afterAttachedCallback,\n afterDetachedCallback,\n name: _TabbedColumnMenu2.TAB_FILTER\n };\n return this.tabItemFilter;\n }\n createColumnsPanel() {\n const eWrapperDiv = document.createElement(\"div\");\n eWrapperDiv.classList.add(\"ag-menu-column-select-wrapper\");\n const columnSelectPanel = this.columnChooserFactory.createColumnSelectPanel(this, this.column);\n const columnSelectPanelGui = columnSelectPanel.getGui();\n columnSelectPanelGui.classList.add(\"ag-menu-column-select\");\n eWrapperDiv.appendChild(columnSelectPanelGui);\n this.tabItemColumns = {\n title: _49.createIconNoSpan(\"columns\", this.gos, this.column),\n //createColumnsIcon(),\n titleLabel: _TabbedColumnMenu2.TAB_COLUMNS.replace(\"MenuTab\", \"\"),\n bodyPromise: AgPromise4.resolve(eWrapperDiv),\n name: _TabbedColumnMenu2.TAB_COLUMNS\n };\n return this.tabItemColumns;\n }\n afterGuiAttached(params) {\n const { container, hidePopup } = params;\n this.tabbedLayout.setAfterAttachedParams({ container, hidePopup });\n if (hidePopup) {\n this.hidePopupFunc = hidePopup;\n this.addDestroyFunc(hidePopup);\n }\n }\n getGui() {\n return this.tabbedLayout.getGui();\n }\n};\n_TabbedColumnMenu.EVENT_TAB_SELECTED = \"tabSelected\";\n_TabbedColumnMenu.TAB_FILTER = \"filterMenuTab\";\n_TabbedColumnMenu.TAB_GENERAL = \"generalMenuTab\";\n_TabbedColumnMenu.TAB_COLUMNS = \"columnsMenuTab\";\n_TabbedColumnMenu.TABS_DEFAULT = [_TabbedColumnMenu.TAB_GENERAL, _TabbedColumnMenu.TAB_FILTER, _TabbedColumnMenu.TAB_COLUMNS];\n__decorateClass12([\n Autowired60(\"filterManager\")\n], _TabbedColumnMenu.prototype, \"filterManager\", 2);\n__decorateClass12([\n Autowired60(\"columnChooserFactory\")\n], _TabbedColumnMenu.prototype, \"columnChooserFactory\", 2);\n__decorateClass12([\n Autowired60(\"columnMenuFactory\")\n], _TabbedColumnMenu.prototype, \"columnMenuFactory\", 2);\n__decorateClass12([\n Autowired60(\"menuUtils\")\n], _TabbedColumnMenu.prototype, \"menuUtils\", 2);\n__decorateClass12([\n PostConstruct60\n], _TabbedColumnMenu.prototype, \"init\", 1);\nvar TabbedColumnMenu = _TabbedColumnMenu;\nvar ColumnContextMenu = class extends Component51 {\n constructor(column, restoreFocusParams, sourceElement) {\n super(\n /* html */\n `\n \n `\n );\n this.column = column;\n this.restoreFocusParams = restoreFocusParams;\n this.sourceElement = sourceElement;\n }\n init() {\n this.mainMenuList = this.columnMenuFactory.createMenu(this, this.column, () => {\n var _a;\n return (_a = this.sourceElement) != null ? _a : this.getGui();\n });\n this.mainMenuList.addEventListener(AgMenuItemComponent3.EVENT_CLOSE_MENU, this.onHidePopup.bind(this));\n this.eColumnMenu.appendChild(this.mainMenuList.getGui());\n }\n onHidePopup(event) {\n this.menuUtils.closePopupAndRestoreFocusOnSelect(this.hidePopupFunc, this.restoreFocusParams, event);\n }\n afterGuiAttached({ hidePopup }) {\n if (hidePopup) {\n this.hidePopupFunc = hidePopup;\n this.addDestroyFunc(hidePopup);\n }\n this.focusService.focusInto(this.mainMenuList.getGui());\n }\n};\n__decorateClass12([\n Autowired60(\"columnMenuFactory\")\n], ColumnContextMenu.prototype, \"columnMenuFactory\", 2);\n__decorateClass12([\n Autowired60(\"menuUtils\")\n], ColumnContextMenu.prototype, \"menuUtils\", 2);\n__decorateClass12([\n Autowired60(\"focusService\")\n], ColumnContextMenu.prototype, \"focusService\", 2);\n__decorateClass12([\n RefSelector20(\"eColumnMenu\")\n], ColumnContextMenu.prototype, \"eColumnMenu\", 2);\n__decorateClass12([\n PostConstruct60\n], ColumnContextMenu.prototype, \"init\", 1);\nvar CSS_MENU = \"ag-menu\";\nvar CSS_CONTEXT_MENU_OPEN = \"ag-context-menu-open\";\nvar ContextMenuFactory = class extends BeanStub27 {\n hideActiveMenu() {\n this.destroyBean(this.activeMenu);\n }\n getMenuItems(node, column, value) {\n const defaultMenuOptions = [];\n if (_215.exists(node) && ModuleRegistry22.__isRegistered(ModuleNames25.ClipboardModule, this.context.getGridId())) {\n if (column) {\n if (!this.gos.get(\"suppressCutToClipboard\")) {\n defaultMenuOptions.push(\"cut\");\n }\n defaultMenuOptions.push(\"copy\", \"copyWithHeaders\", \"copyWithGroupHeaders\", \"paste\", \"separator\");\n }\n }\n if (this.gos.get(\"enableCharts\") && ModuleRegistry22.__isRegistered(ModuleNames25.GridChartsModule, this.context.getGridId())) {\n if (this.columnModel.isPivotMode()) {\n defaultMenuOptions.push(\"pivotChart\");\n }\n if (this.rangeService && !this.rangeService.isEmpty()) {\n defaultMenuOptions.push(\"chartRange\");\n }\n }\n if (_215.exists(node)) {\n const csvModuleMissing = !ModuleRegistry22.__isRegistered(ModuleNames25.CsvExportModule, this.context.getGridId());\n const excelModuleMissing = !ModuleRegistry22.__isRegistered(ModuleNames25.ExcelExportModule, this.context.getGridId());\n const suppressExcel = this.gos.get(\"suppressExcelExport\") || excelModuleMissing;\n const suppressCsv = this.gos.get(\"suppressCsvExport\") || csvModuleMissing;\n const onIPad = _215.isIOSUserAgent();\n const anyExport = !onIPad && (!suppressExcel || !suppressCsv);\n if (anyExport) {\n defaultMenuOptions.push(\"export\");\n }\n }\n const defaultItems = defaultMenuOptions.length ? defaultMenuOptions : void 0;\n const columnContextMenuItems = column == null ? void 0 : column.getColDef().contextMenuItems;\n if (Array.isArray(columnContextMenuItems)) {\n return columnContextMenuItems;\n }\n if (typeof columnContextMenuItems === \"function\") {\n return columnContextMenuItems(this.gos.addGridCommonParams({\n column,\n node,\n value,\n defaultItems\n }));\n }\n const userFunc = this.gos.getCallback(\"getContextMenuItems\");\n if (userFunc) {\n return userFunc({ column, node, value, defaultItems });\n }\n return defaultMenuOptions;\n }\n onContextMenu(mouseEvent, touchEvent, rowNode, column, value, anchorToElement) {\n this.menuUtils.onContextMenu(mouseEvent, touchEvent, (eventOrTouch) => this.showMenu(rowNode, column, value, eventOrTouch, anchorToElement));\n }\n showMenu(node, column, value, mouseEvent, anchorToElement) {\n const menuItems = this.getMenuItems(node, column, value);\n const eGridBodyGui = this.ctrlsService.getGridBodyCtrl().getGui();\n if (menuItems === void 0 || _215.missingOrEmpty(menuItems)) {\n return false;\n }\n const menu = new ContextMenu(menuItems, column, node, value);\n this.createBean(menu);\n const eMenuGui = menu.getGui();\n const positionParams = {\n column,\n rowNode: node,\n type: \"contextMenu\",\n mouseEvent,\n ePopup: eMenuGui,\n // move one pixel away so that accidentally double clicking\n // won't show the browser's contextmenu\n nudgeY: 1\n };\n const translate = this.localeService.getLocaleTextFunc();\n const addPopupRes = this.popupService.addPopup({\n modal: true,\n eChild: eMenuGui,\n closeOnEsc: true,\n closedCallback: (e) => {\n eGridBodyGui.classList.remove(CSS_CONTEXT_MENU_OPEN);\n this.destroyBean(menu);\n this.dispatchVisibleChangedEvent(false, e === void 0 ? \"api\" : \"ui\");\n },\n click: mouseEvent,\n positionCallback: () => {\n const isRtl = this.gos.get(\"enableRtl\");\n this.popupService.positionPopupUnderMouseEvent(__spreadProps7(__spreadValues10({}, positionParams), {\n nudgeX: isRtl ? (eMenuGui.offsetWidth + 1) * -1 : 1\n }));\n },\n // so when browser is scrolled down, or grid is scrolled, context menu stays with cell\n anchorToElement,\n ariaLabel: translate(\"ariaLabelContextMenu\", \"Context Menu\")\n });\n if (addPopupRes) {\n eGridBodyGui.classList.add(CSS_CONTEXT_MENU_OPEN);\n menu.afterGuiAttached({ container: \"contextMenu\", hidePopup: addPopupRes.hideFunc });\n }\n if (this.activeMenu) {\n this.hideActiveMenu();\n }\n this.activeMenu = menu;\n menu.addEventListener(BeanStub27.EVENT_DESTROYED, () => {\n if (this.activeMenu === menu) {\n this.activeMenu = null;\n }\n });\n if (addPopupRes) {\n menu.addEventListener(AgMenuItemComponent22.EVENT_CLOSE_MENU, (e) => {\n var _a, _b;\n return addPopupRes.hideFunc({\n mouseEvent: (_a = e.mouseEvent) != null ? _a : void 0,\n keyboardEvent: (_b = e.keyboardEvent) != null ? _b : void 0,\n forceHide: true\n });\n });\n }\n const isApi = mouseEvent && mouseEvent instanceof MouseEvent && mouseEvent.type === \"mousedown\";\n this.dispatchVisibleChangedEvent(true, isApi ? \"api\" : \"ui\");\n return true;\n }\n dispatchVisibleChangedEvent(visible, source = \"ui\") {\n const displayedEvent = {\n type: Events28.EVENT_CONTEXT_MENU_VISIBLE_CHANGED,\n visible,\n source\n };\n this.eventService.dispatchEvent(displayedEvent);\n }\n};\n__decorateClass12([\n Autowired214(\"popupService\")\n], ContextMenuFactory.prototype, \"popupService\", 2);\n__decorateClass12([\n Autowired214(\"ctrlsService\")\n], ContextMenuFactory.prototype, \"ctrlsService\", 2);\n__decorateClass12([\n Autowired214(\"columnModel\")\n], ContextMenuFactory.prototype, \"columnModel\", 2);\n__decorateClass12([\n Autowired214(\"menuUtils\")\n], ContextMenuFactory.prototype, \"menuUtils\", 2);\n__decorateClass12([\n Optional5(\"rangeService\")\n], ContextMenuFactory.prototype, \"rangeService\", 2);\nContextMenuFactory = __decorateClass12([\n Bean27(\"contextMenuFactory\")\n], ContextMenuFactory);\nvar ContextMenu = class extends Component213 {\n constructor(menuItems, column, node, value) {\n super(\n /* html */\n ``\n );\n this.menuItems = menuItems;\n this.column = column;\n this.node = node;\n this.value = value;\n this.menuList = null;\n this.focusedCell = null;\n }\n addMenuItems() {\n const menuList = this.createManagedBean(new AgMenuList22(0, {\n column: this.column,\n node: this.node,\n value: this.value\n }));\n const menuItemsMapped = this.menuItemMapper.mapWithStockItems(this.menuItems, null, () => this.getGui());\n menuList.addMenuItems(menuItemsMapped);\n this.appendChild(menuList);\n this.menuList = menuList;\n menuList.addEventListener(AgMenuItemComponent22.EVENT_CLOSE_MENU, (e) => this.dispatchEvent(e));\n }\n afterGuiAttached(params) {\n if (params.hidePopup) {\n this.addDestroyFunc(params.hidePopup);\n }\n this.focusedCell = this.focusService.getFocusedCell();\n if (this.menuList) {\n this.focusService.focusInto(this.menuList.getGui());\n }\n }\n restoreFocusedCell() {\n const currentFocusedCell = this.focusService.getFocusedCell();\n if (currentFocusedCell && this.focusedCell && this.cellPositionUtils.equals(currentFocusedCell, this.focusedCell)) {\n const { rowIndex, rowPinned, column } = this.focusedCell;\n const doc = this.gos.getDocument();\n const activeEl = this.gos.getActiveDomElement();\n if (!activeEl || activeEl === doc.body) {\n this.focusService.setFocusedCell({\n rowIndex,\n column,\n rowPinned,\n forceBrowserFocus: true,\n preventScrollOnBrowserFocus: !this.focusService.isKeyboardMode()\n });\n }\n }\n }\n destroy() {\n this.restoreFocusedCell();\n super.destroy();\n }\n};\n__decorateClass12([\n Autowired214(\"menuItemMapper\")\n], ContextMenu.prototype, \"menuItemMapper\", 2);\n__decorateClass12([\n Autowired214(\"focusService\")\n], ContextMenu.prototype, \"focusService\", 2);\n__decorateClass12([\n Autowired214(\"cellPositionUtils\")\n], ContextMenu.prototype, \"cellPositionUtils\", 2);\n__decorateClass12([\n PostConstruct214\n], ContextMenu.prototype, \"addMenuItems\", 1);\nvar MenuItemMapper = class extends BeanStub34 {\n mapWithStockItems(originalList, column, sourceElement) {\n if (!originalList) {\n return [];\n }\n const resultList = [];\n originalList.forEach((menuItemOrString) => {\n let result;\n if (typeof menuItemOrString === \"string\") {\n result = this.getStockMenuItem(menuItemOrString, column, sourceElement);\n } else {\n result = __spreadValues10({}, menuItemOrString);\n }\n if (!result) {\n return;\n }\n const resultDef = result;\n const { subMenu } = resultDef;\n if (subMenu && subMenu instanceof Array) {\n resultDef.subMenu = this.mapWithStockItems(subMenu, column, sourceElement);\n }\n if (result != null) {\n resultList.push(result);\n }\n });\n return resultList;\n }\n getStockMenuItem(key, column, sourceElement) {\n var _a;\n const localeTextFunc = this.localeService.getLocaleTextFunc();\n const skipHeaderOnAutoSize = this.gos.get(\"skipHeaderOnAutoSize\");\n switch (key) {\n case \"pinSubMenu\":\n return {\n name: localeTextFunc(\"pinColumn\", \"Pin Column\"),\n icon: _313.createIconNoSpan(\"menuPin\", this.gos, null),\n subMenu: [\"clearPinned\", \"pinLeft\", \"pinRight\"]\n };\n case \"pinLeft\":\n return {\n name: localeTextFunc(\"pinLeft\", \"Pin Left\"),\n action: () => this.columnModel.setColumnsPinned([column], \"left\", \"contextMenu\"),\n checked: !!column && column.isPinnedLeft()\n };\n case \"pinRight\":\n return {\n name: localeTextFunc(\"pinRight\", \"Pin Right\"),\n action: () => this.columnModel.setColumnsPinned([column], \"right\", \"contextMenu\"),\n checked: !!column && column.isPinnedRight()\n };\n case \"clearPinned\":\n return {\n name: localeTextFunc(\"noPin\", \"No Pin\"),\n action: () => this.columnModel.setColumnsPinned([column], null, \"contextMenu\"),\n checked: !!column && !column.isPinned()\n };\n case \"valueAggSubMenu\":\n if (ModuleRegistry32.__assertRegistered(ModuleNames32.RowGroupingModule, \"Aggregation from Menu\", this.context.getGridId())) {\n if (!(column == null ? void 0 : column.isPrimary()) && !(column == null ? void 0 : column.getColDef().pivotValueColumn)) {\n return null;\n }\n return {\n name: localeTextFunc(\"valueAggregation\", \"Value Aggregation\"),\n icon: _313.createIconNoSpan(\"menuValue\", this.gos, null),\n subMenu: this.createAggregationSubMenu(column, this.aggFuncService)\n };\n } else {\n return null;\n }\n case \"autoSizeThis\":\n return {\n name: localeTextFunc(\"autosizeThiscolumn\", \"Autosize This Column\"),\n action: () => this.columnModel.autoSizeColumn(column, \"contextMenu\", skipHeaderOnAutoSize)\n };\n case \"autoSizeAll\":\n return {\n name: localeTextFunc(\"autosizeAllColumns\", \"Autosize All Columns\"),\n action: () => this.columnModel.autoSizeAllColumns(\"contextMenu\", skipHeaderOnAutoSize)\n };\n case \"rowGroup\":\n return {\n name: localeTextFunc(\"groupBy\", \"Group by\") + \" \" + _313.escapeString(this.columnModel.getDisplayNameForColumn(column, \"header\")),\n disabled: (column == null ? void 0 : column.isRowGroupActive()) || !(column == null ? void 0 : column.getColDef().enableRowGroup),\n action: () => this.columnModel.addRowGroupColumns([column], \"contextMenu\"),\n icon: _313.createIconNoSpan(\"menuAddRowGroup\", this.gos, null)\n };\n case \"rowUnGroup\":\n const icon = _313.createIconNoSpan(\"menuRemoveRowGroup\", this.gos, null);\n const showRowGroup = column == null ? void 0 : column.getColDef().showRowGroup;\n const lockedGroups = this.gos.get(\"groupLockGroupColumns\");\n if (showRowGroup === true) {\n return {\n name: localeTextFunc(\"ungroupAll\", \"Un-Group All\"),\n disabled: lockedGroups === -1 || lockedGroups >= this.columnModel.getRowGroupColumns().length,\n action: () => this.columnModel.setRowGroupColumns(this.columnModel.getRowGroupColumns().slice(0, lockedGroups), \"contextMenu\"),\n icon\n };\n }\n if (typeof showRowGroup === \"string\") {\n const underlyingColumn = this.columnModel.getPrimaryColumn(showRowGroup);\n const ungroupByName = underlyingColumn != null ? _313.escapeString(this.columnModel.getDisplayNameForColumn(underlyingColumn, \"header\")) : showRowGroup;\n return {\n name: localeTextFunc(\"ungroupBy\", \"Un-Group by\") + \" \" + ungroupByName,\n disabled: underlyingColumn != null && this.columnModel.isColumnGroupingLocked(underlyingColumn),\n action: () => this.columnModel.removeRowGroupColumns([showRowGroup], \"contextMenu\"),\n icon\n };\n }\n return {\n name: localeTextFunc(\"ungroupBy\", \"Un-Group by\") + \" \" + _313.escapeString(this.columnModel.getDisplayNameForColumn(column, \"header\")),\n disabled: !(column == null ? void 0 : column.isRowGroupActive()) || !(column == null ? void 0 : column.getColDef().enableRowGroup) || this.columnModel.isColumnGroupingLocked(column),\n action: () => this.columnModel.removeRowGroupColumns([column], \"contextMenu\"),\n icon\n };\n case \"resetColumns\":\n return {\n name: localeTextFunc(\"resetColumns\", \"Reset Columns\"),\n action: () => this.columnModel.resetColumnState(\"contextMenu\")\n };\n case \"expandAll\":\n return {\n name: localeTextFunc(\"expandAll\", \"Expand All Row Groups\"),\n action: () => this.gridApi.expandAll()\n };\n case \"contractAll\":\n return {\n name: localeTextFunc(\"collapseAll\", \"Collapse All Row Groups\"),\n action: () => this.gridApi.collapseAll()\n };\n case \"copy\":\n if (ModuleRegistry32.__assertRegistered(ModuleNames32.ClipboardModule, \"Copy from Menu\", this.context.getGridId())) {\n return {\n name: localeTextFunc(\"copy\", \"Copy\"),\n shortcut: localeTextFunc(\"ctrlC\", \"Ctrl+C\"),\n icon: _313.createIconNoSpan(\"clipboardCopy\", this.gos, null),\n action: () => this.clipboardService.copyToClipboard()\n };\n } else {\n return null;\n }\n case \"copyWithHeaders\":\n if (ModuleRegistry32.__assertRegistered(ModuleNames32.ClipboardModule, \"Copy with Headers from Menu\", this.context.getGridId())) {\n return {\n name: localeTextFunc(\"copyWithHeaders\", \"Copy with Headers\"),\n // shortcut: localeTextFunc('ctrlC','Ctrl+C'),\n icon: _313.createIconNoSpan(\"clipboardCopy\", this.gos, null),\n action: () => this.clipboardService.copyToClipboard({ includeHeaders: true })\n };\n } else {\n return null;\n }\n case \"copyWithGroupHeaders\":\n if (ModuleRegistry32.__assertRegistered(ModuleNames32.ClipboardModule, \"Copy with Group Headers from Menu\", this.context.getGridId())) {\n return {\n name: localeTextFunc(\"copyWithGroupHeaders\", \"Copy with Group Headers\"),\n // shortcut: localeTextFunc('ctrlC','Ctrl+C'),\n icon: _313.createIconNoSpan(\"clipboardCopy\", this.gos, null),\n action: () => this.clipboardService.copyToClipboard({ includeHeaders: true, includeGroupHeaders: true })\n };\n } else {\n return null;\n }\n case \"cut\":\n if (ModuleRegistry32.__assertRegistered(ModuleNames32.ClipboardModule, \"Cut from Menu\", this.context.getGridId())) {\n const focusedCell = this.focusService.getFocusedCell();\n const rowNode = focusedCell ? this.rowPositionUtils.getRowNode(focusedCell) : null;\n const isEditable = rowNode ? focusedCell == null ? void 0 : focusedCell.column.isCellEditable(rowNode) : false;\n return {\n name: localeTextFunc(\"cut\", \"Cut\"),\n shortcut: localeTextFunc(\"ctrlX\", \"Ctrl+X\"),\n icon: _313.createIconNoSpan(\"clipboardCut\", this.gos, null),\n disabled: !isEditable || this.gos.get(\"suppressCutToClipboard\"),\n action: () => this.clipboardService.cutToClipboard(void 0, \"contextMenu\")\n };\n } else {\n return null;\n }\n case \"paste\":\n if (ModuleRegistry32.__assertRegistered(ModuleNames32.ClipboardModule, \"Paste from Clipboard\", this.context.getGridId())) {\n return {\n name: localeTextFunc(\"paste\", \"Paste\"),\n shortcut: localeTextFunc(\"ctrlV\", \"Ctrl+V\"),\n disabled: true,\n icon: _313.createIconNoSpan(\"clipboardPaste\", this.gos, null),\n action: () => this.clipboardService.pasteFromClipboard()\n };\n } else {\n return null;\n }\n case \"export\":\n const exportSubMenuItems = [];\n const csvModuleLoaded = ModuleRegistry32.__isRegistered(ModuleNames32.CsvExportModule, this.context.getGridId());\n const excelModuleLoaded = ModuleRegistry32.__isRegistered(ModuleNames32.ExcelExportModule, this.context.getGridId());\n if (!this.gos.get(\"suppressCsvExport\") && csvModuleLoaded) {\n exportSubMenuItems.push(\"csvExport\");\n }\n if (!this.gos.get(\"suppressExcelExport\") && excelModuleLoaded) {\n exportSubMenuItems.push(\"excelExport\");\n }\n return {\n name: localeTextFunc(\"export\", \"Export\"),\n subMenu: exportSubMenuItems,\n icon: _313.createIconNoSpan(\"save\", this.gos, null)\n };\n case \"csvExport\":\n return {\n name: localeTextFunc(\"csvExport\", \"CSV Export\"),\n icon: _313.createIconNoSpan(\"csvExport\", this.gos, null),\n action: () => this.gridApi.exportDataAsCsv({})\n };\n case \"excelExport\":\n return {\n name: localeTextFunc(\"excelExport\", \"Excel Export\"),\n icon: _313.createIconNoSpan(\"excelExport\", this.gos, null),\n action: () => this.gridApi.exportDataAsExcel()\n };\n case \"separator\":\n return \"separator\";\n case \"pivotChart\":\n case \"chartRange\":\n return (_a = this.chartMenuItemMapper.getChartItems(key)) != null ? _a : null;\n case \"columnFilter\":\n if (column) {\n return {\n name: localeTextFunc(\"columnFilter\", \"Column Filter\"),\n icon: _313.createIconNoSpan(\"filter\", this.gos, null),\n action: () => this.menuService.showFilterMenu({\n column,\n buttonElement: sourceElement(),\n containerType: \"columnFilter\",\n positionBy: \"button\"\n })\n };\n } else {\n return null;\n }\n case \"columnChooser\":\n if (ModuleRegistry32.__isRegistered(ModuleNames32.ColumnsToolPanelModule, this.context.getGridId())) {\n return {\n name: localeTextFunc(\"columnChooser\", \"Choose Columns\"),\n icon: _313.createIconNoSpan(\"columns\", this.gos, null),\n action: () => this.menuService.showColumnChooser({ column, eventSource: sourceElement() })\n };\n } else {\n return null;\n }\n case \"sortAscending\":\n return {\n name: localeTextFunc(\"sortAscending\", \"Sort Ascending\"),\n icon: _313.createIconNoSpan(\"sortAscending\", this.gos, null),\n action: () => this.sortController.setSortForColumn(column, \"asc\", false, \"columnMenu\")\n };\n case \"sortDescending\":\n return {\n name: localeTextFunc(\"sortDescending\", \"Sort Descending\"),\n icon: _313.createIconNoSpan(\"sortDescending\", this.gos, null),\n action: () => this.sortController.setSortForColumn(column, \"desc\", false, \"columnMenu\")\n };\n case \"sortUnSort\":\n return {\n name: localeTextFunc(\"sortUnSort\", \"Clear Sort\"),\n icon: _313.createIconNoSpan(\"sortUnSort\", this.gos, null),\n action: () => this.sortController.setSortForColumn(column, null, false, \"columnMenu\")\n };\n default: {\n console.warn(`AG Grid: unknown menu item type ${key}`);\n return null;\n }\n }\n }\n createAggregationSubMenu(column, aggFuncService) {\n const localeTextFunc = this.localeService.getLocaleTextFunc();\n let columnToUse;\n if (column.isPrimary()) {\n columnToUse = column;\n } else {\n const pivotValueColumn = column.getColDef().pivotValueColumn;\n columnToUse = _313.exists(pivotValueColumn) ? pivotValueColumn : void 0;\n }\n const result = [];\n if (columnToUse) {\n const columnIsAlreadyAggValue = columnToUse.isValueActive();\n const funcNames = aggFuncService.getFuncNames(columnToUse);\n result.push({\n name: localeTextFunc(\"noAggregation\", \"None\"),\n action: () => {\n this.columnModel.removeValueColumns([columnToUse], \"contextMenu\");\n this.columnModel.setColumnAggFunc(columnToUse, void 0, \"contextMenu\");\n },\n checked: !columnIsAlreadyAggValue\n });\n funcNames.forEach((funcName) => {\n result.push({\n name: localeTextFunc(funcName, aggFuncService.getDefaultFuncLabel(funcName)),\n action: () => {\n this.columnModel.setColumnAggFunc(columnToUse, funcName, \"contextMenu\");\n this.columnModel.addValueColumns([columnToUse], \"contextMenu\");\n },\n checked: columnIsAlreadyAggValue && columnToUse.getAggFunc() === funcName\n });\n });\n }\n return result;\n }\n};\n__decorateClass12([\n Autowired314(\"columnModel\")\n], MenuItemMapper.prototype, \"columnModel\", 2);\n__decorateClass12([\n Autowired314(\"gridApi\")\n], MenuItemMapper.prototype, \"gridApi\", 2);\n__decorateClass12([\n Autowired314(\"focusService\")\n], MenuItemMapper.prototype, \"focusService\", 2);\n__decorateClass12([\n Autowired314(\"rowPositionUtils\")\n], MenuItemMapper.prototype, \"rowPositionUtils\", 2);\n__decorateClass12([\n Autowired314(\"chartMenuItemMapper\")\n], MenuItemMapper.prototype, \"chartMenuItemMapper\", 2);\n__decorateClass12([\n Autowired314(\"menuService\")\n], MenuItemMapper.prototype, \"menuService\", 2);\n__decorateClass12([\n Autowired314(\"sortController\")\n], MenuItemMapper.prototype, \"sortController\", 2);\n__decorateClass12([\n Optional22(\"clipboardService\")\n], MenuItemMapper.prototype, \"clipboardService\", 2);\n__decorateClass12([\n Optional22(\"aggFuncService\")\n], MenuItemMapper.prototype, \"aggFuncService\", 2);\nMenuItemMapper = __decorateClass12([\n Bean34(\"menuItemMapper\")\n], MenuItemMapper);\nvar VERSION12 = \"31.3.2\";\nvar ChartMenuItemMapper = class extends BeanStub44 {\n getChartItems(key) {\n var _a, _b;\n if (!this.chartService) {\n ModuleRegistry42.__assertRegistered(ModuleNames42.GridChartsModule, `the Context Menu key \"${key}\"`, this.context.getGridId());\n return void 0;\n }\n const builder = key === \"pivotChart\" ? new PivotMenuItemMapper(this.gos, this.chartService, this.localeService) : new RangeMenuItemMapper(this.gos, this.chartService, this.localeService);\n const isEnterprise = this.chartService.isEnterprise();\n let topLevelMenuItem = builder.getMenuItem();\n if (topLevelMenuItem && topLevelMenuItem.subMenu && !isEnterprise) {\n const filterEnterpriseItems = (m) => {\n var _a2;\n return __spreadProps7(__spreadValues10({}, m), {\n subMenu: (_a2 = m.subMenu) == null ? void 0 : _a2.filter((menu) => !menu._enterprise).map((menu) => filterEnterpriseItems(menu))\n });\n };\n topLevelMenuItem = filterEnterpriseItems(topLevelMenuItem);\n }\n const chartGroupsDef = (_b = (_a = this.gos.get(\"chartToolPanelsDef\")) == null ? void 0 : _a.settingsPanel) == null ? void 0 : _b.chartGroupsDef;\n if (chartGroupsDef) {\n topLevelMenuItem = ChartMenuItemMapper.filterAndOrderChartMenu(topLevelMenuItem, chartGroupsDef, builder.getConfigLookup());\n }\n return this.cleanInternals(topLevelMenuItem);\n }\n // Remove our internal _key and _enterprise properties so this does not leak out of the class on the menu items.\n cleanInternals(menuItem) {\n if (!menuItem) {\n return menuItem;\n }\n const removeKeys = (m) => {\n var _a;\n m == null ? true : delete m._key;\n m == null ? true : delete m._enterprise;\n (_a = m == null ? void 0 : m.subMenu) == null ? void 0 : _a.forEach((s) => removeKeys(s));\n return m;\n };\n return removeKeys(menuItem);\n }\n static buildLookup(menuItem) {\n let itemLookup = {};\n const addItem = (item) => {\n itemLookup[item._key] = item;\n if (item.subMenu) {\n item.subMenu.forEach((s) => addItem(s));\n }\n };\n addItem(menuItem);\n return itemLookup;\n }\n /**\n * Make the MenuItem match the charts provided and their ordering on the ChartGroupsDef config object as provided by the user.\n */\n static filterAndOrderChartMenu(topLevelMenuItem, chartGroupsDef, configLookup) {\n var _a;\n const menuItemLookup = this.buildLookup(topLevelMenuItem);\n let orderedAndFiltered = __spreadProps7(__spreadValues10({}, topLevelMenuItem), { subMenu: [] });\n Object.entries(chartGroupsDef).forEach(([group, chartTypes]) => {\n var _a2, _b;\n const chartConfigGroup = configLookup[group];\n if (chartConfigGroup === null)\n return;\n if (chartConfigGroup == void 0) {\n _410.warnOnce(`invalid chartGroupsDef config '${group}'`);\n return void 0;\n }\n const menuItem = menuItemLookup[chartConfigGroup._key];\n if (menuItem) {\n if (menuItem.subMenu) {\n const subMenus = chartTypes.map((chartType) => {\n const itemKey = chartConfigGroup[chartType];\n if (itemKey == void 0) {\n _410.warnOnce(`invalid chartGroupsDef config '${group}.${chartType}'`);\n return void 0;\n }\n return menuItemLookup[itemKey];\n }).filter((s) => s !== void 0);\n if (subMenus.length > 0) {\n menuItem.subMenu = subMenus;\n (_a2 = orderedAndFiltered.subMenu) == null ? void 0 : _a2.push(menuItem);\n }\n } else {\n (_b = orderedAndFiltered.subMenu) == null ? void 0 : _b.push(menuItem);\n }\n }\n });\n if (((_a = orderedAndFiltered.subMenu) == null ? void 0 : _a.length) == 0) {\n return void 0;\n }\n return orderedAndFiltered;\n }\n};\n__decorateClass12([\n Optional32(\"chartService\")\n], ChartMenuItemMapper.prototype, \"chartService\", 2);\nChartMenuItemMapper = __decorateClass12([\n Bean44(\"chartMenuItemMapper\")\n], ChartMenuItemMapper);\nvar PivotMenuItemMapper = class {\n constructor(gos, chartService, localeService) {\n this.gos = gos;\n this.chartService = chartService;\n this.localeService = localeService;\n }\n getMenuItem() {\n const localeTextFunc = this.localeService.getLocaleTextFunc();\n const getMenuItem = (localeKey, defaultText, chartType, key, enterprise = false) => {\n return {\n name: localeTextFunc(localeKey, defaultText),\n action: () => this.chartService.createPivotChart({ chartType }),\n _key: key,\n _enterprise: enterprise\n };\n };\n return {\n name: localeTextFunc(\"pivotChart\", \"Pivot Chart\"),\n _key: \"pivotChart\",\n subMenu: [\n {\n _key: \"pivotColumnChart\",\n name: localeTextFunc(\"columnChart\", \"Column\"),\n subMenu: [\n getMenuItem(\"groupedColumn\", \"Grouped\", \"groupedColumn\", \"pivotGroupedColumn\"),\n getMenuItem(\"stackedColumn\", \"Stacked\", \"stackedColumn\", \"pivotStackedColumn\"),\n getMenuItem(\"normalizedColumn\", \"100% Stacked\", \"normalizedColumn\", \"pivotNormalizedColumn\")\n ]\n },\n {\n _key: \"pivotBarChart\",\n name: localeTextFunc(\"barChart\", \"Bar\"),\n subMenu: [\n getMenuItem(\"groupedBar\", \"Grouped\", \"groupedBar\", \"pivotGroupedBar\"),\n getMenuItem(\"stackedBar\", \"Stacked\", \"stackedBar\", \"pivotStackedBar\"),\n getMenuItem(\"normalizedBar\", \"100% Stacked\", \"normalizedBar\", \"pivotNormalizedBar\")\n ]\n },\n {\n _key: \"pivotPieChart\",\n name: localeTextFunc(\"pieChart\", \"Pie\"),\n subMenu: [\n getMenuItem(\"pie\", \"Pie\", \"pie\", \"pivotPie\"),\n getMenuItem(\"donut\", \"Donut\", \"donut\", \"pivotDonut\")\n ]\n },\n getMenuItem(\"line\", \"Line\", \"line\", \"pivotLineChart\"),\n {\n _key: \"pivotXYChart\",\n name: localeTextFunc(\"xyChart\", \"X Y (Scatter)\"),\n subMenu: [\n getMenuItem(\"scatter\", \"Scatter\", \"scatter\", \"pivotScatter\"),\n getMenuItem(\"bubble\", \"Bubble\", \"bubble\", \"pivotBubble\")\n ]\n },\n {\n _key: \"pivotAreaChart\",\n name: localeTextFunc(\"areaChart\", \"Area\"),\n subMenu: [\n getMenuItem(\"area\", \"Area\", \"area\", \"pivotArea\"),\n getMenuItem(\"stackedArea\", \"Stacked\", \"stackedArea\", \"pivotStackedArea\"),\n getMenuItem(\"normalizedArea\", \"100% Stacked\", \"normalizedArea\", \"pivotNormalizedArea\")\n ]\n },\n {\n _key: \"pivotStatisticalChart\",\n _enterprise: false,\n // histogram chart is available in both community and enterprise distributions\n name: localeTextFunc(\"statisticalChart\", \"Statistical\"),\n subMenu: [\n getMenuItem(\"histogramChart\", \"Histogram\", \"histogram\", \"pivotHistogram\", false)\n ]\n },\n {\n _key: \"pivotHierarchicalChart\",\n _enterprise: true,\n name: localeTextFunc(\"hierarchicalChart\", \"Hierarchical\"),\n subMenu: [\n getMenuItem(\"treemapChart\", \"Treemap\", \"treemap\", \"pivotTreemap\", true),\n getMenuItem(\"sunburstChart\", \"Sunburst\", \"sunburst\", \"pivotSunburst\", true)\n ]\n },\n {\n _key: \"pivotCombinationChart\",\n name: localeTextFunc(\"combinationChart\", \"Combination\"),\n subMenu: [\n getMenuItem(\"columnLineCombo\", \"Column & Line\", \"columnLineCombo\", \"pivotColumnLineCombo\"),\n getMenuItem(\"AreaColumnCombo\", \"Area & Column\", \"areaColumnCombo\", \"pivotAreaColumnCombo\")\n ]\n }\n ],\n icon: _410.createIconNoSpan(\"chart\", this.gos, void 0)\n };\n }\n getConfigLookup() {\n return {\n columnGroup: {\n _key: \"pivotColumnChart\",\n column: \"pivotGroupedColumn\",\n stackedColumn: \"pivotStackedColumn\",\n normalizedColumn: \"pivotNormalizedColumn\"\n },\n barGroup: {\n _key: \"pivotBarChart\",\n bar: \"pivotGroupedBar\",\n stackedBar: \"pivotStackedBar\",\n normalizedBar: \"pivotNormalizedBar\"\n },\n pieGroup: {\n _key: \"pivotPieChart\",\n pie: \"pivotPie\",\n donut: \"pivotDonut\",\n doughnut: \"pivotDonut\"\n },\n lineGroup: {\n _key: \"pivotLineChart\",\n line: \"pivotLineChart\"\n },\n scatterGroup: {\n _key: \"pivotXYChart\",\n bubble: \"pivotBubble\",\n scatter: \"pivotScatter\"\n },\n areaGroup: {\n _key: \"pivotAreaChart\",\n area: \"pivotArea\",\n stackedArea: \"pivotStackedArea\",\n normalizedArea: \"pivotNormalizedArea\"\n },\n combinationGroup: {\n _key: \"pivotCombinationChart\",\n columnLineCombo: \"pivotColumnLineCombo\",\n areaColumnCombo: \"pivotAreaColumnCombo\",\n customCombo: null\n // Not currently supported\n },\n hierarchicalGroup: {\n _key: \"pivotHierarchicalChart\",\n treemap: \"pivotTreemap\",\n sunburst: \"pivotSunburst\"\n },\n statisticalGroup: {\n _key: \"pivotStatisticalChart\",\n histogram: \"pivotHistogram\",\n // Some statistical charts do not currently support pivot mode\n rangeBar: null,\n rangeArea: null,\n boxPlot: null\n },\n // Polar charts do not support pivot mode\n polarGroup: null,\n // Specialized charts do not currently support pivot mode\n specializedGroup: null\n };\n }\n};\nvar RangeMenuItemMapper = class {\n constructor(gos, chartService, localeService) {\n this.gos = gos;\n this.chartService = chartService;\n this.localeService = localeService;\n }\n getMenuItem() {\n const localeTextFunc = this.localeService.getLocaleTextFunc();\n const getMenuItem = (localeKey, defaultText, chartType, key, enterprise = false) => {\n return {\n name: localeTextFunc(localeKey, defaultText),\n action: () => this.chartService.createChartFromCurrentRange(chartType),\n _key: key,\n _enterprise: enterprise\n };\n };\n return {\n name: localeTextFunc(\"chartRange\", \"Chart Range\"),\n _key: \"chartRange\",\n subMenu: [\n {\n name: localeTextFunc(\"columnChart\", \"Column\"),\n subMenu: [\n getMenuItem(\"groupedColumn\", \"Grouped\", \"groupedColumn\", \"rangeGroupedColumn\"),\n getMenuItem(\"stackedColumn\", \"Stacked\", \"stackedColumn\", \"rangeStackedColumn\"),\n getMenuItem(\"normalizedColumn\", \"100% Stacked\", \"normalizedColumn\", \"rangeNormalizedColumn\")\n ],\n _key: \"rangeColumnChart\"\n },\n {\n name: localeTextFunc(\"barChart\", \"Bar\"),\n subMenu: [\n getMenuItem(\"groupedBar\", \"Grouped\", \"groupedBar\", \"rangeGroupedBar\"),\n getMenuItem(\"stackedBar\", \"Stacked\", \"stackedBar\", \"rangeStackedBar\"),\n getMenuItem(\"normalizedBar\", \"100% Stacked\", \"normalizedBar\", \"rangeNormalizedBar\")\n ],\n _key: \"rangeBarChart\"\n },\n {\n name: localeTextFunc(\"pieChart\", \"Pie\"),\n subMenu: [\n getMenuItem(\"pie\", \"Pie\", \"pie\", \"rangePie\"),\n getMenuItem(\"donut\", \"Donut\", \"donut\", \"rangeDonut\")\n ],\n _key: \"rangePieChart\"\n },\n getMenuItem(\"line\", \"Line\", \"line\", \"rangeLineChart\"),\n {\n name: localeTextFunc(\"xyChart\", \"X Y (Scatter)\"),\n subMenu: [\n getMenuItem(\"scatter\", \"Scatter\", \"scatter\", \"rangeScatter\"),\n getMenuItem(\"bubble\", \"Bubble\", \"bubble\", \"rangeBubble\")\n ],\n _key: \"rangeXYChart\"\n },\n {\n name: localeTextFunc(\"areaChart\", \"Area\"),\n subMenu: [\n getMenuItem(\"area\", \"Area\", \"area\", \"rangeArea\"),\n getMenuItem(\"stackedArea\", \"Stacked\", \"stackedArea\", \"rangeStackedArea\"),\n getMenuItem(\"normalizedArea\", \"100% Stacked\", \"normalizedArea\", \"rangeNormalizedArea\")\n ],\n _key: \"rangeAreaChart\"\n },\n {\n name: localeTextFunc(\"polarChart\", \"Polar\"),\n subMenu: [\n getMenuItem(\"radarLine\", \"Radar Line\", \"radarLine\", \"rangeRadarLine\"),\n getMenuItem(\"radarArea\", \"Radar Area\", \"radarArea\", \"rangeRadarArea\"),\n getMenuItem(\"nightingale\", \"Nightingale\", \"nightingale\", \"rangeNightingale\"),\n getMenuItem(\"radialColumn\", \"Radial Column\", \"radialColumn\", \"rangeRadialColumn\"),\n getMenuItem(\"radialBar\", \"Radial Bar\", \"radialBar\", \"rangeRadialBar\")\n ],\n _key: \"rangePolarChart\",\n _enterprise: true\n },\n {\n name: localeTextFunc(\"statisticalChart\", \"Statistical\"),\n subMenu: [\n getMenuItem(\"boxPlot\", \"Box Plot\", \"boxPlot\", \"rangeBoxPlot\", true),\n getMenuItem(\"histogramChart\", \"Histogram\", \"histogram\", \"rangeHistogram\", false),\n getMenuItem(\"rangeBar\", \"Range Bar\", \"rangeBar\", \"rangeRangeBar\", true),\n getMenuItem(\"rangeArea\", \"Range Area\", \"rangeArea\", \"rangeRangeArea\", true)\n ],\n _key: \"rangeStatisticalChart\",\n _enterprise: false\n // histogram chart is available in both community and enterprise distributions\n },\n {\n name: localeTextFunc(\"hierarchicalChart\", \"Hierarchical\"),\n subMenu: [\n getMenuItem(\"treemap\", \"Treemap\", \"treemap\", \"rangeTreemap\"),\n getMenuItem(\"sunburst\", \"Sunburst\", \"sunburst\", \"rangeSunburst\")\n ],\n _key: \"rangeHierarchicalChart\",\n _enterprise: true\n },\n {\n name: localeTextFunc(\"specializedChart\", \"Specialized\"),\n subMenu: [\n getMenuItem(\"heatmap\", \"Heatmap\", \"heatmap\", \"rangeHeatmap\"),\n getMenuItem(\"waterfall\", \"Waterfall\", \"waterfall\", \"rangeWaterfall\")\n ],\n _key: \"rangeSpecializedChart\",\n _enterprise: true\n },\n {\n name: localeTextFunc(\"combinationChart\", \"Combination\"),\n subMenu: [\n getMenuItem(\"columnLineCombo\", \"Column & Line\", \"columnLineCombo\", \"rangeColumnLineCombo\"),\n getMenuItem(\"AreaColumnCombo\", \"Area & Column\", \"areaColumnCombo\", \"rangeAreaColumnCombo\")\n ],\n _key: \"rangeCombinationChart\"\n }\n ],\n icon: _410.createIconNoSpan(\"chart\", this.gos, void 0)\n };\n }\n getConfigLookup() {\n return {\n columnGroup: {\n _key: \"rangeColumnChart\",\n column: \"rangeGroupedColumn\",\n stackedColumn: \"rangeStackedColumn\",\n normalizedColumn: \"rangeNormalizedColumn\"\n },\n barGroup: {\n _key: \"rangeBarChart\",\n bar: \"rangeGroupedBar\",\n stackedBar: \"rangeStackedBar\",\n normalizedBar: \"rangeNormalizedBar\"\n },\n pieGroup: {\n _key: \"rangePieChart\",\n pie: \"rangePie\",\n donut: \"rangeDonut\",\n doughnut: \"rangeDonut\"\n },\n lineGroup: {\n _key: \"rangeLineChart\",\n line: \"rangeLineChart\"\n },\n scatterGroup: {\n _key: \"rangeXYChart\",\n bubble: \"rangeBubble\",\n scatter: \"rangeScatter\"\n },\n areaGroup: {\n _key: \"rangeAreaChart\",\n area: \"rangeArea\",\n stackedArea: \"rangeStackedArea\",\n normalizedArea: \"rangeNormalizedArea\"\n },\n polarGroup: {\n _key: \"rangePolarChart\",\n radarLine: \"rangeRadarLine\",\n radarArea: \"rangeRadarArea\",\n nightingale: \"rangeNightingale\",\n radialColumn: \"rangeRadialColumn\",\n radialBar: \"rangeRadialBar\"\n },\n statisticalGroup: {\n _key: \"rangeStatisticalChart\",\n boxPlot: \"rangeBoxPlot\",\n histogram: \"rangeHistogram\",\n rangeBar: \"rangeRangeBar\",\n rangeArea: \"rangeRangeArea\"\n },\n hierarchicalGroup: {\n _key: \"rangeHierarchicalChart\",\n treemap: \"rangeTreemap\",\n sunburst: \"rangeSunburst\"\n },\n specializedGroup: {\n _key: \"rangeSpecializedChart\",\n heatmap: \"rangeHeatmap\",\n waterfall: \"rangeWaterfall\"\n },\n combinationGroup: {\n _key: \"rangeCombinationChart\",\n columnLineCombo: \"rangeColumnLineCombo\",\n areaColumnCombo: \"rangeAreaColumnCombo\",\n customCombo: null\n // Not currently supported\n }\n };\n }\n};\nvar ColumnChooserFactory = class extends BeanStub54 {\n createColumnSelectPanel(parent, column, draggable, params) {\n var _a, _b;\n const columnSelectPanel = parent.createManagedBean(new PrimaryColsPanel());\n const columnChooserParams = (_b = (_a = params != null ? params : column == null ? void 0 : column.getColDef().columnChooserParams) != null ? _a : column == null ? void 0 : column.getColDef().columnsMenuParams) != null ? _b : {};\n const {\n contractColumnSelection,\n suppressColumnExpandAll,\n suppressColumnFilter,\n suppressColumnSelectAll,\n suppressSyncLayoutWithGrid,\n columnLayout\n } = columnChooserParams;\n columnSelectPanel.init(!!draggable, this.gos.addGridCommonParams({\n suppressColumnMove: false,\n suppressValues: false,\n suppressPivots: false,\n suppressRowGroups: false,\n suppressPivotMode: false,\n contractColumnSelection: !!contractColumnSelection,\n suppressColumnExpandAll: !!suppressColumnExpandAll,\n suppressColumnFilter: !!suppressColumnFilter,\n suppressColumnSelectAll: !!suppressColumnSelectAll,\n suppressSyncLayoutWithGrid: !!columnLayout || !!suppressSyncLayoutWithGrid,\n onStateUpdated: () => {\n }\n }), \"columnMenu\");\n if (columnLayout) {\n columnSelectPanel.setColumnLayout(columnLayout);\n }\n return columnSelectPanel;\n }\n showColumnChooser({ column, chooserParams, eventSource }) {\n this.hideActiveColumnChooser();\n const columnSelectPanel = this.createColumnSelectPanel(this, column, true, chooserParams);\n const translate = this.localeService.getLocaleTextFunc();\n const columnIndex = this.columnModel.getAllDisplayedColumns().indexOf(column);\n const headerPosition = column ? this.focusService.getFocusedHeader() : null;\n this.activeColumnChooserDialog = this.createBean(new AgDialog4({\n title: translate(\"chooseColumns\", \"Choose Columns\"),\n component: columnSelectPanel,\n width: 300,\n height: 300,\n resizable: true,\n movable: true,\n centered: true,\n closable: true,\n afterGuiAttached: () => {\n var _a;\n (_a = this.focusService.findNextFocusableElement(columnSelectPanel.getGui())) == null ? void 0 : _a.focus();\n this.dispatchVisibleChangedEvent(true, column);\n },\n closedCallback: (event) => {\n const eComp = this.activeColumnChooser.getGui();\n this.destroyBean(this.activeColumnChooser);\n this.activeColumnChooser = void 0;\n this.activeColumnChooserDialog = void 0;\n this.dispatchVisibleChangedEvent(false, column);\n if (column) {\n this.menuUtils.restoreFocusOnClose({ column, headerPosition, columnIndex, eventSource }, eComp, event, true);\n }\n }\n }));\n this.activeColumnChooser = columnSelectPanel;\n }\n hideActiveColumnChooser() {\n if (this.activeColumnChooserDialog) {\n this.destroyBean(this.activeColumnChooserDialog);\n }\n }\n dispatchVisibleChangedEvent(visible, column) {\n const event = {\n type: Events36.EVENT_COLUMN_MENU_VISIBLE_CHANGED,\n visible,\n switchingTab: false,\n key: \"columnChooser\",\n column: column != null ? column : null\n };\n this.eventService.dispatchEvent(event);\n }\n};\n__decorateClass12([\n Autowired414(\"focusService\")\n], ColumnChooserFactory.prototype, \"focusService\", 2);\n__decorateClass12([\n Autowired414(\"menuUtils\")\n], ColumnChooserFactory.prototype, \"menuUtils\", 2);\n__decorateClass12([\n Autowired414(\"columnModel\")\n], ColumnChooserFactory.prototype, \"columnModel\", 2);\nColumnChooserFactory = __decorateClass12([\n Bean53(\"columnChooserFactory\")\n], ColumnChooserFactory);\nvar ColumnMenuFactory = class extends BeanStub64 {\n createMenu(parent, column, sourceElement) {\n const menuList = parent.createManagedBean(new AgMenuList3(0, {\n column: column != null ? column : null,\n node: null,\n value: null\n }));\n const menuItems = this.getMenuItems(column);\n const menuItemsMapped = this.menuItemMapper.mapWithStockItems(menuItems, column != null ? column : null, sourceElement);\n menuList.addMenuItems(menuItemsMapped);\n return menuList;\n }\n getMenuItems(column) {\n const defaultItems = this.getDefaultMenuOptions(column);\n let result;\n const columnMainMenuItems = column == null ? void 0 : column.getColDef().mainMenuItems;\n if (Array.isArray(columnMainMenuItems)) {\n result = columnMainMenuItems;\n } else if (typeof columnMainMenuItems === \"function\") {\n result = columnMainMenuItems(this.gos.addGridCommonParams({\n column,\n defaultItems\n }));\n } else {\n const userFunc = this.gos.getCallback(\"getMainMenuItems\");\n if (userFunc && column) {\n result = userFunc({\n column,\n defaultItems\n });\n } else {\n result = defaultItems;\n }\n }\n _56.removeRepeatsFromArray(result, ColumnMenuFactory.MENU_ITEM_SEPARATOR);\n return result;\n }\n getDefaultMenuOptions(column) {\n const result = [];\n const isLegacyMenuEnabled = this.menuService.isLegacyMenuEnabled();\n if (!column) {\n if (!isLegacyMenuEnabled) {\n result.push(\"columnChooser\");\n }\n result.push(\"resetColumns\");\n return result;\n }\n const allowPinning = !column.getColDef().lockPinned;\n const rowGroupCount = this.columnModel.getRowGroupColumns().length;\n const doingGrouping = rowGroupCount > 0;\n const allowValue = column.isAllowValue();\n const allowRowGroup = column.isAllowRowGroup();\n const isPrimary = column.isPrimary();\n const pivotModeOn = this.columnModel.isPivotMode();\n const isInMemoryRowModel = this.rowModel.getType() === \"clientSide\";\n const usingTreeData = this.gos.get(\"treeData\");\n const allowValueAgg = (\n // if primary, then only allow aggValue if grouping and it's a value columns\n isPrimary && doingGrouping && allowValue || !isPrimary\n );\n if (!isLegacyMenuEnabled && column.isSortable()) {\n const sort = column.getSort();\n if (sort !== \"asc\") {\n result.push(\"sortAscending\");\n }\n if (sort !== \"desc\") {\n result.push(\"sortDescending\");\n }\n if (sort) {\n result.push(\"sortUnSort\");\n }\n result.push(ColumnMenuFactory.MENU_ITEM_SEPARATOR);\n }\n if (this.menuService.isFilterMenuItemEnabled(column)) {\n result.push(\"columnFilter\");\n result.push(ColumnMenuFactory.MENU_ITEM_SEPARATOR);\n }\n if (allowPinning) {\n result.push(\"pinSubMenu\");\n }\n if (allowValueAgg) {\n result.push(\"valueAggSubMenu\");\n }\n if (allowPinning || allowValueAgg) {\n result.push(ColumnMenuFactory.MENU_ITEM_SEPARATOR);\n }\n result.push(\"autoSizeThis\");\n result.push(\"autoSizeAll\");\n result.push(ColumnMenuFactory.MENU_ITEM_SEPARATOR);\n const showRowGroup = column.getColDef().showRowGroup;\n if (showRowGroup) {\n result.push(\"rowUnGroup\");\n } else if (allowRowGroup && column.isPrimary()) {\n if (column.isRowGroupActive()) {\n const groupLocked = this.columnModel.isColumnGroupingLocked(column);\n if (!groupLocked) {\n result.push(\"rowUnGroup\");\n }\n } else {\n result.push(\"rowGroup\");\n }\n }\n result.push(ColumnMenuFactory.MENU_ITEM_SEPARATOR);\n if (!isLegacyMenuEnabled) {\n result.push(\"columnChooser\");\n }\n result.push(\"resetColumns\");\n const allowExpandAndContract = isInMemoryRowModel && (usingTreeData || rowGroupCount > (pivotModeOn ? 1 : 0));\n if (allowExpandAndContract) {\n result.push(\"expandAll\");\n result.push(\"contractAll\");\n }\n return result;\n }\n};\nColumnMenuFactory.MENU_ITEM_SEPARATOR = \"separator\";\n__decorateClass12([\n Autowired510(\"menuItemMapper\")\n], ColumnMenuFactory.prototype, \"menuItemMapper\", 2);\n__decorateClass12([\n Autowired510(\"columnModel\")\n], ColumnMenuFactory.prototype, \"columnModel\", 2);\n__decorateClass12([\n Autowired510(\"rowModel\")\n], ColumnMenuFactory.prototype, \"rowModel\", 2);\n__decorateClass12([\n Autowired510(\"filterManager\")\n], ColumnMenuFactory.prototype, \"filterManager\", 2);\n__decorateClass12([\n Autowired510(\"menuService\")\n], ColumnMenuFactory.prototype, \"menuService\", 2);\nColumnMenuFactory = __decorateClass12([\n Bean63(\"columnMenuFactory\")\n], ColumnMenuFactory);\nvar MenuUtils = class extends BeanStub73 {\n restoreFocusOnClose(restoreFocusParams, eComp, e, restoreIfMouseEvent) {\n const { eventSource } = restoreFocusParams;\n const isKeyboardEvent = e instanceof KeyboardEvent;\n if (!restoreIfMouseEvent && !isKeyboardEvent || !eventSource) {\n return;\n }\n const eDocument = this.gos.getDocument();\n const activeEl = this.gos.getActiveDomElement();\n if (!eComp.contains(activeEl) && activeEl !== eDocument.body) {\n return;\n }\n this.focusHeaderCell(restoreFocusParams);\n }\n closePopupAndRestoreFocusOnSelect(hidePopupFunc, restoreFocusParams, event) {\n let keyboardEvent;\n if (event && event.keyboardEvent) {\n keyboardEvent = event.keyboardEvent;\n }\n hidePopupFunc(keyboardEvent && { keyboardEvent });\n const focusedCell = this.focusService.getFocusedCell();\n const eDocument = this.gos.getDocument();\n const activeEl = this.gos.getActiveDomElement();\n if (!activeEl || activeEl === eDocument.body) {\n if (focusedCell) {\n const { rowIndex, rowPinned, column } = focusedCell;\n this.focusService.setFocusedCell({ rowIndex, column, rowPinned, forceBrowserFocus: true, preventScrollOnBrowserFocus: true });\n } else {\n this.focusHeaderCell(restoreFocusParams);\n }\n }\n }\n onContextMenu(mouseEvent, touchEvent, showMenuCallback) {\n if (!this.gos.get(\"allowContextMenuWithControlKey\")) {\n if (mouseEvent && (mouseEvent.ctrlKey || mouseEvent.metaKey)) {\n return;\n }\n }\n if (mouseEvent) {\n this.blockMiddleClickScrollsIfNeeded(mouseEvent);\n }\n if (this.gos.get(\"suppressContextMenu\")) {\n return;\n }\n const eventOrTouch = mouseEvent != null ? mouseEvent : touchEvent.touches[0];\n if (showMenuCallback(eventOrTouch)) {\n const event = mouseEvent != null ? mouseEvent : touchEvent;\n if (event && event.cancelable) {\n event.preventDefault();\n }\n }\n }\n focusHeaderCell(restoreFocusParams) {\n const { column, columnIndex, headerPosition, eventSource } = restoreFocusParams;\n const isColumnStillVisible = this.columnModel.getAllDisplayedColumns().some((col) => col === column);\n if (isColumnStillVisible && eventSource && _66.isVisible(eventSource)) {\n const focusableEl = this.focusService.findTabbableParent(eventSource);\n if (focusableEl) {\n if (column) {\n this.headerNavigationService.scrollToColumn(column);\n }\n focusableEl.focus();\n }\n } else if (headerPosition && columnIndex !== -1) {\n const allColumns = this.columnModel.getAllDisplayedColumns();\n const columnToFocus = allColumns[columnIndex] || _66.last(allColumns);\n if (columnToFocus) {\n this.focusService.focusHeaderPosition({\n headerPosition: {\n headerRowIndex: headerPosition.headerRowIndex,\n column: columnToFocus\n }\n });\n }\n }\n }\n blockMiddleClickScrollsIfNeeded(mouseEvent) {\n if (this.gos.get(\"suppressMiddleClickScrolls\") && mouseEvent.which === 2) {\n mouseEvent.preventDefault();\n }\n }\n};\n__decorateClass12([\n Autowired65(\"focusService\")\n], MenuUtils.prototype, \"focusService\", 2);\n__decorateClass12([\n Autowired65(\"headerNavigationService\")\n], MenuUtils.prototype, \"headerNavigationService\", 2);\n__decorateClass12([\n Autowired65(\"columnModel\")\n], MenuUtils.prototype, \"columnModel\", 2);\nMenuUtils = __decorateClass12([\n Bean72(\"menuUtils\")\n], MenuUtils);\nvar MenuModule = {\n version: VERSION12,\n moduleName: ModuleNames52.MenuModule,\n beans: [EnterpriseMenuFactory, ContextMenuFactory, MenuItemMapper, ChartMenuItemMapper, ColumnChooserFactory, ColumnMenuFactory, MenuUtils],\n dependantModules: [\n EnterpriseCoreModule\n ]\n};\n\n// enterprise-modules/multi-filter/dist/package/main.esm.mjs\nimport { ModuleNames as ModuleNames13 } from \"ag-grid-community\";\nimport {\n ProvidedFilter,\n AgPromise as AgPromise5,\n Autowired as Autowired61,\n AgGroupComponent as AgGroupComponent5,\n TabGuardComp as TabGuardComp4,\n AgMenuItemComponent as AgMenuItemComponent4,\n AgMenuItemRenderer,\n PostConstruct as PostConstruct61,\n _ as _50,\n KeyCode as KeyCode10\n} from \"ag-grid-community\";\nimport {\n Component as Component56,\n _ as _216,\n Autowired as Autowired215,\n AgPromise as AgPromise23\n} from \"ag-grid-community\";\nvar __defProp13 = Object.defineProperty;\nvar __defProps8 = Object.defineProperties;\nvar __getOwnPropDesc13 = Object.getOwnPropertyDescriptor;\nvar __getOwnPropDescs8 = Object.getOwnPropertyDescriptors;\nvar __getOwnPropSymbols11 = Object.getOwnPropertySymbols;\nvar __hasOwnProp12 = Object.prototype.hasOwnProperty;\nvar __propIsEnum11 = Object.prototype.propertyIsEnumerable;\nvar __defNormalProp11 = (obj, key, value) => key in obj ? __defProp13(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;\nvar __spreadValues11 = (a, b) => {\n for (var prop in b || (b = {}))\n if (__hasOwnProp12.call(b, prop))\n __defNormalProp11(a, prop, b[prop]);\n if (__getOwnPropSymbols11)\n for (var prop of __getOwnPropSymbols11(b)) {\n if (__propIsEnum11.call(b, prop))\n __defNormalProp11(a, prop, b[prop]);\n }\n return a;\n};\nvar __spreadProps8 = (a, b) => __defProps8(a, __getOwnPropDescs8(b));\nvar __decorateClass13 = (decorators, target, key, kind) => {\n var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc13(target, key) : target;\n for (var i = decorators.length - 1, decorator; i >= 0; i--)\n if (decorator = decorators[i])\n result = (kind ? decorator(target, key, result) : decorator(result)) || result;\n if (kind && result)\n __defProp13(target, key, result);\n return result;\n};\nvar _MultiFilter = class _MultiFilter2 extends TabGuardComp4 {\n constructor() {\n super(\n /* html */\n `
`\n );\n this.filterDefs = [];\n this.filters = [];\n this.guiDestroyFuncs = [];\n this.filterGuis = [];\n this.activeFilterIndices = [];\n this.lastActivatedMenuItem = null;\n this.afterFiltersReadyFuncs = [];\n }\n postConstruct() {\n this.initialiseTabGuard({\n onFocusIn: (e) => this.onFocusIn(e)\n });\n }\n static getFilterDefs(params) {\n const { filters } = params;\n return filters && filters.length > 0 ? filters : [{ filter: \"agTextColumnFilter\" }, { filter: \"agSetColumnFilter\" }];\n }\n init(params) {\n this.params = params;\n this.filterDefs = _MultiFilter2.getFilterDefs(params);\n const { column, filterChangedCallback } = params;\n this.column = column;\n this.filterChangedCallback = filterChangedCallback;\n const filterPromises = [];\n this.filterDefs.forEach((filterDef, index) => {\n const filterPromise = this.createFilter(filterDef, index);\n if (filterPromise != null) {\n filterPromises.push(filterPromise);\n }\n });\n return new AgPromise5((resolve) => {\n AgPromise5.all(filterPromises).then((filters) => {\n this.filters = filters;\n this.refreshGui(\"columnMenu\").then(() => {\n resolve();\n });\n });\n }).then(() => {\n this.afterFiltersReadyFuncs.forEach((f) => f());\n this.afterFiltersReadyFuncs.length = 0;\n });\n }\n refreshGui(container) {\n if (container === this.lastOpenedInContainer) {\n return AgPromise5.resolve();\n }\n this.removeAllChildrenExceptTabGuards();\n this.destroyChildren();\n return AgPromise5.all(this.filters.map((filter, index) => {\n const filterDef = this.filterDefs[index];\n const filterTitle = this.getFilterTitle(filter, filterDef);\n let filterGuiPromise;\n if (filterDef.display === \"subMenu\" && container !== \"toolPanel\") {\n filterGuiPromise = this.insertFilterMenu(filter, filterTitle).then((menuItem) => menuItem.getGui());\n } else if (filterDef.display === \"subMenu\" || filterDef.display === \"accordion\") {\n const group = this.insertFilterGroup(filter, filterTitle);\n filterGuiPromise = AgPromise5.resolve(group.getGui());\n } else {\n filterGuiPromise = AgPromise5.resolve(filter.getGui());\n }\n return filterGuiPromise;\n })).then((filterGuis) => {\n filterGuis.forEach((filterGui, index) => {\n if (index > 0) {\n this.appendChild(_50.loadTemplate(\n /* html */\n `
`\n ));\n }\n this.appendChild(filterGui);\n });\n this.filterGuis = filterGuis;\n this.lastOpenedInContainer = container;\n });\n }\n getFilterTitle(filter, filterDef) {\n if (filterDef.title != null) {\n return filterDef.title;\n }\n return filter instanceof ProvidedFilter ? filter.getFilterTitle() : \"Filter\";\n }\n destroyChildren() {\n this.guiDestroyFuncs.forEach((func) => func());\n this.guiDestroyFuncs.length = 0;\n this.filterGuis.length = 0;\n }\n insertFilterMenu(filter, name) {\n const menuItem = this.createBean(new AgMenuItemComponent4());\n return menuItem.init({\n menuItemDef: {\n name,\n subMenu: [],\n cssClasses: [\"ag-multi-filter-menu-item\"],\n menuItem: AgMenuItemRenderer,\n menuItemParams: {\n cssClassPrefix: \"ag-compact-menu-option\",\n isCompact: true\n }\n },\n level: 0,\n isAnotherSubMenuOpen: () => false,\n childComponent: filter,\n contextParams: {\n column: null,\n node: null,\n value: null\n }\n }).then(() => {\n menuItem.setParentComponent(this);\n this.guiDestroyFuncs.push(() => this.destroyBean(menuItem));\n this.addManagedListener(menuItem, AgMenuItemComponent4.EVENT_MENU_ITEM_ACTIVATED, (event) => {\n if (this.lastActivatedMenuItem && this.lastActivatedMenuItem !== event.menuItem) {\n this.lastActivatedMenuItem.deactivate();\n }\n this.lastActivatedMenuItem = event.menuItem;\n });\n const menuItemGui = menuItem.getGui();\n menuItem.addManagedListener(menuItemGui, \"keydown\", (e) => {\n const { key } = e;\n switch (key) {\n case KeyCode10.UP:\n case KeyCode10.RIGHT:\n case KeyCode10.DOWN:\n case KeyCode10.LEFT:\n e.preventDefault();\n if (key === KeyCode10.RIGHT) {\n menuItem.openSubMenu(true);\n }\n break;\n }\n });\n menuItem.addManagedListener(menuItemGui, \"focusin\", () => menuItem.activate());\n menuItem.addManagedListener(menuItemGui, \"focusout\", () => {\n if (!menuItem.isSubMenuOpen() && !menuItem.isSubMenuOpening()) {\n menuItem.deactivate();\n }\n });\n return menuItem;\n });\n }\n insertFilterGroup(filter, title) {\n const group = this.createBean(new AgGroupComponent5({\n title,\n cssIdentifier: \"multi-filter\"\n }));\n this.guiDestroyFuncs.push(() => this.destroyBean(group));\n group.addItem(filter.getGui());\n group.toggleGroupExpand(false);\n if (filter.afterGuiAttached) {\n group.addManagedListener(group, AgGroupComponent5.EVENT_EXPANDED, () => filter.afterGuiAttached({\n container: this.lastOpenedInContainer,\n suppressFocus: true,\n hidePopup: this.hidePopup\n }));\n }\n return group;\n }\n isFilterActive() {\n return this.filters.some((filter) => filter.isFilterActive());\n }\n getLastActiveFilterIndex() {\n return this.activeFilterIndices.length > 0 ? this.activeFilterIndices[this.activeFilterIndices.length - 1] : null;\n }\n doesFilterPass(params, filterToSkip) {\n let rowPasses = true;\n this.filters.forEach((filter) => {\n if (!rowPasses || filter === filterToSkip || !filter.isFilterActive()) {\n return;\n }\n rowPasses = filter.doesFilterPass(params);\n });\n return rowPasses;\n }\n getFilterType() {\n return \"multi\";\n }\n getModelFromUi() {\n const model = {\n filterType: this.getFilterType(),\n filterModels: this.filters.map((filter) => {\n const providedFilter = filter;\n if (typeof providedFilter.getModelFromUi === \"function\") {\n return providedFilter.getModelFromUi();\n }\n return null;\n })\n };\n return model;\n }\n getModel() {\n if (!this.isFilterActive()) {\n return null;\n }\n const model = {\n filterType: this.getFilterType(),\n filterModels: this.filters.map((filter) => {\n if (filter.isFilterActive()) {\n return filter.getModel();\n }\n return null;\n })\n };\n return model;\n }\n setModel(model) {\n const setFilterModel = (filter, filterModel) => {\n return new AgPromise5((resolve) => {\n const promise = filter.setModel(filterModel);\n promise ? promise.then(() => resolve()) : resolve();\n });\n };\n let promises = [];\n if (model == null) {\n promises = this.filters.map((filter, index) => {\n const res = setFilterModel(filter, null).then(() => {\n this.updateActiveList(index);\n });\n return res;\n });\n } else {\n this.filters.forEach((filter, index) => {\n const filterModel = model.filterModels.length > index ? model.filterModels[index] : null;\n const res = setFilterModel(filter, filterModel).then(() => {\n this.updateActiveList(index);\n });\n promises.push(res);\n });\n }\n return AgPromise5.all(promises).then(() => {\n });\n }\n applyModel(source = \"api\") {\n let result = false;\n this.filters.forEach((filter) => {\n if (filter instanceof ProvidedFilter) {\n result = filter.applyModel(source) || result;\n }\n });\n return result;\n }\n getChildFilterInstance(index) {\n return this.filters[index];\n }\n afterGuiAttached(params) {\n let refreshPromise;\n if (params) {\n this.hidePopup = params.hidePopup;\n refreshPromise = this.refreshGui(params.container);\n } else {\n this.hidePopup = void 0;\n refreshPromise = AgPromise5.resolve();\n }\n refreshPromise.then(() => {\n const { filterDefs } = this;\n let hasFocused = false;\n if (filterDefs) {\n _50.forEachReverse(filterDefs, (filterDef, index) => {\n var _a;\n const isFirst = index === 0;\n const suppressFocus = !isFirst || filterDef.display !== \"inline\";\n const afterGuiAttachedParams = __spreadProps8(__spreadValues11({}, params != null ? params : {}), { suppressFocus });\n const filter = (_a = this.filters) == null ? void 0 : _a[index];\n if (filter) {\n this.executeFunctionIfExistsOnFilter(filter, \"afterGuiAttached\", afterGuiAttachedParams);\n if (isFirst) {\n hasFocused = true;\n }\n }\n if (isFirst && suppressFocus) {\n const filterGui = this.filterGuis[index];\n if (filterGui) {\n filterGui.focus();\n hasFocused = true;\n }\n }\n });\n }\n const eDocument = this.gos.getDocument();\n const activeEl = this.gos.getActiveDomElement();\n if (!hasFocused && (!activeEl || activeEl === eDocument.body || this.getGui().contains(activeEl))) {\n this.forceFocusOutOfContainer(true);\n }\n });\n }\n afterGuiDetached() {\n this.executeFunctionIfExists(\"afterGuiDetached\");\n }\n onAnyFilterChanged() {\n this.executeFunctionIfExists(\"onAnyFilterChanged\");\n }\n onNewRowsLoaded() {\n this.executeFunctionIfExists(\"onNewRowsLoaded\");\n }\n destroy() {\n this.filters.forEach((filter) => this.destroyBean(filter));\n this.filters.length = 0;\n this.destroyChildren();\n this.hidePopup = void 0;\n super.destroy();\n }\n executeFunctionIfExists(name, ...params) {\n _50.forEachReverse(this.filters, (filter) => {\n this.executeFunctionIfExistsOnFilter(filter, name, params);\n });\n }\n executeFunctionIfExistsOnFilter(filter, name, ...params) {\n const func = filter[name];\n if (typeof func === \"function\") {\n func.apply(filter, params);\n }\n }\n createFilter(filterDef, index) {\n const { filterModifiedCallback, doesRowPassOtherFilter } = this.params;\n let filterInstance;\n const filterParams = __spreadProps8(__spreadValues11({}, this.filterManager.createFilterParams(this.column, this.column.getColDef())), {\n filterModifiedCallback,\n filterChangedCallback: (additionalEventAttributes) => {\n this.executeWhenAllFiltersReady(() => this.filterChanged(index, additionalEventAttributes));\n },\n doesRowPassOtherFilter: (node) => doesRowPassOtherFilter(node) && this.doesFilterPass({ node, data: node.data }, filterInstance)\n });\n const compDetails = this.userComponentFactory.getFilterDetails(filterDef, filterParams, \"agTextColumnFilter\");\n if (!compDetails) {\n return null;\n }\n const filterPromise = compDetails.newAgStackInstance();\n if (filterPromise) {\n filterPromise.then((filter) => filterInstance = filter);\n }\n return filterPromise;\n }\n executeWhenAllFiltersReady(action) {\n if (this.filters && this.filters.length > 0) {\n action();\n } else {\n this.afterFiltersReadyFuncs.push(action);\n }\n }\n updateActiveList(index) {\n const changedFilter = this.filters[index];\n _50.removeFromArray(this.activeFilterIndices, index);\n if (changedFilter.isFilterActive()) {\n this.activeFilterIndices.push(index);\n }\n }\n filterChanged(index, additionalEventAttributes) {\n this.updateActiveList(index);\n this.filterChangedCallback(additionalEventAttributes);\n const changedFilter = this.filters[index];\n this.filters.forEach((filter) => {\n if (filter === changedFilter) {\n return;\n }\n if (typeof filter.onAnyFilterChanged === \"function\") {\n filter.onAnyFilterChanged();\n }\n });\n }\n onFocusIn(e) {\n if (this.lastActivatedMenuItem != null && !this.lastActivatedMenuItem.getGui().contains(e.target)) {\n this.lastActivatedMenuItem.deactivate();\n this.lastActivatedMenuItem = null;\n }\n }\n getModelAsString(model) {\n var _a, _b, _c, _d;\n if (!this.filters || !((_a = model == null ? void 0 : model.filterModels) == null ? void 0 : _a.length)) {\n return \"\";\n }\n const lastActiveIndex = (_b = this.getLastActiveFilterIndex()) != null ? _b : 0;\n const activeFilter = this.filters[lastActiveIndex];\n return (_d = (_c = activeFilter.getModelAsString) == null ? void 0 : _c.call(activeFilter, model.filterModels[lastActiveIndex])) != null ? _d : \"\";\n }\n};\n__decorateClass13([\n Autowired61(\"filterManager\")\n], _MultiFilter.prototype, \"filterManager\", 2);\n__decorateClass13([\n Autowired61(\"userComponentFactory\")\n], _MultiFilter.prototype, \"userComponentFactory\", 2);\n__decorateClass13([\n PostConstruct61\n], _MultiFilter.prototype, \"postConstruct\", 1);\nvar MultiFilter = _MultiFilter;\nvar MultiFloatingFilterComp = class extends Component56 {\n constructor() {\n super(\n /* html */\n `
`\n );\n this.floatingFilters = [];\n this.compDetailsList = [];\n }\n init(params) {\n this.params = params;\n const { compDetailsList } = this.getCompDetailsList(params);\n return this.setParams(compDetailsList);\n }\n setParams(compDetailsList) {\n const floatingFilterPromises = [];\n compDetailsList.forEach((compDetails) => {\n const floatingFilterPromise = compDetails == null ? void 0 : compDetails.newAgStackInstance();\n if (floatingFilterPromise != null) {\n this.compDetailsList.push(compDetails);\n floatingFilterPromises.push(floatingFilterPromise);\n }\n });\n return AgPromise23.all(floatingFilterPromises).then((floatingFilters) => {\n floatingFilters.forEach((floatingFilter, index) => {\n this.floatingFilters.push(floatingFilter);\n const gui = floatingFilter.getGui();\n this.appendChild(gui);\n if (index > 0) {\n _216.setDisplayed(gui, false);\n }\n });\n });\n }\n onParamsUpdated(params) {\n this.refresh(params);\n }\n refresh(params) {\n this.params = params;\n const { compDetailsList: newCompDetailsList, floatingFilterParamsList } = this.getCompDetailsList(params);\n const allFloatingFilterCompsUnchanged = newCompDetailsList.length === this.compDetailsList.length && newCompDetailsList.every((newCompDetails, index) => !this.filterManager.areFilterCompsDifferent(this.compDetailsList[index], newCompDetails));\n if (allFloatingFilterCompsUnchanged) {\n floatingFilterParamsList.forEach((floatingFilterParams, index) => {\n var _a;\n const floatingFilter = this.floatingFilters[index];\n let hasRefreshed = false;\n if (floatingFilter.refresh) {\n const result = floatingFilter.refresh(floatingFilterParams);\n if (result !== null) {\n hasRefreshed = true;\n }\n }\n if (!hasRefreshed) {\n (_a = floatingFilter.onParamsUpdated) == null ? void 0 : _a.call(floatingFilter, floatingFilterParams);\n }\n });\n } else {\n _216.clearElement(this.getGui());\n this.destroyBeans(this.floatingFilters);\n this.floatingFilters = [];\n this.compDetailsList = [];\n this.setParams(newCompDetailsList);\n }\n }\n getCompDetailsList(params) {\n const compDetailsList = [];\n const floatingFilterParamsList = [];\n const filterParams = params.filterParams;\n MultiFilter.getFilterDefs(filterParams).forEach((filterDef, index) => {\n const floatingFilterParams = __spreadProps8(__spreadValues11({}, params), {\n // set the parent filter instance for each floating filter to the relevant child filter instance\n parentFilterInstance: (callback) => {\n this.parentMultiFilterInstance((parent) => {\n const child = parent.getChildFilterInstance(index);\n if (child == null) {\n return;\n }\n callback(child);\n });\n }\n });\n _216.mergeDeep(floatingFilterParams.filterParams, filterDef.filterParams);\n const compDetails = this.getCompDetails(filterDef, floatingFilterParams);\n if (compDetails) {\n compDetailsList.push(compDetails);\n floatingFilterParamsList.push(floatingFilterParams);\n }\n });\n return { compDetailsList, floatingFilterParamsList };\n }\n onParentModelChanged(model, event) {\n if (event && event.afterFloatingFilter) {\n return;\n }\n this.parentMultiFilterInstance((parent) => {\n if (model == null) {\n this.floatingFilters.forEach((filter, i) => {\n filter.onParentModelChanged(null, event);\n _216.setDisplayed(filter.getGui(), i === 0);\n });\n } else {\n const lastActiveFloatingFilterIndex = parent.getLastActiveFilterIndex();\n this.floatingFilters.forEach((filter, i) => {\n const filterModel = model.filterModels.length > i ? model.filterModels[i] : null;\n filter.onParentModelChanged(filterModel, event);\n const shouldShow = lastActiveFloatingFilterIndex == null ? i === 0 : i === lastActiveFloatingFilterIndex;\n _216.setDisplayed(filter.getGui(), shouldShow);\n });\n }\n });\n }\n destroy() {\n this.destroyBeans(this.floatingFilters);\n this.floatingFilters.length = 0;\n super.destroy();\n }\n getCompDetails(filterDef, params) {\n var _a;\n let defaultComponentName = (_a = this.userComponentFactory.getDefaultFloatingFilterType(\n filterDef,\n () => this.filterManager.getDefaultFloatingFilter(this.params.column)\n )) != null ? _a : \"agReadOnlyFloatingFilter\";\n return this.userComponentFactory.getFloatingFilterCompDetails(filterDef, params, defaultComponentName);\n }\n parentMultiFilterInstance(cb) {\n this.params.parentFilterInstance((parent) => {\n if (!(parent instanceof MultiFilter)) {\n throw new Error(\"AG Grid - MultiFloatingFilterComp expects MultiFilter as its parent\");\n }\n cb(parent);\n });\n }\n};\n__decorateClass13([\n Autowired215(\"userComponentFactory\")\n], MultiFloatingFilterComp.prototype, \"userComponentFactory\", 2);\n__decorateClass13([\n Autowired215(\"filterManager\")\n], MultiFloatingFilterComp.prototype, \"filterManager\", 2);\nvar VERSION13 = \"31.3.2\";\nvar MultiFilterModule = {\n version: VERSION13,\n moduleName: ModuleNames13.MultiFilterModule,\n beans: [],\n userComponents: [\n { componentName: \"agMultiColumnFilter\", componentClass: MultiFilter },\n { componentName: \"agMultiColumnFloatingFilter\", componentClass: MultiFloatingFilterComp }\n ],\n dependantModules: [\n EnterpriseCoreModule\n ]\n};\n\n// enterprise-modules/rich-select/dist/package/main.esm.mjs\nimport { ModuleNames as ModuleNames14 } from \"ag-grid-community\";\nimport {\n AgRichSelect as AgRichSelect3,\n Events as Events18,\n PopupComponent,\n _ as _51\n} from \"ag-grid-community\";\nvar RichSelectCellEditor = class extends PopupComponent {\n constructor() {\n super(\n /* html */\n `
`\n );\n }\n init(params) {\n this.params = params;\n const { cellStartedEdit, cellHeight, values } = params;\n if (_51.missing(values)) {\n console.warn(\"AG Grid: agRichSelectCellEditor requires cellEditorParams.values to be set\");\n }\n const { params: richSelectParams, valuesPromise } = this.buildRichSelectParams();\n this.richSelect = this.createManagedBean(new AgRichSelect3(richSelectParams));\n this.richSelect.addCssClass(\"ag-cell-editor\");\n this.appendChild(this.richSelect);\n if (valuesPromise) {\n valuesPromise.then((values2) => {\n this.richSelect.setValueList({ valueList: values2, refresh: true });\n const searchStringCallback = this.getSearchStringCallback(values2);\n if (searchStringCallback) {\n this.richSelect.setSearchStringCreator(searchStringCallback);\n }\n });\n }\n this.addManagedListener(this.richSelect, Events18.EVENT_FIELD_PICKER_VALUE_SELECTED, this.onEditorPickerValueSelected.bind(this));\n this.addManagedListener(this.richSelect.getGui(), \"focusout\", this.onEditorFocusOut.bind(this));\n this.focusAfterAttached = cellStartedEdit;\n if (_51.exists(cellHeight)) {\n this.richSelect.setRowHeight(cellHeight);\n }\n }\n onEditorPickerValueSelected(e) {\n this.params.stopEditing(!e.fromEnterKey);\n }\n onEditorFocusOut(e) {\n if (this.richSelect.getGui().contains(e.relatedTarget)) {\n return;\n }\n this.params.stopEditing(true);\n }\n buildRichSelectParams() {\n const {\n cellRenderer,\n value,\n values,\n formatValue,\n searchDebounceDelay,\n valueListGap,\n valueListMaxHeight,\n valueListMaxWidth,\n allowTyping,\n filterList,\n searchType,\n highlightMatch,\n valuePlaceholder,\n eventKey\n } = this.params;\n const ret = {\n value,\n cellRenderer,\n searchDebounceDelay,\n valueFormatter: formatValue,\n pickerAriaLabelKey: \"ariaLabelRichSelectField\",\n pickerAriaLabelValue: \"Rich Select Field\",\n pickerType: \"virtual-list\",\n pickerGap: valueListGap,\n allowTyping,\n filterList,\n searchType,\n highlightMatch,\n maxPickerHeight: valueListMaxHeight,\n maxPickerWidth: valueListMaxWidth,\n placeholder: valuePlaceholder,\n initialInputValue: (eventKey == null ? void 0 : eventKey.length) === 1 ? eventKey : void 0\n };\n let valuesResult;\n let valuesPromise;\n if (typeof values === \"function\") {\n valuesResult = values(this.params);\n } else {\n valuesResult = values != null ? values : [];\n }\n if (Array.isArray(valuesResult)) {\n ret.valueList = valuesResult;\n ret.searchStringCreator = this.getSearchStringCallback(valuesResult);\n } else {\n valuesPromise = valuesResult;\n }\n return { params: ret, valuesPromise };\n }\n getSearchStringCallback(values) {\n const { colDef } = this.params;\n if (typeof values[0] !== \"object\" || !colDef.keyCreator) {\n return;\n }\n return (values2) => values2.map((value) => {\n const keyParams = this.gos.addGridCommonParams({\n value,\n colDef: this.params.colDef,\n column: this.params.column,\n node: this.params.node,\n data: this.params.data\n });\n return colDef.keyCreator(keyParams);\n });\n }\n // we need to have the gui attached before we can draw the virtual rows, as the\n // virtual row logic needs info about the gui state\n afterGuiAttached() {\n const { focusAfterAttached, params } = this;\n setTimeout(() => {\n if (!this.isAlive()) {\n return;\n }\n if (focusAfterAttached) {\n const focusableEl = this.richSelect.getFocusableElement();\n focusableEl.focus();\n const { allowTyping, eventKey: eventKey2 } = this.params;\n if (allowTyping && (!eventKey2 || eventKey2.length !== 1)) {\n focusableEl.select();\n }\n }\n this.richSelect.showPicker();\n const { eventKey } = params;\n if (eventKey) {\n if ((eventKey == null ? void 0 : eventKey.length) === 1) {\n this.richSelect.searchTextFromString(eventKey);\n }\n }\n });\n }\n getValue() {\n return this.richSelect.getValue();\n }\n isPopup() {\n return false;\n }\n};\nvar VERSION14 = \"31.3.2\";\nvar RichSelectModule = {\n version: VERSION14,\n moduleName: ModuleNames14.RichSelectModule,\n beans: [],\n userComponents: [\n { componentName: \"agRichSelect\", componentClass: RichSelectCellEditor },\n { componentName: \"agRichSelectCellEditor\", componentClass: RichSelectCellEditor }\n ],\n dependantModules: [\n EnterpriseCoreModule\n ]\n};\n\n// enterprise-modules/server-side-row-model/dist/package/main.esm.mjs\nimport { ModuleNames as ModuleNames26 } from \"ag-grid-community\";\nimport {\n _ as _314,\n Autowired as Autowired511,\n Bean as Bean28,\n BeanStub as BeanStub45,\n Events as Events37,\n NumberSequence as NumberSequence4,\n PostConstruct as PostConstruct510,\n PreDestroy as PreDestroy4,\n RowNode as RowNode5,\n Optional as Optional6,\n ModuleRegistry as ModuleRegistry6,\n ModuleNames as ModuleNames15\n} from \"ag-grid-community\";\nimport {\n _ as _57,\n Autowired as Autowired66,\n Events as Events19,\n NumberSequence,\n PostConstruct as PostConstruct64,\n PreDestroy as PreDestroy5,\n RowNodeBlock,\n ServerSideTransactionResultStatus\n} from \"ag-grid-community\";\nimport {\n _ as _217,\n Autowired as Autowired415,\n BeanStub as BeanStub35,\n Events as Events29,\n NumberSequence as NumberSequence3,\n PostConstruct as PostConstruct413,\n PreDestroy as PreDestroy32,\n ServerSideTransactionResultStatus as ServerSideTransactionResultStatus2\n} from \"ag-grid-community\";\nimport { Autowired as Autowired315, BeanStub as BeanStub28, PostConstruct as PostConstruct314, PreDestroy as PreDestroy22 } from \"ag-grid-community\";\nimport { Autowired as Autowired216, Bean as Bean14, BeanStub as BeanStub21, PostConstruct as PostConstruct215, RowNodeBlockLoader as RowNodeBlockLoader2 } from \"ag-grid-community\";\nimport {\n _ as _411,\n Autowired as Autowired67,\n Bean as Bean35,\n BeanStub as BeanStub55\n} from \"ag-grid-community\";\nimport {\n _ as _58,\n Autowired as Autowired75,\n Bean as Bean45,\n BeanStub as BeanStub65,\n RowNode as RowNode7\n} from \"ag-grid-community\";\nimport { Bean as Bean54, PreDestroy as PreDestroy52 } from \"ag-grid-community\";\nimport {\n Autowired as Autowired85,\n Bean as Bean64,\n BeanStub as BeanStub74,\n Events as Events46,\n PostConstruct as PostConstruct74,\n ServerSideTransactionResultStatus as ServerSideTransactionResultStatus3\n} from \"ag-grid-community\";\nimport {\n _ as _67,\n Autowired as Autowired94,\n BeanStub as BeanStub82,\n Events as Events55,\n PostConstruct as PostConstruct83,\n RowNode as RowNode10,\n Bean as Bean73\n} from \"ag-grid-community\";\nimport {\n Autowired as Autowired104,\n Bean as Bean82,\n BeanStub as BeanStub92,\n Events as Events65,\n PostConstruct as PostConstruct93\n} from \"ag-grid-community\";\nimport {\n Autowired as Autowired113,\n Bean as Bean92,\n BeanStub as BeanStub102,\n Events as Events75,\n PostConstruct as PostConstruct103\n} from \"ag-grid-community\";\nimport {\n _ as _85,\n Autowired as Autowired123,\n Bean as Bean102\n} from \"ag-grid-community\";\nimport { Autowired as Autowired133, Bean as Bean112 } from \"ag-grid-community\";\nimport {\n Autowired as Autowired162,\n Bean as Bean122,\n BeanStub as BeanStub132,\n Events as Events102,\n PostConstruct as PostConstruct133\n} from \"ag-grid-community\";\nimport { Autowired as Autowired142, BeanStub as BeanStub112, Events as Events84, PostConstruct as PostConstruct113 } from \"ag-grid-community\";\nimport { Autowired as Autowired152, BeanStub as BeanStub122, PostConstruct as PostConstruct123, Events as Events93 } from \"ag-grid-community\";\nimport {\n Autowired as Autowired172,\n Bean as Bean132,\n Events as Events112,\n ExpansionService\n} from \"ag-grid-community\";\nvar __defProp14 = Object.defineProperty;\nvar __defProps9 = Object.defineProperties;\nvar __getOwnPropDesc14 = Object.getOwnPropertyDescriptor;\nvar __getOwnPropDescs9 = Object.getOwnPropertyDescriptors;\nvar __getOwnPropSymbols12 = Object.getOwnPropertySymbols;\nvar __hasOwnProp13 = Object.prototype.hasOwnProperty;\nvar __propIsEnum12 = Object.prototype.propertyIsEnumerable;\nvar __defNormalProp12 = (obj, key, value) => key in obj ? __defProp14(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;\nvar __spreadValues12 = (a, b) => {\n for (var prop in b || (b = {}))\n if (__hasOwnProp13.call(b, prop))\n __defNormalProp12(a, prop, b[prop]);\n if (__getOwnPropSymbols12)\n for (var prop of __getOwnPropSymbols12(b)) {\n if (__propIsEnum12.call(b, prop))\n __defNormalProp12(a, prop, b[prop]);\n }\n return a;\n};\nvar __spreadProps9 = (a, b) => __defProps9(a, __getOwnPropDescs9(b));\nvar __objRest2 = (source, exclude) => {\n var target = {};\n for (var prop in source)\n if (__hasOwnProp13.call(source, prop) && exclude.indexOf(prop) < 0)\n target[prop] = source[prop];\n if (source != null && __getOwnPropSymbols12)\n for (var prop of __getOwnPropSymbols12(source)) {\n if (exclude.indexOf(prop) < 0 && __propIsEnum12.call(source, prop))\n target[prop] = source[prop];\n }\n return target;\n};\nvar __decorateClass14 = (decorators, target, key, kind) => {\n var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc14(target, key) : target;\n for (var i = decorators.length - 1, decorator; i >= 0; i--)\n if (decorator = decorators[i])\n result = (kind ? decorator(target, key, result) : decorator(result)) || result;\n if (kind && result)\n __defProp14(target, key, result);\n return result;\n};\nvar FullStore = class extends RowNodeBlock {\n constructor(ssrmParams, storeParams, parentRowNode) {\n super(0);\n this.nodeIdSequence = new NumberSequence();\n this.info = {};\n this.ssrmParams = ssrmParams;\n this.parentRowNode = parentRowNode;\n this.level = parentRowNode.level + 1;\n this.groupLevel = ssrmParams.rowGroupCols ? this.level < ssrmParams.rowGroupCols.length : void 0;\n this.leafGroup = ssrmParams.rowGroupCols ? this.level === ssrmParams.rowGroupCols.length - 1 : false;\n }\n postConstruct() {\n this.usingTreeData = this.gos.get(\"treeData\");\n this.nodeIdPrefix = this.blockUtils.createNodeIdPrefix(this.parentRowNode);\n if (!this.usingTreeData && this.groupLevel) {\n const groupColVo = this.ssrmParams.rowGroupCols[this.level];\n this.groupField = groupColVo.field;\n this.rowGroupColumn = this.columnModel.getRowGroupColumns()[this.level];\n }\n let initialRowCount = 1;\n const isRootStore = this.parentRowNode.level === -1;\n const userInitialRowCount = this.storeUtils.getServerSideInitialRowCount();\n if (isRootStore && userInitialRowCount != null) {\n initialRowCount = userInitialRowCount;\n }\n this.initialiseRowNodes(initialRowCount);\n this.rowNodeBlockLoader.addBlock(this);\n this.addDestroyFunc(() => this.rowNodeBlockLoader.removeBlock(this));\n this.postSortFunc = this.gos.getCallback(\"postSortRows\");\n if (userInitialRowCount != null) {\n this.eventService.dispatchEventOnce({\n type: Events19.EVENT_ROW_COUNT_READY\n });\n }\n }\n destroyRowNodes() {\n this.blockUtils.destroyRowNodes(this.allRowNodes);\n this.allRowNodes = [];\n this.nodesAfterSort = [];\n this.nodesAfterFilter = [];\n this.allNodesMap = {};\n }\n initialiseRowNodes(loadingRowsCount, failedLoad = false) {\n this.destroyRowNodes();\n for (let i = 0; i < loadingRowsCount; i++) {\n const loadingRowNode = this.blockUtils.createRowNode(\n {\n field: this.groupField,\n group: this.groupLevel,\n leafGroup: this.leafGroup,\n level: this.level,\n parent: this.parentRowNode,\n rowGroupColumn: this.rowGroupColumn\n }\n );\n if (failedLoad) {\n loadingRowNode.failedLoad = true;\n }\n this.allRowNodes.push(loadingRowNode);\n this.nodesAfterFilter.push(loadingRowNode);\n this.nodesAfterSort.push(loadingRowNode);\n }\n }\n getBlockStateJson() {\n return {\n id: this.nodeIdPrefix ? this.nodeIdPrefix : \"\",\n state: this.getState()\n };\n }\n loadFromDatasource() {\n this.storeUtils.loadFromDatasource({\n startRow: void 0,\n endRow: void 0,\n parentBlock: this,\n parentNode: this.parentRowNode,\n storeParams: this.ssrmParams,\n success: this.success.bind(this, this.getVersion()),\n fail: this.pageLoadFailed.bind(this, this.getVersion())\n });\n }\n getStartRow() {\n return 0;\n }\n getEndRow() {\n return this.nodesAfterSort.length;\n }\n createDataNode(data, index) {\n const rowNode = this.blockUtils.createRowNode(\n {\n field: this.groupField,\n group: this.groupLevel,\n leafGroup: this.leafGroup,\n level: this.level,\n parent: this.parentRowNode,\n rowGroupColumn: this.rowGroupColumn\n }\n );\n if (index != null) {\n _57.insertIntoArray(this.allRowNodes, rowNode, index);\n } else {\n this.allRowNodes.push(rowNode);\n }\n const defaultId = this.prefixId(this.nodeIdSequence.next());\n this.blockUtils.setDataIntoRowNode(rowNode, data, defaultId, void 0);\n this.nodeManager.addRowNode(rowNode);\n this.blockUtils.checkOpenByDefault(rowNode);\n this.allNodesMap[rowNode.id] = rowNode;\n return rowNode;\n }\n prefixId(id) {\n if (this.nodeIdPrefix) {\n return this.nodeIdPrefix + \"-\" + id;\n } else {\n return id.toString();\n }\n }\n processServerFail() {\n this.initialiseRowNodes(1, true);\n this.fireStoreUpdatedEvent();\n this.flushAsyncTransactions();\n }\n processServerResult(params) {\n if (!this.isAlive()) {\n return;\n }\n const info = params.groupLevelInfo;\n if (info) {\n Object.assign(this.info, info);\n }\n if (params.pivotResultFields) {\n this.serverSideRowModel.generateSecondaryColumns(params.pivotResultFields);\n }\n const nodesToRecycle = this.allRowNodes.length > 0 ? this.allNodesMap : void 0;\n this.allRowNodes = [];\n this.nodesAfterSort = [];\n this.nodesAfterFilter = [];\n this.allNodesMap = {};\n if (!params.rowData) {\n _57.warnOnce('\"params.data\" is missing from Server-Side Row Model success() callback. Please use the \"data\" attribute. If no data is returned, set an empty list.');\n }\n this.createOrRecycleNodes(nodesToRecycle, params.rowData);\n if (nodesToRecycle) {\n this.blockUtils.destroyRowNodes(_57.getAllValuesInObject(nodesToRecycle));\n }\n if (this.level === 0) {\n this.eventService.dispatchEventOnce({\n type: Events19.EVENT_ROW_COUNT_READY\n });\n }\n this.filterAndSortNodes();\n this.fireStoreUpdatedEvent();\n this.flushAsyncTransactions();\n }\n createOrRecycleNodes(nodesToRecycle, rowData) {\n if (!rowData) {\n return;\n }\n const lookupNodeToRecycle = (data) => {\n if (!nodesToRecycle) {\n return void 0;\n }\n const getRowIdFunc = this.gos.getCallback(\"getRowId\");\n if (!getRowIdFunc) {\n return void 0;\n }\n const parentKeys = this.parentRowNode.getGroupKeys();\n const level = this.level;\n const id = getRowIdFunc({\n data,\n parentKeys: parentKeys.length > 0 ? parentKeys : void 0,\n level\n });\n const foundNode = nodesToRecycle[id];\n if (!foundNode) {\n return void 0;\n }\n delete nodesToRecycle[id];\n return foundNode;\n };\n const recycleNode = (rowNode, dataItem) => {\n this.allNodesMap[rowNode.id] = rowNode;\n this.blockUtils.updateDataIntoRowNode(rowNode, dataItem);\n this.allRowNodes.push(rowNode);\n };\n rowData.forEach((dataItem) => {\n const nodeToRecycle = lookupNodeToRecycle(dataItem);\n if (nodeToRecycle) {\n recycleNode(nodeToRecycle, dataItem);\n } else {\n this.createDataNode(dataItem);\n }\n });\n }\n flushAsyncTransactions() {\n window.setTimeout(() => this.transactionManager.flushAsyncTransactions(), 0);\n }\n filterAndSortNodes() {\n this.filterRowNodes();\n this.sortRowNodes();\n }\n sortRowNodes() {\n const serverIsSorting = this.storeUtils.isServerSideSortAllLevels() || this.storeUtils.isServerSideSortOnServer();\n const sortOptions = this.sortController.getSortOptions();\n const noSortApplied = !sortOptions || sortOptions.length == 0;\n if (serverIsSorting || noSortApplied) {\n this.nodesAfterSort = this.nodesAfterFilter;\n return;\n }\n this.nodesAfterSort = this.rowNodeSorter.doFullSort(this.nodesAfterFilter, sortOptions);\n if (this.postSortFunc) {\n const params = { nodes: this.nodesAfterSort };\n this.postSortFunc(params);\n }\n }\n filterRowNodes() {\n const serverIsFiltering = !this.storeUtils.isServerSideOnlyRefreshFilteredGroups() || this.storeUtils.isServerSideFilterOnServer();\n const groupLevel = this.groupLevel;\n if (serverIsFiltering || groupLevel) {\n this.nodesAfterFilter = this.allRowNodes;\n return;\n }\n this.nodesAfterFilter = this.allRowNodes.filter(\n (rowNode) => this.filterManager.doesRowPassFilter({ rowNode })\n );\n }\n clearDisplayIndexes() {\n this.displayIndexStart = void 0;\n this.displayIndexEnd = void 0;\n this.allRowNodes.forEach((rowNode) => this.blockUtils.clearDisplayIndex(rowNode));\n }\n getDisplayIndexEnd() {\n return this.displayIndexEnd;\n }\n isDisplayIndexInStore(displayIndex) {\n if (this.getRowCount() === 0) {\n return false;\n }\n return displayIndex >= this.displayIndexStart && displayIndex < this.displayIndexEnd;\n }\n setDisplayIndexes(displayIndexSeq, nextRowTop) {\n this.displayIndexStart = displayIndexSeq.peek();\n this.topPx = nextRowTop.value;\n const visibleNodeIds = {};\n this.nodesAfterSort.forEach((rowNode) => {\n this.blockUtils.setDisplayIndex(rowNode, displayIndexSeq, nextRowTop);\n visibleNodeIds[rowNode.id] = true;\n });\n this.allRowNodes.forEach((rowNode) => {\n if (!visibleNodeIds[rowNode.id]) {\n this.blockUtils.clearDisplayIndex(rowNode);\n }\n });\n this.displayIndexEnd = displayIndexSeq.peek();\n this.heightPx = nextRowTop.value - this.topPx;\n }\n forEachStoreDeep(callback, sequence = new NumberSequence()) {\n callback(this, sequence.next());\n this.allRowNodes.forEach((rowNode) => {\n const childCache = rowNode.childStore;\n if (childCache) {\n childCache.forEachStoreDeep(callback, sequence);\n }\n });\n }\n forEachNodeDeep(callback, sequence = new NumberSequence()) {\n this.allRowNodes.forEach((rowNode) => {\n callback(rowNode, sequence.next());\n const childCache = rowNode.childStore;\n if (childCache) {\n childCache.forEachNodeDeep(callback, sequence);\n }\n });\n }\n forEachNodeDeepAfterFilterAndSort(callback, sequence = new NumberSequence(), includeFooterNodes = false) {\n this.nodesAfterSort.forEach((rowNode) => {\n callback(rowNode, sequence.next());\n const childCache = rowNode.childStore;\n if (childCache) {\n childCache.forEachNodeDeepAfterFilterAndSort(callback, sequence, includeFooterNodes);\n }\n });\n if (includeFooterNodes && this.parentRowNode.sibling) {\n callback(this.parentRowNode.sibling, sequence.next());\n }\n }\n getRowUsingDisplayIndex(displayRowIndex) {\n if (!this.isDisplayIndexInStore(displayRowIndex)) {\n return void 0;\n }\n const res = this.blockUtils.binarySearchForDisplayIndex(displayRowIndex, this.nodesAfterSort);\n return res;\n }\n getRowBounds(index) {\n for (let i = 0; i < this.nodesAfterSort.length; i++) {\n const rowNode = this.nodesAfterSort[i];\n const res = this.blockUtils.extractRowBounds(rowNode, index);\n if (res) {\n return res;\n }\n }\n return null;\n }\n isPixelInRange(pixel) {\n return pixel >= this.topPx && pixel < this.topPx + this.heightPx;\n }\n getRowIndexAtPixel(pixel) {\n const pixelBeforeThisStore = pixel <= this.topPx;\n if (pixelBeforeThisStore) {\n const firstNode = this.nodesAfterSort[0];\n return firstNode.rowIndex;\n }\n const pixelAfterThisStore = pixel >= this.topPx + this.heightPx;\n if (pixelAfterThisStore) {\n const lastRowNode = this.nodesAfterSort[this.nodesAfterSort.length - 1];\n const lastRowNodeBottomPx = lastRowNode.rowTop + lastRowNode.rowHeight;\n if (pixel >= lastRowNodeBottomPx && lastRowNode.expanded) {\n if (lastRowNode.childStore && lastRowNode.childStore.getRowCount() > 0) {\n return lastRowNode.childStore.getRowIndexAtPixel(pixel);\n }\n if (lastRowNode.detailNode) {\n return lastRowNode.detailNode.rowIndex;\n }\n }\n return lastRowNode.rowIndex;\n }\n let res = null;\n this.nodesAfterSort.forEach((rowNode) => {\n const res2 = this.blockUtils.getIndexAtPixel(rowNode, pixel);\n if (res2 != null) {\n res = res2;\n }\n });\n const pixelIsPastLastRow = res == null;\n if (pixelIsPastLastRow) {\n return this.displayIndexEnd - 1;\n }\n return res;\n }\n getChildStore(keys) {\n return this.storeUtils.getChildStore(keys, this, (key) => {\n const rowNode = this.allRowNodes.find((currentRowNode) => {\n return currentRowNode.key == key;\n });\n return rowNode;\n });\n }\n forEachChildStoreShallow(callback) {\n this.allRowNodes.forEach((rowNode) => {\n const childStore = rowNode.childStore;\n if (childStore) {\n callback(childStore);\n }\n });\n }\n refreshAfterFilter(params) {\n const serverIsFiltering = this.storeUtils.isServerSideFilterOnServer();\n const storeIsImpacted = this.storeUtils.isServerRefreshNeeded(this.parentRowNode, this.ssrmParams.rowGroupCols, params);\n const serverIsFilteringAllLevels = !this.storeUtils.isServerSideOnlyRefreshFilteredGroups();\n if (serverIsFilteringAllLevels || serverIsFiltering && storeIsImpacted) {\n this.refreshStore(true);\n this.sortRowNodes();\n return;\n }\n this.filterRowNodes();\n this.sortRowNodes();\n this.forEachChildStoreShallow((store) => store.refreshAfterFilter(params));\n }\n refreshAfterSort(params) {\n const serverIsSorting = this.storeUtils.isServerSideSortOnServer();\n const storeIsImpacted = this.storeUtils.isServerRefreshNeeded(this.parentRowNode, this.ssrmParams.rowGroupCols, params);\n const serverIsSortingAllLevels = this.storeUtils.isServerSideSortAllLevels();\n if (serverIsSortingAllLevels || serverIsSorting && storeIsImpacted) {\n this.refreshStore(true);\n this.filterRowNodes();\n return;\n }\n this.filterRowNodes();\n this.sortRowNodes();\n this.forEachChildStoreShallow((store) => store.refreshAfterSort(params));\n }\n applyTransaction(transaction) {\n switch (this.getState()) {\n case RowNodeBlock.STATE_FAILED:\n return { status: ServerSideTransactionResultStatus.StoreLoadingFailed };\n case RowNodeBlock.STATE_LOADING:\n return { status: ServerSideTransactionResultStatus.StoreLoading };\n case RowNodeBlock.STATE_WAITING_TO_LOAD:\n return { status: ServerSideTransactionResultStatus.StoreWaitingToLoad };\n }\n const applyCallback = this.gos.getCallback(\"isApplyServerSideTransaction\");\n if (applyCallback) {\n const params = {\n transaction,\n parentNode: this.parentRowNode,\n groupLevelInfo: this.info\n };\n const apply = applyCallback(params);\n if (!apply) {\n return { status: ServerSideTransactionResultStatus.Cancelled };\n }\n }\n const res = {\n status: ServerSideTransactionResultStatus.Applied,\n remove: [],\n update: [],\n add: []\n };\n const nodesToUnselect = [];\n this.executeAdd(transaction, res);\n this.executeRemove(transaction, res, nodesToUnselect);\n this.executeUpdate(transaction, res, nodesToUnselect);\n this.filterAndSortNodes();\n this.updateSelection(nodesToUnselect);\n return res;\n }\n updateSelection(nodesToUnselect) {\n const selectionChanged = nodesToUnselect.length > 0;\n if (selectionChanged) {\n this.selectionService.setNodesSelected({\n newValue: false,\n nodes: nodesToUnselect,\n suppressFinishActions: true,\n clearSelection: false,\n source: \"rowDataChanged\"\n });\n const event = {\n type: Events19.EVENT_SELECTION_CHANGED,\n source: \"rowDataChanged\"\n };\n this.eventService.dispatchEvent(event);\n }\n }\n executeAdd(rowDataTran, rowNodeTransaction) {\n const { add, addIndex } = rowDataTran;\n if (_57.missingOrEmpty(add)) {\n return;\n }\n const useIndex = typeof addIndex === \"number\" && addIndex >= 0;\n if (useIndex) {\n add.reverse().forEach((item) => {\n const newRowNode = this.createDataNode(item, addIndex);\n rowNodeTransaction.add.push(newRowNode);\n });\n } else {\n add.forEach((item) => {\n const newRowNode = this.createDataNode(item);\n rowNodeTransaction.add.push(newRowNode);\n });\n }\n }\n executeRemove(rowDataTran, rowNodeTransaction, nodesToUnselect) {\n const { remove } = rowDataTran;\n if (remove == null) {\n return;\n }\n const rowIdsRemoved = {};\n remove.forEach((item) => {\n const rowNode = this.lookupRowNode(item);\n if (!rowNode) {\n return;\n }\n if (rowNode.isSelected()) {\n nodesToUnselect.push(rowNode);\n }\n rowNode.clearRowTopAndRowIndex();\n rowIdsRemoved[rowNode.id] = true;\n delete this.allNodesMap[rowNode.id];\n rowNodeTransaction.remove.push(rowNode);\n this.nodeManager.removeNode(rowNode);\n });\n this.allRowNodes = this.allRowNodes.filter((rowNode) => !rowIdsRemoved[rowNode.id]);\n }\n executeUpdate(rowDataTran, rowNodeTransaction, nodesToUnselect) {\n const { update } = rowDataTran;\n if (update == null) {\n return;\n }\n update.forEach((item) => {\n const rowNode = this.lookupRowNode(item);\n if (!rowNode) {\n return;\n }\n this.blockUtils.updateDataIntoRowNode(rowNode, item);\n if (!rowNode.selectable && rowNode.isSelected()) {\n nodesToUnselect.push(rowNode);\n }\n rowNodeTransaction.update.push(rowNode);\n });\n }\n lookupRowNode(data) {\n const getRowIdFunc = this.gos.getCallback(\"getRowId\");\n let rowNode;\n if (getRowIdFunc != null) {\n const level = this.level;\n const parentKeys = this.parentRowNode.getGroupKeys();\n const id = getRowIdFunc({\n data,\n parentKeys: parentKeys.length > 0 ? parentKeys : void 0,\n level\n });\n rowNode = this.allNodesMap[id];\n if (!rowNode) {\n console.error(`AG Grid: could not find row id=${id}, data item was not found for this id`);\n return null;\n }\n } else {\n rowNode = this.allRowNodes.find((currentRowNode) => currentRowNode.data === data);\n if (!rowNode) {\n console.error(`AG Grid: could not find data item as object was not found`, data);\n return null;\n }\n }\n return rowNode;\n }\n addStoreStates(result) {\n result.push({\n suppressInfiniteScroll: true,\n route: this.parentRowNode.getGroupKeys(),\n rowCount: this.allRowNodes.length,\n info: this.info\n });\n this.forEachChildStoreShallow((childStore) => childStore.addStoreStates(result));\n }\n refreshStore(purge) {\n if (purge) {\n const loadingRowsToShow = this.nodesAfterSort ? this.nodesAfterSort.length : 1;\n this.initialiseRowNodes(loadingRowsToShow);\n }\n this.scheduleLoad();\n this.fireStoreUpdatedEvent();\n }\n retryLoads() {\n if (this.getState() === RowNodeBlock.STATE_FAILED) {\n this.initialiseRowNodes(1);\n this.scheduleLoad();\n }\n this.forEachChildStoreShallow((store) => store.retryLoads());\n }\n scheduleLoad() {\n this.setStateWaitingToLoad();\n this.rowNodeBlockLoader.checkBlockToLoad();\n }\n // gets called 1) row count changed 2) cache purged 3) items inserted\n fireStoreUpdatedEvent() {\n const event = {\n type: Events19.EVENT_STORE_UPDATED\n };\n this.eventService.dispatchEvent(event);\n }\n getRowCount() {\n return this.nodesAfterSort.length;\n }\n getTopLevelRowDisplayedIndex(topLevelIndex) {\n const rowNode = this.nodesAfterSort[topLevelIndex];\n return rowNode.rowIndex;\n }\n isLastRowIndexKnown() {\n return this.getState() == RowNodeBlock.STATE_LOADED;\n }\n getRowNodesInRange(firstInRange, lastInRange) {\n const result = [];\n let inActiveRange = false;\n if (_57.missing(firstInRange)) {\n inActiveRange = true;\n }\n this.nodesAfterSort.forEach((rowNode) => {\n const hitFirstOrLast = rowNode === firstInRange || rowNode === lastInRange;\n if (inActiveRange || hitFirstOrLast) {\n result.push(rowNode);\n }\n if (hitFirstOrLast) {\n inActiveRange = !inActiveRange;\n }\n });\n const invalidRange = inActiveRange;\n return invalidRange ? [] : result;\n }\n getStoreBounds() {\n return {\n topPx: this.topPx,\n heightPx: this.heightPx\n };\n }\n};\n__decorateClass14([\n Autowired66(\"ssrmStoreUtils\")\n], FullStore.prototype, \"storeUtils\", 2);\n__decorateClass14([\n Autowired66(\"ssrmBlockUtils\")\n], FullStore.prototype, \"blockUtils\", 2);\n__decorateClass14([\n Autowired66(\"columnModel\")\n], FullStore.prototype, \"columnModel\", 2);\n__decorateClass14([\n Autowired66(\"rowNodeBlockLoader\")\n], FullStore.prototype, \"rowNodeBlockLoader\", 2);\n__decorateClass14([\n Autowired66(\"rowNodeSorter\")\n], FullStore.prototype, \"rowNodeSorter\", 2);\n__decorateClass14([\n Autowired66(\"sortController\")\n], FullStore.prototype, \"sortController\", 2);\n__decorateClass14([\n Autowired66(\"selectionService\")\n], FullStore.prototype, \"selectionService\", 2);\n__decorateClass14([\n Autowired66(\"ssrmNodeManager\")\n], FullStore.prototype, \"nodeManager\", 2);\n__decorateClass14([\n Autowired66(\"filterManager\")\n], FullStore.prototype, \"filterManager\", 2);\n__decorateClass14([\n Autowired66(\"ssrmTransactionManager\")\n], FullStore.prototype, \"transactionManager\", 2);\n__decorateClass14([\n Autowired66(\"rowModel\")\n], FullStore.prototype, \"serverSideRowModel\", 2);\n__decorateClass14([\n PostConstruct64\n], FullStore.prototype, \"postConstruct\", 1);\n__decorateClass14([\n PreDestroy5\n], FullStore.prototype, \"destroyRowNodes\", 1);\nvar MultiIndexMap = class {\n constructor(...indexes) {\n if (indexes.length < 1) {\n throw new Error(\"AG Grid: At least one index must be provided.\");\n }\n this.indexes = indexes;\n this.maps = new Map(\n this.indexes.map((index) => [index, /* @__PURE__ */ new Map()])\n );\n }\n getSize() {\n return this.maps.get(this.indexes[0]).size;\n }\n getBy(index, key) {\n const map = this.maps.get(index);\n if (!map) {\n throw new Error(`AG Grid: ${String(index)} not found`);\n }\n return map.get(key);\n }\n set(item) {\n this.indexes.forEach((index) => {\n const map = this.maps.get(index);\n if (!map) {\n throw new Error(`AG Grid: ${String(index)} not found`);\n }\n map.set(item[index], item);\n });\n }\n delete(item) {\n this.indexes.forEach((index) => {\n const map = this.maps.get(index);\n if (!map) {\n throw new Error(`AG Grid: ${String(index)} not found`);\n }\n map.delete(item[index]);\n });\n }\n clear() {\n this.maps.forEach((map) => map.clear());\n }\n getIterator(index) {\n const map = this.maps.get(index);\n if (!map) {\n throw new Error(`AG Grid: ${String(index)} not found`);\n }\n return map.values();\n }\n forEach(callback) {\n const iterator = this.getIterator(this.indexes[0]);\n let pointer;\n while (pointer = iterator.next()) {\n if (pointer.done)\n break;\n callback(pointer.value);\n }\n }\n find(callback) {\n const iterator = this.getIterator(this.indexes[0]);\n let pointer;\n while (pointer = iterator.next()) {\n if (pointer.done)\n break;\n if (callback(pointer.value)) {\n return pointer.value;\n }\n }\n }\n filter(predicate) {\n const iterator = this.getIterator(this.indexes[0]);\n let pointer;\n const result = [];\n while (pointer = iterator.next()) {\n if (pointer.done)\n break;\n if (predicate(pointer.value)) {\n result.push(pointer.value);\n }\n }\n return result;\n }\n};\nvar LazyBlockLoadingService = class extends BeanStub21 {\n constructor() {\n super(...arguments);\n this.cacheLoadingNodesMap = /* @__PURE__ */ new Map();\n this.isCheckQueued = false;\n this.nextBlockToLoad = void 0;\n }\n init() {\n this.addManagedListener(this.rowNodeBlockLoader, RowNodeBlockLoader2.BLOCK_LOADED_EVENT, () => this.queueLoadCheck());\n }\n subscribe(cache) {\n this.cacheLoadingNodesMap.set(cache, /* @__PURE__ */ new Set());\n }\n unsubscribe(cache) {\n this.cacheLoadingNodesMap.delete(cache);\n }\n /**\n * Queues a microtask to check if any blocks need to be loaded.\n */\n queueLoadCheck() {\n if (this.isCheckQueued) {\n return;\n }\n this.isCheckQueued = true;\n window.queueMicrotask(() => {\n this.queueLoadAction();\n this.isCheckQueued = false;\n });\n }\n queueLoadAction() {\n const nextBlockToLoad = this.getBlockToLoad();\n if (!nextBlockToLoad) {\n return;\n }\n const isSameBlock = this.nextBlockToLoad && this.nextBlockToLoad.cache === nextBlockToLoad.cache && this.nextBlockToLoad.index === nextBlockToLoad.index;\n if (isSameBlock) {\n return;\n }\n if (!this.nextBlockToLoad || !isSameBlock) {\n this.nextBlockToLoad = nextBlockToLoad;\n window.clearTimeout(this.loaderTimeout);\n const startRow = Number(this.nextBlockToLoad.index);\n const cache = this.nextBlockToLoad.cache;\n const endRow = nextBlockToLoad.index + nextBlockToLoad.cache.getBlockSize();\n this.loaderTimeout = window.setTimeout(() => {\n if (!cache.isAlive()) {\n return;\n }\n this.loaderTimeout = void 0;\n this.attemptLoad(cache, startRow, endRow);\n this.nextBlockToLoad = void 0;\n }, this.gos.get(\"blockLoadDebounceMillis\"));\n }\n }\n attemptLoad(cache, start, end) {\n const availableLoadingCount = this.rowNodeBlockLoader.getAvailableLoadingCount();\n if (availableLoadingCount != null && availableLoadingCount === 0) {\n return;\n }\n ;\n this.rowNodeBlockLoader.registerLoads(1);\n this.executeLoad(cache, start, end);\n this.queueLoadCheck();\n }\n executeLoad(cache, startRow, endRow) {\n var _a;\n const ssrmParams = cache.getSsrmParams();\n const request = {\n startRow,\n endRow,\n rowGroupCols: ssrmParams.rowGroupCols,\n valueCols: ssrmParams.valueCols,\n pivotCols: ssrmParams.pivotCols,\n pivotMode: ssrmParams.pivotMode,\n groupKeys: cache.store.getParentNode().getGroupKeys(),\n filterModel: ssrmParams.filterModel,\n sortModel: ssrmParams.sortModel\n };\n const loadingNodes = this.cacheLoadingNodesMap.get(cache);\n const removeNodesFromLoadingMap = () => {\n for (let i = 0; i < endRow - startRow; i++) {\n loadingNodes.delete(startRow + i);\n }\n };\n const addNodesToLoadingMap = () => {\n for (let i = 0; i < endRow - startRow; i++) {\n loadingNodes.add(startRow + i);\n }\n };\n const success = (params2) => {\n this.rowNodeBlockLoader.loadComplete();\n cache.onLoadSuccess(startRow, endRow - startRow, params2);\n removeNodesFromLoadingMap();\n };\n const fail = () => {\n this.rowNodeBlockLoader.loadComplete();\n cache.onLoadFailed(startRow, endRow - startRow);\n removeNodesFromLoadingMap();\n };\n const params = this.gos.addGridCommonParams({\n request,\n success,\n fail,\n parentNode: cache.store.getParentNode()\n });\n addNodesToLoadingMap();\n (_a = cache.getSsrmParams().datasource) == null ? void 0 : _a.getRows(params);\n }\n getBlockToLoad() {\n var _a;\n const firstRowInViewport = this.rowRenderer.getFirstVirtualRenderedRow();\n const lastRowInViewport = this.rowRenderer.getLastVirtualRenderedRow();\n for (let i = firstRowInViewport; i <= lastRowInViewport; i++) {\n const row = this.rowModel.getRow(i);\n if (!row) {\n continue;\n }\n const store = row.parent && row.parent.childStore;\n if (!store || !(store instanceof LazyStore)) {\n continue;\n }\n const cache = store.getCache();\n const lazyNode = cache.getNodes().getBy(\"node\", row);\n if (!lazyNode) {\n continue;\n }\n const loadingNodes = this.cacheLoadingNodesMap.get(cache);\n if (loadingNodes == null ? void 0 : loadingNodes.has(lazyNode.index)) {\n continue;\n }\n if (row.__needsRefreshWhenVisible || row.stub && !row.failedLoad) {\n return {\n cache,\n index: cache.getBlockStartIndex(lazyNode.index)\n };\n }\n }\n let cacheToRefresh = null;\n let nodeToRefresh = null;\n let nodeToRefreshDist = Number.MAX_SAFE_INTEGER;\n for (const cache of this.cacheLoadingNodesMap.keys()) {\n const nodesToRefresh = cache.getNodesToRefresh();\n nodesToRefresh.forEach((node) => {\n if (node.rowIndex == null) {\n nodeToRefresh = node;\n cacheToRefresh = cache;\n return;\n }\n const lazyNode = cache.getNodes().getBy(\"node\", node);\n if (!lazyNode) {\n return;\n }\n const loadingNodes = this.cacheLoadingNodesMap.get(cache);\n if (loadingNodes == null ? void 0 : loadingNodes.has(lazyNode.index)) {\n return;\n }\n const distToViewportTop = Math.abs(firstRowInViewport - node.rowIndex);\n const distToViewportBottom = Math.abs(node.rowIndex - lastRowInViewport);\n if (distToViewportTop < nodeToRefreshDist) {\n nodeToRefresh = node;\n nodeToRefreshDist = distToViewportTop;\n cacheToRefresh = cache;\n }\n if (distToViewportBottom < nodeToRefreshDist) {\n nodeToRefresh = node;\n nodeToRefreshDist = distToViewportBottom;\n cacheToRefresh = cache;\n }\n });\n }\n if (!cacheToRefresh) {\n return void 0;\n }\n const lazyCache = cacheToRefresh;\n const lazyIndex = (_a = lazyCache.getNodes().getBy(\"node\", nodeToRefresh)) == null ? void 0 : _a.index;\n return lazyIndex == null ? void 0 : {\n cache: lazyCache,\n index: lazyCache.getBlockStartIndex(lazyIndex)\n };\n }\n isRowLoading(cache, index) {\n var _a, _b;\n return (_b = (_a = this.cacheLoadingNodesMap.get(cache)) == null ? void 0 : _a.has(index)) != null ? _b : false;\n }\n};\nLazyBlockLoadingService.DEFAULT_BLOCK_SIZE = 100;\n__decorateClass14([\n Autowired216(\"rowNodeBlockLoader\")\n], LazyBlockLoadingService.prototype, \"rowNodeBlockLoader\", 2);\n__decorateClass14([\n Autowired216(\"rowRenderer\")\n], LazyBlockLoadingService.prototype, \"rowRenderer\", 2);\n__decorateClass14([\n Autowired216(\"rowModel\")\n], LazyBlockLoadingService.prototype, \"rowModel\", 2);\n__decorateClass14([\n PostConstruct215\n], LazyBlockLoadingService.prototype, \"init\", 1);\nLazyBlockLoadingService = __decorateClass14([\n Bean14(\"lazyBlockLoadingService\")\n], LazyBlockLoadingService);\nvar LazyCache = class extends BeanStub28 {\n constructor(store, numberOfRows, storeParams) {\n super();\n this.live = true;\n this.removedNodeCache = /* @__PURE__ */ new Map();\n this.store = store;\n this.numberOfRows = numberOfRows;\n this.isLastRowKnown = false;\n this.storeParams = storeParams;\n }\n init() {\n this.lazyBlockLoadingService.subscribe(this);\n this.nodeMap = new MultiIndexMap(\"index\", \"id\", \"node\");\n this.nodeDisplayIndexMap = /* @__PURE__ */ new Map();\n this.nodesToRefresh = /* @__PURE__ */ new Set();\n this.defaultNodeIdPrefix = this.blockUtils.createNodeIdPrefix(this.store.getParentNode());\n this.getRowIdFunc = this.gos.getCallback(\"getRowId\");\n this.isMasterDetail = this.gos.get(\"masterDetail\");\n }\n destroyRowNodes() {\n this.lazyBlockLoadingService.unsubscribe(this);\n this.numberOfRows = 0;\n this.nodeMap.forEach((node) => this.blockUtils.destroyRowNode(node.node));\n this.nodeMap.clear();\n this.nodeDisplayIndexMap.clear();\n this.nodesToRefresh.clear();\n this.live = false;\n }\n /**\n * Get the row node for a specific display index from this store\n * @param displayIndex the display index of the node to find\n * @returns undefined if the node is not in the store bounds, otherwise will always return a node\n */\n getRowByDisplayIndex(displayIndex) {\n var _a, _b, _c, _d;\n if (!this.store.isDisplayIndexInStore(displayIndex)) {\n return void 0;\n }\n const node = this.nodeDisplayIndexMap.get(displayIndex);\n if (node) {\n if (node.stub || node.__needsRefreshWhenVisible) {\n this.lazyBlockLoadingService.queueLoadCheck();\n }\n return node;\n }\n if (displayIndex === this.store.getDisplayIndexStart()) {\n return this.createStubNode(0, displayIndex);\n }\n const contiguouslyPreviousNode = this.nodeDisplayIndexMap.get(displayIndex - 1);\n if (contiguouslyPreviousNode) {\n if (this.isMasterDetail && contiguouslyPreviousNode.master && contiguouslyPreviousNode.expanded) {\n return contiguouslyPreviousNode.detailNode;\n }\n if (contiguouslyPreviousNode.expanded && ((_a = contiguouslyPreviousNode.childStore) == null ? void 0 : _a.isDisplayIndexInStore(displayIndex))) {\n return (_b = contiguouslyPreviousNode.childStore) == null ? void 0 : _b.getRowUsingDisplayIndex(displayIndex);\n }\n const lazyCacheNode = this.nodeMap.getBy(\"node\", contiguouslyPreviousNode);\n return this.createStubNode(lazyCacheNode.index + 1, displayIndex);\n }\n const adjacentNodes = this.getSurroundingNodesByDisplayIndex(displayIndex);\n if (adjacentNodes == null) {\n const storeIndexFromEndIndex2 = this.store.getRowCount() - (this.store.getDisplayIndexEnd() - displayIndex);\n return this.createStubNode(storeIndexFromEndIndex2, displayIndex);\n }\n const { previousNode, nextNode } = adjacentNodes;\n if (previousNode && previousNode.node.expanded && ((_c = previousNode.node.childStore) == null ? void 0 : _c.isDisplayIndexInStore(displayIndex))) {\n return (_d = previousNode.node.childStore) == null ? void 0 : _d.getRowUsingDisplayIndex(displayIndex);\n }\n if (nextNode) {\n const displayIndexDiff = nextNode.node.rowIndex - displayIndex;\n const newStoreIndex = nextNode.index - displayIndexDiff;\n return this.createStubNode(newStoreIndex, displayIndex);\n }\n const storeIndexFromEndIndex = this.store.getRowCount() - (this.store.getDisplayIndexEnd() - displayIndex);\n return this.createStubNode(storeIndexFromEndIndex, displayIndex);\n }\n /**\n * Used for creating and positioning a stub node without firing a store updated event\n */\n createStubNode(storeIndex, displayIndex) {\n const rowBounds = this.store.getRowBounds(displayIndex);\n const newNode = this.createRowAtIndex(storeIndex, null, (node) => {\n node.setRowIndex(displayIndex);\n node.setRowTop(rowBounds.rowTop);\n this.nodeDisplayIndexMap.set(displayIndex, node);\n });\n this.lazyBlockLoadingService.queueLoadCheck();\n return newNode;\n }\n /**\n * @param index The row index relative to this store\n * @returns A rowNode at the given store index\n */\n getRowByStoreIndex(index) {\n var _a;\n return (_a = this.nodeMap.getBy(\"index\", index)) == null ? void 0 : _a.node;\n }\n /**\n * Given a number of rows, skips through the given sequence & row top reference (using default row height)\n * @param numberOfRowsToSkip number of rows to skip over in the given sequence\n * @param displayIndexSeq the sequence in which to skip\n * @param nextRowTop the row top reference in which to skip\n */\n skipDisplayIndexes(numberOfRowsToSkip, displayIndexSeq, nextRowTop) {\n if (numberOfRowsToSkip === 0) {\n return;\n }\n const defaultRowHeight = this.gos.getRowHeightAsNumber();\n displayIndexSeq.skip(numberOfRowsToSkip);\n nextRowTop.value += numberOfRowsToSkip * defaultRowHeight;\n }\n /**\n * @param displayIndexSeq the number sequence for generating the display index of each row\n * @param nextRowTop an object containing the next row top value intended to be modified by ref per row\n */\n setDisplayIndexes(displayIndexSeq, nextRowTop) {\n this.nodeDisplayIndexMap.clear();\n const orderedMap = {};\n this.nodeMap.forEach((lazyNode) => {\n orderedMap[lazyNode.index] = lazyNode.node;\n });\n let lastIndex = -1;\n for (const stringIndex in orderedMap) {\n const node = orderedMap[stringIndex];\n const numericIndex = Number(stringIndex);\n const numberOfRowsToSkip2 = numericIndex - 1 - lastIndex;\n this.skipDisplayIndexes(numberOfRowsToSkip2, displayIndexSeq, nextRowTop);\n this.blockUtils.setDisplayIndex(node, displayIndexSeq, nextRowTop);\n this.nodeDisplayIndexMap.set(node.rowIndex, node);\n lastIndex = numericIndex;\n }\n const numberOfRowsToSkip = this.numberOfRows - 1 - lastIndex;\n this.skipDisplayIndexes(numberOfRowsToSkip, displayIndexSeq, nextRowTop);\n this.purgeExcessRows();\n }\n getRowCount() {\n return this.numberOfRows;\n }\n setRowCount(rowCount, isLastRowIndexKnown) {\n if (rowCount < 0) {\n throw new Error(\"AG Grid: setRowCount can only accept a positive row count.\");\n }\n this.numberOfRows = rowCount;\n if (isLastRowIndexKnown != null) {\n this.isLastRowKnown = isLastRowIndexKnown;\n if (isLastRowIndexKnown === false) {\n this.numberOfRows += 1;\n }\n }\n this.fireStoreUpdatedEvent();\n }\n getNodes() {\n return this.nodeMap;\n }\n getNodeCachedByDisplayIndex(displayIndex) {\n var _a;\n return (_a = this.nodeDisplayIndexMap.get(displayIndex)) != null ? _a : null;\n }\n getNodesToRefresh() {\n return this.nodesToRefresh;\n }\n /**\n * @returns the previous and next loaded row nodes surrounding the given display index\n */\n getSurroundingNodesByDisplayIndex(displayIndex) {\n let nextNode;\n let previousNode;\n this.nodeMap.forEach((lazyNode) => {\n if (displayIndex > lazyNode.node.rowIndex) {\n if (previousNode == null || previousNode.node.rowIndex < lazyNode.node.rowIndex) {\n previousNode = lazyNode;\n }\n return;\n }\n if (nextNode == null || nextNode.node.rowIndex > lazyNode.node.rowIndex) {\n nextNode = lazyNode;\n return;\n }\n });\n if (!previousNode && !nextNode)\n return null;\n return { previousNode, nextNode };\n }\n /**\n * Get or calculate the display index for a given store index\n * @param storeIndex the rows index within this store\n * @returns the rows visible display index relative to the grid\n */\n getDisplayIndexFromStoreIndex(storeIndex) {\n var _a, _b;\n const nodeAtIndex = this.nodeMap.getBy(\"index\", storeIndex);\n if (nodeAtIndex) {\n return nodeAtIndex.node.rowIndex;\n }\n let nextNode;\n let previousNode;\n this.nodeMap.forEach((lazyNode) => {\n if (storeIndex > lazyNode.index) {\n if (previousNode == null || previousNode.index < lazyNode.index) {\n previousNode = lazyNode;\n }\n return;\n }\n if (nextNode == null || nextNode.index > lazyNode.index) {\n nextNode = lazyNode;\n return;\n }\n });\n if (!nextNode) {\n return this.store.getDisplayIndexEnd() - (this.numberOfRows - storeIndex);\n }\n if (!previousNode) {\n return this.store.getDisplayIndexStart() + storeIndex;\n }\n const storeIndexDiff = storeIndex - previousNode.index;\n const previousDisplayIndex = (_b = (_a = previousNode.node.childStore) == null ? void 0 : _a.getDisplayIndexEnd()) != null ? _b : previousNode.node.rowIndex;\n return previousDisplayIndex + storeIndexDiff;\n }\n /**\n * Creates a new row and inserts it at the given index\n * @param atStoreIndex the node index relative to this store\n * @param data the data object to populate the node with \n * @returns the new row node\n */\n createRowAtIndex(atStoreIndex, data, createNodeCallback) {\n var _a, _b;\n const lazyNode = this.nodeMap.getBy(\"index\", atStoreIndex);\n if (lazyNode) {\n const { node } = lazyNode;\n node.__needsRefreshWhenVisible = false;\n if (this.doesNodeMatch(data, node)) {\n this.blockUtils.updateDataIntoRowNode(node, data);\n this.nodesToRefresh.delete(node);\n return node;\n }\n if (this.getRowIdFunc == null && node.hasChildren() && node.expanded) {\n this.nodesToRefresh.delete(node);\n return node;\n }\n this.destroyRowAtIndex(atStoreIndex);\n }\n if (data && this.getRowIdFunc != null) {\n const id = this.getRowId(data);\n const deletedNode = id && ((_a = this.removedNodeCache) == null ? void 0 : _a.get(id));\n if (deletedNode) {\n (_b = this.removedNodeCache) == null ? void 0 : _b.delete(id);\n this.blockUtils.updateDataIntoRowNode(deletedNode, data);\n this.nodeMap.set({\n id: deletedNode.id,\n node: deletedNode,\n index: atStoreIndex\n });\n return deletedNode;\n }\n const lazyNode2 = this.nodeMap.getBy(\"id\", id);\n if (lazyNode2) {\n this.nodeMap.delete(lazyNode2);\n const { node, index } = lazyNode2;\n this.blockUtils.updateDataIntoRowNode(node, data);\n this.nodeMap.set({\n id: node.id,\n node,\n index: atStoreIndex\n });\n this.nodesToRefresh.delete(node);\n if (this.getBlockStartIndex(index) === this.getBlockStartIndex(atStoreIndex)) {\n return node;\n }\n this.markBlockForVerify(index);\n return node;\n }\n }\n const newNode = this.blockUtils.createRowNode(this.store.getRowDetails());\n if (data != null) {\n const defaultId = this.getPrefixedId(this.store.getIdSequence().next());\n this.blockUtils.setDataIntoRowNode(newNode, data, defaultId, void 0);\n this.serverSideRowModel.setPaused(true);\n this.blockUtils.checkOpenByDefault(newNode);\n this.serverSideRowModel.setPaused(false);\n this.nodeManager.addRowNode(newNode);\n }\n this.nodeMap.set({\n id: newNode.id,\n node: newNode,\n index: atStoreIndex\n });\n if (createNodeCallback) {\n createNodeCallback(newNode);\n }\n return newNode;\n }\n getBlockStates() {\n const blockCounts = {};\n const blockStates = {};\n this.nodeMap.forEach(({ node, index }) => {\n var _a;\n const blockStart = this.getBlockStartIndex(index);\n if (!node.stub && !node.failedLoad) {\n blockCounts[blockStart] = ((_a = blockCounts[blockStart]) != null ? _a : 0) + 1;\n }\n let rowState = \"loaded\";\n if (node.failedLoad) {\n rowState = \"failed\";\n } else if (this.lazyBlockLoadingService.isRowLoading(this, blockStart)) {\n rowState = \"loading\";\n } else if (this.nodesToRefresh.has(node) || node.stub) {\n rowState = \"needsLoading\";\n }\n if (!blockStates[blockStart]) {\n blockStates[blockStart] = /* @__PURE__ */ new Set();\n }\n blockStates[blockStart].add(rowState);\n });\n const statePriorityMap = {\n loading: 4,\n failed: 3,\n needsLoading: 2,\n loaded: 1\n };\n const blockPrefix = this.blockUtils.createNodeIdPrefix(this.store.getParentNode());\n const results = {};\n Object.entries(blockStates).forEach(([blockStart, uniqueStates]) => {\n var _a;\n const sortedStates = [...uniqueStates].sort((a, b) => {\n var _a2, _b;\n return ((_a2 = statePriorityMap[a]) != null ? _a2 : 0) - ((_b = statePriorityMap[b]) != null ? _b : 0);\n });\n const priorityState = sortedStates[0];\n const blockNumber = Number(blockStart) / this.getBlockSize();\n const blockId = blockPrefix ? `${blockPrefix}-${blockNumber}` : String(blockNumber);\n results[blockId] = {\n blockNumber,\n startRow: Number(blockStart),\n endRow: Number(blockStart) + this.getBlockSize(),\n pageStatus: priorityState,\n loadedRowCount: (_a = blockCounts[blockStart]) != null ? _a : 0\n };\n });\n return results;\n }\n destroyRowAtIndex(atStoreIndex) {\n const lazyNode = this.nodeMap.getBy(\"index\", atStoreIndex);\n if (!lazyNode) {\n return;\n }\n this.nodeMap.delete(lazyNode);\n this.nodeDisplayIndexMap.delete(lazyNode.node.rowIndex);\n if (this.nodesToRefresh.size > 0) {\n this.removedNodeCache.set(lazyNode.node.id, lazyNode.node);\n } else {\n this.blockUtils.destroyRowNode(lazyNode.node);\n }\n this.nodesToRefresh.delete(lazyNode.node);\n }\n getSsrmParams() {\n return this.store.getSsrmParams();\n }\n /**\n * @param id the base id to be prefixed\n * @returns a node id with prefix if required\n */\n getPrefixedId(id) {\n if (this.defaultNodeIdPrefix) {\n return this.defaultNodeIdPrefix + \"-\" + id;\n } else {\n return id.toString();\n }\n }\n markBlockForVerify(rowIndex) {\n const [start, end] = this.getBlockBounds(rowIndex);\n const lazyNodesInRange = this.nodeMap.filter((lazyNode) => lazyNode.index >= start && lazyNode.index < end);\n lazyNodesInRange.forEach(({ node }) => {\n node.__needsRefreshWhenVisible = true;\n });\n }\n doesNodeMatch(data, node) {\n if (node.stub) {\n return false;\n }\n if (this.getRowIdFunc != null) {\n const id = this.getRowId(data);\n return node.id === id;\n }\n return node.data === data;\n }\n /**\n * Deletes any stub nodes not within the given range\n */\n purgeStubsOutsideOfViewport() {\n const firstRow = this.api.getFirstDisplayedRowIndex();\n const lastRow = this.api.getLastDisplayedRowIndex();\n const firstRowBlockStart = this.getBlockStartIndex(firstRow);\n const [_94, lastRowBlockEnd] = this.getBlockBounds(lastRow);\n this.nodeMap.forEach((lazyNode) => {\n if (this.lazyBlockLoadingService.isRowLoading(this, lazyNode.index) || lazyNode.node.failedLoad) {\n return;\n }\n if (lazyNode.node.stub && (lazyNode.index < firstRowBlockStart || lazyNode.index > lastRowBlockEnd)) {\n this.destroyRowAtIndex(lazyNode.index);\n }\n });\n }\n getBlocksDistanceFromRow(nodes, otherDisplayIndex) {\n const blockDistanceToMiddle = {};\n nodes.forEach(({ node, index }) => {\n const [blockStart, blockEnd] = this.getBlockBounds(index);\n if (blockStart in blockDistanceToMiddle) {\n return;\n }\n const distStart = Math.abs(node.rowIndex - otherDisplayIndex);\n let distEnd;\n const lastLazyNode = this.nodeMap.getBy(\"index\", [blockEnd - 1]);\n if (lastLazyNode)\n distEnd = Math.abs(lastLazyNode.node.rowIndex - otherDisplayIndex);\n const farthest = distEnd == null || distStart < distEnd ? distStart : distEnd;\n blockDistanceToMiddle[blockStart] = farthest;\n });\n return Object.entries(blockDistanceToMiddle);\n }\n purgeExcessRows() {\n var _a;\n this.purgeStubsOutsideOfViewport();\n if (this.store.getDisplayIndexEnd() == null || this.storeParams.maxBlocksInCache == null) {\n return;\n }\n const firstRowInViewport = this.api.getFirstDisplayedRowIndex();\n const lastRowInViewport = this.api.getLastDisplayedRowIndex();\n const allLoadedBlocks = /* @__PURE__ */ new Set();\n const blocksInViewport = /* @__PURE__ */ new Set();\n this.nodeMap.forEach(({ index, node }) => {\n const blockStart = this.getBlockStartIndex(index);\n allLoadedBlocks.add(blockStart);\n const isInViewport = node.rowIndex >= firstRowInViewport && node.rowIndex <= lastRowInViewport;\n if (isInViewport) {\n blocksInViewport.add(blockStart);\n }\n });\n const numberOfBlocksToRetain = Math.max(blocksInViewport.size, (_a = this.storeParams.maxBlocksInCache) != null ? _a : 0);\n const loadedBlockCount = allLoadedBlocks.size;\n const blocksToRemove = loadedBlockCount - numberOfBlocksToRetain;\n if (blocksToRemove <= 0) {\n return;\n }\n let firstRowBlockStart = Number.MAX_SAFE_INTEGER;\n let lastRowBlockStart = Number.MIN_SAFE_INTEGER;\n blocksInViewport.forEach((blockStart) => {\n if (firstRowBlockStart > blockStart) {\n firstRowBlockStart = blockStart;\n }\n if (lastRowBlockStart < blockStart) {\n lastRowBlockStart = blockStart;\n }\n });\n const disposableNodes = this.nodeMap.filter(({ node, index }) => {\n const rowBlockStart = this.getBlockStartIndex(index);\n const rowBlockInViewport = rowBlockStart >= firstRowBlockStart && rowBlockStart <= lastRowBlockStart;\n return !rowBlockInViewport && !this.isNodeCached(node);\n });\n if (disposableNodes.length === 0) {\n return;\n }\n const midViewportRow = firstRowInViewport + (lastRowInViewport - firstRowInViewport) / 2;\n const blockDistanceArray = this.getBlocksDistanceFromRow(disposableNodes, midViewportRow);\n const blockSize = this.getBlockSize();\n blockDistanceArray.sort((a, b) => Math.sign(b[1] - a[1]));\n for (let i = 0; i < Math.min(blocksToRemove, blockDistanceArray.length); i++) {\n const blockStart = Number(blockDistanceArray[i][0]);\n for (let x = blockStart; x < blockStart + blockSize; x++) {\n const lazyNode = this.nodeMap.getBy(\"index\", x);\n if (!lazyNode || this.isNodeCached(lazyNode.node)) {\n continue;\n }\n this.destroyRowAtIndex(x);\n }\n }\n }\n isNodeFocused(node) {\n const focusedCell = this.focusService.getFocusCellToUseAfterRefresh();\n if (!focusedCell) {\n return false;\n }\n if (focusedCell.rowPinned != null) {\n return false;\n }\n const hasFocus = focusedCell.rowIndex === node.rowIndex;\n return hasFocus;\n }\n isNodeCached(node) {\n return node.isExpandable() && node.expanded || this.isNodeFocused(node);\n }\n extractDuplicateIds(rows) {\n if (this.getRowIdFunc == null) {\n return [];\n }\n const newIds = /* @__PURE__ */ new Set();\n const duplicates = /* @__PURE__ */ new Set();\n rows.forEach((data) => {\n const id = this.getRowId(data);\n if (newIds.has(id)) {\n duplicates.add(id);\n return;\n }\n newIds.add(id);\n });\n return [...duplicates];\n }\n onLoadSuccess(firstRowIndex, numberOfRowsExpected, response) {\n if (!this.live)\n return;\n const info = response.groupLevelInfo;\n this.store.setStoreInfo(info);\n if (this.getRowIdFunc != null) {\n const duplicates = this.extractDuplicateIds(response.rowData);\n if (duplicates.length > 0) {\n const duplicateIdText = duplicates.join(\", \");\n console.warn(`AG Grid: Unable to display rows as duplicate row ids (${duplicateIdText}) were returned by the getRowId callback. Please modify the getRowId callback to provide unique ids.`);\n this.onLoadFailed(firstRowIndex, numberOfRowsExpected);\n return;\n }\n }\n if (response.pivotResultFields) {\n this.serverSideRowModel.generateSecondaryColumns(response.pivotResultFields);\n }\n const wasRefreshing = this.nodesToRefresh.size > 0;\n response.rowData.forEach((data, responseRowIndex) => {\n var _a;\n const rowIndex = firstRowIndex + responseRowIndex;\n const nodeFromCache = this.nodeMap.getBy(\"index\", rowIndex);\n if ((_a = nodeFromCache == null ? void 0 : nodeFromCache.node) == null ? void 0 : _a.stub) {\n this.createRowAtIndex(rowIndex, data);\n return;\n }\n if (nodeFromCache && this.doesNodeMatch(data, nodeFromCache.node)) {\n this.blockUtils.updateDataIntoRowNode(nodeFromCache.node, data);\n this.nodesToRefresh.delete(nodeFromCache.node);\n nodeFromCache.node.__needsRefreshWhenVisible = false;\n return;\n }\n this.createRowAtIndex(rowIndex, data);\n });\n if (response.rowCount != void 0 && response.rowCount !== -1) {\n this.numberOfRows = response.rowCount;\n this.isLastRowKnown = true;\n } else if (numberOfRowsExpected > response.rowData.length) {\n this.numberOfRows = firstRowIndex + response.rowData.length;\n this.isLastRowKnown = true;\n } else if (!this.isLastRowKnown) {\n const lastInferredRow = firstRowIndex + response.rowData.length + 1;\n if (lastInferredRow > this.numberOfRows) {\n this.numberOfRows = lastInferredRow;\n }\n }\n if (this.isLastRowKnown) {\n const lazyNodesAfterStoreEnd = this.nodeMap.filter((lazyNode) => lazyNode.index >= this.numberOfRows);\n lazyNodesAfterStoreEnd.forEach((lazyNode) => this.destroyRowAtIndex(lazyNode.index));\n }\n this.fireStoreUpdatedEvent();\n const finishedRefreshing = this.nodesToRefresh.size === 0;\n if (wasRefreshing && finishedRefreshing) {\n this.fireRefreshFinishedEvent();\n }\n }\n fireRefreshFinishedEvent() {\n const finishedRefreshing = this.nodesToRefresh.size === 0;\n if (!finishedRefreshing) {\n return;\n }\n this.removedNodeCache.forEach((node) => {\n this.blockUtils.destroyRowNode(node);\n });\n this.removedNodeCache = /* @__PURE__ */ new Map();\n this.store.fireRefreshFinishedEvent();\n }\n /**\n * @returns true if all rows are loaded\n */\n isStoreFullyLoaded() {\n const knowsSize = this.isLastRowKnown;\n const hasCorrectRowCount = this.nodeMap.getSize() === this.numberOfRows;\n if (!knowsSize || !hasCorrectRowCount) {\n return;\n }\n if (this.nodesToRefresh.size > 0) {\n return;\n }\n let index = -1;\n const firstOutOfPlaceNode = this.nodeMap.find((lazyNode) => {\n index += 1;\n if (lazyNode.index !== index) {\n return true;\n }\n if (lazyNode.node.__needsRefreshWhenVisible) {\n return true;\n }\n if (lazyNode.node.stub) {\n return true;\n }\n return false;\n });\n return firstOutOfPlaceNode == null;\n }\n isLastRowIndexKnown() {\n return this.isLastRowKnown;\n }\n onLoadFailed(firstRowIndex, numberOfRowsExpected) {\n var _a;\n if (!this.live)\n return;\n const wasRefreshing = this.nodesToRefresh.size > 0;\n for (let i = firstRowIndex; i < firstRowIndex + numberOfRowsExpected && i < this.getRowCount(); i++) {\n let { node } = (_a = this.nodeMap.getBy(\"index\", i)) != null ? _a : {};\n if (node) {\n this.nodesToRefresh.delete(node);\n }\n if (!node || !node.stub) {\n if (node && !node.stub) {\n this.destroyRowAtIndex(i);\n }\n node = this.createRowAtIndex(i);\n }\n node.__needsRefreshWhenVisible = false;\n node.failedLoad = true;\n }\n const finishedRefreshing = this.nodesToRefresh.size === 0;\n if (wasRefreshing && finishedRefreshing) {\n this.fireRefreshFinishedEvent();\n }\n this.fireStoreUpdatedEvent();\n }\n markNodesForRefresh() {\n this.nodeMap.forEach((lazyNode) => {\n if (lazyNode.node.stub && !lazyNode.node.failedLoad) {\n return;\n }\n this.nodesToRefresh.add(lazyNode.node);\n });\n this.lazyBlockLoadingService.queueLoadCheck();\n if (this.isLastRowKnown && this.numberOfRows === 0) {\n this.numberOfRows = 1;\n this.isLastRowKnown = false;\n this.fireStoreUpdatedEvent();\n }\n }\n isNodeInCache(id) {\n return !!this.nodeMap.getBy(\"id\", id);\n }\n // gets called 1) row count changed 2) cache purged 3) items inserted\n fireStoreUpdatedEvent() {\n if (!this.live) {\n return;\n }\n this.store.fireStoreUpdatedEvent();\n }\n getRowId(data) {\n if (this.getRowIdFunc == null) {\n return null;\n }\n const { level } = this.store.getRowDetails();\n const parentKeys = this.store.getParentNode().getGroupKeys();\n const id = this.getRowIdFunc({\n data,\n parentKeys: parentKeys.length > 0 ? parentKeys : void 0,\n level\n });\n return String(id);\n }\n getOrderedNodeMap() {\n const obj = {};\n this.nodeMap.forEach((node) => obj[node.index] = node);\n return obj;\n }\n clearDisplayIndexes() {\n this.nodeDisplayIndexMap.clear();\n }\n /**\n * Client side sorting\n */\n clientSideSortRows() {\n const sortOptions = this.sortController.getSortOptions();\n const isAnySort = sortOptions.some((opt) => opt.sort != null);\n if (!isAnySort) {\n return;\n }\n const allNodes = new Array(this.nodeMap.getSize());\n this.nodeMap.forEach((lazyNode) => allNodes[lazyNode.index] = lazyNode.node);\n this.nodeMap.clear();\n const sortedNodes = this.rowNodeSorter.doFullSort(allNodes, sortOptions);\n sortedNodes.forEach((node, index) => {\n this.nodeMap.set({\n id: node.id,\n node,\n index\n });\n });\n }\n /**\n * Transaction Support here\n */\n updateRowNodes(updates) {\n if (this.getRowIdFunc == null) {\n throw new Error(\"AG Grid: Transactions can only be applied when row ids are supplied.\");\n }\n const updatedNodes = [];\n updates.forEach((data) => {\n const id = this.getRowId(data);\n const lazyNode = this.nodeMap.getBy(\"id\", id);\n if (lazyNode) {\n this.blockUtils.updateDataIntoRowNode(lazyNode.node, data);\n updatedNodes.push(lazyNode.node);\n }\n });\n return updatedNodes;\n }\n insertRowNodes(inserts, indexToAdd) {\n const realRowCount = this.store.getRowCount() - (this.store.getParentNode().sibling ? 1 : 0);\n const addIndex = indexToAdd == null && this.isLastRowKnown ? realRowCount : indexToAdd;\n if (addIndex == null || realRowCount < addIndex) {\n return [];\n }\n if (this.getRowIdFunc == null) {\n throw new Error(\"AG Grid: Transactions can only be applied when row ids are supplied.\");\n }\n const uniqueInsertsMap = {};\n inserts.forEach((data) => {\n const dataId = this.getRowId(data);\n if (dataId && this.isNodeInCache(dataId)) {\n return;\n }\n uniqueInsertsMap[dataId] = data;\n });\n const uniqueInserts = Object.values(uniqueInsertsMap);\n let numberOfInserts = uniqueInserts.length;\n if (numberOfInserts === 0) {\n return [];\n }\n const nodesToMove = this.nodeMap.filter((node) => node.index >= addIndex);\n nodesToMove.forEach((lazyNode) => this.nodeMap.delete(lazyNode));\n nodesToMove.forEach((lazyNode) => {\n this.nodeMap.set({\n node: lazyNode.node,\n index: lazyNode.index + numberOfInserts,\n id: lazyNode.id\n });\n });\n this.numberOfRows += numberOfInserts;\n return uniqueInserts.map((data, uniqueInsertOffset) => this.createRowAtIndex(addIndex + uniqueInsertOffset, data));\n }\n removeRowNodes(idsToRemove) {\n if (this.getRowIdFunc == null) {\n throw new Error(\"AG Grid: Transactions can only be applied when row ids are supplied.\");\n }\n const removedNodes = [];\n const nodesToVerify = [];\n let deletedNodeCount = 0;\n const remainingIdsToRemove = [...idsToRemove];\n const allNodes = this.getOrderedNodeMap();\n let contiguousIndex = -1;\n for (let stringIndex in allNodes) {\n contiguousIndex += 1;\n const node = allNodes[stringIndex];\n const matchIndex = remainingIdsToRemove.findIndex((idToRemove) => idToRemove === node.id);\n if (matchIndex !== -1) {\n remainingIdsToRemove.splice(matchIndex, 1);\n this.destroyRowAtIndex(Number(stringIndex));\n removedNodes.push(node.node);\n deletedNodeCount += 1;\n continue;\n }\n if (deletedNodeCount === 0) {\n continue;\n }\n const numericStoreIndex = Number(stringIndex);\n if (contiguousIndex !== numericStoreIndex) {\n nodesToVerify.push(node.node);\n }\n this.nodeMap.delete(allNodes[stringIndex]);\n this.nodeMap.set({\n id: node.id,\n node: node.node,\n index: numericStoreIndex - deletedNodeCount\n });\n }\n this.numberOfRows -= this.isLastRowIndexKnown() ? idsToRemove.length : deletedNodeCount;\n if (remainingIdsToRemove.length > 0 && nodesToVerify.length > 0) {\n nodesToVerify.forEach((node) => node.__needsRefreshWhenVisible = true);\n this.lazyBlockLoadingService.queueLoadCheck();\n }\n return removedNodes;\n }\n /**\n * Return the block size configured for this cache\n */\n getBlockSize() {\n return this.storeParams.cacheBlockSize || LazyBlockLoadingService.DEFAULT_BLOCK_SIZE;\n }\n /**\n * Get the start index of the loading block for a given index\n */\n getBlockStartIndex(storeIndex) {\n const blockSize = this.getBlockSize();\n return storeIndex - storeIndex % blockSize;\n }\n /**\n * Get the start and end index of a block, given a row store index\n */\n getBlockBounds(storeIndex) {\n const startOfBlock = this.getBlockStartIndex(storeIndex);\n const blockSize = this.getBlockSize();\n return [startOfBlock, startOfBlock + blockSize];\n }\n};\n__decorateClass14([\n Autowired315(\"gridApi\")\n], LazyCache.prototype, \"api\", 2);\n__decorateClass14([\n Autowired315(\"ssrmBlockUtils\")\n], LazyCache.prototype, \"blockUtils\", 2);\n__decorateClass14([\n Autowired315(\"focusService\")\n], LazyCache.prototype, \"focusService\", 2);\n__decorateClass14([\n Autowired315(\"ssrmNodeManager\")\n], LazyCache.prototype, \"nodeManager\", 2);\n__decorateClass14([\n Autowired315(\"rowModel\")\n], LazyCache.prototype, \"serverSideRowModel\", 2);\n__decorateClass14([\n Autowired315(\"rowNodeSorter\")\n], LazyCache.prototype, \"rowNodeSorter\", 2);\n__decorateClass14([\n Autowired315(\"sortController\")\n], LazyCache.prototype, \"sortController\", 2);\n__decorateClass14([\n Autowired315(\"lazyBlockLoadingService\")\n], LazyCache.prototype, \"lazyBlockLoadingService\", 2);\n__decorateClass14([\n PostConstruct314\n], LazyCache.prototype, \"init\", 1);\n__decorateClass14([\n PreDestroy22\n], LazyCache.prototype, \"destroyRowNodes\", 1);\nvar LazyStore = class extends BeanStub35 {\n constructor(ssrmParams, storeParams, parentRowNode) {\n super();\n this.idSequence = new NumberSequence3();\n this.ssrmParams = ssrmParams;\n this.parentRowNode = parentRowNode;\n this.storeParams = storeParams;\n this.level = parentRowNode.level + 1;\n this.group = ssrmParams.rowGroupCols ? this.level < ssrmParams.rowGroupCols.length : false;\n this.leafGroup = ssrmParams.rowGroupCols ? this.level === ssrmParams.rowGroupCols.length - 1 : false;\n this.info = {};\n }\n init() {\n var _a;\n let numberOfRows = 1;\n if (this.level === 0) {\n numberOfRows = (_a = this.storeUtils.getServerSideInitialRowCount()) != null ? _a : 1;\n this.eventService.dispatchEventOnce({\n type: Events29.EVENT_ROW_COUNT_READY\n });\n }\n this.cache = this.createManagedBean(new LazyCache(this, numberOfRows, this.storeParams));\n const usingTreeData = this.gos.get(\"treeData\");\n if (!usingTreeData && this.group) {\n const groupColVo = this.ssrmParams.rowGroupCols[this.level];\n this.groupField = groupColVo.field;\n this.rowGroupColumn = this.columnModel.getRowGroupColumns()[this.level];\n }\n }\n destroyRowNodes() {\n this.displayIndexStart = void 0;\n this.displayIndexEnd = void 0;\n this.destroyBean(this.cache);\n }\n /**\n * Given a server response, ingest the rows outside of the data source lifecycle.\n * \n * @param rowDataParams the server response containing the rows to ingest\n * @param startRow the index to start ingesting rows\n * @param expectedRows the expected number of rows in the response (used to determine if the last row index is known)\n */\n applyRowData(rowDataParams, startRow, expectedRows) {\n this.cache.onLoadSuccess(startRow, expectedRows, rowDataParams);\n }\n /**\n * Applies a given transaction to the data set within this store\n * \n * @param transaction an object containing delta instructions determining the changes to apply to this store\n * @returns an object determining the status of this transaction and effected nodes\n */\n applyTransaction(transaction) {\n var _a, _b, _c;\n const idFunc = this.gos.getCallback(\"getRowId\");\n if (!idFunc) {\n console.warn(\"AG Grid: getRowId callback must be implemented for transactions to work. Transaction was ignored.\");\n return {\n status: ServerSideTransactionResultStatus2.Cancelled\n };\n }\n const applyCallback = this.gos.getCallback(\"isApplyServerSideTransaction\");\n if (applyCallback) {\n const params = {\n transaction,\n parentNode: this.parentRowNode,\n groupLevelInfo: this.info\n };\n const apply = applyCallback(params);\n if (!apply) {\n return { status: ServerSideTransactionResultStatus2.Cancelled };\n }\n }\n const allRowsLoaded = this.cache.isStoreFullyLoaded();\n let updatedNodes = void 0;\n if ((_a = transaction.update) == null ? void 0 : _a.length) {\n updatedNodes = this.cache.updateRowNodes(transaction.update);\n }\n let insertedNodes = void 0;\n if ((_b = transaction.add) == null ? void 0 : _b.length) {\n let addIndex = transaction.addIndex;\n if (addIndex != null && addIndex < 0) {\n addIndex = void 0;\n }\n insertedNodes = this.cache.insertRowNodes(transaction.add, addIndex);\n }\n let removedNodes = void 0;\n if ((_c = transaction.remove) == null ? void 0 : _c.length) {\n const allIdsToRemove = transaction.remove.map((data) => idFunc({ level: this.level, parentKeys: this.parentRowNode.getGroupKeys(), data }));\n const allUniqueIdsToRemove = [...new Set(allIdsToRemove)];\n removedNodes = this.cache.removeRowNodes(allUniqueIdsToRemove);\n }\n const isClientSideSortingEnabled = this.gos.get(\"serverSideEnableClientSideSort\");\n const isUpdateOrAdd = (updatedNodes == null ? void 0 : updatedNodes.length) || (insertedNodes == null ? void 0 : insertedNodes.length);\n const isClientSideSort = allRowsLoaded && isClientSideSortingEnabled;\n if (isClientSideSort && isUpdateOrAdd) {\n this.cache.clientSideSortRows();\n }\n this.updateSelectionAfterTransaction(updatedNodes, removedNodes);\n return {\n status: ServerSideTransactionResultStatus2.Applied,\n update: updatedNodes,\n add: insertedNodes,\n remove: removedNodes\n };\n }\n updateSelectionAfterTransaction(updatedNodes, removedNodes) {\n const nodesToDeselect = [];\n updatedNodes == null ? void 0 : updatedNodes.forEach((node) => {\n if (node.isSelected() && !node.selectable) {\n nodesToDeselect.push(node);\n }\n });\n removedNodes == null ? void 0 : removedNodes.forEach((node) => {\n if (node.isSelected()) {\n nodesToDeselect.push(node);\n }\n });\n if (nodesToDeselect.length) {\n this.selectionService.setNodesSelected({\n newValue: false,\n clearSelection: false,\n nodes: nodesToDeselect,\n source: \"rowDataChanged\"\n });\n }\n }\n /**\n * Clear the display indexes, used for fading rows out when stores are not being destroyed\n */\n clearDisplayIndexes() {\n this.displayIndexStart = void 0;\n this.displayIndexEnd = void 0;\n this.cache.getNodes().forEach((lazyNode) => this.blockUtils.clearDisplayIndex(lazyNode.node));\n if (this.parentRowNode.sibling) {\n this.blockUtils.clearDisplayIndex(this.parentRowNode.sibling);\n }\n this.cache.clearDisplayIndexes();\n }\n /**\n * @returns an index representing the last sequentially displayed row in the grid for this store\n */\n getDisplayIndexStart() {\n return this.displayIndexStart;\n }\n /**\n * @returns the index representing one after the last sequentially displayed row in the grid for this store\n */\n getDisplayIndexEnd() {\n return this.displayIndexEnd;\n }\n /** \n * @returns the virtual size of this store\n */\n getRowCount() {\n if (this.parentRowNode.sibling) {\n return this.cache.getRowCount() + 1;\n }\n return this.cache.getRowCount();\n }\n /** \n * Sets the current row count of the store, and whether the last row index is known\n */\n setRowCount(rowCount, isLastRowIndexKnown) {\n this.cache.setRowCount(rowCount, isLastRowIndexKnown);\n }\n /**\n * Given a display index, returns whether that row is within this store or a child store of this store\n * \n * @param displayIndex the visible index of a row\n * @returns whether or not the row exists within this store\n */\n isDisplayIndexInStore(displayIndex) {\n if (this.cache.getRowCount() === 0)\n return false;\n return this.displayIndexStart <= displayIndex && displayIndex < this.getDisplayIndexEnd();\n }\n /**\n * Recursively sets up the display indexes and top position of every node belonging to this store.\n * \n * Called after a row height changes, or a store updated event.\n * \n * @param displayIndexSeq the number sequence for generating the display index of each row\n * @param nextRowTop an object containing the next row top value intended to be modified by ref per row\n */\n setDisplayIndexes(displayIndexSeq, nextRowTop) {\n this.displayIndexStart = displayIndexSeq.peek();\n this.topPx = nextRowTop.value;\n const footerNode = this.parentRowNode.level > -1 && this.gos.getGroupTotalRowCallback()({ node: this.parentRowNode });\n if (!footerNode) {\n this.parentRowNode.destroyFooter();\n }\n if (footerNode === \"top\") {\n this.parentRowNode.createFooter();\n this.blockUtils.setDisplayIndex(this.parentRowNode.sibling, displayIndexSeq, nextRowTop);\n }\n this.cache.setDisplayIndexes(displayIndexSeq, nextRowTop);\n if (footerNode === \"bottom\") {\n this.parentRowNode.createFooter();\n this.blockUtils.setDisplayIndex(this.parentRowNode.sibling, displayIndexSeq, nextRowTop);\n }\n this.displayIndexEnd = displayIndexSeq.peek();\n this.heightPx = nextRowTop.value - this.topPx;\n }\n /**\n * Recursively applies a provided function to every node\n * \n * For the purpose of exclusively server side filtered stores, this is the same as getNodes().forEachDeepAfterFilterAndSort\n */\n forEachStoreDeep(callback, sequence = new NumberSequence3()) {\n callback(this, sequence.next());\n this.cache.getNodes().forEach((lazyNode) => {\n const childCache = lazyNode.node.childStore;\n if (childCache) {\n childCache.forEachStoreDeep(callback, sequence);\n }\n });\n }\n /**\n * Recursively applies a provided function to every node\n * \n * For the purpose of exclusively server side filtered stores, this is the same as getNodes().forEachDeepAfterFilterAndSort\n */\n forEachNodeDeep(callback, sequence = new NumberSequence3()) {\n this.cache.getNodes().forEach((lazyNode) => {\n callback(lazyNode.node, sequence.next());\n const childCache = lazyNode.node.childStore;\n if (childCache) {\n childCache.forEachNodeDeep(callback, sequence);\n }\n });\n }\n /**\n * Recursively applies a provided function to every node\n * \n * For the purpose of exclusively server side filtered stores, this is the same as getNodes().forEachDeep\n */\n forEachNodeDeepAfterFilterAndSort(callback, sequence = new NumberSequence3(), includeFooterNodes = false) {\n const footerNode = this.parentRowNode.level > -1 && this.gos.getGroupTotalRowCallback()({ node: this.parentRowNode });\n if (footerNode === \"top\") {\n callback(this.parentRowNode.sibling, sequence.next());\n }\n const orderedNodes = this.cache.getOrderedNodeMap();\n for (let key in orderedNodes) {\n const lazyNode = orderedNodes[key];\n callback(lazyNode.node, sequence.next());\n const childCache = lazyNode.node.childStore;\n if (childCache) {\n childCache.forEachNodeDeepAfterFilterAndSort(callback, sequence, includeFooterNodes);\n }\n }\n if (footerNode === \"bottom\") {\n callback(this.parentRowNode.sibling, sequence.next());\n }\n }\n /**\n * Removes the failed status from all nodes, and marks them as stub to encourage reloading\n */\n retryLoads() {\n this.cache.getNodes().forEach(({ node }) => {\n if (node.failedLoad) {\n node.failedLoad = false;\n node.__needsRefreshWhenVisible = true;\n node.stub = true;\n }\n });\n this.forEachChildStoreShallow((store) => store.retryLoads());\n this.fireStoreUpdatedEvent();\n }\n /**\n * Given a display index, returns the row at that location.\n * \n * @param displayRowIndex the displayed index within the grid to search for\n * @returns the row node if the display index falls within the store, if it didn't exist this will create a new stub to return\n */\n getRowUsingDisplayIndex(displayRowIndex) {\n if (this.parentRowNode.sibling && displayRowIndex === this.parentRowNode.sibling.rowIndex) {\n return this.parentRowNode.sibling;\n }\n return this.cache.getRowByDisplayIndex(displayRowIndex);\n }\n /**\n * Given a display index, returns the row top and height for the row at that index.\n * \n * @param displayIndex the display index of the node\n * @returns an object containing the rowTop and rowHeight of the node at the given displayIndex\n */\n getRowBounds(displayIndex) {\n var _a;\n if (!this.isDisplayIndexInStore(displayIndex)) {\n return null;\n }\n const thisNode = this.cache.getNodeCachedByDisplayIndex(displayIndex);\n if (thisNode) {\n const boundsFromRow = this.blockUtils.extractRowBounds(thisNode, displayIndex);\n if (boundsFromRow) {\n return boundsFromRow;\n }\n }\n const { previousNode, nextNode } = (_a = this.cache.getSurroundingNodesByDisplayIndex(displayIndex)) != null ? _a : {};\n if (previousNode) {\n const boundsFromRow = this.blockUtils.extractRowBounds(previousNode.node, displayIndex);\n if (boundsFromRow != null) {\n return boundsFromRow;\n }\n }\n const defaultRowHeight = this.gos.getRowHeightAsNumber();\n if (nextNode) {\n const numberOfRowDiff2 = (nextNode.node.rowIndex - displayIndex) * defaultRowHeight;\n return {\n rowTop: nextNode.node.rowTop - numberOfRowDiff2,\n rowHeight: defaultRowHeight\n };\n }\n const lastTop = this.topPx + this.heightPx;\n const numberOfRowDiff = (this.getDisplayIndexEnd() - displayIndex) * defaultRowHeight;\n return {\n rowTop: lastTop - numberOfRowDiff,\n rowHeight: defaultRowHeight\n };\n }\n /**\n * Given a vertical pixel, determines whether this store contains a row at that pixel\n * \n * @param pixel a vertical pixel position from the grid\n * @returns whether that pixel points to a virtual space belonging to this store\n */\n isPixelInRange(pixel) {\n return pixel >= this.topPx && pixel < this.topPx + this.heightPx;\n }\n /**\n * Given a vertical pixel, returns the row existing at that pixel location\n * \n * @param pixel a vertical pixel position from the grid\n * @returns the display index at the given pixel location\n */\n getRowIndexAtPixel(pixel) {\n if (pixel < this.topPx) {\n return this.getDisplayIndexStart();\n }\n if (pixel >= this.topPx + this.heightPx) {\n return this.getDisplayIndexEnd() - 1;\n }\n if (this.parentRowNode.sibling && pixel > this.parentRowNode.sibling.rowTop && pixel < this.parentRowNode.sibling.rowTop + this.parentRowNode.sibling.rowHeight) {\n return this.parentRowNode.sibling.rowIndex;\n }\n let distToPreviousNodeTop = Number.MAX_SAFE_INTEGER;\n let previousNode = null;\n let distToNextNodeTop = Number.MAX_SAFE_INTEGER;\n let nextNode = null;\n this.cache.getNodes().forEach(({ node }) => {\n const distBetween = Math.abs(pixel - node.rowTop);\n if (node.rowTop < pixel) {\n if (distBetween < distToPreviousNodeTop) {\n distToPreviousNodeTop = distBetween;\n previousNode = node;\n }\n return;\n }\n if (distBetween < distToNextNodeTop) {\n distToNextNodeTop = distBetween;\n nextNode = node;\n }\n });\n previousNode = previousNode;\n nextNode = nextNode;\n if (previousNode) {\n const indexOfRow = this.blockUtils.getIndexAtPixel(previousNode, pixel);\n if (indexOfRow != null) {\n return indexOfRow;\n }\n }\n const defaultRowHeight = this.gos.getRowHeightAsNumber();\n if (nextNode) {\n const nextTop2 = nextNode.rowTop;\n const numberOfRowDiff2 = Math.ceil((nextTop2 - pixel) / defaultRowHeight);\n return nextNode.rowIndex - numberOfRowDiff2;\n }\n const nextTop = this.topPx + this.heightPx;\n const numberOfRowDiff = Math.floor((nextTop - pixel) / defaultRowHeight);\n return this.getDisplayIndexEnd() - numberOfRowDiff;\n }\n /**\n * Given a path of group keys, returns the child store for that group.\n * \n * @param keys the grouping path to the desired store\n * @returns the child store for the given keys, or null if not found\n */\n getChildStore(keys) {\n return this.storeUtils.getChildStore(keys, this, (key) => {\n const lazyNode = this.cache.getNodes().find((lazyNode2) => lazyNode2.node.key == key);\n if (!lazyNode) {\n return null;\n }\n return lazyNode.node;\n });\n }\n /**\n * Executes a provided callback on each child store belonging to this store\n * \n * @param cb the callback to execute\n */\n forEachChildStoreShallow(cb) {\n this.cache.getNodes().forEach(({ node }) => {\n if (node.childStore) {\n cb(node.childStore);\n }\n });\n }\n /**\n * Executes after a change to sorting, determines recursively whether this store or a child requires refreshed.\n * \n * If a purge refresh occurs, the row count is preserved.\n * \n * @param params a set of properties pertaining to the sort changes\n */\n refreshAfterSort(params) {\n const serverSortsAllLevels = this.storeUtils.isServerSideSortAllLevels();\n if (serverSortsAllLevels || this.storeUtils.isServerRefreshNeeded(this.parentRowNode, this.ssrmParams.rowGroupCols, params)) {\n const allRowsLoaded = this.cache.isStoreFullyLoaded();\n const isClientSideSortingEnabled = this.gos.get(\"serverSideEnableClientSideSort\");\n const isClientSideSort = allRowsLoaded && isClientSideSortingEnabled;\n if (!isClientSideSort) {\n const oldCount = this.cache.getRowCount();\n this.destroyBean(this.cache);\n this.cache = this.createManagedBean(new LazyCache(this, oldCount, this.storeParams));\n return;\n }\n this.cache.clientSideSortRows();\n }\n this.forEachChildStoreShallow((store) => store.refreshAfterSort(params));\n }\n /**\n * Executes after a change to filtering, determines recursively whether this store or a child requires refreshed.\n * \n * If a refresh occurs, the row count is reset.\n * \n * @param params a set of properties pertaining to the filter changes\n */\n refreshAfterFilter(params) {\n const serverFiltersAllLevels = !this.storeUtils.isServerSideOnlyRefreshFilteredGroups();\n if (serverFiltersAllLevels || this.storeUtils.isServerRefreshNeeded(this.parentRowNode, this.ssrmParams.rowGroupCols, params)) {\n this.refreshStore(true);\n return;\n }\n this.forEachChildStoreShallow((store) => store.refreshAfterFilter(params));\n }\n /**\n * Marks all existing nodes as requiring reloaded, and triggers a load check\n *\n * @param purge whether to remove all nodes and data in favour of stub nodes\n */\n refreshStore(purge) {\n if (purge) {\n this.destroyBean(this.cache);\n this.cache = this.createManagedBean(new LazyCache(this, 1, this.storeParams));\n this.fireStoreUpdatedEvent();\n return;\n }\n this.cache.markNodesForRefresh();\n }\n /**\n * Used for pagination, given a local/store index, returns the display index of that row\n * \n * @param topLevelIndex the store index of a row\n * @returns the display index for the given store index\n */\n getTopLevelRowDisplayedIndex(topLevelIndex) {\n const displayIndex = this.cache.getDisplayIndexFromStoreIndex(topLevelIndex);\n return displayIndex != null ? displayIndex : topLevelIndex;\n }\n /**\n * Used for pagination to determine if the last page is known, and for aria to determine if the last grid row is known\n * \n * @returns whether the last index of this store is known, or if lazy loading still required\n */\n isLastRowIndexKnown() {\n return this.cache.isLastRowIndexKnown();\n }\n /**\n * Used by the selection service to select a range of nodes\n * \n * @param firstInRange the first node in the range to find\n * @param lastInRange the last node in the range to find\n * @returns a range of nodes between firstInRange and lastInRange inclusive\n */\n getRowNodesInRange(firstInRange, lastInRange) {\n const result = [];\n let inActiveRange = false;\n if (_217.missing(firstInRange)) {\n inActiveRange = true;\n }\n return this.cache.getNodes().filter(({ node }) => {\n return node.rowIndex >= firstInRange.rowIndex && node.rowIndex <= lastInRange.rowIndex;\n }).map(({ node }) => node);\n }\n /**\n * Mutates a given array to add this stores state, and recursively add all the children store states.\n * \n * @param result a mutable results array\n */\n addStoreStates(result) {\n result.push({\n suppressInfiniteScroll: false,\n route: this.parentRowNode.getGroupKeys(),\n rowCount: this.getRowCount(),\n lastRowIndexKnown: this.isLastRowIndexKnown(),\n info: this.info,\n maxBlocksInCache: this.storeParams.maxBlocksInCache,\n cacheBlockSize: this.storeParams.cacheBlockSize\n });\n this.forEachChildStoreShallow((childStore) => childStore.addStoreStates(result));\n }\n getIdSequence() {\n return this.idSequence;\n }\n getParentNode() {\n return this.parentRowNode;\n }\n getRowDetails() {\n return {\n field: this.groupField,\n group: this.group,\n leafGroup: this.leafGroup,\n level: this.level,\n parent: this.parentRowNode,\n rowGroupColumn: this.rowGroupColumn\n };\n }\n getSsrmParams() {\n return this.ssrmParams;\n }\n setStoreInfo(info) {\n if (info) {\n Object.assign(this.info, info);\n }\n }\n // gets called 1) row count changed 2) cache purged\n fireStoreUpdatedEvent() {\n const event = {\n type: Events29.EVENT_STORE_UPDATED\n };\n this.eventService.dispatchEvent(event);\n }\n // gets called when row data updated, and no more refreshing needed\n fireRefreshFinishedEvent() {\n const event = {\n type: Events29.EVENT_STORE_REFRESHED,\n route: this.parentRowNode.getRoute()\n };\n this.eventService.dispatchEvent(event);\n }\n getBlockStates() {\n return this.cache.getBlockStates();\n }\n getStoreBounds() {\n return {\n topPx: this.topPx,\n heightPx: this.heightPx\n };\n }\n getCache() {\n return this.cache;\n }\n};\n__decorateClass14([\n Autowired415(\"ssrmBlockUtils\")\n], LazyStore.prototype, \"blockUtils\", 2);\n__decorateClass14([\n Autowired415(\"ssrmStoreUtils\")\n], LazyStore.prototype, \"storeUtils\", 2);\n__decorateClass14([\n Autowired415(\"columnModel\")\n], LazyStore.prototype, \"columnModel\", 2);\n__decorateClass14([\n Autowired415(\"selectionService\")\n], LazyStore.prototype, \"selectionService\", 2);\n__decorateClass14([\n PostConstruct413\n], LazyStore.prototype, \"init\", 1);\n__decorateClass14([\n PreDestroy32\n], LazyStore.prototype, \"destroyRowNodes\", 1);\nvar ServerSideRowModel = class extends BeanStub45 {\n constructor() {\n super(...arguments);\n this.onRowHeightChanged_debounced = _314.debounce(this.onRowHeightChanged.bind(this), 100);\n this.pauseStoreUpdateListening = false;\n this.started = false;\n this.managingPivotResultColumns = false;\n }\n // we don't implement as lazy row heights is not supported in this row model\n ensureRowHeightsValid() {\n return false;\n }\n start() {\n this.started = true;\n this.updateDatasource();\n }\n destroyDatasource() {\n if (!this.datasource) {\n return;\n }\n if (this.datasource.destroy) {\n this.datasource.destroy();\n }\n this.rowRenderer.datasourceChanged();\n this.datasource = void 0;\n }\n addEventListeners() {\n this.addManagedListener(this.eventService, Events37.EVENT_NEW_COLUMNS_LOADED, this.onColumnEverything.bind(this));\n this.addManagedListener(this.eventService, Events37.EVENT_STORE_UPDATED, this.onStoreUpdated.bind(this));\n const resetListener = this.resetRootStore.bind(this);\n this.addManagedListener(this.eventService, Events37.EVENT_COLUMN_VALUE_CHANGED, resetListener);\n this.addManagedListener(this.eventService, Events37.EVENT_COLUMN_PIVOT_CHANGED, resetListener);\n this.addManagedListener(this.eventService, Events37.EVENT_COLUMN_ROW_GROUP_CHANGED, resetListener);\n this.addManagedListener(this.eventService, Events37.EVENT_COLUMN_PIVOT_MODE_CHANGED, resetListener);\n this.addManagedPropertyListeners([\n /**\n * Following properties omitted as they are likely to come with undesired side effects.\n * 'getRowId', 'isRowMaster', 'getRowHeight', 'isServerSideGroup', 'getServerSideGroupKey',\n * */\n \"masterDetail\",\n \"treeData\",\n \"removePivotHeaderRowWhenSingleValueColumn\",\n \"suppressServerSideInfiniteScroll\",\n \"cacheBlockSize\"\n ], resetListener);\n this.addManagedPropertyListener(\"rowHeight\", () => this.resetRowHeights());\n this.verifyProps();\n this.addManagedPropertyListener(\"serverSideDatasource\", () => this.updateDatasource());\n }\n updateDatasource() {\n const datasource = this.gos.get(\"serverSideDatasource\");\n if (datasource) {\n this.setDatasource(datasource);\n }\n }\n verifyProps() {\n if (this.gos.exists(\"initialGroupOrderComparator\")) {\n _314.warnOnce(`initialGroupOrderComparator cannot be used with Server Side Row Model.`);\n }\n if (this.gos.isRowSelection() && !this.gos.exists(\"getRowId\")) {\n _314.warnOnce(`getRowId callback must be provided for Server Side Row Model selection to work correctly.`);\n }\n }\n setDatasource(datasource) {\n if (!this.started) {\n return;\n }\n this.destroyDatasource();\n this.datasource = datasource;\n this.resetRootStore();\n }\n applyRowData(rowDataParams, startRow, route) {\n const rootStore = this.getRootStore();\n if (!rootStore) {\n return;\n }\n const storeToExecuteOn = rootStore.getChildStore(route);\n if (!storeToExecuteOn) {\n return;\n }\n ;\n if (storeToExecuteOn instanceof LazyStore) {\n storeToExecuteOn.applyRowData(rowDataParams, startRow, rowDataParams.rowData.length);\n } else if (storeToExecuteOn instanceof FullStore) {\n storeToExecuteOn.processServerResult(rowDataParams);\n }\n }\n isLastRowIndexKnown() {\n const cache = this.getRootStore();\n if (!cache) {\n return false;\n }\n return cache.isLastRowIndexKnown();\n }\n onColumnEverything() {\n if (!this.storeParams) {\n this.resetRootStore();\n return;\n }\n const rowGroupColumnVos = this.columnsToValueObjects(this.columnModel.getRowGroupColumns());\n const valueColumnVos = this.columnsToValueObjects(this.columnModel.getValueColumns());\n const pivotColumnVos = this.columnsToValueObjects(this.columnModel.getPivotColumns());\n const areColsSame = (params) => {\n const oldColsMap = {};\n params.oldCols.forEach((col) => oldColsMap[col.id] = col);\n const allColsUnchanged = params.newCols.every((col) => {\n const equivalentCol = oldColsMap[col.id];\n if (equivalentCol) {\n delete oldColsMap[col.id];\n }\n return equivalentCol && equivalentCol.field === col.field && equivalentCol.aggFunc === col.aggFunc;\n });\n const missingCols = !params.allowRemovedColumns && !!Object.values(oldColsMap).length;\n return allColsUnchanged && !missingCols;\n };\n const sortModelDifferent = !_314.jsonEquals(this.storeParams.sortModel, this.sortController.getSortModel());\n const rowGroupDifferent = !areColsSame({\n oldCols: this.storeParams.rowGroupCols,\n newCols: rowGroupColumnVos\n });\n const pivotDifferent = !areColsSame({\n oldCols: this.storeParams.pivotCols,\n newCols: pivotColumnVos\n });\n const valuesDifferent = !!(rowGroupColumnVos == null ? void 0 : rowGroupColumnVos.length) && !areColsSame({\n oldCols: this.storeParams.valueCols,\n newCols: valueColumnVos,\n allowRemovedColumns: true\n });\n const resetRequired = sortModelDifferent || rowGroupDifferent || pivotDifferent || valuesDifferent;\n if (resetRequired) {\n this.resetRootStore();\n } else {\n const newParams = this.createStoreParams();\n this.storeParams.rowGroupCols = newParams.rowGroupCols;\n this.storeParams.pivotCols = newParams.pivotCols;\n this.storeParams.valueCols = newParams.valueCols;\n }\n }\n destroyRootStore() {\n if (!this.rootNode || !this.rootNode.childStore) {\n return;\n }\n this.rootNode.childStore = this.destroyBean(this.rootNode.childStore);\n this.nodeManager.clear();\n }\n refreshAfterSort(newSortModel, params) {\n if (this.storeParams) {\n this.storeParams.sortModel = newSortModel;\n }\n const rootStore = this.getRootStore();\n if (!rootStore) {\n return;\n }\n rootStore.refreshAfterSort(params);\n this.onStoreUpdated();\n }\n generateSecondaryColumns(pivotFields) {\n if (!this.pivotColDefService) {\n ModuleRegistry6.__assertRegistered(ModuleNames15.RowGroupingModule, \"pivotResultFields\", this.context.getGridId());\n return;\n }\n const pivotColumnGroupDefs = this.pivotColDefService.createColDefsFromFields(pivotFields);\n this.managingPivotResultColumns = true;\n this.columnModel.setSecondaryColumns(pivotColumnGroupDefs, \"rowModelUpdated\");\n }\n resetRowHeights() {\n const atLeastOne = this.resetRowHeightsForAllRowNodes();\n const rootNodeHeight = this.gos.getRowHeightForNode(this.rootNode);\n this.rootNode.setRowHeight(rootNodeHeight.height, rootNodeHeight.estimated);\n if (this.rootNode.sibling) {\n const rootNodeSibling = this.gos.getRowHeightForNode(this.rootNode.sibling);\n this.rootNode.sibling.setRowHeight(rootNodeSibling.height, rootNodeSibling.estimated);\n }\n if (atLeastOne) {\n this.onRowHeightChanged();\n }\n }\n resetRowHeightsForAllRowNodes() {\n let atLeastOne = false;\n this.forEachNode((rowNode) => {\n const rowHeightForNode = this.gos.getRowHeightForNode(rowNode);\n rowNode.setRowHeight(rowHeightForNode.height, rowHeightForNode.estimated);\n const detailNode = rowNode.detailNode;\n if (detailNode) {\n const detailRowHeight = this.gos.getRowHeightForNode(detailNode);\n detailNode.setRowHeight(detailRowHeight.height, detailRowHeight.estimated);\n }\n if (rowNode.sibling) {\n const siblingRowHeight = this.gos.getRowHeightForNode(rowNode.sibling);\n detailNode.setRowHeight(siblingRowHeight.height, siblingRowHeight.estimated);\n }\n atLeastOne = true;\n });\n return atLeastOne;\n }\n resetRootStore() {\n this.destroyRootStore();\n this.rootNode = new RowNode5(this.beans);\n this.rootNode.group = true;\n this.rootNode.level = -1;\n if (this.datasource) {\n this.storeParams = this.createStoreParams();\n this.rootNode.childStore = this.createBean(this.storeFactory.createStore(this.storeParams, this.rootNode));\n this.updateRowIndexesAndBounds();\n }\n if (this.managingPivotResultColumns) {\n this.columnModel.setSecondaryColumns(null, \"api\");\n this.managingPivotResultColumns = false;\n }\n this.dispatchModelUpdated(true);\n }\n columnsToValueObjects(columns) {\n return columns.map((col) => ({\n id: col.getId(),\n aggFunc: col.getAggFunc(),\n displayName: this.columnModel.getDisplayNameForColumn(col, \"model\"),\n field: col.getColDef().field\n }));\n }\n createStoreParams() {\n const rowGroupColumnVos = this.columnsToValueObjects(this.columnModel.getRowGroupColumns());\n const valueColumnVos = this.columnsToValueObjects(this.columnModel.getValueColumns());\n const pivotColumnVos = this.columnsToValueObjects(this.columnModel.getPivotColumns());\n const dynamicRowHeight = this.gos.isGetRowHeightFunction();\n const params = {\n // the columns the user has grouped and aggregated by\n valueCols: valueColumnVos,\n rowGroupCols: rowGroupColumnVos,\n pivotCols: pivotColumnVos,\n pivotMode: this.columnModel.isPivotMode(),\n // sort and filter model\n filterModel: this.filterManager.isAdvancedFilterEnabled() ? this.filterManager.getAdvancedFilterModel() : this.filterManager.getFilterModel(),\n sortModel: this.sortController.getSortModel(),\n datasource: this.datasource,\n lastAccessedSequence: new NumberSequence4(),\n // blockSize: blockSize == null ? 100 : blockSize,\n dynamicRowHeight\n };\n return params;\n }\n getParams() {\n return this.storeParams;\n }\n dispatchModelUpdated(reset = false) {\n const modelUpdatedEvent = {\n type: Events37.EVENT_MODEL_UPDATED,\n animate: !reset,\n keepRenderedRows: !reset,\n newPage: false,\n newData: false\n };\n this.eventService.dispatchEvent(modelUpdatedEvent);\n }\n onStoreUpdated() {\n if (this.pauseStoreUpdateListening) {\n return;\n }\n this.updateRowIndexesAndBounds();\n this.dispatchModelUpdated();\n }\n /** This method is debounced. It is used for row auto-height. If we don't debounce,\n * then the Row Models will end up recalculating each row position\n * for each row height change and result in the Row Renderer laying out rows.\n * This is particularly bad if using print layout, and showing eg 1,000 rows,\n * each row will change it's height, causing Row Model to update 1,000 times.\n */\n onRowHeightChangedDebounced() {\n this.onRowHeightChanged_debounced();\n }\n onRowHeightChanged() {\n this.updateRowIndexesAndBounds();\n this.dispatchModelUpdated();\n }\n updateRowIndexesAndBounds() {\n const rootStore = this.getRootStore();\n if (!rootStore) {\n return;\n }\n rootStore.setDisplayIndexes(new NumberSequence4(), { value: 0 });\n }\n retryLoads() {\n const rootStore = this.getRootStore();\n if (!rootStore) {\n return;\n }\n rootStore.retryLoads();\n this.onStoreUpdated();\n }\n getRow(index) {\n const rootStore = this.getRootStore();\n if (!rootStore) {\n return void 0;\n }\n return rootStore.getRowUsingDisplayIndex(index);\n }\n /**\n * Pauses the store, to prevent it updating the UI. This is used when doing batch updates to the store.\n */\n setPaused(paused) {\n this.pauseStoreUpdateListening = paused;\n }\n expandAll(value) {\n this.pauseStoreUpdateListening = true;\n this.forEachNode((node) => {\n if (node.stub) {\n return;\n }\n if (node.hasChildren()) {\n node.setExpanded(value);\n }\n });\n this.pauseStoreUpdateListening = false;\n this.onStoreUpdated();\n }\n refreshAfterFilter(newFilterModel, params) {\n if (this.storeParams) {\n this.storeParams.filterModel = newFilterModel;\n }\n const rootStore = this.getRootStore();\n if (!rootStore) {\n return;\n }\n rootStore.refreshAfterFilter(params);\n this.onStoreUpdated();\n }\n getRootStore() {\n if (this.rootNode && this.rootNode.childStore) {\n return this.rootNode.childStore;\n }\n }\n getRowCount() {\n const rootStore = this.getRootStore();\n if (!rootStore) {\n return 0;\n }\n return rootStore.getDisplayIndexEnd();\n }\n getTopLevelRowCount() {\n const rootStore = this.getRootStore();\n if (!rootStore) {\n return 1;\n }\n return rootStore.getRowCount();\n }\n getTopLevelRowDisplayedIndex(topLevelIndex) {\n const rootStore = this.getRootStore();\n if (!rootStore) {\n return topLevelIndex;\n }\n return rootStore.getTopLevelRowDisplayedIndex(topLevelIndex);\n }\n getRowBounds(index) {\n const rootStore = this.getRootStore();\n if (!rootStore) {\n const rowHeight = this.gos.getRowHeightAsNumber();\n return {\n rowTop: 0,\n rowHeight\n };\n }\n return rootStore.getRowBounds(index);\n }\n getBlockStates() {\n const root = this.getRootStore();\n if (!root) {\n return void 0;\n }\n const states = {};\n root.forEachStoreDeep((store) => {\n if (store instanceof FullStore) {\n const { id, state } = store.getBlockStateJson();\n states[id] = state;\n } else if (store instanceof LazyStore) {\n Object.entries(store.getBlockStates()).forEach(([block, state]) => {\n states[block] = state;\n });\n } else {\n throw new Error(\"AG Grid: Unsupported store type\");\n }\n });\n return states;\n }\n getRowIndexAtPixel(pixel) {\n const rootStore = this.getRootStore();\n if (pixel <= 0 || !rootStore) {\n return 0;\n }\n return rootStore.getRowIndexAtPixel(pixel);\n }\n isEmpty() {\n return false;\n }\n isRowsToRender() {\n return this.getRootStore() != null && this.getRowCount() > 0;\n }\n getType() {\n return \"serverSide\";\n }\n forEachNode(callback) {\n const rootStore = this.getRootStore();\n if (!rootStore) {\n return;\n }\n rootStore.forEachNodeDeep(callback);\n }\n forEachNodeAfterFilterAndSort(callback, includeFooterNodes = false) {\n const rootStore = this.getRootStore();\n if (!rootStore) {\n return;\n }\n rootStore.forEachNodeDeepAfterFilterAndSort(callback, void 0, includeFooterNodes);\n }\n /** @return false if store hasn't started */\n executeOnStore(route, callback) {\n if (!this.started) {\n return false;\n }\n const rootStore = this.getRootStore();\n if (!rootStore) {\n return true;\n }\n const storeToExecuteOn = rootStore.getChildStore(route);\n if (storeToExecuteOn) {\n callback(storeToExecuteOn);\n }\n return true;\n }\n refreshStore(params = {}) {\n const route = params.route ? params.route : [];\n this.executeOnStore(route, (store) => store.refreshStore(params.purge == true));\n }\n getStoreState() {\n const res = [];\n const rootStore = this.getRootStore();\n if (rootStore) {\n rootStore.addStoreStates(res);\n }\n return res;\n }\n getNodesInRangeForSelection(firstInRange, lastInRange) {\n if (!_314.exists(firstInRange)) {\n return [];\n }\n if (!lastInRange) {\n return [firstInRange];\n }\n const startIndex = firstInRange.rowIndex;\n const endIndex = lastInRange.rowIndex;\n if (startIndex === null || endIndex === null) {\n return [firstInRange];\n }\n const nodeRange = [];\n const [firstIndex, lastIndex] = [startIndex, endIndex].sort((a, b) => a - b);\n this.forEachNode((node) => {\n const thisRowIndex = node.rowIndex;\n if (thisRowIndex == null || node.stub) {\n return;\n }\n if (thisRowIndex >= firstIndex && thisRowIndex <= lastIndex) {\n nodeRange.push(node);\n }\n });\n if (nodeRange.length !== lastIndex - firstIndex + 1) {\n return [firstInRange];\n }\n return nodeRange;\n }\n getRowNode(id) {\n let result;\n this.forEachNode((rowNode) => {\n if (rowNode.id === id) {\n result = rowNode;\n }\n if (rowNode.detailNode && rowNode.detailNode.id === id) {\n result = rowNode.detailNode;\n }\n });\n return result;\n }\n isRowPresent(rowNode) {\n const foundRowNode = this.getRowNode(rowNode.id);\n return !!foundRowNode;\n }\n setRowCount(rowCount, lastRowIndexKnown) {\n const rootStore = this.getRootStore();\n if (rootStore) {\n if (rootStore instanceof LazyStore) {\n rootStore.setRowCount(rowCount, lastRowIndexKnown);\n return;\n }\n console.error(\"AG Grid: Infinite scrolling must be enabled in order to set the row count.\");\n }\n }\n};\n__decorateClass14([\n Autowired511(\"columnModel\")\n], ServerSideRowModel.prototype, \"columnModel\", 2);\n__decorateClass14([\n Autowired511(\"filterManager\")\n], ServerSideRowModel.prototype, \"filterManager\", 2);\n__decorateClass14([\n Autowired511(\"sortController\")\n], ServerSideRowModel.prototype, \"sortController\", 2);\n__decorateClass14([\n Autowired511(\"rowRenderer\")\n], ServerSideRowModel.prototype, \"rowRenderer\", 2);\n__decorateClass14([\n Autowired511(\"ssrmNodeManager\")\n], ServerSideRowModel.prototype, \"nodeManager\", 2);\n__decorateClass14([\n Autowired511(\"ssrmStoreFactory\")\n], ServerSideRowModel.prototype, \"storeFactory\", 2);\n__decorateClass14([\n Autowired511(\"beans\")\n], ServerSideRowModel.prototype, \"beans\", 2);\n__decorateClass14([\n Optional6(\"pivotColDefService\")\n], ServerSideRowModel.prototype, \"pivotColDefService\", 2);\n__decorateClass14([\n PreDestroy4\n], ServerSideRowModel.prototype, \"destroyDatasource\", 1);\n__decorateClass14([\n PostConstruct510\n], ServerSideRowModel.prototype, \"addEventListeners\", 1);\n__decorateClass14([\n PreDestroy4\n], ServerSideRowModel.prototype, \"destroyRootStore\", 1);\nServerSideRowModel = __decorateClass14([\n Bean28(\"rowModel\")\n], ServerSideRowModel);\nvar StoreUtils = class extends BeanStub55 {\n loadFromDatasource(p) {\n const { storeParams, parentBlock, parentNode } = p;\n const groupKeys = parentNode.getGroupKeys();\n if (!storeParams.datasource) {\n return;\n }\n const request = {\n startRow: p.startRow,\n endRow: p.endRow,\n rowGroupCols: storeParams.rowGroupCols,\n valueCols: storeParams.valueCols,\n pivotCols: storeParams.pivotCols,\n pivotMode: storeParams.pivotMode,\n groupKeys,\n filterModel: storeParams.filterModel,\n sortModel: storeParams.sortModel\n };\n const getRowsParams = this.gos.addGridCommonParams({\n success: p.success,\n fail: p.fail,\n request,\n parentNode: p.parentNode\n });\n window.setTimeout(() => {\n if (!storeParams.datasource || !parentBlock.isAlive()) {\n p.fail();\n return;\n }\n storeParams.datasource.getRows(getRowsParams);\n }, 0);\n }\n getChildStore(keys, currentCache, findNodeFunc) {\n if (_411.missingOrEmpty(keys)) {\n return currentCache;\n }\n const nextKey = keys[0];\n const nextNode = findNodeFunc(nextKey);\n if (nextNode) {\n if (keys.length === 1 && !nextNode.childStore) {\n const storeParams = this.serverSideRowModel.getParams();\n nextNode.childStore = this.createBean(this.storeFactory.createStore(storeParams, nextNode));\n }\n const keyListForNextLevel = keys.slice(1, keys.length);\n const nextStore = nextNode.childStore;\n return nextStore ? nextStore.getChildStore(keyListForNextLevel) : null;\n }\n return null;\n }\n isServerRefreshNeeded(parentRowNode, rowGroupCols, params) {\n if (params.valueColChanged || params.secondaryColChanged) {\n return true;\n }\n const level = parentRowNode.level + 1;\n const grouping = level < rowGroupCols.length;\n const leafNodes = !grouping;\n if (leafNodes) {\n return true;\n }\n const colIdThisGroup = rowGroupCols[level].id;\n const actionOnThisGroup = params.changedColumns.indexOf(colIdThisGroup) > -1;\n if (actionOnThisGroup) {\n return true;\n }\n const allCols = this.columnModel.getAllGridColumns();\n const affectedGroupCols = allCols.filter((col) => col.getColDef().showRowGroup && params.changedColumns.includes(col.getId())).map((col) => col.getColDef().showRowGroup).some((group) => group === true || group === colIdThisGroup);\n return affectedGroupCols;\n }\n getServerSideInitialRowCount() {\n return this.gos.get(\"serverSideInitialRowCount\");\n }\n assertRowModelIsServerSide(key) {\n if (!this.gos.isRowModelType(\"serverSide\")) {\n _411.warnOnce(`The '${key}' property can only be used with the Server Side Row Model.`);\n return false;\n }\n return true;\n }\n assertNotTreeData(key) {\n if (this.gos.get(\"treeData\")) {\n _411.warnOnce(`The '${key}' property cannot be used while using tree data.`);\n return false;\n }\n return true;\n }\n isServerSideSortAllLevels() {\n return this.gos.get(\"serverSideSortAllLevels\") && this.assertRowModelIsServerSide(\"serverSideSortAllLevels\");\n }\n isServerSideOnlyRefreshFilteredGroups() {\n return this.gos.get(\"serverSideOnlyRefreshFilteredGroups\") && this.assertRowModelIsServerSide(\"serverSideOnlyRefreshFilteredGroups\");\n }\n isServerSideSortOnServer() {\n return this.gos.get(\"serverSideSortOnServer\") && this.assertRowModelIsServerSide(\"serverSideSortOnServer\") && this.assertNotTreeData(\"serverSideSortOnServer\");\n }\n isServerSideFilterOnServer() {\n return this.gos.get(\"serverSideFilterOnServer\") && this.assertRowModelIsServerSide(\"serverSideFilterOnServer\") && this.assertNotTreeData(\"serverSideFilterOnServer\");\n }\n};\n__decorateClass14([\n Autowired67(\"columnModel\")\n], StoreUtils.prototype, \"columnModel\", 2);\n__decorateClass14([\n Autowired67(\"rowModel\")\n], StoreUtils.prototype, \"serverSideRowModel\", 2);\n__decorateClass14([\n Autowired67(\"ssrmStoreFactory\")\n], StoreUtils.prototype, \"storeFactory\", 2);\nStoreUtils = __decorateClass14([\n Bean35(\"ssrmStoreUtils\")\n], StoreUtils);\nvar GROUP_MISSING_KEY_ID = \"ag-Grid-MissingKey\";\nvar BlockUtils = class extends BeanStub65 {\n createRowNode(params) {\n const rowNode = new RowNode7(this.beans);\n const rowHeight = params.rowHeight != null ? params.rowHeight : this.gos.getRowHeightAsNumber();\n rowNode.setRowHeight(rowHeight);\n rowNode.group = params.group;\n rowNode.leafGroup = params.leafGroup;\n rowNode.level = params.level;\n rowNode.uiLevel = params.level;\n rowNode.parent = params.parent;\n rowNode.stub = true;\n rowNode.__needsRefreshWhenVisible = false;\n if (rowNode.group) {\n rowNode.expanded = false;\n rowNode.field = params.field;\n rowNode.rowGroupColumn = params.rowGroupColumn;\n }\n return rowNode;\n }\n destroyRowNodes(rowNodes) {\n if (rowNodes) {\n rowNodes.forEach((row) => this.destroyRowNode(row));\n }\n }\n destroyRowNode(rowNode, preserveStore = false) {\n if (rowNode.childStore && !preserveStore) {\n this.destroyBean(rowNode.childStore);\n rowNode.childStore = null;\n }\n if (rowNode.sibling && !rowNode.footer) {\n this.destroyRowNode(rowNode.sibling, false);\n }\n rowNode.clearRowTopAndRowIndex();\n if (rowNode.id != null) {\n this.nodeManager.removeNode(rowNode);\n }\n }\n setTreeGroupInfo(rowNode) {\n rowNode.updateHasChildren();\n const getKeyFunc = this.gos.get(\"getServerSideGroupKey\");\n if (rowNode.hasChildren() && getKeyFunc != null) {\n rowNode.key = getKeyFunc(rowNode.data);\n }\n if (!rowNode.hasChildren() && rowNode.childStore != null) {\n this.destroyBean(rowNode.childStore);\n rowNode.childStore = null;\n rowNode.expanded = false;\n }\n }\n setRowGroupInfo(rowNode) {\n rowNode.key = this.valueService.getValue(rowNode.rowGroupColumn, rowNode);\n if (rowNode.key === null || rowNode.key === void 0) {\n _58.doOnce(() => {\n console.warn(`AG Grid: null and undefined values are not allowed for server side row model keys`);\n if (rowNode.rowGroupColumn) {\n console.warn(`column = ${rowNode.rowGroupColumn.getId()}`);\n }\n console.warn(`data is `, rowNode.data);\n }, \"ServerSideBlock-CannotHaveNullOrUndefinedForKey\");\n }\n const getGroupIncludeFooter = this.beans.gos.getGroupTotalRowCallback();\n const doesRowShowFooter = getGroupIncludeFooter({ node: rowNode });\n if (doesRowShowFooter) {\n rowNode.createFooter();\n if (rowNode.sibling) {\n rowNode.sibling.uiLevel = rowNode.uiLevel + 1;\n }\n }\n }\n setMasterDetailInfo(rowNode) {\n const isMasterFunc = this.gos.get(\"isRowMaster\");\n if (isMasterFunc != null) {\n rowNode.master = isMasterFunc(rowNode.data);\n } else {\n rowNode.master = true;\n }\n }\n updateDataIntoRowNode(rowNode, data) {\n rowNode.updateData(data);\n if (this.gos.get(\"treeData\")) {\n this.setTreeGroupInfo(rowNode);\n this.setChildCountIntoRowNode(rowNode);\n } else if (rowNode.group) {\n this.setChildCountIntoRowNode(rowNode);\n if (!rowNode.footer) {\n const getGroupIncludeFooter = this.beans.gos.getGroupTotalRowCallback();\n const doesRowShowFooter = getGroupIncludeFooter({ node: rowNode });\n if (doesRowShowFooter) {\n if (rowNode.sibling) {\n rowNode.sibling.updateData(data);\n } else {\n rowNode.createFooter();\n }\n } else if (rowNode.sibling) {\n rowNode.destroyFooter();\n }\n }\n } else if (this.gos.get(\"masterDetail\")) {\n }\n }\n setDataIntoRowNode(rowNode, data, defaultId, cachedRowHeight) {\n var _a;\n rowNode.stub = false;\n const treeData = this.gos.get(\"treeData\");\n if (_58.exists(data)) {\n rowNode.setDataAndId(data, defaultId);\n if (treeData) {\n this.setTreeGroupInfo(rowNode);\n } else if (rowNode.group) {\n this.setRowGroupInfo(rowNode);\n } else if (this.gos.get(\"masterDetail\")) {\n this.setMasterDetailInfo(rowNode);\n }\n } else {\n rowNode.setDataAndId(void 0, void 0);\n rowNode.key = null;\n }\n if (treeData || rowNode.group) {\n this.setGroupDataIntoRowNode(rowNode);\n this.setChildCountIntoRowNode(rowNode);\n }\n if (_58.exists(data)) {\n rowNode.setRowHeight(this.gos.getRowHeightForNode(rowNode, false, cachedRowHeight).height);\n (_a = rowNode.sibling) == null ? void 0 : _a.setRowHeight(this.gos.getRowHeightForNode(rowNode.sibling, false, cachedRowHeight).height);\n }\n }\n setChildCountIntoRowNode(rowNode) {\n const getChildCount = this.gos.get(\"getChildCount\");\n if (getChildCount) {\n rowNode.setAllChildrenCount(getChildCount(rowNode.data));\n }\n }\n setGroupDataIntoRowNode(rowNode) {\n const groupDisplayCols = this.columnModel.getGroupDisplayColumns();\n const usingTreeData = this.gos.get(\"treeData\");\n groupDisplayCols.forEach((col) => {\n if (rowNode.groupData == null) {\n rowNode.groupData = {};\n }\n if (usingTreeData) {\n rowNode.groupData[col.getColId()] = rowNode.key;\n } else if (col.isRowGroupDisplayed(rowNode.rowGroupColumn.getId())) {\n const groupValue = this.valueService.getValue(rowNode.rowGroupColumn, rowNode);\n rowNode.groupData[col.getColId()] = groupValue;\n }\n });\n }\n clearDisplayIndex(rowNode) {\n rowNode.clearRowTopAndRowIndex();\n const hasChildStore = rowNode.hasChildren() && _58.exists(rowNode.childStore);\n if (hasChildStore) {\n const childStore = rowNode.childStore;\n childStore.clearDisplayIndexes();\n }\n const hasDetailNode = rowNode.master && rowNode.detailNode;\n if (hasDetailNode) {\n rowNode.detailNode.clearRowTopAndRowIndex();\n }\n }\n setDisplayIndex(rowNode, displayIndexSeq, nextRowTop) {\n rowNode.setRowIndex(displayIndexSeq.next());\n rowNode.setRowTop(nextRowTop.value);\n nextRowTop.value += rowNode.rowHeight;\n if (rowNode.footer) {\n return;\n }\n const hasDetailRow = rowNode.master;\n if (hasDetailRow) {\n if (rowNode.expanded && rowNode.detailNode) {\n rowNode.detailNode.setRowIndex(displayIndexSeq.next());\n rowNode.detailNode.setRowTop(nextRowTop.value);\n nextRowTop.value += rowNode.detailNode.rowHeight;\n } else if (rowNode.detailNode) {\n rowNode.detailNode.clearRowTopAndRowIndex();\n }\n }\n const hasChildStore = rowNode.hasChildren() && _58.exists(rowNode.childStore);\n if (hasChildStore) {\n const childStore = rowNode.childStore;\n if (rowNode.expanded) {\n childStore.setDisplayIndexes(displayIndexSeq, nextRowTop);\n } else {\n childStore.clearDisplayIndexes();\n }\n }\n }\n binarySearchForDisplayIndex(displayRowIndex, rowNodes) {\n let bottomPointer = 0;\n let topPointer = rowNodes.length - 1;\n if (_58.missing(topPointer) || _58.missing(bottomPointer)) {\n console.warn(`AG Grid: error: topPointer = ${topPointer}, bottomPointer = ${bottomPointer}`);\n return void 0;\n }\n while (true) {\n const midPointer = Math.floor((bottomPointer + topPointer) / 2);\n const currentRowNode = rowNodes[midPointer];\n if (currentRowNode.rowIndex === displayRowIndex) {\n return currentRowNode;\n }\n const expandedMasterRow = currentRowNode.master && currentRowNode.expanded;\n const detailNode = currentRowNode.detailNode;\n if (expandedMasterRow && detailNode && detailNode.rowIndex === displayRowIndex) {\n return currentRowNode.detailNode;\n }\n const childStore = currentRowNode.childStore;\n if (currentRowNode.expanded && childStore && childStore.isDisplayIndexInStore(displayRowIndex)) {\n return childStore.getRowUsingDisplayIndex(displayRowIndex);\n }\n if (currentRowNode.rowIndex < displayRowIndex) {\n bottomPointer = midPointer + 1;\n } else if (currentRowNode.rowIndex > displayRowIndex) {\n topPointer = midPointer - 1;\n } else {\n console.warn(`AG Grid: error: unable to locate rowIndex = ${displayRowIndex} in cache`);\n return void 0;\n }\n }\n }\n extractRowBounds(rowNode, index) {\n const extractRowBounds = (currentRowNode) => ({\n rowHeight: currentRowNode.rowHeight,\n rowTop: currentRowNode.rowTop\n });\n if (rowNode.rowIndex === index) {\n return extractRowBounds(rowNode);\n }\n if (rowNode.hasChildren() && rowNode.expanded && _58.exists(rowNode.childStore)) {\n const childStore = rowNode.childStore;\n if (childStore.isDisplayIndexInStore(index)) {\n return childStore.getRowBounds(index);\n }\n } else if (rowNode.master && rowNode.expanded && _58.exists(rowNode.detailNode)) {\n if (rowNode.detailNode.rowIndex === index) {\n return extractRowBounds(rowNode.detailNode);\n }\n }\n }\n getIndexAtPixel(rowNode, pixel) {\n if (rowNode.isPixelInRange(pixel)) {\n return rowNode.rowIndex;\n }\n const expandedMasterRow = rowNode.master && rowNode.expanded;\n const detailNode = rowNode.detailNode;\n if (expandedMasterRow && detailNode && detailNode.isPixelInRange(pixel)) {\n return rowNode.detailNode.rowIndex;\n }\n if (rowNode.hasChildren() && rowNode.expanded && _58.exists(rowNode.childStore)) {\n const childStore = rowNode.childStore;\n if (childStore.isPixelInRange(pixel)) {\n return childStore.getRowIndexAtPixel(pixel);\n }\n }\n return null;\n }\n createNodeIdPrefix(parentRowNode) {\n const parts = [];\n let rowNode = parentRowNode;\n while (rowNode && rowNode.level >= 0) {\n if (rowNode.key === \"\") {\n parts.push(GROUP_MISSING_KEY_ID);\n } else {\n parts.push(rowNode.key);\n }\n rowNode = rowNode.parent;\n }\n if (parts.length > 0) {\n return parts.reverse().join(\"-\");\n }\n return void 0;\n }\n checkOpenByDefault(rowNode) {\n return this.expansionService.checkOpenByDefault(rowNode);\n }\n};\n__decorateClass14([\n Autowired75(\"valueService\")\n], BlockUtils.prototype, \"valueService\", 2);\n__decorateClass14([\n Autowired75(\"columnModel\")\n], BlockUtils.prototype, \"columnModel\", 2);\n__decorateClass14([\n Autowired75(\"ssrmNodeManager\")\n], BlockUtils.prototype, \"nodeManager\", 2);\n__decorateClass14([\n Autowired75(\"beans\")\n], BlockUtils.prototype, \"beans\", 2);\n__decorateClass14([\n Autowired75(\"expansionService\")\n], BlockUtils.prototype, \"expansionService\", 2);\nBlockUtils = __decorateClass14([\n Bean45(\"ssrmBlockUtils\")\n], BlockUtils);\nvar NodeManager = class {\n constructor() {\n this.rowNodes = {};\n }\n addRowNode(rowNode) {\n const id = rowNode.id;\n if (this.rowNodes[id]) {\n console.warn(`AG Grid: Duplicate node id ${rowNode.id}. Row ID's are provided via the getRowId() callback. Please modify the getRowId() callback code to provide unique row id values.`);\n console.warn(\"first instance\", this.rowNodes[id].data);\n console.warn(\"second instance\", rowNode.data);\n }\n this.rowNodes[id] = rowNode;\n }\n removeNode(rowNode) {\n const id = rowNode.id;\n if (this.rowNodes[id]) {\n this.rowNodes[id] = void 0;\n }\n }\n clear() {\n this.rowNodes = {};\n }\n};\n__decorateClass14([\n PreDestroy52\n], NodeManager.prototype, \"clear\", 1);\nNodeManager = __decorateClass14([\n Bean54(\"ssrmNodeManager\")\n], NodeManager);\nvar TransactionManager = class extends BeanStub74 {\n constructor() {\n super(...arguments);\n this.asyncTransactions = [];\n }\n postConstruct() {\n if (!this.gos.isRowModelType(\"serverSide\")) {\n return;\n }\n }\n applyTransactionAsync(transaction, callback) {\n if (this.asyncTransactionsTimeout == null) {\n this.scheduleExecuteAsync();\n }\n this.asyncTransactions.push({ transaction, callback });\n }\n scheduleExecuteAsync() {\n const waitMillis = this.gos.getAsyncTransactionWaitMillis();\n this.asyncTransactionsTimeout = window.setTimeout(() => {\n this.executeAsyncTransactions();\n }, waitMillis);\n }\n executeAsyncTransactions() {\n if (!this.asyncTransactions) {\n return;\n }\n const resultFuncs = [];\n const resultsForEvent = [];\n const transactionsToRetry = [];\n let atLeastOneTransactionApplied = false;\n this.asyncTransactions.forEach((txWrapper) => {\n let result;\n const hasStarted = this.serverSideRowModel.executeOnStore(txWrapper.transaction.route, (cache) => {\n result = cache.applyTransaction(txWrapper.transaction);\n });\n if (!hasStarted) {\n result = { status: ServerSideTransactionResultStatus3.StoreNotStarted };\n } else if (result == void 0) {\n result = { status: ServerSideTransactionResultStatus3.StoreNotFound };\n }\n resultsForEvent.push(result);\n const retryTransaction = result.status == ServerSideTransactionResultStatus3.StoreLoading;\n if (retryTransaction) {\n transactionsToRetry.push(txWrapper);\n return;\n }\n if (txWrapper.callback) {\n resultFuncs.push(() => txWrapper.callback(result));\n }\n if (result.status === ServerSideTransactionResultStatus3.Applied) {\n atLeastOneTransactionApplied = true;\n }\n });\n if (resultFuncs.length > 0) {\n window.setTimeout(() => {\n resultFuncs.forEach((func) => func());\n }, 0);\n }\n this.asyncTransactionsTimeout = void 0;\n this.asyncTransactions = transactionsToRetry;\n if (atLeastOneTransactionApplied) {\n this.valueCache.onDataChanged();\n this.eventService.dispatchEvent({ type: Events46.EVENT_STORE_UPDATED });\n }\n if (resultsForEvent.length > 0) {\n const event = {\n type: Events46.EVENT_ASYNC_TRANSACTIONS_FLUSHED,\n results: resultsForEvent\n };\n this.eventService.dispatchEvent(event);\n }\n }\n flushAsyncTransactions() {\n if (this.asyncTransactionsTimeout != null) {\n clearTimeout(this.asyncTransactionsTimeout);\n }\n this.executeAsyncTransactions();\n }\n applyTransaction(transaction) {\n let res;\n const hasStarted = this.serverSideRowModel.executeOnStore(transaction.route, (store) => {\n res = store.applyTransaction(transaction);\n });\n if (!hasStarted) {\n return { status: ServerSideTransactionResultStatus3.StoreNotStarted };\n } else if (res) {\n this.valueCache.onDataChanged();\n if (res.remove) {\n const removedRowIds = res.remove.map((row) => row.id);\n this.selectionService.deleteSelectionStateFromParent(transaction.route || [], removedRowIds);\n }\n this.eventService.dispatchEvent({ type: Events46.EVENT_STORE_UPDATED });\n return res;\n } else {\n return { status: ServerSideTransactionResultStatus3.StoreNotFound };\n }\n }\n};\n__decorateClass14([\n Autowired85(\"rowNodeBlockLoader\")\n], TransactionManager.prototype, \"rowNodeBlockLoader\", 2);\n__decorateClass14([\n Autowired85(\"valueCache\")\n], TransactionManager.prototype, \"valueCache\", 2);\n__decorateClass14([\n Autowired85(\"rowModel\")\n], TransactionManager.prototype, \"serverSideRowModel\", 2);\n__decorateClass14([\n Autowired85(\"rowRenderer\")\n], TransactionManager.prototype, \"rowRenderer\", 2);\n__decorateClass14([\n Autowired85(\"selectionService\")\n], TransactionManager.prototype, \"selectionService\", 2);\n__decorateClass14([\n PostConstruct74\n], TransactionManager.prototype, \"postConstruct\", 1);\nTransactionManager = __decorateClass14([\n Bean64(\"ssrmTransactionManager\")\n], TransactionManager);\nvar ExpandListener = class extends BeanStub82 {\n postConstruct() {\n if (!this.gos.isRowModelType(\"serverSide\")) {\n return;\n }\n this.addManagedListener(this.eventService, Events55.EVENT_ROW_GROUP_OPENED, this.onRowGroupOpened.bind(this));\n }\n onRowGroupOpened(event) {\n const rowNode = event.node;\n if (rowNode.expanded) {\n if (rowNode.master) {\n this.createDetailNode(rowNode);\n } else if (_67.missing(rowNode.childStore)) {\n const storeParams = this.serverSideRowModel.getParams();\n rowNode.childStore = this.createBean(this.storeFactory.createStore(storeParams, rowNode));\n }\n } else if (this.gos.get(\"purgeClosedRowNodes\") && _67.exists(rowNode.childStore)) {\n rowNode.childStore = this.destroyBean(rowNode.childStore);\n }\n const storeUpdatedEvent = { type: Events55.EVENT_STORE_UPDATED };\n this.eventService.dispatchEvent(storeUpdatedEvent);\n }\n createDetailNode(masterNode) {\n if (_67.exists(masterNode.detailNode)) {\n return masterNode.detailNode;\n }\n const detailNode = new RowNode10(this.beans);\n detailNode.detail = true;\n detailNode.selectable = false;\n detailNode.parent = masterNode;\n if (_67.exists(masterNode.id)) {\n detailNode.id = \"detail_\" + masterNode.id;\n }\n detailNode.data = masterNode.data;\n detailNode.level = masterNode.level + 1;\n const defaultDetailRowHeight = 200;\n const rowHeight = this.gos.getRowHeightForNode(detailNode).height;\n detailNode.rowHeight = rowHeight ? rowHeight : defaultDetailRowHeight;\n masterNode.detailNode = detailNode;\n return detailNode;\n }\n};\n__decorateClass14([\n Autowired94(\"rowModel\")\n], ExpandListener.prototype, \"serverSideRowModel\", 2);\n__decorateClass14([\n Autowired94(\"ssrmStoreFactory\")\n], ExpandListener.prototype, \"storeFactory\", 2);\n__decorateClass14([\n Autowired94(\"beans\")\n], ExpandListener.prototype, \"beans\", 2);\n__decorateClass14([\n PostConstruct83\n], ExpandListener.prototype, \"postConstruct\", 1);\nExpandListener = __decorateClass14([\n Bean73(\"ssrmExpandListener\")\n], ExpandListener);\nvar SortListener = class extends BeanStub92 {\n postConstruct() {\n if (!this.gos.isRowModelType(\"serverSide\")) {\n return;\n }\n this.addManagedListener(this.eventService, Events65.EVENT_SORT_CHANGED, this.onSortChanged.bind(this));\n }\n onSortChanged() {\n const storeParams = this.serverSideRowModel.getParams();\n if (!storeParams) {\n return;\n }\n const newSortModel = this.sortController.getSortModel();\n const oldSortModel = storeParams.sortModel;\n const changedColumns = this.findChangedColumnsInSort(newSortModel, oldSortModel);\n const valueColChanged = this.listenerUtils.isSortingWithValueColumn(changedColumns);\n const secondaryColChanged = this.listenerUtils.isSortingWithSecondaryColumn(changedColumns);\n const params = {\n valueColChanged,\n secondaryColChanged,\n changedColumns\n };\n this.serverSideRowModel.refreshAfterSort(newSortModel, params);\n }\n // returns back all the cols that were effected by the sorting. eg if we were sorting by col A,\n // and now we are sorting by col B, the list of impacted cols should be A and B. so if a cache\n // is impacted by sorting on A or B then it needs to be refreshed. this includes where the cache\n // was previously sorted by A and then the A sort now needs to be cleared.\n findChangedColumnsInSort(newSortModel, oldSortModel) {\n let allColsInBothSorts = [];\n [newSortModel, oldSortModel].forEach((sortModel) => {\n if (sortModel) {\n const ids = sortModel.map((sm) => sm.colId);\n allColsInBothSorts = allColsInBothSorts.concat(ids);\n }\n });\n const differentSorts = (oldSortItem, newSortItem) => {\n const oldSort = oldSortItem ? oldSortItem.sort : null;\n const newSort = newSortItem ? newSortItem.sort : null;\n return oldSort !== newSort;\n };\n const differentIndexes = (oldSortItem, newSortItem) => {\n const oldIndex = oldSortItem ? oldSortModel.indexOf(oldSortItem) : -1;\n const newIndex = newSortItem ? newSortModel.indexOf(newSortItem) : -1;\n return oldIndex !== newIndex;\n };\n return allColsInBothSorts.filter((colId) => {\n const oldSortItem = oldSortModel.find((sm) => sm.colId === colId);\n const newSortItem = newSortModel.find((sm) => sm.colId === colId);\n return differentSorts(oldSortItem, newSortItem) || differentIndexes(oldSortItem, newSortItem);\n });\n }\n};\n__decorateClass14([\n Autowired104(\"sortController\")\n], SortListener.prototype, \"sortController\", 2);\n__decorateClass14([\n Autowired104(\"rowModel\")\n], SortListener.prototype, \"serverSideRowModel\", 2);\n__decorateClass14([\n Autowired104(\"ssrmListenerUtils\")\n], SortListener.prototype, \"listenerUtils\", 2);\n__decorateClass14([\n PostConstruct93\n], SortListener.prototype, \"postConstruct\", 1);\nSortListener = __decorateClass14([\n Bean82(\"ssrmSortService\")\n], SortListener);\nvar FilterListener = class extends BeanStub102 {\n postConstruct() {\n if (!this.gos.isRowModelType(\"serverSide\")) {\n return;\n }\n this.addManagedListener(this.eventService, Events75.EVENT_ADVANCED_FILTER_ENABLED_CHANGED, () => this.onFilterChanged(true));\n this.addManagedListener(this.eventService, Events75.EVENT_FILTER_CHANGED, () => this.onFilterChanged());\n }\n onFilterChanged(advancedFilterEnabledChanged) {\n const storeParams = this.serverSideRowModel.getParams();\n if (!storeParams) {\n return;\n }\n const oldModel = storeParams.filterModel;\n let newModel;\n let changedColumns;\n if (this.filterManager.isAdvancedFilterEnabled()) {\n newModel = this.filterManager.getAdvancedFilterModel();\n const oldColumns = advancedFilterEnabledChanged ? Object.keys(oldModel != null ? oldModel : {}) : this.getAdvancedFilterColumns(oldModel);\n const newColumns = this.getAdvancedFilterColumns(newModel);\n oldColumns.forEach((column) => newColumns.add(column));\n changedColumns = Array.from(newColumns);\n } else {\n newModel = this.filterManager.getFilterModel();\n if (advancedFilterEnabledChanged) {\n const oldColumns = this.getAdvancedFilterColumns(oldModel);\n Object.keys(newModel).forEach((column) => oldColumns.add(column));\n changedColumns = Array.from(oldColumns);\n } else {\n changedColumns = this.findChangedColumns(oldModel, newModel);\n }\n }\n const valueColChanged = this.listenerUtils.isSortingWithValueColumn(changedColumns);\n const secondaryColChanged = this.listenerUtils.isSortingWithSecondaryColumn(changedColumns);\n const params = {\n valueColChanged,\n secondaryColChanged,\n changedColumns\n };\n this.serverSideRowModel.refreshAfterFilter(newModel, params);\n }\n findChangedColumns(oldModel, newModel) {\n const allColKeysMap = {};\n Object.keys(oldModel).forEach((key) => allColKeysMap[key] = true);\n Object.keys(newModel).forEach((key) => allColKeysMap[key] = true);\n const res = [];\n Object.keys(allColKeysMap).forEach((key) => {\n const oldJson = JSON.stringify(oldModel[key]);\n const newJson = JSON.stringify(newModel[key]);\n const filterChanged = oldJson != newJson;\n if (filterChanged) {\n res.push(key);\n }\n });\n return res;\n }\n getAdvancedFilterColumns(model) {\n const columns = /* @__PURE__ */ new Set();\n if (!model) {\n return columns;\n }\n const processAdvancedFilterModel = (filterModel) => {\n if (filterModel.filterType === \"join\") {\n filterModel.conditions.forEach((condition) => processAdvancedFilterModel(condition));\n } else {\n columns.add(filterModel.colId);\n }\n };\n processAdvancedFilterModel(model);\n return columns;\n }\n};\n__decorateClass14([\n Autowired113(\"rowModel\")\n], FilterListener.prototype, \"serverSideRowModel\", 2);\n__decorateClass14([\n Autowired113(\"filterManager\")\n], FilterListener.prototype, \"filterManager\", 2);\n__decorateClass14([\n Autowired113(\"ssrmListenerUtils\")\n], FilterListener.prototype, \"listenerUtils\", 2);\n__decorateClass14([\n PostConstruct103\n], FilterListener.prototype, \"postConstruct\", 1);\nFilterListener = __decorateClass14([\n Bean92(\"ssrmFilterListener\")\n], FilterListener);\nvar StoreFactory = class {\n createStore(ssrmParams, parentNode) {\n const storeParams = this.getStoreParams(ssrmParams, parentNode);\n const CacheClass = storeParams.suppressInfiniteScroll ? FullStore : LazyStore;\n return new CacheClass(ssrmParams, storeParams, parentNode);\n }\n getStoreParams(ssrmParams, parentNode) {\n const userStoreParams = this.getLevelSpecificParams(parentNode);\n const infiniteScroll = this.isInfiniteScroll(userStoreParams);\n const cacheBlockSize = this.getBlockSize(infiniteScroll, userStoreParams);\n const maxBlocksInCache = this.getMaxBlocksInCache(infiniteScroll, ssrmParams, userStoreParams);\n const storeParams = {\n suppressInfiniteScroll: !infiniteScroll,\n cacheBlockSize,\n maxBlocksInCache\n };\n return storeParams;\n }\n getMaxBlocksInCache(infiniteScroll, ssrmParams, userStoreParams) {\n if (!infiniteScroll) {\n return void 0;\n }\n const maxBlocksInCache = userStoreParams && userStoreParams.maxBlocksInCache != null ? userStoreParams.maxBlocksInCache : this.gos.get(\"maxBlocksInCache\");\n const maxBlocksActive = maxBlocksInCache != null && maxBlocksInCache >= 0;\n if (!maxBlocksActive) {\n return void 0;\n }\n if (ssrmParams.dynamicRowHeight) {\n const message = \"Server Side Row Model does not support Dynamic Row Height and Cache Purging. Either a) remove getRowHeight() callback or b) remove maxBlocksInCache property. Purging has been disabled.\";\n _85.warnOnce(message);\n return void 0;\n }\n if (this.columnModel.isAutoRowHeightActive()) {\n const message = \"Server Side Row Model does not support Auto Row Height and Cache Purging. Either a) remove colDef.autoHeight or b) remove maxBlocksInCache property. Purging has been disabled.\";\n _85.warnOnce(message);\n return void 0;\n }\n return maxBlocksInCache;\n }\n getBlockSize(infiniteScroll, userStoreParams) {\n if (!infiniteScroll) {\n return void 0;\n }\n const blockSize = userStoreParams && userStoreParams.cacheBlockSize != null ? userStoreParams.cacheBlockSize : this.gos.get(\"cacheBlockSize\");\n if (blockSize != null && blockSize > 0) {\n return blockSize;\n } else {\n return 100;\n }\n }\n getLevelSpecificParams(parentNode) {\n const callback = this.gos.getCallback(\"getServerSideGroupLevelParams\");\n if (!callback) {\n return void 0;\n }\n const params = {\n level: parentNode.level + 1,\n parentRowNode: parentNode.level >= 0 ? parentNode : void 0,\n rowGroupColumns: this.columnModel.getRowGroupColumns(),\n pivotColumns: this.columnModel.getPivotColumns(),\n pivotMode: this.columnModel.isPivotMode()\n };\n const res = callback(params);\n return res;\n }\n isInfiniteScroll(storeParams) {\n const res = storeParams && storeParams.suppressInfiniteScroll != null ? storeParams.suppressInfiniteScroll : this.isSuppressServerSideInfiniteScroll();\n return !res;\n }\n isSuppressServerSideInfiniteScroll() {\n return this.gos.get(\"suppressServerSideInfiniteScroll\");\n }\n};\n__decorateClass14([\n Autowired123(\"gridOptionsService\")\n], StoreFactory.prototype, \"gos\", 2);\n__decorateClass14([\n Autowired123(\"columnModel\")\n], StoreFactory.prototype, \"columnModel\", 2);\nStoreFactory = __decorateClass14([\n Bean102(\"ssrmStoreFactory\")\n], StoreFactory);\nvar ListenerUtils = class {\n isSortingWithValueColumn(changedColumnsInSort) {\n const valueColIds = this.columnModel.getValueColumns().map((col) => col.getColId());\n for (let i = 0; i < changedColumnsInSort.length; i++) {\n if (valueColIds.indexOf(changedColumnsInSort[i]) > -1) {\n return true;\n }\n }\n return false;\n }\n isSortingWithSecondaryColumn(changedColumnsInSort) {\n if (!this.columnModel.getSecondaryColumns()) {\n return false;\n }\n const secondaryColIds = this.columnModel.getSecondaryColumns().map((col) => col.getColId());\n for (let i = 0; i < changedColumnsInSort.length; i++) {\n if (secondaryColIds.indexOf(changedColumnsInSort[i]) > -1) {\n return true;\n }\n }\n return false;\n }\n};\n__decorateClass14([\n Autowired133(\"columnModel\")\n], ListenerUtils.prototype, \"columnModel\", 2);\nListenerUtils = __decorateClass14([\n Bean112(\"ssrmListenerUtils\")\n], ListenerUtils);\nvar DefaultStrategy = class extends BeanStub112 {\n constructor() {\n super(...arguments);\n this.selectedState = { selectAll: false, toggledNodes: /* @__PURE__ */ new Set() };\n this.lastSelected = null;\n this.selectAllUsed = false;\n this.selectedNodes = {};\n }\n init() {\n this.rowSelection = this.gos.get(\"rowSelection\");\n this.addManagedPropertyListener(\"rowSelection\", (propChange) => {\n this.rowSelection = propChange.currentValue;\n });\n }\n getSelectedState() {\n return {\n selectAll: this.selectedState.selectAll,\n toggledNodes: [...this.selectedState.toggledNodes]\n };\n }\n setSelectedState(state) {\n const newState = {\n selectAll: false,\n toggledNodes: /* @__PURE__ */ new Set()\n };\n if (typeof state !== \"object\") {\n console.error(\"AG Grid: The provided selection state should be an object.\");\n return;\n }\n if (\"selectAll\" in state && typeof state.selectAll === \"boolean\") {\n newState.selectAll = state.selectAll;\n } else {\n console.error(\"AG Grid: Select all status should be of boolean type.\");\n return;\n }\n if (\"toggledNodes\" in state && Array.isArray(state.toggledNodes)) {\n state.toggledNodes.forEach((key) => {\n if (typeof key === \"string\") {\n newState.toggledNodes.add(key);\n } else {\n console.warn(`AG Grid: Provided ids must be of string type. Invalid id provided: ${key}`);\n }\n });\n } else {\n console.error(\"AG Grid: `toggledNodes` must be an array of string ids.\");\n return;\n }\n this.selectedState = newState;\n }\n deleteSelectionStateFromParent(parentPath, removedNodeIds) {\n if (this.selectedState.toggledNodes.size === 0) {\n return false;\n }\n let anyNodesToggled = false;\n removedNodeIds.forEach((id) => {\n if (this.selectedState.toggledNodes.delete(id)) {\n anyNodesToggled = true;\n }\n });\n return anyNodesToggled;\n }\n setNodesSelected(params) {\n if (params.nodes.length === 0)\n return 0;\n const onlyThisNode = params.clearSelection && params.newValue && !params.rangeSelect;\n if (this.rowSelection !== \"multiple\" || onlyThisNode) {\n if (params.nodes.length > 1) {\n throw new Error(\"AG Grid: cannot select multiple rows when rowSelection is set to 'single'\");\n }\n const node = params.nodes[0];\n if (params.newValue) {\n this.selectedNodes = { [node.id]: node };\n this.selectedState = {\n selectAll: false,\n toggledNodes: /* @__PURE__ */ new Set([node.id])\n };\n } else {\n this.selectedNodes = {};\n this.selectedState = {\n selectAll: false,\n toggledNodes: /* @__PURE__ */ new Set()\n };\n }\n this.lastSelected = node.id;\n return 1;\n }\n const updateNodeState = (node) => {\n if (params.newValue) {\n this.selectedNodes[node.id] = node;\n } else {\n delete this.selectedNodes[node.id];\n }\n const isNodeSelectable = node.selectable;\n const doesNodeConform = params.newValue === this.selectedState.selectAll;\n if (doesNodeConform || !isNodeSelectable) {\n this.selectedState.toggledNodes.delete(node.id);\n return;\n }\n this.selectedState.toggledNodes.add(node.id);\n };\n if (params.rangeSelect && this.lastSelected) {\n if (params.nodes.length > 1) {\n throw new Error(\"AG Grid: cannot select multiple rows when using rangeSelect\");\n }\n const node = params.nodes[0];\n const lastSelectedNode = this.rowModel.getRowNode(this.lastSelected);\n this.rowModel.getNodesInRangeForSelection(node, lastSelectedNode != null ? lastSelectedNode : null).forEach(updateNodeState);\n this.lastSelected = node.id;\n return 1;\n }\n params.nodes.forEach(updateNodeState);\n this.lastSelected = params.nodes[params.nodes.length - 1].id;\n return 1;\n }\n processNewRow(node) {\n if (this.selectedNodes[node.id]) {\n this.selectedNodes[node.id] = node;\n }\n }\n isNodeSelected(node) {\n const isToggled = this.selectedState.toggledNodes.has(node.id);\n return this.selectedState.selectAll ? !isToggled : isToggled;\n }\n getSelectedNodes() {\n if (this.selectAllUsed) {\n console.warn(\n `AG Grid: getSelectedNodes and getSelectedRows functions cannot be used with select all functionality with the server-side row model.\n Use \\`api.getServerSideSelectionState()\\` instead.`\n );\n }\n return Object.values(this.selectedNodes);\n }\n getSelectedRows() {\n return this.getSelectedNodes().map((node) => node.data);\n }\n getSelectionCount() {\n if (this.selectedState.selectAll) {\n return -1;\n }\n return this.selectedState.toggledNodes.size;\n }\n clearOtherNodes(rowNodeToKeepSelected, source) {\n const clearedRows = this.selectedState.selectAll ? 1 : this.selectedState.toggledNodes.size - 1;\n this.selectedState = {\n selectAll: false,\n toggledNodes: /* @__PURE__ */ new Set([rowNodeToKeepSelected.id])\n };\n this.rowModel.forEachNode((node) => {\n if (node !== rowNodeToKeepSelected) {\n node.selectThisNode(false, void 0, source);\n }\n });\n const event = {\n type: Events84.EVENT_SELECTION_CHANGED,\n source\n };\n this.eventService.dispatchEvent(event);\n return clearedRows;\n }\n isEmpty() {\n var _a;\n return !this.selectedState.selectAll && !((_a = this.selectedState.toggledNodes) == null ? void 0 : _a.size);\n }\n selectAllRowNodes(params) {\n this.selectedState = { selectAll: true, toggledNodes: /* @__PURE__ */ new Set() };\n this.selectedNodes = {};\n this.selectAllUsed = true;\n }\n deselectAllRowNodes(params) {\n this.selectedState = { selectAll: false, toggledNodes: /* @__PURE__ */ new Set() };\n this.selectedNodes = {};\n }\n getSelectAllState(justFiltered, justCurrentPage) {\n if (this.selectedState.selectAll) {\n if (this.selectedState.toggledNodes.size > 0) {\n return null;\n }\n return true;\n }\n if (this.selectedState.toggledNodes.size > 0) {\n return null;\n }\n return false;\n }\n};\n__decorateClass14([\n Autowired142(\"rowModel\")\n], DefaultStrategy.prototype, \"rowModel\", 2);\n__decorateClass14([\n PostConstruct113\n], DefaultStrategy.prototype, \"init\", 1);\nvar GroupSelectsChildrenStrategy = class extends BeanStub122 {\n constructor() {\n super(...arguments);\n this.selectedState = { selectAllChildren: false, toggledNodes: /* @__PURE__ */ new Map() };\n this.lastSelected = null;\n }\n init() {\n this.addManagedListener(this.eventService, Events93.EVENT_MODEL_UPDATED, () => this.removeRedundantState());\n this.addManagedListener(this.eventService, Events93.EVENT_COLUMN_ROW_GROUP_CHANGED, () => this.selectionService.reset(\"rowGroupChanged\"));\n }\n getSelectedState() {\n const treeData = this.gos.get(\"treeData\");\n const recursivelySerializeState = (state, level, nodeId) => {\n const normalisedState = {\n nodeId\n };\n if (treeData || level <= this.columnModel.getRowGroupColumns().length) {\n normalisedState.selectAllChildren = state.selectAllChildren;\n }\n if (state.toggledNodes.size) {\n const toggledNodes = [];\n state.toggledNodes.forEach((value, key) => {\n const newState = recursivelySerializeState(value, level + 1, key);\n toggledNodes.push(newState);\n });\n normalisedState.toggledNodes = toggledNodes;\n }\n return normalisedState;\n };\n return recursivelySerializeState(this.selectedState, 0);\n }\n setSelectedState(state) {\n const recursivelyDeserializeState = (normalisedState, parentSelected) => {\n var _a, _b;\n if (typeof normalisedState !== \"object\") {\n throw new Error(\"AG Grid: Each provided state object must be an object.\");\n }\n if (\"selectAllChildren\" in normalisedState && typeof normalisedState.selectAllChildren !== \"boolean\") {\n throw new Error(\"AG Grid: `selectAllChildren` must be a boolean value or undefined.\");\n }\n if (\"toggledNodes\" in normalisedState) {\n if (!Array.isArray(normalisedState.toggledNodes)) {\n throw new Error(\"AG Grid: `toggledNodes` must be an array.\");\n }\n const allHaveIds = normalisedState.toggledNodes.every((innerState) => typeof innerState === \"object\" && \"nodeId\" in innerState && typeof innerState.nodeId === \"string\");\n if (!allHaveIds) {\n throw new Error(\"AG Grid: Every `toggledNode` requires an associated string id.\");\n }\n }\n const isThisNodeSelected = (_a = normalisedState.selectAllChildren) != null ? _a : !parentSelected;\n const convertedChildren = (_b = normalisedState.toggledNodes) == null ? void 0 : _b.map((innerState) => [innerState.nodeId, recursivelyDeserializeState(innerState, isThisNodeSelected)]);\n const doesRedundantStateExist = convertedChildren == null ? void 0 : convertedChildren.some(([_94, innerState]) => isThisNodeSelected === innerState.selectAllChildren && innerState.toggledNodes.size === 0);\n if (doesRedundantStateExist) {\n throw new Error(`\n AG Grid: AG Grid: Row selection state could not be parsed due to invalid data. Ensure all child state has toggledNodes or does not conform with the parent rule.\n Please rebuild the selection state and reapply it.\n `);\n }\n return {\n selectAllChildren: isThisNodeSelected,\n toggledNodes: new Map(convertedChildren)\n };\n };\n try {\n this.selectedState = recursivelyDeserializeState(state, !!state.selectAllChildren);\n } catch (e) {\n console.error(e.message);\n }\n }\n deleteSelectionStateFromParent(parentRoute, removedNodeIds) {\n let parentState = this.selectedState;\n const remainingRoute = [...parentRoute];\n while (parentState && remainingRoute.length) {\n parentState = parentState.toggledNodes.get(remainingRoute.pop());\n }\n if (!parentState) {\n return false;\n }\n let anyStateChanged = false;\n removedNodeIds.forEach((id) => {\n if (parentState == null ? void 0 : parentState.toggledNodes.delete(id)) {\n anyStateChanged = true;\n }\n });\n if (anyStateChanged) {\n this.removeRedundantState();\n }\n return anyStateChanged;\n }\n setNodesSelected(params) {\n const _a = params, { nodes } = _a, other = __objRest2(_a, [\"nodes\"]);\n if (nodes.length === 0)\n return 0;\n if (params.rangeSelect) {\n if (nodes.length > 1) {\n throw new Error(\"AG Grid: cannot select multiple rows when using rangeSelect\");\n }\n const node = nodes[0];\n const rangeOfNodes = this.rowModel.getNodesInRangeForSelection(node, this.lastSelected);\n const routes = rangeOfNodes.map(this.getRouteToNode).sort((a, b) => b.length - a.length);\n const completedRoutes = /* @__PURE__ */ new Set();\n routes.forEach((route) => {\n if (completedRoutes.has(route[route.length - 1])) {\n return;\n }\n route.forEach((part) => completedRoutes.add(part));\n this.recursivelySelectNode(route, this.selectedState, __spreadValues12({ node }, other));\n });\n this.removeRedundantState();\n this.lastSelected = node;\n return 1;\n }\n params.nodes.forEach((node) => {\n const idPathToNode = this.getRouteToNode(node);\n this.recursivelySelectNode(idPathToNode, this.selectedState, __spreadProps9(__spreadValues12({}, other), { node }));\n });\n this.removeRedundantState();\n this.lastSelected = params.nodes[params.nodes.length - 1];\n return 1;\n }\n isNodeSelected(node) {\n const path = this.getRouteToNode(node);\n return this.isNodePathSelected(path, this.selectedState);\n }\n isNodePathSelected([nextNode, ...nodes], state) {\n if (nodes.length === 0) {\n const isToggled = state.toggledNodes.has(nextNode.id);\n if (nextNode.hasChildren()) {\n const groupState = state.toggledNodes.get(nextNode.id);\n if (groupState && groupState.toggledNodes.size) {\n return void 0;\n }\n }\n return state.selectAllChildren ? !isToggled : isToggled;\n }\n if (state.toggledNodes.has(nextNode.id)) {\n const nextState = state.toggledNodes.get(nextNode.id);\n if (nextState) {\n return this.isNodePathSelected(nodes, nextState);\n }\n }\n return !!state.selectAllChildren;\n }\n getRouteToNode(node) {\n const pathToNode = [];\n let tempNode = node;\n while (tempNode.parent) {\n pathToNode.push(tempNode);\n tempNode = tempNode.parent;\n }\n return pathToNode.reverse();\n }\n removeRedundantState() {\n if (this.filterManager.isAnyFilterPresent()) {\n return;\n }\n const forEachNodeStateDepthFirst = (state = this.selectedState, thisKey, parentState) => {\n state.toggledNodes.forEach((value, key) => {\n forEachNodeStateDepthFirst(value, key, state);\n });\n if (thisKey) {\n const thisRow = this.rowModel.getRowNode(thisKey);\n const thisRowStore = thisRow == null ? void 0 : thisRow.childStore;\n const isStoreSizeKnown = thisRowStore == null ? void 0 : thisRowStore.isLastRowIndexKnown();\n if (isStoreSizeKnown) {\n const possibleAllNodesToggled = state.toggledNodes.size >= thisRowStore.getRowCount();\n if (possibleAllNodesToggled) {\n for (const childState of state.toggledNodes.entries()) {\n const [key, value] = childState;\n if (value.toggledNodes.size > 0) {\n return;\n }\n const rowDoesNotExist = !this.rowModel.getRowNode(key);\n if (rowDoesNotExist) {\n return;\n }\n }\n state.selectAllChildren = !state.selectAllChildren;\n state.toggledNodes.clear();\n }\n }\n }\n const hasNoToggledRows = state.toggledNodes.size === 0;\n const isIdenticalToParent = (parentState == null ? void 0 : parentState.selectAllChildren) === state.selectAllChildren;\n if (hasNoToggledRows && isIdenticalToParent) {\n parentState == null ? void 0 : parentState.toggledNodes.delete(thisKey);\n }\n };\n forEachNodeStateDepthFirst();\n }\n recursivelySelectNode([nextNode, ...nodes], selectedState, params) {\n if (!nextNode) {\n return;\n }\n const isLastNode = !nodes.length;\n if (isLastNode) {\n const isNodeSelectable = nextNode.selectable;\n const doesNodeConform = selectedState.selectAllChildren === params.newValue;\n if (doesNodeConform || !isNodeSelectable) {\n selectedState.toggledNodes.delete(nextNode.id);\n return;\n }\n const newState = {\n selectAllChildren: params.newValue,\n toggledNodes: /* @__PURE__ */ new Map()\n };\n selectedState.toggledNodes.set(nextNode.id, newState);\n return;\n }\n const doesStateAlreadyExist = selectedState.toggledNodes.has(nextNode.id);\n const childState = doesStateAlreadyExist ? selectedState.toggledNodes.get(nextNode.id) : {\n selectAllChildren: selectedState.selectAllChildren,\n toggledNodes: /* @__PURE__ */ new Map()\n };\n if (!doesStateAlreadyExist) {\n selectedState.toggledNodes.set(nextNode.id, childState);\n }\n this.recursivelySelectNode(nodes, childState, params);\n if (selectedState.selectAllChildren === childState.selectAllChildren && childState.toggledNodes.size === 0) {\n selectedState.toggledNodes.delete(nextNode.id);\n }\n }\n getSelectedNodes() {\n console.warn(\n `AG Grid: \\`getSelectedNodes\\` and \\`getSelectedRows\\` functions cannot be used with \\`groupSelectsChildren\\` and the server-side row model.\n Use \\`api.getServerSideSelectionState()\\` instead.`\n );\n const selectedNodes = [];\n this.rowModel.forEachNode((node) => {\n if (node.isSelected()) {\n selectedNodes.push(node);\n }\n });\n return selectedNodes;\n }\n processNewRow(node) {\n }\n getSelectedRows() {\n return this.getSelectedNodes().map((node) => node.data);\n }\n getSelectionCount() {\n return -1;\n }\n isEmpty() {\n var _a;\n return !this.selectedState.selectAllChildren && !((_a = this.selectedState.toggledNodes) == null ? void 0 : _a.size);\n }\n selectAllRowNodes(params) {\n this.selectedState = { selectAllChildren: true, toggledNodes: /* @__PURE__ */ new Map() };\n }\n deselectAllRowNodes(params) {\n this.selectedState = { selectAllChildren: false, toggledNodes: /* @__PURE__ */ new Map() };\n }\n getSelectAllState(justFiltered, justCurrentPage) {\n if (this.selectedState.selectAllChildren) {\n if (this.selectedState.toggledNodes.size > 0) {\n return null;\n }\n return true;\n }\n if (this.selectedState.toggledNodes.size > 0) {\n return null;\n }\n return false;\n }\n};\n__decorateClass14([\n Autowired152(\"rowModel\")\n], GroupSelectsChildrenStrategy.prototype, \"rowModel\", 2);\n__decorateClass14([\n Autowired152(\"columnModel\")\n], GroupSelectsChildrenStrategy.prototype, \"columnModel\", 2);\n__decorateClass14([\n Autowired152(\"filterManager\")\n], GroupSelectsChildrenStrategy.prototype, \"filterManager\", 2);\n__decorateClass14([\n Autowired152(\"rowModel\")\n], GroupSelectsChildrenStrategy.prototype, \"serverSideRowModel\", 2);\n__decorateClass14([\n Autowired152(\"selectionService\")\n], GroupSelectsChildrenStrategy.prototype, \"selectionService\", 2);\n__decorateClass14([\n PostConstruct123\n], GroupSelectsChildrenStrategy.prototype, \"init\", 1);\nvar ServerSideSelectionService = class extends BeanStub132 {\n init() {\n const groupSelectsChildren = this.gos.get(\"groupSelectsChildren\");\n this.addManagedPropertyListener(\"groupSelectsChildren\", (propChange) => {\n this.destroyBean(this.selectionStrategy);\n const StrategyClazz2 = !propChange.currentValue ? DefaultStrategy : GroupSelectsChildrenStrategy;\n this.selectionStrategy = this.createManagedBean(new StrategyClazz2());\n this.shotgunResetNodeSelectionState();\n const event = {\n type: Events102.EVENT_SELECTION_CHANGED,\n source: \"api\"\n };\n this.eventService.dispatchEvent(event);\n });\n this.addManagedPropertyListener(\"rowSelection\", () => this.deselectAllRowNodes({ source: \"api\" }));\n const StrategyClazz = !groupSelectsChildren ? DefaultStrategy : GroupSelectsChildrenStrategy;\n this.selectionStrategy = this.createManagedBean(new StrategyClazz());\n }\n getSelectionState() {\n return this.selectionStrategy.getSelectedState();\n }\n setSelectionState(state, source) {\n if (Array.isArray(state)) {\n return;\n }\n this.selectionStrategy.setSelectedState(state);\n this.shotgunResetNodeSelectionState();\n const event = {\n type: Events102.EVENT_SELECTION_CHANGED,\n source\n };\n this.eventService.dispatchEvent(event);\n }\n setNodesSelected(params) {\n const _a = params, { nodes } = _a, otherParams = __objRest2(_a, [\"nodes\"]);\n const rowSelection = this.gos.get(\"rowSelection\");\n if (nodes.length > 1 && rowSelection !== \"multiple\") {\n console.warn(`AG Grid: cannot multi select while rowSelection='single'`);\n return 0;\n }\n if (nodes.length > 1 && params.rangeSelect) {\n console.warn(`AG Grid: cannot use range selection when multi selecting rows`);\n return 0;\n }\n const adjustedParams = __spreadValues12({\n nodes: nodes.filter((node) => node.selectable)\n }, otherParams);\n if (!adjustedParams.nodes.length) {\n return 0;\n }\n const changedNodes = this.selectionStrategy.setNodesSelected(adjustedParams);\n this.shotgunResetNodeSelectionState(adjustedParams.source);\n const event = {\n type: Events102.EVENT_SELECTION_CHANGED,\n source: adjustedParams.source\n };\n this.eventService.dispatchEvent(event);\n return changedNodes;\n }\n /**\n * Deletes the selection state for a set of nodes, for use after deleting nodes via\n * transaction. As this is designed for transactions, all nodes should belong to the same group.\n */\n deleteSelectionStateFromParent(storeRoute, removedNodeIds) {\n const stateChanged = this.selectionStrategy.deleteSelectionStateFromParent(storeRoute, removedNodeIds);\n if (!stateChanged) {\n return;\n }\n this.shotgunResetNodeSelectionState();\n const event = {\n type: Events102.EVENT_SELECTION_CHANGED,\n source: \"api\"\n };\n this.eventService.dispatchEvent(event);\n }\n shotgunResetNodeSelectionState(source) {\n this.rowModel.forEachNode((node) => {\n if (node.stub) {\n return;\n }\n const isNodeSelected = this.selectionStrategy.isNodeSelected(node);\n if (isNodeSelected !== node.isSelected()) {\n node.selectThisNode(isNodeSelected, void 0, source);\n }\n });\n }\n getSelectedNodes() {\n return this.selectionStrategy.getSelectedNodes();\n }\n getSelectedRows() {\n return this.selectionStrategy.getSelectedRows();\n }\n getSelectionCount() {\n return this.selectionStrategy.getSelectionCount();\n }\n syncInRowNode(rowNode, oldNode) {\n this.selectionStrategy.processNewRow(rowNode);\n const isNodeSelected = this.selectionStrategy.isNodeSelected(rowNode);\n if (isNodeSelected != false && !rowNode.selectable) {\n this.selectionStrategy.setNodesSelected({\n nodes: [rowNode],\n newValue: false,\n source: \"api\"\n });\n this.shotgunResetNodeSelectionState();\n const event = {\n type: Events102.EVENT_SELECTION_CHANGED,\n source: \"api\"\n };\n this.eventService.dispatchEvent(event);\n return;\n }\n rowNode.setSelectedInitialValue(isNodeSelected);\n }\n reset() {\n this.selectionStrategy.deselectAllRowNodes({ source: \"api\" });\n }\n isEmpty() {\n return this.selectionStrategy.isEmpty();\n }\n hasNodesToSelect(justFiltered = false, justCurrentPage = false) {\n return true;\n }\n selectAllRowNodes(params) {\n if (params.justCurrentPage || params.justFiltered) {\n console.warn(\"AG Grid: selecting just filtered only works when gridOptions.rowModelType='clientSide'\");\n }\n this.selectionStrategy.selectAllRowNodes(params);\n this.rowModel.forEachNode((node) => {\n if (node.stub) {\n return;\n }\n node.selectThisNode(true, void 0, params.source);\n });\n const event = {\n type: Events102.EVENT_SELECTION_CHANGED,\n source: params.source\n };\n this.eventService.dispatchEvent(event);\n }\n deselectAllRowNodes(params) {\n if (params.justCurrentPage || params.justFiltered) {\n console.warn(\"AG Grid: selecting just filtered only works when gridOptions.rowModelType='clientSide'\");\n }\n this.selectionStrategy.deselectAllRowNodes(params);\n this.rowModel.forEachNode((node) => {\n if (node.stub) {\n return;\n }\n node.selectThisNode(false, void 0, params.source);\n });\n const event = {\n type: Events102.EVENT_SELECTION_CHANGED,\n source: params.source\n };\n this.eventService.dispatchEvent(event);\n }\n getSelectAllState(justFiltered, justCurrentPage) {\n return this.selectionStrategy.getSelectAllState(justFiltered, justCurrentPage);\n }\n // used by CSRM\n updateGroupsFromChildrenSelections(source, changedPath) {\n return false;\n }\n // used by CSRM\n getBestCostNodeSelection() {\n console.warn(\"AG Grid: calling gridApi.getBestCostNodeSelection() is only possible when using rowModelType=`clientSide`.\");\n return void 0;\n }\n // used by CSRM\n filterFromSelection() {\n return;\n }\n};\n__decorateClass14([\n Autowired162(\"rowModel\")\n], ServerSideSelectionService.prototype, \"rowModel\", 2);\n__decorateClass14([\n PostConstruct133\n], ServerSideSelectionService.prototype, \"init\", 1);\nServerSideSelectionService = __decorateClass14([\n Bean122(\"selectionService\")\n], ServerSideSelectionService);\nvar VERSION15 = \"31.3.2\";\nvar ServerSideExpansionService = class extends ExpansionService {\n constructor() {\n super(...arguments);\n this.queuedRowIds = /* @__PURE__ */ new Set();\n }\n postConstruct() {\n super.postConstruct();\n this.addManagedListener(this.eventService, Events112.EVENT_COLUMN_ROW_GROUP_CHANGED, () => {\n this.queuedRowIds.clear();\n });\n }\n checkOpenByDefault(rowNode) {\n if (!rowNode.isExpandable()) {\n return;\n }\n if (this.queuedRowIds.has(rowNode.id)) {\n this.queuedRowIds.delete(rowNode.id);\n rowNode.setExpanded(true);\n return;\n }\n const userFunc = this.gos.getCallback(\"isServerSideGroupOpenByDefault\");\n if (!userFunc) {\n return;\n }\n const params = {\n data: rowNode.data,\n rowNode\n };\n const userFuncRes = userFunc(params);\n if (userFuncRes) {\n rowNode.setExpanded(true);\n }\n }\n expandRows(rowIds) {\n rowIds.forEach((rowId) => {\n const rowNode = this.serverSideRowModel.getRowNode(rowId);\n if (rowNode) {\n rowNode.setExpanded(true);\n } else {\n this.queuedRowIds.add(rowId);\n }\n });\n }\n expandAll(value) {\n this.serverSideRowModel.expandAll(value);\n }\n onGroupExpandedOrCollapsed() {\n }\n};\n__decorateClass14([\n Autowired172(\"rowModel\")\n], ServerSideExpansionService.prototype, \"serverSideRowModel\", 2);\nServerSideExpansionService = __decorateClass14([\n Bean132(\"expansionService\")\n], ServerSideExpansionService);\nvar ServerSideRowModelModule = {\n version: VERSION15,\n moduleName: ModuleNames26.ServerSideRowModelModule,\n rowModel: \"serverSide\",\n beans: [\n ServerSideRowModel,\n ExpandListener,\n SortListener,\n StoreUtils,\n BlockUtils,\n NodeManager,\n TransactionManager,\n FilterListener,\n StoreFactory,\n ListenerUtils,\n ServerSideSelectionService,\n ServerSideExpansionService,\n LazyBlockLoadingService\n ],\n dependantModules: [\n EnterpriseCoreModule\n ]\n};\n\n// enterprise-modules/set-filter/dist/package/main.esm.mjs\nimport { ModuleNames as ModuleNames16 } from \"ag-grid-community\";\nimport {\n Autowired as Autowired217,\n Events as Events210,\n ProvidedFilter as ProvidedFilter2,\n RefSelector as RefSelector27,\n VirtualList as VirtualList4,\n AgPromise as AgPromise32,\n KeyCode as KeyCode11,\n _ as _59,\n GROUP_AUTO_COLUMN_ID as GROUP_AUTO_COLUMN_ID2\n} from \"ag-grid-community\";\nimport {\n _ as _315,\n AgPromise as AgPromise24,\n TextFilter,\n EventService as EventService2\n} from \"ag-grid-community\";\nimport {\n AgPromise as AgPromise6,\n Events as Events20,\n _ as _60\n} from \"ag-grid-community\";\nimport { _ as _218 } from \"ag-grid-community\";\nimport {\n _ as _412,\n Autowired as Autowired68,\n Component as Component57,\n PostConstruct as PostConstruct65,\n RefSelector as RefSelector21\n} from \"ag-grid-community\";\nimport {\n Autowired as Autowired316,\n Component as Component214,\n RefSelector as RefSelector37\n} from \"ag-grid-community\";\nvar __defProp15 = Object.defineProperty;\nvar __getOwnPropDesc15 = Object.getOwnPropertyDescriptor;\nvar __decorateClass15 = (decorators, target, key, kind) => {\n var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc15(target, key) : target;\n for (var i = decorators.length - 1, decorator; i >= 0; i--)\n if (decorator = decorators[i])\n result = (kind ? decorator(target, key, result) : decorator(result)) || result;\n if (kind && result)\n __defProp15(target, key, result);\n return result;\n};\nvar ClientSideValuesExtractor = class {\n constructor(rowModel, filterParams, createKey, caseFormat, columnModel, valueService, treeDataOrGrouping, treeData, getDataPath, groupAllowUnbalanced, addManagedListener) {\n this.rowModel = rowModel;\n this.filterParams = filterParams;\n this.createKey = createKey;\n this.caseFormat = caseFormat;\n this.columnModel = columnModel;\n this.valueService = valueService;\n this.treeDataOrGrouping = treeDataOrGrouping;\n this.treeData = treeData;\n this.getDataPath = getDataPath;\n this.groupAllowUnbalanced = groupAllowUnbalanced;\n this.addManagedListener = addManagedListener;\n }\n extractUniqueValuesAsync(predicate, existingValues) {\n return new AgPromise6((resolve) => {\n if (this.rowModel.isRowDataLoaded()) {\n resolve(this.extractUniqueValues(predicate, existingValues));\n } else {\n const destroyFunc = this.addManagedListener(Events20.EVENT_ROW_COUNT_READY, () => {\n destroyFunc == null ? void 0 : destroyFunc();\n resolve(this.extractUniqueValues(predicate, existingValues));\n });\n }\n });\n }\n extractUniqueValues(predicate, existingValues) {\n const values = /* @__PURE__ */ new Map();\n const existingFormattedKeys = this.extractExistingFormattedKeys(existingValues);\n const formattedKeys = /* @__PURE__ */ new Set();\n const treeData = this.treeData && !!this.getDataPath;\n const groupedCols = this.columnModel.getRowGroupColumns();\n const addValue = (unformattedKey, value) => {\n const formattedKey = this.caseFormat(unformattedKey);\n if (!formattedKeys.has(formattedKey)) {\n formattedKeys.add(formattedKey);\n let keyToAdd = unformattedKey;\n let valueToAdd = _60.makeNull(value);\n const existingUnformattedKey = existingFormattedKeys == null ? void 0 : existingFormattedKeys.get(formattedKey);\n if (existingUnformattedKey != null) {\n keyToAdd = existingUnformattedKey;\n valueToAdd = existingValues.get(existingUnformattedKey);\n }\n values.set(keyToAdd, valueToAdd);\n }\n };\n this.rowModel.forEachLeafNode((node) => {\n if (!node.data || !predicate(node)) {\n return;\n }\n if (this.treeDataOrGrouping) {\n this.addValueForTreeDataOrGrouping(node, treeData, groupedCols, addValue);\n return;\n }\n let value = this.getValue(node);\n if (this.filterParams.convertValuesToStrings) {\n this.addValueForConvertValuesToString(node, value, addValue);\n return;\n }\n if (value != null && Array.isArray(value)) {\n value.forEach((x) => {\n addValue(this.createKey(x, node), x);\n });\n if (value.length === 0) {\n addValue(null, null);\n }\n } else {\n addValue(this.createKey(value, node), value);\n }\n });\n return values;\n }\n addValueForConvertValuesToString(node, value, addValue) {\n const key = this.createKey(value, node);\n if (key != null && Array.isArray(key)) {\n key.forEach((part) => {\n const processedPart = _60.toStringOrNull(_60.makeNull(part));\n addValue(processedPart, processedPart);\n });\n if (key.length === 0) {\n addValue(null, null);\n }\n } else {\n addValue(key, key);\n }\n }\n addValueForTreeDataOrGrouping(node, treeData, groupedCols, addValue) {\n var _a;\n let dataPath;\n if (treeData) {\n if ((_a = node.childrenAfterGroup) == null ? void 0 : _a.length) {\n return;\n }\n dataPath = this.getDataPath(node.data);\n } else {\n dataPath = groupedCols.map((groupCol) => this.valueService.getKeyForNode(groupCol, node));\n dataPath.push(this.getValue(node));\n }\n if (dataPath) {\n dataPath = dataPath.map((treeKey) => _60.toStringOrNull(_60.makeNull(treeKey)));\n }\n if (!treeData && this.groupAllowUnbalanced && (dataPath == null ? void 0 : dataPath.some((treeKey) => treeKey == null))) {\n dataPath = dataPath.filter((treeKey) => treeKey != null);\n }\n addValue(this.createKey(dataPath), dataPath);\n }\n getValue(node) {\n return this.filterParams.getValue(node);\n }\n extractExistingFormattedKeys(existingValues) {\n if (!existingValues) {\n return null;\n }\n const existingFormattedKeys = /* @__PURE__ */ new Map();\n existingValues.forEach((_value, key) => {\n existingFormattedKeys.set(this.caseFormat(key), key);\n });\n return existingFormattedKeys;\n }\n};\nvar SetFilterDisplayValue = class {\n};\nSetFilterDisplayValue.SELECT_ALL = \"__AG_SELECT_ALL__\";\nSetFilterDisplayValue.ADD_SELECTION_TO_FILTER = \"__AG_ADD_SELECTION_TO_FILTER__\";\nvar FlatSetDisplayValueModel = class {\n constructor(valueService, valueFormatter, formatter, column) {\n this.valueService = valueService;\n this.valueFormatter = valueFormatter;\n this.formatter = formatter;\n this.column = column;\n this.displayedKeys = [];\n }\n updateDisplayedValuesToAllAvailable(_getValue, _allKeys, availableKeys) {\n this.displayedKeys = Array.from(availableKeys);\n }\n updateDisplayedValuesToMatchMiniFilter(getValue, _allKeys, availableKeys, matchesFilter, nullMatchesFilter) {\n this.displayedKeys = [];\n for (let key of availableKeys) {\n if (key == null) {\n if (nullMatchesFilter) {\n this.displayedKeys.push(key);\n }\n } else {\n const value = getValue(key);\n const valueFormatterValue = this.valueService.formatValue(\n this.column,\n null,\n value,\n this.valueFormatter,\n false\n );\n const textFormatterValue = this.formatter(valueFormatterValue);\n if (matchesFilter(textFormatterValue)) {\n this.displayedKeys.push(key);\n }\n }\n }\n }\n getDisplayedValueCount() {\n return this.displayedKeys.length;\n }\n getDisplayedItem(index) {\n return this.displayedKeys[index];\n }\n getSelectAllItem() {\n return SetFilterDisplayValue.SELECT_ALL;\n }\n getAddSelectionToFilterItem() {\n return SetFilterDisplayValue.ADD_SELECTION_TO_FILTER;\n }\n getDisplayedKeys() {\n return this.displayedKeys;\n }\n forEachDisplayedKey(func) {\n this.displayedKeys.forEach(func);\n }\n someDisplayedKey(func) {\n return this.displayedKeys.some(func);\n }\n hasGroups() {\n return false;\n }\n refresh() {\n }\n};\nvar _TreeSetDisplayValueModel = class _TreeSetDisplayValueModel2 {\n constructor(formatter, treeListPathGetter, treeListFormatter, treeDataOrGrouping) {\n this.formatter = formatter;\n this.treeListPathGetter = treeListPathGetter;\n this.treeListFormatter = treeListFormatter;\n this.treeDataOrGrouping = treeDataOrGrouping;\n this.allDisplayedItemsTree = [];\n this.activeDisplayedItemsFlat = [];\n this.selectAllItem = {\n depth: 0,\n filterPasses: true,\n available: true,\n treeKey: SetFilterDisplayValue.SELECT_ALL,\n children: this.allDisplayedItemsTree,\n expanded: true,\n key: SetFilterDisplayValue.SELECT_ALL,\n parentTreeKeys: []\n };\n this.addSelectionToFilterItem = {\n depth: 0,\n filterPasses: true,\n available: true,\n treeKey: SetFilterDisplayValue.ADD_SELECTION_TO_FILTER,\n expanded: true,\n key: SetFilterDisplayValue.ADD_SELECTION_TO_FILTER,\n parentTreeKeys: []\n };\n }\n updateDisplayedValuesToAllAvailable(getValue, allKeys, availableKeys, source) {\n if (source === \"reload\") {\n this.generateItemTree(getValue, allKeys, availableKeys);\n } else if (source === \"otherFilter\") {\n this.updateAvailable(availableKeys);\n this.updateExpandAll();\n } else if (source === \"miniFilter\") {\n this.resetFilter();\n this.updateExpandAll();\n }\n this.flattenItems();\n }\n updateDisplayedValuesToMatchMiniFilter(getValue, allKeys, availableKeys, matchesFilter, nullMatchesFilter, source) {\n if (source === \"reload\") {\n this.generateItemTree(getValue, allKeys, availableKeys);\n } else if (source === \"otherFilter\") {\n this.updateAvailable(availableKeys);\n }\n this.updateFilter(matchesFilter, nullMatchesFilter);\n this.updateExpandAll();\n this.flattenItems();\n }\n generateItemTree(getValue, allKeys, availableKeys) {\n var _a;\n this.allDisplayedItemsTree = [];\n this.groupsExist = false;\n const treeListPathGetter = this.getTreeListPathGetter(getValue, availableKeys);\n for (let key of allKeys) {\n const value = getValue(key);\n const dataPath = (_a = treeListPathGetter(value)) != null ? _a : [null];\n if (dataPath.length > 1) {\n this.groupsExist = true;\n }\n const available = availableKeys.has(key);\n let children = this.allDisplayedItemsTree;\n let item;\n let parentTreeKeys = [];\n dataPath.forEach((treeKey, depth) => {\n if (!children) {\n children = [];\n item.children = children;\n }\n item = children.find((child) => {\n var _a2;\n return ((_a2 = child.treeKey) == null ? void 0 : _a2.toUpperCase()) === (treeKey == null ? void 0 : treeKey.toUpperCase());\n });\n if (!item) {\n item = { treeKey, depth, filterPasses: true, expanded: false, available, parentTreeKeys };\n if (depth === dataPath.length - 1) {\n item.key = key;\n }\n children.push(item);\n }\n children = item.children;\n parentTreeKeys = [...parentTreeKeys, treeKey];\n });\n }\n this.updateAvailable(availableKeys);\n this.selectAllItem.children = this.allDisplayedItemsTree;\n this.selectAllItem.expanded = false;\n }\n getTreeListPathGetter(getValue, availableKeys) {\n if (this.treeListPathGetter) {\n return this.treeListPathGetter;\n }\n if (this.treeDataOrGrouping) {\n return (value) => value;\n }\n let isDate2 = false;\n for (const availableKey of availableKeys) {\n const value = getValue(availableKey);\n if (value instanceof Date) {\n isDate2 = true;\n break;\n } else if (value != null) {\n break;\n }\n }\n if (isDate2) {\n return _TreeSetDisplayValueModel2.DATE_TREE_LIST_PATH_GETTER;\n }\n _218.warnOnce(\"property treeList=true for Set Filter params, but you did not provide a treeListPathGetter or values of type Date.\");\n return (value) => [String(value)];\n }\n flattenItems() {\n this.activeDisplayedItemsFlat = [];\n const recursivelyFlattenDisplayedItems = (items) => {\n items.forEach((item) => {\n if (!item.filterPasses || !item.available) {\n return;\n }\n this.activeDisplayedItemsFlat.push(item);\n if (item.children && item.expanded) {\n recursivelyFlattenDisplayedItems(item.children);\n }\n });\n };\n recursivelyFlattenDisplayedItems(this.allDisplayedItemsTree);\n }\n resetFilter() {\n const recursiveFilterReset = (item) => {\n if (item.children) {\n item.children.forEach((child) => {\n recursiveFilterReset(child);\n });\n }\n item.filterPasses = true;\n };\n this.allDisplayedItemsTree.forEach((item) => recursiveFilterReset(item));\n }\n updateFilter(matchesFilter, nullMatchesFilter) {\n const passesFilter = (item) => {\n if (!item.available) {\n return false;\n }\n if (item.treeKey == null) {\n return nullMatchesFilter;\n }\n return matchesFilter(\n this.formatter(this.treeListFormatter ? this.treeListFormatter(item.treeKey, item.depth, item.parentTreeKeys) : item.treeKey)\n );\n };\n this.allDisplayedItemsTree.forEach((item) => this.recursiveItemCheck(item, false, passesFilter, \"filterPasses\"));\n }\n getDisplayedValueCount() {\n return this.activeDisplayedItemsFlat.length;\n }\n getDisplayedItem(index) {\n return this.activeDisplayedItemsFlat[index];\n }\n getSelectAllItem() {\n return this.selectAllItem;\n }\n getAddSelectionToFilterItem() {\n return this.addSelectionToFilterItem;\n }\n getDisplayedKeys() {\n const displayedKeys = [];\n this.forEachDisplayedKey((key) => displayedKeys.push(key));\n return displayedKeys;\n }\n forEachDisplayedKey(func) {\n const recursiveForEachItem = (item, topParentExpanded) => {\n if (item.children) {\n if (!item.expanded || !topParentExpanded) {\n item.children.forEach((child) => {\n if (child.filterPasses) {\n recursiveForEachItem(child, false);\n }\n });\n }\n } else {\n func(item.key);\n }\n };\n this.activeDisplayedItemsFlat.forEach((item) => recursiveForEachItem(item, true));\n }\n someDisplayedKey(func) {\n const recursiveSomeItem = (item, topParentExpanded) => {\n if (item.children) {\n if (!item.expanded || !topParentExpanded) {\n return item.children.some((child) => {\n if (child.filterPasses) {\n return recursiveSomeItem(child, false);\n }\n return false;\n });\n }\n } else {\n return func(item.key);\n }\n return false;\n };\n return this.activeDisplayedItemsFlat.some((item) => recursiveSomeItem(item, true));\n }\n hasGroups() {\n return this.groupsExist;\n }\n refresh() {\n this.updateExpandAll();\n this.flattenItems();\n }\n updateExpandAll() {\n const recursiveExpansionCheck = (items, someTrue, someFalse) => {\n for (const item2 of items) {\n if (!item2.filterPasses || !item2.available || !item2.children) {\n continue;\n }\n someTrue = someTrue || !!item2.expanded;\n someFalse = someFalse || !item2.expanded;\n if (someTrue && someFalse) {\n return void 0;\n }\n const childExpanded = recursiveExpansionCheck(item2.children, someTrue, someFalse);\n if (childExpanded === void 0) {\n return void 0;\n } else if (childExpanded) {\n someTrue = true;\n } else {\n someFalse = true;\n }\n }\n return someTrue && someFalse ? void 0 : someTrue;\n };\n const item = this.getSelectAllItem();\n item.expanded = recursiveExpansionCheck(item.children, false, false);\n }\n recursiveItemCheck(item, parentPasses, checkFunction, itemProp) {\n let atLeastOneChildPassed = false;\n if (item.children) {\n item.children.forEach((child) => {\n const childPasses = this.recursiveItemCheck(child, parentPasses || checkFunction(item), checkFunction, itemProp);\n atLeastOneChildPassed = atLeastOneChildPassed || childPasses;\n });\n }\n const itemPasses = parentPasses || atLeastOneChildPassed || checkFunction(item);\n item[itemProp] = itemPasses;\n return itemPasses;\n }\n updateAvailable(availableKeys) {\n const isAvailable = (item) => availableKeys.has(item.key);\n this.allDisplayedItemsTree.forEach((item) => this.recursiveItemCheck(item, false, isAvailable, \"available\"));\n }\n};\n_TreeSetDisplayValueModel.DATE_TREE_LIST_PATH_GETTER = (date) => date ? [String(date.getFullYear()), String(date.getMonth() + 1), String(date.getDate())] : null;\nvar TreeSetDisplayValueModel = _TreeSetDisplayValueModel;\nvar SetValueModelFilteringKeys = class {\n constructor({ caseFormat }) {\n this.filteringKeys = null;\n this.filteringKeysCaseFormatted = null;\n this.hasNoAppliedFilteringKeys = false;\n this.caseFormat = caseFormat;\n }\n allFilteringKeys() {\n return this.filteringKeys;\n }\n allFilteringKeysCaseFormatted() {\n return this.filteringKeysCaseFormatted;\n }\n noAppliedFilteringKeys() {\n return this.hasNoAppliedFilteringKeys;\n }\n setFilteringKeys(filteringKeys) {\n this.filteringKeys = new Set(filteringKeys);\n this.hasNoAppliedFilteringKeys = !this.filteringKeys || this.filteringKeys.size === 0;\n this.filteringKeysCaseFormatted = /* @__PURE__ */ new Set();\n this.filteringKeys.forEach(\n (key) => this.filteringKeysCaseFormatted.add(this.caseFormat(key))\n );\n }\n addFilteringKey(key) {\n if (this.filteringKeys == null) {\n this.filteringKeys = /* @__PURE__ */ new Set();\n this.filteringKeysCaseFormatted = /* @__PURE__ */ new Set();\n }\n this.filteringKeys.add(key);\n this.filteringKeysCaseFormatted.add(this.caseFormat(key));\n if (this.hasNoAppliedFilteringKeys) {\n this.hasNoAppliedFilteringKeys = false;\n }\n }\n hasCaseFormattedFilteringKey(key) {\n return this.filteringKeysCaseFormatted.has(this.caseFormat(key));\n }\n hasFilteringKey(key) {\n return this.filteringKeys.has(key);\n }\n reset() {\n this.filteringKeys = null;\n this.filteringKeysCaseFormatted = null;\n this.hasNoAppliedFilteringKeys = false;\n }\n};\nvar _SetValueModel = class _SetValueModel2 {\n constructor(params) {\n this.localEventService = new EventService2();\n this.miniFilterText = null;\n this.addCurrentSelectionToFilter = false;\n this.providedValues = null;\n this.allValues = /* @__PURE__ */ new Map();\n this.availableKeys = /* @__PURE__ */ new Set();\n this.selectedKeys = /* @__PURE__ */ new Set();\n this.initialised = false;\n const {\n usingComplexObjects,\n columnModel,\n valueService,\n treeDataTreeList,\n groupingTreeList,\n filterParams,\n gos,\n valueFormatter,\n addManagedListener\n } = params;\n const {\n column,\n colDef,\n textFormatter,\n doesRowPassOtherFilter,\n suppressSorting,\n comparator,\n rowModel,\n values,\n caseSensitive,\n convertValuesToStrings,\n treeList,\n treeListPathGetter,\n treeListFormatter\n } = filterParams;\n this.filterParams = filterParams;\n this.gos = gos;\n this.setIsLoading = params.setIsLoading;\n this.translate = params.translate;\n this.caseFormat = params.caseFormat;\n this.createKey = params.createKey;\n this.usingComplexObjects = !!params.usingComplexObjects;\n this.formatter = textFormatter || TextFilter.DEFAULT_FORMATTER;\n this.doesRowPassOtherFilters = doesRowPassOtherFilter;\n this.suppressSorting = suppressSorting || false;\n this.convertValuesToStrings = !!convertValuesToStrings;\n this.filteringKeys = new SetValueModelFilteringKeys({ caseFormat: this.caseFormat });\n const keyComparator = comparator != null ? comparator : colDef.comparator;\n const treeDataOrGrouping = !!treeDataTreeList || !!groupingTreeList;\n this.compareByValue = !!(usingComplexObjects && keyComparator || treeDataOrGrouping || treeList && !treeListPathGetter);\n if (treeDataOrGrouping && !keyComparator) {\n this.entryComparator = this.createTreeDataOrGroupingComparator();\n } else if (treeList && !treeListPathGetter && !keyComparator) {\n this.entryComparator = ([_aKey, aValue], [_bKey, bValue]) => _315.defaultComparator(aValue, bValue);\n } else {\n this.entryComparator = ([_aKey, aValue], [_bKey, bValue]) => keyComparator(aValue, bValue);\n }\n this.keyComparator = keyComparator != null ? keyComparator : _315.defaultComparator;\n this.caseSensitive = !!caseSensitive;\n const getDataPath = gos.get(\"getDataPath\");\n const groupAllowUnbalanced = gos.get(\"groupAllowUnbalanced\");\n if (rowModel.getType() === \"clientSide\") {\n this.clientSideValuesExtractor = new ClientSideValuesExtractor(\n rowModel,\n this.filterParams,\n this.createKey,\n this.caseFormat,\n columnModel,\n valueService,\n treeDataOrGrouping,\n !!treeDataTreeList,\n getDataPath,\n groupAllowUnbalanced,\n addManagedListener\n );\n }\n if (values == null) {\n this.valuesType = 2;\n } else {\n this.valuesType = Array.isArray(values) ? 0 : 1;\n this.providedValues = values;\n }\n this.displayValueModel = treeList ? new TreeSetDisplayValueModel(\n this.formatter,\n treeListPathGetter,\n treeListFormatter,\n treeDataTreeList || groupingTreeList\n ) : new FlatSetDisplayValueModel(\n valueService,\n valueFormatter,\n this.formatter,\n column\n );\n this.updateAllValues().then((updatedKeys) => this.resetSelectionState(updatedKeys || []));\n }\n addEventListener(eventType, listener, async) {\n this.localEventService.addEventListener(eventType, listener, async);\n }\n removeEventListener(eventType, listener, async) {\n this.localEventService.removeEventListener(eventType, listener, async);\n }\n updateOnParamsChange(filterParams) {\n return new AgPromise24((resolve) => {\n const {\n values,\n textFormatter,\n suppressSorting\n } = filterParams;\n const currentProvidedValues = this.providedValues;\n const currentSuppressSorting = this.suppressSorting;\n this.filterParams = filterParams;\n this.formatter = textFormatter || TextFilter.DEFAULT_FORMATTER;\n this.suppressSorting = suppressSorting || false;\n this.providedValues = values != null ? values : null;\n if (this.providedValues !== currentProvidedValues || this.suppressSorting !== currentSuppressSorting) {\n if (!values || values.length === 0) {\n this.valuesType = 2;\n this.providedValues = null;\n } else {\n this.valuesType = Array.isArray(values) ? 0 : 1;\n }\n const currentModel = this.getModel();\n this.updateAllValues().then((updatedKeys) => {\n this.setModel(currentModel).then(() => resolve());\n });\n } else {\n resolve();\n }\n });\n }\n /**\n * Re-fetches the values used in the filter from the value source.\n * If keepSelection is false, the filter selection will be reset to everything selected,\n * otherwise the current selection will be preserved.\n */\n refreshValues() {\n return new AgPromise24((resolve) => {\n this.allValuesPromise.then(() => {\n const currentModel = this.getModel();\n this.updateAllValues();\n this.setModel(currentModel).then(() => resolve());\n });\n });\n }\n /**\n * Overrides the current values being used for the set filter.\n * If keepSelection is false, the filter selection will be reset to everything selected,\n * otherwise the current selection will be preserved.\n */\n overrideValues(valuesToUse) {\n return new AgPromise24((resolve) => {\n this.allValuesPromise.then(() => {\n this.valuesType = 0;\n this.providedValues = valuesToUse;\n this.refreshValues().then(() => resolve());\n });\n });\n }\n /** @return has anything been updated */\n refreshAfterAnyFilterChanged() {\n if (this.showAvailableOnly()) {\n return this.allValuesPromise.then((keys) => {\n this.updateAvailableKeys(keys != null ? keys : [], \"otherFilter\");\n return true;\n });\n }\n return AgPromise24.resolve(false);\n }\n isInitialised() {\n return this.initialised;\n }\n updateAllValues() {\n this.allValuesPromise = new AgPromise24((resolve) => {\n switch (this.valuesType) {\n case 2:\n this.getValuesFromRowsAsync(false).then((values) => resolve(this.processAllValues(values)));\n break;\n case 0: {\n resolve(this.processAllValues(this.uniqueValues(this.validateProvidedValues(this.providedValues))));\n break;\n }\n case 1: {\n this.setIsLoading(true);\n const callback = this.providedValues;\n const { column, colDef } = this.filterParams;\n const params = this.gos.addGridCommonParams({\n success: (values) => {\n this.setIsLoading(false);\n resolve(this.processAllValues(this.uniqueValues(this.validateProvidedValues(values))));\n },\n colDef,\n column\n });\n window.setTimeout(() => callback(params), 0);\n break;\n }\n default:\n throw new Error(\"Unrecognised valuesType\");\n }\n });\n this.allValuesPromise.then((values) => this.updateAvailableKeys(values || [], \"reload\")).then(() => this.initialised = true);\n return this.allValuesPromise;\n }\n processAllValues(values) {\n const sortedKeys = this.sortKeys(values);\n this.allValues = values != null ? values : /* @__PURE__ */ new Map();\n return sortedKeys;\n }\n validateProvidedValues(values) {\n if (this.usingComplexObjects && (values == null ? void 0 : values.length)) {\n const firstValue = values[0];\n if (firstValue && typeof firstValue !== \"object\" && typeof firstValue !== \"function\") {\n const firstKey = this.createKey(firstValue);\n if (firstKey == null) {\n _315.warnOnce(\"Set Filter Key Creator is returning null for provided values and provided values are primitives. Please provide complex objects or set convertValuesToStrings=true in the filterParams. See https://www.ag-grid.com/javascript-data-grid/filter-set-filter-list/#filter-value-types\");\n } else {\n _315.warnOnce(\"Set Filter has a Key Creator, but provided values are primitives. Did you mean to provide complex objects or enable convertValuesToStrings?\");\n }\n }\n }\n return values;\n }\n setValuesType(value) {\n this.valuesType = value;\n }\n getValuesType() {\n return this.valuesType;\n }\n isKeyAvailable(key) {\n return this.availableKeys.has(key);\n }\n showAvailableOnly() {\n return this.valuesType === 2;\n }\n updateAvailableKeys(allKeys, source) {\n const availableKeys = this.showAvailableOnly() ? this.sortKeys(this.getValuesFromRows(true)) : allKeys;\n this.availableKeys = new Set(availableKeys);\n this.localEventService.dispatchEvent({ type: _SetValueModel2.EVENT_AVAILABLE_VALUES_CHANGED });\n this.updateDisplayedValues(source, allKeys);\n }\n sortKeys(nullableValues) {\n const values = nullableValues != null ? nullableValues : /* @__PURE__ */ new Map();\n if (this.suppressSorting) {\n return Array.from(values.keys());\n }\n let sortedKeys;\n if (this.compareByValue) {\n sortedKeys = Array.from(values.entries()).sort(this.entryComparator).map(([key]) => key);\n } else {\n sortedKeys = Array.from(values.keys()).sort(this.keyComparator);\n }\n if (this.filterParams.excelMode && values.has(null)) {\n sortedKeys = sortedKeys.filter((v) => v != null);\n sortedKeys.push(null);\n }\n return sortedKeys;\n }\n getParamsForValuesFromRows(removeUnavailableValues = false) {\n if (!this.clientSideValuesExtractor) {\n _315.doOnce(() => {\n console.error(\"AG Grid: Set Filter cannot initialise because you are using a row model that does not contain all rows in the browser. Either use a different filter type, or configure Set Filter such that you provide it with values\");\n }, \"setFilterValueNotCSRM\");\n return null;\n }\n const predicate = (node) => !removeUnavailableValues || this.doesRowPassOtherFilters(node);\n const existingValues = removeUnavailableValues && !this.caseSensitive ? this.allValues : void 0;\n return { predicate, existingValues };\n }\n getValuesFromRows(removeUnavailableValues = false) {\n const params = this.getParamsForValuesFromRows(removeUnavailableValues);\n if (!params) {\n return null;\n }\n return this.clientSideValuesExtractor.extractUniqueValues(params.predicate, params.existingValues);\n }\n getValuesFromRowsAsync(removeUnavailableValues = false) {\n const params = this.getParamsForValuesFromRows(removeUnavailableValues);\n if (!params) {\n return AgPromise24.resolve(null);\n }\n return this.clientSideValuesExtractor.extractUniqueValuesAsync(params.predicate, params.existingValues);\n }\n /** Sets mini filter value. Returns true if it changed from last value, otherwise false. */\n setMiniFilter(value) {\n value = _315.makeNull(value);\n if (this.miniFilterText === value) {\n return false;\n }\n if (value === null) {\n this.setAddCurrentSelectionToFilter(false);\n }\n this.miniFilterText = value;\n this.updateDisplayedValues(\"miniFilter\");\n return true;\n }\n getMiniFilter() {\n return this.miniFilterText;\n }\n updateDisplayedValues(source, allKeys) {\n if (source === \"expansion\") {\n this.displayValueModel.refresh();\n return;\n }\n if (this.miniFilterText == null) {\n this.displayValueModel.updateDisplayedValuesToAllAvailable(\n (key) => this.getValue(key),\n allKeys,\n this.availableKeys,\n source\n );\n return;\n }\n const formattedFilterText = this.caseFormat(this.formatter(this.miniFilterText) || \"\");\n const matchesFilter = (valueToCheck) => valueToCheck != null && this.caseFormat(valueToCheck).indexOf(formattedFilterText) >= 0;\n const nullMatchesFilter = !!this.filterParams.excelMode && matchesFilter(this.translate(\"blanks\"));\n this.displayValueModel.updateDisplayedValuesToMatchMiniFilter(\n (key) => this.getValue(key),\n allKeys,\n this.availableKeys,\n matchesFilter,\n nullMatchesFilter,\n source\n );\n }\n getDisplayedValueCount() {\n return this.displayValueModel.getDisplayedValueCount();\n }\n getDisplayedItem(index) {\n return this.displayValueModel.getDisplayedItem(index);\n }\n getSelectAllItem() {\n return this.displayValueModel.getSelectAllItem();\n }\n getAddSelectionToFilterItem() {\n return this.displayValueModel.getAddSelectionToFilterItem();\n }\n hasSelections() {\n return this.filterParams.defaultToNothingSelected ? this.selectedKeys.size > 0 : this.allValues.size !== this.selectedKeys.size;\n }\n getKeys() {\n return Array.from(this.allValues.keys());\n }\n getValues() {\n return Array.from(this.allValues.values());\n }\n getValue(key) {\n return this.allValues.get(key);\n }\n setAddCurrentSelectionToFilter(value) {\n this.addCurrentSelectionToFilter = value;\n }\n isInWindowsExcelMode() {\n return this.filterParams.excelMode === \"windows\";\n }\n isAddCurrentSelectionToFilterChecked() {\n return this.isInWindowsExcelMode() && this.addCurrentSelectionToFilter;\n }\n showAddCurrentSelectionToFilter() {\n return this.isInWindowsExcelMode() && _315.exists(this.miniFilterText) && this.miniFilterText.length > 0;\n }\n selectAllMatchingMiniFilter(clearExistingSelection = false) {\n if (this.miniFilterText == null) {\n this.selectedKeys = new Set(this.allValues.keys());\n } else {\n if (clearExistingSelection) {\n this.selectedKeys.clear();\n }\n this.displayValueModel.forEachDisplayedKey((key) => this.selectedKeys.add(key));\n }\n }\n deselectAllMatchingMiniFilter() {\n if (this.miniFilterText == null) {\n this.selectedKeys.clear();\n } else {\n this.displayValueModel.forEachDisplayedKey((key) => this.selectedKeys.delete(key));\n }\n }\n selectKey(key) {\n this.selectedKeys.add(key);\n }\n deselectKey(key) {\n if (this.filterParams.excelMode && this.isEverythingVisibleSelected()) {\n this.resetSelectionState(this.displayValueModel.getDisplayedKeys());\n }\n this.selectedKeys.delete(key);\n }\n isKeySelected(key) {\n return this.selectedKeys.has(key);\n }\n isEverythingVisibleSelected() {\n return !this.displayValueModel.someDisplayedKey((it) => !this.isKeySelected(it));\n }\n isNothingVisibleSelected() {\n return !this.displayValueModel.someDisplayedKey((it) => this.isKeySelected(it));\n }\n getModel() {\n if (!this.hasSelections()) {\n return null;\n }\n const filteringKeys = this.isAddCurrentSelectionToFilterChecked() ? this.filteringKeys.allFilteringKeys() : null;\n if (filteringKeys && filteringKeys.size > 0) {\n if (this.selectedKeys) {\n const modelKeys = /* @__PURE__ */ new Set([\n ...Array.from(filteringKeys),\n ...Array.from(this.selectedKeys).filter((key) => !filteringKeys.has(key))\n ]);\n return Array.from(modelKeys);\n }\n return Array.from(filteringKeys);\n }\n return Array.from(this.selectedKeys);\n }\n setModel(model) {\n return this.allValuesPromise.then((keys) => {\n if (model == null) {\n this.resetSelectionState(keys != null ? keys : []);\n } else {\n this.selectedKeys.clear();\n const existingFormattedKeys = /* @__PURE__ */ new Map();\n this.allValues.forEach((_value, key) => {\n existingFormattedKeys.set(this.caseFormat(key), key);\n });\n model.forEach((unformattedKey) => {\n const formattedKey = this.caseFormat(_315.makeNull(unformattedKey));\n const existingUnformattedKey = existingFormattedKeys.get(formattedKey);\n if (existingUnformattedKey !== void 0) {\n this.selectKey(existingUnformattedKey);\n }\n });\n }\n });\n }\n uniqueValues(values) {\n const uniqueValues = /* @__PURE__ */ new Map();\n const formattedKeys = /* @__PURE__ */ new Set();\n (values != null ? values : []).forEach((value) => {\n const valueToUse = _315.makeNull(value);\n const unformattedKey = this.convertAndGetKey(valueToUse);\n const formattedKey = this.caseFormat(unformattedKey);\n if (!formattedKeys.has(formattedKey)) {\n formattedKeys.add(formattedKey);\n uniqueValues.set(unformattedKey, valueToUse);\n }\n });\n return uniqueValues;\n }\n convertAndGetKey(value) {\n return this.convertValuesToStrings ? value : this.createKey(value);\n }\n resetSelectionState(keys) {\n if (this.filterParams.defaultToNothingSelected) {\n this.selectedKeys.clear();\n } else {\n this.selectedKeys = new Set(keys);\n }\n }\n hasGroups() {\n return this.displayValueModel.hasGroups();\n }\n createTreeDataOrGroupingComparator() {\n return ([_aKey, aValue], [_bKey, bValue]) => {\n if (aValue == null) {\n return bValue == null ? 0 : -1;\n } else if (bValue == null) {\n return 1;\n }\n for (let i = 0; i < aValue.length; i++) {\n if (i >= bValue.length) {\n return 1;\n }\n const diff = _315.defaultComparator(aValue[i], bValue[i]);\n if (diff !== 0) {\n return diff;\n }\n }\n return 0;\n };\n }\n setAppliedModelKeys(appliedModelKeys) {\n this.filteringKeys.setFilteringKeys(appliedModelKeys);\n }\n addToAppliedModelKeys(appliedModelKey) {\n this.filteringKeys.addFilteringKey(appliedModelKey);\n }\n getAppliedModelKeys() {\n return this.filteringKeys.allFilteringKeys();\n }\n getCaseFormattedAppliedModelKeys() {\n return this.filteringKeys.allFilteringKeysCaseFormatted();\n }\n hasAppliedModelKey(appliedModelKey) {\n return this.filteringKeys.hasCaseFormattedFilteringKey(appliedModelKey);\n }\n hasAnyAppliedModelKey() {\n return !this.filteringKeys.noAppliedFilteringKeys();\n }\n};\n_SetValueModel.EVENT_AVAILABLE_VALUES_CHANGED = \"availableValuesChanged\";\nvar SetValueModel = _SetValueModel;\nvar _SetFilterListItem = class _SetFilterListItem2 extends Component57 {\n constructor(params) {\n var _a;\n super(params.isGroup ? _SetFilterListItem2.GROUP_TEMPLATE : _SetFilterListItem2.TEMPLATE);\n this.focusWrapper = params.focusWrapper;\n this.value = params.value;\n this.params = params.params;\n this.translate = params.translate;\n this.valueFormatter = params.valueFormatter;\n this.item = params.item;\n this.isSelected = params.isSelected;\n this.isTree = params.isTree;\n this.depth = (_a = params.depth) != null ? _a : 0;\n this.isGroup = params.isGroup;\n this.groupsExist = params.groupsExist;\n this.isExpanded = params.isExpanded;\n this.hasIndeterminateExpandState = params.hasIndeterminateExpandState;\n }\n init() {\n this.addDestroyFunc(() => {\n var _a;\n return (_a = this.destroyCellRendererComponent) == null ? void 0 : _a.call(this);\n });\n this.render();\n this.eCheckbox.setLabelEllipsis(true).setValue(this.isSelected, true).setDisabled(!!this.params.readOnly).getInputElement().setAttribute(\"tabindex\", \"-1\");\n this.refreshVariableAriaLabels();\n if (this.isTree) {\n if (this.depth > 0) {\n this.addCssClass(\"ag-set-filter-indent-\" + this.depth);\n }\n if (this.isGroup) {\n this.setupExpansion();\n } else {\n if (this.groupsExist) {\n this.addCssClass(\"ag-set-filter-add-group-indent\");\n }\n }\n _412.setAriaLevel(this.getAriaElement(), this.depth + 1);\n }\n this.refreshAriaChecked();\n if (!!this.params.readOnly) {\n return;\n }\n this.eCheckbox.onValueChange((value) => this.onCheckboxChanged(!!value));\n }\n getFocusableElement() {\n return this.focusWrapper;\n }\n setupExpansion() {\n this.eGroupClosedIcon.appendChild(_412.createIcon(\"setFilterGroupClosed\", this.gos, null));\n this.eGroupOpenedIcon.appendChild(_412.createIcon(\"setFilterGroupOpen\", this.gos, null));\n this.addManagedListener(this.eGroupClosedIcon, \"click\", this.onExpandOrContractClicked.bind(this));\n this.addManagedListener(this.eGroupOpenedIcon, \"click\", this.onExpandOrContractClicked.bind(this));\n if (this.hasIndeterminateExpandState) {\n this.eGroupIndeterminateIcon.appendChild(_412.createIcon(\"setFilterGroupIndeterminate\", this.gos, null));\n this.addManagedListener(this.eGroupIndeterminateIcon, \"click\", this.onExpandOrContractClicked.bind(this));\n }\n this.setExpandedIcons();\n this.refreshAriaExpanded();\n }\n onExpandOrContractClicked() {\n this.setExpanded(!this.isExpanded);\n }\n setExpanded(isExpanded, silent) {\n if (this.isGroup && isExpanded !== this.isExpanded) {\n this.isExpanded = isExpanded;\n const event = {\n type: _SetFilterListItem2.EVENT_EXPANDED_CHANGED,\n isExpanded: !!isExpanded,\n item: this.item\n };\n if (!silent) {\n this.dispatchEvent(event);\n }\n this.setExpandedIcons();\n this.refreshAriaExpanded();\n }\n }\n setExpandedIcons() {\n _412.setDisplayed(this.eGroupClosedIcon, this.hasIndeterminateExpandState ? this.isExpanded === false : !this.isExpanded);\n _412.setDisplayed(this.eGroupOpenedIcon, this.isExpanded === true);\n if (this.hasIndeterminateExpandState) {\n _412.setDisplayed(this.eGroupIndeterminateIcon, this.isExpanded === void 0);\n }\n }\n onCheckboxChanged(isSelected) {\n this.isSelected = isSelected;\n const event = {\n type: _SetFilterListItem2.EVENT_SELECTION_CHANGED,\n isSelected,\n item: this.item\n };\n this.dispatchEvent(event);\n this.refreshVariableAriaLabels();\n this.refreshAriaChecked();\n }\n toggleSelected() {\n if (!!this.params.readOnly) {\n return;\n }\n this.setSelected(!this.isSelected);\n }\n setSelected(isSelected, silent) {\n this.isSelected = isSelected;\n this.eCheckbox.setValue(isSelected, silent);\n this.refreshAriaChecked();\n }\n refreshVariableAriaLabels() {\n if (!this.isTree) {\n return;\n }\n const translate = this.localeService.getLocaleTextFunc();\n const checkboxValue = this.eCheckbox.getValue();\n const state = checkboxValue === void 0 ? translate(\"ariaIndeterminate\", \"indeterminate\") : checkboxValue ? translate(\"ariaVisible\", \"visible\") : translate(\"ariaHidden\", \"hidden\");\n const visibilityLabel = translate(\"ariaToggleVisibility\", \"Press SPACE to toggle visibility\");\n _412.setAriaLabelledBy(this.eCheckbox.getInputElement(), void 0);\n this.eCheckbox.setInputAriaLabel(`${visibilityLabel} (${state})`);\n }\n setupFixedAriaLabels(value) {\n if (!this.isTree) {\n return;\n }\n const translate = this.localeService.getLocaleTextFunc();\n const itemLabel = translate(\"ariaFilterValue\", \"Filter Value\");\n const ariaEl = this.getAriaElement();\n _412.setAriaLabel(ariaEl, `${value} ${itemLabel}`);\n _412.setAriaDescribedBy(ariaEl, this.eCheckbox.getInputElement().id);\n }\n refreshAriaChecked() {\n const ariaEl = this.getAriaElement();\n _412.setAriaChecked(ariaEl, this.eCheckbox.getValue());\n }\n refreshAriaExpanded() {\n _412.setAriaExpanded(this.getAriaElement(), !!this.isExpanded);\n }\n refresh(item, isSelected, isExpanded) {\n var _a, _b;\n this.item = item;\n if (isSelected !== this.isSelected) {\n this.setSelected(isSelected, true);\n }\n this.setExpanded(isExpanded, true);\n if (this.valueFunction) {\n const value = this.valueFunction();\n this.setTooltipAndCellRendererParams(value, value);\n if (!this.cellRendererComponent) {\n this.renderCellWithoutCellRenderer();\n }\n }\n if (this.cellRendererComponent) {\n const success = (_b = (_a = this.cellRendererComponent).refresh) == null ? void 0 : _b.call(_a, this.cellRendererParams);\n if (!success) {\n const oldComponent = this.cellRendererComponent;\n this.renderCell();\n this.destroyBean(oldComponent);\n }\n }\n }\n render() {\n const { params: { column } } = this;\n let { value } = this;\n let formattedValue = null;\n if (typeof value === \"function\") {\n this.valueFunction = value;\n formattedValue = this.valueFunction();\n value = formattedValue;\n } else if (this.isTree) {\n formattedValue = _412.toStringOrNull(value);\n } else {\n formattedValue = this.getFormattedValue(column, value);\n }\n this.setTooltipAndCellRendererParams(value, formattedValue);\n this.renderCell();\n }\n setTooltipAndCellRendererParams(value, formattedValue) {\n const isTooltipWhenTruncated = this.gos.get(\"tooltipShowMode\") === \"whenTruncated\";\n if (this.params.showTooltips && (!isTooltipWhenTruncated || !this.params.cellRenderer)) {\n const newTooltipText = formattedValue != null ? formattedValue : _412.toStringOrNull(value);\n let shouldDisplayTooltip;\n if (isTooltipWhenTruncated) {\n shouldDisplayTooltip = () => {\n const el = this.eCheckbox.getGui().querySelector(\".ag-label\");\n if (!el) {\n return true;\n }\n return el.scrollWidth > el.clientWidth;\n };\n }\n this.setTooltip({\n newTooltipText,\n location: \"setFilterValue\",\n getColDef: () => this.params.colDef,\n getColumn: () => this.params.column,\n shouldDisplayTooltip\n });\n }\n this.cellRendererParams = this.gos.addGridCommonParams({\n value,\n valueFormatted: formattedValue,\n colDef: this.params.colDef,\n column: this.params.column,\n setTooltip: (value2, shouldDisplayTooltip) => {\n this.setTooltip({\n newTooltipText: value2,\n getColDef: () => this.params.colDef,\n getColumn: () => this.params.column,\n location: \"setFilterValue\",\n shouldDisplayTooltip\n });\n }\n });\n }\n getTooltipParams() {\n const res = super.getTooltipParams();\n res.location = \"setFilterValue\";\n res.colDef = this.getComponentHolder();\n if (this.isTree) {\n res.level = this.depth;\n }\n return res;\n }\n getFormattedValue(column, value) {\n return this.valueService.formatValue(column, null, value, this.valueFormatter, false);\n }\n renderCell() {\n const compDetails = this.userComponentFactory.getSetFilterCellRendererDetails(this.params, this.cellRendererParams);\n const cellRendererPromise = compDetails ? compDetails.newAgStackInstance() : void 0;\n if (cellRendererPromise == null) {\n this.renderCellWithoutCellRenderer();\n return;\n }\n cellRendererPromise.then((component) => {\n if (component) {\n this.cellRendererComponent = component;\n this.eCheckbox.setLabel(component.getGui());\n this.destroyCellRendererComponent = () => this.destroyBean(component);\n }\n });\n }\n renderCellWithoutCellRenderer() {\n var _a;\n let valueToRender = (_a = this.cellRendererParams.valueFormatted == null ? this.cellRendererParams.value : this.cellRendererParams.valueFormatted) != null ? _a : this.translate(\"blanks\");\n if (typeof valueToRender !== \"string\") {\n _412.warnOnce(`Set Filter Value Formatter must return string values. Please ensure the Set Filter Value Formatter returns string values for complex objects, or set convertValuesToStrings=true in the filterParams. See ${this.getFrameworkOverrides().getDocLink(\"filter-set-filter-list/#filter-value-types\")}`);\n valueToRender = \"\";\n }\n this.eCheckbox.setLabel(valueToRender);\n this.setupFixedAriaLabels(valueToRender);\n }\n getComponentHolder() {\n return this.params.column.getColDef();\n }\n};\n_SetFilterListItem.EVENT_SELECTION_CHANGED = \"selectionChanged\";\n_SetFilterListItem.EVENT_EXPANDED_CHANGED = \"expandedChanged\";\n_SetFilterListItem.GROUP_TEMPLATE = /* html */\n`\n
`;\n_SetFilterListItem.TEMPLATE = /* html */\n`\n
`;\n__decorateClass15([\n Autowired68(\"valueService\")\n], _SetFilterListItem.prototype, \"valueService\", 2);\n__decorateClass15([\n Autowired68(\"userComponentFactory\")\n], _SetFilterListItem.prototype, \"userComponentFactory\", 2);\n__decorateClass15([\n RefSelector21(\"eCheckbox\")\n], _SetFilterListItem.prototype, \"eCheckbox\", 2);\n__decorateClass15([\n RefSelector21(\"eGroupOpenedIcon\")\n], _SetFilterListItem.prototype, \"eGroupOpenedIcon\", 2);\n__decorateClass15([\n RefSelector21(\"eGroupClosedIcon\")\n], _SetFilterListItem.prototype, \"eGroupClosedIcon\", 2);\n__decorateClass15([\n RefSelector21(\"eGroupIndeterminateIcon\")\n], _SetFilterListItem.prototype, \"eGroupIndeterminateIcon\", 2);\n__decorateClass15([\n PostConstruct65\n], _SetFilterListItem.prototype, \"init\", 1);\nvar SetFilterListItem = _SetFilterListItem;\nvar DEFAULT_LOCALE_TEXT = {\n loadingOoo: \"Loading...\",\n blanks: \"(Blanks)\",\n searchOoo: \"Search...\",\n selectAll: \"(Select All)\",\n selectAllSearchResults: \"(Select All Search Results)\",\n addCurrentSelectionToFilter: \"Add current selection to filter\",\n noMatches: \"No matches.\"\n};\nvar SetFilterModelFormatter = class {\n getModelAsString(model, setFilter) {\n const { values } = model || setFilter.getModel() || {};\n const valueModel = setFilter.getValueModel();\n if (values == null || valueModel == null) {\n return \"\";\n }\n const availableKeys = values.filter((v) => valueModel.isKeyAvailable(v));\n const numValues = availableKeys.length;\n const formattedValues = availableKeys.slice(0, 10).map((key) => setFilter.getFormattedValue(key));\n return `(${numValues}) ${formattedValues.join(\",\")}${numValues > 10 ? \",...\" : \"\"}`;\n }\n};\nvar SetFilter = class extends ProvidedFilter2 {\n constructor() {\n super(\"setFilter\");\n this.valueModel = null;\n this.setFilterParams = null;\n this.virtualList = null;\n this.caseSensitive = false;\n this.convertValuesToStrings = false;\n this.treeDataTreeList = false;\n this.groupingTreeList = false;\n this.hardRefreshVirtualList = false;\n this.noValueFormatterSupplied = false;\n this.filterModelFormatter = new SetFilterModelFormatter();\n this.updateSetFilterOnParamsChange = (newParams) => {\n var _a;\n this.setFilterParams = newParams;\n this.convertValuesToStrings = !!newParams.convertValuesToStrings;\n this.caseSensitive = !!newParams.caseSensitive;\n const keyCreator = (_a = newParams.keyCreator) != null ? _a : newParams.colDef.keyCreator;\n this.setValueFormatter(newParams.valueFormatter, keyCreator, this.convertValuesToStrings, !!newParams.treeList, !!newParams.colDef.refData);\n const isGroupCol = newParams.column.getId().startsWith(GROUP_AUTO_COLUMN_ID2);\n this.treeDataTreeList = this.gos.get(\"treeData\") && !!newParams.treeList && isGroupCol;\n this.getDataPath = this.gos.get(\"getDataPath\");\n this.groupingTreeList = !!this.columnModel.getRowGroupColumns().length && !!newParams.treeList && isGroupCol;\n this.createKey = this.generateCreateKey(keyCreator, this.convertValuesToStrings, this.treeDataTreeList || this.groupingTreeList);\n };\n }\n postConstruct() {\n super.postConstruct();\n }\n // unlike the simple filters, nothing in the set filter UI shows/hides.\n // maybe this method belongs in abstractSimpleFilter???\n updateUiVisibility() {\n }\n createBodyTemplate() {\n return (\n /* html */\n `\n
\n
${this.translateForSetFilter(\"loadingOoo\")}
\n
\n
${this.translateForSetFilter(\"noMatches\")}
\n
\n
`\n );\n }\n handleKeyDown(e) {\n super.handleKeyDown(e);\n if (e.defaultPrevented) {\n return;\n }\n switch (e.key) {\n case KeyCode11.SPACE:\n this.handleKeySpace(e);\n break;\n case KeyCode11.ENTER:\n this.handleKeyEnter(e);\n break;\n case KeyCode11.LEFT:\n this.handleKeyLeft(e);\n break;\n case KeyCode11.RIGHT:\n this.handleKeyRight(e);\n break;\n }\n }\n handleKeySpace(e) {\n var _a;\n (_a = this.getComponentForKeyEvent(e)) == null ? void 0 : _a.toggleSelected();\n }\n handleKeyEnter(e) {\n if (!this.setFilterParams) {\n return;\n }\n const { excelMode, readOnly } = this.setFilterParams || {};\n if (!excelMode || !!readOnly) {\n return;\n }\n e.preventDefault();\n this.onBtApply(false, false, e);\n if (this.setFilterParams.excelMode === \"mac\") {\n this.eMiniFilter.getInputElement().select();\n }\n }\n handleKeyLeft(e) {\n var _a;\n (_a = this.getComponentForKeyEvent(e)) == null ? void 0 : _a.setExpanded(false);\n }\n handleKeyRight(e) {\n var _a;\n (_a = this.getComponentForKeyEvent(e)) == null ? void 0 : _a.setExpanded(true);\n }\n getComponentForKeyEvent(e) {\n var _a;\n if (!this.eSetFilterList.contains(this.gos.getActiveDomElement()) || !this.virtualList) {\n return;\n }\n const currentItem = this.virtualList.getLastFocusedRow();\n if (currentItem == null) {\n return;\n }\n const component = this.virtualList.getComponentAt(currentItem);\n if (component == null) {\n return;\n }\n e.preventDefault();\n const { readOnly } = (_a = this.setFilterParams) != null ? _a : {};\n if (!!readOnly) {\n return;\n }\n return component;\n }\n getCssIdentifier() {\n return \"set-filter\";\n }\n setModel(model) {\n var _a;\n if (model == null && ((_a = this.valueModel) == null ? void 0 : _a.getModel()) == null) {\n this.setMiniFilter(null);\n return AgPromise32.resolve();\n }\n return super.setModel(model);\n }\n refresh(params) {\n var _a, _b, _c;\n if (!super.refresh(params)) {\n return false;\n }\n const paramsThatForceReload = [\n \"treeList\",\n \"treeListFormatter\",\n \"treeListPathGetter\",\n \"keyCreator\",\n \"convertValuesToStrings\",\n \"caseSensitive\",\n \"comparator\",\n \"suppressSelectAll\",\n \"excelMode\"\n ];\n if (paramsThatForceReload.some((param) => {\n var _a2;\n return params[param] !== ((_a2 = this.setFilterParams) == null ? void 0 : _a2[param]);\n })) {\n return false;\n }\n if (this.haveColDefParamsChanged(params.colDef)) {\n return false;\n }\n super.updateParams(params);\n this.updateSetFilterOnParamsChange(params);\n this.updateMiniFilter();\n if (params.cellRenderer !== ((_a = this.setFilterParams) == null ? void 0 : _a.cellRenderer) || params.valueFormatter !== ((_b = this.setFilterParams) == null ? void 0 : _b.valueFormatter)) {\n this.checkAndRefreshVirtualList();\n }\n (_c = this.valueModel) == null ? void 0 : _c.updateOnParamsChange(params).then(() => {\n var _a2;\n if ((_a2 = this.valueModel) == null ? void 0 : _a2.hasSelections()) {\n this.refreshFilterValues();\n }\n });\n return true;\n }\n haveColDefParamsChanged(colDef) {\n var _a;\n const paramsThatForceReload = [\n \"keyCreator\",\n \"filterValueGetter\"\n ];\n const existingColDef = (_a = this.setFilterParams) == null ? void 0 : _a.colDef;\n return paramsThatForceReload.some((param) => colDef[param] !== (existingColDef == null ? void 0 : existingColDef[param]));\n }\n setModelAndRefresh(values) {\n return this.valueModel ? this.valueModel.setModel(values).then(() => this.checkAndRefreshVirtualList()) : AgPromise32.resolve();\n }\n resetUiToDefaults() {\n this.setMiniFilter(null);\n return this.setModelAndRefresh(null);\n }\n setModelIntoUi(model) {\n this.setMiniFilter(null);\n const values = model == null ? null : model.values;\n return this.setModelAndRefresh(values);\n }\n getModelFromUi() {\n if (!this.valueModel) {\n throw new Error(\"Value model has not been created.\");\n }\n const values = this.valueModel.getModel();\n if (!values) {\n return null;\n }\n return { values, filterType: this.getFilterType() };\n }\n getFilterType() {\n return \"set\";\n }\n getValueModel() {\n return this.valueModel;\n }\n areModelsEqual(a, b) {\n if (a == null && b == null) {\n return true;\n }\n return a != null && b != null && _59.areEqual(a.values, b.values);\n }\n setParams(params) {\n var _a;\n this.applyExcelModeOptions(params);\n super.setParams(params);\n this.updateSetFilterOnParamsChange(params);\n const keyCreator = (_a = params.keyCreator) != null ? _a : params.colDef.keyCreator;\n this.valueModel = new SetValueModel({\n filterParams: params,\n setIsLoading: (loading) => this.setIsLoading(loading),\n translate: (key) => this.translateForSetFilter(key),\n caseFormat: (v) => this.caseFormat(v),\n createKey: this.createKey,\n valueFormatter: this.valueFormatter,\n usingComplexObjects: !!keyCreator,\n gos: this.gos,\n columnModel: this.columnModel,\n valueService: this.valueService,\n treeDataTreeList: this.treeDataTreeList,\n groupingTreeList: this.groupingTreeList,\n addManagedListener: (event, listener) => this.addManagedListener(this.eventService, event, listener)\n });\n this.initialiseFilterBodyUi();\n this.addEventListenersForDataChanges();\n }\n onAddCurrentSelectionToFilterChange(newValue) {\n if (!this.valueModel) {\n throw new Error(\"Value model has not been created.\");\n }\n this.valueModel.setAddCurrentSelectionToFilter(newValue);\n }\n setValueFormatter(providedValueFormatter, keyCreator, convertValuesToStrings, treeList, isRefData) {\n let valueFormatter = providedValueFormatter;\n if (!valueFormatter) {\n if (keyCreator && !convertValuesToStrings && !treeList) {\n throw new Error(\"AG Grid: Must supply a Value Formatter in Set Filter params when using a Key Creator unless convertValuesToStrings is enabled\");\n }\n this.noValueFormatterSupplied = true;\n if (!isRefData) {\n valueFormatter = (params) => _59.toStringOrNull(params.value);\n }\n }\n this.valueFormatter = valueFormatter;\n }\n generateCreateKey(keyCreator, convertValuesToStrings, treeDataOrGrouping) {\n if (treeDataOrGrouping && !keyCreator) {\n throw new Error(\"AG Grid: Must supply a Key Creator in Set Filter params when `treeList = true` on a group column, and Tree Data or Row Grouping is enabled.\");\n }\n if (keyCreator) {\n return (value, node = null) => {\n const params = this.getKeyCreatorParams(value, node);\n return _59.makeNull(keyCreator(params));\n };\n }\n if (convertValuesToStrings) {\n return (value) => Array.isArray(value) ? value : _59.makeNull(_59.toStringOrNull(value));\n } else {\n return (value) => _59.makeNull(_59.toStringOrNull(value));\n }\n }\n getFormattedValue(key) {\n var _a;\n let value = this.valueModel.getValue(key);\n if (this.noValueFormatterSupplied && (this.treeDataTreeList || this.groupingTreeList) && Array.isArray(value)) {\n value = _59.last(value);\n }\n const formattedValue = this.valueService.formatValue(\n this.setFilterParams.column,\n null,\n value,\n this.valueFormatter,\n false\n );\n return (_a = formattedValue == null ? _59.toStringOrNull(value) : formattedValue) != null ? _a : this.translateForSetFilter(\"blanks\");\n }\n applyExcelModeOptions(params) {\n if (params.excelMode === \"windows\") {\n if (!params.buttons) {\n params.buttons = [\"apply\", \"cancel\"];\n }\n if (params.closeOnApply == null) {\n params.closeOnApply = true;\n }\n } else if (params.excelMode === \"mac\") {\n if (!params.buttons) {\n params.buttons = [\"reset\"];\n }\n if (params.applyMiniFilterWhileTyping == null) {\n params.applyMiniFilterWhileTyping = true;\n }\n if (params.debounceMs == null) {\n params.debounceMs = 500;\n }\n }\n if (params.excelMode && params.defaultToNothingSelected) {\n params.defaultToNothingSelected = false;\n _59.warnOnce('The Set Filter Parameter \"defaultToNothingSelected\" value was ignored because it does not work when \"excelMode\" is used.');\n }\n }\n addEventListenersForDataChanges() {\n if (!this.isValuesTakenFromGrid()) {\n return;\n }\n this.addManagedListener(\n this.eventService,\n Events210.EVENT_CELL_VALUE_CHANGED,\n (event) => {\n if (this.setFilterParams && event.column === this.setFilterParams.column) {\n this.syncAfterDataChange();\n }\n }\n );\n this.addManagedPropertyListeners([\"treeData\", \"getDataPath\", \"groupAllowUnbalanced\"], () => {\n this.syncAfterDataChange();\n });\n }\n syncAfterDataChange() {\n if (!this.valueModel) {\n throw new Error(\"Value model has not been created.\");\n }\n let promise = this.valueModel.refreshValues();\n return promise.then(() => {\n this.checkAndRefreshVirtualList();\n this.onBtApply(false, true);\n });\n }\n setIsLoading(isLoading) {\n _59.setDisplayed(this.eFilterLoading, isLoading);\n if (!isLoading) {\n this.hardRefreshVirtualList = true;\n }\n }\n initialiseFilterBodyUi() {\n this.initVirtualList();\n this.initMiniFilter();\n }\n initVirtualList() {\n if (!this.setFilterParams) {\n throw new Error(\"Set filter params have not been provided.\");\n }\n if (!this.valueModel) {\n throw new Error(\"Value model has not been created.\");\n }\n const translate = this.localeService.getLocaleTextFunc();\n const filterListName = translate(\"ariaFilterList\", \"Filter List\");\n const isTree = !!this.setFilterParams.treeList;\n const virtualList = this.virtualList = this.createBean(new VirtualList4({\n cssIdentifier: \"filter\",\n ariaRole: isTree ? \"tree\" : \"listbox\",\n listName: filterListName\n }));\n const eSetFilterList = this.getRefElement(\"eSetFilterList\");\n if (isTree) {\n eSetFilterList.classList.add(\"ag-set-filter-tree-list\");\n }\n if (eSetFilterList) {\n eSetFilterList.appendChild(virtualList.getGui());\n }\n const { cellHeight } = this.setFilterParams;\n if (cellHeight != null) {\n virtualList.setRowHeight(cellHeight);\n }\n const componentCreator = (item, listItemElement) => this.createSetListItem(item, isTree, listItemElement);\n virtualList.setComponentCreator(componentCreator);\n const componentUpdater = (item, component) => this.updateSetListItem(item, component);\n virtualList.setComponentUpdater(componentUpdater);\n let model;\n if (this.setFilterParams.suppressSelectAll) {\n model = new ModelWrapper(this.valueModel);\n } else {\n model = new ModelWrapperWithSelectAll(this.valueModel, () => this.isSelectAllSelected());\n }\n if (isTree) {\n model = new TreeModelWrapper(model);\n }\n virtualList.setModel(model);\n }\n getSelectAllLabel() {\n if (!this.setFilterParams) {\n throw new Error(\"Set filter params have not been provided.\");\n }\n if (!this.valueModel) {\n throw new Error(\"Value model has not been created.\");\n }\n const key = this.valueModel.getMiniFilter() == null || !this.setFilterParams.excelMode ? \"selectAll\" : \"selectAllSearchResults\";\n return this.translateForSetFilter(key);\n }\n getAddSelectionToFilterLabel() {\n if (!this.setFilterParams) {\n throw new Error(\"Set filter params have not been provided.\");\n }\n if (!this.valueModel) {\n throw new Error(\"Value model has not been created.\");\n }\n return this.translateForSetFilter(\"addCurrentSelectionToFilter\");\n }\n createSetListItem(item, isTree, focusWrapper) {\n if (!this.setFilterParams) {\n throw new Error(\"Set filter params have not been provided.\");\n }\n if (!this.valueModel) {\n throw new Error(\"Value model has not been created.\");\n }\n const groupsExist = this.valueModel.hasGroups();\n const { isSelected, isExpanded } = this.isSelectedExpanded(item);\n const {\n value,\n depth,\n isGroup,\n hasIndeterminateExpandState,\n selectedListener,\n expandedListener\n } = this.newSetListItemAttributes(item, isTree);\n const itemParams = {\n focusWrapper,\n value,\n params: this.setFilterParams,\n translate: (translateKey) => this.translateForSetFilter(translateKey),\n valueFormatter: this.valueFormatter,\n item,\n isSelected,\n isTree,\n depth,\n groupsExist,\n isGroup,\n isExpanded,\n hasIndeterminateExpandState\n };\n const listItem = this.createBean(new SetFilterListItem(itemParams));\n listItem.addEventListener(SetFilterListItem.EVENT_SELECTION_CHANGED, selectedListener);\n if (expandedListener) {\n listItem.addEventListener(SetFilterListItem.EVENT_EXPANDED_CHANGED, expandedListener);\n }\n return listItem;\n }\n newSetTreeItemAttributes(item, isTree) {\n var _a, _b, _c, _d, _e, _f;\n if (!this.setFilterParams) {\n throw new Error(\"Set filter params have not been provided.\");\n }\n if (!this.valueModel) {\n throw new Error(\"Value model has not been created.\");\n }\n const groupsExist = this.valueModel.hasGroups();\n if (item.key === SetFilterDisplayValue.SELECT_ALL) {\n return {\n value: () => this.getSelectAllLabel(),\n isGroup: groupsExist,\n depth: item.depth,\n hasIndeterminateExpandState: true,\n selectedListener: (e) => this.onSelectAll(e.isSelected),\n expandedListener: (e) => this.onExpandAll(e.item, e.isExpanded)\n };\n }\n if (item.key === SetFilterDisplayValue.ADD_SELECTION_TO_FILTER) {\n return {\n value: () => this.getAddSelectionToFilterLabel(),\n depth: item.depth,\n isGroup: false,\n hasIndeterminateExpandState: false,\n selectedListener: (e) => {\n this.onAddCurrentSelectionToFilterChange(e.isSelected);\n }\n };\n }\n if (item.children) {\n return {\n value: (_c = (_b = (_a = this.setFilterParams).treeListFormatter) == null ? void 0 : _b.call(_a, item.treeKey, item.depth, item.parentTreeKeys)) != null ? _c : item.treeKey,\n depth: item.depth,\n isGroup: true,\n selectedListener: (e) => this.onGroupItemSelected(e.item, e.isSelected),\n expandedListener: (e) => this.onExpandedChanged(e.item, e.isExpanded)\n };\n }\n return {\n value: (_f = (_e = (_d = this.setFilterParams).treeListFormatter) == null ? void 0 : _e.call(_d, item.treeKey, item.depth, item.parentTreeKeys)) != null ? _f : item.treeKey,\n depth: item.depth,\n selectedListener: (e) => this.onItemSelected(e.item.key, e.isSelected)\n };\n }\n newSetListItemAttributes(item, isTree) {\n if (!this.setFilterParams) {\n throw new Error(\"Set filter params have not been provided.\");\n }\n if (!this.valueModel) {\n throw new Error(\"Value model has not been created.\");\n }\n if (this.isSetFilterModelTreeItem(item)) {\n return this.newSetTreeItemAttributes(item, isTree);\n }\n if (item === SetFilterDisplayValue.SELECT_ALL) {\n return {\n value: () => this.getSelectAllLabel(),\n selectedListener: (e) => this.onSelectAll(e.isSelected)\n };\n }\n if (item === SetFilterDisplayValue.ADD_SELECTION_TO_FILTER) {\n return {\n value: () => this.getAddSelectionToFilterLabel(),\n selectedListener: (e) => {\n this.onAddCurrentSelectionToFilterChange(e.isSelected);\n }\n };\n }\n return {\n value: this.valueModel.getValue(item),\n selectedListener: (e) => this.onItemSelected(e.item, e.isSelected)\n };\n }\n updateSetListItem(item, component) {\n const { isSelected, isExpanded } = this.isSelectedExpanded(item);\n component.refresh(item, isSelected, isExpanded);\n }\n isSelectedExpanded(item) {\n let isSelected;\n let isExpanded;\n if (this.isSetFilterModelTreeItem(item)) {\n isExpanded = item.expanded;\n if (item.key === SetFilterDisplayValue.SELECT_ALL) {\n isSelected = this.isSelectAllSelected();\n } else if (item.key === SetFilterDisplayValue.ADD_SELECTION_TO_FILTER) {\n isSelected = this.valueModel.isAddCurrentSelectionToFilterChecked();\n } else if (item.children) {\n isSelected = this.areAllChildrenSelected(item);\n } else {\n isSelected = this.valueModel.isKeySelected(item.key);\n }\n } else {\n if (item === SetFilterDisplayValue.SELECT_ALL) {\n isSelected = this.isSelectAllSelected();\n } else if (item === SetFilterDisplayValue.ADD_SELECTION_TO_FILTER) {\n isSelected = this.valueModel.isAddCurrentSelectionToFilterChecked();\n } else {\n isSelected = this.valueModel.isKeySelected(item);\n }\n }\n return { isSelected, isExpanded };\n }\n isSetFilterModelTreeItem(item) {\n return (item == null ? void 0 : item.treeKey) !== void 0;\n }\n initMiniFilter() {\n if (!this.setFilterParams) {\n throw new Error(\"Set filter params have not been provided.\");\n }\n if (!this.valueModel) {\n throw new Error(\"Value model has not been created.\");\n }\n const { eMiniFilter, localeService } = this;\n const translate = localeService.getLocaleTextFunc();\n eMiniFilter.setDisplayed(!this.setFilterParams.suppressMiniFilter);\n eMiniFilter.setValue(this.valueModel.getMiniFilter());\n eMiniFilter.onValueChange(() => this.onMiniFilterInput());\n eMiniFilter.setInputAriaLabel(translate(\"ariaSearchFilterValues\", \"Search filter values\"));\n this.addManagedListener(eMiniFilter.getInputElement(), \"keydown\", (e) => this.onMiniFilterKeyDown(e));\n }\n updateMiniFilter() {\n if (!this.setFilterParams) {\n throw new Error(\"Set filter params have not been provided.\");\n }\n if (!this.valueModel) {\n throw new Error(\"Value model has not been created.\");\n }\n const { eMiniFilter } = this;\n if (eMiniFilter.isDisplayed() !== !this.setFilterParams.suppressMiniFilter) {\n eMiniFilter.setDisplayed(!this.setFilterParams.suppressMiniFilter);\n }\n const miniFilterValue = this.valueModel.getMiniFilter();\n if (eMiniFilter.getValue() !== miniFilterValue) {\n eMiniFilter.setValue(miniFilterValue);\n }\n }\n // we need to have the GUI attached before we can draw the virtual rows, as the\n // virtual row logic needs info about the GUI state\n afterGuiAttached(params) {\n if (!this.setFilterParams) {\n throw new Error(\"Set filter params have not been provided.\");\n }\n super.afterGuiAttached(params);\n this.resetExpansion();\n this.refreshVirtualList();\n const { eMiniFilter } = this;\n eMiniFilter.setInputPlaceholder(this.translateForSetFilter(\"searchOoo\"));\n if (!params || !params.suppressFocus) {\n eMiniFilter.getFocusableElement().focus();\n }\n }\n afterGuiDetached() {\n var _a, _b;\n super.afterGuiDetached();\n if ((_a = this.setFilterParams) == null ? void 0 : _a.excelMode) {\n this.resetMiniFilter();\n }\n const appliedModel = this.getModel();\n if (((_b = this.setFilterParams) == null ? void 0 : _b.excelMode) || !this.areModelsEqual(appliedModel, this.getModelFromUi())) {\n this.resetUiToActiveModel(appliedModel);\n this.showOrHideResults();\n }\n }\n applyModel(source = \"api\") {\n if (!this.setFilterParams) {\n throw new Error(\"Set filter params have not been provided.\");\n }\n if (!this.valueModel) {\n throw new Error(\"Value model has not been created.\");\n }\n if (this.setFilterParams.excelMode && source !== \"rowDataUpdated\" && this.valueModel.isEverythingVisibleSelected()) {\n this.valueModel.selectAllMatchingMiniFilter();\n }\n const shouldKeepCurrentSelection = this.valueModel.showAddCurrentSelectionToFilter() && this.valueModel.isAddCurrentSelectionToFilterChecked();\n if (shouldKeepCurrentSelection && !this.getModel()) {\n return false;\n }\n const result = super.applyModel(source);\n const appliedModel = this.getModel();\n if (appliedModel) {\n if (!shouldKeepCurrentSelection) {\n this.valueModel.setAppliedModelKeys(/* @__PURE__ */ new Set());\n }\n appliedModel.values.forEach((key) => {\n this.valueModel.addToAppliedModelKeys(key);\n });\n } else {\n if (!shouldKeepCurrentSelection) {\n this.valueModel.setAppliedModelKeys(null);\n }\n }\n return result;\n }\n isModelValid(model) {\n return this.setFilterParams && this.setFilterParams.excelMode ? model == null || model.values.length > 0 : true;\n }\n doesFilterPass(params) {\n if (!this.setFilterParams || !this.valueModel || !this.valueModel.getCaseFormattedAppliedModelKeys()) {\n return true;\n }\n if (!this.valueModel.hasAnyAppliedModelKey()) {\n return false;\n }\n const { node, data } = params;\n if (this.treeDataTreeList) {\n return this.doesFilterPassForTreeData(node, data);\n }\n if (this.groupingTreeList) {\n return this.doesFilterPassForGrouping(node);\n }\n let value = this.getValueFromNode(node);\n if (this.convertValuesToStrings) {\n return this.doesFilterPassForConvertValuesToString(node, value);\n }\n if (value != null && Array.isArray(value)) {\n if (value.length === 0) {\n return this.valueModel.hasAppliedModelKey(null);\n }\n return value.some((v) => this.isInAppliedModel(this.createKey(v, node)));\n }\n return this.isInAppliedModel(this.createKey(value, node));\n }\n doesFilterPassForConvertValuesToString(node, value) {\n const key = this.createKey(value, node);\n if (key != null && Array.isArray(key)) {\n if (key.length === 0) {\n return this.valueModel.hasAppliedModelKey(null);\n }\n return key.some((v) => this.isInAppliedModel(v));\n }\n return this.isInAppliedModel(key);\n }\n doesFilterPassForTreeData(node, data) {\n var _a;\n if ((_a = node.childrenAfterGroup) == null ? void 0 : _a.length) {\n return false;\n }\n return this.isInAppliedModel(this.createKey(this.checkMakeNullDataPath(this.getDataPath(data))));\n }\n doesFilterPassForGrouping(node) {\n const dataPath = this.columnModel.getRowGroupColumns().map((groupCol) => this.valueService.getKeyForNode(groupCol, node));\n dataPath.push(this.getValueFromNode(node));\n return this.isInAppliedModel(this.createKey(this.checkMakeNullDataPath(dataPath)));\n }\n checkMakeNullDataPath(dataPath) {\n if (dataPath) {\n dataPath = dataPath.map((treeKey) => _59.toStringOrNull(_59.makeNull(treeKey)));\n }\n if (dataPath == null ? void 0 : dataPath.some((treeKey) => treeKey == null)) {\n return null;\n }\n return dataPath;\n }\n isInAppliedModel(key) {\n return this.valueModel.hasAppliedModelKey(key);\n }\n getValueFromNode(node) {\n return this.setFilterParams.getValue(node);\n }\n getKeyCreatorParams(value, node = null) {\n return {\n value,\n colDef: this.setFilterParams.colDef,\n column: this.setFilterParams.column,\n node,\n data: node == null ? void 0 : node.data,\n api: this.setFilterParams.api,\n columnApi: this.setFilterParams.columnApi,\n context: this.setFilterParams.context\n };\n }\n onNewRowsLoaded() {\n if (!this.isValuesTakenFromGrid()) {\n return;\n }\n this.syncAfterDataChange();\n }\n isValuesTakenFromGrid() {\n if (!this.valueModel) {\n return false;\n }\n const valuesType = this.valueModel.getValuesType();\n return valuesType === 2;\n }\n //noinspection JSUnusedGlobalSymbols\n /**\n * Public method provided so the user can change the value of the filter once\n * the filter has been already started\n * @param values The values to use.\n */\n setFilterValues(values) {\n if (!this.valueModel) {\n throw new Error(\"Value model has not been created.\");\n }\n this.valueModel.overrideValues(values).then(() => {\n this.checkAndRefreshVirtualList();\n this.onUiChanged();\n });\n }\n //noinspection JSUnusedGlobalSymbols\n /**\n * Public method provided so the user can reset the values of the filter once that it has started.\n */\n resetFilterValues() {\n if (!this.valueModel) {\n throw new Error(\"Value model has not been created.\");\n }\n this.valueModel.setValuesType(\n 2\n /* TAKEN_FROM_GRID_VALUES */\n );\n this.syncAfterDataChange();\n }\n refreshFilterValues() {\n if (!this.valueModel) {\n throw new Error(\"Value model has not been created.\");\n }\n if (!this.valueModel.isInitialised()) {\n return;\n }\n this.valueModel.refreshValues().then(() => {\n this.checkAndRefreshVirtualList();\n this.onUiChanged();\n });\n }\n onAnyFilterChanged() {\n setTimeout(() => {\n if (!this.isAlive()) {\n return;\n }\n if (!this.valueModel) {\n throw new Error(\"Value model has not been created.\");\n }\n this.valueModel.refreshAfterAnyFilterChanged().then((refresh) => {\n if (refresh) {\n this.checkAndRefreshVirtualList();\n this.showOrHideResults();\n }\n });\n }, 0);\n }\n onMiniFilterInput() {\n if (!this.setFilterParams) {\n throw new Error(\"Set filter params have not been provided.\");\n }\n if (!this.valueModel) {\n throw new Error(\"Value model has not been created.\");\n }\n if (!this.valueModel.setMiniFilter(this.eMiniFilter.getValue())) {\n return;\n }\n const { applyMiniFilterWhileTyping, readOnly } = this.setFilterParams || {};\n if (!readOnly && applyMiniFilterWhileTyping) {\n this.filterOnAllVisibleValues(false);\n } else {\n this.updateUiAfterMiniFilterChange();\n }\n }\n updateUiAfterMiniFilterChange() {\n if (!this.setFilterParams) {\n throw new Error(\"Set filter params have not been provided.\");\n }\n if (!this.valueModel) {\n throw new Error(\"Value model has not been created.\");\n }\n const { excelMode, readOnly } = this.setFilterParams || {};\n if (excelMode == null || !!readOnly) {\n this.checkAndRefreshVirtualList();\n } else if (this.valueModel.getMiniFilter() == null) {\n this.resetUiToActiveModel(this.getModel());\n } else {\n this.valueModel.selectAllMatchingMiniFilter(true);\n this.checkAndRefreshVirtualList();\n this.onUiChanged();\n }\n this.showOrHideResults();\n }\n showOrHideResults() {\n if (!this.valueModel) {\n throw new Error(\"Value model has not been created.\");\n }\n const hideResults = this.valueModel.getMiniFilter() != null && this.valueModel.getDisplayedValueCount() < 1;\n _59.setDisplayed(this.eNoMatches, hideResults);\n _59.setDisplayed(this.eSetFilterList, !hideResults);\n }\n resetMiniFilter() {\n var _a;\n this.eMiniFilter.setValue(null, true);\n (_a = this.valueModel) == null ? void 0 : _a.setMiniFilter(null);\n }\n resetUiToActiveModel(currentModel, afterUiUpdatedFunc) {\n this.setModelAndRefresh(currentModel == null ? null : currentModel.values).then(() => {\n this.onUiChanged(false, \"prevent\");\n afterUiUpdatedFunc == null ? void 0 : afterUiUpdatedFunc();\n });\n }\n handleCancelEnd(e) {\n this.setMiniFilter(null);\n super.handleCancelEnd(e);\n }\n onMiniFilterKeyDown(e) {\n const { excelMode, readOnly } = this.setFilterParams || {};\n if (e.key === KeyCode11.ENTER && !excelMode && !readOnly) {\n this.filterOnAllVisibleValues();\n }\n }\n filterOnAllVisibleValues(applyImmediately = true) {\n const { readOnly } = this.setFilterParams || {};\n if (!this.valueModel) {\n throw new Error(\"Value model has not been created.\");\n }\n if (!!readOnly) {\n throw new Error(\"Unable to filter in readOnly mode.\");\n }\n this.valueModel.selectAllMatchingMiniFilter(true);\n this.checkAndRefreshVirtualList();\n this.onUiChanged(false, applyImmediately ? \"immediately\" : \"debounce\");\n this.showOrHideResults();\n }\n focusRowIfAlive(rowIndex) {\n if (rowIndex == null) {\n return;\n }\n window.setTimeout(() => {\n if (!this.virtualList) {\n throw new Error(\"Virtual list has not been created.\");\n }\n if (this.isAlive()) {\n this.virtualList.focusRow(rowIndex);\n }\n }, 0);\n }\n onSelectAll(isSelected) {\n if (!this.valueModel) {\n throw new Error(\"Value model has not been created.\");\n }\n if (!this.virtualList) {\n throw new Error(\"Virtual list has not been created.\");\n }\n if (isSelected) {\n this.valueModel.selectAllMatchingMiniFilter();\n } else {\n this.valueModel.deselectAllMatchingMiniFilter();\n }\n this.refreshAfterSelection();\n }\n onGroupItemSelected(item, isSelected) {\n const recursiveGroupSelection = (i) => {\n if (i.children) {\n i.children.forEach((childItem) => recursiveGroupSelection(childItem));\n } else {\n this.selectItem(i.key, isSelected);\n }\n };\n recursiveGroupSelection(item);\n this.refreshAfterSelection();\n }\n onItemSelected(key, isSelected) {\n if (!this.valueModel) {\n throw new Error(\"Value model has not been created.\");\n }\n if (!this.virtualList) {\n throw new Error(\"Virtual list has not been created.\");\n }\n this.selectItem(key, isSelected);\n this.refreshAfterSelection();\n }\n selectItem(key, isSelected) {\n if (isSelected) {\n this.valueModel.selectKey(key);\n } else {\n this.valueModel.deselectKey(key);\n }\n }\n onExpandAll(item, isExpanded) {\n const recursiveExpansion = (i) => {\n if (i.filterPasses && i.available && i.children) {\n i.children.forEach((childItem) => recursiveExpansion(childItem));\n i.expanded = isExpanded;\n }\n };\n recursiveExpansion(item);\n this.refreshAfterExpansion();\n }\n onExpandedChanged(item, isExpanded) {\n item.expanded = isExpanded;\n this.refreshAfterExpansion();\n }\n refreshAfterExpansion() {\n const focusedRow = this.virtualList.getLastFocusedRow();\n this.valueModel.updateDisplayedValues(\"expansion\");\n this.checkAndRefreshVirtualList();\n this.focusRowIfAlive(focusedRow);\n }\n refreshAfterSelection() {\n const focusedRow = this.virtualList.getLastFocusedRow();\n this.checkAndRefreshVirtualList();\n this.onUiChanged();\n this.focusRowIfAlive(focusedRow);\n }\n setMiniFilter(newMiniFilter) {\n this.eMiniFilter.setValue(newMiniFilter);\n this.onMiniFilterInput();\n }\n getMiniFilter() {\n return this.valueModel ? this.valueModel.getMiniFilter() : null;\n }\n checkAndRefreshVirtualList() {\n if (!this.virtualList) {\n throw new Error(\"Virtual list has not been created.\");\n }\n this.virtualList.refresh(!this.hardRefreshVirtualList);\n if (this.hardRefreshVirtualList) {\n this.hardRefreshVirtualList = false;\n }\n }\n getFilterKeys() {\n return this.valueModel ? this.valueModel.getKeys() : [];\n }\n getFilterValues() {\n return this.valueModel ? this.valueModel.getValues() : [];\n }\n getValues() {\n return this.getFilterKeys();\n }\n refreshVirtualList() {\n if (this.setFilterParams && this.setFilterParams.refreshValuesOnOpen) {\n this.refreshFilterValues();\n } else {\n this.checkAndRefreshVirtualList();\n }\n }\n translateForSetFilter(key) {\n const translate = this.localeService.getLocaleTextFunc();\n return translate(key, DEFAULT_LOCALE_TEXT[key]);\n }\n isSelectAllSelected() {\n if (!this.setFilterParams || !this.valueModel) {\n return false;\n }\n if (!this.setFilterParams.defaultToNothingSelected) {\n if (this.valueModel.hasSelections() && this.valueModel.isNothingVisibleSelected()) {\n return false;\n }\n if (this.valueModel.isEverythingVisibleSelected()) {\n return true;\n }\n } else {\n if (this.valueModel.hasSelections() && this.valueModel.isEverythingVisibleSelected()) {\n return true;\n }\n if (this.valueModel.isNothingVisibleSelected()) {\n return false;\n }\n }\n return void 0;\n }\n areAllChildrenSelected(item) {\n const recursiveChildSelectionCheck = (i) => {\n if (i.children) {\n let someTrue = false;\n let someFalse = false;\n const mixed = i.children.some((child) => {\n if (!child.filterPasses || !child.available) {\n return false;\n }\n const childSelected = recursiveChildSelectionCheck(child);\n if (childSelected === void 0) {\n return true;\n }\n if (childSelected) {\n someTrue = true;\n } else {\n someFalse = true;\n }\n return someTrue && someFalse;\n });\n return mixed ? void 0 : someTrue;\n } else {\n return this.valueModel.isKeySelected(i.key);\n }\n };\n if (!this.setFilterParams.defaultToNothingSelected) {\n return recursiveChildSelectionCheck(item);\n } else {\n return this.valueModel.hasSelections() && recursiveChildSelectionCheck(item);\n }\n }\n destroy() {\n if (this.virtualList != null) {\n this.virtualList.destroy();\n this.virtualList = null;\n }\n super.destroy();\n }\n caseFormat(valueToFormat) {\n if (valueToFormat == null || typeof valueToFormat !== \"string\") {\n return valueToFormat;\n }\n return this.caseSensitive ? valueToFormat : valueToFormat.toUpperCase();\n }\n resetExpansion() {\n var _a, _b;\n if (!((_a = this.setFilterParams) == null ? void 0 : _a.treeList)) {\n return;\n }\n const selectAllItem = (_b = this.valueModel) == null ? void 0 : _b.getSelectAllItem();\n if (this.isSetFilterModelTreeItem(selectAllItem)) {\n const recursiveCollapse = (i) => {\n if (i.children) {\n i.children.forEach((childItem) => recursiveCollapse(childItem));\n i.expanded = false;\n }\n };\n recursiveCollapse(selectAllItem);\n this.valueModel.updateDisplayedValues(\"expansion\");\n }\n }\n getModelAsString(model) {\n return this.filterModelFormatter.getModelAsString(model, this);\n }\n getPositionableElement() {\n return this.eSetFilterList;\n }\n};\n__decorateClass15([\n RefSelector27(\"eMiniFilter\")\n], SetFilter.prototype, \"eMiniFilter\", 2);\n__decorateClass15([\n RefSelector27(\"eFilterLoading\")\n], SetFilter.prototype, \"eFilterLoading\", 2);\n__decorateClass15([\n RefSelector27(\"eSetFilterList\")\n], SetFilter.prototype, \"eSetFilterList\", 2);\n__decorateClass15([\n RefSelector27(\"eFilterNoMatches\")\n], SetFilter.prototype, \"eNoMatches\", 2);\n__decorateClass15([\n Autowired217(\"columnModel\")\n], SetFilter.prototype, \"columnModel\", 2);\n__decorateClass15([\n Autowired217(\"valueService\")\n], SetFilter.prototype, \"valueService\", 2);\nvar ModelWrapper = class {\n constructor(model) {\n this.model = model;\n }\n getRowCount() {\n return this.model.getDisplayedValueCount();\n }\n getRow(index) {\n return this.model.getDisplayedItem(index);\n }\n areRowsEqual(oldRow, newRow) {\n return oldRow === newRow;\n }\n};\nvar ModelWrapperWithSelectAll = class {\n constructor(model, isSelectAllSelected) {\n this.model = model;\n this.isSelectAllSelected = isSelectAllSelected;\n }\n getRowCount() {\n const showAddCurrentSelectionToFilter = this.model.showAddCurrentSelectionToFilter();\n const outboundItems = showAddCurrentSelectionToFilter ? 2 : 1;\n return this.model.getDisplayedValueCount() + outboundItems;\n }\n getRow(index) {\n if (index === 0) {\n return this.model.getSelectAllItem();\n }\n const showAddCurrentSelectionToFilter = this.model.showAddCurrentSelectionToFilter();\n const outboundItems = showAddCurrentSelectionToFilter ? 2 : 1;\n if (index === 1 && showAddCurrentSelectionToFilter) {\n return this.model.getAddSelectionToFilterItem();\n }\n return this.model.getDisplayedItem(index - outboundItems);\n }\n areRowsEqual(oldRow, newRow) {\n return oldRow === newRow;\n }\n};\nvar TreeModelWrapper = class {\n constructor(model) {\n this.model = model;\n }\n getRowCount() {\n return this.model.getRowCount();\n }\n getRow(index) {\n return this.model.getRow(index);\n }\n areRowsEqual(oldRow, newRow) {\n if (oldRow == null && newRow == null) {\n return true;\n }\n return oldRow != null && newRow != null && oldRow.treeKey === newRow.treeKey && oldRow.depth === newRow.depth;\n }\n};\nvar SetFloatingFilterComp = class extends Component214 {\n constructor() {\n super(\n /* html */\n `\n
`\n );\n this.availableValuesListenerAdded = false;\n this.filterModelFormatter = new SetFilterModelFormatter();\n }\n // this is a user component, and IComponent has \"public destroy()\" as part of the interface.\n // so we need to override destroy() just to make the method public.\n destroy() {\n super.destroy();\n }\n init(params) {\n this.params = params;\n this.eFloatingFilterText.setDisabled(true).addGuiEventListener(\"click\", () => this.params.showParentFilter());\n this.setParams(params);\n }\n setParams(params) {\n const displayName = this.columnModel.getDisplayNameForColumn(params.column, \"header\", true);\n const translate = this.localeService.getLocaleTextFunc();\n this.eFloatingFilterText.setInputAriaLabel(`${displayName} ${translate(\"ariaFilterInput\", \"Filter Input\")}`);\n }\n onParamsUpdated(params) {\n this.refresh(params);\n }\n refresh(params) {\n this.params = params;\n this.setParams(params);\n }\n onParentModelChanged(parentModel) {\n this.updateFloatingFilterText(parentModel);\n }\n parentSetFilterInstance(cb) {\n this.params.parentFilterInstance((filter) => {\n if (!(filter instanceof SetFilter)) {\n throw new Error(\"AG Grid - SetFloatingFilter expects SetFilter as its parent\");\n }\n cb(filter);\n });\n }\n addAvailableValuesListener() {\n this.parentSetFilterInstance((setFilter) => {\n const setValueModel = setFilter.getValueModel();\n if (!setValueModel) {\n return;\n }\n this.addManagedListener(\n setValueModel,\n SetValueModel.EVENT_AVAILABLE_VALUES_CHANGED,\n () => this.updateFloatingFilterText()\n );\n });\n this.availableValuesListenerAdded = true;\n }\n updateFloatingFilterText(parentModel) {\n if (!this.availableValuesListenerAdded) {\n this.addAvailableValuesListener();\n }\n this.parentSetFilterInstance((setFilter) => {\n this.eFloatingFilterText.setValue(this.filterModelFormatter.getModelAsString(parentModel, setFilter));\n });\n }\n};\n__decorateClass15([\n RefSelector37(\"eFloatingFilterText\")\n], SetFloatingFilterComp.prototype, \"eFloatingFilterText\", 2);\n__decorateClass15([\n Autowired316(\"columnModel\")\n], SetFloatingFilterComp.prototype, \"columnModel\", 2);\nvar VERSION16 = \"31.3.2\";\nvar SetFilterModule = {\n version: VERSION16,\n moduleName: ModuleNames16.SetFilterModule,\n beans: [],\n userComponents: [\n { componentName: \"agSetColumnFilter\", componentClass: SetFilter },\n { componentName: \"agSetColumnFloatingFilter\", componentClass: SetFloatingFilterComp }\n ],\n dependantModules: [\n EnterpriseCoreModule\n ]\n};\n\n// enterprise-modules/sparklines/dist/package/main.esm.mjs\nimport { ModuleNames as ModuleNames17 } from \"ag-grid-community\";\nimport {\n Autowired as Autowired69,\n Component as Component58,\n RefSelector as RefSelector28\n} from \"ag-grid-community\";\nimport { _Scale as _Scale2, _Scene as _Scene32, _Util as _Util2 } from \"ag-charts-community\";\nimport { _Scale, _Scene as _Scene25, _Util as _Util4 } from \"ag-charts-community\";\nimport { _Scene as _Scene26 } from \"ag-charts-community\";\nimport { _Scale as _Scale3, _Scene as _Scene42, _Util as _Util32 } from \"ag-charts-community\";\nimport { _Scale as _Scale4, _Scene as _Scene62, _Util as _Util52 } from \"ag-charts-community\";\nimport { _Scene as _Scene52, _Util as _Util42 } from \"ag-charts-community\";\nimport { _Scale as _Scale5, _Scene as _Scene72, _Util as _Util62 } from \"ag-charts-community\";\nimport { _Util as _Util7 } from \"ag-charts-community\";\nimport { Bean as Bean15, BeanStub as BeanStub29, PostConstruct as PostConstruct66, PreDestroy as PreDestroy6 } from \"ag-grid-community\";\nvar __defProp16 = Object.defineProperty;\nvar __getOwnPropDesc16 = Object.getOwnPropertyDescriptor;\nvar __getOwnPropSymbols13 = Object.getOwnPropertySymbols;\nvar __hasOwnProp14 = Object.prototype.hasOwnProperty;\nvar __propIsEnum13 = Object.prototype.propertyIsEnumerable;\nvar __defNormalProp13 = (obj, key, value) => key in obj ? __defProp16(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;\nvar __spreadValues13 = (a, b) => {\n for (var prop in b || (b = {}))\n if (__hasOwnProp14.call(b, prop))\n __defNormalProp13(a, prop, b[prop]);\n if (__getOwnPropSymbols13)\n for (var prop of __getOwnPropSymbols13(b)) {\n if (__propIsEnum13.call(b, prop))\n __defNormalProp13(a, prop, b[prop]);\n }\n return a;\n};\nvar __decorateClass16 = (decorators, target, key, kind) => {\n var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc16(target, key) : target;\n for (var i = decorators.length - 1, decorator; i >= 0; i--)\n if (decorator = decorators[i])\n result = (kind ? decorator(target, key, result) : decorator(result)) || result;\n if (kind && result)\n __defProp16(target, key, result);\n return result;\n};\nvar defaultTooltipCss = `\n.ag-sparkline-tooltip-wrapper {\n position: absolute;\n user-select: none;\n pointer-events: none;\n}\n\n.ag-sparkline-tooltip {\n position: relative;\n font: 12px arial,sans-serif;\n border-radius: 2px;\n box-shadow: 0 1px 3px rgb(0 0 0 / 20%), 0 1px 1px rgb(0 0 0 / 14%);\n line-height: 1.7em;\n overflow: hidden;\n white-space: nowrap;\n z-index: 99999;\n background-color: rgb(255, 255, 255);\n color: rgba(0,0,0, 0.67);\n}\n\n.ag-sparkline-tooltip-content {\n padding: 0 7px;\n opacity: 1;\n}\n\n.ag-sparkline-tooltip-title {\n padding-left: 7px;\n opacity: 1;\n}\n\n.ag-sparkline-tooltip-wrapper-hidden {\n top: -10000px !important;\n}\n\n.ag-sparkline-wrapper {\n box-sizing: border-box;\n overflow: hidden;\n}\n`;\nvar { extent, isNumber, isString: isString2, isStringObject, isDate, createId, Padding } = _Util4;\nvar { LinearScale, BandScale, TimeScale } = _Scale;\nvar SparklineAxis = class {\n constructor() {\n this.type = \"category\";\n this.stroke = \"rgb(204, 214, 235)\";\n this.strokeWidth = 1;\n }\n};\nvar _Sparkline = class _Sparkline2 {\n constructor() {\n this.id = createId(this);\n this.seriesRect = {\n x: 0,\n y: 0,\n width: 0,\n height: 0\n };\n this._context = void 0;\n this._container = void 0;\n this._data = void 0;\n this.padding = new Padding(3);\n this.xKey = \"x\";\n this.yKey = \"y\";\n this.dataType = void 0;\n this.xData = [];\n this.yData = [];\n this.min = void 0;\n this.max = void 0;\n this.yScale = new LinearScale();\n this.axis = new SparklineAxis();\n this.highlightStyle = {\n size: 6,\n fill: \"yellow\",\n stroke: \"silver\",\n strokeWidth: 1\n };\n this._width = 100;\n this._height = 100;\n this.smallestInterval = void 0;\n this.layoutId = 0;\n this.defaultDateFormatter = new Intl.DateTimeFormat(\"en-US\", {\n year: \"numeric\",\n month: \"2-digit\",\n day: \"2-digit\",\n hour: \"2-digit\",\n minute: \"2-digit\",\n second: \"2-digit\",\n hour12: false\n });\n this._onMouseMove = this.onMouseMove.bind(this);\n this._onMouseOut = this.onMouseOut.bind(this);\n const root = new _Scene25.Group();\n this.rootGroup = root;\n const element = document.createElement(\"div\");\n element.setAttribute(\"class\", \"ag-sparkline-wrapper\");\n const scene = new _Scene25.Scene({});\n this.scene = scene;\n this.canvasElement = scene.canvas.element;\n scene.setRoot(root);\n scene.setContainer(element);\n this.resizeAndSetDimensions(this.width, this.height);\n if (!_Sparkline2.tooltipDocuments.includes(document)) {\n this.initialiseTooltipStyles();\n }\n this.setupDomEventListeners(this.canvasElement);\n }\n set context(value) {\n if (this._context !== value) {\n this._context = value;\n }\n }\n get context() {\n return this._context;\n }\n set container(value) {\n if (this._container !== value) {\n const { parentNode } = this.canvasElement;\n if (parentNode != null) {\n parentNode.removeChild(this.canvasElement);\n }\n if (value) {\n value.appendChild(this.canvasElement);\n }\n this._container = value;\n }\n }\n get container() {\n return this._container;\n }\n set data(value) {\n if (this._data !== value) {\n this._data = value;\n this.processData();\n if (this.mouseMoveEvent && this.highlightedDatum) {\n this.updateHitPoint(this.mouseMoveEvent);\n }\n }\n }\n get data() {\n return this._data;\n }\n resizeAndSetDimensions(width, height) {\n this.scene.resize(width, height);\n this.seriesRect.width = width;\n this.seriesRect.height = height;\n }\n initialiseTooltipStyles() {\n const styleElement = document.createElement(\"style\");\n styleElement.innerHTML = defaultTooltipCss;\n document.head.insertBefore(styleElement, document.head.querySelector(\"style\"));\n _Sparkline2.tooltipDocuments.push(document);\n }\n set width(value) {\n if (this._width !== value) {\n this._width = value;\n this.scene.resize(value, this.height);\n this.scheduleLayout();\n }\n }\n get width() {\n return this._width;\n }\n set height(value) {\n if (this._height !== value) {\n this._height = value;\n this.scene.resize(this.width, value);\n this.scheduleLayout();\n }\n }\n get height() {\n return this._height;\n }\n /**\n * Generate node data from processed data.\n * Produce data joins.\n * Update selection's nodes using node data.\n */\n update() {\n }\n // Update y scale based on processed data.\n updateYScale() {\n this.updateYScaleRange();\n this.updateYScaleDomain();\n }\n // Update y scale domain based on processed data.\n updateYScaleDomain() {\n }\n // Update y scale range based on height and padding (seriesRect).\n updateYScaleRange() {\n const { yScale, seriesRect } = this;\n yScale.range = [seriesRect.height, 0];\n }\n // Update x scale based on processed data.\n updateXScale() {\n const { type } = this.axis;\n this.xScale = this.getXScale(type);\n this.updateXScaleRange();\n this.updateXScaleDomain();\n }\n // Update x scale range based on width and padding (seriesRect).\n updateXScaleRange() {\n this.xScale.range = [0, this.seriesRect.width];\n }\n // Update x scale domain based on processed data and type of scale.\n updateXScaleDomain() {\n const { xData, xScale } = this;\n let xMinMax;\n if (xScale instanceof LinearScale || xScale instanceof TimeScale) {\n xMinMax = extent(xData);\n }\n this.xScale.domain = xMinMax ? xMinMax.slice() : xData;\n }\n /**\n * Return xScale instance based on the provided type or return a `BandScale` by default.\n * The default type is `category`.\n * @param type\n */\n getXScale(type = \"category\") {\n switch (type) {\n case \"number\":\n return new LinearScale();\n case \"time\":\n return new TimeScale();\n case \"category\":\n default:\n return new BandScale();\n }\n }\n // Update axis line.\n updateAxisLine() {\n }\n // Update X and Y scales and the axis line.\n updateAxes() {\n this.updateYScale();\n this.updateXScale();\n this.updateAxisLine();\n }\n // Update horizontal and vertical crosshair lines.\n updateCrosshairs() {\n this.updateXCrosshairLine();\n this.updateYCrosshairLine();\n }\n // Using processed data, generate data that backs visible nodes.\n generateNodeData() {\n return [];\n }\n // Returns persisted node data associated with the sparkline's data.\n getNodeData() {\n return [];\n }\n // Update the selection's nodes.\n updateNodes() {\n }\n // Update the vertical crosshair line.\n updateXCrosshairLine() {\n }\n // Update the horizontal crosshair line.\n updateYCrosshairLine() {\n }\n highlightDatum(closestDatum) {\n this.updateNodes();\n }\n dehighlightDatum() {\n this.highlightedDatum = void 0;\n this.updateNodes();\n this.updateCrosshairs();\n }\n /**\n * Highlight closest datum and display tooltip if enabled.\n * Only update if necessary, i.e. only update if the highlighted datum is different from previously highlighted datum,\n * or if there is no previously highlighted datum.\n * @param event\n */\n onMouseMove(event) {\n this.mouseMoveEvent = event;\n this.updateHitPoint(event);\n }\n updateHitPoint(event) {\n var _a, _b, _c;\n const closestDatum = this.pickClosestSeriesNodeDatum(event.offsetX, event.offsetY);\n if (!closestDatum) {\n return;\n }\n const oldHighlightedDatum = this.highlightedDatum;\n this.highlightedDatum = closestDatum;\n if (this.highlightedDatum && !oldHighlightedDatum || this.highlightedDatum && oldHighlightedDatum && this.highlightedDatum !== oldHighlightedDatum) {\n this.highlightDatum(closestDatum);\n this.updateCrosshairs();\n this.scene.render().catch((e) => console.error(`AG Grid - chart rendering failed`, e));\n }\n const tooltipEnabled = (_c = (_b = (_a = this.processedOptions) == null ? void 0 : _a.tooltip) == null ? void 0 : _b.enabled) != null ? _c : true;\n if (tooltipEnabled) {\n this.handleTooltip(event, closestDatum);\n }\n }\n /**\n * Dehighlight all nodes and remove tooltip.\n * @param event\n */\n onMouseOut(event) {\n this.dehighlightDatum();\n this.tooltip.toggle(false);\n this.scene.render().catch((e) => console.error(`AG Grid - chart rendering failed`, e));\n }\n // Fetch required values from the data object and process them.\n processData() {\n const { data, yData, xData } = this;\n if (!data || this.invalidData(this.data)) {\n return;\n }\n yData.length = 0;\n xData.length = 0;\n const n = data.length;\n const dataType = this.getDataType(data);\n this.dataType = dataType;\n const { type: xValueType } = this.axis;\n const xType = xValueType !== \"number\" && xValueType !== \"time\" ? \"category\" : xValueType;\n const isContinuousX = xType === \"number\" || xType === \"time\";\n const setSmallestXInterval = (curr, prev) => {\n if (this.smallestInterval == void 0) {\n this.smallestInterval = { x: Infinity, y: Infinity };\n }\n const { x } = this.smallestInterval;\n const interval = Math.abs(curr - prev);\n if (interval > 0 && interval < x) {\n this.smallestInterval.x = interval;\n }\n };\n let prevX;\n if (dataType === \"number\") {\n for (let i = 0; i < n; i++) {\n const xDatum = i;\n const yDatum = data[i];\n const x = this.getDatum(xDatum, xType);\n const y = this.getDatum(yDatum, \"number\");\n if (isContinuousX) {\n setSmallestXInterval(x, prevX);\n }\n xData.push(x);\n yData.push(y);\n prevX = x;\n }\n } else if (dataType === \"array\") {\n for (let i = 0; i < n; i++) {\n const datum = data[i];\n if (Array.isArray(datum)) {\n const xDatum = datum[0];\n const yDatum = datum[1];\n const x = this.getDatum(xDatum, xType);\n const y = this.getDatum(yDatum, \"number\");\n if (x == void 0) {\n continue;\n }\n if (isContinuousX) {\n setSmallestXInterval(x, prevX);\n }\n xData.push(x);\n yData.push(y);\n prevX = x;\n }\n }\n } else if (dataType === \"object\") {\n const { yKey, xKey } = this;\n for (let i = 0; i < n; i++) {\n const datum = data[i];\n if (typeof datum === \"object\" && !Array.isArray(datum)) {\n const xDatum = datum[xKey];\n const yDatum = datum[yKey];\n const x = this.getDatum(xDatum, xType);\n const y = this.getDatum(yDatum, \"number\");\n if (x == void 0) {\n continue;\n }\n if (isContinuousX) {\n setSmallestXInterval(x, prevX);\n }\n xData.push(x);\n yData.push(y);\n prevX = x;\n }\n }\n }\n this.updateAxes();\n this.immediateLayout();\n }\n /**\n * Return the type of data provided to the sparkline based on the first truthy value in the data array.\n * If the value is not a number, array or object, return `undefined`.\n * @param data\n */\n getDataType(data) {\n for (const datum of data) {\n if (datum != void 0) {\n if (isNumber(datum)) {\n return \"number\";\n } else if (Array.isArray(datum)) {\n return \"array\";\n } else if (typeof datum === \"object\") {\n return \"object\";\n }\n }\n }\n }\n /**\n * Return the given value depending on the type of axis.\n * Return `undefined` if the value is invalid for the given axis type.\n * @param value\n */\n getDatum(value, type) {\n if (type === \"number\" && isNumber(value) || type === \"time\" && (isNumber(value) || isDate(value))) {\n return value;\n } else if (type === \"category\") {\n if (isString2(value) || isDate(value) || isNumber(value)) {\n return { toString: () => String(value) };\n } else if (isStringObject(value)) {\n return value;\n }\n }\n }\n /**\n * Only `true` while we are waiting for the layout to start.\n * This will be `false` if the layout has already started and is ongoing.\n */\n get layoutScheduled() {\n return !!this.layoutId;\n }\n /**\n * Execute update method on the next available screen repaint to make changes to the canvas.\n * If we are waiting for a layout to start and a new layout is requested,\n * cancel the previous layout using the non 0 integer (this.layoutId) returned from requestAnimationFrame.\n */\n scheduleLayout() {\n if (this.layoutId) {\n cancelAnimationFrame(this.layoutId);\n }\n this.layoutId = requestAnimationFrame(() => {\n this.immediateLayout();\n this.layoutId = 0;\n });\n }\n immediateLayout() {\n this.setSparklineDimensions();\n if (this.invalidData(this.data)) {\n return;\n }\n this.updateXScaleRange();\n this.updateYScaleRange();\n this.updateAxisLine();\n this.update();\n this.scene.render().catch((e) => console.error(`AG Grid - chart rendering failed`, e));\n }\n setSparklineDimensions() {\n const { width, height, padding, seriesRect, rootGroup } = this;\n const shrunkWidth = width - padding.left - padding.right;\n const shrunkHeight = height - padding.top - padding.bottom;\n seriesRect.width = shrunkWidth;\n seriesRect.height = shrunkHeight;\n seriesRect.x = padding.left;\n seriesRect.y = padding.top;\n rootGroup.translationX = seriesRect.x;\n rootGroup.translationY = seriesRect.y;\n }\n /**\n * Return the closest data point to x/y canvas coordinates.\n * @param x\n * @param y\n */\n pickClosestSeriesNodeDatum(x, y) {\n let minDistance = Infinity;\n let closestDatum;\n const hitPoint = this.rootGroup.transformPoint(x, y);\n const nodeData = this.getNodeData();\n for (let i = 0; i < nodeData.length; i++) {\n const datum = nodeData[i];\n if (!datum.point) {\n return;\n }\n const distance = this.getDistance(hitPoint, datum.point);\n if (distance <= minDistance) {\n minDistance = distance;\n closestDatum = datum;\n }\n }\n return closestDatum;\n }\n /**\n * Return the relevant distance between two points.\n * The distance will be calculated based on the x value of the points for all sparklines except bar sparkline, where the distance is based on the y values.\n * @param x\n * @param y\n */\n getDistance(p1, p2) {\n return Math.abs(p1.x - p2.x);\n }\n /**\n * calculate x/y coordinates for tooltip based on coordinates of highlighted datum, position of canvas and page offset.\n * @param datum\n */\n handleTooltip(event, datum) {\n var _a, _b;\n const { seriesDatum } = datum;\n const { canvasElement } = this;\n const { clientX, clientY } = event;\n const tooltipOptions = (_a = this.processedOptions) == null ? void 0 : _a.tooltip;\n const meta = {\n pageX: clientX,\n pageY: clientY,\n position: {\n xOffset: tooltipOptions == null ? void 0 : tooltipOptions.xOffset,\n yOffset: tooltipOptions == null ? void 0 : tooltipOptions.yOffset\n },\n container: tooltipOptions == null ? void 0 : tooltipOptions.container\n };\n if (meta.container == void 0) {\n meta.container = canvasElement;\n }\n const yValue = seriesDatum.y;\n const xValue = seriesDatum.x;\n let enabled = (_b = tooltipOptions == null ? void 0 : tooltipOptions.enabled) != null ? _b : true;\n const tooltipRenderer = tooltipOptions == null ? void 0 : tooltipOptions.renderer;\n if (tooltipRenderer) {\n const tooltipRendererResult = tooltipRenderer({\n context: this.context,\n datum: seriesDatum,\n yValue,\n xValue\n });\n enabled = typeof tooltipRendererResult !== \"string\" && tooltipRendererResult.enabled !== void 0 ? tooltipRendererResult.enabled : enabled;\n }\n const html = enabled && seriesDatum.y !== void 0 && this.getTooltipHtml(datum);\n if (html) {\n this.tooltip.show(meta, html);\n }\n }\n formatNumericDatum(datum) {\n return String(Math.round(datum * 10) / 10);\n }\n // locale.format('%m/%d/%y, %H:%M:%S');\n formatDatum(datum) {\n const type = this.axis.type || \"category\";\n if (type === \"number\" && typeof datum === \"number\") {\n return this.formatNumericDatum(datum);\n } else if (type === \"time\" && (datum instanceof Date || isNumber(datum))) {\n return this.defaultDateFormatter.format(datum);\n } else {\n return String(datum);\n }\n }\n setupDomEventListeners(chartElement) {\n chartElement.addEventListener(\"mousemove\", this._onMouseMove);\n chartElement.addEventListener(\"mouseout\", this._onMouseOut);\n }\n cleanupDomEventListeners(chartElement) {\n chartElement.removeEventListener(\"mousemove\", this._onMouseMove);\n chartElement.removeEventListener(\"mouseout\", this._onMouseOut);\n }\n invalidData(data) {\n return !data || !Array.isArray(data);\n }\n /**\n * Cleanup and remove canvas element from the DOM.\n */\n destroy() {\n this.cleanupDomEventListeners(this.canvasElement);\n this.scene.destroy();\n this.container = void 0;\n }\n};\n_Sparkline.tooltipDocuments = [];\nvar Sparkline = _Sparkline;\nfunction toTooltipHtml(input, defaults) {\n var _a, _b, _c;\n if (typeof input === \"string\") {\n return input;\n }\n defaults = defaults != null ? defaults : {};\n const {\n content = (_a = defaults.content) != null ? _a : \"\",\n title = (_b = defaults.title) != null ? _b : void 0,\n color = defaults.color,\n backgroundColor = defaults.backgroundColor,\n opacity = (_c = defaults.opacity) != null ? _c : 1\n } = input;\n let titleHtml;\n let contentHtml;\n if (color) {\n titleHtml = title ? `
${title}` : \"\";\n contentHtml = `
${content}`;\n } else {\n titleHtml = title ? `
${title}` : \"\";\n contentHtml = `
${content}`;\n }\n let style = `opacity: ${opacity}`;\n if (backgroundColor) {\n style += `; background-color: ${backgroundColor.toLowerCase()}`;\n }\n return `
\n ${titleHtml}\n ${contentHtml}\n
`;\n}\nvar _SparklineTooltip = class _SparklineTooltip2 {\n constructor() {\n this.element = document.createElement(\"div\");\n const tooltipRoot = document.body;\n tooltipRoot.appendChild(this.element);\n }\n isVisible() {\n const { element } = this;\n if (element.classList) {\n return !element.classList.contains(`${_SparklineTooltip2.class}-wrapper-hidden`);\n }\n const classes = element.getAttribute(\"class\");\n if (classes) {\n return classes.split(\" \").indexOf(`${_SparklineTooltip2.class}-wrapper-hidden`) < 0;\n }\n return false;\n }\n updateClass(visible) {\n const classList = [`${_SparklineTooltip2.class}-wrapper`];\n if (visible !== true) {\n classList.push(`${_SparklineTooltip2.class}-wrapper-hidden`);\n }\n this.element.setAttribute(\"class\", classList.join(\" \"));\n }\n show(meta, html) {\n var _a, _b, _c, _d;\n this.toggle(false);\n const { element } = this;\n if (html !== void 0) {\n element.innerHTML = html;\n } else if (!element.innerHTML) {\n return;\n }\n const xOffset = (_b = (_a = meta.position) == null ? void 0 : _a.xOffset) != null ? _b : 10;\n const yOffset = (_d = (_c = meta.position) == null ? void 0 : _c.yOffset) != null ? _d : 0;\n let left = meta.pageX + xOffset;\n let top = meta.pageY + yOffset;\n const tooltipRect = element.getBoundingClientRect();\n let maxLeft = window.innerWidth - tooltipRect.width;\n if (meta.container) {\n const containerRect = meta.container.getBoundingClientRect();\n maxLeft = containerRect.left + (containerRect.width - tooltipRect.width);\n }\n if (left > maxLeft) {\n left = meta.pageX - element.clientWidth - xOffset;\n }\n if (typeof scrollX !== \"undefined\") {\n left += scrollX;\n }\n if (typeof scrollY !== \"undefined\") {\n top += scrollY;\n }\n element.style.left = `${Math.round(left)}px`;\n element.style.top = `${Math.round(top)}px`;\n this.toggle(true);\n }\n toggle(visible) {\n this.updateClass(visible);\n }\n destroy() {\n const { parentNode } = this.element;\n if (parentNode) {\n parentNode.removeChild(this.element);\n }\n }\n};\n_SparklineTooltip.class = \"ag-sparkline-tooltip\";\nvar SparklineTooltip = _SparklineTooltip;\nfunction getMarker(shape) {\n switch (shape) {\n case \"circle\":\n return _Scene26.Circle;\n case \"square\":\n return _Scene26.Square;\n case \"diamond\":\n return _Scene26.Diamond;\n default:\n return _Scene26.Circle;\n }\n}\nfunction getLineDash(lineCap, lineDash = \"solid\") {\n const buttOrNull = {\n solid: [],\n dash: [4, 3],\n dot: [1, 3],\n dashDot: [4, 3, 1, 3],\n dashDotDot: [4, 3, 1, 3, 1, 3],\n shortDot: [1, 1],\n shortDash: [3, 1],\n shortDashDot: [3, 1, 1, 1],\n shortDashDotDot: [3, 1, 1, 1, 1, 1],\n longDash: [8, 3],\n longDashDot: [8, 3, 1, 3],\n longDashDotDot: [8, 3, 1, 3, 1, 3]\n };\n const roundOrSquare = {\n solid: [],\n dash: [3, 3],\n dot: [0, 3],\n dashDot: [3, 3, 0, 3],\n dashDotDot: [3, 3, 0, 3, 0, 3],\n shortDot: [0, 2],\n shortDash: [2, 2],\n shortDashDot: [2, 2, 0, 2],\n shortDashDotDot: [2, 2, 0, 2, 0, 2],\n longDash: [7, 3],\n longDashDot: [7, 3, 0, 3],\n longDashDotDot: [7, 3, 0, 3, 0, 3]\n };\n if (lineCap === \"round\" || lineCap === \"square\") {\n if (roundOrSquare[lineDash] == void 0) {\n console.warn(`'${lineDash}' is not a valid 'lineDash' option.`);\n return roundOrSquare.solid;\n }\n return roundOrSquare[lineDash];\n }\n if (buttOrNull[lineDash] == void 0) {\n console.warn(`'${lineDash}' is not a valid 'lineDash' option.`);\n return buttOrNull.solid;\n }\n return buttOrNull[lineDash];\n}\nvar { extent: extent2 } = _Util2;\nvar { BandScale: BandScale2 } = _Scale2;\nvar SparklineMarker = class {\n constructor() {\n this.enabled = true;\n this.shape = \"circle\";\n this.size = 0;\n this.fill = \"rgb(124, 181, 236)\";\n this.stroke = \"rgb(124, 181, 236)\";\n this.strokeWidth = 1;\n this.formatter = void 0;\n }\n};\nvar SparklineLine = class {\n constructor() {\n this.stroke = \"rgb(124, 181, 236)\";\n this.strokeWidth = 1;\n }\n};\nvar SparklineCrosshairs = class {\n constructor() {\n this.xLine = {\n enabled: true,\n stroke: \"rgba(0,0,0, 0.54)\",\n strokeWidth: 1,\n lineDash: \"solid\",\n lineCap: void 0\n };\n this.yLine = {\n enabled: false,\n stroke: \"rgba(0,0,0, 0.54)\",\n strokeWidth: 1,\n lineDash: \"solid\",\n lineCap: void 0\n };\n }\n};\nvar AreaSparkline = class extends Sparkline {\n constructor() {\n super();\n this.fill = \"rgba(124, 181, 236, 0.25)\";\n this.strokePath = new _Scene32.Path();\n this.fillPath = new _Scene32.Path();\n this.xCrosshairLine = new _Scene32.Line();\n this.yCrosshairLine = new _Scene32.Line();\n this.areaSparklineGroup = new _Scene32.Group();\n this.xAxisLine = new _Scene32.Line();\n this.markers = new _Scene32.Group();\n this.markerSelection = _Scene32.Selection.select(\n this.markers,\n () => this.markerFactory()\n );\n this.markerSelectionData = [];\n this.marker = new SparklineMarker();\n this.line = new SparklineLine();\n this.crosshairs = new SparklineCrosshairs();\n this.rootGroup.append(this.areaSparklineGroup);\n this.xAxisLine.zIndex = 500;\n this.fillPath.zIndex = 50;\n this.strokePath.zIndex = 1e3;\n this.xCrosshairLine.zIndex = 2e3;\n this.yCrosshairLine.zIndex = 2e3;\n this.markers.zIndex = 2500;\n this.areaSparklineGroup.append([\n this.fillPath,\n this.xAxisLine,\n this.strokePath,\n this.xCrosshairLine,\n this.yCrosshairLine,\n this.markers\n ]);\n }\n markerFactory() {\n const { shape } = this.marker;\n const MarkerShape = getMarker(shape);\n return new MarkerShape();\n }\n getNodeData() {\n return this.markerSelectionData;\n }\n update() {\n const data = this.generateNodeData();\n if (!data) {\n return;\n }\n const { nodeData, fillData, strokeData } = data;\n this.markerSelectionData = nodeData;\n this.updateSelection(nodeData);\n this.updateNodes();\n this.updateStroke(strokeData);\n this.updateFill(fillData);\n }\n updateYScaleDomain() {\n const { yData, yScale } = this;\n const yMinMax = extent2(yData);\n let yMin = 0;\n let yMax = 1;\n if (yMinMax !== void 0) {\n yMin = this.min = yMinMax[0];\n yMax = this.max = yMinMax[1];\n }\n yMin = yMin < 0 ? yMin : 0;\n yMax = yMax < 0 ? 0 : yMax;\n yScale.domain = [yMin, yMax];\n }\n generateNodeData() {\n const { data, yData, xData, xScale, yScale } = this;\n if (!data) {\n return;\n }\n const continuous = !(xScale instanceof BandScale2);\n const offsetX = !continuous ? xScale.bandwidth / 2 : 0;\n const n = yData.length;\n const nodeData = [];\n const fillData = [];\n const strokeData = [];\n let firstValidX;\n let lastValidX;\n let previousX;\n let nextX;\n const yZero = yScale.convert(0);\n for (let i = 0; i < n; i++) {\n const yDatum = yData[i];\n const xDatum = xData[i];\n const x = xScale.convert(continuous ? xScale.toDomain(xDatum) : xDatum) + offsetX;\n const y = yDatum === void 0 ? NaN : yScale.convert(yDatum);\n if (i + 1 < n) {\n nextX = xScale.convert(continuous ? xScale.toDomain(xData[i + 1]) : xData[i + 1]) + offsetX;\n }\n strokeData.push({\n seriesDatum: { x: xDatum, y: yDatum },\n point: { x, y }\n });\n if (yDatum === void 0 && previousX !== void 0) {\n fillData.push({ seriesDatum: void 0, point: { x: previousX, y: yZero } });\n if (nextX !== void 0) {\n fillData.push({ seriesDatum: void 0, point: { x: nextX, y: yZero } });\n }\n } else if (yDatum !== void 0) {\n fillData.push({\n seriesDatum: { x: xDatum, y: yDatum },\n point: { x, y }\n });\n nodeData.push({\n seriesDatum: { x: xDatum, y: yDatum },\n point: { x, y }\n });\n firstValidX = firstValidX !== void 0 ? firstValidX : x;\n lastValidX = x;\n }\n previousX = x;\n }\n fillData.push(\n { seriesDatum: void 0, point: { x: lastValidX, y: yZero } },\n { seriesDatum: void 0, point: { x: firstValidX, y: yZero } }\n );\n return { nodeData, fillData, strokeData };\n }\n updateAxisLine() {\n const { xScale, yScale, axis, xAxisLine } = this;\n xAxisLine.x1 = xScale.range[0];\n xAxisLine.x2 = xScale.range[1];\n xAxisLine.y1 = xAxisLine.y2 = 0;\n xAxisLine.stroke = axis.stroke;\n xAxisLine.strokeWidth = axis.strokeWidth;\n const yZero = yScale.convert(0);\n xAxisLine.translationY = yZero;\n }\n updateSelection(selectionData) {\n this.markerSelection.update(selectionData);\n }\n updateNodes() {\n const { highlightedDatum, highlightStyle, marker } = this;\n const {\n size: highlightSize,\n fill: highlightFill,\n stroke: highlightStroke,\n strokeWidth: highlightStrokeWidth\n } = highlightStyle;\n const markerFormatter = marker.formatter;\n this.markerSelection.each((node, datum, index) => {\n const { point, seriesDatum } = datum;\n if (!point) {\n return;\n }\n const highlighted = datum === highlightedDatum;\n const markerFill = highlighted && highlightFill !== void 0 ? highlightFill : marker.fill;\n const markerStroke = highlighted && highlightStroke !== void 0 ? highlightStroke : marker.stroke;\n const markerStrokeWidth = highlighted && highlightStrokeWidth !== void 0 ? highlightStrokeWidth : marker.strokeWidth;\n const markerSize = highlighted && highlightSize !== void 0 ? highlightSize : marker.size;\n let markerFormat;\n if (markerFormatter) {\n const first = index === 0;\n const last = index === this.markerSelectionData.length - 1;\n const min = seriesDatum.y === this.min;\n const max = seriesDatum.y === this.max;\n markerFormat = markerFormatter({\n datum,\n xValue: seriesDatum.x,\n yValue: seriesDatum.y,\n min,\n max,\n first,\n last,\n fill: markerFill,\n stroke: markerStroke,\n strokeWidth: markerStrokeWidth,\n size: markerSize,\n highlighted\n });\n }\n node.size = markerFormat && markerFormat.size != void 0 ? markerFormat.size : markerSize;\n node.fill = markerFormat && markerFormat.fill != void 0 ? markerFormat.fill : markerFill;\n node.stroke = markerFormat && markerFormat.stroke != void 0 ? markerFormat.stroke : markerStroke;\n node.strokeWidth = markerFormat && markerFormat.strokeWidth != void 0 ? markerFormat.strokeWidth : markerStrokeWidth;\n node.translationX = point.x;\n node.translationY = point.y;\n node.visible = markerFormat && markerFormat.enabled != void 0 ? markerFormat.enabled : marker.enabled && node.size > 0;\n });\n }\n updateStroke(strokeData) {\n const { strokePath, yData, line } = this;\n const path = strokePath.path;\n path.clear();\n if (yData.length < 2) {\n return;\n }\n const n = strokeData.length;\n let moveTo = true;\n for (let i = 0; i < n; i++) {\n const { point, seriesDatum } = strokeData[i];\n const x = point.x;\n const y = point.y;\n if (seriesDatum.y == void 0) {\n moveTo = true;\n } else {\n if (moveTo) {\n path.moveTo(x, y);\n moveTo = false;\n } else {\n path.lineTo(x, y);\n }\n }\n }\n strokePath.lineJoin = strokePath.lineCap = \"round\";\n strokePath.fill = void 0;\n strokePath.stroke = line.stroke;\n strokePath.strokeWidth = line.strokeWidth;\n }\n updateFill(areaData) {\n const { fillPath, yData, fill } = this;\n const path = fillPath.path;\n const n = areaData.length;\n path.clear();\n if (yData.length < 2) {\n return;\n }\n for (let i = 0; i < n; i++) {\n const { point } = areaData[i];\n const x = point.x;\n const y = point.y;\n if (i > 0) {\n path.lineTo(x, y);\n } else {\n path.moveTo(x, y);\n }\n }\n path.closePath();\n fillPath.lineJoin = \"round\";\n fillPath.stroke = void 0;\n fillPath.fill = fill;\n }\n updateXCrosshairLine() {\n var _a;\n const {\n yScale,\n xCrosshairLine,\n highlightedDatum,\n crosshairs: { xLine }\n } = this;\n if (!xLine.enabled || highlightedDatum == void 0) {\n xCrosshairLine.strokeWidth = 0;\n return;\n }\n xCrosshairLine.y1 = yScale.range[0];\n xCrosshairLine.y2 = yScale.range[1];\n xCrosshairLine.x1 = xCrosshairLine.x2 = 0;\n xCrosshairLine.stroke = xLine.stroke;\n xCrosshairLine.strokeWidth = (_a = xLine.strokeWidth) != null ? _a : 1;\n xCrosshairLine.lineCap = xLine.lineCap === \"round\" || xLine.lineCap === \"square\" ? xLine.lineCap : void 0;\n const { lineDash } = xLine;\n xCrosshairLine.lineDash = Array.isArray(lineDash) ? lineDash : getLineDash(xCrosshairLine.lineCap, xLine.lineDash);\n xCrosshairLine.translationX = highlightedDatum.point.x;\n }\n updateYCrosshairLine() {\n var _a;\n const {\n xScale,\n yCrosshairLine,\n highlightedDatum,\n crosshairs: { yLine }\n } = this;\n if (!yLine.enabled || highlightedDatum == void 0) {\n yCrosshairLine.strokeWidth = 0;\n return;\n }\n yCrosshairLine.x1 = xScale.range[0];\n yCrosshairLine.x2 = xScale.range[1];\n yCrosshairLine.y1 = yCrosshairLine.y2 = 0;\n yCrosshairLine.stroke = yLine.stroke;\n yCrosshairLine.strokeWidth = (_a = yLine.strokeWidth) != null ? _a : 1;\n yCrosshairLine.lineCap = yLine.lineCap === \"round\" || yLine.lineCap === \"square\" ? yLine.lineCap : void 0;\n const { lineDash } = yLine;\n yCrosshairLine.lineDash = Array.isArray(lineDash) ? lineDash : getLineDash(yCrosshairLine.lineCap, yLine.lineDash);\n yCrosshairLine.translationY = highlightedDatum.point.y;\n }\n getTooltipHtml(datum) {\n var _a, _b;\n const { dataType } = this;\n const { seriesDatum } = datum;\n const yValue = seriesDatum.y;\n const xValue = seriesDatum.x;\n const content = this.formatNumericDatum(yValue);\n const title = dataType === \"array\" || dataType === \"object\" ? this.formatDatum(xValue) : void 0;\n const defaults = {\n content,\n title\n };\n const tooltipRenderer = (_b = (_a = this.processedOptions) == null ? void 0 : _a.tooltip) == null ? void 0 : _b.renderer;\n if (tooltipRenderer) {\n return toTooltipHtml(\n tooltipRenderer({\n context: this.context,\n datum: seriesDatum,\n yValue,\n xValue\n }),\n defaults\n );\n }\n return toTooltipHtml(defaults);\n }\n};\nAreaSparkline.className = \"AreaSparkline\";\nvar { extent: extent3 } = _Util32;\nvar { BandScale: BandScale3 } = _Scale3;\nvar SparklineMarker2 = class {\n constructor() {\n this.enabled = true;\n this.shape = \"circle\";\n this.size = 0;\n this.fill = \"rgb(124, 181, 236)\";\n this.stroke = \"rgb(124, 181, 236)\";\n this.strokeWidth = 1;\n this.formatter = void 0;\n }\n};\nvar SparklineLine2 = class {\n constructor() {\n this.stroke = \"rgb(124, 181, 236)\";\n this.strokeWidth = 1;\n }\n};\nvar SparklineCrosshairs2 = class {\n constructor() {\n this.xLine = {\n enabled: true,\n stroke: \"rgba(0,0,0, 0.54)\",\n strokeWidth: 1,\n lineDash: \"solid\",\n lineCap: void 0\n };\n this.yLine = {\n enabled: false,\n stroke: \"rgba(0,0,0, 0.54)\",\n strokeWidth: 1,\n lineDash: \"solid\",\n lineCap: void 0\n };\n }\n};\nvar LineSparkline = class extends Sparkline {\n constructor() {\n super();\n this.linePath = new _Scene42.Path();\n this.xCrosshairLine = new _Scene42.Line();\n this.yCrosshairLine = new _Scene42.Line();\n this.lineSparklineGroup = new _Scene42.Group();\n this.markers = new _Scene42.Group();\n this.markerSelection = _Scene42.Selection.select(\n this.markers,\n () => this.markerFactory()\n );\n this.markerSelectionData = [];\n this.marker = new SparklineMarker2();\n this.line = new SparklineLine2();\n this.crosshairs = new SparklineCrosshairs2();\n this.rootGroup.append(this.lineSparklineGroup);\n this.linePath.zIndex = 1e3;\n this.xCrosshairLine.zIndex = 2e3;\n this.yCrosshairLine.zIndex = 2e3;\n this.markers.zIndex = 2500;\n this.lineSparklineGroup.append([this.linePath, this.xCrosshairLine, this.yCrosshairLine, this.markers]);\n }\n getNodeData() {\n return this.markerSelectionData;\n }\n markerFactory() {\n const { shape } = this.marker;\n const MarkerShape = getMarker(shape);\n return new MarkerShape();\n }\n /**\n * If marker shape is changed, this method should be called to remove the previous marker nodes selection.\n */\n onMarkerShapeChange() {\n this.markerSelection = this.markerSelection.clear();\n this.scheduleLayout();\n }\n update() {\n const nodeData = this.generateNodeData();\n if (!nodeData) {\n return;\n }\n this.markerSelectionData = nodeData;\n this.updateSelection(nodeData);\n this.updateNodes();\n this.updateLine();\n }\n updateYScaleDomain() {\n const { yData, yScale } = this;\n const yMinMax = extent3(yData);\n let yMin = 0;\n let yMax = 1;\n if (yMinMax !== void 0) {\n yMin = this.min = yMinMax[0];\n yMax = this.max = yMinMax[1];\n }\n if (yMin === yMax) {\n const padding = Math.abs(yMin * 0.01);\n yMin -= padding;\n yMax += padding;\n }\n yScale.domain = [yMin, yMax];\n }\n generateNodeData() {\n const { data, yData, xData, xScale, yScale } = this;\n if (!data) {\n return;\n }\n const continuous = !(xScale instanceof BandScale3);\n const offsetX = !continuous ? xScale.bandwidth / 2 : 0;\n const nodeData = [];\n for (let i = 0; i < yData.length; i++) {\n const yDatum = yData[i];\n const xDatum = xData[i];\n if (yDatum == void 0) {\n continue;\n }\n const x = xScale.convert(continuous ? xScale.toDomain(xDatum) : xDatum) + offsetX;\n const y = yDatum === void 0 ? NaN : yScale.convert(yDatum);\n nodeData.push({\n seriesDatum: { x: xDatum, y: yDatum },\n point: { x, y }\n });\n }\n return nodeData;\n }\n updateSelection(selectionData) {\n this.markerSelection.update(selectionData);\n }\n updateNodes() {\n const { highlightedDatum, highlightStyle, marker } = this;\n const {\n size: highlightSize,\n fill: highlightFill,\n stroke: highlightStroke,\n strokeWidth: highlightStrokeWidth\n } = highlightStyle;\n const markerFormatter = marker.formatter;\n this.markerSelection.each((node, datum, index) => {\n const highlighted = datum === highlightedDatum;\n const markerFill = highlighted && highlightFill !== void 0 ? highlightFill : marker.fill;\n const markerStroke = highlighted && highlightStroke !== void 0 ? highlightStroke : marker.stroke;\n const markerStrokeWidth = highlighted && highlightStrokeWidth !== void 0 ? highlightStrokeWidth : marker.strokeWidth;\n const markerSize = highlighted && highlightSize !== void 0 ? highlightSize : marker.size;\n let markerFormat;\n const { seriesDatum, point } = datum;\n if (markerFormatter) {\n const first = index === 0;\n const last = index === this.markerSelectionData.length - 1;\n const min = seriesDatum.y === this.min;\n const max = seriesDatum.y === this.max;\n markerFormat = markerFormatter({\n datum,\n xValue: seriesDatum.x,\n yValue: seriesDatum.y,\n min,\n max,\n first,\n last,\n fill: markerFill,\n stroke: markerStroke,\n strokeWidth: markerStrokeWidth,\n size: markerSize,\n highlighted\n });\n }\n node.size = markerFormat && markerFormat.size != void 0 ? markerFormat.size : markerSize;\n node.fill = markerFormat && markerFormat.fill != void 0 ? markerFormat.fill : markerFill;\n node.stroke = markerFormat && markerFormat.stroke != void 0 ? markerFormat.stroke : markerStroke;\n node.strokeWidth = markerFormat && markerFormat.strokeWidth != void 0 ? markerFormat.strokeWidth : markerStrokeWidth;\n node.translationX = point.x;\n node.translationY = point.y;\n node.visible = markerFormat && markerFormat.enabled != void 0 ? markerFormat.enabled : marker.enabled && node.size > 0;\n });\n }\n updateLine() {\n const { linePath, yData, xData, xScale, yScale, line } = this;\n const path = linePath.path;\n path.clear();\n if (yData.length < 2) {\n return;\n }\n const continuous = !(xScale instanceof BandScale3);\n const n = yData.length;\n const offsetX = !continuous ? xScale.bandwidth / 2 : 0;\n let moveTo = true;\n for (let i = 0; i < n; i++) {\n const xDatum = xData[i];\n const yDatum = yData[i];\n const x = xScale.convert(continuous ? xScale.toDomain(xDatum) : xDatum) + offsetX;\n const y = yDatum === void 0 ? NaN : yScale.convert(yDatum);\n if (yDatum == void 0) {\n moveTo = true;\n } else {\n if (moveTo) {\n path.moveTo(x, y);\n moveTo = false;\n } else {\n path.lineTo(x, y);\n }\n }\n }\n linePath.fill = void 0;\n linePath.stroke = line.stroke;\n linePath.strokeWidth = line.strokeWidth;\n }\n updateXCrosshairLine() {\n var _a;\n const {\n yScale,\n xCrosshairLine,\n highlightedDatum,\n crosshairs: { xLine }\n } = this;\n if (!xLine.enabled || highlightedDatum == void 0) {\n xCrosshairLine.strokeWidth = 0;\n return;\n }\n xCrosshairLine.y1 = yScale.range[0];\n xCrosshairLine.y2 = yScale.range[1];\n xCrosshairLine.x1 = xCrosshairLine.x2 = 0;\n xCrosshairLine.stroke = xLine.stroke;\n xCrosshairLine.strokeWidth = (_a = xLine.strokeWidth) != null ? _a : 1;\n xCrosshairLine.lineCap = xLine.lineCap === \"round\" || xLine.lineCap === \"square\" ? xLine.lineCap : void 0;\n const { lineDash } = xLine;\n xCrosshairLine.lineDash = Array.isArray(lineDash) ? lineDash : getLineDash(xCrosshairLine.lineCap, xLine.lineDash);\n xCrosshairLine.translationX = highlightedDatum.point.x;\n }\n updateYCrosshairLine() {\n var _a;\n const {\n xScale,\n yCrosshairLine,\n highlightedDatum,\n crosshairs: { yLine }\n } = this;\n if (!yLine.enabled || highlightedDatum == void 0) {\n yCrosshairLine.strokeWidth = 0;\n return;\n }\n yCrosshairLine.x1 = xScale.range[0];\n yCrosshairLine.x2 = xScale.range[1];\n yCrosshairLine.y1 = yCrosshairLine.y2 = 0;\n yCrosshairLine.stroke = yLine.stroke;\n yCrosshairLine.strokeWidth = (_a = yLine.strokeWidth) != null ? _a : 1;\n yCrosshairLine.lineCap = yLine.lineCap === \"round\" || yLine.lineCap === \"square\" ? yLine.lineCap : void 0;\n const { lineDash } = yLine;\n yCrosshairLine.lineDash = Array.isArray(lineDash) ? lineDash : getLineDash(yCrosshairLine.lineCap, yLine.lineDash);\n yCrosshairLine.translationY = highlightedDatum.point.y;\n }\n getTooltipHtml(datum) {\n var _a, _b;\n const { dataType } = this;\n const { seriesDatum } = datum;\n const yValue = seriesDatum.y;\n const xValue = seriesDatum.x;\n const content = this.formatNumericDatum(yValue);\n const title = dataType === \"array\" || dataType === \"object\" ? this.formatDatum(xValue) : void 0;\n const defaults = {\n content,\n title\n };\n const tooltipRenderer = (_b = (_a = this.processedOptions) == null ? void 0 : _a.tooltip) == null ? void 0 : _b.renderer;\n if (tooltipRenderer) {\n return toTooltipHtml(\n tooltipRenderer({\n context: this.context,\n datum: seriesDatum,\n yValue,\n xValue\n }),\n defaults\n );\n }\n return toTooltipHtml(defaults);\n }\n};\nLineSparkline.className = \"LineSparkline\";\nvar Label = class {\n constructor() {\n this.enabled = true;\n this.fontSize = 8;\n this.fontFamily = \"Verdana, sans-serif\";\n this.fontStyle = void 0;\n this.fontWeight = void 0;\n this.color = \"rgba(70, 70, 70, 1)\";\n }\n};\nvar { extent: extent4 } = _Util42;\nvar BarColumnLabel = class extends Label {\n constructor() {\n super(...arguments);\n this.formatter = void 0;\n this.placement = \"insideEnd\";\n }\n};\nvar BarColumnSparkline = class extends Sparkline {\n constructor() {\n super();\n this.fill = \"rgb(124, 181, 236)\";\n this.stroke = \"silver\";\n this.strokeWidth = 0;\n this.paddingInner = 0.1;\n this.paddingOuter = 0.2;\n this.valueAxisDomain = void 0;\n this.formatter = void 0;\n this.axisLine = new _Scene52.Line();\n this.bandWidth = 0;\n this.sparklineGroup = new _Scene52.Group();\n this.rectGroup = new _Scene52.Group();\n this.labelGroup = new _Scene52.Group();\n this.rectSelection = _Scene52.Selection.select(\n this.rectGroup,\n _Scene52.Rect\n );\n this.labelSelection = _Scene52.Selection.select(\n this.labelGroup,\n _Scene52.Text\n );\n this.nodeSelectionData = [];\n this.label = new BarColumnLabel();\n this.rootGroup.append(this.sparklineGroup);\n this.rectGroup.zIndex = 50;\n this.axisLine.zIndex = 500;\n this.labelGroup.zIndex = 1500;\n this.sparklineGroup.append([this.rectGroup, this.axisLine, this.labelGroup]);\n this.axisLine.lineCap = \"round\";\n this.label.enabled = false;\n }\n getNodeData() {\n return this.nodeSelectionData;\n }\n update() {\n this.updateSelections();\n this.updateNodes();\n }\n updateSelections() {\n const nodeData = this.generateNodeData();\n if (!nodeData) {\n return;\n }\n this.nodeSelectionData = nodeData;\n this.updateRectSelection(nodeData);\n this.updateLabelSelection(nodeData);\n }\n updateNodes() {\n this.updateRectNodes();\n this.updateLabelNodes();\n }\n calculateStep(range) {\n var _a;\n const { xScale, paddingInner, paddingOuter, smallestInterval } = this;\n let domainLength = xScale.domain[1] - xScale.domain[0];\n let intervals = domainLength / ((_a = smallestInterval == null ? void 0 : smallestInterval.x) != null ? _a : 1) + 1;\n const maxBands = 50;\n const bands = Math.min(intervals, maxBands);\n const gaps = bands - 1;\n const step = range / Math.max(1, 2 * paddingOuter + gaps * paddingInner + bands);\n return step;\n }\n updateYScaleDomain() {\n const { yScale, yData, valueAxisDomain } = this;\n const yMinMax = extent4(yData);\n let yMin = 0;\n let yMax = 1;\n if (yMinMax !== void 0) {\n yMin = this.min = yMinMax[0];\n yMax = this.max = yMinMax[1];\n }\n yMin = yMin < 0 ? yMin : 0;\n yMax = yMax < 0 ? 0 : yMax;\n if (valueAxisDomain) {\n if (valueAxisDomain[1] < yMax) {\n valueAxisDomain[1] = yMax;\n }\n if (valueAxisDomain[0] > yMin) {\n valueAxisDomain[0] = yMin;\n }\n }\n yScale.domain = valueAxisDomain ? valueAxisDomain : [yMin, yMax];\n }\n updateRectSelection(selectionData) {\n this.rectSelection.update(selectionData);\n }\n updateRectNodes() {\n const { highlightedDatum, formatter: nodeFormatter, fill, stroke, strokeWidth } = this;\n const { fill: highlightFill, stroke: highlightStroke, strokeWidth: highlightStrokeWidth } = this.highlightStyle;\n this.rectSelection.each((node, datum, index) => {\n const highlighted = datum === highlightedDatum;\n const nodeFill = highlighted && highlightFill !== void 0 ? highlightFill : fill;\n const nodeStroke = highlighted && highlightStroke !== void 0 ? highlightStroke : stroke;\n const nodeStrokeWidth = highlighted && highlightStrokeWidth !== void 0 ? highlightStrokeWidth : strokeWidth;\n let nodeFormat;\n const { x, y, width, height, seriesDatum } = datum;\n if (nodeFormatter) {\n const first = index === 0;\n const last = index === this.nodeSelectionData.length - 1;\n const min = seriesDatum.y === this.min;\n const max = seriesDatum.y === this.max;\n nodeFormat = nodeFormatter({\n datum,\n xValue: seriesDatum.x,\n yValue: seriesDatum.y,\n width,\n height,\n min,\n max,\n first,\n last,\n fill: nodeFill,\n stroke: nodeStroke,\n strokeWidth: nodeStrokeWidth,\n highlighted\n });\n }\n node.fill = nodeFormat && nodeFormat.fill || nodeFill;\n node.stroke = nodeFormat && nodeFormat.stroke || nodeStroke;\n node.strokeWidth = nodeFormat && nodeFormat.strokeWidth || nodeStrokeWidth;\n node.x = node.y = 0;\n node.width = width;\n node.height = height;\n node.visible = node.height > 0;\n node.translationX = x;\n node.translationY = y;\n });\n }\n updateLabelSelection(selectionData) {\n this.labelSelection.update(selectionData, (text) => {\n text.tag = 1;\n text.pointerEvents = _Scene52.PointerEvents.None;\n });\n }\n updateLabelNodes() {\n const {\n label: { enabled: labelEnabled, fontStyle, fontWeight, fontSize, fontFamily, color }\n } = this;\n this.labelSelection.each((text, datum) => {\n const label = datum.label;\n if (label && labelEnabled) {\n text.fontStyle = fontStyle;\n text.fontWeight = fontWeight;\n text.fontSize = fontSize;\n text.fontFamily = fontFamily;\n text.textAlign = label.textAlign;\n text.textBaseline = label.textBaseline;\n text.text = label.text;\n text.x = label.x;\n text.y = label.y;\n text.fill = color;\n text.visible = true;\n } else {\n text.visible = false;\n }\n });\n }\n getTooltipHtml(datum) {\n var _a, _b;\n const { dataType } = this;\n const { seriesDatum } = datum;\n const yValue = seriesDatum.y;\n const xValue = seriesDatum.x;\n const content = this.formatNumericDatum(yValue);\n const title = dataType === \"array\" || dataType === \"object\" ? this.formatDatum(xValue) : void 0;\n const defaults = {\n content,\n title\n };\n const tooltipRenderer = (_b = (_a = this.processedOptions) == null ? void 0 : _a.tooltip) == null ? void 0 : _b.renderer;\n if (tooltipRenderer) {\n return toTooltipHtml(\n tooltipRenderer({\n context: this.context,\n datum: seriesDatum,\n yValue,\n xValue\n }),\n defaults\n );\n }\n return toTooltipHtml(defaults);\n }\n formatLabelValue(value) {\n return value % 1 !== 0 ? value.toFixed(1) : value.toFixed(0);\n }\n};\nvar { isNumber: isNumber2 } = _Util52;\nvar { BandScale: BandScale4 } = _Scale4;\nvar BarSparkline = class extends BarColumnSparkline {\n updateYScaleRange() {\n const { seriesRect, yScale } = this;\n yScale.range = [0, seriesRect.width];\n }\n updateXScaleRange() {\n const { xScale, seriesRect, paddingOuter, paddingInner } = this;\n if (xScale instanceof BandScale4) {\n xScale.range = [0, seriesRect.height];\n xScale.paddingInner = paddingInner;\n xScale.paddingOuter = paddingOuter;\n } else {\n const step = this.calculateStep(seriesRect.height);\n const padding = step * paddingOuter;\n this.bandWidth = step * (1 - paddingInner);\n xScale.range = [padding, seriesRect.height - padding - this.bandWidth];\n }\n }\n updateAxisLine() {\n const { yScale, axis, axisLine, seriesRect } = this;\n const { strokeWidth } = axis;\n axisLine.x1 = 0;\n axisLine.x2 = 0;\n axisLine.y1 = 0;\n axisLine.y2 = seriesRect.height;\n axisLine.stroke = axis.stroke;\n axisLine.strokeWidth = strokeWidth + (strokeWidth % 2 === 1 ? 1 : 0);\n const yZero = yScale.convert(0);\n axisLine.translationX = yZero;\n }\n generateNodeData() {\n const { data, yData, xData, xScale, yScale, fill, stroke, strokeWidth, label } = this;\n if (!data) {\n return;\n }\n const {\n fontStyle: labelFontStyle,\n fontWeight: labelFontWeight,\n fontSize: labelFontSize,\n fontFamily: labelFontFamily,\n color: labelColor,\n formatter: labelFormatter,\n placement: labelPlacement\n } = label;\n const nodeData = [];\n const yZero = yScale.convert(0);\n const continuous = !(xScale instanceof BandScale4);\n for (let i = 0, n = yData.length; i < n; i++) {\n let yDatum = yData[i];\n const xDatum = xData[i];\n const invalidDatum = yDatum === void 0;\n if (invalidDatum) {\n yDatum = 0;\n }\n const y = xScale.convert(continuous ? xScale.toDomain(xDatum) : xDatum);\n const x = Math.min(yDatum === void 0 ? NaN : yScale.convert(yDatum), yZero);\n const bottom = Math.max(yDatum === void 0 ? NaN : yScale.convert(yDatum), yZero);\n const height = !continuous ? xScale.bandwidth : this.bandWidth;\n const width = bottom - x;\n const midPoint = {\n x: yZero,\n y\n };\n let labelText;\n if (labelFormatter) {\n labelText = labelFormatter({ value: yDatum });\n } else {\n labelText = yDatum !== void 0 && isNumber2(yDatum) ? this.formatLabelValue(yDatum) : \"\";\n }\n const labelY = y + height / 2;\n let labelX;\n const labelTextBaseline = \"middle\";\n let labelTextAlign;\n const isPositiveY = yDatum !== void 0 && yDatum >= 0;\n const labelPadding = 4;\n if (labelPlacement === \"center\") {\n labelX = x + width / 2;\n labelTextAlign = \"center\";\n } else if (labelPlacement === \"outsideEnd\") {\n labelX = x + (isPositiveY ? width + labelPadding : -labelPadding);\n labelTextAlign = isPositiveY ? \"start\" : \"end\";\n } else if (labelPlacement === \"insideEnd\") {\n labelX = x + (isPositiveY ? width - labelPadding : labelPadding);\n labelTextAlign = isPositiveY ? \"end\" : \"start\";\n const textSize = _Scene62.Text.getTextSize(labelText, labelFontFamily);\n const textWidth = textSize.width || 20;\n const positiveBoundary = yZero + textWidth;\n const negativeBoundary = yZero - textWidth;\n const exceedsBoundaries = isPositiveY && labelX < positiveBoundary || !isPositiveY && labelX > negativeBoundary;\n if (exceedsBoundaries) {\n labelX = yZero + labelPadding * (isPositiveY ? 1 : -1);\n labelTextAlign = isPositiveY ? \"start\" : \"end\";\n }\n } else {\n labelX = yZero + labelPadding * (isPositiveY ? 1 : -1);\n labelTextAlign = isPositiveY ? \"start\" : \"end\";\n }\n nodeData.push({\n x,\n y,\n width,\n height,\n fill,\n stroke,\n strokeWidth,\n seriesDatum: { x: xDatum, y: invalidDatum ? void 0 : yDatum },\n point: midPoint,\n label: {\n x: labelX,\n y: labelY,\n text: labelText,\n fontStyle: labelFontStyle,\n fontWeight: labelFontWeight,\n fontSize: labelFontSize,\n fontFamily: labelFontFamily,\n textAlign: labelTextAlign,\n textBaseline: labelTextBaseline,\n fill: labelColor\n }\n });\n }\n return nodeData;\n }\n getDistance(p1, p2) {\n return Math.abs(p1.y - p2.y);\n }\n};\nBarSparkline.className = \"BarSparkline\";\nvar { isNumber: isNumber3 } = _Util62;\nvar { BandScale: BandScale5 } = _Scale5;\nvar ColumnSparkline = class extends BarColumnSparkline {\n updateYScaleRange() {\n const { seriesRect, yScale } = this;\n yScale.range = [seriesRect.height, 0];\n }\n updateXScaleRange() {\n const { xScale, seriesRect, paddingOuter, paddingInner } = this;\n if (xScale instanceof BandScale5) {\n xScale.range = [0, seriesRect.width];\n xScale.paddingInner = paddingInner;\n xScale.paddingOuter = paddingOuter;\n } else {\n const step = this.calculateStep(seriesRect.width);\n const padding = step * paddingOuter;\n this.bandWidth = step * (1 - paddingInner);\n xScale.range = [padding, seriesRect.width - padding - this.bandWidth];\n }\n }\n updateAxisLine() {\n const { yScale, axis, axisLine, seriesRect } = this;\n const { strokeWidth } = axis;\n axisLine.x1 = 0;\n axisLine.x2 = seriesRect.width;\n axisLine.y1 = 0;\n axisLine.y2 = 0;\n axisLine.stroke = axis.stroke;\n axisLine.strokeWidth = strokeWidth + (strokeWidth % 2 === 1 ? 1 : 0);\n const yZero = yScale.convert(0);\n axisLine.translationY = yZero;\n }\n generateNodeData() {\n const { data, yData, xData, xScale, yScale, fill, stroke, strokeWidth, label } = this;\n if (!data) {\n return;\n }\n const {\n fontStyle: labelFontStyle,\n fontWeight: labelFontWeight,\n fontSize: labelFontSize,\n fontFamily: labelFontFamily,\n color: labelColor,\n formatter: labelFormatter,\n placement: labelPlacement\n } = label;\n const nodeData = [];\n const yZero = yScale.convert(0);\n const continuous = !(xScale instanceof BandScale5);\n for (let i = 0, n = yData.length; i < n; i++) {\n let yDatum = yData[i];\n const xDatum = xData[i];\n const invalidDatum = yDatum === void 0;\n if (invalidDatum) {\n yDatum = 0;\n }\n const y = Math.min(yDatum === void 0 ? NaN : yScale.convert(yDatum), yZero);\n const x = xScale.convert(continuous ? xScale.toDomain(xDatum) : xDatum);\n const bottom = Math.max(yDatum === void 0 ? NaN : yScale.convert(yDatum), yZero);\n const width = !continuous ? xScale.bandwidth : this.bandWidth;\n const height = bottom - y;\n const midPoint = {\n x: x + width / 2,\n y: yZero\n };\n let labelText;\n if (labelFormatter) {\n labelText = labelFormatter({ value: yDatum });\n } else {\n labelText = yDatum !== void 0 && isNumber3(yDatum) ? this.formatLabelValue(yDatum) : \"\";\n }\n const labelX = x + width / 2;\n let labelY;\n const labelTextAlign = \"center\";\n let labelTextBaseline;\n const isPositiveY = yDatum !== void 0 && yDatum >= 0;\n const labelPadding = 2;\n if (labelPlacement === \"center\") {\n labelY = y + height / 2;\n labelTextBaseline = \"middle\";\n } else if (labelPlacement === \"outsideEnd\") {\n labelY = y + (isPositiveY ? -labelPadding : height + labelPadding);\n labelTextBaseline = isPositiveY ? \"bottom\" : \"top\";\n } else if (labelPlacement === \"insideEnd\") {\n labelY = y + (isPositiveY ? labelPadding : height - labelPadding);\n labelTextBaseline = isPositiveY ? \"top\" : \"bottom\";\n const textSize = _Scene72.Text.getTextSize(labelText, labelFontFamily);\n const textHeight = textSize.height || 10;\n const positiveBoundary = yZero - textHeight;\n const negativeBoundary = yZero + textHeight;\n const exceedsBoundaries = isPositiveY && labelY > positiveBoundary || !isPositiveY && labelY < negativeBoundary;\n if (exceedsBoundaries) {\n labelY = yZero + labelPadding * (isPositiveY ? -1 : 1);\n labelTextBaseline = isPositiveY ? \"bottom\" : \"top\";\n }\n } else {\n labelY = yZero + labelPadding * (isPositiveY ? -1 : 1);\n labelTextBaseline = isPositiveY ? \"bottom\" : \"top\";\n }\n nodeData.push({\n x,\n y,\n width,\n height,\n fill,\n stroke,\n strokeWidth,\n seriesDatum: { x: xDatum, y: invalidDatum ? void 0 : yDatum },\n point: midPoint,\n label: {\n x: labelX,\n y: labelY,\n text: labelText,\n fontStyle: labelFontStyle,\n fontWeight: labelFontWeight,\n fontSize: labelFontSize,\n fontFamily: labelFontFamily,\n textAlign: labelTextAlign,\n textBaseline: labelTextBaseline,\n fill: labelColor\n }\n });\n }\n return nodeData;\n }\n};\nColumnSparkline.className = \"ColumnSparkline\";\nvar { isNumber: isNumber4 } = _Util7;\nvar AgSparkline = class {\n static create(options, tooltip) {\n options = _Util7.deepClone(options);\n const sparkline = getSparklineInstance(options.type);\n if (tooltip) {\n sparkline.tooltip = tooltip;\n }\n initSparkline(sparkline, options);\n initSparklineByType(sparkline, options);\n if (options.data) {\n sparkline.data = options.data;\n }\n sparkline.processedOptions = options;\n return sparkline;\n }\n};\nfunction getSparklineInstance(type = \"line\") {\n switch (type) {\n case \"column\":\n return new ColumnSparkline();\n case \"bar\":\n return new BarSparkline();\n case \"area\":\n return new AreaSparkline();\n case \"line\":\n default:\n return new LineSparkline();\n }\n}\nfunction initSparklineByType(sparkline, options) {\n switch (options.type) {\n case \"bar\":\n initBarColumnSparkline(sparkline, options);\n break;\n case \"column\":\n initBarColumnSparkline(sparkline, options);\n break;\n case \"area\":\n initAreaSparkline(sparkline, options);\n break;\n case \"line\":\n default:\n initLineSparkline(sparkline, options);\n break;\n }\n}\nfunction initSparkline(sparkline, options) {\n setValueIfPropertyExists(sparkline, \"context\", options.context, options);\n setValueIfPropertyExists(sparkline, \"width\", options.width, options);\n setValueIfPropertyExists(sparkline, \"height\", options.height, options);\n setValueIfPropertyExists(sparkline, \"container\", options.container, options);\n setValueIfPropertyExists(sparkline, \"xKey\", options.xKey, options);\n setValueIfPropertyExists(sparkline, \"yKey\", options.yKey, options);\n if (options.padding) {\n initPaddingOptions(sparkline.padding, options.padding);\n }\n if (options.axis) {\n initAxisOptions(sparkline.axis, options.axis);\n }\n if (options.highlightStyle) {\n initHighlightStyleOptions(sparkline.highlightStyle, options.highlightStyle);\n }\n}\nfunction initLineSparkline(sparkline, options) {\n if (options.marker) {\n initMarkerOptions(sparkline.marker, options.marker);\n }\n if (options.line) {\n initLineOptions(sparkline.line, options.line);\n }\n if (options.crosshairs) {\n initCrosshairsOptions(sparkline.crosshairs, options.crosshairs);\n }\n}\nfunction initAreaSparkline(sparkline, options) {\n setValueIfPropertyExists(sparkline, \"fill\", options.fill, options);\n if (options.marker) {\n initMarkerOptions(sparkline.marker, options.marker);\n }\n if (options.line) {\n initLineOptions(sparkline.line, options.line);\n }\n if (options.crosshairs) {\n initCrosshairsOptions(sparkline.crosshairs, options.crosshairs);\n }\n}\nfunction initBarColumnSparkline(sparkline, options) {\n setValueIfPropertyExists(sparkline, \"valueAxisDomain\", options.valueAxisDomain, options);\n setValueIfPropertyExists(sparkline, \"fill\", options.fill, options);\n setValueIfPropertyExists(sparkline, \"stroke\", options.stroke, options);\n setValueIfPropertyExists(sparkline, \"strokeWidth\", options.strokeWidth, options);\n setValueIfPropertyExists(sparkline, \"paddingInner\", options.paddingInner, options);\n setValueIfPropertyExists(sparkline, \"paddingOuter\", options.paddingOuter, options);\n setValueIfPropertyExists(sparkline, \"formatter\", options.formatter, options);\n if (options.label) {\n initLabelOptions(sparkline.label, options.label);\n }\n}\nfunction initPaddingOptions(target, options) {\n setValueIfPropertyExists(target, \"top\", options.top, options);\n setValueIfPropertyExists(target, \"right\", options.right, options);\n setValueIfPropertyExists(target, \"bottom\", options.bottom, options);\n setValueIfPropertyExists(target, \"left\", options.left, options);\n}\nfunction initMarkerOptions(target, options) {\n setValueIfPropertyExists(target, \"enabled\", options.enabled, options);\n setValueIfPropertyExists(target, \"size\", options.size, options);\n setValueIfPropertyExists(target, \"shape\", options.shape, options);\n setValueIfPropertyExists(target, \"fill\", options.fill, options);\n setValueIfPropertyExists(target, \"stroke\", options.stroke, options);\n setValueIfPropertyExists(target, \"strokeWidth\", options.strokeWidth, options);\n setValueIfPropertyExists(target, \"formatter\", options.formatter, options);\n}\nfunction initLabelOptions(target, options) {\n setValueIfPropertyExists(target, \"enabled\", options.enabled, options);\n setValueIfPropertyExists(target, \"fontStyle\", options.fontStyle, options);\n setValueIfPropertyExists(target, \"fontWeight\", options.fontWeight, options);\n setValueIfPropertyExists(target, \"fontSize\", options.fontSize, options);\n setValueIfPropertyExists(target, \"fontFamily\", options.fontFamily, options);\n setValueIfPropertyExists(target, \"textAlign\", options.textAlign, options);\n setValueIfPropertyExists(target, \"textBaseline\", options.textBaseline, options);\n setValueIfPropertyExists(target, \"color\", options.color, options);\n setValueIfPropertyExists(target, \"formatter\", options.formatter, options);\n setValueIfPropertyExists(target, \"placement\", options.placement, options);\n}\nfunction initLineOptions(target, options) {\n setValueIfPropertyExists(target, \"stroke\", options.stroke, options);\n setValueIfPropertyExists(target, \"strokeWidth\", options.strokeWidth, options);\n}\nfunction initAxisOptions(target, options) {\n setValueIfPropertyExists(target, \"type\", options.type, options);\n setValueIfPropertyExists(target, \"stroke\", options.stroke, options);\n setValueIfPropertyExists(target, \"strokeWidth\", options.strokeWidth, options);\n}\nfunction initHighlightStyleOptions(target, options) {\n setValueIfPropertyExists(target, \"fill\", options.fill, options);\n setValueIfPropertyExists(target, \"size\", options.size, options);\n setValueIfPropertyExists(target, \"stroke\", options.stroke, options);\n setValueIfPropertyExists(target, \"strokeWidth\", options.strokeWidth, options);\n}\nfunction initCrosshairsOptions(target, options) {\n if (target.xLine && options.xLine) {\n initCrosshairLineOptions(target.xLine, options.xLine);\n }\n if (target.yLine && options.yLine) {\n initCrosshairLineOptions(target.yLine, options.yLine);\n }\n}\nfunction initCrosshairLineOptions(target, options) {\n setValueIfPropertyExists(target, \"enabled\", options.enabled, options);\n setValueIfPropertyExists(target, \"stroke\", options.stroke, options);\n setValueIfPropertyExists(target, \"strokeWidth\", options.strokeWidth, options);\n setValueIfPropertyExists(target, \"lineDash\", options.lineDash, options);\n setValueIfPropertyExists(target, \"lineCap\", options.lineCap, options);\n}\nvar doOnceFlags = {};\nfunction doOnce(func, key) {\n if (doOnceFlags[key]) {\n return;\n }\n func();\n doOnceFlags[key] = true;\n}\nvar offsetValidator = (property, value, defaultOffset) => {\n if (isNumber4(value)) {\n return true;\n }\n const message = `AG Charts: ${property} must be a number, the value you provided is not a valid number. Using the default of ${defaultOffset}px.`;\n doOnce(() => console.warn(message), `${property} not a number`);\n return false;\n};\nvar validators = {\n xOffset: offsetValidator,\n yOffset: offsetValidator\n};\nfunction setValueIfPropertyExists(target, property, value, options) {\n if (property in options) {\n if (property in target) {\n const validator = validators[property];\n const isValid = validator ? validator(property, value, target[property]) : true;\n if (isValid && target[property] !== value) {\n target[property] = value;\n }\n } else {\n console.warn(`Property ${property} does not exist on the target object.`);\n }\n }\n}\nvar _SparklineCellRenderer = class _SparklineCellRenderer2 extends Component58 {\n constructor() {\n super(_SparklineCellRenderer2.TEMPLATE);\n }\n init(params) {\n let firstTimeIn = true;\n const updateSparkline = () => {\n const { clientWidth, clientHeight } = this.getGui();\n if (clientWidth === 0 || clientHeight === 0) {\n return;\n }\n if (firstTimeIn) {\n const options = __spreadValues13({\n data: params.value,\n width: clientWidth,\n height: clientHeight,\n context: {\n data: params.data\n }\n }, params.sparklineOptions);\n this.sparkline = AgSparkline.create(options, this.sparklineTooltipSingleton.getSparklineTooltip());\n this.eSparkline.appendChild(this.sparkline.canvasElement);\n firstTimeIn = false;\n } else {\n this.sparkline.width = clientWidth;\n this.sparkline.height = clientHeight;\n }\n };\n const unsubscribeFromResize = this.resizeObserverService.observeResize(this.getGui(), updateSparkline);\n this.addDestroyFunc(() => unsubscribeFromResize());\n }\n refresh(params) {\n if (this.sparkline) {\n this.sparkline.data = params.value;\n return true;\n }\n return false;\n }\n destroy() {\n if (this.sparkline) {\n this.sparkline.destroy();\n }\n super.destroy();\n }\n};\n_SparklineCellRenderer.TEMPLATE = `
\n \n
`;\n__decorateClass16([\n RefSelector28(\"eSparkline\")\n], _SparklineCellRenderer.prototype, \"eSparkline\", 2);\n__decorateClass16([\n Autowired69(\"resizeObserverService\")\n], _SparklineCellRenderer.prototype, \"resizeObserverService\", 2);\n__decorateClass16([\n Autowired69(\"sparklineTooltipSingleton\")\n], _SparklineCellRenderer.prototype, \"sparklineTooltipSingleton\", 2);\nvar SparklineCellRenderer = _SparklineCellRenderer;\nvar SparklineTooltipSingleton = class extends BeanStub29 {\n postConstruct() {\n this.tooltip = new SparklineTooltip();\n }\n getSparklineTooltip() {\n return this.tooltip;\n }\n destroyTooltip() {\n if (this.tooltip) {\n this.tooltip.destroy();\n }\n }\n};\n__decorateClass16([\n PostConstruct66\n], SparklineTooltipSingleton.prototype, \"postConstruct\", 1);\n__decorateClass16([\n PreDestroy6\n], SparklineTooltipSingleton.prototype, \"destroyTooltip\", 1);\nSparklineTooltipSingleton = __decorateClass16([\n Bean15(\"sparklineTooltipSingleton\")\n], SparklineTooltipSingleton);\nvar VERSION17 = \"31.3.2\";\nvar SparklinesModule = {\n version: VERSION17,\n moduleName: ModuleNames17.SparklinesModule,\n beans: [SparklineTooltipSingleton],\n userComponents: [{ componentName: \"agSparklineCellRenderer\", componentClass: SparklineCellRenderer }],\n dependantModules: [EnterpriseCoreModule]\n};\n\n// enterprise-modules/status-bar/src/statusBarModule.ts\nimport { ModuleNames as ModuleNames18 } from \"ag-grid-community\";\n\n// enterprise-modules/status-bar/src/statusBar/statusBarService.ts\nimport { Bean as Bean16, BeanStub as BeanStub30 } from \"ag-grid-community\";\nvar StatusBarService = class extends BeanStub30 {\n // tslint:disable-next-line\n constructor() {\n super();\n this.allComponents = /* @__PURE__ */ new Map();\n }\n registerStatusPanel(key, component) {\n this.allComponents.set(key, component);\n }\n unregisterStatusPanel(key) {\n this.allComponents.delete(key);\n }\n unregisterAllComponents() {\n this.allComponents.clear();\n }\n getStatusPanel(key) {\n return this.allComponents.get(key);\n }\n destroy() {\n this.unregisterAllComponents();\n super.destroy();\n }\n};\nStatusBarService = __decorateClass([\n Bean16(\"statusBarService\")\n], StatusBarService);\n\n// enterprise-modules/status-bar/src/statusBar/statusBar.ts\nimport {\n Autowired as Autowired70,\n Component as Component59,\n PostConstruct as PostConstruct67,\n PreDestroy as PreDestroy7,\n AgPromise as AgPromise7,\n RefSelector as RefSelector29,\n _ as _61\n} from \"ag-grid-community\";\nvar _StatusBar = class _StatusBar extends Component59 {\n constructor() {\n super(_StatusBar.TEMPLATE);\n this.compDestroyFunctions = {};\n }\n postConstruct() {\n this.processStatusPanels(/* @__PURE__ */ new Map());\n this.addManagedPropertyListeners([\"statusBar\"], this.handleStatusBarChanged.bind(this));\n }\n processStatusPanels(existingStatusPanelsToReuse) {\n var _a;\n const statusPanels = (_a = this.gos.get(\"statusBar\")) == null ? void 0 : _a.statusPanels;\n if (statusPanels) {\n const leftStatusPanelComponents = statusPanels.filter((componentConfig) => componentConfig.align === \"left\");\n this.createAndRenderComponents(leftStatusPanelComponents, this.eStatusBarLeft, existingStatusPanelsToReuse);\n const centerStatusPanelComponents = statusPanels.filter((componentConfig) => componentConfig.align === \"center\");\n this.createAndRenderComponents(centerStatusPanelComponents, this.eStatusBarCenter, existingStatusPanelsToReuse);\n const rightStatusPanelComponents = statusPanels.filter((componentConfig) => !componentConfig.align || componentConfig.align === \"right\");\n this.createAndRenderComponents(rightStatusPanelComponents, this.eStatusBarRight, existingStatusPanelsToReuse);\n } else {\n this.setDisplayed(false);\n }\n }\n handleStatusBarChanged() {\n var _a;\n const statusPanels = (_a = this.gos.get(\"statusBar\")) == null ? void 0 : _a.statusPanels;\n const validStatusBarPanelsProvided = Array.isArray(statusPanels) && statusPanels.length > 0;\n this.setDisplayed(validStatusBarPanelsProvided);\n const existingStatusPanelsToReuse = /* @__PURE__ */ new Map();\n if (validStatusBarPanelsProvided) {\n statusPanels.forEach((statusPanelConfig) => {\n var _a2, _b;\n const key = (_a2 = statusPanelConfig.key) != null ? _a2 : statusPanelConfig.statusPanel;\n const existingStatusPanel = this.statusBarService.getStatusPanel(key);\n if (existingStatusPanel == null ? void 0 : existingStatusPanel.refresh) {\n const newParams = this.gos.addGridCommonParams((_b = statusPanelConfig.statusPanelParams) != null ? _b : {});\n const hasRefreshed = existingStatusPanel.refresh(newParams);\n if (hasRefreshed) {\n existingStatusPanelsToReuse.set(key, existingStatusPanel);\n delete this.compDestroyFunctions[key];\n _61.removeFromParent(existingStatusPanel.getGui());\n }\n }\n });\n }\n this.resetStatusBar();\n if (validStatusBarPanelsProvided) {\n this.processStatusPanels(existingStatusPanelsToReuse);\n }\n }\n resetStatusBar() {\n this.eStatusBarLeft.innerHTML = \"\";\n this.eStatusBarCenter.innerHTML = \"\";\n this.eStatusBarRight.innerHTML = \"\";\n this.destroyComponents();\n this.statusBarService.unregisterAllComponents();\n }\n destroyComponents() {\n Object.values(this.compDestroyFunctions).forEach((func) => func());\n this.compDestroyFunctions = {};\n }\n createAndRenderComponents(statusBarComponents, ePanelComponent, existingStatusPanelsToReuse) {\n const componentDetails = [];\n statusBarComponents.forEach((componentConfig) => {\n const key = componentConfig.key || componentConfig.statusPanel;\n const existingStatusPanel = existingStatusPanelsToReuse.get(key);\n let promise;\n if (existingStatusPanel) {\n promise = AgPromise7.resolve(existingStatusPanel);\n } else {\n const params = {};\n const compDetails = this.userComponentFactory.getStatusPanelCompDetails(componentConfig, params);\n promise = compDetails.newAgStackInstance();\n if (!promise) {\n return;\n }\n }\n componentDetails.push({\n key,\n promise\n });\n });\n AgPromise7.all(componentDetails.map((details) => details.promise)).then(() => {\n componentDetails.forEach((componentDetail) => {\n componentDetail.promise.then((component) => {\n const destroyFunc = () => {\n this.getContext().destroyBean(component);\n };\n if (this.isAlive()) {\n this.statusBarService.registerStatusPanel(componentDetail.key, component);\n ePanelComponent.appendChild(component.getGui());\n this.compDestroyFunctions[componentDetail.key] = destroyFunc;\n } else {\n destroyFunc();\n }\n });\n });\n });\n }\n};\n_StatusBar.TEMPLATE = /* html */\n`
`;\n__decorateClass([\n Autowired70(\"userComponentFactory\")\n], _StatusBar.prototype, \"userComponentFactory\", 2);\n__decorateClass([\n Autowired70(\"statusBarService\")\n], _StatusBar.prototype, \"statusBarService\", 2);\n__decorateClass([\n RefSelector29(\"eStatusBarLeft\")\n], _StatusBar.prototype, \"eStatusBarLeft\", 2);\n__decorateClass([\n RefSelector29(\"eStatusBarCenter\")\n], _StatusBar.prototype, \"eStatusBarCenter\", 2);\n__decorateClass([\n RefSelector29(\"eStatusBarRight\")\n], _StatusBar.prototype, \"eStatusBarRight\", 2);\n__decorateClass([\n PostConstruct67\n], _StatusBar.prototype, \"postConstruct\", 1);\n__decorateClass([\n PreDestroy7\n], _StatusBar.prototype, \"destroyComponents\", 1);\nvar StatusBar = _StatusBar;\n\n// enterprise-modules/status-bar/src/statusBar/providedPanels/nameValueComp.ts\nimport { Component as Component60, RefSelector as RefSelector30 } from \"ag-grid-community\";\nvar _NameValueComp = class _NameValueComp extends Component60 {\n constructor() {\n super(_NameValueComp.TEMPLATE);\n }\n setLabel(key, defaultValue) {\n this.setDisplayed(false);\n const localeTextFunc = this.localeService.getLocaleTextFunc();\n this.eLabel.innerHTML = localeTextFunc(key, defaultValue);\n }\n setValue(value) {\n this.eValue.innerHTML = value;\n }\n};\n_NameValueComp.TEMPLATE = /* html */\n`
\n : \n \n
`;\n__decorateClass([\n RefSelector30(\"eLabel\")\n], _NameValueComp.prototype, \"eLabel\", 2);\n__decorateClass([\n RefSelector30(\"eValue\")\n], _NameValueComp.prototype, \"eValue\", 2);\nvar NameValueComp = _NameValueComp;\n\n// enterprise-modules/status-bar/src/statusBar/providedPanels/totalAndFilteredRowsComp.ts\nimport {\n Autowired as Autowired71,\n Events as Events21,\n PostConstruct as PostConstruct68,\n _ as _68\n} from \"ag-grid-community\";\nvar TotalAndFilteredRowsComp = class extends NameValueComp {\n postConstruct() {\n if (this.rowModel.getType() !== \"clientSide\") {\n _68.warnOnce(`agTotalAndFilteredRowCountComponent should only be used with the client side row model.`);\n return;\n }\n this.setLabel(\"totalAndFilteredRows\", \"Rows\");\n this.addCssClass(\"ag-status-panel\");\n this.addCssClass(\"ag-status-panel-total-and-filtered-row-count\");\n this.setDisplayed(true);\n this.addManagedListener(this.eventService, Events21.EVENT_MODEL_UPDATED, this.onDataChanged.bind(this));\n this.onDataChanged();\n }\n onDataChanged() {\n const localeTextFunc = this.localeService.getLocaleTextFunc();\n const thousandSeparator = localeTextFunc(\"thousandSeparator\", \",\");\n const decimalSeparator = localeTextFunc(\"decimalSeparator\", \".\");\n const rowCount = _68.formatNumberCommas(this.getFilteredRowCountValue(), thousandSeparator, decimalSeparator);\n const totalRowCount = _68.formatNumberCommas(this.getTotalRowCount(), thousandSeparator, decimalSeparator);\n if (rowCount === totalRowCount) {\n this.setValue(rowCount);\n } else {\n const localeTextFunc2 = this.localeService.getLocaleTextFunc();\n this.setValue(`${rowCount} ${localeTextFunc2(\"of\", \"of\")} ${totalRowCount}`);\n }\n }\n getFilteredRowCountValue() {\n let filteredRowCount = 0;\n this.rowModel.forEachNodeAfterFilter((node) => {\n if (!node.group) {\n filteredRowCount++;\n }\n });\n return filteredRowCount;\n }\n getTotalRowCount() {\n let totalRowCount = 0;\n this.rowModel.forEachNode((node) => {\n if (!node.group) {\n totalRowCount++;\n }\n });\n return totalRowCount;\n }\n init() {\n }\n refresh() {\n return true;\n }\n // this is a user component, and IComponent has \"public destroy()\" as part of the interface.\n // so we need to override destroy() just to make the method public.\n destroy() {\n super.destroy();\n }\n};\n__decorateClass([\n Autowired71(\"rowModel\")\n], TotalAndFilteredRowsComp.prototype, \"rowModel\", 2);\n__decorateClass([\n PostConstruct68\n], TotalAndFilteredRowsComp.prototype, \"postConstruct\", 1);\n\n// enterprise-modules/status-bar/src/statusBar/providedPanels/filteredRowsComp.ts\nimport {\n Autowired as Autowired76,\n Events as Events30,\n PostConstruct as PostConstruct69,\n _ as _69\n} from \"ag-grid-community\";\nvar FilteredRowsComp = class extends NameValueComp {\n postConstruct() {\n this.setLabel(\"filteredRows\", \"Filtered\");\n if (this.rowModel.getType() !== \"clientSide\") {\n _69.warnOnce(`agFilteredRowCountComponent should only be used with the client side row model.`);\n return;\n }\n this.addCssClass(\"ag-status-panel\");\n this.addCssClass(\"ag-status-panel-filtered-row-count\");\n this.setDisplayed(true);\n const listener = this.onDataChanged.bind(this);\n this.addManagedListener(this.eventService, Events30.EVENT_MODEL_UPDATED, listener);\n listener();\n }\n onDataChanged() {\n const totalRowCountValue = this.getTotalRowCountValue();\n const filteredRowCountValue = this.getFilteredRowCountValue();\n const localeTextFunc = this.localeService.getLocaleTextFunc();\n const thousandSeparator = localeTextFunc(\"thousandSeparator\", \",\");\n const decimalSeparator = localeTextFunc(\"decimalSeparator\", \".\");\n this.setValue(_69.formatNumberCommas(filteredRowCountValue, thousandSeparator, decimalSeparator));\n this.setDisplayed(totalRowCountValue !== filteredRowCountValue);\n }\n getTotalRowCountValue() {\n let totalRowCount = 0;\n this.rowModel.forEachNode((node) => totalRowCount += 1);\n return totalRowCount;\n }\n getFilteredRowCountValue() {\n let filteredRowCount = 0;\n this.rowModel.forEachNodeAfterFilter((node) => {\n if (!node.group) {\n filteredRowCount += 1;\n }\n });\n return filteredRowCount;\n }\n init() {\n }\n refresh() {\n return true;\n }\n // this is a user component, and IComponent has \"public destroy()\" as part of the interface.\n // so we need to override destroy() just to make the method public.\n destroy() {\n super.destroy();\n }\n};\n__decorateClass([\n Autowired76(\"rowModel\")\n], FilteredRowsComp.prototype, \"rowModel\", 2);\n__decorateClass([\n PostConstruct69\n], FilteredRowsComp.prototype, \"postConstruct\", 1);\n\n// enterprise-modules/status-bar/src/statusBar/providedPanels/totalRowsComp.ts\nimport { Autowired as Autowired77, Events as Events31, PostConstruct as PostConstruct70, _ as _70 } from \"ag-grid-community\";\nvar TotalRowsComp = class extends NameValueComp {\n postConstruct() {\n this.setLabel(\"totalRows\", \"Total Rows\");\n if (this.rowModel.getType() !== \"clientSide\") {\n _70.warnOnce(\"agTotalRowCountComponent should only be used with the client side row model.\");\n return;\n }\n this.addCssClass(\"ag-status-panel\");\n this.addCssClass(\"ag-status-panel-total-row-count\");\n this.setDisplayed(true);\n this.addManagedListener(this.eventService, Events31.EVENT_MODEL_UPDATED, this.onDataChanged.bind(this));\n this.onDataChanged();\n }\n onDataChanged() {\n const localeTextFunc = this.localeService.getLocaleTextFunc();\n const thousandSeparator = localeTextFunc(\"thousandSeparator\", \",\");\n const decimalSeparator = localeTextFunc(\"decimalSeparator\", \".\");\n this.setValue(_70.formatNumberCommas(this.getRowCountValue(), thousandSeparator, decimalSeparator));\n }\n getRowCountValue() {\n let totalRowCount = 0;\n this.rowModel.forEachLeafNode((node) => totalRowCount += 1);\n return totalRowCount;\n }\n init() {\n }\n refresh() {\n return true;\n }\n // this is a user component, and IComponent has \"public destroy()\" as part of the interface.\n // so we need to override destroy() just to make the method public.\n destroy() {\n super.destroy();\n }\n};\n__decorateClass([\n Autowired77(\"rowModel\")\n], TotalRowsComp.prototype, \"rowModel\", 2);\n__decorateClass([\n PostConstruct70\n], TotalRowsComp.prototype, \"postConstruct\", 1);\n\n// enterprise-modules/status-bar/src/statusBar/providedPanels/selectedRowsComp.ts\nimport { Autowired as Autowired78, Events as Events38, PostConstruct as PostConstruct71, _ as _71 } from \"ag-grid-community\";\nvar SelectedRowsComp = class extends NameValueComp {\n postConstruct() {\n if (!this.isValidRowModel()) {\n console.warn(`AG Grid: agSelectedRowCountComponent should only be used with the client and server side row model.`);\n return;\n }\n this.setLabel(\"selectedRows\", \"Selected\");\n this.addCssClass(\"ag-status-panel\");\n this.addCssClass(\"ag-status-panel-selected-row-count\");\n this.onRowSelectionChanged();\n const eventListener = this.onRowSelectionChanged.bind(this);\n this.addManagedListener(this.eventService, Events38.EVENT_MODEL_UPDATED, eventListener);\n this.addManagedListener(this.eventService, Events38.EVENT_SELECTION_CHANGED, eventListener);\n }\n isValidRowModel() {\n const rowModelType = this.rowModel.getType();\n return rowModelType === \"clientSide\" || rowModelType === \"serverSide\";\n }\n onRowSelectionChanged() {\n const selectedRowCount = this.selectionService.getSelectionCount();\n if (selectedRowCount < 0) {\n this.setValue(\"?\");\n this.setDisplayed(true);\n return;\n }\n const localeTextFunc = this.localeService.getLocaleTextFunc();\n const thousandSeparator = localeTextFunc(\"thousandSeparator\", \",\");\n const decimalSeparator = localeTextFunc(\"decimalSeparator\", \".\");\n this.setValue(_71.formatNumberCommas(selectedRowCount, thousandSeparator, decimalSeparator));\n this.setDisplayed(selectedRowCount > 0);\n }\n init() {\n }\n refresh() {\n return true;\n }\n // this is a user component, and IComponent has \"public destroy()\" as part of the interface.\n // so we need to override destroy() just to make the method public.\n destroy() {\n super.destroy();\n }\n};\n__decorateClass([\n Autowired78(\"rowModel\")\n], SelectedRowsComp.prototype, \"rowModel\", 2);\n__decorateClass([\n Autowired78(\"selectionService\")\n], SelectedRowsComp.prototype, \"selectionService\", 2);\n__decorateClass([\n PostConstruct71\n], SelectedRowsComp.prototype, \"postConstruct\", 1);\n\n// enterprise-modules/status-bar/src/statusBar/providedPanels/aggregationComp.ts\nimport {\n Autowired as Autowired79,\n Component as Component61,\n Events as Events39,\n PostConstruct as PostConstruct75,\n RefSelector as RefSelector31,\n _ as _74,\n Optional as Optional7\n} from \"ag-grid-community\";\nvar _AggregationComp = class _AggregationComp extends Component61 {\n constructor() {\n super(_AggregationComp.TEMPLATE);\n }\n // this is a user component, and IComponent has \"public destroy()\" as part of the interface.\n // so we need to override destroy() just to make the method public.\n destroy() {\n super.destroy();\n }\n postConstruct() {\n if (!this.isValidRowModel()) {\n console.warn(`AG Grid: agAggregationComponent should only be used with the client and server side row model.`);\n return;\n }\n this.avgAggregationComp.setLabel(\"avg\", \"Average\");\n this.countAggregationComp.setLabel(\"count\", \"Count\");\n this.minAggregationComp.setLabel(\"min\", \"Min\");\n this.maxAggregationComp.setLabel(\"max\", \"Max\");\n this.sumAggregationComp.setLabel(\"sum\", \"Sum\");\n this.addManagedListener(this.eventService, Events39.EVENT_RANGE_SELECTION_CHANGED, this.onRangeSelectionChanged.bind(this));\n this.addManagedListener(this.eventService, Events39.EVENT_MODEL_UPDATED, this.onRangeSelectionChanged.bind(this));\n }\n isValidRowModel() {\n const rowModelType = this.rowModel.getType();\n return rowModelType === \"clientSide\" || rowModelType === \"serverSide\";\n }\n init(params) {\n this.params = params;\n }\n refresh(params) {\n this.params = params;\n this.onRangeSelectionChanged();\n return true;\n }\n setAggregationComponentValue(aggFuncName, value, visible) {\n var _a;\n const statusBarValueComponent = this.getAllowedAggregationValueComponent(aggFuncName);\n if (_74.exists(statusBarValueComponent) && statusBarValueComponent) {\n const localeTextFunc = this.localeService.getLocaleTextFunc();\n const thousandSeparator = localeTextFunc(\"thousandSeparator\", \",\");\n const decimalSeparator = localeTextFunc(\"decimalSeparator\", \".\");\n statusBarValueComponent.setValue(_74.formatNumberTwoDecimalPlacesAndCommas(value, thousandSeparator, decimalSeparator));\n statusBarValueComponent.setDisplayed(visible);\n } else {\n (_a = this.getAggregationValueComponent(aggFuncName)) == null ? void 0 : _a.setDisplayed(false);\n }\n }\n getAllowedAggregationValueComponent(aggFuncName) {\n const { aggFuncs } = this.params;\n if (!aggFuncs || aggFuncs.includes(aggFuncName)) {\n return this.getAggregationValueComponent(aggFuncName);\n }\n return null;\n }\n getAggregationValueComponent(aggFuncName) {\n const refComponentName = `${aggFuncName}AggregationComp`;\n return this[refComponentName];\n }\n onRangeSelectionChanged() {\n var _a;\n const cellRanges = (_a = this.rangeService) == null ? void 0 : _a.getCellRanges();\n let sum = 0;\n let count = 0;\n let numberCount = 0;\n let min = null;\n let max = null;\n const cellsSoFar = {};\n if (cellRanges && !_74.missingOrEmpty(cellRanges) && this.rangeService) {\n for (let i = 0; i < cellRanges.length; i++) {\n const cellRange = cellRanges[i];\n let currentRow = this.rangeService.getRangeStartRow(cellRange);\n const lastRow = this.rangeService.getRangeEndRow(cellRange);\n while (true) {\n const finishedAllRows = _74.missing(currentRow) || !currentRow || this.rowPositionUtils.before(lastRow, currentRow);\n if (finishedAllRows || !currentRow || !cellRange.columns) {\n break;\n }\n cellRange.columns.forEach((col) => {\n if (currentRow === null) {\n return;\n }\n const cellId = this.cellPositionUtils.createId({\n rowPinned: currentRow.rowPinned,\n column: col,\n rowIndex: currentRow.rowIndex\n });\n if (cellsSoFar[cellId]) {\n return;\n }\n cellsSoFar[cellId] = true;\n const rowNode = this.rowPositionUtils.getRowNode(currentRow);\n if (_74.missing(rowNode)) {\n return;\n }\n let value = this.valueService.getValue(col, rowNode);\n if (_74.missing(value) || value === \"\") {\n return;\n }\n count++;\n if (typeof value === \"object\" && \"value\" in value) {\n value = value.value;\n if (value === \"\") {\n return;\n }\n }\n if (typeof value === \"string\") {\n value = Number(value);\n }\n if (typeof value === \"number\" && !isNaN(value)) {\n sum += value;\n if (max === null || value > max) {\n max = value;\n }\n if (min === null || value < min) {\n min = value;\n }\n numberCount++;\n }\n });\n currentRow = this.cellNavigationService.getRowBelow(currentRow);\n }\n }\n ;\n }\n const gotResult = count > 1;\n const gotNumberResult = numberCount > 1;\n this.setAggregationComponentValue(\"count\", count, gotResult);\n this.setAggregationComponentValue(\"sum\", sum, gotNumberResult);\n this.setAggregationComponentValue(\"min\", min, gotNumberResult);\n this.setAggregationComponentValue(\"max\", max, gotNumberResult);\n this.setAggregationComponentValue(\"avg\", sum / numberCount, gotNumberResult);\n }\n};\n_AggregationComp.TEMPLATE = /* html */\n`
`;\n__decorateClass([\n Optional7(\"rangeService\")\n], _AggregationComp.prototype, \"rangeService\", 2);\n__decorateClass([\n Autowired79(\"valueService\")\n], _AggregationComp.prototype, \"valueService\", 2);\n__decorateClass([\n Autowired79(\"cellNavigationService\")\n], _AggregationComp.prototype, \"cellNavigationService\", 2);\n__decorateClass([\n Autowired79(\"rowModel\")\n], _AggregationComp.prototype, \"rowModel\", 2);\n__decorateClass([\n Autowired79(\"cellPositionUtils\")\n], _AggregationComp.prototype, \"cellPositionUtils\", 2);\n__decorateClass([\n Autowired79(\"rowPositionUtils\")\n], _AggregationComp.prototype, \"rowPositionUtils\", 2);\n__decorateClass([\n RefSelector31(\"sumAggregationComp\")\n], _AggregationComp.prototype, \"sumAggregationComp\", 2);\n__decorateClass([\n RefSelector31(\"countAggregationComp\")\n], _AggregationComp.prototype, \"countAggregationComp\", 2);\n__decorateClass([\n RefSelector31(\"minAggregationComp\")\n], _AggregationComp.prototype, \"minAggregationComp\", 2);\n__decorateClass([\n RefSelector31(\"maxAggregationComp\")\n], _AggregationComp.prototype, \"maxAggregationComp\", 2);\n__decorateClass([\n RefSelector31(\"avgAggregationComp\")\n], _AggregationComp.prototype, \"avgAggregationComp\", 2);\n__decorateClass([\n PostConstruct75\n], _AggregationComp.prototype, \"postConstruct\", 1);\nvar AggregationComp = _AggregationComp;\n\n// enterprise-modules/status-bar/src/version.ts\nvar VERSION18 = \"31.3.2\";\n\n// enterprise-modules/status-bar/src/statusBarModule.ts\nvar StatusBarModule = {\n version: VERSION18,\n moduleName: ModuleNames18.StatusBarModule,\n beans: [StatusBarService],\n agStackComponents: [\n { componentName: \"AgStatusBar\", componentClass: StatusBar },\n { componentName: \"AgNameValue\", componentClass: NameValueComp }\n ],\n userComponents: [\n { componentName: \"agAggregationComponent\", componentClass: AggregationComp },\n { componentName: \"agSelectedRowCountComponent\", componentClass: SelectedRowsComp },\n { componentName: \"agTotalRowCountComponent\", componentClass: TotalRowsComp },\n { componentName: \"agFilteredRowCountComponent\", componentClass: FilteredRowsComp },\n { componentName: \"agTotalAndFilteredRowCountComponent\", componentClass: TotalAndFilteredRowsComp }\n ],\n dependantModules: [\n EnterpriseCoreModule\n ]\n};\n\n// enterprise-modules/viewport-row-model/dist/package/main.esm.mjs\nimport { ModuleNames as ModuleNames19 } from \"ag-grid-community\";\nimport {\n _ as _75,\n Autowired as Autowired80,\n Bean as Bean17,\n BeanStub as BeanStub31,\n Events as Events40,\n PostConstruct as PostConstruct76,\n PreDestroy as PreDestroy8,\n RowNode\n} from \"ag-grid-community\";\nvar __defProp17 = Object.defineProperty;\nvar __getOwnPropDesc17 = Object.getOwnPropertyDescriptor;\nvar __decorateClass17 = (decorators, target, key, kind) => {\n var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc17(target, key) : target;\n for (var i = decorators.length - 1, decorator; i >= 0; i--)\n if (decorator = decorators[i])\n result = (kind ? decorator(target, key, result) : decorator(result)) || result;\n if (kind && result)\n __defProp17(target, key, result);\n return result;\n};\nvar VERSION19 = \"31.3.2\";\nvar ViewportRowModel = class extends BeanStub31 {\n constructor() {\n super(...arguments);\n this.firstRow = -1;\n this.lastRow = -1;\n this.rowCount = -1;\n this.rowNodesByIndex = {};\n }\n // we don't implement as lazy row heights is not supported in this row model\n ensureRowHeightsValid(startPixel, endPixel, startLimitIndex, endLimitIndex) {\n return false;\n }\n init() {\n this.rowHeight = this.gos.getRowHeightAsNumber();\n this.addManagedListener(this.eventService, Events40.EVENT_VIEWPORT_CHANGED, this.onViewportChanged.bind(this));\n this.addManagedPropertyListener(\"viewportDatasource\", () => this.updateDatasource());\n this.addManagedPropertyListener(\"rowHeight\", () => {\n this.rowHeight = this.gos.getRowHeightAsNumber();\n this.updateRowHeights();\n });\n }\n start() {\n this.updateDatasource();\n }\n isLastRowIndexKnown() {\n return true;\n }\n destroyDatasource() {\n if (!this.viewportDatasource) {\n return;\n }\n if (this.viewportDatasource.destroy) {\n this.viewportDatasource.destroy();\n }\n this.rowRenderer.datasourceChanged();\n this.firstRow = -1;\n this.lastRow = -1;\n }\n updateDatasource() {\n const datasource = this.gos.get(\"viewportDatasource\");\n if (datasource) {\n this.setViewportDatasource(datasource);\n }\n }\n getViewportRowModelPageSize() {\n return this.gos.get(\"viewportRowModelPageSize\");\n }\n getViewportRowModelBufferSize() {\n return this.gos.get(\"viewportRowModelBufferSize\");\n }\n calculateFirstRow(firstRenderedRow) {\n const bufferSize = this.getViewportRowModelBufferSize();\n const pageSize = this.getViewportRowModelPageSize();\n const afterBuffer = firstRenderedRow - bufferSize;\n if (afterBuffer < 0) {\n return 0;\n }\n return Math.floor(afterBuffer / pageSize) * pageSize;\n }\n calculateLastRow(lastRenderedRow) {\n if (lastRenderedRow === -1) {\n return lastRenderedRow;\n }\n const bufferSize = this.getViewportRowModelBufferSize();\n const pageSize = this.getViewportRowModelPageSize();\n const afterBuffer = lastRenderedRow + bufferSize;\n const result = Math.ceil(afterBuffer / pageSize) * pageSize;\n const lastRowIndex = this.rowCount - 1;\n return Math.min(result, lastRowIndex);\n }\n onViewportChanged(event) {\n const newFirst = this.calculateFirstRow(event.firstRow);\n const newLast = this.calculateLastRow(event.lastRow);\n if (this.firstRow !== newFirst || this.lastRow !== newLast) {\n this.firstRow = newFirst;\n this.lastRow = newLast;\n this.purgeRowsNotInViewport();\n if (this.viewportDatasource) {\n this.viewportDatasource.setViewportRange(this.firstRow, this.lastRow);\n }\n }\n }\n purgeRowsNotInViewport() {\n Object.keys(this.rowNodesByIndex).forEach((indexStr) => {\n const index = parseInt(indexStr, 10);\n if (index < this.firstRow || index > this.lastRow) {\n if (this.isRowFocused(index)) {\n return;\n }\n delete this.rowNodesByIndex[index];\n }\n });\n }\n isRowFocused(rowIndex) {\n const focusedCell = this.focusService.getFocusCellToUseAfterRefresh();\n if (!focusedCell) {\n return false;\n }\n if (focusedCell.rowPinned != null) {\n return false;\n }\n const hasFocus = focusedCell.rowIndex === rowIndex;\n return hasFocus;\n }\n setViewportDatasource(viewportDatasource) {\n this.destroyDatasource();\n this.viewportDatasource = viewportDatasource;\n this.rowCount = -1;\n if (!viewportDatasource.init) {\n console.warn(\"AG Grid: viewport is missing init method.\");\n } else {\n viewportDatasource.init({\n setRowCount: this.setRowCount.bind(this),\n setRowData: this.setRowData.bind(this),\n getRow: this.getRow.bind(this)\n });\n }\n }\n getType() {\n return \"viewport\";\n }\n getRow(rowIndex) {\n if (!this.rowNodesByIndex[rowIndex]) {\n this.rowNodesByIndex[rowIndex] = this.createBlankRowNode(rowIndex);\n }\n return this.rowNodesByIndex[rowIndex];\n }\n getRowNode(id) {\n let result;\n this.forEachNode((rowNode) => {\n if (rowNode.id === id) {\n result = rowNode;\n }\n });\n return result;\n }\n getRowCount() {\n return this.rowCount === -1 ? 0 : this.rowCount;\n }\n getRowIndexAtPixel(pixel) {\n if (this.rowHeight !== 0) {\n return Math.floor(pixel / this.rowHeight);\n }\n return 0;\n }\n getRowBounds(index) {\n return {\n rowHeight: this.rowHeight,\n rowTop: this.rowHeight * index\n };\n }\n updateRowHeights() {\n this.forEachNode((node) => {\n node.setRowHeight(this.rowHeight);\n node.setRowTop(this.rowHeight * node.rowIndex);\n });\n const event = {\n type: Events40.EVENT_MODEL_UPDATED,\n newData: false,\n newPage: false,\n keepRenderedRows: true,\n animate: false\n };\n this.eventService.dispatchEvent(event);\n }\n getTopLevelRowCount() {\n return this.getRowCount();\n }\n getTopLevelRowDisplayedIndex(topLevelIndex) {\n return topLevelIndex;\n }\n isEmpty() {\n return this.rowCount > 0;\n }\n isRowsToRender() {\n return this.rowCount > 0;\n }\n getNodesInRangeForSelection(firstInRange, lastInRange) {\n const firstIndex = _75.missing(firstInRange) ? 0 : firstInRange.rowIndex;\n const lastIndex = lastInRange.rowIndex;\n const firstNodeOutOfRange = firstIndex < this.firstRow || firstIndex > this.lastRow;\n const lastNodeOutOfRange = lastIndex < this.firstRow || lastIndex > this.lastRow;\n if (firstNodeOutOfRange || lastNodeOutOfRange) {\n return [];\n }\n const result = [];\n const startIndex = firstIndex <= lastIndex ? firstIndex : lastIndex;\n const endIndex = firstIndex <= lastIndex ? lastIndex : firstIndex;\n for (let i = startIndex; i <= endIndex; i++) {\n result.push(this.rowNodesByIndex[i]);\n }\n return result;\n }\n forEachNode(callback) {\n let callbackCount = 0;\n Object.keys(this.rowNodesByIndex).forEach((indexStr) => {\n const index = parseInt(indexStr, 10);\n const rowNode = this.rowNodesByIndex[index];\n callback(rowNode, callbackCount);\n callbackCount++;\n });\n }\n setRowData(rowData) {\n _75.iterateObject(rowData, (indexStr, dataItem) => {\n const index = parseInt(indexStr, 10);\n if (index >= this.firstRow && index <= this.lastRow) {\n let rowNode = this.rowNodesByIndex[index];\n if (_75.missing(rowNode)) {\n rowNode = this.createBlankRowNode(index);\n this.rowNodesByIndex[index] = rowNode;\n }\n rowNode.setDataAndId(dataItem, index.toString());\n }\n });\n }\n createBlankRowNode(rowIndex) {\n const rowNode = new RowNode(this.beans);\n rowNode.setRowHeight(this.rowHeight);\n rowNode.setRowTop(this.rowHeight * rowIndex);\n rowNode.setRowIndex(rowIndex);\n return rowNode;\n }\n setRowCount(rowCount, keepRenderedRows = false) {\n if (rowCount === this.rowCount) {\n return;\n }\n this.rowCount = rowCount;\n this.eventService.dispatchEventOnce({\n type: Events40.EVENT_ROW_COUNT_READY\n });\n const event = {\n type: Events40.EVENT_MODEL_UPDATED,\n newData: false,\n newPage: false,\n keepRenderedRows,\n animate: false\n };\n this.eventService.dispatchEvent(event);\n }\n isRowPresent(rowNode) {\n const foundRowNode = this.getRowNode(rowNode.id);\n return !!foundRowNode;\n }\n};\n__decorateClass17([\n Autowired80(\"rowRenderer\")\n], ViewportRowModel.prototype, \"rowRenderer\", 2);\n__decorateClass17([\n Autowired80(\"focusService\")\n], ViewportRowModel.prototype, \"focusService\", 2);\n__decorateClass17([\n Autowired80(\"beans\")\n], ViewportRowModel.prototype, \"beans\", 2);\n__decorateClass17([\n PostConstruct76\n], ViewportRowModel.prototype, \"init\", 1);\n__decorateClass17([\n PreDestroy8\n], ViewportRowModel.prototype, \"destroyDatasource\", 1);\nViewportRowModel = __decorateClass17([\n Bean17(\"rowModel\")\n], ViewportRowModel);\nvar ViewportRowModelModule = {\n version: VERSION19,\n moduleName: ModuleNames19.ViewportRowModelModule,\n rowModel: \"viewport\",\n beans: [ViewportRowModel],\n dependantModules: [\n EnterpriseCoreModule\n ]\n};\n\n// packages/ag-grid-enterprise/src/main.ts\n__reExport(main_exports, main_esm_exports);\nimport { ALWAYS_SYNC_GLOBAL_EVENTS } from \"ag-grid-community\";\nimport { AbstractHeaderCellCtrl } from \"ag-grid-community\";\nimport { AgAbstractField } from \"ag-grid-community\";\nimport { AgAbstractLabel as AgAbstractLabel2 } from \"ag-grid-community\";\nimport { AgAutocomplete as AgAutocomplete2 } from \"ag-grid-community\";\nimport { AgCheckbox } from \"ag-grid-community\";\nimport { AgDialog as AgDialog5 } from \"ag-grid-community\";\nimport { AgGroupComponent as AgGroupComponent6 } from \"ag-grid-community\";\nimport { AgInputDateField as AgInputDateField2 } from \"ag-grid-community\";\nimport { AgInputNumberField as AgInputNumberField2 } from \"ag-grid-community\";\nimport { AgInputRange } from \"ag-grid-community\";\nimport { AgInputTextArea } from \"ag-grid-community\";\nimport { AgInputTextField as AgInputTextField3 } from \"ag-grid-community\";\nimport { AgMenuItemComponent as AgMenuItemComponent5 } from \"ag-grid-community\";\nimport { AgMenuItemRenderer as AgMenuItemRenderer2 } from \"ag-grid-community\";\nimport { AgMenuList as AgMenuList4 } from \"ag-grid-community\";\nimport { AgMenuPanel } from \"ag-grid-community\";\nimport { AgPanel as AgPanel2 } from \"ag-grid-community\";\nimport { AgPickerField as AgPickerField2 } from \"ag-grid-community\";\nimport { AgPromise as AgPromise8 } from \"ag-grid-community\";\nimport { AgPromiseStatus } from \"ag-grid-community\";\nimport { AgRadioButton } from \"ag-grid-community\";\nimport { AgRichSelect as AgRichSelect4 } from \"ag-grid-community\";\nimport { AgSelect as AgSelect9 } from \"ag-grid-community\";\nimport { AgSlider as AgSlider3 } from \"ag-grid-community\";\nimport { AgStackComponentsRegistry } from \"ag-grid-community\";\nimport { AgToggleButton as AgToggleButton5 } from \"ag-grid-community\";\nimport { AlignedGridsService } from \"ag-grid-community\";\nimport { AnimateShowChangeCellRenderer } from \"ag-grid-community\";\nimport { AnimateSlideCellRenderer } from \"ag-grid-community\";\nimport { AnimationFrameService } from \"ag-grid-community\";\nimport { AutoScrollService as AutoScrollService2 } from \"ag-grid-community\";\nimport { AutoWidthCalculator } from \"ag-grid-community\";\nimport { Autowired as Autowired81 } from \"ag-grid-community\";\nimport { BarColumnLabelPlacement } from \"ag-grid-community\";\nimport { BaseComponentWrapper } from \"ag-grid-community\";\nimport { Bean as Bean18 } from \"ag-grid-community\";\nimport { BeanStub as BeanStub36 } from \"ag-grid-community\";\nimport { Beans } from \"ag-grid-community\";\nimport { BodyDropPivotTarget } from \"ag-grid-community\";\nimport { BodyDropTarget } from \"ag-grid-community\";\nimport { CellComp } from \"ag-grid-community\";\nimport { CellCtrl as CellCtrl2 } from \"ag-grid-community\";\nimport { CellNavigationService as CellNavigationService2 } from \"ag-grid-community\";\nimport { CellPositionUtils as CellPositionUtils2 } from \"ag-grid-community\";\nimport { CellRangeType as CellRangeType3 } from \"ag-grid-community\";\nimport { ChangedPath as ChangedPath2 } from \"ag-grid-community\";\nimport { ChartMappings as ChartMappings3 } from \"ag-grid-community\";\nimport { CheckboxCellEditor } from \"ag-grid-community\";\nimport { CheckboxCellRenderer } from \"ag-grid-community\";\nimport { CheckboxSelectionComponent } from \"ag-grid-community\";\nimport { ClientSideRowModelSteps } from \"ag-grid-community\";\nimport { Column } from \"ag-grid-community\";\nimport { ColumnApi } from \"ag-grid-community\";\nimport { ColumnFactory } from \"ag-grid-community\";\nimport { ColumnGroup } from \"ag-grid-community\";\nimport { ColumnKeyCreator } from \"ag-grid-community\";\nimport { ColumnModel } from \"ag-grid-community\";\nimport { Component as Component64 } from \"ag-grid-community\";\nimport { ComponentUtil } from \"ag-grid-community\";\nimport { Context } from \"ag-grid-community\";\nimport { CssClassApplier as CssClassApplier4 } from \"ag-grid-community\";\nimport { CssClassManager } from \"ag-grid-community\";\nimport { CtrlsService } from \"ag-grid-community\";\nimport { DataTypeService } from \"ag-grid-community\";\nimport { DateCellEditor } from \"ag-grid-community\";\nimport { DateFilter } from \"ag-grid-community\";\nimport { DateStringCellEditor } from \"ag-grid-community\";\nimport { DisplayedGroupCreator } from \"ag-grid-community\";\nimport { DragAndDropService as DragAndDropService7 } from \"ag-grid-community\";\nimport { DragService } from \"ag-grid-community\";\nimport { DragSourceType as DragSourceType6 } from \"ag-grid-community\";\nimport { Environment } from \"ag-grid-community\";\nimport { EventService as EventService3 } from \"ag-grid-community\";\nimport { Events as Events41 } from \"ag-grid-community\";\nimport { ExcelFactoryMode as ExcelFactoryMode2 } from \"ag-grid-community\";\nimport { ExpansionService as ExpansionService2 } from \"ag-grid-community\";\nimport { ExpressionService } from \"ag-grid-community\";\nimport { FilterManager } from \"ag-grid-community\";\nimport { FilterWrapperComp as FilterWrapperComp4 } from \"ag-grid-community\";\nimport { FloatingFilterMapper } from \"ag-grid-community\";\nimport { FocusService } from \"ag-grid-community\";\nimport { GROUP_AUTO_COLUMN_ID as GROUP_AUTO_COLUMN_ID3 } from \"ag-grid-community\";\nimport { Grid } from \"ag-grid-community\";\nimport { GridApi as GridApi2 } from \"ag-grid-community\";\nimport { GridBodyComp } from \"ag-grid-community\";\nimport { GridBodyCtrl } from \"ag-grid-community\";\nimport { GridComp } from \"ag-grid-community\";\nimport { GridCoreCreator } from \"ag-grid-community\";\nimport { GridCtrl } from \"ag-grid-community\";\nimport { GridHeaderComp } from \"ag-grid-community\";\nimport { GridHeaderCtrl } from \"ag-grid-community\";\nimport { GridOptionsService } from \"ag-grid-community\";\nimport { GroupCellRenderer } from \"ag-grid-community\";\nimport { GroupCellRendererCtrl } from \"ag-grid-community\";\nimport { GroupInstanceIdCreator } from \"ag-grid-community\";\nimport { HeaderCellCtrl } from \"ag-grid-community\";\nimport { HeaderFilterCellComp } from \"ag-grid-community\";\nimport { HeaderFilterCellCtrl } from \"ag-grid-community\";\nimport { HeaderGroupCellCtrl } from \"ag-grid-community\";\nimport { HeaderNavigationDirection } from \"ag-grid-community\";\nimport { HeaderNavigationService } from \"ag-grid-community\";\nimport { HeaderPositionUtils } from \"ag-grid-community\";\nimport { HeaderRowComp } from \"ag-grid-community\";\nimport { HeaderRowContainerComp } from \"ag-grid-community\";\nimport { HeaderRowContainerCtrl } from \"ag-grid-community\";\nimport { HeaderRowCtrl } from \"ag-grid-community\";\nimport { HeaderRowType } from \"ag-grid-community\";\nimport { HorizontalDirection } from \"ag-grid-community\";\nimport { HorizontalResizeService } from \"ag-grid-community\";\nimport { KeyCode as KeyCode12 } from \"ag-grid-community\";\nimport { LargeTextCellEditor } from \"ag-grid-community\";\nimport { LayoutCssClasses } from \"ag-grid-community\";\nimport { LocaleService } from \"ag-grid-community\";\nimport { Logger } from \"ag-grid-community\";\nimport { LoggerFactory } from \"ag-grid-community\";\nimport { ManagedFocusFeature as ManagedFocusFeature2 } from \"ag-grid-community\";\nimport { MenuService } from \"ag-grid-community\";\nimport { ModuleNames as ModuleNames20 } from \"ag-grid-community\";\nimport { ModuleRegistry as ModuleRegistry8 } from \"ag-grid-community\";\nimport { MouseEventService } from \"ag-grid-community\";\nimport { MoveColumnFeature } from \"ag-grid-community\";\nimport { NavigationService } from \"ag-grid-community\";\nimport { NumberCellEditor } from \"ag-grid-community\";\nimport { NumberFilter } from \"ag-grid-community\";\nimport { NumberSequence as NumberSequence2 } from \"ag-grid-community\";\nimport { Optional as Optional8 } from \"ag-grid-community\";\nimport { PaginationProxy } from \"ag-grid-community\";\nimport { PillDragComp as PillDragComp3 } from \"ag-grid-community\";\nimport { PillDropZonePanel as PillDropZonePanel3 } from \"ag-grid-community\";\nimport { PinnedRowModel } from \"ag-grid-community\";\nimport { PopupComponent as PopupComponent2 } from \"ag-grid-community\";\nimport { PopupEditorWrapper } from \"ag-grid-community\";\nimport { PopupService } from \"ag-grid-community\";\nimport { PositionableFeature as PositionableFeature2 } from \"ag-grid-community\";\nimport { PostConstruct as PostConstruct77 } from \"ag-grid-community\";\nimport { PreConstruct as PreConstruct4 } from \"ag-grid-community\";\nimport { PreDestroy as PreDestroy9 } from \"ag-grid-community\";\nimport { PropertyKeys } from \"ag-grid-community\";\nimport { ProvidedColumnGroup as ProvidedColumnGroup6 } from \"ag-grid-community\";\nimport { ProvidedFilter as ProvidedFilter3 } from \"ag-grid-community\";\nimport { Qualifier } from \"ag-grid-community\";\nimport { QuerySelector } from \"ag-grid-community\";\nimport { RefSelector as RefSelector38 } from \"ag-grid-community\";\nimport { ResizeObserverService } from \"ag-grid-community\";\nimport { RowAnimationCssClasses } from \"ag-grid-community\";\nimport { RowContainerComp } from \"ag-grid-community\";\nimport { RowContainerCtrl } from \"ag-grid-community\";\nimport { RowContainerName } from \"ag-grid-community\";\nimport { RowContainerType } from \"ag-grid-community\";\nimport { RowCtrl } from \"ag-grid-community\";\nimport { RowHighlightPosition } from \"ag-grid-community\";\nimport { RowNode as RowNode3 } from \"ag-grid-community\";\nimport { RowNodeBlock as RowNodeBlock2 } from \"ag-grid-community\";\nimport { RowNodeBlockLoader } from \"ag-grid-community\";\nimport { RowNodeSorter } from \"ag-grid-community\";\nimport { RowPositionUtils as RowPositionUtils2 } from \"ag-grid-community\";\nimport { RowRenderer } from \"ag-grid-community\";\nimport { ScalarFilter } from \"ag-grid-community\";\nimport { ScrollVisibleService } from \"ag-grid-community\";\nimport { SelectCellEditor } from \"ag-grid-community\";\nimport { SelectableService } from \"ag-grid-community\";\nimport { SelectionHandleType as SelectionHandleType5 } from \"ag-grid-community\";\nimport { ServerSideTransactionResultStatus as ServerSideTransactionResultStatus4 } from \"ag-grid-community\";\nimport { SetLeftFeature } from \"ag-grid-community\";\nimport { SimpleFilter } from \"ag-grid-community\";\nimport { SortController } from \"ag-grid-community\";\nimport { SortIndicatorComp } from \"ag-grid-community\";\nimport { StandardMenuFactory } from \"ag-grid-community\";\nimport { StylingService } from \"ag-grid-community\";\nimport { TabGuardClassNames } from \"ag-grid-community\";\nimport { TabGuardComp as TabGuardComp5 } from \"ag-grid-community\";\nimport { TabGuardCtrl } from \"ag-grid-community\";\nimport { TabbedLayout as TabbedLayout3 } from \"ag-grid-community\";\nimport { TextCellEditor } from \"ag-grid-community\";\nimport { TextFilter as TextFilter2 } from \"ag-grid-community\";\nimport { TextFloatingFilter } from \"ag-grid-community\";\nimport { Timer } from \"ag-grid-community\";\nimport { TooltipFeature as TooltipFeature4 } from \"ag-grid-community\";\nimport { TooltipStateManager } from \"ag-grid-community\";\nimport { TouchListener as TouchListener2 } from \"ag-grid-community\";\nimport { UserComponentFactory as UserComponentFactory2 } from \"ag-grid-community\";\nimport { UserComponentRegistry } from \"ag-grid-community\";\nimport { ValueCache } from \"ag-grid-community\";\nimport { ValueService as ValueService2 } from \"ag-grid-community\";\nimport { VanillaFrameworkOverrides } from \"ag-grid-community\";\nimport { VerticalDirection } from \"ag-grid-community\";\nimport { VirtualList as VirtualList5 } from \"ag-grid-community\";\nimport { VirtualListDragFeature as VirtualListDragFeature3 } from \"ag-grid-community\";\nimport { _ as _76 } from \"ag-grid-community\";\nimport { createGrid as createGrid2 } from \"ag-grid-community\";\nimport { getRowContainerTypeForName } from \"ag-grid-community\";\nimport { provideGlobalGridOptions } from \"ag-grid-community\";\nModuleRegistry7.__registerModules([\n ClientSideRowModelModule,\n InfiniteRowModelModule,\n CsvExportModule3,\n AdvancedFilterModule,\n GridChartsModule,\n ClipboardModule,\n ColumnsToolPanelModule,\n ExcelExportModule,\n FiltersToolPanelModule,\n MasterDetailModule,\n MenuModule,\n MultiFilterModule,\n RangeSelectionModule,\n RichSelectModule,\n RowGroupingModule,\n ServerSideRowModelModule,\n SetFilterModule,\n SideBarModule,\n SparklinesModule,\n StatusBarModule,\n ViewportRowModelModule\n], false, void 0);\nexport {\n ALWAYS_SYNC_GLOBAL_EVENTS,\n AbstractHeaderCellCtrl,\n AdvancedFilterModule,\n AgAbstractField,\n AgAbstractLabel2 as AgAbstractLabel,\n AgAutocomplete2 as AgAutocomplete,\n AgCheckbox,\n AgDialog5 as AgDialog,\n AgGroupComponent6 as AgGroupComponent,\n AgInputDateField2 as AgInputDateField,\n AgInputNumberField2 as AgInputNumberField,\n AgInputRange,\n AgInputTextArea,\n AgInputTextField3 as AgInputTextField,\n AgMenuItemComponent5 as AgMenuItemComponent,\n AgMenuItemRenderer2 as AgMenuItemRenderer,\n AgMenuList4 as AgMenuList,\n AgMenuPanel,\n AgPanel2 as AgPanel,\n AgPickerField2 as AgPickerField,\n AgPromise8 as AgPromise,\n AgPromiseStatus,\n AgRadioButton,\n AgRichSelect4 as AgRichSelect,\n AgSelect9 as AgSelect,\n AgSlider3 as AgSlider,\n AgStackComponentsRegistry,\n AgToggleButton5 as AgToggleButton,\n AlignedGridsService,\n AnimateShowChangeCellRenderer,\n AnimateSlideCellRenderer,\n AnimationFrameService,\n AutoScrollService2 as AutoScrollService,\n AutoWidthCalculator,\n Autowired81 as Autowired,\n BarColumnLabelPlacement,\n BaseComponentWrapper,\n Bean18 as Bean,\n BeanStub36 as BeanStub,\n Beans,\n BodyDropPivotTarget,\n BodyDropTarget,\n CellComp,\n CellCtrl2 as CellCtrl,\n CellNavigationService2 as CellNavigationService,\n CellPositionUtils2 as CellPositionUtils,\n CellRangeType3 as CellRangeType,\n ChangedPath2 as ChangedPath,\n ChartMappings3 as ChartMappings,\n CheckboxCellEditor,\n CheckboxCellRenderer,\n CheckboxSelectionComponent,\n ClientSideRowModelSteps,\n ClipboardModule,\n Column,\n ColumnApi,\n ColumnFactory,\n ColumnGroup,\n ColumnKeyCreator,\n ColumnModel,\n ColumnsToolPanelModule,\n Component64 as Component,\n ComponentUtil,\n Context,\n CssClassApplier4 as CssClassApplier,\n CssClassManager,\n CtrlsService,\n DataTypeService,\n DateCellEditor,\n DateFilter,\n DateStringCellEditor,\n DisplayedGroupCreator,\n DragAndDropService7 as DragAndDropService,\n DragService,\n DragSourceType6 as DragSourceType,\n EnterpriseCoreModule,\n Environment,\n EventService3 as EventService,\n Events41 as Events,\n ExcelExportModule,\n ExcelFactoryMode2 as ExcelFactoryMode,\n ExpansionService2 as ExpansionService,\n ExpressionService,\n FilterManager,\n FilterWrapperComp4 as FilterWrapperComp,\n FiltersToolPanelModule,\n FloatingFilterMapper,\n FocusService,\n GROUP_AUTO_COLUMN_ID3 as GROUP_AUTO_COLUMN_ID,\n Grid,\n GridApi2 as GridApi,\n GridBodyComp,\n GridBodyCtrl,\n GridChartsModule,\n GridComp,\n GridCoreCreator,\n GridCtrl,\n GridHeaderComp,\n GridHeaderCtrl,\n GridOptionsService,\n GroupCellRenderer,\n GroupCellRendererCtrl,\n GroupInstanceIdCreator,\n HeaderCellCtrl,\n HeaderFilterCellComp,\n HeaderFilterCellCtrl,\n HeaderGroupCellCtrl,\n HeaderNavigationDirection,\n HeaderNavigationService,\n HeaderPositionUtils,\n HeaderRowComp,\n HeaderRowContainerComp,\n HeaderRowContainerCtrl,\n HeaderRowCtrl,\n HeaderRowType,\n HorizontalDirection,\n HorizontalResizeService,\n KeyCode12 as KeyCode,\n LargeTextCellEditor,\n LayoutCssClasses,\n GridLicenseManager as LicenseManager,\n LocaleService,\n Logger,\n LoggerFactory,\n ManagedFocusFeature2 as ManagedFocusFeature,\n MasterDetailModule,\n MenuModule,\n MenuService,\n ModuleNames20 as ModuleNames,\n ModuleRegistry8 as ModuleRegistry,\n MouseEventService,\n MoveColumnFeature,\n MultiFilter,\n MultiFilterModule,\n NavigationService,\n NumberCellEditor,\n NumberFilter,\n NumberSequence2 as NumberSequence,\n Optional8 as Optional,\n PaginationProxy,\n PillDragComp3 as PillDragComp,\n PillDropZonePanel3 as PillDropZonePanel,\n PinnedRowModel,\n PivotDropZonePanel,\n PopupComponent2 as PopupComponent,\n PopupEditorWrapper,\n PopupService,\n PositionableFeature2 as PositionableFeature,\n PostConstruct77 as PostConstruct,\n PreConstruct4 as PreConstruct,\n PreDestroy9 as PreDestroy,\n PrimaryColsPanel,\n PropertyKeys,\n ProvidedColumnGroup6 as ProvidedColumnGroup,\n ProvidedFilter3 as ProvidedFilter,\n Qualifier,\n QuerySelector,\n RangeSelectionModule,\n RefSelector38 as RefSelector,\n ResizeObserverService,\n RichSelectModule,\n RowAnimationCssClasses,\n RowContainerComp,\n RowContainerCtrl,\n RowContainerName,\n RowContainerType,\n RowCtrl,\n RowGroupDropZonePanel,\n RowGroupingModule,\n RowHighlightPosition,\n RowNode3 as RowNode,\n RowNodeBlock2 as RowNodeBlock,\n RowNodeBlockLoader,\n RowNodeSorter,\n RowPositionUtils2 as RowPositionUtils,\n RowRenderer,\n ScalarFilter,\n ScrollVisibleService,\n SelectCellEditor,\n SelectableService,\n SelectionHandleType5 as SelectionHandleType,\n ServerSideRowModelModule,\n ServerSideTransactionResultStatus4 as ServerSideTransactionResultStatus,\n SetFilter,\n SetFilterModule,\n SetLeftFeature,\n SideBarModule,\n SimpleFilter,\n SortController,\n SortIndicatorComp,\n SparklinesModule,\n StandardMenuFactory,\n StatusBarModule,\n StylingService,\n TabGuardClassNames,\n TabGuardComp5 as TabGuardComp,\n TabGuardCtrl,\n TabbedLayout3 as TabbedLayout,\n TextCellEditor,\n TextFilter2 as TextFilter,\n TextFloatingFilter,\n Timer,\n ToolPanelColDefService,\n TooltipFeature4 as TooltipFeature,\n TooltipStateManager,\n TouchListener2 as TouchListener,\n UserComponentFactory2 as UserComponentFactory,\n UserComponentRegistry,\n ValueCache,\n ValueService2 as ValueService,\n ValuesDropZonePanel,\n VanillaFrameworkOverrides,\n VerticalDirection,\n ViewportRowModelModule,\n VirtualList5 as VirtualList,\n VirtualListDragFeature3 as VirtualListDragFeature,\n _76 as _,\n __FORCE_MODULE_DETECTION_AG_GRID_CORE_EXT,\n agCharts,\n createGrid2 as createGrid,\n exportMultipleSheetsAsExcel,\n getMultipleSheetsAsExcel,\n getRowContainerTypeForName,\n provideGlobalGridOptions\n};\n"],"names":[],"sourceRoot":""}