@atlaskit/editor-core 193.19.0 → 193.19.6

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.
Files changed (40) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/dist/cjs/create-editor/create-plugins-list.js +0 -1
  3. package/dist/cjs/create-editor/create-preset.js +1 -0
  4. package/dist/cjs/presets/default.js +1 -3
  5. package/dist/cjs/presets/universal.js +12 -2
  6. package/dist/cjs/test-utils.js +7 -1
  7. package/dist/cjs/ui/ContentStyles/index.js +10 -3
  8. package/dist/cjs/ui/ContentStyles/layout.js +3 -1
  9. package/dist/cjs/version-wrapper.js +1 -1
  10. package/dist/es2019/create-editor/create-plugins-list.js +0 -1
  11. package/dist/es2019/create-editor/create-preset.js +1 -0
  12. package/dist/es2019/presets/default.js +1 -3
  13. package/dist/es2019/presets/universal.js +12 -2
  14. package/dist/es2019/test-utils.js +7 -1
  15. package/dist/es2019/ui/ContentStyles/index.js +11 -3
  16. package/dist/es2019/ui/ContentStyles/layout.js +4 -4
  17. package/dist/es2019/version-wrapper.js +1 -1
  18. package/dist/esm/create-editor/create-plugins-list.js +0 -1
  19. package/dist/esm/create-editor/create-preset.js +1 -0
  20. package/dist/esm/presets/default.js +1 -3
  21. package/dist/esm/presets/universal.js +12 -2
  22. package/dist/esm/test-utils.js +7 -1
  23. package/dist/esm/ui/ContentStyles/index.js +10 -3
  24. package/dist/esm/ui/ContentStyles/layout.js +3 -1
  25. package/dist/esm/version-wrapper.js +1 -1
  26. package/dist/types/create-editor/create-preset.d.ts +9 -9
  27. package/dist/types/presets/default.d.ts +6 -6
  28. package/dist/types/presets/universal.d.ts +9 -9
  29. package/dist/types/presets/useUniversalPreset.d.ts +9 -9
  30. package/dist/types/ui/Appearance/FullPage/StyledComponents.d.ts +2 -0
  31. package/dist/types/ui/ContentStyles/index.d.ts +1 -0
  32. package/dist/types/ui/ContentStyles/layout.d.ts +1 -1
  33. package/dist/types-ts4.5/create-editor/create-preset.d.ts +9 -9
  34. package/dist/types-ts4.5/presets/default.d.ts +6 -6
  35. package/dist/types-ts4.5/presets/universal.d.ts +9 -9
  36. package/dist/types-ts4.5/presets/useUniversalPreset.d.ts +9 -9
  37. package/dist/types-ts4.5/ui/Appearance/FullPage/StyledComponents.d.ts +2 -0
  38. package/dist/types-ts4.5/ui/ContentStyles/index.d.ts +1 -0
  39. package/dist/types-ts4.5/ui/ContentStyles/layout.d.ts +1 -1
  40. package/package.json +10 -10
@@ -818,7 +818,7 @@ export default function useUniversalPreset({ props }: PresetProps): import("@atl
818
818
  actions: {
819
819
  stripNonExistingAnnotations: (slice: import("prosemirror-model").Slice, state: import("prosemirror-state").EditorState) => boolean | undefined;
820
820
  setInlineCommentDraftState: (drafting: boolean, inputMethod: import("@atlaskit/editor-plugin-annotation").InlineCommentInputMethod, targetType?: import("@atlaskit/editor-plugin-annotation").TargetType | undefined, isCommentOnMediaOn?: boolean | undefined, targetNodeId?: string | undefined) => import("@atlaskit/editor-common/types").Command;
821
- showCommentForBlockNode: (node: import("prosemirror-model").Node | null) => import("@atlaskit/editor-common/types").Command;
821
+ showCommentForBlockNode: (node: import("prosemirror-model").Node | null, viewMethod?: import("@atlaskit/editor-common/analytics").VIEW_METHOD | undefined) => import("@atlaskit/editor-common/types").Command;
822
822
  };
823
823
  }, import("@atlaskit/editor-plugin-annotation").AnnotationProviders | undefined>>
