@atlaskit/editor-plugin-annotation 12.0.32 → 12.1.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/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @atlaskit/editor-plugin-annotation
2
2
 
3
+ ## 12.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`51c33ef5349b6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/51c33ef5349b6) -
8
+ Enable compatibility with React 19.2.0
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies
13
+
14
+ ## 12.0.33
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies
19
+
3
20
  ## 12.0.32
4
21
 
5
22
  ### Patch Changes
@@ -1,3 +1,3 @@
1
1
  import type { InlineCommentAction, InlineCommentPluginState } from './types';
2
- declare const _default: (pluginState: InlineCommentPluginState, action: InlineCommentAction) => InlineCommentPluginState;
3
2
  export default _default;
3
+ declare function _default(pluginState: InlineCommentPluginState, action: InlineCommentAction): InlineCommentPluginState;
@@ -29,6 +29,6 @@ export declare const fireCommentButtonViewedAnalyticsEvent: ({ api, isNonTextInl
29
29
  export declare const startCommentExperience: ({ annotationProviders, api, state, dispatch, }: {
30
30
  annotationProviders: AnnotationProviders;
31
31
  api: ExtractInjectionAPI<AnnotationPlugin>;
32
- dispatch: EditorView["dispatch"];
32
+ dispatch: EditorView['dispatch'];
33
33
  state: EditorState;
34
34
  }) => boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-annotation",
3
- "version": "12.0.32",
3
+ "version": "12.1.0",
4
4
  "description": "Annotation plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -19,31 +19,31 @@
19
19
  "sideEffects": false,
20
20
  "atlaskit:src": "src/index.ts",
21
21
  "dependencies": {
22
- "@atlaskit/adf-schema": "^56.1.0",
23
- "@atlaskit/editor-plugin-analytics": "^12.0.0",
24
- "@atlaskit/editor-plugin-connectivity": "^12.0.0",
25
- "@atlaskit/editor-plugin-editor-viewmode-effects": "^12.0.0",
22
+ "@atlaskit/adf-schema": "^56.2.0",
23
+ "@atlaskit/editor-plugin-analytics": "^12.1.0",
24
+ "@atlaskit/editor-plugin-connectivity": "^12.1.0",
25
+ "@atlaskit/editor-plugin-editor-viewmode-effects": "^12.1.0",
26
26
  "@atlaskit/editor-plugin-feature-flags": "^11.0.0",
27
- "@atlaskit/editor-plugin-toolbar": "^9.0.0",
28
- "@atlaskit/editor-plugin-user-intent": "^10.1.0",
27
+ "@atlaskit/editor-plugin-toolbar": "^9.1.0",
28
+ "@atlaskit/editor-plugin-user-intent": "^10.2.0",
29
29
  "@atlaskit/editor-prosemirror": "^8.0.0",
30
- "@atlaskit/editor-toolbar": "^2.3.0",
31
- "@atlaskit/editor-toolbar-model": "^1.1.0",
30
+ "@atlaskit/editor-toolbar": "^2.4.0",
31
+ "@atlaskit/editor-toolbar-model": "^1.2.0",
32
32
  "@atlaskit/icon": "^37.2.0",
33
33
  "@atlaskit/platform-feature-flags": "^2.1.0",
34
- "@atlaskit/tmp-editor-statsig": "^134.0.0",
34
+ "@atlaskit/tmp-editor-statsig": "^135.7.0",
35
35
  "@babel/runtime": "^7.0.0"
36
36
  },
37
37
  "peerDependencies": {
38
- "@atlaskit/editor-common": "^116.40.0",
39
- "react": "^18.2.0",
40
- "react-dom": "^18.2.0",
38
+ "@atlaskit/editor-common": "^116.45.0",
39
+ "react": "^18.2.0 || ^19.2.0",
40
+ "react-dom": "^18.2.0 || ^19.2.0",
41
41
  "react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@testing-library/react": "^16.3.0",
45
- "react": "^18.2.0",
46
- "react-dom": "^18.2.0",
45
+ "react": "^19.2.0",
46
+ "react-dom": "^19.2.0",
47
47
  "react-intl": "^7.0.0",
48
48
  "wait-for-expect": "^1.2.0"
49
49
  },