@ckeditor/ckeditor5-list 40.0.0 → 40.2.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/CHANGELOG.md +25 -25
- package/LICENSE.md +2 -2
- package/build/list.js +1 -1
- package/build/translations/ug.js +1 -1
- package/lang/translations/ug.po +3 -3
- package/package.json +2 -3
- package/src/augmentation.d.ts +52 -52
- package/src/augmentation.js +5 -5
- package/src/documentlist/adjacentlistssupport.d.ts +15 -15
- package/src/documentlist/adjacentlistssupport.js +81 -81
- package/src/documentlist/converters.d.ts +65 -65
- package/src/documentlist/converters.js +441 -441
- package/src/documentlist/documentlistcommand.d.ts +80 -80
- package/src/documentlist/documentlistcommand.js +150 -150
- package/src/documentlist/documentlistediting.d.ts +212 -212
- package/src/documentlist/documentlistediting.js +646 -645
- package/src/documentlist/documentlistindentcommand.d.ts +62 -62
- package/src/documentlist/documentlistindentcommand.js +129 -129
- package/src/documentlist/documentlistmergecommand.d.ts +76 -76
- package/src/documentlist/documentlistmergecommand.js +174 -174
- package/src/documentlist/documentlistsplitcommand.d.ts +67 -67
- package/src/documentlist/documentlistsplitcommand.js +70 -70
- package/src/documentlist/documentlistutils.d.ts +46 -46
- package/src/documentlist/documentlistutils.js +50 -50
- package/src/documentlist/utils/listwalker.d.ts +145 -145
- package/src/documentlist/utils/listwalker.js +182 -182
- package/src/documentlist/utils/model.d.ts +202 -202
- package/src/documentlist/utils/model.js +455 -455
- package/src/documentlist/utils/postfixers.d.ts +37 -37
- package/src/documentlist/utils/postfixers.js +126 -126
- package/src/documentlist/utils/view.d.ts +81 -81
- package/src/documentlist/utils/view.js +117 -117
- package/src/documentlist.d.ts +26 -26
- package/src/documentlist.js +30 -30
- package/src/documentlistproperties/converters.d.ts +19 -19
- package/src/documentlistproperties/converters.js +43 -43
- package/src/documentlistproperties/documentlistpropertiesediting.d.ts +88 -88
- package/src/documentlistproperties/documentlistpropertiesediting.js +266 -266
- package/src/documentlistproperties/documentlistpropertiesutils.d.ts +33 -33
- package/src/documentlistproperties/documentlistpropertiesutils.js +44 -44
- package/src/documentlistproperties/documentlistreversedcommand.d.ts +36 -36
- package/src/documentlistproperties/documentlistreversedcommand.js +55 -55
- package/src/documentlistproperties/documentliststartcommand.d.ts +38 -38
- package/src/documentlistproperties/documentliststartcommand.js +57 -57
- package/src/documentlistproperties/documentliststylecommand.d.ts +72 -72
- package/src/documentlistproperties/documentliststylecommand.js +113 -113
- package/src/documentlistproperties/utils/style.d.ts +20 -20
- package/src/documentlistproperties/utils/style.js +54 -54
- package/src/documentlistproperties.d.ts +27 -27
- package/src/documentlistproperties.js +31 -31
- package/src/index.d.ts +43 -43
- package/src/index.js +29 -29
- package/src/list/converters.d.ts +196 -196
- package/src/list/converters.js +905 -905
- package/src/list/indentcommand.d.ts +37 -37
- package/src/list/indentcommand.js +107 -107
- package/src/list/listcommand.d.ts +55 -55
- package/src/list/listcommand.js +274 -274
- package/src/list/listediting.d.ts +32 -32
- package/src/list/listediting.js +161 -161
- package/src/list/listui.d.ts +19 -19
- package/src/list/listui.js +32 -32
- package/src/list/listutils.d.ts +41 -41
- package/src/list/listutils.js +46 -46
- package/src/list/utils.d.ts +112 -112
- package/src/list/utils.js +374 -374
- package/src/list.d.ts +26 -26
- package/src/list.js +30 -30
- package/src/listconfig.d.ts +132 -132
- package/src/listconfig.js +5 -5
- package/src/listproperties/listpropertiesediting.d.ts +72 -72
- package/src/listproperties/listpropertiesediting.js +696 -696
- package/src/listproperties/listpropertiesui.d.ts +23 -23
- package/src/listproperties/listpropertiesui.js +277 -277
- package/src/listproperties/listreversedcommand.d.ts +38 -38
- package/src/listproperties/listreversedcommand.js +52 -52
- package/src/listproperties/liststartcommand.d.ts +37 -37
- package/src/listproperties/liststartcommand.js +51 -51
- package/src/listproperties/liststylecommand.d.ts +67 -67
- package/src/listproperties/liststylecommand.js +99 -99
- package/src/listproperties/ui/listpropertiesview.d.ts +156 -157
- package/src/listproperties/ui/listpropertiesview.js +298 -299
- package/src/listproperties.d.ts +26 -26
- package/src/listproperties.js +30 -30
- package/src/liststyle.d.ts +28 -28
- package/src/liststyle.js +36 -36
- package/src/tododocumentlist/checktododocumentlistcommand.d.ts +49 -49
- package/src/tododocumentlist/checktododocumentlistcommand.js +82 -82
- package/src/tododocumentlist/todocheckboxchangeobserver.d.ts +41 -41
- package/src/tododocumentlist/todocheckboxchangeobserver.js +37 -37
- package/src/tododocumentlist/tododocumentlistediting.d.ts +38 -38
- package/src/tododocumentlist/tododocumentlistediting.js +399 -399
- package/src/tododocumentlist.d.ts +27 -27
- package/src/tododocumentlist.js +31 -31
- package/src/todolist/checktodolistcommand.d.ts +52 -52
- package/src/todolist/checktodolistcommand.js +76 -76
- package/src/todolist/todolistconverters.d.ts +82 -82
- package/src/todolist/todolistconverters.js +260 -260
- package/src/todolist/todolistediting.d.ts +39 -39
- package/src/todolist/todolistediting.js +161 -161
- package/src/todolist/todolistui.d.ts +19 -19
- package/src/todolist/todolistui.js +29 -29
- package/src/todolist.d.ts +27 -27
- package/src/todolist.js +31 -31
- package/build/list.js.map +0 -1
- package/src/listproperties/ui/collapsibleview.d.ts +0 -63
- package/src/listproperties/ui/collapsibleview.js +0 -89
- package/theme/collapsible.css +0 -10
package/CHANGELOG.md
CHANGED
|
@@ -5,21 +5,21 @@ All changes in the package are documented in the main repository. See: https://g
|
|
|
5
5
|
|
|
6
6
|
Changes for the past releases are available below.
|
|
7
7
|
|
|
8
|
-
## [19.0.0](https://github.com/ckeditor/ckeditor5-list/compare/v18.0.0...v19.0.0) (2020
|
|
8
|
+
## [19.0.0](https://github.com/ckeditor/ckeditor5-list/compare/v18.0.0...v19.0.0) (April 29, 2020)
|
|
9
9
|
|
|
10
10
|
### Other changes
|
|
11
11
|
|
|
12
12
|
* Improved performance of processing (loading) long lists. Closes [ckeditor/ckeditor5#6581](https://github.com/ckeditor/ckeditor5/issues/6581). ([b52db48](https://github.com/ckeditor/ckeditor5-list/commit/b52db48))
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
## [18.0.0](https://github.com/ckeditor/ckeditor5-list/compare/v17.0.0...v18.0.0) (2020
|
|
15
|
+
## [18.0.0](https://github.com/ckeditor/ckeditor5-list/compare/v17.0.0...v18.0.0) (March 19, 2020)
|
|
16
16
|
|
|
17
17
|
### Other changes
|
|
18
18
|
|
|
19
19
|
* Updated translations. ([92c4ec0](https://github.com/ckeditor/ckeditor5-list/commit/92c4ec0))
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
## [17.0.0](https://github.com/ckeditor/ckeditor5-list/compare/v16.0.0...v17.0.0) (2020
|
|
22
|
+
## [17.0.0](https://github.com/ckeditor/ckeditor5-list/compare/v16.0.0...v17.0.0) (February 19, 2020)
|
|
23
23
|
|
|
24
24
|
### Bug fixes
|
|
25
25
|
|
|
@@ -30,14 +30,14 @@ Changes for the past releases are available below.
|
|
|
30
30
|
* Updated translations. ([f87974b](https://github.com/ckeditor/ckeditor5-list/commit/f87974b))
|
|
31
31
|
|
|
32
32
|
|
|
33
|
-
## [16.0.0](https://github.com/ckeditor/ckeditor5-list/compare/v15.0.0...v16.0.0) (2019
|
|
33
|
+
## [16.0.0](https://github.com/ckeditor/ckeditor5-list/compare/v15.0.0...v16.0.0) (December 4, 2019)
|
|
34
34
|
|
|
35
35
|
### Other changes
|
|
36
36
|
|
|
37
37
|
* Updated translations. ([53e1503](https://github.com/ckeditor/ckeditor5-list/commit/53e1503))
|
|
38
38
|
|
|
39
39
|
|
|
40
|
-
## [15.0.0](https://github.com/ckeditor/ckeditor5-list/compare/v12.1.0...v15.0.0) (2019
|
|
40
|
+
## [15.0.0](https://github.com/ckeditor/ckeditor5-list/compare/v12.1.0...v15.0.0) (October 23, 2019)
|
|
41
41
|
|
|
42
42
|
### MAJOR BREAKING CHANGES
|
|
43
43
|
|
|
@@ -61,7 +61,7 @@ Changes for the past releases are available below.
|
|
|
61
61
|
* Updated translations. ([a6cf5dd](https://github.com/ckeditor/ckeditor5-list/commit/a6cf5dd)) ([4f67d34](https://github.com/ckeditor/ckeditor5-list/commit/4f67d34))
|
|
62
62
|
|
|
63
63
|
|
|
64
|
-
## [12.1.0](https://github.com/ckeditor/ckeditor5-list/compare/v12.0.4...v12.1.0) (2019
|
|
64
|
+
## [12.1.0](https://github.com/ckeditor/ckeditor5-list/compare/v12.0.4...v12.1.0) (August 26, 2019)
|
|
65
65
|
|
|
66
66
|
### Features
|
|
67
67
|
|
|
@@ -77,12 +77,12 @@ Changes for the past releases are available below.
|
|
|
77
77
|
* Updated translations. ([10e296d](https://github.com/ckeditor/ckeditor5-list/commit/10e296d))
|
|
78
78
|
|
|
79
79
|
|
|
80
|
-
## [12.0.4](https://github.com/ckeditor/ckeditor5-list/compare/v12.0.3...v12.0.4) (2019
|
|
80
|
+
## [12.0.4](https://github.com/ckeditor/ckeditor5-list/compare/v12.0.3...v12.0.4) (July 10, 2019)
|
|
81
81
|
|
|
82
82
|
Internal changes only (updated dependencies, documentation, etc.).
|
|
83
83
|
|
|
84
84
|
|
|
85
|
-
## [12.0.3](https://github.com/ckeditor/ckeditor5-list/compare/v12.0.2...v12.0.3) (2019
|
|
85
|
+
## [12.0.3](https://github.com/ckeditor/ckeditor5-list/compare/v12.0.2...v12.0.3) (July 4, 2019)
|
|
86
86
|
|
|
87
87
|
### Other changes
|
|
88
88
|
|
|
@@ -92,21 +92,21 @@ Internal changes only (updated dependencies, documentation, etc.).
|
|
|
92
92
|
* Updated translations. ([6c4b520](https://github.com/ckeditor/ckeditor5-list/commit/6c4b520))
|
|
93
93
|
|
|
94
94
|
|
|
95
|
-
## [12.0.2](https://github.com/ckeditor/ckeditor5-list/compare/v12.0.1...v12.0.2) (2019
|
|
95
|
+
## [12.0.2](https://github.com/ckeditor/ckeditor5-list/compare/v12.0.1...v12.0.2) (June 6, 2019)
|
|
96
96
|
|
|
97
97
|
### Other changes
|
|
98
98
|
|
|
99
99
|
* Updated translations. ([b7f3abc](https://github.com/ckeditor/ckeditor5-list/commit/b7f3abc))
|
|
100
100
|
|
|
101
101
|
|
|
102
|
-
## [12.0.1](https://github.com/ckeditor/ckeditor5-list/compare/v12.0.0...v12.0.1) (2019
|
|
102
|
+
## [12.0.1](https://github.com/ckeditor/ckeditor5-list/compare/v12.0.0...v12.0.1) (April 4, 2019)
|
|
103
103
|
|
|
104
104
|
### Other changes
|
|
105
105
|
|
|
106
106
|
* Updated translations. ([d595449](https://github.com/ckeditor/ckeditor5-list/commit/d595449))
|
|
107
107
|
|
|
108
108
|
|
|
109
|
-
## [12.0.0](https://github.com/ckeditor/ckeditor5-list/compare/v11.0.3...v12.0.0) (2019
|
|
109
|
+
## [12.0.0](https://github.com/ckeditor/ckeditor5-list/compare/v11.0.3...v12.0.0) (February 28, 2019)
|
|
110
110
|
|
|
111
111
|
### Bug fixes
|
|
112
112
|
|
|
@@ -122,7 +122,7 @@ Internal changes only (updated dependencies, documentation, etc.).
|
|
|
122
122
|
* Upgraded minimal versions of Node to `8.0.0` and npm to `5.7.1`. See: [ckeditor/ckeditor5#1507](https://github.com/ckeditor/ckeditor5/issues/1507). ([612ea3c](https://github.com/ckeditor/ckeditor5-cloud-services/commit/612ea3c))
|
|
123
123
|
|
|
124
124
|
|
|
125
|
-
## [11.0.3](https://github.com/ckeditor/ckeditor5-list/compare/v11.0.2...v11.0.3) (2018
|
|
125
|
+
## [11.0.3](https://github.com/ckeditor/ckeditor5-list/compare/v11.0.2...v11.0.3) (December 5, 2018)
|
|
126
126
|
|
|
127
127
|
### Bug fixes
|
|
128
128
|
|
|
@@ -134,21 +134,21 @@ Internal changes only (updated dependencies, documentation, etc.).
|
|
|
134
134
|
* Optimized SVG icons size. See [ckeditor/ckeditor5-theme-lark#206](https://github.com/ckeditor/ckeditor5-theme-lark/issues/206). ([d424329](https://github.com/ckeditor/ckeditor5-list/commit/d424329))
|
|
135
135
|
|
|
136
136
|
|
|
137
|
-
## [11.0.2](https://github.com/ckeditor/ckeditor5-list/compare/v11.0.1...v11.0.2) (2018
|
|
137
|
+
## [11.0.2](https://github.com/ckeditor/ckeditor5-list/compare/v11.0.1...v11.0.2) (October 8, 2018)
|
|
138
138
|
|
|
139
139
|
### Other changes
|
|
140
140
|
|
|
141
141
|
* Updated translations. ([00fed4b](https://github.com/ckeditor/ckeditor5-list/commit/00fed4b))
|
|
142
142
|
|
|
143
143
|
|
|
144
|
-
## [11.0.1](https://github.com/ckeditor/ckeditor5-list/compare/v11.0.0...v11.0.1) (2018
|
|
144
|
+
## [11.0.1](https://github.com/ckeditor/ckeditor5-list/compare/v11.0.0...v11.0.1) (July 18, 2018)
|
|
145
145
|
|
|
146
146
|
### Other changes
|
|
147
147
|
|
|
148
148
|
* Updated translations. ([f2d8f6c](https://github.com/ckeditor/ckeditor5-list/commit/f2d8f6c))
|
|
149
149
|
|
|
150
150
|
|
|
151
|
-
## [11.0.0](https://github.com/ckeditor/ckeditor5-list/compare/v10.0.0...v11.0.0) (2018
|
|
151
|
+
## [11.0.0](https://github.com/ckeditor/ckeditor5-list/compare/v10.0.0...v11.0.0) (June 21, 2018)
|
|
152
152
|
|
|
153
153
|
### Other changes
|
|
154
154
|
|
|
@@ -161,7 +161,7 @@ Internal changes only (updated dependencies, documentation, etc.).
|
|
|
161
161
|
* The `type` attribute is now called `listType`. See [#103](https://github.com/ckeditor/ckeditor5-list/issues/103) for more information.
|
|
162
162
|
|
|
163
163
|
|
|
164
|
-
## [10.0.0](https://github.com/ckeditor/ckeditor5-list/compare/v1.0.0-beta.4...v10.0.0) (2018
|
|
164
|
+
## [10.0.0](https://github.com/ckeditor/ckeditor5-list/compare/v1.0.0-beta.4...v10.0.0) (April 25, 2018)
|
|
165
165
|
|
|
166
166
|
### Other changes
|
|
167
167
|
|
|
@@ -172,17 +172,17 @@ Internal changes only (updated dependencies, documentation, etc.).
|
|
|
172
172
|
* The license under which CKEditor 5 is released has been changed from a triple GPL, LGPL and MPL license to a GPL2+ only. See [ckeditor/ckeditor5#991](https://github.com/ckeditor/ckeditor5/issues/991) for more information.
|
|
173
173
|
|
|
174
174
|
|
|
175
|
-
## [1.0.0-beta.4](https://github.com/ckeditor/ckeditor5-list/compare/v1.0.0-beta.2...v1.0.0-beta.4) (2018
|
|
175
|
+
## [1.0.0-beta.4](https://github.com/ckeditor/ckeditor5-list/compare/v1.0.0-beta.2...v1.0.0-beta.4) (April 19, 2018)
|
|
176
176
|
|
|
177
177
|
Internal changes only (updated dependencies, documentation, etc.).
|
|
178
178
|
|
|
179
179
|
|
|
180
|
-
## [1.0.0-beta.2](https://github.com/ckeditor/ckeditor5-list/compare/v1.0.0-beta.1...v1.0.0-beta.2) (2018
|
|
180
|
+
## [1.0.0-beta.2](https://github.com/ckeditor/ckeditor5-list/compare/v1.0.0-beta.1...v1.0.0-beta.2) (April 10, 2018)
|
|
181
181
|
|
|
182
182
|
Internal changes only (updated dependencies, documentation, etc.).
|
|
183
183
|
|
|
184
184
|
|
|
185
|
-
## [1.0.0-beta.1](https://github.com/ckeditor/ckeditor5-list/compare/v1.0.0-alpha.2...v1.0.0-beta.1) (2018
|
|
185
|
+
## [1.0.0-beta.1](https://github.com/ckeditor/ckeditor5-list/compare/v1.0.0-alpha.2...v1.0.0-beta.1) (March 15, 2018)
|
|
186
186
|
|
|
187
187
|
### Features
|
|
188
188
|
|
|
@@ -195,7 +195,7 @@ Internal changes only (updated dependencies, documentation, etc.).
|
|
|
195
195
|
* Updated translations. ([762a9ed](https://github.com/ckeditor/ckeditor5-list/commit/762a9ed))
|
|
196
196
|
|
|
197
197
|
|
|
198
|
-
## [1.0.0-alpha.2](https://github.com/ckeditor/ckeditor5-list/compare/v1.0.0-alpha.1...v1.0.0-alpha.2) (2017
|
|
198
|
+
## [1.0.0-alpha.2](https://github.com/ckeditor/ckeditor5-list/compare/v1.0.0-alpha.1...v1.0.0-alpha.2) (November 14, 2017)
|
|
199
199
|
|
|
200
200
|
### Bug fixes
|
|
201
201
|
|
|
@@ -206,7 +206,7 @@ Internal changes only (updated dependencies, documentation, etc.).
|
|
|
206
206
|
* Updated translations. ([a1c4477](https://github.com/ckeditor/ckeditor5-list/commit/a1c4477))
|
|
207
207
|
|
|
208
208
|
|
|
209
|
-
## [1.0.0-alpha.1](https://github.com/ckeditor/ckeditor5-list/compare/v0.7.0...v1.0.0-alpha.1) (2017
|
|
209
|
+
## [1.0.0-alpha.1](https://github.com/ckeditor/ckeditor5-list/compare/v0.7.0...v1.0.0-alpha.1) (October 3, 2017)
|
|
210
210
|
|
|
211
211
|
### Bug fixes
|
|
212
212
|
|
|
@@ -214,7 +214,7 @@ Internal changes only (updated dependencies, documentation, etc.).
|
|
|
214
214
|
* Editor will no longer crash when spellchecker corrects a word inside list item in a certain scenario. Closes [#70](https://github.com/ckeditor/ckeditor5-list/issues/70). ([f0b8b44](https://github.com/ckeditor/ckeditor5-list/commit/f0b8b44))
|
|
215
215
|
|
|
216
216
|
|
|
217
|
-
## [0.7.0](https://github.com/ckeditor/ckeditor5-list/compare/v0.6.1...v0.7.0) (2017
|
|
217
|
+
## [0.7.0](https://github.com/ckeditor/ckeditor5-list/compare/v0.6.1...v0.7.0) (September 3, 2017)
|
|
218
218
|
|
|
219
219
|
### Bug fixes
|
|
220
220
|
|
|
@@ -239,7 +239,7 @@ Internal changes only (updated dependencies, documentation, etc.).
|
|
|
239
239
|
* The command API has been changed.
|
|
240
240
|
|
|
241
241
|
|
|
242
|
-
## [0.6.1](https://github.com/ckeditor/ckeditor5-list/compare/v0.6.0...v0.6.1) (2017
|
|
242
|
+
## [0.6.1](https://github.com/ckeditor/ckeditor5-list/compare/v0.6.0...v0.6.1) (May 7, 2017)
|
|
243
243
|
|
|
244
244
|
### Bug fixes
|
|
245
245
|
|
|
@@ -251,7 +251,7 @@ Internal changes only (updated dependencies, documentation, etc.).
|
|
|
251
251
|
* Updated translations. ([bd83eed](https://github.com/ckeditor/ckeditor5-list/commit/bd83eed))
|
|
252
252
|
|
|
253
253
|
|
|
254
|
-
## [0.6.0](https://github.com/ckeditor/ckeditor5-list/compare/v0.5.1...v0.6.0) (2017
|
|
254
|
+
## [0.6.0](https://github.com/ckeditor/ckeditor5-list/compare/v0.5.1...v0.6.0) (April 5, 2017)
|
|
255
255
|
|
|
256
256
|
### Features
|
|
257
257
|
|
|
@@ -263,7 +263,7 @@ Internal changes only (updated dependencies, documentation, etc.).
|
|
|
263
263
|
* Updated translations. ([cabcd67](https://github.com/ckeditor/ckeditor5-list/commit/cabcd67))
|
|
264
264
|
|
|
265
265
|
|
|
266
|
-
## [0.5.1](https://github.com/ckeditor/ckeditor5-list/compare/v0.5.0...v0.5.1) (2017
|
|
266
|
+
## [0.5.1](https://github.com/ckeditor/ckeditor5-list/compare/v0.5.0...v0.5.1) (March 6, 2017)
|
|
267
267
|
|
|
268
268
|
### Other changes
|
|
269
269
|
|
package/LICENSE.md
CHANGED
|
@@ -2,7 +2,7 @@ Software License Agreement
|
|
|
2
2
|
==========================
|
|
3
3
|
|
|
4
4
|
**CKEditor 5 list feature** – https://github.com/ckeditor/ckeditor5-list <br>
|
|
5
|
-
Copyright (c) 2003
|
|
5
|
+
Copyright (c) 2003–2023, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
|
|
6
6
|
|
|
7
7
|
Licensed under the terms of [GNU General Public License Version 2 or later](http://www.gnu.org/licenses/gpl.html).
|
|
8
8
|
|
|
@@ -14,4 +14,4 @@ Where not otherwise indicated, all CKEditor content is authored by CKSource engi
|
|
|
14
14
|
Trademarks
|
|
15
15
|
----------
|
|
16
16
|
|
|
17
|
-
**CKEditor** is a trademark of [CKSource Holding sp. z o.o.](https://cksource.com) All other brand and product names are trademarks, registered trademarks or service marks of their respective holders.
|
|
17
|
+
**CKEditor** is a trademark of [CKSource Holding sp. z o.o.](https://cksource.com) All other brand and product names are trademarks, registered trademarks, or service marks of their respective holders.
|