@atlaskit/editor-plugin-insert-block 4.0.1 → 4.1.0
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-insert-block
|
|
2
2
|
|
|
3
|
+
## 4.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#182006](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/182006)
|
|
8
|
+
[`1fda4553957d0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1fda4553957d0) -
|
|
9
|
+
removing A/A experiment
|
|
10
|
+
|
|
3
11
|
## 4.0.1
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -133,7 +133,6 @@ var InsertMenu = function InsertMenu(_ref) {
|
|
|
133
133
|
return [DIAGRAM_TITLE, BLANK_TITLE].includes(item.title);
|
|
134
134
|
}).length === 2;
|
|
135
135
|
if (featuredWhiteboardsPresent) {
|
|
136
|
-
(0, _expValEquals.expValEquals)('confluence_whiteboards_quick_insert_aa', 'cohort', 'control');
|
|
137
136
|
var pinWhiteboardActionToTop = function pinWhiteboardActionToTop(featuredItems, title) {
|
|
138
137
|
// find the requested item by title, give it the appropriate description, and bring it to the top of the list
|
|
139
138
|
var index = featuredItems.findIndex(function (item) {
|
|
@@ -110,7 +110,6 @@ const InsertMenu = ({
|
|
|
110
110
|
const [DIAGRAM_TITLE, BLANK_TITLE] = ['Create diagram', 'Create whiteboard'];
|
|
111
111
|
const featuredWhiteboardsPresent = featuredItems.filter(item => [DIAGRAM_TITLE, BLANK_TITLE].includes(item.title)).length === 2;
|
|
112
112
|
if (featuredWhiteboardsPresent) {
|
|
113
|
-
expValEquals('confluence_whiteboards_quick_insert_aa', 'cohort', 'control');
|
|
114
113
|
const pinWhiteboardActionToTop = (featuredItems, title) => {
|
|
115
114
|
// find the requested item by title, give it the appropriate description, and bring it to the top of the list
|
|
116
115
|
const index = featuredItems.findIndex(item => item.title === title);
|
|
@@ -130,7 +130,6 @@ var InsertMenu = function InsertMenu(_ref) {
|
|
|
130
130
|
return [DIAGRAM_TITLE, BLANK_TITLE].includes(item.title);
|
|
131
131
|
}).length === 2;
|
|
132
132
|
if (featuredWhiteboardsPresent) {
|
|
133
|
-
expValEquals('confluence_whiteboards_quick_insert_aa', 'cohort', 'control');
|
|
134
133
|
var pinWhiteboardActionToTop = function pinWhiteboardActionToTop(featuredItems, title) {
|
|
135
134
|
// find the requested item by title, give it the appropriate description, and bring it to the top of the list
|
|
136
135
|
var index = featuredItems.findIndex(function (item) {
|