@atlaskit/editor-plugin-insert-block 0.3.3 → 0.3.5
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 +13 -0
- package/dist/cjs/ui/ToolbarInsertBlock/table-selector-popup-with-listeners.js +1 -1
- package/dist/es2019/ui/ToolbarInsertBlock/table-selector-popup-with-listeners.js +1 -1
- package/dist/esm/ui/ToolbarInsertBlock/table-selector-popup-with-listeners.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-insert-block
|
|
2
2
|
|
|
3
|
+
## 0.3.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#68572](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68572) [`15d407fe5143`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/15d407fe5143) - Upgrading @atlaskit/editor-prosemirror dependency
|
|
8
|
+
|
|
9
|
+
## 0.3.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#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
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
|
|
3
16
|
## 0.3.3
|
|
4
17
|
|
|
5
18
|
### 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.
|
|
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.
|
|
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.
|
|
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
|
+
"version": "0.3.5",
|
|
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.
|
|
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,10 +52,10 @@
|
|
|
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.
|
|
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
|
-
"@atlaskit/editor-prosemirror": "
|
|
58
|
+
"@atlaskit/editor-prosemirror": "3.0.0",
|
|
59
59
|
"@atlaskit/editor-shared-styles": "^2.9.0",
|
|
60
60
|
"@atlaskit/emoji": "^67.6.0",
|
|
61
61
|
"@atlaskit/icon": "^22.0.0",
|