@atlaskit/editor-core 188.10.1 → 188.10.2
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 +7 -0
- package/dist/cjs/plugins/text-color/ui/ToolbarTextColor/index.js +6 -8
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/plugins/text-color/ui/ToolbarTextColor/index.js +6 -8
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/plugins/text-color/ui/ToolbarTextColor/index.js +6 -8
- package/dist/esm/version-wrapper.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/editor-core
|
|
2
2
|
|
|
3
|
+
## 188.10.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#40384](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40384) [`1ed4227201a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1ed4227201a) - [ux] ED-19206 Fixing the issue of color Selection from toolbar doesn't refocus to editor
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
|
|
3
10
|
## 188.10.1
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -64,7 +64,6 @@ var ToolbarTextColor = exports.ToolbarTextColor = /*#__PURE__*/function (_React$
|
|
|
64
64
|
});
|
|
65
65
|
});
|
|
66
66
|
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "changeTextColor", function (color, editorAnalyticsApi, disabled) {
|
|
67
|
-
var _this$toolbarItemRef;
|
|
68
67
|
if (!disabled) {
|
|
69
68
|
var _this$props$editorVie;
|
|
70
69
|
var palette = _this.props.pluginState.palette;
|
|
@@ -84,7 +83,6 @@ var ToolbarTextColor = exports.ToolbarTextColor = /*#__PURE__*/function (_React$
|
|
|
84
83
|
//To set the focus on the textcolor button when the menu is closed by 'Esc' only to meet aria guidelines
|
|
85
84
|
(_this$props$editorVie = _this.props.editorView) === null || _this$props$editorVie === void 0 || _this$props$editorVie.focus();
|
|
86
85
|
}
|
|
87
|
-
(_this$toolbarItemRef = _this.toolbarItemRef) === null || _this$toolbarItemRef === void 0 || (_this$toolbarItemRef = _this$toolbarItemRef.current) === null || _this$toolbarItemRef === void 0 || _this$toolbarItemRef.focus();
|
|
88
86
|
return false;
|
|
89
87
|
});
|
|
90
88
|
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "toggleOpen", function () {
|
|
@@ -120,8 +118,8 @@ var ToolbarTextColor = exports.ToolbarTextColor = /*#__PURE__*/function (_React$
|
|
|
120
118
|
}));
|
|
121
119
|
}
|
|
122
120
|
if (!isOpen && event instanceof KeyboardEvent && (event === null || event === void 0 ? void 0 : event.key) === 'Escape') {
|
|
123
|
-
var _this$
|
|
124
|
-
(_this$
|
|
121
|
+
var _this$toolbarItemRef;
|
|
122
|
+
(_this$toolbarItemRef = _this.toolbarItemRef) === null || _this$toolbarItemRef === void 0 || (_this$toolbarItemRef = _this$toolbarItemRef.current) === null || _this$toolbarItemRef === void 0 || _this$toolbarItemRef.focus();
|
|
125
123
|
}
|
|
126
124
|
});
|
|
127
125
|
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "hide", function (e) {
|
|
@@ -134,15 +132,15 @@ var ToolbarTextColor = exports.ToolbarTextColor = /*#__PURE__*/function (_React$
|
|
|
134
132
|
isOpen: false
|
|
135
133
|
});
|
|
136
134
|
if (e instanceof KeyboardEvent && e.key === 'Escape') {
|
|
137
|
-
var _this$
|
|
138
|
-
(_this$
|
|
135
|
+
var _this$toolbarItemRef2;
|
|
136
|
+
(_this$toolbarItemRef2 = _this.toolbarItemRef) === null || _this$toolbarItemRef2 === void 0 || (_this$toolbarItemRef2 = _this$toolbarItemRef2.current) === null || _this$toolbarItemRef2 === void 0 || _this$toolbarItemRef2.focus();
|
|
139
137
|
}
|
|
140
138
|
}
|
|
141
139
|
});
|
|
142
140
|
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "hideonEsc", function (e) {
|
|
143
|
-
var _this$
|
|
141
|
+
var _this$toolbarItemRef3;
|
|
144
142
|
_this.hide(e);
|
|
145
|
-
(_this$
|
|
143
|
+
(_this$toolbarItemRef3 = _this.toolbarItemRef) === null || _this$toolbarItemRef3 === void 0 || (_this$toolbarItemRef3 = _this$toolbarItemRef3.current) === null || _this$toolbarItemRef3 === void 0 || _this$toolbarItemRef3.focus();
|
|
146
144
|
});
|
|
147
145
|
return _this;
|
|
148
146
|
}
|
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.version = exports.nextMajorVersion = exports.name = void 0;
|
|
7
7
|
var name = exports.name = "@atlaskit/editor-core";
|
|
8
|
-
var version = exports.version = "188.10.
|
|
8
|
+
var version = exports.version = "188.10.2";
|
|
9
9
|
var nextMajorVersion = exports.nextMajorVersion = function nextMajorVersion() {
|
|
10
10
|
return [Number(version.split('.')[0]) + 1, 0, 0].join('.');
|
|
11
11
|
};
|
|
@@ -42,7 +42,6 @@ export class ToolbarTextColor extends React.Component {
|
|
|
42
42
|
});
|
|
43
43
|
});
|
|
44
44
|
_defineProperty(this, "changeTextColor", (color, editorAnalyticsApi, disabled) => {
|
|
45
|
-
var _this$toolbarItemRef, _this$toolbarItemRef$;
|
|
46
45
|
if (!disabled) {
|
|
47
46
|
var _this$props$editorVie;
|
|
48
47
|
const {
|
|
@@ -64,7 +63,6 @@ export class ToolbarTextColor extends React.Component {
|
|
|
64
63
|
//To set the focus on the textcolor button when the menu is closed by 'Esc' only to meet aria guidelines
|
|
65
64
|
(_this$props$editorVie = this.props.editorView) === null || _this$props$editorVie === void 0 ? void 0 : _this$props$editorVie.focus();
|
|
66
65
|
}
|
|
67
|
-
(_this$toolbarItemRef = this.toolbarItemRef) === null || _this$toolbarItemRef === void 0 ? void 0 : (_this$toolbarItemRef$ = _this$toolbarItemRef.current) === null || _this$toolbarItemRef$ === void 0 ? void 0 : _this$toolbarItemRef$.focus();
|
|
68
66
|
return false;
|
|
69
67
|
});
|
|
70
68
|
_defineProperty(this, "toggleOpen", () => {
|
|
@@ -101,8 +99,8 @@ export class ToolbarTextColor extends React.Component {
|
|
|
101
99
|
}));
|
|
102
100
|
}
|
|
103
101
|
if (!isOpen && event instanceof KeyboardEvent && (event === null || event === void 0 ? void 0 : event.key) === 'Escape') {
|
|
104
|
-
var _this$
|
|
105
|
-
(_this$
|
|
102
|
+
var _this$toolbarItemRef, _this$toolbarItemRef$;
|
|
103
|
+
(_this$toolbarItemRef = this.toolbarItemRef) === null || _this$toolbarItemRef === void 0 ? void 0 : (_this$toolbarItemRef$ = _this$toolbarItemRef.current) === null || _this$toolbarItemRef$ === void 0 ? void 0 : _this$toolbarItemRef$.focus();
|
|
106
104
|
}
|
|
107
105
|
});
|
|
108
106
|
_defineProperty(this, "hide", e => {
|
|
@@ -117,15 +115,15 @@ export class ToolbarTextColor extends React.Component {
|
|
|
117
115
|
isOpen: false
|
|
118
116
|
});
|
|
119
117
|
if (e instanceof KeyboardEvent && e.key === 'Escape') {
|
|
120
|
-
var _this$
|
|
121
|
-
(_this$
|
|
118
|
+
var _this$toolbarItemRef2, _this$toolbarItemRef3;
|
|
119
|
+
(_this$toolbarItemRef2 = this.toolbarItemRef) === null || _this$toolbarItemRef2 === void 0 ? void 0 : (_this$toolbarItemRef3 = _this$toolbarItemRef2.current) === null || _this$toolbarItemRef3 === void 0 ? void 0 : _this$toolbarItemRef3.focus();
|
|
122
120
|
}
|
|
123
121
|
}
|
|
124
122
|
});
|
|
125
123
|
_defineProperty(this, "hideonEsc", e => {
|
|
126
|
-
var _this$
|
|
124
|
+
var _this$toolbarItemRef4, _this$toolbarItemRef5;
|
|
127
125
|
this.hide(e);
|
|
128
|
-
(_this$
|
|
126
|
+
(_this$toolbarItemRef4 = this.toolbarItemRef) === null || _this$toolbarItemRef4 === void 0 ? void 0 : (_this$toolbarItemRef5 = _this$toolbarItemRef4.current) === null || _this$toolbarItemRef5 === void 0 ? void 0 : _this$toolbarItemRef5.focus();
|
|
129
127
|
});
|
|
130
128
|
}
|
|
131
129
|
render() {
|
|
@@ -61,7 +61,6 @@ export var ToolbarTextColor = /*#__PURE__*/function (_React$Component) {
|
|
|
61
61
|
});
|
|
62
62
|
});
|
|
63
63
|
_defineProperty(_assertThisInitialized(_this), "changeTextColor", function (color, editorAnalyticsApi, disabled) {
|
|
64
|
-
var _this$toolbarItemRef;
|
|
65
64
|
if (!disabled) {
|
|
66
65
|
var _this$props$editorVie;
|
|
67
66
|
var palette = _this.props.pluginState.palette;
|
|
@@ -81,7 +80,6 @@ export var ToolbarTextColor = /*#__PURE__*/function (_React$Component) {
|
|
|
81
80
|
//To set the focus on the textcolor button when the menu is closed by 'Esc' only to meet aria guidelines
|
|
82
81
|
(_this$props$editorVie = _this.props.editorView) === null || _this$props$editorVie === void 0 || _this$props$editorVie.focus();
|
|
83
82
|
}
|
|
84
|
-
(_this$toolbarItemRef = _this.toolbarItemRef) === null || _this$toolbarItemRef === void 0 || (_this$toolbarItemRef = _this$toolbarItemRef.current) === null || _this$toolbarItemRef === void 0 || _this$toolbarItemRef.focus();
|
|
85
83
|
return false;
|
|
86
84
|
});
|
|
87
85
|
_defineProperty(_assertThisInitialized(_this), "toggleOpen", function () {
|
|
@@ -117,8 +115,8 @@ export var ToolbarTextColor = /*#__PURE__*/function (_React$Component) {
|
|
|
117
115
|
}));
|
|
118
116
|
}
|
|
119
117
|
if (!isOpen && event instanceof KeyboardEvent && (event === null || event === void 0 ? void 0 : event.key) === 'Escape') {
|
|
120
|
-
var _this$
|
|
121
|
-
(_this$
|
|
118
|
+
var _this$toolbarItemRef;
|
|
119
|
+
(_this$toolbarItemRef = _this.toolbarItemRef) === null || _this$toolbarItemRef === void 0 || (_this$toolbarItemRef = _this$toolbarItemRef.current) === null || _this$toolbarItemRef === void 0 || _this$toolbarItemRef.focus();
|
|
122
120
|
}
|
|
123
121
|
});
|
|
124
122
|
_defineProperty(_assertThisInitialized(_this), "hide", function (e) {
|
|
@@ -131,15 +129,15 @@ export var ToolbarTextColor = /*#__PURE__*/function (_React$Component) {
|
|
|
131
129
|
isOpen: false
|
|
132
130
|
});
|
|
133
131
|
if (e instanceof KeyboardEvent && e.key === 'Escape') {
|
|
134
|
-
var _this$
|
|
135
|
-
(_this$
|
|
132
|
+
var _this$toolbarItemRef2;
|
|
133
|
+
(_this$toolbarItemRef2 = _this.toolbarItemRef) === null || _this$toolbarItemRef2 === void 0 || (_this$toolbarItemRef2 = _this$toolbarItemRef2.current) === null || _this$toolbarItemRef2 === void 0 || _this$toolbarItemRef2.focus();
|
|
136
134
|
}
|
|
137
135
|
}
|
|
138
136
|
});
|
|
139
137
|
_defineProperty(_assertThisInitialized(_this), "hideonEsc", function (e) {
|
|
140
|
-
var _this$
|
|
138
|
+
var _this$toolbarItemRef3;
|
|
141
139
|
_this.hide(e);
|
|
142
|
-
(_this$
|
|
140
|
+
(_this$toolbarItemRef3 = _this.toolbarItemRef) === null || _this$toolbarItemRef3 === void 0 || (_this$toolbarItemRef3 = _this$toolbarItemRef3.current) === null || _this$toolbarItemRef3 === void 0 || _this$toolbarItemRef3.focus();
|
|
143
141
|
});
|
|
144
142
|
return _this;
|
|
145
143
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-core",
|
|
3
|
-
"version": "188.10.
|
|
3
|
+
"version": "188.10.2",
|
|
4
4
|
"description": "A package contains Atlassian editor core functionality",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"@atlaskit/editor-plugin-scroll-into-view": "^0.1.0",
|
|
93
93
|
"@atlaskit/editor-plugin-selection": "^0.1.0",
|
|
94
94
|
"@atlaskit/editor-plugin-status": "^0.1.0",
|
|
95
|
-
"@atlaskit/editor-plugin-table": "^5.
|
|
95
|
+
"@atlaskit/editor-plugin-table": "^5.3.0",
|
|
96
96
|
"@atlaskit/editor-plugin-text-formatting": "^0.4.0",
|
|
97
97
|
"@atlaskit/editor-plugin-type-ahead": "^0.7.0",
|
|
98
98
|
"@atlaskit/editor-plugin-unsupported-content": "^0.2.0",
|