aimpress-chatbot/node_modules/botframework-schema/lib/sharepoint/propertyPaneDropDownProperties.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

40 lines
No EOL
1.3 KiB
TypeScript

import { PropertyPaneFieldProperties } from './propertyPaneFieldProperties';
import { PropertyPaneDropDownOption } from './propertyPaneDropDownOption';
/**
* SharePoint property pane dropdown field properties.
*/
export interface PropertyPaneDropDownProperties extends PropertyPaneFieldProperties {
/**
* Optional ariaLabel flag. Text for screen-reader to announce regardless of toggle state.
*/
ariaLabel?: string;
/**
* The elemement's number or position in the current set of controls. Maps to native aria-positionset attribute. It starts from 1.
*/
ariaPositionInSet?: number;
/**
* The total number of elements in the current set of controls. Maps to native aria-setsize attribute.
*/
ariaSetSize?: number;
/**
* The label text to display next to the dropdown.
*/
label: string;
/**
* Indicates whether the dropdown is disabled or not.
*/
disabled?: boolean;
/**
* The error message to display when the dropdown value is invalid.
*/
errorMessage?: string;
/**
* The key of the selected dropdown option.
*/
selectedKey?: string;
/**
* The options for the dropdown.
*/
options?: PropertyPaneDropDownOption[];
}
//# sourceMappingURL=propertyPaneDropDownProperties.d.ts.map