824
824
  ];
@@ -962,7 +962,7 @@ export default function useUniversalPreset({ props }: PresetProps): import("@atl
962
962
  actions: {
963
963
  stripNonExistingAnnotations: (slice: import("prosemirror-model").Slice, state: import("prosemirror-state").EditorState) => boolean | undefined;
964
964
  setInlineCommentDraftState: (drafting: boolean, inputMethod: import("@atlaskit/editor-plugin-annotation").InlineCommentInputMethod, targetType?: import("@atlaskit/editor-plugin-annotation").TargetType | undefined, isCommentOnMediaOn?: boolean | undefined, targetNodeId?: string | undefined) => import("@atlaskit/editor-common/types").Command;
965
- showCommentForBlockNode: (node: import("prosemirror-model").Node | null) => import("@atlaskit/editor-common/types").Command;
965
+ showCommentForBlockNode: (node: import("prosemirror-model").Node | null, viewMethod?: import("@atlaskit/editor-common/analytics").VIEW_METHOD | undefined) => import("@atlaskit/editor-common/types").Command;
966
966
  };
967
967
  }, import("@atlaskit/editor-plugin-annotation").AnnotationProviders | undefined>>
968
968
  ];
@@ -1820,7 +1820,7 @@ export default function useUniversalPreset({ props }: PresetProps): import("@atl
1820
1820
  actions: {
1821
1821
  stripNonExistingAnnotations: (slice: import("prosemirror-model").Slice, state: import("prosemirror-state").EditorState) => boolean | undefined;
1822
1822
  setInlineCommentDraftState: (drafting: boolean, inputMethod: import("@atlaskit/editor-plugin-annotation").InlineCommentInputMethod, targetType?: import("@atlaskit/editor-plugin-annotation").TargetType | undefined, isCommentOnMediaOn?: boolean | undefined, targetNodeId?: string | undefined) => import("@atlaskit/editor-common/types").Command;
1823
- showCommentForBlockNode: (node: import("prosemirror-model").Node | null) => import("@atlaskit/editor-common/types").Command;
1823
+ showCommentForBlockNode: (node: import("prosemirror-model").Node | null, viewMethod?: import("@atlaskit/editor-common/analytics").VIEW_METHOD | undefined) => import("@atlaskit/editor-common/types").Command;
1824
1824
  };
1825
1825
  }, import("@atlaskit/editor-plugin-annotation").AnnotationProviders | undefined>>,
1826
1826
  import("@atlaskit/editor-common/types").MaybePlugin<import("@atlaskit/editor-plugin-clear-marks-on-empty-doc").ClearMarksOnEmptyDocPlugin<"extension", {
@@ -2319,7 +2319,7 @@ export default function useUniversalPreset({ props }: PresetProps): import("@atl
2319
2319
  actions: {
2320
2320
  stripNonExistingAnnotations: (slice: import("prosemirror-model").Slice, state: import("prosemirror-state").EditorState) => boolean | undefined;
2321
2321
  setInlineCommentDraftState: (drafting: boolean, inputMethod: import("@atlaskit/editor-plugin-annotation").InlineCommentInputMethod, targetType?: import("@atlaskit/editor-plugin-annotation").TargetType | undefined, isCommentOnMediaOn?: boolean | undefined, targetNodeId?: string | undefined) => import("@atlaskit/editor-common/types").Command;
2322
- showCommentForBlockNode: (node: import("prosemirror-model").Node | null) => import("@atlaskit/editor-common/types").Command;
2322
+ showCommentForBlockNode: (node: import("prosemirror-model").Node | null, viewMethod?: import("@atlaskit/editor-common/analytics").VIEW_METHOD | undefined) => import("@atlaskit/editor-common/types").Command;
2323
2323
  };
2324
2324
  }, import("@atlaskit/editor-plugin-annotation").AnnotationProviders | undefined>>
2325
2325
  ];
