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