@atlaskit/editor-core 219.6.4 → 219.7.1
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 +17 -0
- package/dist/cjs/ui/PluginSlot/index.js +1 -2
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/ui/PluginSlot/index.js +1 -2
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/ui/PluginSlot/index.js +1 -2
- package/dist/esm/version-wrapper.js +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 219.7.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 219.7.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [`2f70251ed8022`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2f70251ed8022) -
|
|
14
|
+
Clean up experiment platform_editor_experience_tracking
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
|
|
3
20
|
## 219.6.4
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -9,7 +9,6 @@ var _react = _interopRequireDefault(require("react"));
|
|
|
9
9
|
var _react2 = require("@emotion/react");
|
|
10
10
|
var _isEqual = _interopRequireDefault(require("lodash/isEqual"));
|
|
11
11
|
var _analytics = require("@atlaskit/editor-common/analytics");
|
|
12
|
-
var _expVal = require("@atlaskit/tmp-editor-statsig/expVal");
|
|
13
12
|
var _ErrorBoundary = require("../ErrorBoundary");
|
|
14
13
|
var _mountPluginHooks = require("./mount-plugin-hooks");
|
|
15
14
|
/**
|
|
@@ -49,7 +48,7 @@ var PluginSlot = function PluginSlot(_ref) {
|
|
|
49
48
|
containerElement: containerElement
|
|
50
49
|
}), (0, _react2.jsx)("div", {
|
|
51
50
|
css: pluginsComponentsWrapper,
|
|
52
|
-
"data-testid":
|
|
51
|
+
"data-testid": "plugins-components-wrapper"
|
|
53
52
|
}, items === null || items === void 0 ? void 0 : items.map(function (component, key) {
|
|
54
53
|
var props = {
|
|
55
54
|
key: key
|
|
@@ -8,7 +8,6 @@ import React from 'react';
|
|
|
8
8
|
import { css, jsx } from '@emotion/react';
|
|
9
9
|
import isEqual from 'lodash/isEqual';
|
|
10
10
|
import { ACTION_SUBJECT } from '@atlaskit/editor-common/analytics';
|
|
11
|
-
import { expVal } from '@atlaskit/tmp-editor-statsig/expVal';
|
|
12
11
|
import { ErrorBoundary } from '../ErrorBoundary';
|
|
13
12
|
import { MountPluginHooks } from './mount-plugin-hooks';
|
|
14
13
|
const pluginsComponentsWrapper = css({
|
|
@@ -42,7 +41,7 @@ const PluginSlot = ({
|
|
|
42
41
|
containerElement: containerElement
|
|
43
42
|
}), jsx("div", {
|
|
44
43
|
css: pluginsComponentsWrapper,
|
|
45
|
-
"data-testid":
|
|
44
|
+
"data-testid": "plugins-components-wrapper"
|
|
46
45
|
}, items === null || items === void 0 ? void 0 : items.map((component, key) => {
|
|
47
46
|
const props = {
|
|
48
47
|
key
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "219.
|
|
2
|
+
export const version = "219.7.0";
|
|
@@ -8,7 +8,6 @@ import React from 'react';
|
|
|
8
8
|
import { css, jsx } from '@emotion/react';
|
|
9
9
|
import isEqual from 'lodash/isEqual';
|
|
10
10
|
import { ACTION_SUBJECT } from '@atlaskit/editor-common/analytics';
|
|
11
|
-
import { expVal } from '@atlaskit/tmp-editor-statsig/expVal';
|
|
12
11
|
import { ErrorBoundary } from '../ErrorBoundary';
|
|
13
12
|
import { MountPluginHooks } from './mount-plugin-hooks';
|
|
14
13
|
var pluginsComponentsWrapper = css({
|
|
@@ -41,7 +40,7 @@ var PluginSlot = function PluginSlot(_ref) {
|
|
|
41
40
|
containerElement: containerElement
|
|
42
41
|
}), jsx("div", {
|
|
43
42
|
css: pluginsComponentsWrapper,
|
|
44
|
-
"data-testid":
|
|
43
|
+
"data-testid": "plugins-components-wrapper"
|
|
45
44
|
}, items === null || items === void 0 ? void 0 : items.map(function (component, key) {
|
|
46
45
|
var props = {
|
|
47
46
|
key: key
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "219.
|
|
2
|
+
export var version = "219.7.0";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "219.
|
|
3
|
+
"version": "219.7.1",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"@atlaskit/activity-provider": "^2.5.0",
|
|
49
49
|
"@atlaskit/adf-schema": "^52.11.0",
|
|
50
50
|
"@atlaskit/afm-i18n-platform-editor-editor-core": "2.10.0",
|
|
51
|
-
"@atlaskit/analytics-namespaced-context": "^7.
|
|
51
|
+
"@atlaskit/analytics-namespaced-context": "^7.3.0",
|
|
52
52
|
"@atlaskit/analytics-next": "^11.2.0",
|
|
53
53
|
"@atlaskit/analytics-next-stable-react-context": "1.0.1",
|
|
54
54
|
"@atlaskit/button": "^23.11.0",
|
|
@@ -56,13 +56,13 @@
|
|
|
56
56
|
"@atlaskit/editor-json-transformer": "^8.31.0",
|
|
57
57
|
"@atlaskit/editor-performance-metrics": "^2.1.0",
|
|
58
58
|
"@atlaskit/editor-plugin-connectivity": "^10.0.0",
|
|
59
|
-
"@atlaskit/editor-plugin-quick-insert": "^10.
|
|
59
|
+
"@atlaskit/editor-plugin-quick-insert": "^10.4.0",
|
|
60
60
|
"@atlaskit/editor-plugin-user-preferences": "^8.1.0",
|
|
61
61
|
"@atlaskit/editor-plugins": "^13.1.0",
|
|
62
62
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
63
63
|
"@atlaskit/editor-shared-styles": "^3.10.0",
|
|
64
64
|
"@atlaskit/editor-ssr-renderer": "^5.1.0",
|
|
65
|
-
"@atlaskit/editor-toolbar": "^1.
|
|
65
|
+
"@atlaskit/editor-toolbar": "^1.2.0",
|
|
66
66
|
"@atlaskit/editor-toolbar-model": "^0.4.0",
|
|
67
67
|
"@atlaskit/emoji": "^70.6.0",
|
|
68
68
|
"@atlaskit/feature-gate-js-client": "^5.5.0",
|
|
@@ -71,10 +71,10 @@
|
|
|
71
71
|
"@atlaskit/media-card": "^80.4.0",
|
|
72
72
|
"@atlaskit/mention": "^25.0.0",
|
|
73
73
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
74
|
-
"@atlaskit/platform-feature-flags-react": "^0.
|
|
74
|
+
"@atlaskit/platform-feature-flags-react": "^0.5.0",
|
|
75
75
|
"@atlaskit/react-ufo": "^5.20.0",
|
|
76
76
|
"@atlaskit/task-decision": "^20.0.0",
|
|
77
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
77
|
+
"@atlaskit/tmp-editor-statsig": "^80.0.0",
|
|
78
78
|
"@atlaskit/tokens": "^13.0.0",
|
|
79
79
|
"@atlaskit/tooltip": "^22.2.0",
|
|
80
80
|
"@atlaskit/width-detector": "^5.1.0",
|
|
@@ -104,12 +104,12 @@
|
|
|
104
104
|
"@af/suppress-react-warnings": "workspace:^",
|
|
105
105
|
"@af/visual-regression": "workspace:^",
|
|
106
106
|
"@atlaskit/adf-utils": "^19.29.0",
|
|
107
|
-
"@atlaskit/analytics-listeners": "^10.
|
|
107
|
+
"@atlaskit/analytics-listeners": "^10.1.0",
|
|
108
108
|
"@atlaskit/collab-provider": "^18.2.0",
|
|
109
109
|
"@atlaskit/editor-plugin-annotation": "^10.3.0",
|
|
110
110
|
"@atlaskit/editor-plugin-card": "^16.7.0",
|
|
111
|
-
"@atlaskit/editor-plugin-list": "^12.
|
|
112
|
-
"@atlaskit/editor-plugin-paste": "^11.
|
|
111
|
+
"@atlaskit/editor-plugin-list": "^12.1.0",
|
|
112
|
+
"@atlaskit/editor-plugin-paste": "^11.2.0",
|
|
113
113
|
"@atlaskit/editor-test-helpers": "workspace:^",
|
|
114
114
|
"@atlaskit/link-provider": "^4.4.0",
|
|
115
115
|
"@atlaskit/linking-common": "^9.11.0",
|