@@ -3200,7 +3200,7 @@ export default function useUniversalPreset({ props }: PresetProps): import("@atl
3200
3200
  actions: {
3201
3201
  stripNonExistingAnnotations: (slice: import("prosemirror-model").Slice, state: import("prosemirror-state").EditorState) => boolean | undefined;
3202
3202
  setInlineCommentDraftState: (drafting: boolean, inputMethod: import("@atlaskit/editor-plugin-annotation").InlineCommentInputMethod, targetType?: import("@atlaskit/editor-plugin-annotation").TargetType | undefined, isCommentOnMediaOn?: boolean | undefined, targetNodeId?: string | undefined) => import("@atlaskit/editor-common/types").Command;
3203
- showCommentForBlockNode: (node: import("prosemirror-model").Node | null) => import("@atlaskit/editor-common/types").Command;
3203
+ showCommentForBlockNode: (node: import("prosemirror-model").Node | null, viewMethod?: import("@atlaskit/editor-common/analytics").VIEW_METHOD | undefined) => import("@atlaskit/editor-common/types").Command;
3204
3204
  };
3205
3205
  }, import("@atlaskit/editor-plugin-annotation").AnnotationProviders | undefined>>
3206
3206
  ];
@@ -3288,7 +3288,7 @@ export default function useUniversalPreset({ props }: PresetProps): import("@atl
3288
3288
  actions: {
3289
3289
  stripNonExistingAnnotations: (slice: import("prosemirror-model").Slice, state: import("prosemirror-state").EditorState) => boolean | undefined;
3290
3290
  setInlineCommentDraftState: (drafting: boolean, inputMethod: import("@atlaskit/editor-plugin-annotation").InlineCommentInputMethod, targetType?: import("@atlaskit/editor-plugin-annotation").TargetType | undefined, isCommentOnMediaOn?: boolean | undefined, targetNodeId?: string | undefined) => import("@atlaskit/editor-common/types").Command;
3291
- showCommentForBlockNode: (node: import("prosemirror-model").Node | null) => import("@atlaskit/editor-common/types").Command;
3291
+ showCommentForBlockNode: (node: import("prosemirror-model").Node | null, viewMethod?: import("@atlaskit/editor-common/analytics").VIEW_METHOD | undefined) => import("@atlaskit/editor-common/types").Command;
3292
3292
  };
3293
3293
  }, import("@atlaskit/editor-plugin-annotation").AnnotationProviders | undefined>>,
3294
3294
  import("@atlaskit/editor-common/types").MaybePlugin<import("@atlaskit/editor-plugin-clear-marks-on-empty-doc").ClearMarksOnEmptyDocPlugin<"grid", {
@@ -4238,7 +4238,7 @@ export default function useUniversalPreset({ props }: PresetProps): import("@atl
4238
4238
  actions: {
4239
4239
  stripNonExistingAnnotations: (slice: import("prosemirror-model").Slice, state: import("prosemirror-state").EditorState) => boolean | undefined;
4240
4240
  setInlineCommentDraftState: (drafting: boolean, inputMethod: import("@atlaskit/editor-plugin-annotation").InlineCommentInputMethod, targetType?: import("@atlaskit/editor-plugin-annotation").TargetType | undefined, isCommentOnMediaOn?: boolean | undefined, targetNodeId?: string | undefined) => import("@atlaskit/editor-common/types").Command;
4241
- showCommentForBlockNode: (node: import("prosemirror-model").Node | null) => import("@atlaskit/editor-common/types").Command;
4241
+ showCommentForBlockNode: (node: import("prosemirror-model").Node | null, viewMethod?: import("@atlaskit/editor-common/analytics").VIEW_METHOD | undefined) => import("@atlaskit/editor-common/types").Command;
4242
4242
  };
4243
4243
  }, import("@atlaskit/editor-plugin-annotation").AnnotationProviders | undefined>>
4244
4244
  ];
