@atlaskit/editor-plugin-find-replace 6.1.2 → 6.1.4
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
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-find-replace
|
|
2
2
|
|
|
3
|
+
## 6.1.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`55920a92e882a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/55920a92e882a) -
|
|
8
|
+
tsignores added for help-center local consumpton removed
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 6.1.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 6.1.2
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -160,10 +160,7 @@ var FindReplaceToolbarButtonWithState = function FindReplaceToolbarButtonWithSta
|
|
|
160
160
|
return match.canReplace === true;
|
|
161
161
|
}).length : undefined,
|
|
162
162
|
replaceText: replaceText,
|
|
163
|
-
shouldFocus: shouldFocus
|
|
164
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
165
|
-
,
|
|
166
|
-
|
|
163
|
+
shouldFocus: shouldFocus,
|
|
167
164
|
popupsBoundariesElement: popupsBoundariesElement,
|
|
168
165
|
popupsMountPoint: popupsMountPoint,
|
|
169
166
|
popupsScrollableElement: popupsScrollableElement,
|
|
@@ -144,10 +144,7 @@ const FindReplaceToolbarButtonWithState = ({
|
|
|
144
144
|
isReplaceable: expValEquals('platform_editor_find_and_replace_improvements', 'isEnabled', true) ? (_matches$index = matches[index]) === null || _matches$index === void 0 ? void 0 : _matches$index.canReplace : undefined,
|
|
145
145
|
numReplaceable: expValEquals('platform_editor_find_and_replace_improvements', 'isEnabled', true) ? matches.filter(match => match.canReplace === true).length : undefined,
|
|
146
146
|
replaceText: replaceText,
|
|
147
|
-
shouldFocus: shouldFocus
|
|
148
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
149
|
-
,
|
|
150
|
-
|
|
147
|
+
shouldFocus: shouldFocus,
|
|
151
148
|
popupsBoundariesElement: popupsBoundariesElement,
|
|
152
149
|
popupsMountPoint: popupsMountPoint,
|
|
153
150
|
popupsScrollableElement: popupsScrollableElement,
|
|
@@ -152,10 +152,7 @@ var FindReplaceToolbarButtonWithState = function FindReplaceToolbarButtonWithSta
|
|
|
152
152
|
return match.canReplace === true;
|
|
153
153
|
}).length : undefined,
|
|
154
154
|
replaceText: replaceText,
|
|
155
|
-
shouldFocus: shouldFocus
|
|
156
|
-
// @ts-ignore - Workaround for help-center local consumption
|
|
157
|
-
,
|
|
158
|
-
|
|
155
|
+
shouldFocus: shouldFocus,
|
|
159
156
|
popupsBoundariesElement: popupsBoundariesElement,
|
|
160
157
|
popupsMountPoint: popupsMountPoint,
|
|
161
158
|
popupsScrollableElement: popupsScrollableElement,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-find-replace",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.4",
|
|
4
4
|
"description": "find replace plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
"@atlaskit/icon-lab": "^5.12.0",
|
|
42
42
|
"@atlaskit/mention": "^24.4.0",
|
|
43
43
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
44
|
-
"@atlaskit/primitives": "^16.
|
|
44
|
+
"@atlaskit/primitives": "^16.4.0",
|
|
45
45
|
"@atlaskit/textfield": "^8.1.0",
|
|
46
46
|
"@atlaskit/theme": "^21.0.0",
|
|
47
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
48
|
-
"@atlaskit/tokens": "^8.
|
|
47
|
+
"@atlaskit/tmp-editor-statsig": "^14.2.0",
|
|
48
|
+
"@atlaskit/tokens": "^8.4.0",
|
|
49
49
|
"@atlaskit/tooltip": "^20.10.0",
|
|
50
50
|
"@babel/runtime": "^7.0.0",
|
|
51
51
|
"@emotion/react": "^11.7.1",
|
|
@@ -54,9 +54,6 @@
|
|
|
54
54
|
"raf-schd": "^4.0.3"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@af/visual-regression": "workspace:^",
|
|
58
|
-
"@atlaskit/editor-plugin-block-type": "^10.2.0",
|
|
59
|
-
"@atlaskit/editor-plugin-text-formatting": "^6.1.0",
|
|
60
57
|
"@testing-library/react": "^13.4.0",
|
|
61
58
|
"@testing-library/user-event": "^14.4.3",
|
|
62
59
|
"mockdate": "^3.0.5",
|
|
@@ -64,7 +61,7 @@
|
|
|
64
61
|
"react-dom": "^18.2.0"
|
|
65
62
|
},
|
|
66
63
|
"peerDependencies": {
|
|
67
|
-
"@atlaskit/editor-common": "^110.
|
|
64
|
+
"@atlaskit/editor-common": "^110.36.0",
|
|
68
65
|
"react": "^18.2.0",
|
|
69
66
|
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
70
67
|
},
|