@ckeditor/ckeditor5-list
Version:
Ordered and unordered lists feature to CKEditor 5.
37 lines (36 loc) • 974 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 list/legacylist
*/
import LegacyListEditing from './legacylist/legacylistediting.js';
import ListUI from './list/listui.js';
import { Plugin } from 'ckeditor5/src/core.js';
/**
* The legacy list feature.
*
* This is a "glue" plugin that loads the {@link module:list/legacylist/legacylistediting~LegacyListEditing legacy list editing feature}
* and {@link module:list/list/listui~ListUI list UI feature}.
*/
export default class LegacyList extends Plugin {
/**
* @inheritDoc
*/
static get requires() {
return [LegacyListEditing, ListUI];
}
/**
* @inheritDoc
*/
static get pluginName() {
return 'LegacyList';
}
/**
* @inheritDoc
*/
static get isOfficialPlugin() {
return true;
}
}