@ckeditor/ckeditor5-find-and-replace 47.7.1 → 47.7.2-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": "47.7.1",
3
+ "version": "47.7.2-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": "47.7.1",
17
- "@ckeditor/ckeditor5-icons": "47.7.1",
18
- "@ckeditor/ckeditor5-ui": "47.7.1",
19
- "@ckeditor/ckeditor5-utils": "47.7.1",
20
- "ckeditor5": "47.7.1",
16
+ "@ckeditor/ckeditor5-core": "47.7.2-alpha.0",
17
+ "@ckeditor/ckeditor5-icons": "47.7.2-alpha.0",
18
+ "@ckeditor/ckeditor5-ui": "47.7.2-alpha.0",
19
+ "@ckeditor/ckeditor5-utils": "47.7.2-alpha.0",
20
+ "ckeditor5": "47.7.2-alpha.0",
21
21
  "es-toolkit": "1.39.5"
22
22
  },
23
23
  "author": "CKSource (http://cksource.com/)",
@@ -59,7 +59,7 @@ export class FindAndReplaceUI extends Plugin {
59
59
  let view;
60
60
  if (isUiUsingDropdown) {
61
61
  view = this._createDropdown();
62
- // Button should be disabled when in source editing mode. See #10001.
62
+ // Button should be disabled when in source editing mode. See https://github.com/ckeditor/ckeditor5/issues/10001.
63
63
  view.bind('isEnabled').to(findCommand);
64
64
  }
65
65
  else {
@@ -200,7 +200,7 @@ export class FindAndReplaceUI extends Plugin {
200
200
  const findCommand = editor.commands.get('find');
201
201
  const buttonView = new ButtonClass(editor.locale);
202
202
  const t = editor.locale.t;
203
- // Button should be disabled when in source editing mode. See #10001.
203
+ // Button should be disabled when in source editing mode. See https://github.com/ckeditor/ckeditor5/issues/10001.
204
204
  buttonView.bind('isEnabled').to(findCommand);
205
205
  buttonView.set({
206
206
  icon: IconFindReplace,
@@ -7,7 +7,7 @@
7
7
  */
8
8
  import { View, ButtonView, LabeledFieldView, FocusCycler, createLabeledInputText, submitHandler, ViewCollection, SwitchButtonView, CollapsibleView } from 'ckeditor5/src/ui.js';
9
9
  import { FocusTracker, KeystrokeHandler, Rect, isVisible } from 'ckeditor5/src/utils.js';
10
- // See: #8833.
10
+ // See: https://github.com/ckeditor/ckeditor5/issues/8833.
11
11
  // eslint-disable-next-line ckeditor5-rules/ckeditor-imports
12
12
  import '@ckeditor/ckeditor5-ui/theme/components/responsive-form/responsiveform.css';
13
13
  import '../../theme/findandreplaceform.css';