/** * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ /** * @module list/legacylistproperties */ import { Plugin } from 'ckeditor5/src/core.js'; import LegacyListPropertiesEditing from './legacylistproperties/legacylistpropertiesediting.js'; import ListPropertiesUI from './listproperties/listpropertiesui.js'; /** * The legacy list properties feature. * * This is a "glue" plugin that loads the {@link module:list/legacylistproperties/legacylistpropertiesediting~LegacyListPropertiesEditing * legacy list properties editing feature} and the * {@link module:list/listproperties/listpropertiesui~ListPropertiesUI list properties UI feature}. */ export default class LegacyListProperties extends Plugin { /** * @inheritDoc */ public static get requires() { return [ LegacyListPropertiesEditing, ListPropertiesUI ] as const; } /** * @inheritDoc */ public static get pluginName() { return 'LegacyListProperties' as const; } }