@atlaskit/renderer 130.2.15 → 130.2.16
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 +8 -0
- package/dist/cjs/react/nodes/codeBlock/components/codeBlockCopyButton.js +1 -2
- package/dist/cjs/react/nodes/heading-anchor.js +1 -1
- package/dist/es2019/react/nodes/codeBlock/components/codeBlockCopyButton.js +1 -2
- package/dist/es2019/react/nodes/heading-anchor.js +1 -1
- package/dist/esm/react/nodes/codeBlock/components/codeBlockCopyButton.js +1 -2
- package/dist/esm/react/nodes/heading-anchor.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/renderer
|
|
2
2
|
|
|
3
|
+
## 130.2.16
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`d94df511393a9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d94df511393a9) -
|
|
8
|
+
Removing FG platform_editor_a11y_eslint_fix
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 130.2.15
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -9,7 +9,6 @@ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/sli
|
|
|
9
9
|
var _customThemeButton = _interopRequireDefault(require("@atlaskit/button/custom-theme-button"));
|
|
10
10
|
var _messages = require("@atlaskit/editor-common/messages");
|
|
11
11
|
var _copy = _interopRequireDefault(require("@atlaskit/icon/core/copy"));
|
|
12
|
-
var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
|
|
13
12
|
var _tooltip = _interopRequireDefault(require("@atlaskit/tooltip"));
|
|
14
13
|
var _react = require("@emotion/react");
|
|
15
14
|
var _react2 = require("react");
|
|
@@ -47,7 +46,7 @@ var CopyButton = function CopyButton(_ref) {
|
|
|
47
46
|
position: "top"
|
|
48
47
|
}, (0, _react.jsx)("div", {
|
|
49
48
|
onMouseLeave: onMouseLeave,
|
|
50
|
-
onBlur:
|
|
49
|
+
onBlur: onMouseLeave
|
|
51
50
|
}, (0, _react.jsx)(_customThemeButton.default, {
|
|
52
51
|
appearance: "subtle",
|
|
53
52
|
"aria-haspopup": true,
|
|
@@ -120,7 +120,7 @@ var HeadingAnchor = /*#__PURE__*/function (_React$PureComponent) {
|
|
|
120
120
|
id: _this.copyLinkId,
|
|
121
121
|
css: copyAnchorButtonStyles,
|
|
122
122
|
onMouseLeave: _this.resetMessage,
|
|
123
|
-
onBlur:
|
|
123
|
+
onBlur: _this.resetMessage,
|
|
124
124
|
onClick: _this.copyToClipboard,
|
|
125
125
|
"aria-hidden": hideFromScreenReader,
|
|
126
126
|
tabIndex: tabIndex,
|
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
import Button from '@atlaskit/button/custom-theme-button';
|
|
6
6
|
import { codeBlockButtonMessages } from '@atlaskit/editor-common/messages';
|
|
7
7
|
import CopyIcon from '@atlaskit/icon/core/copy';
|
|
8
|
-
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
9
8
|
import Tooltip from '@atlaskit/tooltip';
|
|
10
9
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
11
10
|
import { jsx } from '@emotion/react';
|
|
@@ -32,7 +31,7 @@ const CopyButton = ({
|
|
|
32
31
|
position: "top"
|
|
33
32
|
}, jsx("div", {
|
|
34
33
|
onMouseLeave: onMouseLeave,
|
|
35
|
-
onBlur:
|
|
34
|
+
onBlur: onMouseLeave
|
|
36
35
|
}, jsx(Button, {
|
|
37
36
|
appearance: "subtle",
|
|
38
37
|
"aria-haspopup": true,
|
|
@@ -88,7 +88,7 @@ class HeadingAnchor extends React.PureComponent {
|
|
|
88
88
|
id: this.copyLinkId,
|
|
89
89
|
css: copyAnchorButtonStyles,
|
|
90
90
|
onMouseLeave: this.resetMessage,
|
|
91
|
-
onBlur:
|
|
91
|
+
onBlur: this.resetMessage,
|
|
92
92
|
onClick: this.copyToClipboard,
|
|
93
93
|
"aria-hidden": hideFromScreenReader,
|
|
94
94
|
tabIndex: tabIndex,
|
|
@@ -6,7 +6,6 @@ import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
|
|
|
6
6
|
import Button from '@atlaskit/button/custom-theme-button';
|
|
7
7
|
import { codeBlockButtonMessages } from '@atlaskit/editor-common/messages';
|
|
8
8
|
import CopyIcon from '@atlaskit/icon/core/copy';
|
|
9
|
-
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
10
9
|
import Tooltip from '@atlaskit/tooltip';
|
|
11
10
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
12
11
|
import { jsx } from '@emotion/react';
|
|
@@ -38,7 +37,7 @@ var CopyButton = function CopyButton(_ref) {
|
|
|
38
37
|
position: "top"
|
|
39
38
|
}, jsx("div", {
|
|
40
39
|
onMouseLeave: onMouseLeave,
|
|
41
|
-
onBlur:
|
|
40
|
+
onBlur: onMouseLeave
|
|
42
41
|
}, jsx(Button, {
|
|
43
42
|
appearance: "subtle",
|
|
44
43
|
"aria-haspopup": true,
|
|
@@ -114,7 +114,7 @@ var HeadingAnchor = /*#__PURE__*/function (_React$PureComponent) {
|
|
|
114
114
|
id: _this.copyLinkId,
|
|
115
115
|
css: copyAnchorButtonStyles,
|
|
116
116
|
onMouseLeave: _this.resetMessage,
|
|
117
|
-
onBlur:
|
|
117
|
+
onBlur: _this.resetMessage,
|
|
118
118
|
onClick: _this.copyToClipboard,
|
|
119
119
|
"aria-hidden": hideFromScreenReader,
|
|
120
120
|
tabIndex: tabIndex,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/renderer",
|
|
3
|
-
"version": "130.2.
|
|
3
|
+
"version": "130.2.16",
|
|
4
4
|
"description": "Renderer component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"@atlaskit/status": "^4.0.0",
|
|
67
67
|
"@atlaskit/task-decision": "^20.0.0",
|
|
68
68
|
"@atlaskit/theme": "^23.2.0",
|
|
69
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
69
|
+
"@atlaskit/tmp-editor-statsig": "^72.0.0",
|
|
70
70
|
"@atlaskit/tokens": "^13.0.0",
|
|
71
71
|
"@atlaskit/tooltip": "^21.2.0",
|
|
72
72
|
"@atlaskit/visually-hidden": "^3.0.0",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"uuid": "^3.1.0"
|
|
80
80
|
},
|
|
81
81
|
"peerDependencies": {
|
|
82
|
-
"@atlaskit/editor-common": "^114.
|
|
82
|
+
"@atlaskit/editor-common": "^114.13.0",
|
|
83
83
|
"@atlaskit/link-provider": "^4.3.0",
|
|
84
84
|
"@atlaskit/media-core": "^37.0.0",
|
|
85
85
|
"react": "^18.2.0",
|