UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

11 lines 903 B
export let AnalyticalTableScrollMode = /*#__PURE__*/function (AnalyticalTableScrollMode) { // Scroll as little as possible to ensure the item is visible. (If the item is already visible, it won't scroll at all.) AnalyticalTableScrollMode["auto"] = "auto"; // If the item is already visible, don't scroll at all. If it is less than one viewport away, scroll as little as possible so that it becomes visible. If it is more than one viewport away, scroll so that it is centered within the list. AnalyticalTableScrollMode["center"] = "center"; // Align the item to the end of the list (the bottom for vertical lists or the right for horizontal lists). AnalyticalTableScrollMode["end"] = "end"; // Align the item to the beginning of the list (the top for vertical lists or the left for horizontal lists) AnalyticalTableScrollMode["start"] = "start"; return AnalyticalTableScrollMode; }({});