map.apps Bundle APIs 4.19.0

This is the documentation of the public API of the map.apps product bundles.

Samples like the following one, demonstrating the capability of the API, can be found in the bundles documentation.

import { InjectedReference } from "apprt-core/InjectedReference";
import { SearchUiService } from "search-ui/api";

/*
//manifest.json
...
"dependencies": {
"apprt-core": "~4.19.0"
"search-ui": "~4.19.0"
},
"components": [
{
"name": "MyComponent",
"references": [{
"name": "searchUiService",
"providing": "search-ui.SearchUiService"
}]
}
]
...
*/
private searchUiService: InjectedReference<SearchUiService>;
...
searchUiService!.reset({ searchText: "My search term" });