UNPKG

ember-sortable

Version:
23 lines (22 loc) 721 B
import type { TDirection } from '../modifiers/sortable-group.ts'; export interface A11yAnnouncementConfig { ACTIVATE: ({ a11yItemName, index, maxLength, direction, }: { a11yItemName: string; index: number; maxLength: number; direction: TDirection; }) => string; MOVE: ({ a11yItemName, index, maxLength, delta, }: { a11yItemName: string; index: number; maxLength: number; delta: number; }) => string; CONFIRM: ({ a11yItemName }: { a11yItemName: string; }) => string; CANCEL: ({ a11yItemName }: { a11yItemName: string; }) => string; } export declare const defaultA11yAnnouncementConfig: A11yAnnouncementConfig;