@ckeditor/ckeditor5-list 46.0.0-alpha.4 → 46.0.0-alpha.6

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.
@@ -123,6 +123,109 @@
123
123
  }
124
124
  ]
125
125
  },
126
+ {
127
+ "name": "List formatting",
128
+ "className": "ListFormatting",
129
+ "description": "Enables integration with formatting plugins to style the list marker. Supports font color, font size, font family, bold, and italic formatting.",
130
+ "docs": "features/lists/lists.html#list-item-marker-formatting",
131
+ "path": "src/listformatting.js",
132
+ "requires": [
133
+ "ListItemBoldIntegration",
134
+ "ListItemItalicIntegration",
135
+ "ListItemFontSizeIntegration",
136
+ "ListItemFontColorIntegration",
137
+ "ListItemFontFamilyIntegration"
138
+ ]
139
+ },
140
+ {
141
+ "name": "List item bold integration",
142
+ "className": "ListItemBoldIntegration",
143
+ "description": "Integrates bold formatting with list items to style list markers with bold formatting when the content is consistently bold.",
144
+ "docs": "features/lists/lists.html#list-item-marker-formatting",
145
+ "path": "src/listformatting/listitemboldintegration.js",
146
+ "requires": [
147
+ "ListEditing"
148
+ ],
149
+ "htmlOutput": [
150
+ {
151
+ "elements": "li",
152
+ "classes": "ck-list-marker-bold"
153
+ }
154
+ ]
155
+ },
156
+ {
157
+ "name": "List item italic integration",
158
+ "className": "ListItemItalicIntegration",
159
+ "description": "Integrates italic formatting with list items to style list markers with italic formatting when the content is consistently italic.",
160
+ "docs": "features/lists/lists.html#list-item-marker-formatting",
161
+ "path": "src/listformatting/listitemitalicintegration.js",
162
+ "requires": [
163
+ "ListEditing"
164
+ ],
165
+ "htmlOutput": [
166
+ {
167
+ "elements": "li",
168
+ "classes": "ck-list-marker-italic"
169
+ }
170
+ ]
171
+ },
172
+ {
173
+ "name": "List item font size integration",
174
+ "className": "ListItemFontSizeIntegration",
175
+ "description": "Integrates font size formatting with list items to style list markers with specific font sizes when the content has consistent font sizing.",
176
+ "docs": "features/lists/lists.html#list-item-marker-formatting",
177
+ "path": "src/listformatting/listitemfontsizeintegration.js",
178
+ "requires": [
179
+ "ListEditing"
180
+ ],
181
+ "htmlOutput": [
182
+ {
183
+ "elements": "li",
184
+ "classes": [
185
+ "ck-list-marker-font-size",
186
+ "ck-list-marker-font-size-tiny",
187
+ "ck-list-marker-font-size-small",
188
+ "ck-list-marker-font-size-big",
189
+ "ck-list-marker-font-size-huge"
190
+ ],
191
+ "styles": "--ck-content-list-marker-font-size"
192
+ }
193
+ ]
194
+ },
195
+ {
196
+ "name": "List item font color integration",
197
+ "className": "ListItemFontColorIntegration",
198
+ "description": "Integrates font color formatting with list items to style list markers with specific colors when the content has consistent font coloring.",
199
+ "docs": "features/lists/lists.html#list-item-marker-formatting",
200
+ "path": "src/listformatting/listitemfontcolorintegration.js",
201
+ "requires": [
202
+ "ListEditing"
203
+ ],
204
+ "htmlOutput": [
205
+ {
206
+ "elements": "li",
207
+ "classes": "ck-list-marker-color",
208
+ "styles": "--ck-content-list-marker-color"
209
+ }
210
+ ]
211
+ },
212
+ {
213
+ "name": "List item font family integration",
214
+ "className": "ListItemFontFamilyIntegration",
215
+ "description": "Integrates font family formatting with list items to style list markers with specific font families when the content has consistent font family formatting.",
216
+ "docs": "features/lists/lists.html#list-item-marker-formatting",
217
+ "path": "src/listformatting/listitemfontfamilyintegration.js",
218
+ "requires": [
219
+ "ListEditing"
220
+ ],
221
+ "htmlOutput": [
222
+ {
223
+ "elements": "li",
224
+ "classes": "ck-list-marker-font-family",
225
+ "styles": "--ck-content-list-marker-font-family"
226
+ }
227
+ ]
228
+ },
126
229
  {
127
230
  "name": "To-do list",
128
231
  "className": "TodoList",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-list",
3
- "version": "46.0.0-alpha.4",
3
+ "version": "46.0.0-alpha.6",
4
4
  "description": "Ordered and unordered lists feature to CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -13,16 +13,16 @@
13
13
  "type": "module",
14
14
  "main": "src/index.js",
15
15
  "dependencies": {
16
- "@ckeditor/ckeditor5-clipboard": "46.0.0-alpha.4",
17
- "@ckeditor/ckeditor5-core": "46.0.0-alpha.4",
18
- "@ckeditor/ckeditor5-engine": "46.0.0-alpha.4",
19
- "@ckeditor/ckeditor5-enter": "46.0.0-alpha.4",
20
- "@ckeditor/ckeditor5-font": "46.0.0-alpha.4",
21
- "@ckeditor/ckeditor5-icons": "46.0.0-alpha.4",
22
- "@ckeditor/ckeditor5-typing": "46.0.0-alpha.4",
23
- "@ckeditor/ckeditor5-ui": "46.0.0-alpha.4",
24
- "@ckeditor/ckeditor5-utils": "46.0.0-alpha.4",
25
- "ckeditor5": "46.0.0-alpha.4"
16
+ "@ckeditor/ckeditor5-clipboard": "46.0.0-alpha.6",
17
+ "@ckeditor/ckeditor5-core": "46.0.0-alpha.6",
18
+ "@ckeditor/ckeditor5-engine": "46.0.0-alpha.6",
19
+ "@ckeditor/ckeditor5-enter": "46.0.0-alpha.6",
20
+ "@ckeditor/ckeditor5-font": "46.0.0-alpha.6",
21
+ "@ckeditor/ckeditor5-icons": "46.0.0-alpha.6",
22
+ "@ckeditor/ckeditor5-typing": "46.0.0-alpha.6",
23
+ "@ckeditor/ckeditor5-ui": "46.0.0-alpha.6",
24
+ "@ckeditor/ckeditor5-utils": "46.0.0-alpha.6",
25
+ "ckeditor5": "46.0.0-alpha.6"
26
26
  },
27
27
  "author": "CKSource (http://cksource.com/)",
28
28
  "license": "SEE LICENSE IN LICENSE.md",