@atlaskit/editor-core 209.3.2 → 209.3.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 +18 -0
- package/dist/cjs/create-editor/ReactEditorView.js +1 -1
- package/dist/cjs/ui/EditorContentContainer/styles/telepointerStyles.js +0 -1
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/create-editor/ReactEditorView.js +1 -1
- package/dist/es2019/ui/EditorContentContainer/styles/telepointerStyles.js +0 -1
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/create-editor/ReactEditorView.js +1 -1
- package/dist/esm/ui/EditorContentContainer/styles/telepointerStyles.js +0 -1
- package/dist/esm/version-wrapper.js +1 -1
- package/package.json +2 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 209.3.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#193091](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/193091)
|
|
8
|
+
[`7e879ace28cec`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7e879ace28cec) -
|
|
9
|
+
AFO-4081 cleanup ttvc v3 ff
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
12
|
+
## 209.3.3
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- [#192710](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/192710)
|
|
17
|
+
[`b3b30f3bc4453`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b3b30f3bc4453) -
|
|
18
|
+
Internal changes to how border radius and border width values are applied. No visual change.
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
|
|
3
21
|
## 209.3.2
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
|
@@ -691,7 +691,7 @@ function ReactEditorView(props) {
|
|
|
691
691
|
id: EDIT_AREA_ID,
|
|
692
692
|
"aria-describedby": assistiveDescribedBy,
|
|
693
693
|
"data-editor-id": editorId.current,
|
|
694
|
-
"data-vc-ignore-if-no-layout-shift":
|
|
694
|
+
"data-vc-ignore-if-no-layout-shift": true
|
|
695
695
|
}));
|
|
696
696
|
}, [handleEditorViewRef, props.intl]);
|
|
697
697
|
var previousPreset = (0, _hooks.usePreviousState)(preset);
|
|
@@ -172,7 +172,6 @@ var telepointerStyle = exports.telepointerStyle = (0, _react.css)({
|
|
|
172
172
|
font: "var(--ds-font-body-small, normal 400 11px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
|
|
173
173
|
paddingLeft: "var(--ds-space-050, 4px)",
|
|
174
174
|
paddingRight: "var(--ds-space-050, 4px)",
|
|
175
|
-
color: "var(--ds-text-inverse, #FFFFFF)",
|
|
176
175
|
borderRadius: '0 2px 2px 0'
|
|
177
176
|
},
|
|
178
177
|
'.telepointer-initial': {
|
|
@@ -638,7 +638,7 @@ export function ReactEditorView(props) {
|
|
|
638
638
|
id: EDIT_AREA_ID,
|
|
639
639
|
"aria-describedby": assistiveDescribedBy,
|
|
640
640
|
"data-editor-id": editorId.current,
|
|
641
|
-
"data-vc-ignore-if-no-layout-shift":
|
|
641
|
+
"data-vc-ignore-if-no-layout-shift": true
|
|
642
642
|
}));
|
|
643
643
|
}, [handleEditorViewRef, props.intl]);
|
|
644
644
|
const previousPreset = usePreviousState(preset);
|
|
@@ -165,7 +165,6 @@ export const telepointerStyle = css({
|
|
|
165
165
|
font: "var(--ds-font-body-small, normal 400 11px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
|
|
166
166
|
paddingLeft: "var(--ds-space-050, 4px)",
|
|
167
167
|
paddingRight: "var(--ds-space-050, 4px)",
|
|
168
|
-
color: "var(--ds-text-inverse, #FFFFFF)",
|
|
169
168
|
borderRadius: '0 2px 2px 0'
|
|
170
169
|
},
|
|
171
170
|
'.telepointer-initial': {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export const name = "@atlaskit/editor-core";
|
|
2
|
-
export const version = "209.3.
|
|
2
|
+
export const version = "209.3.3";
|
|
@@ -681,7 +681,7 @@ export function ReactEditorView(props) {
|
|
|
681
681
|
id: EDIT_AREA_ID,
|
|
682
682
|
"aria-describedby": assistiveDescribedBy,
|
|
683
683
|
"data-editor-id": editorId.current,
|
|
684
|
-
"data-vc-ignore-if-no-layout-shift":
|
|
684
|
+
"data-vc-ignore-if-no-layout-shift": true
|
|
685
685
|
}));
|
|
686
686
|
}, [handleEditorViewRef, props.intl]);
|
|
687
687
|
var previousPreset = usePreviousState(preset);
|
|
@@ -165,7 +165,6 @@ export var telepointerStyle = css({
|
|
|
165
165
|
font: "var(--ds-font-body-small, normal 400 11px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
|
|
166
166
|
paddingLeft: "var(--ds-space-050, 4px)",
|
|
167
167
|
paddingRight: "var(--ds-space-050, 4px)",
|
|
168
|
-
color: "var(--ds-text-inverse, #FFFFFF)",
|
|
169
168
|
borderRadius: '0 2px 2px 0'
|
|
170
169
|
},
|
|
171
170
|
'.telepointer-initial': {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export var name = "@atlaskit/editor-core";
|
|
2
|
-
export var version = "209.3.
|
|
2
|
+
export var version = "209.3.3";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "209.3.
|
|
3
|
+
"version": "209.3.4",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
54
54
|
"@atlaskit/editor-shared-styles": "^3.5.0",
|
|
55
55
|
"@atlaskit/emoji": "^69.3.0",
|
|
56
|
-
"@atlaskit/icon": "^27.
|
|
56
|
+
"@atlaskit/icon": "^27.8.0",
|
|
57
57
|
"@atlaskit/link": "^3.2.0",
|
|
58
58
|
"@atlaskit/media-card": "^79.4.0",
|
|
59
59
|
"@atlaskit/mention": "^24.2.0",
|
|
@@ -537,9 +537,6 @@
|
|
|
537
537
|
"platform_editor_centre_mention_padding": {
|
|
538
538
|
"type": "boolean"
|
|
539
539
|
},
|
|
540
|
-
"platform_vc_ignore_no_ls_mutation_marker": {
|
|
541
|
-
"type": "boolean"
|
|
542
|
-
},
|
|
543
540
|
"platform_editor_fix_code_block_bg_color_in_macro_2": {
|
|
544
541
|
"type": "boolean"
|
|
545
542
|
},
|