@ckeditor/ckeditor5-find-and-replace 41.4.2 → 42.0.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/README.md +6 -0
- package/dist/index.js +526 -423
- package/dist/index.js.map +1 -1
- package/dist/types/findandreplacestate.d.ts +1 -1
- package/package.json +3 -3
- package/src/findandreplacestate.d.ts +1 -1
- package/src/findandreplacestate.js +1 -1
|
@@ -19,7 +19,7 @@ declare const FindAndReplaceState_base: {
|
|
|
19
19
|
/**
|
|
20
20
|
* The object storing find and replace plugin state for a given editor instance.
|
|
21
21
|
*/
|
|
22
|
-
export default class FindAndReplaceState extends FindAndReplaceState_base {
|
|
22
|
+
export default class FindAndReplaceState extends /* #__PURE__ */ FindAndReplaceState_base {
|
|
23
23
|
/**
|
|
24
24
|
* A collection of find matches.
|
|
25
25
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-find-and-replace",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "42.0.0-alpha.0",
|
|
4
4
|
"description": "Find and replace feature for CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"type": "module",
|
|
14
14
|
"main": "src/index.js",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@ckeditor/ckeditor5-ui": "
|
|
17
|
-
"ckeditor5": "
|
|
16
|
+
"@ckeditor/ckeditor5-ui": "42.0.0-alpha.0",
|
|
17
|
+
"ckeditor5": "42.0.0-alpha.0",
|
|
18
18
|
"lodash-es": "4.17.21"
|
|
19
19
|
},
|
|
20
20
|
"author": "CKSource (http://cksource.com/)",
|
|
@@ -15,7 +15,7 @@ declare const FindAndReplaceState_base: {
|
|
|
15
15
|
/**
|
|
16
16
|
* The object storing find and replace plugin state for a given editor instance.
|
|
17
17
|
*/
|
|
18
|
-
export default class FindAndReplaceState extends FindAndReplaceState_base {
|
|
18
|
+
export default class FindAndReplaceState extends /* #__PURE__ */ FindAndReplaceState_base {
|
|
19
19
|
/**
|
|
20
20
|
* A collection of find matches.
|
|
21
21
|
*
|
|
@@ -6,7 +6,7 @@ import { ObservableMixin, Collection } from 'ckeditor5/src/utils.js';
|
|
|
6
6
|
/**
|
|
7
7
|
* The object storing find and replace plugin state for a given editor instance.
|
|
8
8
|
*/
|
|
9
|
-
export default class FindAndReplaceState extends ObservableMixin() {
|
|
9
|
+
export default class FindAndReplaceState extends /* #__PURE__ */ ObservableMixin() {
|
|
10
10
|
/**
|
|
11
11
|
* Creates an instance of the state.
|
|
12
12
|
*/
|