0\" class=\"search-overlay\">
`;\n// Exports\nexport default code;","import { Router } from 'aurelia-router';\r\nimport { FilterSelector, FilterSelectorDto } from './../selector/filter-selector';\r\nimport { FilterSelectorSimple } from './../selector/simple/filter-selector-simple';\r\nimport { autoinject, bindable } from 'aurelia-framework';\r\nimport { ModalService } from 'app/services/modal-service';\r\nimport { ObjectListManager, ObjectListValues } from 'app/services/object-list/object-list-manager';\r\n\r\n@autoinject\r\nexport class FilterResult {\r\n @bindable public objects: ObjectListManager | undefined;\r\n constructor(private modal: ModalService, private router: Router) {\r\n }\r\n\r\n public selectList(type: string){\r\n if (type === this.objects?.mode) return;\r\n switch (type) {\r\n case ObjectListValues.treeGrid: this.objects?.showAsTreeGrid(); break;\r\n\t\t\tcase ObjectListValues.grid: this.objects?.showAsListGrid('FR.selectList'); break;\r\n case ObjectListValues.deck: this.objects?.showAsDeck(); break;\r\n }\r\n }\r\n\r\n async openFilterSelector() : Promise