@atlaskit/editor-plugin-annotation 1.5.5 → 1.5.7

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,17 @@
1
1
  # @atlaskit/editor-plugin-annotation
2
2
 
3
+ ## 1.5.7
4
+
5
+ ### Patch Changes
6
+
7
+ - [#87596](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/87596) [`e0b95c3a4fba`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e0b95c3a4fba) - Add new UI badge for media node to trigger comments
8
+
9
+ ## 1.5.6
10
+
11
+ ### Patch Changes
12
+
13
+ - [#87089](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/87089) [`5d130cbb8277`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5d130cbb8277) - Change statsig gates to LD FFs
14
+
3
15
  ## 1.5.5
4
16
 
5
17
  ### Patch Changes
package/dist/cjs/index.js CHANGED
@@ -9,11 +9,4 @@ Object.defineProperty(exports, "annotationPlugin", {
9
9
  return _plugin.annotationPlugin;
10
10
  }
11
11
  });
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");
12
+ var _plugin = require("./plugin");
@@ -1,2 +1 @@
1
- export { annotationPlugin } from './plugin';
2
- export { getAllAnnotations } from './utils';
1
+ export { annotationPlugin } from './plugin';
package/dist/esm/index.js CHANGED
@@ -1,2 +1 @@
1
- export { annotationPlugin } from './plugin';
2
- export { getAllAnnotations } from './utils';
1
+ export { annotationPlugin } from './plugin';
@@ -1,4 +1,3 @@
1
1
  export { annotationPlugin } from './plugin';
2
- export { getAllAnnotations } from './utils';
3
2
  export type { AnnotationPlugin, AnnotationProviders, InlineCommentAnnotationProvider, AnnotationInfo, InlineCommentCreateComponentProps, InlineCommentViewComponentProps, AnnotationState, AnnotationTypeProvider, InlineCommentState, TargetType, InlineCommentInputMethod, } from './types';
4
3
  export type { InlineCommentMap, InlineCommentPluginState, InlineCommentPluginOptions, InlineCommentAction, } from './pm-plugins/types';
@@ -23,7 +23,7 @@ export type InlineCommentInputMethod = INPUT_METHOD.TOOLBAR | INPUT_METHOD.SHORT
23
23
  type SetInlineCommentDraftState = (drafting: boolean, inputMethod: InlineCommentInputMethod,
24
24
  /** @default 'inline' */
25
25
  targetType?: TargetType,
26
- /** check for platform_editor_media_comments_base feature gate */
26
+ /** check for confluence.frontend.fabric.editor.comments-on-media feature flag */
27
27
  isCommentOnMediaOn?: boolean) => Command;
28
28
  export type AnnotationPlugin = NextEditorPlugin<'annotation', {
29
29
  pluginConfiguration: AnnotationProviders | undefined;
@@ -1,4 +1,3 @@
1
1
  export { annotationPlugin } from './plugin';
2
- export { getAllAnnotations } from './utils';
3
2
  export type { AnnotationPlugin, AnnotationProviders, InlineCommentAnnotationProvider, AnnotationInfo, InlineCommentCreateComponentProps, InlineCommentViewComponentProps, AnnotationState, AnnotationTypeProvider, InlineCommentState, TargetType, InlineCommentInputMethod, } from './types';
4
3
  export type { InlineCommentMap, InlineCommentPluginState, InlineCommentPluginOptions, InlineCommentAction, } from './pm-plugins/types';
@@ -23,7 +23,7 @@ export type InlineCommentInputMethod = INPUT_METHOD.TOOLBAR | INPUT_METHOD.SHORT
23
23
  type SetInlineCommentDraftState = (drafting: boolean, inputMethod: InlineCommentInputMethod,
24
24
  /** @default 'inline' */
25
25
  targetType?: TargetType,
26
- /** check for platform_editor_media_comments_base feature gate */
26
+ /** check for confluence.frontend.fabric.editor.comments-on-media feature flag */
27
27
  isCommentOnMediaOn?: boolean) => Command;
28
28
  export type AnnotationPlugin = NextEditorPlugin<'annotation', {
29
29
  pluginConfiguration: AnnotationProviders | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-annotation",
3
- "version": "1.5.5",
3
+ "version": "1.5.7",
4
4
  "description": "Annotation plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",