@atlaskit/editor-core 194.1.1 → 194.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 +12 -0
- package/dist/cjs/ui/ToolbarFeedback/index.js +1 -2
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/ui/ToolbarFeedback/index.js +1 -2
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/ui/ToolbarFeedback/index.js +1 -2
- package/dist/esm/version-wrapper.js +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 194.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#119608](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/119608)
|
|
8
|
+
[`ecb9286aa6ae8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ecb9286aa6ae8) -
|
|
9
|
+
refactor: remove some usages of findDOMNode in editor-core and editor-plugin-insert-block
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
3
15
|
## 194.1.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -18,7 +18,6 @@ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/de
|
|
|
18
18
|
var _react = require("react");
|
|
19
19
|
var _react2 = require("@emotion/react");
|
|
20
20
|
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
21
|
-
var _reactDom = _interopRequireDefault(require("react-dom"));
|
|
22
21
|
var _buttonGroup = _interopRequireDefault(require("@atlaskit/button/button-group"));
|
|
23
22
|
var _new = _interopRequireDefault(require("@atlaskit/button/new"));
|
|
24
23
|
var _analytics = require("@atlaskit/editor-common/analytics");
|
|
@@ -66,7 +65,7 @@ var ToolbarFeedbackInternal = /*#__PURE__*/function (_PureComponent) {
|
|
|
66
65
|
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "handleRef", function (ref) {
|
|
67
66
|
if (ref) {
|
|
68
67
|
_this.setState({
|
|
69
|
-
target:
|
|
68
|
+
target: ref
|
|
70
69
|
});
|
|
71
70
|
}
|
|
72
71
|
});
|
|
@@ -6,7 +6,6 @@ import { PureComponent } from 'react';
|
|
|
6
6
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
7
7
|
import { jsx } from '@emotion/react';
|
|
8
8
|
import PropTypes from 'prop-types';
|
|
9
|
-
import ReactDOM from 'react-dom';
|
|
10
9
|
import ButtonGroup from '@atlaskit/button/button-group';
|
|
11
10
|
import Button from '@atlaskit/button/new';
|
|
12
11
|
import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE } from '@atlaskit/editor-common/analytics';
|
|
@@ -46,7 +45,7 @@ class ToolbarFeedbackInternal extends PureComponent {
|
|
|
46
45
|
_defineProperty(this, "handleRef", ref => {
|
|
47
46
|
if (ref) {
|
|
48
47
|
this.setState({
|
|
49
|
-
target:
|
|
48
|
+
target: ref
|
|
50
49
|
});
|
|
51
50
|
}
|
|
52
51
|
});
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "194.
|
|
2
|
+
export const version = "194.2.0";
|
|
@@ -18,7 +18,6 @@ import { PureComponent } from 'react';
|
|
|
18
18
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
19
19
|
import { jsx } from '@emotion/react';
|
|
20
20
|
import PropTypes from 'prop-types';
|
|
21
|
-
import ReactDOM from 'react-dom';
|
|
22
21
|
import ButtonGroup from '@atlaskit/button/button-group';
|
|
23
22
|
import Button from '@atlaskit/button/new';
|
|
24
23
|
import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE } from '@atlaskit/editor-common/analytics';
|
|
@@ -62,7 +61,7 @@ var ToolbarFeedbackInternal = /*#__PURE__*/function (_PureComponent) {
|
|
|
62
61
|
_defineProperty(_assertThisInitialized(_this), "handleRef", function (ref) {
|
|
63
62
|
if (ref) {
|
|
64
63
|
_this.setState({
|
|
65
|
-
target:
|
|
64
|
+
target: ref
|
|
66
65
|
});
|
|
67
66
|
}
|
|
68
67
|
});
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "194.
|
|
2
|
+
export var version = "194.2.0";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "194.
|
|
3
|
+
"version": "194.2.0",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"@atlaskit/analytics-namespaced-context": "^6.10.0",
|
|
45
45
|
"@atlaskit/analytics-next": "^9.3.0",
|
|
46
46
|
"@atlaskit/analytics-next-stable-react-context": "1.0.1",
|
|
47
|
-
"@atlaskit/button": "^18.
|
|
48
|
-
"@atlaskit/editor-common": "^84.
|
|
47
|
+
"@atlaskit/button": "^18.4.0",
|
|
48
|
+
"@atlaskit/editor-common": "^84.5.0",
|
|
49
49
|
"@atlaskit/editor-plugins": "^3.4.0",
|
|
50
50
|
"@atlaskit/editor-prosemirror": "4.0.1",
|
|
51
51
|
"@atlaskit/editor-shared-styles": "^2.13.0",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"@atlaskit/spinner": "^16.2.0",
|
|
58
58
|
"@atlaskit/task-decision": "^17.10.0",
|
|
59
59
|
"@atlaskit/theme": "^12.11.0",
|
|
60
|
-
"@atlaskit/tokens": "^1.
|
|
60
|
+
"@atlaskit/tokens": "^1.54.0",
|
|
61
61
|
"@atlaskit/tooltip": "^18.5.0",
|
|
62
62
|
"@atlaskit/width-detector": "^4.2.0",
|
|
63
63
|
"@babel/runtime": "^7.0.0",
|
|
@@ -85,9 +85,9 @@
|
|
|
85
85
|
"@af/visual-regression": "*",
|
|
86
86
|
"@atlaskit/adf-utils": "^19.4.0",
|
|
87
87
|
"@atlaskit/analytics-listeners": "^8.10.0",
|
|
88
|
-
"@atlaskit/collab-provider": "9.
|
|
88
|
+
"@atlaskit/collab-provider": "9.33.0",
|
|
89
89
|
"@atlaskit/editor-json-transformer": "^8.15.0",
|
|
90
|
-
"@atlaskit/editor-plugin-annotation": "1.14.
|
|
90
|
+
"@atlaskit/editor-plugin-annotation": "1.14.3",
|
|
91
91
|
"@atlaskit/editor-plugin-card": "^2.5.0",
|
|
92
92
|
"@atlaskit/editor-plugin-editor-viewmode": "^2.0.0",
|
|
93
93
|
"@atlaskit/editor-plugin-list": "^3.5.0",
|
|
@@ -100,14 +100,14 @@
|
|
|
100
100
|
"@atlaskit/media-test-helpers": "^33.0.27",
|
|
101
101
|
"@atlaskit/modal-dialog": "^12.14.0",
|
|
102
102
|
"@atlaskit/primitives": "^11.0.0",
|
|
103
|
-
"@atlaskit/renderer": "^109.
|
|
103
|
+
"@atlaskit/renderer": "^109.42.0",
|
|
104
104
|
"@atlaskit/smart-card": "^27.9.0",
|
|
105
105
|
"@atlaskit/synchrony-test-helpers": "^2.4.0",
|
|
106
106
|
"@atlaskit/toggle": "^13.2.0",
|
|
107
107
|
"@atlaskit/util-data-test": "^17.9.0",
|
|
108
108
|
"@atlaskit/visual-regression": "*",
|
|
109
109
|
"@atlassian/adf-schema-json": "^1.16.0",
|
|
110
|
-
"@atlassian/search-provider": "2.4.
|
|
110
|
+
"@atlassian/search-provider": "2.4.93",
|
|
111
111
|
"@emotion/jest": "^11.8.0",
|
|
112
112
|
"@storybook/addon-knobs": "^5.3.18",
|
|
113
113
|
"@testing-library/react": "^12.1.5",
|