@atlaskit/editor-plugin-table 7.11.0 → 7.11.1

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-table
2
2
 
3
+ ## 7.11.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#95351](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/95351) [`23a6facb3598`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/23a6facb3598) - Remove feature flag for shift arrow up selection in a table.
8
+ - [#94901](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/94901) [`da964fcdc828`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/da964fcdc828) - [ED-23097] Bump ADF schema to version 35.12.1
9
+
3
10
  ## 7.11.0
4
11
 
5
12
  ### Minor Changes
@@ -15,9 +15,7 @@ function tableSelectionKeymapPlugin(editorSelectionAPI) {
15
15
  (0, _keymaps.bindKeymapWithCommand)(_keymaps.moveLeft.common, (0, _selection.arrowLeftFromTable)(editorSelectionAPI)(), list);
16
16
  (0, _keymaps.bindKeymapArrayWithCommand)(_keymaps.selectColumn, (0, _selection.selectColumns)(editorSelectionAPI)(true), list);
17
17
  (0, _keymaps.bindKeymapArrayWithCommand)(_keymaps.selectRow, (0, _selection.selectRows)(editorSelectionAPI)(true), list);
18
- if ((0, _platformFeatureFlags.getBooleanFF)('platform.editor.table.shift-arrowup-fix')) {
19
- (0, _keymaps.bindKeymapWithCommand)(_keymaps.shiftArrowUp.common, (0, _selection.shiftArrowUpFromTable)(editorSelectionAPI)(), list);
20
- }
18
+ (0, _keymaps.bindKeymapWithCommand)(_keymaps.shiftArrowUp.common, (0, _selection.shiftArrowUpFromTable)(editorSelectionAPI)(), list);
21
19
  if ((0, _platformFeatureFlags.getBooleanFF)('platform.editor.table.cmd-a-select-table')) {
22
20
  (0, _keymaps.bindKeymapWithCommand)(_keymaps.selectTable.common, (0, _selection.modASelectTable)(editorSelectionAPI)(), list);
23
21
  }
@@ -8,9 +8,7 @@ export function tableSelectionKeymapPlugin(editorSelectionAPI) {
8
8
  bindKeymapWithCommand(moveLeft.common, arrowLeftFromTable(editorSelectionAPI)(), list);
9
9
  bindKeymapArrayWithCommand(selectColumn, selectColumns(editorSelectionAPI)(true), list);
10
10
  bindKeymapArrayWithCommand(selectRow, selectRows(editorSelectionAPI)(true), list);
11
- if (getBooleanFF('platform.editor.table.shift-arrowup-fix')) {
12
- bindKeymapWithCommand(shiftArrowUp.common, shiftArrowUpFromTable(editorSelectionAPI)(), list);
13
- }
11
+ bindKeymapWithCommand(shiftArrowUp.common, shiftArrowUpFromTable(editorSelectionAPI)(), list);
14
12
  if (getBooleanFF('platform.editor.table.cmd-a-select-table')) {
15
13
  bindKeymapWithCommand(selectTable.common, modASelectTable(editorSelectionAPI)(), list);
16
14
  }
@@ -8,9 +8,7 @@ export function tableSelectionKeymapPlugin(editorSelectionAPI) {
8
8
  bindKeymapWithCommand(moveLeft.common, arrowLeftFromTable(editorSelectionAPI)(), list);
9
9
  bindKeymapArrayWithCommand(selectColumn, selectColumns(editorSelectionAPI)(true), list);
10
10
  bindKeymapArrayWithCommand(selectRow, selectRows(editorSelectionAPI)(true), list);
11
- if (getBooleanFF('platform.editor.table.shift-arrowup-fix')) {
12
- bindKeymapWithCommand(shiftArrowUp.common, shiftArrowUpFromTable(editorSelectionAPI)(), list);
13
- }
11
+ bindKeymapWithCommand(shiftArrowUp.common, shiftArrowUpFromTable(editorSelectionAPI)(), list);
14
12
  if (getBooleanFF('platform.editor.table.cmd-a-select-table')) {
15
13
  bindKeymapWithCommand(selectTable.common, modASelectTable(editorSelectionAPI)(), list);
16
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-table",
3
- "version": "7.11.0",
3
+ "version": "7.11.1",
4
4
  "description": "Table plugin for the @atlaskit/editor",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -28,7 +28,7 @@
28
28
  "runReact18": false
29
29
  },
30
30
  "dependencies": {
31
- "@atlaskit/adf-schema": "^35.10.0",
31
+ "@atlaskit/adf-schema": "^35.12.1",
32
32
  "@atlaskit/custom-steps": "^0.1.0",
33
33
  "@atlaskit/editor-common": "^78.36.0",
34
34
  "@atlaskit/editor-palette": "1.5.3",
@@ -112,9 +112,6 @@
112
112
  "platform.editor.table.drag-move-options-logic-update_fp7xw": {
113
113
  "type": "boolean"
114
114
  },
115
- "platform.editor.table.shift-arrowup-fix": {
116
- "type": "boolean"
117
- },
118
115
  "platform.editor.a11y-table-resizing_uapcv": {
119
116
  "type": "boolean"
120
117
  },
@@ -54,13 +54,11 @@ export function tableSelectionKeymapPlugin(
54
54
  list,
55
55
  );
56
56
 
57
- if (getBooleanFF('platform.editor.table.shift-arrowup-fix')) {
58
- bindKeymapWithCommand(
59
- shiftArrowUp.common!,
60
- shiftArrowUpFromTable(editorSelectionAPI)(),
61
- list,
62
- );
63
- }
57
+ bindKeymapWithCommand(
58
+ shiftArrowUp.common!,
59
+ shiftArrowUpFromTable(editorSelectionAPI)(),
60
+ list,
61
+ );
64
62
 
65
63
  if (getBooleanFF('platform.editor.table.cmd-a-select-table')) {
66
64
  bindKeymapWithCommand(