/** * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options */ /** * @module special-characters/ui/specialcharactersview */ import { View, FocusCycler, type ViewCollection, type FocusableView } from '@ckeditor/ckeditor5-ui'; import { FocusTracker, KeystrokeHandler, type Locale } from '@ckeditor/ckeditor5-utils'; import { type CharacterGridView } from './charactergridview.js'; import { type CharacterInfoView } from './characterinfoview.js'; import { type SpecialCharactersCategoriesView } from './specialcharacterscategoriesview.js'; /** * A view that glues pieces of the special characters dropdown panel together: * * * the navigation view (allows selecting the category), * * the grid view (displays characters as a grid), * * and the info view (displays detailed info about a specific character). * * @internal */ export declare class SpecialCharactersView extends View { /** * A collection of the focusable children of the view. */ readonly items: ViewCollection; /** * Tracks information about the DOM focus in the view. */ readonly focusTracker: FocusTracker; /** * An instance of the {@link module:utils/keystrokehandler~KeystrokeHandler}. */ readonly keystrokes: KeystrokeHandler; /** * Helps cycling over focusable {@link #items} in the view. */ protected readonly _focusCycler: FocusCycler; /** * An instance of the `SpecialCharactersCategoriesView`. */ categoriesView: SpecialCharactersCategoriesView; /** * An instance of the `CharacterGridView`. */ gridView: CharacterGridView; /** * An instance of the `CharacterInfoView`. */ infoView: CharacterInfoView; /** * Creates an instance of the `SpecialCharactersView`. */ constructor(locale: Locale, categoriesView: SpecialCharactersCategoriesView, gridView: CharacterGridView, infoView: CharacterInfoView); /** * @inheritDoc */ render(): void; /** * @inheritDoc */ destroy(): void; /** * Focuses the first focusable in {@link #items}. */ focus(): void; }