@atlaskit/editor-plugin-insert-block 2.4.27 → 2.4.28

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
+ ## 2.4.28
4
+
5
+ ### Patch Changes
6
+
7
+ - [#99274](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/99274)
8
+ [`b4dd134e0caaa`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b4dd134e0caaa) -
9
+ ED-25961 Add analytics for clear formatting and adding blockquote from text styles menu
10
+
3
11
  ## 2.4.27
4
12
 
5
13
  ### Patch Changes
@@ -86,7 +86,7 @@ function handleInsertBlockType(insertCodeBlock, insertPanel, insertBlockQuote) {
86
86
  return insertPanel(_analytics.INPUT_METHOD.TOOLBAR);
87
87
  }
88
88
  if (name === _consts.BLOCK_QUOTE.name && insertBlockQuote) {
89
- return insertBlockQuote(_analytics.INPUT_METHOD.TOOLBAR);
89
+ return insertBlockQuote(_analytics.INPUT_METHOD.INSERT_MENU);
90
90
  }
91
91
  return function () {
92
92
  return false;
@@ -75,7 +75,7 @@ function handleInsertBlockType(insertCodeBlock, insertPanel, insertBlockQuote) {
75
75
  return insertPanel(INPUT_METHOD.TOOLBAR);
76
76
  }
77
77
  if (name === BLOCK_QUOTE.name && insertBlockQuote) {
78
- return insertBlockQuote(INPUT_METHOD.TOOLBAR);
78
+ return insertBlockQuote(INPUT_METHOD.INSERT_MENU);
79
79
  }
80
80
  return () => false;
81
81
  };
@@ -75,7 +75,7 @@ function handleInsertBlockType(insertCodeBlock, insertPanel, insertBlockQuote) {
75
75
  return insertPanel(INPUT_METHOD.TOOLBAR);
76
76
  }
77
77
  if (name === BLOCK_QUOTE.name && insertBlockQuote) {
78
- return insertBlockQuote(INPUT_METHOD.TOOLBAR);
78
+ return insertBlockQuote(INPUT_METHOD.INSERT_MENU);
79
79
  }
80
80
  return function () {
81
81
  return false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-insert-block",
3
- "version": "2.4.27",
3
+ "version": "2.4.28",
4
4
  "description": "Insert block plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",