/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** @hidden */ export type TableSelectableMode = 'single' | 'multiple'; /** @hidden */ export interface TableSelectableSettings { /** * Determines if selection is allowed. * * @default true */ enabled?: boolean; /** * The available values are: * * `single` * * `multiple` * * @default "multiple" */ mode?: TableSelectableMode; /** * Determines if cell selection is allowed. * * @default false */ cell?: boolean; /** * Determines if drag selection is allowed. * * @default false */ drag?: boolean; }