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/documentlist
|
7 | */
|
8 | import { Plugin } from 'ckeditor5/src/core';
|
9 | import DocumentListEditing from './documentlist/documentlistediting';
|
10 | import ListUI from './list/listui';
|
11 | /**
|
12 | * The document list feature.
|
13 | *
|
14 | * This is a "glue" plugin that loads the {@link module:list/documentlist/documentlistediting~DocumentListEditing document list
|
15 | * editing feature} and {@link module:list/list/listui~ListUI list UI feature}.
|
16 | */
|
17 | export default class DocumentList extends Plugin {
|
18 | /**
|
19 | * @inheritDoc
|
20 | */
|
21 | static get requires(): readonly [typeof DocumentListEditing, typeof ListUI];
|
22 | /**
|
23 | * @inheritDoc
|
24 | */
|
25 | static get pluginName(): 'DocumentList';
|
26 | }
|