@ckeditor/ckeditor5-find-and-replace
Version:
Find and replace feature for CKEditor 5.
18 lines (17 loc) • 873 B
JavaScript
/**
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
*/
/**
* @module find-and-replace
*/
export { default as FindAndReplace } from './findandreplace.js';
export { default as FindAndReplaceEditing } from './findandreplaceediting.js';
export { default as FindAndReplaceUI } from './findandreplaceui.js';
export { default as FindAndReplaceUtils } from './findandreplaceutils.js';
export { default as FindCommand } from './findcommand.js';
export { default as FindNextCommand } from './findnextcommand.js';
export { default as FindPreviousCommand } from './findpreviouscommand.js';
export { default as ReplaceCommand } from './replacecommand.js';
export { default as ReplaceAllCommand } from './replaceallcommand.js';
import './augmentation.js';