@aurigma/design-atoms
Version:
Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.
15 lines • 697 B
JavaScript
/**
* Specifies values which specify when to display scroll bars at the control.
*/
export var ScrollBarsStyle;
(function (ScrollBarsStyle) {
/**
* Scroll bars are always displayed regardless of the control content dimensions. If control content is too small, scroll bars are disabled.
*/
ScrollBarsStyle[ScrollBarsStyle["always"] = 0] = "always";
/**
* Scroll bars are displayed when control content is too large to fit the control client area. When content is too small, scroll bars are hidden.
*/
ScrollBarsStyle[ScrollBarsStyle["auto"] = 1] = "auto";
})(ScrollBarsStyle || (ScrollBarsStyle = {}));
//# sourceMappingURL=ScrollBarsStyle.js.map