mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-08 17:24:01 -05:00
Adding arialive to flex and div container (#19757)
* Adding arialive to flex and div container * Fixing compilation issues * Moving ariaLive to container properties * fixes Co-authored-by: Charles Gagnon <chgagnon@microsoft.com>
This commit is contained in:
14
src/sql/azdata.proposed.d.ts
vendored
14
src/sql/azdata.proposed.d.ts
vendored
@@ -1526,6 +1526,20 @@ declare module 'azdata' {
|
||||
link: LinkArea;
|
||||
}
|
||||
|
||||
export interface ContainerBuilder<TComponent extends Component, TLayout, TItemLayout, TPropertyBag extends ContainerProperties> extends ComponentBuilder<TComponent, TPropertyBag> {
|
||||
/**
|
||||
* Sets the initial set of properties for the container being created
|
||||
* @param properties The properties to apply to the container
|
||||
*/
|
||||
withProps(properties: TPropertyBag): ContainerBuilder<TComponent, TLayout, TItemLayout, TPropertyBag>;
|
||||
}
|
||||
|
||||
export interface ContainerProperties extends ComponentProperties {
|
||||
/**
|
||||
* Corresponds to the aria-live accessibility attribute for this component
|
||||
*/
|
||||
ariaLive?: string;
|
||||
}
|
||||
export namespace queryeditor {
|
||||
|
||||
export interface IQueryMessage {
|
||||
|
||||
Reference in New Issue
Block a user