@atlaskit/editor-plugin-find-replace 8.2.24 → 8.2.25
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 +8 -0
- package/README.md +24 -9
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-find-replace
|
|
2
2
|
|
|
3
|
+
## 8.2.25
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`3da5fc5ff18bc`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3da5fc5ff18bc) -
|
|
8
|
+
Update README.md and 0-intro.tsx
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 8.2.24
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,19 +1,33 @@
|
|
|
1
|
-
# Editor
|
|
1
|
+
# Editor Plugin Find Replace
|
|
2
2
|
|
|
3
3
|
Find replace plugin for @atlaskit/editor-core
|
|
4
4
|
|
|
5
5
|
**Note:** This component is designed for internal Atlassian development.
|
|
6
6
|
External contributors will be able to use this component but will not be able to submit issues.
|
|
7
7
|
|
|
8
|
+
## Overview
|
|
9
|
+
|
|
10
|
+
The Find Replace plugin provides search and replace functionality for the Atlassian Editor. It enables users to find text matches across the document, navigate through results, and replace content with support for case-sensitive matching.
|
|
11
|
+
|
|
12
|
+
## Key features
|
|
13
|
+
|
|
14
|
+
- **Text search** - Find text matches in the editor document
|
|
15
|
+
- **Navigation** - Navigate to next and previous search results
|
|
16
|
+
- **Replace functionality** - Replace individual matches or all matches at once
|
|
17
|
+
- **Case-sensitive matching** - Optional case-sensitive search option
|
|
18
|
+
- **Match highlighting** - Decorations highlight all search results
|
|
19
|
+
- **Toolbar integration** - Seamless integration with the editor toolbar
|
|
20
|
+
- **Analytics support** - Built-in analytics tracking for find and replace actions
|
|
21
|
+
|
|
8
22
|
## Install
|
|
9
|
-
|
|
10
|
-
- **Install** - *yarn add @atlaskit/editor-plugin-
|
|
11
|
-
- **npm** - [@atlaskit/editor-plugin-
|
|
23
|
+
|
|
24
|
+
- **Install** - *yarn add @atlaskit/editor-plugin-find-replace*
|
|
25
|
+
- **npm** - [@atlaskit/editor-plugin-find-replace](https://www.npmjs.com/package/@atlaskit/editor-plugin-find-replace)
|
|
12
26
|
- **Source** - [Bitbucket](https://bitbucket.org/atlassian/atlassian-frontend/src/master/packages/editor/editor-plugin-find-replace)
|
|
13
27
|
- **Bundle** - [unpkg.com](https://unpkg.com/@atlaskit/editor-plugin-find-replace/dist/)
|
|
14
28
|
|
|
15
29
|
## Usage
|
|
16
|
-
|
|
30
|
+
|
|
17
31
|
**Internal use only**
|
|
18
32
|
|
|
19
33
|
@atlaskit/editor-plugin-find-replace is intended for internal use by the @atlaskit/editor-core and as a plugin dependency of the Editor within your product.
|
|
@@ -23,8 +37,9 @@ Direct use of this component is not supported.
|
|
|
23
37
|
Please see [Atlaskit - Editor plugin find-replace](https://atlaskit.atlassian.com/packages/editor/editor-plugin-find-replace) for documentation and examples for this package.
|
|
24
38
|
|
|
25
39
|
## Support
|
|
26
|
-
|
|
27
|
-
For internal Atlassian, visit the
|
|
40
|
+
|
|
41
|
+
For internal Atlassian, visit the slack channel [#help-editor](https://atlassian.slack.com/archives/CFG3PSQ9E) for support or visit [go/editor-help](https://go/editor-help) to submit a bug.
|
|
42
|
+
|
|
28
43
|
## License
|
|
29
|
-
|
|
30
|
-
|
|
44
|
+
|
|
45
|
+
Please see [Atlassian Frontend - License](https://hello.atlassian.net/wiki/spaces/AF/pages/2589099144/Documentation#License) for more licensing information.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-find-replace",
|
|
3
|
-
"version": "8.2.
|
|
3
|
+
"version": "8.2.25",
|
|
4
4
|
"description": "find replace plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
44
44
|
"@atlaskit/primitives": "^19.0.0",
|
|
45
45
|
"@atlaskit/textfield": "^8.3.0",
|
|
46
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
46
|
+
"@atlaskit/tmp-editor-statsig": "^60.2.0",
|
|
47
47
|
"@atlaskit/tokens": "^13.0.0",
|
|
48
48
|
"@atlaskit/tooltip": "^21.1.0",
|
|
49
49
|
"@babel/runtime": "^7.0.0",
|