@@ -5389,7 +5389,7 @@ export default function useUniversalPreset({ props }: PresetProps): import("@atl
5389
5389
  actions: {
5390
5390
  stripNonExistingAnnotations: (slice: import("prosemirror-model").Slice, state: import("prosemirror-state").EditorState) => boolean | undefined;
5391
5391
  setInlineCommentDraftState: (drafting: boolean, inputMethod: import("@atlaskit/editor-plugin-annotation").InlineCommentInputMethod, targetType?: import("@atlaskit/editor-plugin-annotation").TargetType | undefined, isCommentOnMediaOn?: boolean | undefined, targetNodeId?: string | undefined) => import("@atlaskit/editor-common/types").Command;
5392
- showCommentForBlockNode: (node: import("prosemirror-model").Node | null) => import("@atlaskit/editor-common/types").Command;
5392
+ showCommentForBlockNode: (node: import("prosemirror-model").Node | null, viewMethod?: import("@atlaskit/editor-common/analytics").VIEW_METHOD | undefined) => import("@atlaskit/editor-common/types").Command;
5393
5393
  };
5394
5394
  }, import("@atlaskit/editor-plugin-annotation").AnnotationProviders | undefined>>
5395
5395
  ];
@@ -5533,7 +5533,7 @@ export default function useUniversalPreset({ props }: PresetProps): import("@atl
5533
5533
  actions: {
5534
5534
  stripNonExistingAnnotations: (slice: import("prosemirror-model").Slice, state: import("prosemirror-state").EditorState) => boolean | undefined;
5535
5535
  setInlineCommentDraftState: (drafting: boolean, inputMethod: import("@atlaskit/editor-plugin-annotation").InlineCommentInputMethod, targetType?: import("@atlaskit/editor-plugin-annotation").TargetType | undefined, isCommentOnMediaOn?: boolean | undefined, targetNodeId?: string | undefined) => import("@atlaskit/editor-common/types").Command;
5536
- showCommentForBlockNode: (node: import("prosemirror-model").Node | null) => import("@atlaskit/editor-common/types").Command;
5536
+ showCommentForBlockNode: (node: import("prosemirror-model").Node | null, viewMethod?: import("@atlaskit/editor-common/analytics").VIEW_METHOD | undefined) => import("@atlaskit/editor-common/types").Command;
5537
5537
  };
5538
5538
  }, import("@atlaskit/editor-plugin-annotation").AnnotationProviders | undefined>>
5539
5539
  ];
@@ -4,10 +4,12 @@ export declare const ScrollContainer: import("react").ForwardRefExoticComponent<
4
4
  theme?: any;
5
5
  colorMode?: "light" | "dark" | undefined;
6
6
  featureFlags?: import("@atlaskit/editor-common/types").FeatureFlags | undefined;
7
+ viewMode?: "view" | "edit" | undefined;
7
8
  } & import("react").HTMLProps<HTMLDivElement>, "headers" | "method" | "id" | "default" | "cite" | "data" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "pattern" | "children" | "dir" | "color" | "content" | "height" | "translate" | "width" | "key" | "name" | "property" | "type" | "disabled" | "defaultValue" | "onChange" | "placeholder" | "media" | "value" | "list" | "open" | "accessKey" | "className" | "role" | "start" | "action" | "step" | "wrap" | "hidden" | keyof {
8
9
  theme?: any;
9
10
  colorMode?: "light" | "dark" | undefined;
10
11
  featureFlags?: import("@atlaskit/editor-common/types").FeatureFlags | undefined;
12
+ viewMode?: "view" | "edit" | undefined;
11
13
  } | "accept" | "acceptCharset" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoFocus" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "mediaGroup" | "min" | "minLength" | "multiple" | "muted" | "nonce" | "noValidate" | "optimum" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "size" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "target" | "useMap" | "wmode" | "defaultChecked" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "contentEditable" | "contextMenu" | "draggable" | "lang" | "spellCheck" | "tabIndex" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & import("react").RefAttributes<HTMLDivElement>>;
12
14
  export declare const positionedOverEditorStyle: import("@emotion/react").SerializedStyles;
13
15
  export declare const contentArea: import("@emotion/react").SerializedStyles;
@@ -7,6 +7,7 @@ type ContentStylesProps = {
7
7
  theme?: any;
8
8
  colorMode?: 'light' | 'dark';
9
9
  featureFlags?: FeatureFlags;
10
+ viewMode?: 'view' | 'edit';
10
11
  };
11
12
  export declare const placeholderStyles: SerializedStyles;
