aimpress-chatbot/node_modules/botframework-schema/lib/sharepoint/actions/focusParameters.d.ts
“SamoilenkoVadym” 55445dbc86
Some checks failed
Build and deploy Node.js app to Azure Web App - ChatBot2222 / build (push) Has been cancelled
Build and deploy Node.js app to Azure Web App - ChatBot2222 / deploy (push) Has been cancelled
Deploy bot to Azure
2025-04-27 19:55:19 +01:00

18 lines
No EOL
906 B
TypeScript

/**
* Interface to give third party developers the capability to determine which element should recieve focus, when, and how often content should be read.
*/
export interface FocusParameters {
/**
* Sets the default focus on the DOM. Developers pass in the id of a unique element that is to attain focus within a quick view.
* If the `focusTarget` is not defined then the root element is selected.
*/
focusTarget?: string;
/**
* Sets the accessibility reading of the contents within the focus target.
* Polite - Content in the target's subtree is read when the user is idle.
* Assertive - Disrupts any announcement in favor of the changed contents within the target's subtree.
* Off - The screen reader will not read contents within the target's subtree.
*/
ariaLive?: 'polite' | 'assertive' | 'off';
}
//# sourceMappingURL=focusParameters.d.ts.map