@atlaskit/editor-plugin-find-replace 3.2.1 → 3.2.3

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,20 @@
1
1
  # @atlaskit/editor-plugin-find-replace
2
2
 
3
+ ## 3.2.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 3.2.2
10
+
11
+ ### Patch Changes
12
+
13
+ - [#199353](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/199353)
14
+ [`f2d4ca35574b8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f2d4ca35574b8) -
15
+ Internal changes to how border radius values are applied. No visual change.
16
+ - Updated dependencies
17
+
3
18
  ## 3.2.1
4
19
 
5
20
  ### Patch Changes
@@ -220,7 +220,9 @@ var Replace = function Replace(_ref) {
220
220
  ref: successReplacementMessageRef
221
221
  }, /*#__PURE__*/_react.default.createElement(_form.ValidMessage, {
222
222
  testId: "message-success-replacement"
223
- }, fakeSuccessReplacementMessageUpdate ? resultsReplace.replace(/ /, "\xA0") : resultsReplace)), /*#__PURE__*/_react.default.createElement(_primitives.Box, {
223
+ }, fakeSuccessReplacementMessageUpdate ?
224
+ // @ts-ignore - TS1501 TypeScript 5.9.2 upgrade
225
+ resultsReplace.replace(/ /, "\xA0") : resultsReplace)), /*#__PURE__*/_react.default.createElement(_primitives.Box, {
224
226
  xcss: actionButtonContainerStyles
225
227
  }, /*#__PURE__*/_react.default.createElement(_primitives.Inline, {
226
228
  xcss: (0, _expValEquals.expValEquals)('platform_editor_find_and_replace_improvements', 'isEnabled', true) && (0, _platformFeatureFlags.fg)('platform_editor_find_and_replace_improvements_1') ? [actionButtonInlineStyles, actionButtonParentInlineStylesNew] : [actionButtonInlineStyles, actionButtonParentInlineStyles]
@@ -28,7 +28,8 @@ var statusSelector = '.lozenge-wrapper';
28
28
  var mentionSelector = '.editor-mention-primitive';
29
29
  var dateSelector = '.date-lozenger-container>span';
30
30
  var findReplaceStyles = exports.findReplaceStyles = (0, _react.css)((0, _defineProperty2.default)((0, _defineProperty2.default)({}, ".".concat(searchMatchClass), {
31
- borderRadius: '3px',
31
+ // eslint-disable-next-line @atlaskit/design-system/no-unsafe-design-token-usage
32
+ borderRadius: "var(--ds-border-radius-100, 3px)",
32
33
  backgroundColor: "var(--ds-background-accent-teal-subtlest, #E7F9FF)",
33
34
  boxShadow: "var(--ds-shadow-raised, ".concat("0 1px 1px 0 ".concat(_colors.N50A, ", 0 0 1px 0 ").concat(_colors.N60A), ")") + ', inset 0 0 0 1px ' + "var(--ds-border-input, ".concat("".concat(_colors.N40A), ")")
34
35
  }), ".".concat(selectedSearchMatchClass), {
@@ -189,7 +189,9 @@ const Replace = ({
189
189
  ref: successReplacementMessageRef
190
190
  }, /*#__PURE__*/React.createElement(ValidMessage, {
191
191
  testId: "message-success-replacement"
192
- }, fakeSuccessReplacementMessageUpdate ? resultsReplace.replace(/ /u, '\u00a0') : resultsReplace)), /*#__PURE__*/React.createElement(Box, {
192
+ }, fakeSuccessReplacementMessageUpdate ?
193
+ // @ts-ignore - TS1501 TypeScript 5.9.2 upgrade
194
+ resultsReplace.replace(/ /u, '\u00a0') : resultsReplace)), /*#__PURE__*/React.createElement(Box, {
193
195
  xcss: actionButtonContainerStyles
194
196
  }, /*#__PURE__*/React.createElement(Inline, {
195
197
  xcss: expValEquals('platform_editor_find_and_replace_improvements', 'isEnabled', true) && fg('platform_editor_find_and_replace_improvements_1') ? [actionButtonInlineStyles, actionButtonParentInlineStylesNew] : [actionButtonInlineStyles, actionButtonParentInlineStyles]
@@ -22,7 +22,8 @@ const mentionSelector = '.editor-mention-primitive';
22
22
  const dateSelector = '.date-lozenger-container>span';
23
23
  export const findReplaceStyles = css({
24
24
  [`.${searchMatchClass}`]: {
25
- borderRadius: '3px',
25
+ // eslint-disable-next-line @atlaskit/design-system/no-unsafe-design-token-usage
26
+ borderRadius: "var(--ds-border-radius-100, 3px)",
26
27
  backgroundColor: "var(--ds-background-accent-teal-subtlest, #E7F9FF)",
27
28
  boxShadow: `var(--ds-shadow-raised, ${`0 1px 1px 0 ${N50A}, 0 0 1px 0 ${N60A}`})` + ', inset 0 0 0 1px ' + `var(--ds-border-input, ${`${N40A}`})`
28
29
  },
@@ -210,7 +210,9 @@ var Replace = function Replace(_ref) {
210
210
  ref: successReplacementMessageRef
211
211
  }, /*#__PURE__*/React.createElement(ValidMessage, {
212
212
  testId: "message-success-replacement"
213
- }, fakeSuccessReplacementMessageUpdate ? resultsReplace.replace(/ /, "\xA0") : resultsReplace)), /*#__PURE__*/React.createElement(Box, {
213
+ }, fakeSuccessReplacementMessageUpdate ?
214
+ // @ts-ignore - TS1501 TypeScript 5.9.2 upgrade
215
+ resultsReplace.replace(/ /, "\xA0") : resultsReplace)), /*#__PURE__*/React.createElement(Box, {
214
216
  xcss: actionButtonContainerStyles
215
217
  }, /*#__PURE__*/React.createElement(Inline, {
216
218
  xcss: expValEquals('platform_editor_find_and_replace_improvements', 'isEnabled', true) && fg('platform_editor_find_and_replace_improvements_1') ? [actionButtonInlineStyles, actionButtonParentInlineStylesNew] : [actionButtonInlineStyles, actionButtonParentInlineStyles]
@@ -23,7 +23,8 @@ var statusSelector = '.lozenge-wrapper';
23
23
  var mentionSelector = '.editor-mention-primitive';
24
24
  var dateSelector = '.date-lozenger-container>span';
25
25
  export var findReplaceStyles = css(_defineProperty(_defineProperty({}, ".".concat(searchMatchClass), {
26
- borderRadius: '3px',
26
+ // eslint-disable-next-line @atlaskit/design-system/no-unsafe-design-token-usage
27
+ borderRadius: "var(--ds-border-radius-100, 3px)",
27
28
  backgroundColor: "var(--ds-background-accent-teal-subtlest, #E7F9FF)",
28
29
  boxShadow: "var(--ds-shadow-raised, ".concat("0 1px 1px 0 ".concat(N50A, ", 0 0 1px 0 ").concat(N60A), ")") + ', inset 0 0 0 1px ' + "var(--ds-border-input, ".concat("".concat(N40A), ")")
29
30
  }), ".".concat(selectedSearchMatchClass), {
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { type TRIGGER_METHOD } from '@atlaskit/editor-common/analytics';
3
2
  import type { NextEditorPlugin, OptionalPlugin } from '@atlaskit/editor-common/types';
4
3
  import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
@@ -7,7 +7,7 @@ export declare const activateWithAnalytics: (editorAnalyticsAPI: EditorAnalytics
7
7
  export declare const findWithAnalytics: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => ({ editorView, containerElement, keyword, }: {
8
8
  editorView: EditorView;
9
9
  containerElement: HTMLElement | null;
10
- keyword?: string | undefined;
10
+ keyword?: string;
11
11
  }) => Command;
12
12
  export declare const findNextWithAnalytics: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined, editorView: EditorView) => ({ triggerMethod, }: {
13
13
  triggerMethod: TRIGGER_METHOD.KEYBOARD | TRIGGER_METHOD.BUTTON;
@@ -1,4 +1,4 @@
1
1
  import type { EditorAnalyticsAPI } from '@atlaskit/editor-common/analytics';
2
2
  import type { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
3
- declare const keymapPlugin: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => SafePlugin<any>;
3
+ declare const keymapPlugin: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => SafePlugin;
4
4
  export default keymapPlugin;
@@ -4,4 +4,4 @@ import type { ExtractInjectionAPI, PMPluginFactoryParams } from '@atlaskit/edito
4
4
  import type { FindReplacePlugin } from '../findReplacePluginType';
5
5
  import type { FindReplacePluginState } from '../types';
6
6
  export declare const initialState: FindReplacePluginState;
7
- export declare const createPlugin: (dispatch: Dispatch, getIntl: PMPluginFactoryParams['getIntl'], api?: ExtractInjectionAPI<FindReplacePlugin>) => SafePlugin<FindReplacePluginState>;
7
+ export declare const createPlugin: (dispatch: Dispatch, getIntl: PMPluginFactoryParams["getIntl"], api?: ExtractInjectionAPI<FindReplacePlugin>) => SafePlugin<FindReplacePluginState>;
@@ -1,3 +1,3 @@
1
1
  import type { Transaction } from '@atlaskit/editor-prosemirror/state';
2
2
  import type { FindReplacePluginState } from '../types';
3
- export declare const createCommand: <A = import("./actions").FindReplaceAction>(action: A | ((state: Readonly<import("prosemirror-state").EditorState>) => false | A), transform?: ((tr: Transaction, state: import("prosemirror-state").EditorState) => Transaction) | undefined) => import("@atlaskit/editor-common/types").Command, getPluginState: (state: import("prosemirror-state").EditorState) => FindReplacePluginState, createPluginState: (dispatch: import("@atlaskit/editor-common/event-dispatcher").Dispatch, initialState: FindReplacePluginState | ((state: import("prosemirror-state").EditorState) => FindReplacePluginState)) => import("prosemirror-state").SafeStateField<FindReplacePluginState>;
3
+ export declare const createCommand: <A = import("./actions").FindReplaceAction>(action: A | ((state: Readonly<import("prosemirror-state").EditorState>) => false | A), transform?: (tr: Transaction, state: import("prosemirror-state").EditorState) => Transaction) => import("@atlaskit/editor-common/types").Command, getPluginState: (state: import("prosemirror-state").EditorState) => FindReplacePluginState, createPluginState: (dispatch: import("@atlaskit/editor-common/event-dispatcher").Dispatch, initialState: FindReplacePluginState | ((state: import("prosemirror-state").EditorState) => FindReplacePluginState)) => import("prosemirror-state").SafeStateField<FindReplacePluginState>;
@@ -31,46 +31,46 @@ export type FindProps = {
31
31
  findTyped: boolean;
32
32
  } & MatchCaseProps;
33
33
  declare const _default: React.FC<import("react-intl-next").WithIntlProps<{
34
- findText?: string | undefined;
34
+ findText?: string;
35
35
  count: {
36
36
  index: number;
37
37
  total: number;
38
38
  };
39
39
  shouldFocus: boolean;
40
40
  onFindBlur: () => void;
41
- onFind: (findText?: string | undefined) => void;
41
+ onFind: (findText?: string) => void;
42
42
  onFindNext: ({ triggerMethod, }: {
43
- triggerMethod: TRIGGER_METHOD.BUTTON | TRIGGER_METHOD.KEYBOARD;
43
+ triggerMethod: TRIGGER_METHOD.KEYBOARD | TRIGGER_METHOD.BUTTON;
44
44
  }) => void;
45
45
  onFindPrev: ({ triggerMethod, }: {
46
- triggerMethod: TRIGGER_METHOD.BUTTON | TRIGGER_METHOD.KEYBOARD;
46
+ triggerMethod: TRIGGER_METHOD.KEYBOARD | TRIGGER_METHOD.BUTTON;
47
47
  }) => void;
48
48
  onFindTextfieldRefSet: (ref: React.RefObject<HTMLInputElement>) => void;
49
49
  onCancel: ({ triggerMethod, }: {
50
- triggerMethod: TRIGGER_METHOD.BUTTON | TRIGGER_METHOD.KEYBOARD | TRIGGER_METHOD.TOOLBAR;
50
+ triggerMethod: TRIGGER_METHOD.KEYBOARD | TRIGGER_METHOD.TOOLBAR | TRIGGER_METHOD.BUTTON;
51
51
  }) => void;
52
52
  onArrowDown: () => void;
53
53
  setFindTyped: (value: boolean) => void;
54
54
  findTyped: boolean;
55
55
  } & MatchCaseProps & WrappedComponentProps>> & {
56
56
  WrappedComponent: React.ComponentType<{
57
- findText?: string | undefined;
57
+ findText?: string;
58
58
  count: {
59
59
  index: number;
60
60
  total: number;
61
61
  };
62
62
  shouldFocus: boolean;
63
63
  onFindBlur: () => void;
64
- onFind: (findText?: string | undefined) => void;
64
+ onFind: (findText?: string) => void;
65
65
  onFindNext: ({ triggerMethod, }: {
66
- triggerMethod: TRIGGER_METHOD.BUTTON | TRIGGER_METHOD.KEYBOARD;
66
+ triggerMethod: TRIGGER_METHOD.KEYBOARD | TRIGGER_METHOD.BUTTON;
67
67
  }) => void;
68
68
  onFindPrev: ({ triggerMethod, }: {
69
- triggerMethod: TRIGGER_METHOD.BUTTON | TRIGGER_METHOD.KEYBOARD;
69
+ triggerMethod: TRIGGER_METHOD.KEYBOARD | TRIGGER_METHOD.BUTTON;
70
70
  }) => void;
71
71
  onFindTextfieldRefSet: (ref: React.RefObject<HTMLInputElement>) => void;
72
72
  onCancel: ({ triggerMethod, }: {
73
- triggerMethod: TRIGGER_METHOD.BUTTON | TRIGGER_METHOD.KEYBOARD | TRIGGER_METHOD.TOOLBAR;
73
+ triggerMethod: TRIGGER_METHOD.KEYBOARD | TRIGGER_METHOD.TOOLBAR | TRIGGER_METHOD.BUTTON;
74
74
  }) => void;
75
75
  onArrowDown: () => void;
76
76
  setFindTyped: (value: boolean) => void;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { type TRIGGER_METHOD } from '@atlaskit/editor-common/analytics';
3
2
  import type { NextEditorPlugin, OptionalPlugin } from '@atlaskit/editor-common/types';
4
3
  import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
@@ -7,7 +7,7 @@ export declare const activateWithAnalytics: (editorAnalyticsAPI: EditorAnalytics
7
7
  export declare const findWithAnalytics: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => ({ editorView, containerElement, keyword, }: {
8
8
  editorView: EditorView;
9
9
  containerElement: HTMLElement | null;
10
- keyword?: string | undefined;
10
+ keyword?: string;
11
11
  }) => Command;
12
12
  export declare const findNextWithAnalytics: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined, editorView: EditorView) => ({ triggerMethod, }: {
13
13
  triggerMethod: TRIGGER_METHOD.KEYBOARD | TRIGGER_METHOD.BUTTON;
@@ -1,4 +1,4 @@
1
1
  import type { EditorAnalyticsAPI } from '@atlaskit/editor-common/analytics';
2
2
  import type { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
3
- declare const keymapPlugin: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => SafePlugin<any>;
3
+ declare const keymapPlugin: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => SafePlugin;
4
4
  export default keymapPlugin;
@@ -4,4 +4,4 @@ import type { ExtractInjectionAPI, PMPluginFactoryParams } from '@atlaskit/edito
4
4
  import type { FindReplacePlugin } from '../findReplacePluginType';
5
5
  import type { FindReplacePluginState } from '../types';
6
6
  export declare const initialState: FindReplacePluginState;
7
- export declare const createPlugin: (dispatch: Dispatch, getIntl: PMPluginFactoryParams['getIntl'], api?: ExtractInjectionAPI<FindReplacePlugin>) => SafePlugin<FindReplacePluginState>;
7
+ export declare const createPlugin: (dispatch: Dispatch, getIntl: PMPluginFactoryParams["getIntl"], api?: ExtractInjectionAPI<FindReplacePlugin>) => SafePlugin<FindReplacePluginState>;
@@ -1,3 +1,3 @@
1
1
  import type { Transaction } from '@atlaskit/editor-prosemirror/state';
2
2
  import type { FindReplacePluginState } from '../types';
3
- export declare const createCommand: <A = import("./actions").FindReplaceAction>(action: A | ((state: Readonly<import("prosemirror-state").EditorState>) => false | A), transform?: ((tr: Transaction, state: import("prosemirror-state").EditorState) => Transaction) | undefined) => import("@atlaskit/editor-common/types").Command, getPluginState: (state: import("prosemirror-state").EditorState) => FindReplacePluginState, createPluginState: (dispatch: import("@atlaskit/editor-common/event-dispatcher").Dispatch, initialState: FindReplacePluginState | ((state: import("prosemirror-state").EditorState) => FindReplacePluginState)) => import("prosemirror-state").SafeStateField<FindReplacePluginState>;
3
+ export declare const createCommand: <A = import("./actions").FindReplaceAction>(action: A | ((state: Readonly<import("prosemirror-state").EditorState>) => false | A), transform?: (tr: Transaction, state: import("prosemirror-state").EditorState) => Transaction) => import("@atlaskit/editor-common/types").Command, getPluginState: (state: import("prosemirror-state").EditorState) => FindReplacePluginState, createPluginState: (dispatch: import("@atlaskit/editor-common/event-dispatcher").Dispatch, initialState: FindReplacePluginState | ((state: import("prosemirror-state").EditorState) => FindReplacePluginState)) => import("prosemirror-state").SafeStateField<FindReplacePluginState>;
@@ -31,46 +31,46 @@ export type FindProps = {
31
31
  findTyped: boolean;
32
32
  } & MatchCaseProps;
33
33
  declare const _default: React.FC<import("react-intl-next").WithIntlProps<{
34
- findText?: string | undefined;
34
+ findText?: string;
35
35
  count: {
36
36
  index: number;
37
37
  total: number;
38
38
  };
39
39
  shouldFocus: boolean;
40
40
  onFindBlur: () => void;
41
- onFind: (findText?: string | undefined) => void;
41
+ onFind: (findText?: string) => void;
42
42
  onFindNext: ({ triggerMethod, }: {
43
- triggerMethod: TRIGGER_METHOD.BUTTON | TRIGGER_METHOD.KEYBOARD;
43
+ triggerMethod: TRIGGER_METHOD.KEYBOARD | TRIGGER_METHOD.BUTTON;
44
44
  }) => void;
45
45
  onFindPrev: ({ triggerMethod, }: {
46
- triggerMethod: TRIGGER_METHOD.BUTTON | TRIGGER_METHOD.KEYBOARD;
46
+ triggerMethod: TRIGGER_METHOD.KEYBOARD | TRIGGER_METHOD.BUTTON;
47
47
  }) => void;
48
48
  onFindTextfieldRefSet: (ref: React.RefObject<HTMLInputElement>) => void;
49
49
  onCancel: ({ triggerMethod, }: {
50
- triggerMethod: TRIGGER_METHOD.BUTTON | TRIGGER_METHOD.KEYBOARD | TRIGGER_METHOD.TOOLBAR;
50
+ triggerMethod: TRIGGER_METHOD.KEYBOARD | TRIGGER_METHOD.TOOLBAR | TRIGGER_METHOD.BUTTON;
51
51
  }) => void;
52
52
  onArrowDown: () => void;
53
53
  setFindTyped: (value: boolean) => void;
54
54
  findTyped: boolean;
55
55
  } & MatchCaseProps & WrappedComponentProps>> & {
56
56
  WrappedComponent: React.ComponentType<{
57
- findText?: string | undefined;
57
+ findText?: string;
58
58
  count: {
59
59
  index: number;
60
60
  total: number;
61
61
  };
62
62
  shouldFocus: boolean;
63
63
  onFindBlur: () => void;
64
- onFind: (findText?: string | undefined) => void;
64
+ onFind: (findText?: string) => void;
65
65
  onFindNext: ({ triggerMethod, }: {
66
- triggerMethod: TRIGGER_METHOD.BUTTON | TRIGGER_METHOD.KEYBOARD;
66
+ triggerMethod: TRIGGER_METHOD.KEYBOARD | TRIGGER_METHOD.BUTTON;
67
67
  }) => void;
68
68
  onFindPrev: ({ triggerMethod, }: {
69
- triggerMethod: TRIGGER_METHOD.BUTTON | TRIGGER_METHOD.KEYBOARD;
69
+ triggerMethod: TRIGGER_METHOD.KEYBOARD | TRIGGER_METHOD.BUTTON;
70
70
  }) => void;
71
71
  onFindTextfieldRefSet: (ref: React.RefObject<HTMLInputElement>) => void;
72
72
  onCancel: ({ triggerMethod, }: {
73
- triggerMethod: TRIGGER_METHOD.BUTTON | TRIGGER_METHOD.KEYBOARD | TRIGGER_METHOD.TOOLBAR;
73
+ triggerMethod: TRIGGER_METHOD.KEYBOARD | TRIGGER_METHOD.TOOLBAR | TRIGGER_METHOD.BUTTON;
74
74
  }) => void;
75
75
  onArrowDown: () => void;
76
76
  setFindTyped: (value: boolean) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-find-replace",
3
- "version": "3.2.1",
3
+ "version": "3.2.3",
4
4
  "description": "find replace plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -32,23 +32,23 @@
32
32
  "./styles": "./src/ui/styles.ts"
33
33
  },
34
34
  "dependencies": {
35
- "@atlaskit/button": "^23.3.0",
35
+ "@atlaskit/button": "^23.4.0",
36
36
  "@atlaskit/editor-plugin-analytics": "^3.0.0",
37
- "@atlaskit/editor-plugin-card": "^7.2.0",
37
+ "@atlaskit/editor-plugin-card": "^7.4.0",
38
38
  "@atlaskit/editor-plugin-expand": "^4.2.0",
39
39
  "@atlaskit/editor-plugin-mentions": "^5.2.0",
40
40
  "@atlaskit/editor-plugin-primary-toolbar": "^4.1.0",
41
41
  "@atlaskit/editor-prosemirror": "7.0.0",
42
- "@atlaskit/editor-shared-styles": "^3.5.0",
43
- "@atlaskit/form": "^12.0.0",
44
- "@atlaskit/icon": "^27.9.0",
45
- "@atlaskit/icon-lab": "^5.3.0",
42
+ "@atlaskit/editor-shared-styles": "^3.6.0",
43
+ "@atlaskit/form": "^12.1.0",
44
+ "@atlaskit/icon": "^27.12.0",
45
+ "@atlaskit/icon-lab": "^5.6.0",
46
46
  "@atlaskit/mention": "^24.2.0",
47
47
  "@atlaskit/platform-feature-flags": "^1.1.0",
48
48
  "@atlaskit/primitives": "^14.11.0",
49
49
  "@atlaskit/textfield": "^8.0.0",
50
50
  "@atlaskit/theme": "^19.0.0",
51
- "@atlaskit/tmp-editor-statsig": "^9.22.0",
51
+ "@atlaskit/tmp-editor-statsig": "^10.0.0",
52
52
  "@atlaskit/tokens": "^6.0.0",
53
53
  "@atlaskit/tooltip": "^20.4.0",
54
54
  "@babel/runtime": "^7.0.0",
@@ -59,7 +59,7 @@
59
59
  },
60
60
  "devDependencies": {
61
61
  "@af/visual-regression": "workspace:^",
62
- "@atlaskit/editor-plugin-block-type": "^6.1.0",
62
+ "@atlaskit/editor-plugin-block-type": "^6.2.0",
63
63
  "@atlaskit/editor-plugin-text-formatting": "^3.0.0",
64
64
  "@testing-library/react": "^13.4.0",
65
65
  "@testing-library/user-event": "^14.4.3",
@@ -68,7 +68,7 @@
68
68
  "react-dom": "^18.2.0"
69
69
  },
70
70
  "peerDependencies": {
71
- "@atlaskit/editor-common": "^107.16.0",
71
+ "@atlaskit/editor-common": "^107.25.0",
72
72
  "react": "^18.2.0",
73
73
  "react-intl-next": "npm:react-intl@^5.18.1"
74
74
  },