12
13
  type Props = ContentStylesProps & React.HTMLProps<HTMLDivElement>;
@@ -1,3 +1,3 @@
1
1
  import { LAYOUT_COLUMN_PADDING, LAYOUT_SECTION_MARGIN } from '@atlaskit/editor-common/styles';
2
2
  export { LAYOUT_COLUMN_PADDING, LAYOUT_SECTION_MARGIN };
3
- export declare const layoutStyles: import("@emotion/react").SerializedStyles;
3
+ export declare const layoutStyles: (viewMode?: 'edit' | 'view') => import("@emotion/react").SerializedStyles;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-core",
3
- "version": "193.19.0",
3
+ "version": "193.19.6",
4
4
  "description": "A package contains Atlassian editor core functionality",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -45,9 +45,9 @@
45
45
  "@atlaskit/analytics-next": "^9.3.0",
46
46
  "@atlaskit/analytics-next-stable-react-context": "1.0.1",
47
47
  "@atlaskit/button": "^17.14.0",
48
- "@atlaskit/editor-common": "^80.1.0",
48
+ "@atlaskit/editor-common": "^80.4.0",
49
49
  "@atlaskit/editor-json-transformer": "^8.13.0",
50
- "@atlaskit/editor-plugins": "^2.5.0",
50
+ "@atlaskit/editor-plugins": "^2.6.0",
51
51
  "@atlaskit/editor-prosemirror": "4.0.1",
52
52
  "@atlaskit/editor-shared-styles": "^2.11.0",
53
53
  "@atlaskit/emoji": "^67.6.0",
@@ -89,8 +89,8 @@
89
89
  "@atlaskit/checkbox": "^13.3.0",
90
90
  "@atlaskit/collab-provider": "9.29.0",
91
91
  "@atlaskit/dropdown-menu": "^12.10.0",
92
- "@atlaskit/editor-plugin-annotation": "1.8.0",
93
- "@atlaskit/editor-plugin-card": "^1.12.0",
92
+ "@atlaskit/editor-plugin-annotation": "1.9.0",
93
+ "@atlaskit/editor-plugin-card": "^1.13.0",
94
94
  "@atlaskit/editor-plugin-editor-viewmode": "^1.1.0",
95
95
  "@atlaskit/editor-plugin-list": "^3.3.0",
96
96
  "@atlaskit/editor-plugin-paste": "^1.2.0",
@@ -98,22 +98,22 @@
98
98
  "@atlaskit/flag": "^15.5.0",
99
99
  "@atlaskit/link-provider": "^1.9.0",
100
100
  "@atlaskit/link-test-helpers": "^7.0.0",
101
- "@atlaskit/logo": "^13.16.0",
101
+ "@atlaskit/logo": "^13.17.0",
102
102
  "@atlaskit/media-core": "^34.2.0",
103
103
  "@atlaskit/media-integration-test-helpers": "^3.0.0",
104
104
  "@atlaskit/media-test-helpers": "^33.0.27",
105
105
  "@atlaskit/modal-dialog": "^12.13.0",
106
- "@atlaskit/primitives": "^6.1.0",
106
+ "@atlaskit/primitives": "^6.2.0",
107
107
  "@atlaskit/renderer": "^109.28.0",
108
108
  "@atlaskit/select": "^17.9.0",
109
- "@atlaskit/smart-card": "^26.67.0",
109
+ "@atlaskit/smart-card": "^26.68.0",
110
110
  "@atlaskit/synchrony-test-helpers": "^2.4.0",
111
111
  "@atlaskit/util-data-test": "^17.9.0",
112
112
  "@atlaskit/visual-regression": "*",
113
113
  "@atlassian/adf-schema-json": "^1.14.0",
114
114
  "@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
115
- "@atlassian/link-picker-plugins": "^24.0.0",
116
- "@atlassian/search-provider": "2.4.65",
115
+ "@atlassian/link-picker-plugins": "^24.1.0",
116
+ "@atlassian/search-provider": "2.4.66",
117
117
  "@atlassian/ufo": "^0.2.0",
118
118
  "@emotion/jest": "^11.8.0",
119
119
  "@storybook/addon-knobs": "^5.3.18",