UNPKG

850 BTypeScriptView Raw
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/listpropertiesui
7 */
8import { Plugin } from 'ckeditor5/src/core';
9import '../../theme/liststyles.css';
10/**
11 * The list properties UI plugin. It introduces the extended `'bulletedList'` and `'numberedList'` toolbar
12 * buttons that allow users to control such aspects of list as the marker, start index or order.
13 *
14 * **Note**: Buttons introduced by this plugin override implementations from the {@link module:list/list/listui~ListUI}
15 * (because they share the same names).
16 */
17export default class ListPropertiesUI extends Plugin {
18 /**
19 * @inheritDoc
20 */
21 static get pluginName(): 'ListPropertiesUI';
22 init(): void;
23}