@atlaskit/editor-plugin-quick-insert 8.0.15 → 8.0.16
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
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-quick-insert
|
|
2
2
|
|
|
3
|
+
## 8.0.16
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`7acad9336e3c4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7acad9336e3c4) -
|
|
8
|
+
Remove stale feature flag platform_editor_controls_fix_view_more_in_comment (final value: true)
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 8.0.15
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -56,7 +56,7 @@ var quickInsertPlugin = exports.quickInsertPlugin = function quickInsertPlugin(_
|
|
|
56
56
|
}
|
|
57
57
|
return result;
|
|
58
58
|
},
|
|
59
|
-
getMoreOptionsButtonConfig: options !== null && options !== void 0 && options.enableElementBrowser
|
|
59
|
+
getMoreOptionsButtonConfig: options !== null && options !== void 0 && options.enableElementBrowser ? function (_ref3) {
|
|
60
60
|
var formatMessage = _ref3.formatMessage;
|
|
61
61
|
return {
|
|
62
62
|
title: formatMessage(_messages.toolbarInsertBlockMessages.viewMore),
|
|
@@ -45,7 +45,7 @@ export const quickInsertPlugin = ({
|
|
|
45
45
|
}
|
|
46
46
|
return result;
|
|
47
47
|
},
|
|
48
|
-
getMoreOptionsButtonConfig: options !== null && options !== void 0 && options.enableElementBrowser
|
|
48
|
+
getMoreOptionsButtonConfig: options !== null && options !== void 0 && options.enableElementBrowser ? ({
|
|
49
49
|
formatMessage
|
|
50
50
|
}) => {
|
|
51
51
|
return {
|
|
@@ -49,7 +49,7 @@ export var quickInsertPlugin = function quickInsertPlugin(_ref) {
|
|
|
49
49
|
}
|
|
50
50
|
return result;
|
|
51
51
|
},
|
|
52
|
-
getMoreOptionsButtonConfig: options !== null && options !== void 0 && options.enableElementBrowser
|
|
52
|
+
getMoreOptionsButtonConfig: options !== null && options !== void 0 && options.enableElementBrowser ? function (_ref3) {
|
|
53
53
|
var formatMessage = _ref3.formatMessage;
|
|
54
54
|
return {
|
|
55
55
|
title: formatMessage(messages.viewMore),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-quick-insert",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.16",
|
|
4
4
|
"description": "Quick insert plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -95,9 +95,6 @@
|
|
|
95
95
|
},
|
|
96
96
|
"platform_editor_fix_space_triggering_ai": {
|
|
97
97
|
"type": "boolean"
|
|
98
|
-
},
|
|
99
|
-
"platform_editor_controls_fix_view_more_in_comment": {
|
|
100
|
-
"type": "boolean"
|
|
101
98
|
}
|
|
102
99
|
}
|
|
103
100
|
}
|