Add loading text properties for option sources (#13743)

* Add loading text to deployment radio options

* Fix loading race condition

* Update text
This commit is contained in:
Charles Gagnon
2020-12-09 18:32:05 -08:00
committed by GitHub
parent 147ee53e35
commit dc8788b77f
5 changed files with 21 additions and 4 deletions

View File

@@ -244,6 +244,8 @@ export type ComponentCSSStyles = {
export interface IOptionsSource {
provider?: IOptionsSourceProvider
loadingText?: string,
loadingCompletedText?: string,
readonly variableNames?: { [index: string]: string; };
readonly providerId: string;
}