@atlaskit/editor-core 208.6.3 → 208.6.4
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 +9 -0
- package/dist/cjs/create-editor/ReactEditorView.js +2 -1
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/create-editor/ReactEditorView.js +2 -1
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/create-editor/ReactEditorView.js +2 -1
- package/dist/esm/version-wrapper.js +1 -1
- package/package.json +7 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 208.6.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#179156](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/179156)
|
|
8
|
+
[`81f5605b925fc`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/81f5605b925fc) -
|
|
9
|
+
AFO-4081 ufo vc ignore if no layout shift marker
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
3
12
|
## 208.6.3
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -689,7 +689,8 @@ function ReactEditorView(props) {
|
|
|
689
689
|
role: "textbox",
|
|
690
690
|
id: EDIT_AREA_ID,
|
|
691
691
|
"aria-describedby": assistiveDescribedBy,
|
|
692
|
-
"data-editor-id": editorId.current
|
|
692
|
+
"data-editor-id": editorId.current,
|
|
693
|
+
"data-vc-ignore-if-no-layout-shift": (0, _platformFeatureFlags.fg)('platform_vc_ignore_no_ls_mutation_marker') ? true : undefined
|
|
693
694
|
}));
|
|
694
695
|
}, [handleEditorViewRef, props.intl]);
|
|
695
696
|
var previousPreset = (0, _hooks.usePreviousState)(preset);
|
|
@@ -636,7 +636,8 @@ export function ReactEditorView(props) {
|
|
|
636
636
|
role: "textbox",
|
|
637
637
|
id: EDIT_AREA_ID,
|
|
638
638
|
"aria-describedby": assistiveDescribedBy,
|
|
639
|
-
"data-editor-id": editorId.current
|
|
639
|
+
"data-editor-id": editorId.current,
|
|
640
|
+
"data-vc-ignore-if-no-layout-shift": fg('platform_vc_ignore_no_ls_mutation_marker') ? true : undefined
|
|
640
641
|
}));
|
|
641
642
|
}, [handleEditorViewRef, props.intl]);
|
|
642
643
|
const previousPreset = usePreviousState(preset);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "208.6.
|
|
2
|
+
export const version = "208.6.3";
|
|
@@ -679,7 +679,8 @@ export function ReactEditorView(props) {
|
|
|
679
679
|
role: "textbox",
|
|
680
680
|
id: EDIT_AREA_ID,
|
|
681
681
|
"aria-describedby": assistiveDescribedBy,
|
|
682
|
-
"data-editor-id": editorId.current
|
|
682
|
+
"data-editor-id": editorId.current,
|
|
683
|
+
"data-vc-ignore-if-no-layout-shift": fg('platform_vc_ignore_no_ls_mutation_marker') ? true : undefined
|
|
683
684
|
}));
|
|
684
685
|
}, [handleEditorViewRef, props.intl]);
|
|
685
686
|
var previousPreset = usePreviousState(preset);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "208.6.
|
|
2
|
+
export var version = "208.6.3";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "208.6.
|
|
3
|
+
"version": "208.6.4",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
"@atlaskit/analytics-listeners": "^9.0.0",
|
|
94
94
|
"@atlaskit/collab-provider": "^10.20.0",
|
|
95
95
|
"@atlaskit/editor-plugin-annotation": "^2.9.0",
|
|
96
|
-
"@atlaskit/editor-plugin-card": "^6.
|
|
96
|
+
"@atlaskit/editor-plugin-card": "^6.7.0",
|
|
97
97
|
"@atlaskit/editor-plugin-list": "^4.2.0",
|
|
98
98
|
"@atlaskit/editor-plugin-paste": "^3.3.0",
|
|
99
99
|
"@atlaskit/link-provider": "^3.4.0",
|
|
@@ -103,9 +103,9 @@
|
|
|
103
103
|
"@atlaskit/media-test-helpers": "^37.0.0",
|
|
104
104
|
"@atlaskit/modal-dialog": "^14.2.0",
|
|
105
105
|
"@atlaskit/primitives": "^14.10.0",
|
|
106
|
-
"@atlaskit/renderer": "^119.
|
|
106
|
+
"@atlaskit/renderer": "^119.3.0",
|
|
107
107
|
"@atlaskit/section-message": "^8.2.0",
|
|
108
|
-
"@atlaskit/smart-card": "^38.
|
|
108
|
+
"@atlaskit/smart-card": "^38.19.0",
|
|
109
109
|
"@atlaskit/synchrony-test-helpers": "workspace:^",
|
|
110
110
|
"@atlaskit/toggle": "^15.0.0",
|
|
111
111
|
"@atlaskit/util-data-test": "^18.0.0",
|
|
@@ -577,6 +577,9 @@
|
|
|
577
577
|
},
|
|
578
578
|
"platform_editor_centre_mention_padding": {
|
|
579
579
|
"type": "boolean"
|
|
580
|
+
},
|
|
581
|
+
"platform_vc_ignore_no_ls_mutation_marker": {
|
|
582
|
+
"type": "boolean"
|
|
580
583
|
}
|
|
581
584
|
},
|
|
582
585
|
"stricter": {
|