UNPKG

787 BJavaScriptView Raw
1/**
2 * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4 */
5/**
6 * @module list/list
7 */
8import ListEditing from './list/listediting';
9import ListUI from './list/listui';
10import { Plugin } from 'ckeditor5/src/core';
11/**
12 * The list feature.
13 *
14 * This is a "glue" plugin that loads the {@link module:list/list/listediting~ListEditing list editing feature}
15 * and {@link module:list/list/listui~ListUI list UI feature}.
16 */
17export default class List extends Plugin {
18 /**
19 * @inheritDoc
20 */
21 static get requires() {
22 return [ListEditing, ListUI];
23 }
24 /**
25 * @inheritDoc
26 */
27 static get pluginName() {
28 return 'List';
29 }
30}