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

39 lines
No EOL
965 B
TypeScript

import { PropertyPaneFieldProperties } from './propertyPaneFieldProperties';
/**
* SharePoint property pane slider field properties.
*/
export interface PropertyPaneSliderProperties extends PropertyPaneFieldProperties {
/**
* The label of the slider.
*/
label?: string;
/**
* The value of the slider.
*/
value?: string;
/**
* Optional ariaLabel flag. Text for screen-reader to announce regardless of toggle state.
*/
ariaLabel?: string;
/**
* Whether the slider is disabled or not.
*/
disabled?: boolean;
/**
* The maximum value of the slider.
*/
max: number;
/**
* The minimum value of the slider.
*/
min: number;
/**
* The step value of the slider.
*/
step?: number;
/**
* Whether to show the value on the right of the slider or no.
*/
showValue?: boolean;
}
//# sourceMappingURL=propertyPaneSliderProperties.d.ts.map