@znuny/ckeditor5-autocomplete-plugin
Version:
A plugin for CKEditor 5 that provides an extendable autocomplete functionality with predefined mention and HTML replacement logic.
18 lines (17 loc) • 753 B
JavaScript
/**
* @copyright Copyright (c) 2024, Znuny GmbH.
*
* @license GNU GPL version 3
*
* This software comes with ABSOLUTELY NO WARRANTY. For details, see
* the enclosed file COPYING for license information (GPL). If you
* did not receive this file, see https://www.gnu.org/licenses/gpl-3.0.txt.
*/
export var InputMatchingStrategy;
(function (InputMatchingStrategy) {
InputMatchingStrategy["NAME_STARTS_WITH"] = "nameStartsWith";
InputMatchingStrategy["NAME_INCLUDES"] = "nameIncludes";
InputMatchingStrategy["CONTENT_STARTS_WITH"] = "contentStartsWith";
InputMatchingStrategy["CONTENT_INCLUDES"] = "contentIncludes";
InputMatchingStrategy["EVERYTHING"] = "everything";
})(InputMatchingStrategy || (InputMatchingStrategy = {}));