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