From 495e952f5ab8ab2ce68b95eb2d0065a0c9f6b06b Mon Sep 17 00:00:00 2001 From: "Harbarth, Lukas" Date: Tue, 19 May 2020 09:47:16 +0200 Subject: [PATCH] fix(AnalyticalTable): remove deprecated AnalyticalTableScrollMode smart --- packages/main/src/enums/AnalyticalTableScrollMode.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/main/src/enums/AnalyticalTableScrollMode.ts b/packages/main/src/enums/AnalyticalTableScrollMode.ts index 3cc9924e0ee..00bc239b42a 100644 --- a/packages/main/src/enums/AnalyticalTableScrollMode.ts +++ b/packages/main/src/enums/AnalyticalTableScrollMode.ts @@ -2,8 +2,6 @@ export enum AnalyticalTableScrollMode { // Scroll as little as possible to ensure the item is visible. (If the item is already visible, it won't scroll at all.) 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. - smart = 'smart', - // Center align the item within the list. center = 'center', // Align the item to the end of the list (the bottom for vertical lists or the right for horizontal lists). end = 'end',