-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(app): acknowledge animation when Flex receives a new protocol (#…
…13474) * Add schemaV7 definition for StatusBarAnimation control * When ODD detects a new protocol, run status bar Confirm animation * Update app/src/App/hooks.ts typo Co-authored-by: Jethary Rader <[email protected]> --------- Co-authored-by: Jethary Rader <[email protected]>
- Loading branch information
Showing
4 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import type { CommonCommandRunTimeInfo, CommonCommandCreateInfo } from '.' | ||
import type { StatusBarAnimation } from '../../../../js/types' | ||
|
||
export type IncidentalCreateCommand = SetStatusBarCreateCommand | ||
|
||
export type IncidentalRunTimeCommand = SetStatusBarRunTimeCommand | ||
|
||
export interface SetStatusBarCreateCommand extends CommonCommandCreateInfo { | ||
commandType: 'setStatusBar' | ||
params: SetStatusBarParams | ||
} | ||
|
||
export interface SetStatusBarRunTimeCommand | ||
extends CommonCommandRunTimeInfo, | ||
SetStatusBarCreateCommand { | ||
result?: any | ||
} | ||
|
||
interface SetStatusBarParams { | ||
animation: StatusBarAnimation | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters