@atlaskit/editor-common 69.1.0 → 69.2.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,34 @@
1
1
  # @atlaskit/editor-common
2
2
 
3
+ ## 69.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`0a2a2ff14d9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0a2a2ff14d9) - [ux] ED-15284 Updated shared styles to add margin-top to paragraphs and headings with indentation mark. Prior to this, indented content had different spacing to the rest of the document.
8
+ - [`d7c4506066d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d7c4506066d) - [ux][ed-15295] improve code block copy button label to better indicate to users what will end up in the clipboard when used.
9
+
10
+ ### Patch Changes
11
+
12
+ - [`a75f0f02c24`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a75f0f02c24) - [ux] ED-14683 fix arrow keys in code block unpredictable
13
+
14
+ Fixed cursor jumping to expand title when pressing up in a code
15
+ block in an expand.
16
+
17
+ - Updated dependencies
18
+
19
+ ## 69.1.2
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies
24
+
25
+ ## 69.1.1
26
+
27
+ ### Patch Changes
28
+
29
+ - [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`.
30
+ - Updated dependencies
31
+
3
32
  ## 69.1.0
4
33
 
5
34
  ### Minor Changes
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.codeBlockCopyButtonMessages = void 0;
7
+
8
+ var _reactIntlNext = require("react-intl-next");
9
+
10
+ var codeBlockCopyButtonMessages = (0, _reactIntlNext.defineMessages)({
11
+ copyCodeToClipboard: {
12
+ id: 'fabric.editor.codeBlockCopyButton.copyToClipboard',
13
+ defaultMessage: 'Copy as text',
14
+ description: 'Copy the content of the code block as text to your clipboard'
15
+ },
16
+ copiedCodeToClipboard: {
17
+ id: 'fabric.editor.codeBlockCopyButton.copiedToClipboard',
18
+ defaultMessage: 'Copied!',
19
+ description: 'Copied the content of the code block as text to clipboard'
20
+ }
21
+ });
22
+ exports.codeBlockCopyButtonMessages = codeBlockCopyButtonMessages;
@@ -9,6 +9,12 @@ Object.defineProperty(exports, "codeBidiWarningMessages", {
9
9
  return _codeBidiWarning.codeBidiWarningMessages;
10
10
  }
11
11
  });
