@ckeditor/ckeditor5-list 48.3.1-alpha.1 → 48.4.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index-content.css +107 -120
- package/dist/index-content.css.map +1 -0
- package/dist/index-editor.css +105 -109
- package/dist/index-editor.css.map +1 -0
- package/dist/index.css +88 -23
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/legacylist/legacylistediting.d.ts +0 -1
- package/dist/legacytodolist.d.ts +0 -1
- package/dist/list/listediting.d.ts +0 -2
- package/dist/listformatting.d.ts +0 -1
- package/dist/listproperties/listpropertiesui.d.ts +0 -1
- package/dist/listproperties/ui/listpropertiesview.d.ts +0 -1
- package/dist/todolist.d.ts +0 -1
- package/package.json +10 -10
|
@@ -6,7 +6,6 @@ import { LegacyListUtils } from "./legacylistutils.js";
|
|
|
6
6
|
import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core";
|
|
7
7
|
import { Enter } from "@ckeditor/ckeditor5-enter";
|
|
8
8
|
import { Delete } from "@ckeditor/ckeditor5-typing";
|
|
9
|
-
import "../../theme/list.css";
|
|
10
9
|
/**
|
|
11
10
|
* The engine of the list feature. It handles creating, editing and removing lists and list items.
|
|
12
11
|
*
|
package/dist/legacytodolist.d.ts
CHANGED
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
import { LegacyTodoListEditing } from "./legacytodolist/legacytodolistediting.js";
|
|
9
9
|
import { TodoListUI } from "./todolist/todolistui.js";
|
|
10
10
|
import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core";
|
|
11
|
-
import "../theme/todolist.css";
|
|
12
11
|
/**
|
|
13
12
|
* The legacy to-do list feature.
|
|
14
13
|
*
|
|
@@ -14,8 +14,6 @@ import { ListUtils } from "./listutils.js";
|
|
|
14
14
|
import { type ListElement } from "./utils/model.js";
|
|
15
15
|
import { ListBlocksIterable } from "./utils/listwalker.js";
|
|
16
16
|
import { ClipboardPipeline } from "@ckeditor/ckeditor5-clipboard";
|
|
17
|
-
import "../../theme/documentlist.css";
|
|
18
|
-
import "../../theme/list.css";
|
|
19
17
|
export type ListType = "numbered" | "bulleted" | "todo" | "customNumbered" | "customBulleted";
|
|
20
18
|
/**
|
|
21
19
|
* Map of model attributes applicable to list blocks.
|
package/dist/listformatting.d.ts
CHANGED
|
@@ -11,7 +11,6 @@ import { ListItemItalicIntegration } from "./listformatting/listitemitalicintegr
|
|
|
11
11
|
import { ListItemFontSizeIntegration } from "./listformatting/listitemfontsizeintegration.js";
|
|
12
12
|
import { ListItemFontColorIntegration } from "./listformatting/listitemfontcolorintegration.js";
|
|
13
13
|
import { ListItemFontFamilyIntegration } from "./listformatting/listitemfontfamilyintegration.js";
|
|
14
|
-
import "../theme/listformatting.css";
|
|
15
14
|
/**
|
|
16
15
|
* The list formatting plugin.
|
|
17
16
|
*
|
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
* @module list/listproperties/listpropertiesui
|
|
7
7
|
*/
|
|
8
8
|
import { Plugin } from "@ckeditor/ckeditor5-core";
|
|
9
|
-
import "../../theme/liststyles.css";
|
|
10
9
|
/**
|
|
11
10
|
* The list properties UI plugin. It introduces the extended `'bulletedList'` and `'numberedList'` toolbar
|
|
12
11
|
* buttons that allow users to control such aspects of list as the marker, start index or order.
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
import { ButtonView, View, ViewCollection, FocusCycler, SwitchButtonView, LabeledFieldView, CollapsibleView, type InputNumberView, type FocusableView } from "@ckeditor/ckeditor5-ui";
|
|
9
9
|
import { FocusTracker, KeystrokeHandler, type Locale } from "@ckeditor/ckeditor5-utils";
|
|
10
10
|
import type { NormalizedListPropertiesConfig } from "../utils/config.js";
|
|
11
|
-
import "../../../theme/listproperties.css";
|
|
12
11
|
/**
|
|
13
12
|
* The list properties view to be displayed in the list dropdown.
|
|
14
13
|
*
|
package/dist/todolist.d.ts
CHANGED
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
import { TodoListEditing } from "./todolist/todolistediting.js";
|
|
9
9
|
import { TodoListUI } from "./todolist/todolistui.js";
|
|
10
10
|
import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core";
|
|
11
|
-
import "../theme/todolist.css";
|
|
12
11
|
/**
|
|
13
12
|
* The to-do list feature.
|
|
14
13
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-list",
|
|
3
|
-
"version": "48.
|
|
3
|
+
"version": "48.4.0-alpha.0",
|
|
4
4
|
"description": "Ordered and unordered lists feature to CKEditor 5.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "CKSource (http://cksource.com/)",
|
|
@@ -26,15 +26,15 @@
|
|
|
26
26
|
"./package.json": "./package.json"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@ckeditor/ckeditor5-clipboard": "48.
|
|
30
|
-
"@ckeditor/ckeditor5-core": "48.
|
|
31
|
-
"@ckeditor/ckeditor5-engine": "48.
|
|
32
|
-
"@ckeditor/ckeditor5-enter": "48.
|
|
33
|
-
"@ckeditor/ckeditor5-font": "48.
|
|
34
|
-
"@ckeditor/ckeditor5-icons": "48.
|
|
35
|
-
"@ckeditor/ckeditor5-typing": "48.
|
|
36
|
-
"@ckeditor/ckeditor5-ui": "48.
|
|
37
|
-
"@ckeditor/ckeditor5-utils": "48.
|
|
29
|
+
"@ckeditor/ckeditor5-clipboard": "48.4.0-alpha.0",
|
|
30
|
+
"@ckeditor/ckeditor5-core": "48.4.0-alpha.0",
|
|
31
|
+
"@ckeditor/ckeditor5-engine": "48.4.0-alpha.0",
|
|
32
|
+
"@ckeditor/ckeditor5-enter": "48.4.0-alpha.0",
|
|
33
|
+
"@ckeditor/ckeditor5-font": "48.4.0-alpha.0",
|
|
34
|
+
"@ckeditor/ckeditor5-icons": "48.4.0-alpha.0",
|
|
35
|
+
"@ckeditor/ckeditor5-typing": "48.4.0-alpha.0",
|
|
36
|
+
"@ckeditor/ckeditor5-ui": "48.4.0-alpha.0",
|
|
37
|
+
"@ckeditor/ckeditor5-utils": "48.4.0-alpha.0",
|
|
38
38
|
"es-toolkit": "1.45.1"
|
|
39
39
|
},
|
|
40
40
|
"files": [
|