I'd like to set the docking position (or maybe eventually it'll be called slot) for a search result popup. For any standard popup component, this can be done with the following code:
const popupComponent = document.querySelector("arcgis-popup");
popupComponent.dockOptions = {
buttonEnabled: true,
position: "bottom-right"
};Before components, setting the docking position would also apply toward search popups as well, but now it doesn't. How can I modify popup parameters on the search result popup, or even add a new action? Thank you.