@atlaskit/editor-core 215.9.6 → 215.9.7
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 +10 -0
- package/dist/cjs/composable-editor/editor-internal.js +1 -2
- package/dist/cjs/create-editor/ReactEditorView.js +1 -1
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/composable-editor/editor-internal.js +1 -2
- package/dist/es2019/create-editor/ReactEditorView.js +1 -1
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/composable-editor/editor-internal.js +1 -2
- package/dist/esm/create-editor/ReactEditorView.js +1 -1
- package/dist/esm/version-wrapper.js +1 -1
- package/package.json +1 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 215.9.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`97741f3657384`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/97741f3657384) -
|
|
8
|
+
Remove platform_editor_disable_rerender_tracking_jira
|
|
9
|
+
- [`b0103f4f35c6d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b0103f4f35c6d) -
|
|
10
|
+
Removed fg platform_renderer_triple_click_selects_paragraph
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
|
|
3
13
|
## 215.9.6
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
@@ -11,7 +11,6 @@ var _react = require("react");
|
|
|
11
11
|
var _react2 = require("@emotion/react");
|
|
12
12
|
var _analytics = require("@atlaskit/editor-common/analytics");
|
|
13
13
|
var _portal = require("@atlaskit/editor-common/portal");
|
|
14
|
-
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
15
14
|
var _ErrorBoundary = _interopRequireDefault(require("../create-editor/ErrorBoundary"));
|
|
16
15
|
var _ReactEditorView = _interopRequireDefault(require("../create-editor/ReactEditorView"));
|
|
17
16
|
var _EditorContext = _interopRequireDefault(require("../ui/EditorContext"));
|
|
@@ -55,7 +54,7 @@ var EditorInternal = exports.EditorInternal = /*#__PURE__*/(0, _react.memo)(func
|
|
|
55
54
|
|
|
56
55
|
// Render tracking is firing too many events in Jira so we are disabling them for now. See - https://product-fabric.atlassian.net/browse/ED-25616
|
|
57
56
|
// Also firing too many events for the legacy content macro, so disabling for now. See - https://product-fabric.atlassian.net/browse/ED-26650
|
|
58
|
-
var renderTrackingEnabled =
|
|
57
|
+
var renderTrackingEnabled = false;
|
|
59
58
|
var useShallow = false;
|
|
60
59
|
var _usePortalProvider = (0, _portal.usePortalProvider)(),
|
|
61
60
|
_usePortalProvider2 = (0, _slicedToArray2.default)(_usePortalProvider, 2),
|
|
@@ -739,7 +739,7 @@ function ReactEditorView(props) {
|
|
|
739
739
|
|
|
740
740
|
// Render tracking is firing too many events in Jira so we are disabling them for now. See - https://product-fabric.atlassian.net/browse/ED-25616
|
|
741
741
|
// Also firing too many events for the legacy content macro, so disabling for now. See - https://product-fabric.atlassian.net/browse/ED-26650
|
|
742
|
-
var renderTrackingEnabled =
|
|
742
|
+
var renderTrackingEnabled = false;
|
|
743
743
|
return /*#__PURE__*/_react.default.createElement(_uiReact.ReactEditorViewContext.Provider, {
|
|
744
744
|
value: {
|
|
745
745
|
editorRef: editorRef,
|
|
@@ -8,7 +8,6 @@ import { Fragment, memo } from 'react';
|
|
|
8
8
|
import { css, jsx } from '@emotion/react';
|
|
9
9
|
import { ACTION, ACTION_SUBJECT } from '@atlaskit/editor-common/analytics';
|
|
10
10
|
import { usePortalProvider } from '@atlaskit/editor-common/portal';
|
|
11
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
12
11
|
import ErrorBoundary from '../create-editor/ErrorBoundary';
|
|
13
12
|
import ReactEditorViewNext from '../create-editor/ReactEditorView';
|
|
14
13
|
import EditorContext from '../ui/EditorContext';
|
|
@@ -49,7 +48,7 @@ export const EditorInternal = /*#__PURE__*/memo(({
|
|
|
49
48
|
|
|
50
49
|
// Render tracking is firing too many events in Jira so we are disabling them for now. See - https://product-fabric.atlassian.net/browse/ED-25616
|
|
51
50
|
// Also firing too many events for the legacy content macro, so disabling for now. See - https://product-fabric.atlassian.net/browse/ED-26650
|
|
52
|
-
const renderTrackingEnabled =
|
|
51
|
+
const renderTrackingEnabled = false;
|
|
53
52
|
const useShallow = false;
|
|
54
53
|
const [portalProviderAPI, PortalRenderer] = usePortalProvider();
|
|
55
54
|
const [nodeViewPortalProviderAPI, NodeViewPortalRenderer] = usePortalProvider();
|
|
@@ -681,7 +681,7 @@ export function ReactEditorView(props) {
|
|
|
681
681
|
|
|
682
682
|
// Render tracking is firing too many events in Jira so we are disabling them for now. See - https://product-fabric.atlassian.net/browse/ED-25616
|
|
683
683
|
// Also firing too many events for the legacy content macro, so disabling for now. See - https://product-fabric.atlassian.net/browse/ED-26650
|
|
684
|
-
const renderTrackingEnabled =
|
|
684
|
+
const renderTrackingEnabled = false;
|
|
685
685
|
return /*#__PURE__*/React.createElement(ReactEditorViewContext.Provider, {
|
|
686
686
|
value: {
|
|
687
687
|
editorRef: editorRef,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "
|
|
2
|
+
export const version = "0.0.0-development";
|
|
@@ -12,7 +12,6 @@ import { Fragment, memo } from 'react';
|
|
|
12
12
|
import { css, jsx } from '@emotion/react';
|
|
13
13
|
import { ACTION, ACTION_SUBJECT } from '@atlaskit/editor-common/analytics';
|
|
14
14
|
import { usePortalProvider } from '@atlaskit/editor-common/portal';
|
|
15
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
16
15
|
import ErrorBoundary from '../create-editor/ErrorBoundary';
|
|
17
16
|
import ReactEditorViewNext from '../create-editor/ReactEditorView';
|
|
18
17
|
import EditorContext from '../ui/EditorContext';
|
|
@@ -51,7 +50,7 @@ export var EditorInternal = /*#__PURE__*/memo(function (_ref) {
|
|
|
51
50
|
|
|
52
51
|
// Render tracking is firing too many events in Jira so we are disabling them for now. See - https://product-fabric.atlassian.net/browse/ED-25616
|
|
53
52
|
// Also firing too many events for the legacy content macro, so disabling for now. See - https://product-fabric.atlassian.net/browse/ED-26650
|
|
54
|
-
var renderTrackingEnabled =
|
|
53
|
+
var renderTrackingEnabled = false;
|
|
55
54
|
var useShallow = false;
|
|
56
55
|
var _usePortalProvider = usePortalProvider(),
|
|
57
56
|
_usePortalProvider2 = _slicedToArray(_usePortalProvider, 2),
|
|
@@ -729,7 +729,7 @@ export function ReactEditorView(props) {
|
|
|
729
729
|
|
|
730
730
|
// Render tracking is firing too many events in Jira so we are disabling them for now. See - https://product-fabric.atlassian.net/browse/ED-25616
|
|
731
731
|
// Also firing too many events for the legacy content macro, so disabling for now. See - https://product-fabric.atlassian.net/browse/ED-26650
|
|
732
|
-
var renderTrackingEnabled =
|
|
732
|
+
var renderTrackingEnabled = false;
|
|
733
733
|
return /*#__PURE__*/React.createElement(ReactEditorViewContext.Provider, {
|
|
734
734
|
value: {
|
|
735
735
|
editorRef: editorRef,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "
|
|
2
|
+
export var version = "0.0.0-development";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "215.9.
|
|
3
|
+
"version": "215.9.7",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -199,9 +199,6 @@
|
|
|
199
199
|
"type": "boolean",
|
|
200
200
|
"referenceOnly": true
|
|
201
201
|
},
|
|
202
|
-
"platform_editor_disable_rerender_tracking_jira": {
|
|
203
|
-
"type": "boolean"
|
|
204
|
-
},
|
|
205
202
|
"platform-component-visual-refresh": {
|
|
206
203
|
"type": "boolean",
|
|
207
204
|
"referenceOnly": true
|
|
@@ -274,10 +271,6 @@
|
|
|
274
271
|
"type": "boolean",
|
|
275
272
|
"referenceOnly": true
|
|
276
273
|
},
|
|
277
|
-
"platform_editor_tables_numbered_column_correction": {
|
|
278
|
-
"type": "boolean",
|
|
279
|
-
"referenceOnly": true
|
|
280
|
-
},
|
|
281
274
|
"platform_editor_nested_dnd_styles_changes": {
|
|
282
275
|
"type": "boolean"
|
|
283
276
|
},
|
|
@@ -292,10 +285,6 @@
|
|
|
292
285
|
"platform_editor_quick_insert_placeholder": {
|
|
293
286
|
"type": "boolean"
|
|
294
287
|
},
|
|
295
|
-
"platform_editor_numbered_column_misalignment": {
|
|
296
|
-
"type": "boolean",
|
|
297
|
-
"referenceOnly": true
|
|
298
|
-
},
|
|
299
288
|
"platform_editor_nested_tables_cellselection_paste": {
|
|
300
289
|
"type": "boolean",
|
|
301
290
|
"referenceOnly": true
|
|
@@ -320,10 +309,6 @@
|
|
|
320
309
|
"type": "boolean",
|
|
321
310
|
"referenceOnly": true
|
|
322
311
|
},
|
|
323
|
-
"platform_renderer_triple_click_selects_paragraph": {
|
|
324
|
-
"type": "boolean",
|
|
325
|
-
"referenceOnly": true
|
|
326
|
-
},
|
|
327
312
|
"platform_editor_user_intent_plugin": {
|
|
328
313
|
"type": "boolean",
|
|
329
314
|
"referenceOnly": true
|