@ckeditor/ckeditor5-find-and-replace 46.1.1-alpha.3 → 47.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-find-and-replace",
3
- "version": "46.1.1-alpha.3",
3
+ "version": "47.0.0-alpha.0",
4
4
  "description": "Find and replace feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -13,11 +13,11 @@
13
13
  "type": "module",
14
14
  "main": "src/index.js",
15
15
  "dependencies": {
16
- "@ckeditor/ckeditor5-core": "46.1.1-alpha.3",
17
- "@ckeditor/ckeditor5-icons": "46.1.1-alpha.3",
18
- "@ckeditor/ckeditor5-ui": "46.1.1-alpha.3",
19
- "@ckeditor/ckeditor5-utils": "46.1.1-alpha.3",
20
- "ckeditor5": "46.1.1-alpha.3",
16
+ "@ckeditor/ckeditor5-core": "47.0.0-alpha.0",
17
+ "@ckeditor/ckeditor5-icons": "47.0.0-alpha.0",
18
+ "@ckeditor/ckeditor5-ui": "47.0.0-alpha.0",
19
+ "@ckeditor/ckeditor5-utils": "47.0.0-alpha.0",
20
+ "ckeditor5": "47.0.0-alpha.0",
21
21
  "es-toolkit": "1.39.5"
22
22
  },
23
23
  "author": "CKSource (http://cksource.com/)",
@@ -24,6 +24,15 @@ export declare class FindAndReplaceEditing extends Plugin {
24
24
  * @inheritDoc
25
25
  */
26
26
  static get pluginName(): "FindAndReplaceEditing";
27
+ /**
28
+ * @inheritDoc
29
+ * @internal
30
+ */
31
+ static get licenseFeatureCode(): string;
32
+ /**
33
+ * @inheritDoc
34
+ */
35
+ static get isPremiumPlugin(): true;
27
36
  /**
28
37
  * @inheritDoc
29
38
  */
@@ -33,6 +33,19 @@ export class FindAndReplaceEditing extends Plugin {
33
33
  static get pluginName() {
34
34
  return 'FindAndReplaceEditing';
35
35
  }
36
+ /**
37
+ * @inheritDoc
38
+ * @internal
39
+ */
40
+ static get licenseFeatureCode() {
41
+ return 'FAR';
42
+ }
43
+ /**
44
+ * @inheritDoc
45
+ */
46
+ static get isPremiumPlugin() {
47
+ return true;
48
+ }
36
49
  /**
37
50
  * @inheritDoc
38
51
  */