@atlaskit/editor-plugin-insert-block 0.3.3 → 0.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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # @atlaskit/editor-plugin-insert-block
2
2
 
3
+ ## 0.3.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#71128](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/71128) [`d8b202a941c9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d8b202a941c9) - [ux] When the Right Arrow is pressed and the selection reaches the last row of the default popup, the grid should expand
8
+ - Updated dependencies
9
+
3
10
  ## 0.3.3
4
11
 
5
12
  ### Patch Changes
@@ -152,7 +152,7 @@ var TableSelectorPopup = exports.TableSelectorPopup = function TableSelectorPopu
152
152
  return DEFAULT_TABLE_SELECTOR_ROWS;
153
153
  // Decrease the popup size when decreased row selection
154
154
  } else if (increaseMaxRow) {
155
- return prevSize.row + 1;
155
+ return prevSize.maxRow + 1;
156
156
  }
157
157
  return prevSize.maxRow;
158
158
  default:
@@ -138,7 +138,7 @@ export const TableSelectorPopup = props => {
138
138
  return DEFAULT_TABLE_SELECTOR_ROWS;
139
139
  // Decrease the popup size when decreased row selection
140
140
  } else if (increaseMaxRow) {
141
- return prevSize.row + 1;
141
+ return prevSize.maxRow + 1;
142
142
  }
143
143
  return prevSize.maxRow;
144
144
  default:
@@ -144,7 +144,7 @@ export var TableSelectorPopup = function TableSelectorPopup(props) {
144
144
  return DEFAULT_TABLE_SELECTOR_ROWS;
145
145
  // Decrease the popup size when decreased row selection
146
146
  } else if (increaseMaxRow) {
147
- return prevSize.row + 1;
147
+ return prevSize.maxRow + 1;
148
148
  }
149
149
  return prevSize.maxRow;
150
150
  default:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-insert-block",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "Insert block plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -33,7 +33,7 @@
33
33
  ".": "./src/index.ts"
34
34
  },
35
35
  "dependencies": {
36
- "@atlaskit/editor-common": "^77.1.0",
36
+ "@atlaskit/editor-common": "^77.3.0",
37
37
  "@atlaskit/editor-plugin-analytics": "^0.4.0",
38
38
  "@atlaskit/editor-plugin-block-type": "^3.0.0",
39
39
  "@atlaskit/editor-plugin-code-block": "^0.1.0",
@@ -52,7 +52,7 @@
52
52
  "@atlaskit/editor-plugin-quick-insert": "^0.2.0",
53
53
  "@atlaskit/editor-plugin-rule": "^0.1.0",
54
54
  "@atlaskit/editor-plugin-status": "^0.3.0",
55
- "@atlaskit/editor-plugin-table": "^7.1.0",
55
+ "@atlaskit/editor-plugin-table": "^7.2.0",
56
56
  "@atlaskit/editor-plugin-tasks-and-decisions": "^0.3.0",
57
57
  "@atlaskit/editor-plugin-type-ahead": "^0.9.0",
58
58
  "@atlaskit/editor-prosemirror": "1.1.0",