/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Specifies a modifier key. * * The possible values are: * - `"none"`—Requires no modifier key. * - `"ctrl"`—Requires the `Ctrl` key. * - `"shift"`—Requires the `Shift` key. * - `"alt"`—Requires the `Alt` key. * * @example * ```ts * import { Component } from '@angular/core'; * import { DragAction } from '@progress/kendo-angular-charts'; * * _@Component({ * selector: 'my-app', * template: ` * * * * ` * }) * export class AppComponent { * public dragAction: DragAction = { key: 'shift' }; * } * ``` */ export type ModifierKey = 'none' | 'ctrl' | 'shift' | 'alt';