12
+ Object.defineProperty(exports, "codeBlockCopyButtonMessages", {
13
+ enumerable: true,
14
+ get: function get() {
15
+ return _codeBlockCopyButton.codeBlockCopyButtonMessages;
16
+ }
17
+ });
12
18
  Object.defineProperty(exports, "linkMessages", {
13
19
  enumerable: true,
14
20
  get: function get() {
@@ -26,4 +32,6 @@ var _codeBidiWarning = require("./codeBidiWarning");
26
32
 
27
33
  var _link = require("./link");
28
34
 
29
- var _unsupportedContent = require("./unsupportedContent");
35
+ var _unsupportedContent = require("./unsupportedContent");
36
+
37
+ var _codeBlockCopyButton = require("./codeBlockCopyButton");
@@ -13,5 +13,5 @@ var _react = require("@emotion/react");
13
13
 
14
14
  var _templateObject;
15
15
 
16
- var blockMarksSharedStyles = (0, _react.css)(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n /**\n * We need to remove margin-top from first item\n * inside doc, tableCell, tableHeader, blockquote, etc.\n */\n *:not(.fabric-editor-block-mark) >,\n /* For nested block marks */\n *:not(.fabric-editor-block-mark) > div.fabric-editor-block-mark:first-of-type {\n p,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n .heading-wrapper {\n :first-child:not(style),\n style:first-child + * {\n margin-top: 0;\n }\n }\n }\n"])));
16
+ var blockMarksSharedStyles = (0, _react.css)(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n /**\n * We need to remove margin-top from first item\n * inside doc, tableCell, tableHeader, blockquote, etc.\n */\n *:not(.fabric-editor-block-mark) >,\n /* For nested block marks apart from those with indentation mark */\n *:not(.fabric-editor-block-mark) > div.fabric-editor-block-mark:first-of-type:not(.fabric-editor-indentation-mark),\n // If first document element has indentation mark remove margin-top\n .ProseMirror .fabric-editor-indentation-mark:first-of-type:first-child {\n p,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n .heading-wrapper {\n :first-child:not(style),\n style:first-child + * {\n margin-top: 0;\n }\n }\n }\n"])));
17
17
  exports.blockMarksSharedStyles = blockMarksSharedStyles;
@@ -25,6 +25,8 @@ var _templateObject;
25
25
 
26
26
  var CodeBlockSharedCssClassName = {
27
27
  CODEBLOCK_CONTAINER: 'code-block',
28
+ CODEBLOCK_START: 'code-block--start',
29
+ CODEBLOCK_END: 'code-block--end',
28
30
  CODEBLOCK_LINE_NUMBER_GUTTER: 'line-number-gutter',
29
31
  CODEBLOCK_CONTENT: 'code-content',
30
32
  DS_CODEBLOCK: '[data-ds--code--code-block]'
@@ -32,7 +34,7 @@ var CodeBlockSharedCssClassName = {
32
34
  exports.CodeBlockSharedCssClassName = CodeBlockSharedCssClassName;
33
35
 
34
36
  var codeBlockSharedStyles = function codeBlockSharedStyles(props) {
35
- return (0, _react.css)(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n .", " {\n position: relative;\n background-color: ", ";\n border-radius: ", "px;\n counter-reset: line;\n display: flex;\n overflow-x: auto;\n\n background-image: ", ";\n\n --ds--code--bg-color: transparent;\n\n background-repeat: no-repeat;\n background-attachment: local, scroll, scroll;\n background-size: 8px 100%, 8px 100%, 8px 100%;\n background-position: 100% 0, 100% 0, 0 0;\n font-family: ", ";\n margin: ", " 0 0 0;\n min-width: ", "px;\n cursor: pointer;\n\n .", " {\n flex-shrink: 0;\n text-align: right;\n background-color: ", ";\n padding: ", "px;\n\n span {\n display: block;\n line-height: 0;\n font-size: 0;\n\n ::before {\n display: inline-block;\n content: counter(line);\n counter-increment: line;\n color: ", ";\n font-size: ", ";\n line-height: 1.5rem;\n }\n }\n }\n\n .", " {\n display: flex;\n flex: 1;\n\n code {\n flex-grow: 1;\n tab-size: 4;\n cursor: text;\n color: ", ";\n border-radius: ", "px;\n margin: ", "px;\n white-space: pre;\n font-size: ", ";\n line-height: 1.5rem;\n }\n }\n }\n"])), CodeBlockSharedCssClassName.CODEBLOCK_CONTAINER, (0, _components.themed)({
37
+ return (0, _react.css)(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2.default)(["\n .", " {\n position: relative;\n background-color: ", ";\n border-radius: ", "px;\n counter-reset: line;\n display: flex;\n overflow-x: auto;\n\n background-image: ", ";\n\n --ds--code--bg-color: transparent;\n\n background-repeat: no-repeat;\n background-attachment: local, scroll, scroll;\n background-size: 8px 100%, 8px 100%, 8px 100%;\n background-position: 100% 0, 100% 0, 0 0;\n font-family: ", ";\n margin: ", " 0 0 0;\n min-width: ", "px;\n cursor: pointer;\n\n .", " {\n position: absolute;\n visibility: hidden;\n height: 1.5rem;\n top: 0px;\n left: 0px;\n }\n\n .", " {\n position: absolute;\n visibility: hidden;\n height: 1.5rem;\n bottom: 0px;\n right: 0px;\n }\n\n .", " {\n flex-shrink: 0;\n text-align: right;\n background-color: ", ";\n padding: ", "px;\n\n span {\n display: block;\n line-height: 0;\n font-size: 0;\n\n ::before {\n display: inline-block;\n content: counter(line);\n counter-increment: line;\n color: ", ";\n font-size: ", ";\n line-height: 1.5rem;\n }\n }\n }\n\n .", " {\n display: flex;\n flex: 1;\n\n code {\n flex-grow: 1;\n tab-size: 4;\n cursor: text;\n color: ", ";\n border-radius: ", "px;\n margin: ", "px;\n white-space: pre;\n font-size: ", ";\n line-height: 1.5rem;\n }\n }\n }\n"])), CodeBlockSharedCssClassName.CODEBLOCK_CONTAINER, (0, _components.themed)({
36
38
  light: (0, _tokens.token)('color.background.neutral', _colors.N20),
37
39
  dark: (0, _tokens.token)('color.background.neutral', _colors.DN50)
38
40
  })(props), (0, _constants.borderRadius)(), (0, _editorSharedStyles.overflowShadow)({
@@ -43,7 +45,7 @@ var codeBlockSharedStyles = function codeBlockSharedStyles(props) {
43
45
  dark: _colors.DN50
44
46
  })(props),
45
47
  width: '8px'
46
- }), _editorSharedStyles.akEditorCodeFontFamily, _editorSharedStyles.blockNodesVerticalMargin, _editorSharedStyles.akEditorTableCellMinWidth, CodeBlockSharedCssClassName.CODEBLOCK_LINE_NUMBER_GUTTER, (0, _components.themed)({
48
+ }), _editorSharedStyles.akEditorCodeFontFamily, _editorSharedStyles.blockNodesVerticalMargin, _editorSharedStyles.akEditorTableCellMinWidth, CodeBlockSharedCssClassName.CODEBLOCK_START, CodeBlockSharedCssClassName.CODEBLOCK_END, CodeBlockSharedCssClassName.CODEBLOCK_LINE_NUMBER_GUTTER, (0, _components.themed)({
47
49
  light: (0, _tokens.token)('color.background.neutral', _colors.N30),
48
50
  dark: (0, _tokens.token)('color.background.neutral', _colors.DN20)
49
51
  })(props), (0, _constants.gridSize)(), (0, _components.themed)({
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-common",
3
- "version": "69.1.0",
3
+ "version": "69.2.0",
4
4
  "sideEffects": false
5
5
  }
@@ -0,0 +1,13 @@
1
+ import { defineMessages } from 'react-intl-next';
2
+ export const codeBlockCopyButtonMessages = defineMessages({
3
+ copyCodeToClipboard: {
4
+ id: 'fabric.editor.codeBlockCopyButton.copyToClipboard',
5
+ defaultMessage: 'Copy as text',
6
+ description: 'Copy the content of the code block as text to your clipboard'
7
+ },
8
+ copiedCodeToClipboard: {
9
+ id: 'fabric.editor.codeBlockCopyButton.copiedToClipboard',
10
+ defaultMessage: 'Copied!',
11
+ description: 'Copied the content of the code block as text to clipboard'
12
+ }
13
+ });
@@ -1,3 +1,4 @@
1
1
  export { codeBidiWarningMessages } from './codeBidiWarning';
2
2
  export { linkMessages } from './link';
3
- export { unsupportedContentMessages } from './unsupportedContent';
3
+ export { unsupportedContentMessages } from './unsupportedContent';
4
+ export { codeBlockCopyButtonMessages } from './codeBlockCopyButton';
@@ -5,8 +5,10 @@ export const blockMarksSharedStyles = css`
5
5
  * inside doc, tableCell, tableHeader, blockquote, etc.
6
6
  */
7
7
  *:not(.fabric-editor-block-mark) >,
8
- /* For nested block marks */
9
- *:not(.fabric-editor-block-mark) > div.fabric-editor-block-mark:first-of-type {
8
+ /* For nested block marks apart from those with indentation mark */
9
+ *:not(.fabric-editor-block-mark) > div.fabric-editor-block-mark:first-of-type:not(.fabric-editor-indentation-mark),
10
+ // If first document element has indentation mark remove margin-top
11
+ .ProseMirror .fabric-editor-indentation-mark:first-of-type:first-child {
10
12
  p,
11
13
  h1,
12
14
  h2,
@@ -6,6 +6,8 @@ import { borderRadius, fontSize, gridSize } from '@atlaskit/theme/constants';
6
6
  import { token } from '@atlaskit/tokens';
7
7
  export const CodeBlockSharedCssClassName = {
8
8
  CODEBLOCK_CONTAINER: 'code-block',
9
+ CODEBLOCK_START: 'code-block--start',
10
+ CODEBLOCK_END: 'code-block--end',
9
11
  CODEBLOCK_LINE_NUMBER_GUTTER: 'line-number-gutter',
10
12
  CODEBLOCK_CONTENT: 'code-content',
11
13
  DS_CODEBLOCK: '[data-ds--code--code-block]'
@@ -43,6 +45,22 @@ export const codeBlockSharedStyles = props => css`
43
45
  min-width: ${akEditorTableCellMinWidth}px;
44
46
  cursor: pointer;
45
47
 
48
+ .${CodeBlockSharedCssClassName.CODEBLOCK_START} {
49
+ position: absolute;
50
+ visibility: hidden;
51
+ height: 1.5rem;
52
+ top: 0px;
53
+ left: 0px;
54
+ }
55
+
56
+ .${CodeBlockSharedCssClassName.CODEBLOCK_END} {
57
+ position: absolute;
58
+ visibility: hidden;
59
+ height: 1.5rem;
60
+ bottom: 0px;
61
+ right: 0px;
62
+ }
63
+
46
64
  .${CodeBlockSharedCssClassName.CODEBLOCK_LINE_NUMBER_GUTTER} {
47
65
  flex-shrink: 0;
48
66
  text-align: right;
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-common",
3
- "version": "69.1.0",
3
+ "version": "69.2.0",
4
4
  "sideEffects": false
5
5
  }
@@ -0,0 +1,13 @@
1
+ import { defineMessages } from 'react-intl-next';
2
+ export var codeBlockCopyButtonMessages = defineMessages({
3
+ copyCodeToClipboard: {
4
+ id: 'fabric.editor.codeBlockCopyButton.copyToClipboard',
5
+ defaultMessage: 'Copy as text',
6
+ description: 'Copy the content of the code block as text to your clipboard'
7
+ },
8
+ copiedCodeToClipboard: {
9
+ id: 'fabric.editor.codeBlockCopyButton.copiedToClipboard',
10
+ defaultMessage: 'Copied!',
11
+ description: 'Copied the content of the code block as text to clipboard'
12
+ }
13
+ });
@@ -1,3 +1,4 @@
1
1
  export { codeBidiWarningMessages } from './codeBidiWarning';
2
2
  export { linkMessages } from './link';
3
- export { unsupportedContentMessages } from './unsupportedContent';
3
+ export { unsupportedContentMessages } from './unsupportedContent';
4
+ export { codeBlockCopyButtonMessages } from './codeBlockCopyButton';
@@ -3,4 +3,4 @@ import _taggedTemplateLiteral from "@babel/runtime/helpers/taggedTemplateLiteral
3
3
  var _templateObject;
4
4
 
5
5
  import { css } from '@emotion/react';
6
- export var blockMarksSharedStyles = css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n /**\n * We need to remove margin-top from first item\n * inside doc, tableCell, tableHeader, blockquote, etc.\n */\n *:not(.fabric-editor-block-mark) >,\n /* For nested block marks */\n *:not(.fabric-editor-block-mark) > div.fabric-editor-block-mark:first-of-type {\n p,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n .heading-wrapper {\n :first-child:not(style),\n style:first-child + * {\n margin-top: 0;\n }\n }\n }\n"])));
6
+ export var blockMarksSharedStyles = css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n /**\n * We need to remove margin-top from first item\n * inside doc, tableCell, tableHeader, blockquote, etc.\n */\n *:not(.fabric-editor-block-mark) >,\n /* For nested block marks apart from those with indentation mark */\n *:not(.fabric-editor-block-mark) > div.fabric-editor-block-mark:first-of-type:not(.fabric-editor-indentation-mark),\n // If first document element has indentation mark remove margin-top\n .ProseMirror .fabric-editor-indentation-mark:first-of-type:first-child {\n p,\n h1,\n h2,\n h3,\n h4,\n h5,\n h6,\n .heading-wrapper {\n :first-child:not(style),\n style:first-child + * {\n margin-top: 0;\n }\n }\n }\n"])));
@@ -10,12 +10,14 @@ import { borderRadius, fontSize, gridSize } from '@atlaskit/theme/constants';
10
10
  import { token } from '@atlaskit/tokens';
11
11
  export var CodeBlockSharedCssClassName = {
12
12
  CODEBLOCK_CONTAINER: 'code-block',
13
+ CODEBLOCK_START: 'code-block--start',
14
+ CODEBLOCK_END: 'code-block--end',
13
15
  CODEBLOCK_LINE_NUMBER_GUTTER: 'line-number-gutter',
14
16
  CODEBLOCK_CONTENT: 'code-content',
15
17
  DS_CODEBLOCK: '[data-ds--code--code-block]'
16
18
  };
17
19
  export var codeBlockSharedStyles = function codeBlockSharedStyles(props) {
18
- return css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n .", " {\n position: relative;\n background-color: ", ";\n border-radius: ", "px;\n counter-reset: line;\n display: flex;\n overflow-x: auto;\n\n background-image: ", ";\n\n --ds--code--bg-color: transparent;\n\n background-repeat: no-repeat;\n background-attachment: local, scroll, scroll;\n background-size: 8px 100%, 8px 100%, 8px 100%;\n background-position: 100% 0, 100% 0, 0 0;\n font-family: ", ";\n margin: ", " 0 0 0;\n min-width: ", "px;\n cursor: pointer;\n\n .", " {\n flex-shrink: 0;\n text-align: right;\n background-color: ", ";\n padding: ", "px;\n\n span {\n display: block;\n line-height: 0;\n font-size: 0;\n\n ::before {\n display: inline-block;\n content: counter(line);\n counter-increment: line;\n color: ", ";\n font-size: ", ";\n line-height: 1.5rem;\n }\n }\n }\n\n .", " {\n display: flex;\n flex: 1;\n\n code {\n flex-grow: 1;\n tab-size: 4;\n cursor: text;\n color: ", ";\n border-radius: ", "px;\n margin: ", "px;\n white-space: pre;\n font-size: ", ";\n line-height: 1.5rem;\n }\n }\n }\n"])), CodeBlockSharedCssClassName.CODEBLOCK_CONTAINER, themed({
20
+ return css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n .", " {\n position: relative;\n background-color: ", ";\n border-radius: ", "px;\n counter-reset: line;\n display: flex;\n overflow-x: auto;\n\n background-image: ", ";\n\n --ds--code--bg-color: transparent;\n\n background-repeat: no-repeat;\n background-attachment: local, scroll, scroll;\n background-size: 8px 100%, 8px 100%, 8px 100%;\n background-position: 100% 0, 100% 0, 0 0;\n font-family: ", ";\n margin: ", " 0 0 0;\n min-width: ", "px;\n cursor: pointer;\n\n .", " {\n position: absolute;\n visibility: hidden;\n height: 1.5rem;\n top: 0px;\n left: 0px;\n }\n\n .", " {\n position: absolute;\n visibility: hidden;\n height: 1.5rem;\n bottom: 0px;\n right: 0px;\n }\n\n .", " {\n flex-shrink: 0;\n text-align: right;\n background-color: ", ";\n padding: ", "px;\n\n span {\n display: block;\n line-height: 0;\n font-size: 0;\n\n ::before {\n display: inline-block;\n content: counter(line);\n counter-increment: line;\n color: ", ";\n font-size: ", ";\n line-height: 1.5rem;\n }\n }\n }\n\n .", " {\n display: flex;\n flex: 1;\n\n code {\n flex-grow: 1;\n tab-size: 4;\n cursor: text;\n color: ", ";\n border-radius: ", "px;\n margin: ", "px;\n white-space: pre;\n font-size: ", ";\n line-height: 1.5rem;\n }\n }\n }\n"])), CodeBlockSharedCssClassName.CODEBLOCK_CONTAINER, themed({
19
21
  light: token('color.background.neutral', N20),
20
22
  dark: token('color.background.neutral', DN50)
21
23
  })(props), borderRadius(), overflowShadow({
@@ -26,7 +28,7 @@ export var codeBlockSharedStyles = function codeBlockSharedStyles(props) {
26
28
  dark: DN50
27
29
  })(props),
28
30
  width: '8px'
29
- }), akEditorCodeFontFamily, blockNodesVerticalMargin, akEditorTableCellMinWidth, CodeBlockSharedCssClassName.CODEBLOCK_LINE_NUMBER_GUTTER, themed({
31
+ }), akEditorCodeFontFamily, blockNodesVerticalMargin, akEditorTableCellMinWidth, CodeBlockSharedCssClassName.CODEBLOCK_START, CodeBlockSharedCssClassName.CODEBLOCK_END, CodeBlockSharedCssClassName.CODEBLOCK_LINE_NUMBER_GUTTER, themed({
30
32
  light: token('color.background.neutral', N30),
31
33
  dark: token('color.background.neutral', DN20)
32
34
  })(props), gridSize(), themed({
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-common",
3
- "version": "69.1.0",
3
+ "version": "69.2.0",
4
4
  "sideEffects": false
5
5
  }
@@ -0,0 +1,12 @@
1
+ export declare const codeBlockCopyButtonMessages: {
2
+ copyCodeToClipboard: {
3
+ id: string;
4
+ defaultMessage: string;
5
+ description: string;
6
+ };
7
+ copiedCodeToClipboard: {
8
+ id: string;
9
+ defaultMessage: string;
10
+ description: string;
11
+ };
12
+ };
@@ -1,3 +1,4 @@
1
1
  export { codeBidiWarningMessages } from './codeBidiWarning';
2
2
  export { linkMessages } from './link';
3
3
  export { unsupportedContentMessages } from './unsupportedContent';
4
+ export { codeBlockCopyButtonMessages } from './codeBlockCopyButton';
@@ -1,6 +1,8 @@
1
1
  import { ThemeProps } from '@atlaskit/theme/types';
2
2
  export declare const CodeBlockSharedCssClassName: {
3
3
  CODEBLOCK_CONTAINER: string;
4
+ CODEBLOCK_START: string;
5
+ CODEBLOCK_END: string;
4
6
  CODEBLOCK_LINE_NUMBER_GUTTER: string;
5
7
  CODEBLOCK_CONTENT: string;
6
8
  DS_CODEBLOCK: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-common",
3
- "version": "69.1.0",
3
+ "version": "69.2.0",
4
4
  "description": "A package that contains common classes and components for editor and renderer",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -44,26 +44,26 @@
44
44
  },
45
45
  "dependencies": {
46
46
  "@atlaskit/activity-provider": "^2.3.0",
47
- "@atlaskit/adf-schema": "^23.3.0",
47
+ "@atlaskit/adf-schema": "^24.0.0",
48
48
  "@atlaskit/adf-utils": "^17.1.0",
49
49
  "@atlaskit/analytics-namespaced-context": "^6.5.0",
50
50
  "@atlaskit/analytics-next": "^8.2.0",
51
51
  "@atlaskit/code": "^14.3.0",
52
52
  "@atlaskit/codemod-utils": "^4.1.0",
53
- "@atlaskit/editor-json-transformer": "^8.7.0",
53
+ "@atlaskit/editor-json-transformer": "^8.8.0",
54
54
  "@atlaskit/editor-shared-styles": "^2.1.0",
55
- "@atlaskit/emoji": "^65.1.0",
55
+ "@atlaskit/emoji": "^65.2.0",
56
56
  "@atlaskit/icon": "^21.10.0",
57
57
  "@atlaskit/in-product-testing": "^0.1.0",
58
58
  "@atlaskit/media-card": "^74.1.0",
59
59
  "@atlaskit/media-client": "^17.1.0",
60
60
  "@atlaskit/media-picker": "^63.0.0",
61
61
  "@atlaskit/mention": "^21.0.0",
62
- "@atlaskit/profilecard": "^16.11.0",
63
- "@atlaskit/smart-card": "^21.0.0",
62
+ "@atlaskit/profilecard": "^16.12.0",
63
+ "@atlaskit/smart-card": "^22.1.0",
64
64
  "@atlaskit/smart-user-picker": "^6.0.0",
65
- "@atlaskit/task-decision": "^17.4.0",
66
- "@atlaskit/theme": "^12.1.0",
65
+ "@atlaskit/task-decision": "^17.5.0",
66
+ "@atlaskit/theme": "^12.2.0",
67
67
  "@atlaskit/tokens": "^0.10.0",
68
68
  "@atlaskit/tooltip": "^17.5.0",
69
69
  "@atlaskit/ufo": "^0.1.0",
@@ -86,13 +86,13 @@
86
86
  "react-loadable": "^5.1.0"
87
87
  },
88
88
  "peerDependencies": {
89
- "@atlaskit/media-core": "^33.0.1",
89
+ "@atlaskit/media-core": "^33.0.2",
90
90
  "react": "^16.8.0",
91
91
  "react-dom": "^16.8.0",
92
92
  "react-intl-next": "npm:react-intl@^5.18.1"
93
93
  },
94
94
  "devDependencies": {
95
- "@atlaskit/editor-json-transformer": "^8.7.0",
95
+ "@atlaskit/editor-json-transformer": "^8.8.0",
96
96
  "@atlaskit/editor-test-helpers": "^17.1.0",
97
97
  "@atlaskit/media-core": "^33.0.0",
98
98
  "@atlaskit/util-data-test": "^17.5.0",
@@ -108,7 +108,7 @@
108
108
  "react": "^16.8.0",
109
109
  "react-test-renderer": "^16.8.0",
110
110
  "sinon": "^2.2.0",
111
- "typescript": "4.2.4"
111
+ "typescript": "4.3.5"
112
112
  },
113
113
  "techstack": {
114
114
  "@atlassian/frontend": {
package/tsconfig.json CHANGED
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "extends": "../../../tsconfig.json",
3
3
  "compilerOptions": {
4
- "noImplicitAny": true,
5
4
  "baseUrl": "./"
6
5
  },
7
6
  "include": [