@atlaskit/editor-plugin-annotation 1.5.4 → 1.5.5

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,11 @@
1
1
  # @atlaskit/editor-plugin-annotation
2
2
 
3
+ ## 1.5.5
4
+
5
+ ### Patch Changes
6
+
7
+ - [#87191](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/87191) [`f24bc58a479e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f24bc58a479e) - Exporting getAllAnnotations function to be used outside the package
8
+
3
9
  ## 1.5.4
4
10
 
5
11
  ### Patch Changes
package/dist/cjs/index.js CHANGED
@@ -9,4 +9,11 @@ Object.defineProperty(exports, "annotationPlugin", {
9
9
  return _plugin.annotationPlugin;
10
10
  }
11
11
  });
12
- var _plugin = require("./plugin");
12
+ Object.defineProperty(exports, "getAllAnnotations", {
13
+ enumerable: true,
14
+ get: function get() {
15
+ return _utils.getAllAnnotations;
16
+ }
17
+ });
18
+ var _plugin = require("./plugin");
19
+ var _utils = require("./utils");
@@ -1 +1,2 @@
1
- export { annotationPlugin } from './plugin';
1
+ export { annotationPlugin } from './plugin';
2
+ export { getAllAnnotations } from './utils';
package/dist/esm/index.js CHANGED
@@ -1 +1,2 @@
1
- export { annotationPlugin } from './plugin';
1
+ export { annotationPlugin } from './plugin';
2
+ export { getAllAnnotations } from './utils';
@@ -1,3 +1,4 @@
1
1
  export { annotationPlugin } from './plugin';
2
+ export { getAllAnnotations } from './utils';
2
3
  export type { AnnotationPlugin, AnnotationProviders, InlineCommentAnnotationProvider, AnnotationInfo, InlineCommentCreateComponentProps, InlineCommentViewComponentProps, AnnotationState, AnnotationTypeProvider, InlineCommentState, TargetType, InlineCommentInputMethod, } from './types';
3
4
  export type { InlineCommentMap, InlineCommentPluginState, InlineCommentPluginOptions, InlineCommentAction, } from './pm-plugins/types';
@@ -1,3 +1,4 @@
1
1
  export { annotationPlugin } from './plugin';
2
+ export { getAllAnnotations } from './utils';
2
3
  export type { AnnotationPlugin, AnnotationProviders, InlineCommentAnnotationProvider, AnnotationInfo, InlineCommentCreateComponentProps, InlineCommentViewComponentProps, AnnotationState, AnnotationTypeProvider, InlineCommentState, TargetType, InlineCommentInputMethod, } from './types';
3
4
  export type { InlineCommentMap, InlineCommentPluginState, InlineCommentPluginOptions, InlineCommentAction, } from './pm-plugins/types';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-annotation",
3
- "version": "1.5.4",
3
+ "version": "1.5.5",
4
4
  "description": "Annotation plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "dependencies": {
35
35
  "@atlaskit/adf-schema": "^35.8.0",
36
- "@atlaskit/editor-common": "^78.22.0",
36
+ "@atlaskit/editor-common": "^78.23.0",
37
37
  "@atlaskit/editor-plugin-analytics": "^1.0.0",
38
38
  "@atlaskit/editor-plugin-editor-viewmode": "^1.0.0",
39
39
  "@atlaskit/editor-plugin-feature-flags": "^1.0.0",