UNPKG

1.1 kBJavaScriptView Raw
1/**
2 * @license Copyright (c) 2003-2022, 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/**
7 * @module list/documentlistproperties
8 */
9
10import { Plugin } from 'ckeditor5/src/core';
11import DocumentListPropertiesEditing from './documentlistproperties/documentlistpropertiesediting';
12import ListPropertiesUI from './listproperties/listpropertiesui';
13
14/**
15 * The document list properties feature.
16 *
17 * This is a "glue" plugin that loads the
18 * {@link module:list/documentlistproperties/documentlistpropertiesediting~DocumentListPropertiesEditing document list properties
19 * editing feature} and the {@link module:list/listproperties/listpropertiesui~ListPropertiesUI list properties UI feature}.
20 *
21 * @extends module:core/plugin~Plugin
22 */
23export default class DocumentListProperties extends Plugin {
24 /**
25 * @inheritDoc
26 */
27 static get requires() {
28 return [ DocumentListPropertiesEditing, ListPropertiesUI ];
29 }
30
31 /**
32 * @inheritDoc
33 */
34 static get pluginName() {
35 return 'DocumentListProperties';
36 }
37}