@atlaskit/editor-tables 2.7.4 → 2.8.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.
Files changed (84) hide show
  1. package/CHANGELOG.md +294 -281
  2. package/afm-jira/tsconfig.json +20 -0
  3. package/afm-post-office/tsconfig.json +20 -0
  4. package/dist/cjs/utils/create-table.js +2 -1
  5. package/dist/es2019/utils/create-table.js +2 -1
  6. package/dist/esm/utils/create-table.js +2 -1
  7. package/dist/types/cell-bookmark.d.ts +3 -3
  8. package/dist/types/cell-selection.d.ts +4 -4
  9. package/dist/types/utils/analytics-helpers.d.ts +3 -2
  10. package/dist/types/utils/cells.d.ts +2 -2
  11. package/dist/types/utils/clone-tr.d.ts +1 -1
  12. package/dist/types/utils/colspan.d.ts +1 -1
  13. package/dist/types/utils/copy-paste.d.ts +1 -1
  14. package/dist/types/utils/create-table.d.ts +2 -2
  15. package/dist/types/utils/draw-cell-selection.d.ts +1 -1
  16. package/dist/types/utils/empty-cells.d.ts +3 -3
  17. package/dist/types/utils/find.d.ts +4 -4
  18. package/dist/types/utils/fix-tables.d.ts +2 -2
  19. package/dist/types/utils/for-each-cell.d.ts +2 -2
  20. package/dist/types/utils/get-cell-selection-ranges.d.ts +1 -1
  21. package/dist/types/utils/get-cells-in-column.d.ts +2 -2
  22. package/dist/types/utils/get-cells-in-row.d.ts +2 -2
  23. package/dist/types/utils/get-cells-in-table.d.ts +2 -2
  24. package/dist/types/utils/get-selection-rect.d.ts +2 -2
  25. package/dist/types/utils/go-to-next-cell.d.ts +1 -1
  26. package/dist/types/utils/handle-paste.d.ts +2 -2
  27. package/dist/types/utils/is-selected.d.ts +2 -2
  28. package/dist/types/utils/is-selection-type.d.ts +2 -2
  29. package/dist/types/utils/normalize-selection.d.ts +1 -1
  30. package/dist/types/utils/remove-column.d.ts +2 -2
  31. package/dist/types/utils/remove-row.d.ts +2 -2
  32. package/dist/types/utils/remove-table.d.ts +1 -1
  33. package/dist/types/utils/reorder-utils.d.ts +2 -2
  34. package/dist/types/utils/replace-table.d.ts +1 -1
  35. package/dist/types/utils/selection-cell.d.ts +2 -2
  36. package/dist/types/utils/selection-rect.d.ts +2 -2
  37. package/dist/types/utils/set-cell-attrs.d.ts +3 -3
  38. package/dist/types/utils/split-cell-with-type.d.ts +2 -2
  39. package/dist/types/utils/split-cell.d.ts +1 -1
  40. package/dist/types/utils/table-node-types.d.ts +1 -1
  41. package/dist/types/utils/tables.d.ts +2 -2
  42. package/dist/types/utils/test-utils.d.ts +1 -1
  43. package/dist/types/utils/toggle-header.d.ts +3 -3
  44. package/dist/types/utils.d.ts +2 -2
  45. package/dist/types-ts4.5/cell-bookmark.d.ts +3 -3
  46. package/dist/types-ts4.5/cell-selection.d.ts +4 -4
  47. package/dist/types-ts4.5/utils/analytics-helpers.d.ts +3 -2
  48. package/dist/types-ts4.5/utils/cells.d.ts +2 -2
  49. package/dist/types-ts4.5/utils/clone-tr.d.ts +1 -1
  50. package/dist/types-ts4.5/utils/colspan.d.ts +1 -1
  51. package/dist/types-ts4.5/utils/copy-paste.d.ts +1 -1
  52. package/dist/types-ts4.5/utils/create-table.d.ts +2 -2
  53. package/dist/types-ts4.5/utils/draw-cell-selection.d.ts +1 -1
  54. package/dist/types-ts4.5/utils/empty-cells.d.ts +3 -3
  55. package/dist/types-ts4.5/utils/find.d.ts +4 -4
  56. package/dist/types-ts4.5/utils/fix-tables.d.ts +2 -2
  57. package/dist/types-ts4.5/utils/for-each-cell.d.ts +2 -2
  58. package/dist/types-ts4.5/utils/get-cell-selection-ranges.d.ts +1 -1
  59. package/dist/types-ts4.5/utils/get-cells-in-column.d.ts +2 -2
  60. package/dist/types-ts4.5/utils/get-cells-in-row.d.ts +2 -2
  61. package/dist/types-ts4.5/utils/get-cells-in-table.d.ts +2 -2
  62. package/dist/types-ts4.5/utils/get-selection-rect.d.ts +2 -2
  63. package/dist/types-ts4.5/utils/go-to-next-cell.d.ts +1 -1
  64. package/dist/types-ts4.5/utils/handle-paste.d.ts +2 -2
  65. package/dist/types-ts4.5/utils/is-selected.d.ts +2 -2
  66. package/dist/types-ts4.5/utils/is-selection-type.d.ts +2 -2
  67. package/dist/types-ts4.5/utils/normalize-selection.d.ts +1 -1
  68. package/dist/types-ts4.5/utils/remove-column.d.ts +2 -2
  69. package/dist/types-ts4.5/utils/remove-row.d.ts +2 -2
  70. package/dist/types-ts4.5/utils/remove-table.d.ts +1 -1
  71. package/dist/types-ts4.5/utils/reorder-utils.d.ts +2 -2
  72. package/dist/types-ts4.5/utils/replace-table.d.ts +1 -1
  73. package/dist/types-ts4.5/utils/selection-cell.d.ts +2 -2
  74. package/dist/types-ts4.5/utils/selection-rect.d.ts +2 -2
  75. package/dist/types-ts4.5/utils/set-cell-attrs.d.ts +3 -3
  76. package/dist/types-ts4.5/utils/split-cell-with-type.d.ts +2 -2
  77. package/dist/types-ts4.5/utils/split-cell.d.ts +1 -1
  78. package/dist/types-ts4.5/utils/table-node-types.d.ts +1 -1
  79. package/dist/types-ts4.5/utils/tables.d.ts +2 -2
  80. package/dist/types-ts4.5/utils/test-utils.d.ts +1 -1
  81. package/dist/types-ts4.5/utils/toggle-header.d.ts +3 -3
  82. package/dist/types-ts4.5/utils.d.ts +2 -2
  83. package/package.json +59 -64
  84. package/report.api.md +118 -134
package/CHANGELOG.md CHANGED
@@ -1,616 +1,629 @@
1
1
  # @atlaskit/editor-tables
2
2
 
3
+ ## 2.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#124190](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/124190)
8
+ [`9ab9c4ca2b9df`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9ab9c4ca2b9df) -
9
+ Clean-up platform.editor.refactor-highlight-toolbar_mo0pj feature flag
10
+ - [#124209](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/124209)
11
+ [`8aa1792f12ed3`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8aa1792f12ed3) -
12
+ bump @atlaskit/editor-prosemirror to 5.0.0, bump @atlaskit/adf-schema to 40.1.0
13
+
14
+ ## 2.7.5
15
+
16
+ ### Patch Changes
17
+
18
+ - [`3b20c735bc9ee`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3b20c735bc9ee) -
19
+ [ux] Insert full-width table in comment editor when table resizing is enabled.
20
+
3
21
  ## 2.7.4
4
22
 
5
23
  ### Patch Changes
6
24
 
7
- - [#102210](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/102210)
8
- [`fe0d7aa7668a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fe0d7aa7668a) -
9
- Set layout attribute for tables to align-left when inserted in full width editor
25
+ - [#102210](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/102210)
26
+ [`fe0d7aa7668a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fe0d7aa7668a) -
27
+ Set layout attribute for tables to align-left when inserted in full width editor
10
28
 
11
29
  ## 2.7.3
12
30
 
13
31
  ### Patch Changes
14
32
 
15
- - [#94829](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/94829)
16
- [`815fda434fe7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/815fda434fe7) -
17
- [ED-22849] Align add column and row behaviour behind
18
- platform_editor_table_duplicate_cell_colouring flag so that adding a column will copy cell
19
- background from the left and adding a row will copy background colour from row above
33
+ - [#94829](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/94829)
34
+ [`815fda434fe7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/815fda434fe7) -
35
+ [ED-22849] Align add column and row behaviour behind
36
+ platform_editor_table_duplicate_cell_colouring flag so that adding a column will copy cell
37
+ background from the left and adding a row will copy background colour from row above
20
38
 
21
39
  ## 2.7.2
22
40
 
23
41
  ### Patch Changes
24
42
 
25
- - [#97698](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/97698)
26
- [`1c7b378c0d3b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1c7b378c0d3b) -
27
- [HOT-108999] We had an incident where the cursor jumps back a character in table headers for any
28
- language triggering composition on an empty line.This was fixed in a patch bump of
29
- prosemirror-view. https://github.com/ProseMirror/prosemirror-view/compare/1.33.4...1.33.5
43
+ - [#97698](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/97698)
44
+ [`1c7b378c0d3b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1c7b378c0d3b) -
45
+ [HOT-108999] We had an incident where the cursor jumps back a character in table headers for any
46
+ language triggering composition on an empty line.This was fixed in a patch bump of
47
+ prosemirror-view. https://github.com/ProseMirror/prosemirror-view/compare/1.33.4...1.33.5
30
48
 
31
49
  ## 2.7.1
32
50
 
33
51
  ### Patch Changes
34
52
 
35
- - [#92007](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92007)
36
- [`85525725cb0d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/85525725cb0d) -
37
- Migrated to the new button component
53
+ - [#92007](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92007)
54
+ [`85525725cb0d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/85525725cb0d) -
55
+ Migrated to the new button component
38
56
 
39
57
  ## 2.7.0
40
58
 
41
59
  ### Minor Changes
42
60
 
43
- - [#91934](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91934)
44
- [`b76a78c6a199`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b76a78c6a199) -
45
- bumped editor-prosemirror version to 4.0.0
61
+ - [#91934](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91934)
62
+ [`b76a78c6a199`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b76a78c6a199) -
63
+ bumped editor-prosemirror version to 4.0.0
46
64
 
47
65
  ## 2.6.3
48
66
 
49
67
  ### Patch Changes
50
68
 
51
- - [#86368](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/86368)
52
- [`8499e6f0fef4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8499e6f0fef4) -
53
- Remove custom-table-width feature flag
69
+ - [#86368](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/86368)
70
+ [`8499e6f0fef4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8499e6f0fef4) -
71
+ Remove custom-table-width feature flag
54
72
 
55
73
  ## 2.6.2
56
74
 
57
75
  ### Patch Changes
58
76
 
59
- - [#88717](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/88717)
60
- [`d92770eae702`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d92770eae702) -
61
- Adding internal eslint opt outs for a new rule
62
- `@atlaskit/design-system/no-direct-use-of-web-platform-drag-and-drop`.
77
+ - [#88717](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/88717)
78
+ [`d92770eae702`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d92770eae702) -
79
+ Adding internal eslint opt outs for a new rule
80
+ `@atlaskit/design-system/no-direct-use-of-web-platform-drag-and-drop`.
63
81
 
64
82
  ## 2.6.1
65
83
 
66
84
  ### Patch Changes
67
85
 
68
- - [#86621](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/86621)
69
- [`819e262c9b0b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/819e262c9b0b) -
70
- remove table-shift-click-selection-backward feature flag
86
+ - [#86621](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/86621)
87
+ [`819e262c9b0b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/819e262c9b0b) -
88
+ remove table-shift-click-selection-backward feature flag
71
89
 
72
90
  ## 2.6.0
73
91
 
74
92
  ### Minor Changes
75
93
 
76
- - [#83612](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83612)
77
- [`25b32cbfbb7e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/25b32cbfbb7e) -
78
- [ux] Added new clone row/column behaviour to tables drag N drop. When the user holds the alt
79
- modifier during the operation the row/column will be duplicated rather then moved.
94
+ - [#83612](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83612)
95
+ [`25b32cbfbb7e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/25b32cbfbb7e) -
96
+ [ux] Added new clone row/column behaviour to tables drag N drop. When the user holds the alt
97
+ modifier during the operation the row/column will be duplicated rather then moved.
80
98
 
81
99
  ## 2.5.8
82
100
 
83
101
  ### Patch Changes
84
102
 
85
- - [#80612](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80612)
86
- [`b3a6ffbe9e15`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b3a6ffbe9e15) -
87
- [ux] Fix Firefox table drag handle shift click selection
103
+ - [#80612](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80612)
104
+ [`b3a6ffbe9e15`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b3a6ffbe9e15) -
105
+ [ux] Fix Firefox table drag handle shift click selection
88
106
 
89
107
  ## 2.5.7
90
108
 
91
109
  ### Patch Changes
92
110
 
93
- - [#77796](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/77796)
94
- [`eab996d08513`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/eab996d08513) -
95
- Add new statsig experiement for preserve table width, add support for passing through width to
96
- create table. Allow tables to be inserted at full width
111
+ - [#77796](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/77796)
112
+ [`eab996d08513`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/eab996d08513) -
113
+ Add new statsig experiement for preserve table width, add support for passing through width to
114
+ create table. Allow tables to be inserted at full width
97
115
 
98
116
  ## 2.5.6
99
117
 
100
118
  ### Patch Changes
101
119
 
102
- - [#77516](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/77516)
103
- [`d6e79c5637c7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d6e79c5637c7) -
104
- [ux] fix expand current selection by shift click
120
+ - [#77516](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/77516)
121
+ [`d6e79c5637c7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d6e79c5637c7) -
122
+ [ux] fix expand current selection by shift click
105
123
 
106
124
  ## 2.5.5
107
125
 
108
126
  ### Patch Changes
109
127
 
110
- - [#72037](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/72037)
111
- [`e59f0b7a9115`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e59f0b7a9115) -
112
- [ux] add flexiable to make merged cells detection allow to detect edge merged cells
128
+ - [#72037](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/72037)
129
+ [`e59f0b7a9115`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e59f0b7a9115) -
130
+ [ux] add flexiable to make merged cells detection allow to detect edge merged cells
113
131
 
114
132
  ## 2.5.4
115
133
 
116
134
  ### Patch Changes
117
135
 
118
- - [#68572](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68572)
119
- [`15d407fe5143`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/15d407fe5143) -
120
- Upgrading @atlaskit/editor-prosemirror dependency
136
+ - [#68572](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68572)
137
+ [`15d407fe5143`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/15d407fe5143) -
138
+ Upgrading @atlaskit/editor-prosemirror dependency
121
139
 
122
140
  ## 2.5.3
123
141
 
124
142
  ### Patch Changes
125
143
 
126
- - [#70718](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70718)
127
- [`e5d2832002bb`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e5d2832002bb) -
128
- Patched a bug in the table paste logic which was throwing an error during the selection phase of
129
- the paste event when the pasted data contained a table row ending with a merged cell. The error
130
- from the selection is causing the table data to be injected as plain text inline.
144
+ - [#70718](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70718)
145
+ [`e5d2832002bb`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e5d2832002bb) -
146
+ Patched a bug in the table paste logic which was throwing an error during the selection phase of
147
+ the paste event when the pasted data contained a table row ending with a merged cell. The error
148
+ from the selection is causing the table data to be injected as plain text inline.
131
149
 
132
150
  ## 2.5.2
133
151
 
134
152
  ### Patch Changes
135
153
 
136
- - [#69650](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69650)
137
- [`91a5b96796cb`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/91a5b96796cb) -
138
- Migrate @atlaskit/editor-tables to use declarative entry points
154
+ - [#69650](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69650)
155
+ [`91a5b96796cb`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/91a5b96796cb) -
156
+ Migrate @atlaskit/editor-tables to use declarative entry points
139
157
 
140
158
  ## 2.5.1
141
159
 
142
160
  ### Patch Changes
143
161
 
144
- - [#69625](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69625)
145
- [`67d7971c6ddf`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/67d7971c6ddf) -
146
- [ux] Tables DnD now supports dragging multiple rows/columns in a single drag using multi-select
162
+ - [#69625](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69625)
163
+ [`67d7971c6ddf`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/67d7971c6ddf) -
164
+ [ux] Tables DnD now supports dragging multiple rows/columns in a single drag using multi-select
147
165
 
148
166
  ## 2.5.0
149
167
 
150
168
  ### Minor Changes
151
169
 
152
- - [#69232](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69232)
153
- [`93c8f231aa82`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/93c8f231aa82) -
154
- Optimized the table move column logic to perform individual insert/deletes per row
170
+ - [#69232](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69232)
171
+ [`93c8f231aa82`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/93c8f231aa82) -
172
+ Optimized the table move column logic to perform individual insert/deletes per row
155
173
 
156
174
  ## 2.4.0
157
175
 
158
176
  ### Minor Changes
159
177
 
160
- - [#67400](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67400)
161
- [`191436e36f93`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/191436e36f93) -
162
- Optimised the table move row logic to perform insert/delete steps rather than an entire table
163
- replacement
178
+ - [#67400](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67400)
179
+ [`191436e36f93`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/191436e36f93) -
180
+ Optimised the table move row logic to perform insert/delete steps rather than an entire table
181
+ replacement
164
182
 
165
183
  ## 2.3.18
166
184
 
167
185
  ### Patch Changes
168
186
 
169
- - [#60278](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60278)
170
- [`bc2785a02329`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bc2785a02329) -
171
- Selection of multiple rows / column should remain when clicking the drag handle
187
+ - [#60278](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60278)
188
+ [`bc2785a02329`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bc2785a02329) -
189
+ Selection of multiple rows / column should remain when clicking the drag handle
172
190
 
173
191
  ## 2.3.17
174
192
 
175
193
  ### Patch Changes
176
194
 
177
- - [#59009](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59009)
178
- [`f7e9d874ff37`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f7e9d874ff37) -
179
- Fix table expand selection when `platform.editor.table-shift-click-selection-backward` FF is
180
- enabled
195
+ - [#59009](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59009)
196
+ [`f7e9d874ff37`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f7e9d874ff37) -
197
+ Fix table expand selection when `platform.editor.table-shift-click-selection-backward` FF is
198
+ enabled
181
199
 
182
200
  ## 2.3.16
183
201
 
184
202
  ### Patch Changes
185
203
 
186
- - [#58433](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58433)
187
- [`4d8e164d7760`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4d8e164d7760) -
188
- fix shift + click to expand column / row selection bug when
189
- `platform.editor.table.drag-and-drop` is enabled
204
+ - [#58433](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58433)
205
+ [`4d8e164d7760`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4d8e164d7760) -
206
+ fix shift + click to expand column / row selection bug when `platform.editor.table.drag-and-drop`
207
+ is enabled
190
208
 
191
209
  ## 2.3.15
192
210
 
193
211
  ### Patch Changes
194
212
 
195
- - [#43255](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43255)
196
- [`6c1b3270538`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c1b3270538) - Remove
197
- setSelection from move commands as it's unnecessary
213
+ - [#43255](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43255)
214
+ [`6c1b3270538`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c1b3270538) - Remove
215
+ setSelection from move commands as it's unnecessary
198
216
 
199
217
  ## 2.3.14
200
218
 
201
219
  ### Patch Changes
202
220
 
203
- - [#42754](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42754)
204
- [`b2396966987`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b2396966987) - use
205
- 'as' type assertion rather than angle brackets
221
+ - [#42754](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42754)
222
+ [`b2396966987`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b2396966987) - use 'as'
223
+ type assertion rather than angle brackets
206
224
 
207
225
  ## 2.3.13
208
226
 
209
227
  ### Patch Changes
210
228
 
211
- - [#42109](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42109)
212
- [`d25ae495fed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d25ae495fed) - [ux]
213
- Adds a fix to keep selection on a dropped row or column.
229
+ - [#42109](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42109)
230
+ [`d25ae495fed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d25ae495fed) - [ux]
231
+ Adds a fix to keep selection on a dropped row or column.
214
232
 
215
233
  ## 2.3.12
216
234
 
217
235
  ### Patch Changes
218
236
 
219
- - [#41991](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41991)
220
- [`28a7171e7e3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/28a7171e7e3) - [ux]
221
- add shift click select backward feature to expand selection
237
+ - [#41991](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41991)
238
+ [`28a7171e7e3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/28a7171e7e3) - [ux] add
239
+ shift click select backward feature to expand selection
222
240
 
223
241
  ## 2.3.11
224
242
 
225
243
  ### Patch Changes
226
244
 
227
- - [#39749](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39749)
228
- [`e6b69f455c3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6b69f455c3) -
229
- Connect yarn changeset to packages, upgrade adf-schema
245
+ - [#39749](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39749)
246
+ [`e6b69f455c3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6b69f455c3) - Connect
247
+ yarn changeset to packages, upgrade adf-schema
230
248
 
231
249
  ## 2.3.10
232
250
 
233
251
  ### Patch Changes
234
252
 
235
- - [#39984](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39984)
236
- [`37c62369dae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/37c62369dae) -
237
- NO-ISSUE Import doc builder types from editor-common
253
+ - [#39984](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39984)
254
+ [`37c62369dae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/37c62369dae) - NO-ISSUE
255
+ Import doc builder types from editor-common
238
256
 
239
257
  ## 2.3.9
240
258
 
241
259
  ### Patch Changes
242
260
 
243
- - [#39381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39381)
244
- [`35242fb367a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/35242fb367a) - Add
245
- custom-table-width feature flag and add width to table node when inserted
261
+ - [#39381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39381)
262
+ [`35242fb367a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/35242fb367a) - Add
263
+ custom-table-width feature flag and add width to table node when inserted
246
264
 
247
265
  ## 2.3.8
248
266
 
249
267
  ### Patch Changes
250
268
 
251
- - Updated dependencies
269
+ - Updated dependencies
252
270
 
253
271
  ## 2.3.7
254
272
 
255
273
  ### Patch Changes
256
274
 
257
- - [#37785](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37785)
258
- [`4e6f1bf8511`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4e6f1bf8511) -
259
- [ED-19233] Import prosemirror libraries from internal facade package
275
+ - [#37785](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37785)
276
+ [`4e6f1bf8511`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4e6f1bf8511) -
277
+ [ED-19233] Import prosemirror libraries from internal facade package
260
278
 
261
279
  ## 2.3.6
262
280
 
263
281
  ### Patch Changes
264
282
 
265
- - [#36241](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36241)
266
- [`5f5ba16de66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f5ba16de66) -
267
- [ED-13910] Fix prosemirror types
283
+ - [#36241](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36241)
284
+ [`5f5ba16de66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f5ba16de66) -
285
+ [ED-13910] Fix prosemirror types
268
286
 
269
287
  ## 2.3.5
270
288
 
271
289
  ### Patch Changes
272
290
 
273
- - [#35782](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35782)
274
- [`73b5128036b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/73b5128036b) -
275
- [ED-17082] Mark package as a singleton one
291
+ - [#35782](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35782)
292
+ [`73b5128036b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/73b5128036b) -
293
+ [ED-17082] Mark package as a singleton one
276
294
 
277
295
  ## 2.3.4
278
296
 
279
297
  ### Patch Changes
280
298
 
281
- - [#35533](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35533)
282
- [`fa1f53e0ae7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fa1f53e0ae7) -
283
- [ED-18167] Remove dependency of editor-tables on adf schema library to avoid a circular
284
- dependency
299
+ - [#35533](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35533)
300
+ [`fa1f53e0ae7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fa1f53e0ae7) -
301
+ [ED-18167] Remove dependency of editor-tables on adf schema library to avoid a circular dependency
285
302
 
286
303
  ## 2.3.3
287
304
 
288
305
  ### Patch Changes
289
306
 
290
- - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793)
291
- [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
292
- legacy types are published for TS 4.5-4.8
307
+ - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793)
308
+ [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
309
+ legacy types are published for TS 4.5-4.8
293
310
 
294
311
  ## 2.3.2
295
312
 
296
313
  ### Patch Changes
297
314
 
298
- - [#33771](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33771)
299
- [`a142ba1aa28`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a142ba1aa28) -
300
- [ED17172] Bump prosemirror-model to 1.16.0 and prosemirror-view to 1.23.7 and removed
301
- work-arounds for fixed issues
315
+ - [#33771](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33771)
316
+ [`a142ba1aa28`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a142ba1aa28) -
317
+ [ED17172] Bump prosemirror-model to 1.16.0 and prosemirror-view to 1.23.7 and removed work-arounds
318
+ for fixed issues
302
319
 
303
320
  ## 2.3.1
304
321
 
305
322
  ### Patch Changes
306
323
 
307
- - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649)
308
- [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) -
309
- Upgrade Typescript from `4.5.5` to `4.9.5`
324
+ - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649)
325
+ [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade
326
+ Typescript from `4.5.5` to `4.9.5`
310
327
 
311
328
  ## 2.3.0
312
329
 
313
330
  ### Minor Changes
314
331
 
315
- - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258)
316
- [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
317
- minor dependency bump
332
+ - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258)
333
+ [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
334
+ minor dependency bump
318
335
 
319
336
  ## 2.2.6
320
337
 
321
338
  ### Patch Changes
322
339
 
323
- - [#33004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33004)
324
- [`0ffb55018c9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0ffb55018c9) - Revert
325
- "[ED-17172] Bumped prosemirror-view from 1.23.2 to 1.23.7 and removed work-around for fixed
326
- issues"
340
+ - [#33004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33004)
341
+ [`0ffb55018c9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0ffb55018c9) - Revert
342
+ "[ED-17172] Bumped prosemirror-view from 1.23.2 to 1.23.7 and removed work-around for fixed
343
+ issues"
327
344
 
328
345
  ## 2.2.5
329
346
 
330
347
  ### Patch Changes
331
348
 
332
- - [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424)
333
- [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY
334
- remove before merging to master; dupe adf-schema via adf-utils
349
+ - [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424)
350
+ [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY
351
+ remove before merging to master; dupe adf-schema via adf-utils
335
352
 
336
353
  ## 2.2.4
337
354
 
338
355
  ### Patch Changes
339
356
 
340
- - [#28932](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28932)
341
- [`4080eb013ef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4080eb013ef) - [ux]
342
- Fix bug where pasting inside a table did not respect the table's headers. Pasted cells are
343
- formatted based on the table they are being pasted into.
344
- - [`4f6a895f1d5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4f6a895f1d5) - Set
345
- selectable property for selectable nodes
346
- - [`4f6a895f1d5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4f6a895f1d5) - Fix
347
- arrow shift selection coming from outside of the table
357
+ - [#28932](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28932)
358
+ [`4080eb013ef`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4080eb013ef) - [ux] Fix
359
+ bug where pasting inside a table did not respect the table's headers. Pasted cells are formatted
360
+ based on the table they are being pasted into.
361
+ - [`4f6a895f1d5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4f6a895f1d5) - Set
362
+ selectable property for selectable nodes
363
+ - [`4f6a895f1d5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4f6a895f1d5) - Fix
364
+ arrow shift selection coming from outside of the table
348
365
 
349
366
  ## 2.2.3
350
367
 
351
368
  ### Patch Changes
352
369
 
353
- - [#28090](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28090)
354
- [`dbef481f7df`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dbef481f7df) - [ux]
355
- ED-15724: fix the merged row(2nd row or later) cannot been recongnized as row selection and
356
- cannot be deleted.
370
+ - [#28090](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28090)
371
+ [`dbef481f7df`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dbef481f7df) - [ux]
372
+ ED-15724: fix the merged row(2nd row or later) cannot been recongnized as row selection and cannot
373
+ be deleted.
357
374
 
358
375
  ## 2.2.2
359
376
 
360
377
  ### Patch Changes
361
378
 
362
- - [#26712](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26712)
363
- [`47f1f76cb80`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47f1f76cb80) - Add
364
- selectTableClosestToPos function
365
- - [`755d7bf5c2a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/755d7bf5c2a) - [ux]
366
- ED-12527 Prevents editor-tables handleMouseDown() from creating a cell selection when right
367
- clicking in a table cell.
379
+ - [#26712](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26712)
380
+ [`47f1f76cb80`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47f1f76cb80) - Add
381
+ selectTableClosestToPos function
382
+ - [`755d7bf5c2a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/755d7bf5c2a) - [ux]
383
+ ED-12527 Prevents editor-tables handleMouseDown() from creating a cell selection when right
384
+ clicking in a table cell.
368
385
 
369
386
  ## 2.2.1
370
387
 
371
388
  ### Patch Changes
372
389
 
373
- - [#27511](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27511)
374
- [`403e0d2d291`](https://bitbucket.org/atlassian/atlassian-frontend/commits/403e0d2d291) -
375
- ED-16246 fix prevent @types/prosemirror-commands @types/prosemirror-keymap updating to
376
- incompatible version.
390
+ - [#27511](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27511)
391
+ [`403e0d2d291`](https://bitbucket.org/atlassian/atlassian-frontend/commits/403e0d2d291) - ED-16246
392
+ fix prevent @types/prosemirror-commands @types/prosemirror-keymap updating to incompatible
393
+ version.
377
394
 
378
395
  ## 2.2.0
379
396
 
380
397
  ### Minor Changes
381
398
 
382
- - [#24710](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24710)
383
- [`d8acf7254db`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d8acf7254db) -
384
- ED-8567 added tracking for fixTables()
399
+ - [#24710](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24710)
400
+ [`d8acf7254db`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d8acf7254db) - ED-8567
401
+ added tracking for fixTables()
385
402
 
386
403
  ## 2.1.6
387
404
 
388
405
  ### Patch Changes
389
406
 
390
- - [#24607](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24607)
391
- [`95f007063cf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/95f007063cf) -
392
- Decoupling paste plugin and table plugin, copied `replaceSelectedTable` and
393
- `getSelectedTableInfo` utils to editor-tables utils package and analytics dependency shifted to
394
- paste plugin.
407
+ - [#24607](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24607)
408
+ [`95f007063cf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/95f007063cf) -
409
+ Decoupling paste plugin and table plugin, copied `replaceSelectedTable` and `getSelectedTableInfo`
410
+ utils to editor-tables utils package and analytics dependency shifted to paste plugin.
395
411
 
396
412
  ## 2.1.5
397
413
 
398
414
  ### Patch Changes
399
415
 
400
- - [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381)
401
- [`e6f25536fe3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6f25536fe3) -
402
- [ux][ed-15168] Fixes a bug where a width-less column was created when pasting table cells into a
403
- table that had columns with set widths.
416
+ - [#23381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/23381)
417
+ [`e6f25536fe3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6f25536fe3) -
418
+ [ux][ed-15168] Fixes a bug where a width-less column was created when pasting table cells into a
419
+ table that had columns with set widths.
404
420
 
405
421
  ## 2.1.4
406
422
 
407
423
  ### Patch Changes
408
424
 
409
- - [#20033](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20033)
410
- [`b29ce16dad8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b29ce16dad8) -
411
- [ED-14606] Move bitbucket schema, confluence schema, jira schema, and default schema from
412
- @atlaskit/adf-schema to their own entry points. These new entry points are as follows
425
+ - [#20033](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/20033)
426
+ [`b29ce16dad8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b29ce16dad8) -
427
+ [ED-14606] Move bitbucket schema, confluence schema, jira schema, and default schema from
428
+ @atlaskit/adf-schema to their own entry points. These new entry points are as follows
413
429
 
414
- @atlaskit/adf-schema/schema-bitbucket for:
430
+ @atlaskit/adf-schema/schema-bitbucket for:
415
431
 
416
- - bitbucketSchema
432
+ - bitbucketSchema
417
433
 
418
- @atlaskit/adf-schema/schema-confluence for:
434
+ @atlaskit/adf-schema/schema-confluence for:
419
435
 
420
- - confluenceSchema
421
- - confluenceSchemaWithMediaSingle
436
+ - confluenceSchema
437
+ - confluenceSchemaWithMediaSingle
422
438
 
423
- @atlaskit/adf-schema/schema-jira for:
439
+ @atlaskit/adf-schema/schema-jira for:
424
440
 
425
- - default as createJIRASchema
426
- - isSchemaWithLists
427
- - isSchemaWithMentions
428
- - isSchemaWithEmojis
429
- - isSchemaWithLinks
430
- - isSchemaWithAdvancedTextFormattingMarks
431
- - isSchemaWithCodeBlock
432
- - isSchemaWithBlockQuotes
433
- - isSchemaWithMedia
434
- - isSchemaWithSubSupMark
435
- - isSchemaWithTextColor
436
- - isSchemaWithTables
441
+ - default as createJIRASchema
442
+ - isSchemaWithLists
443
+ - isSchemaWithMentions
444
+ - isSchemaWithEmojis
445
+ - isSchemaWithLinks
446
+ - isSchemaWithAdvancedTextFormattingMarks
447
+ - isSchemaWithCodeBlock
448
+ - isSchemaWithBlockQuotes
449
+ - isSchemaWithMedia
450
+ - isSchemaWithSubSupMark
451
+ - isSchemaWithTextColor
452
+ - isSchemaWithTables
437
453
 
438
- @atlaskit/adf-schema/schema-default for:
454
+ @atlaskit/adf-schema/schema-default for:
439
455
 
440
- - defaultSchema
441
- - getSchemaBasedOnStage
442
- - defaultSchemaConfig
456
+ - defaultSchema
457
+ - getSchemaBasedOnStage
458
+ - defaultSchemaConfig
443
459
 
444
- This change also includes codemods in @atlaskit/adf-schema to update these entry points. It also
445
- introduces a new util function "changeImportEntryPoint" to @atlaskit/codemod-utils to handle
446
- this scenario.
460
+ This change also includes codemods in @atlaskit/adf-schema to update these entry points. It also
461
+ introduces a new util function "changeImportEntryPoint" to @atlaskit/codemod-utils to handle this
462
+ scenario.
447
463
 
448
464
  ## 2.1.3
449
465
 
450
466
  ### Patch Changes
451
467
 
452
- - [#19618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19618)
453
- [`cbfbaab61bb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cbfbaab61bb) -
454
- [ux][ed-14300] Remove column width from table cells being pasted into another table as it should
455
- take the formatting of the destination table.
468
+ - [#19618](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/19618)
469
+ [`cbfbaab61bb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cbfbaab61bb) -
470
+ [ux][ed-14300] Remove column width from table cells being pasted into another table as it should
471
+ take the formatting of the destination table.
456
472
 
457
473
  ## 2.1.2
458
474
 
459
475
  ### Patch Changes
460
476
 
461
- - [#18526](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18526)
462
- [`4e6fbaf5898`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4e6fbaf5898) -
463
- ED-14117 Change EditorState.apply type to receive readonly transaction
477
+ - [#18526](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/18526)
478
+ [`4e6fbaf5898`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4e6fbaf5898) - ED-14117
479
+ Change EditorState.apply type to receive readonly transaction
464
480
 
465
- Transactions should not be mutated after being dispatched as it can lead to unexpected
466
- behaviour. This change patches the relevant types declared in prosemirror-state as a
467
- compile-time safeguard.
481
+ Transactions should not be mutated after being dispatched as it can lead to unexpected behaviour.
482
+ This change patches the relevant types declared in prosemirror-state as a compile-time safeguard.
468
483
 
469
484
  ## 2.1.1
470
485
 
471
486
  ### Patch Changes
472
487
 
473
- - [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752)
474
- [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) -
475
- ED-13025 Bump prosemirror-view 1.23.1 -> 1.23.2
488
+ - [#16752](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/16752)
489
+ [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - ED-13025
490
+ Bump prosemirror-view 1.23.1 -> 1.23.2
476
491
 
477
492
  ## 2.1.0
478
493
 
479
494
  ### Minor Changes
480
495
 
481
- - [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998)
482
- [`b230f366971`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b230f366971) -
483
- [ED-14008] Bump prosemirror-view from 1.20.2 to 1.23.1
496
+ - [#15998](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/15998)
497
+ [`b230f366971`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b230f366971) -
498
+ [ED-14008] Bump prosemirror-view from 1.20.2 to 1.23.1
484
499
 
485
500
  ### Patch Changes
486
501
 
487
- - [`c6feed82071`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c6feed82071) -
488
- ED-11632: Bump prosemirror packages;
502
+ - [`c6feed82071`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c6feed82071) -
503
+ ED-11632: Bump prosemirror packages;
489
504
 
490
- - prosmirror-commands 1.1.4 -> 1.1.11,
491
- - prosemirror-model 1.11.0 -> 1.14.3,
492
- - prosemirror-state 1.3.3 -> 1.3.4,
493
- - prosemirror-transform 1.2.8 -> 1.3.2,
494
- - prosemirror-view 1.15.4 + 1.18.8 -> 1.20.2.
505
+ - prosmirror-commands 1.1.4 -> 1.1.11,
506
+ - prosemirror-model 1.11.0 -> 1.14.3,
507
+ - prosemirror-state 1.3.3 -> 1.3.4,
508
+ - prosemirror-transform 1.2.8 -> 1.3.2,
509
+ - prosemirror-view 1.15.4 + 1.18.8 -> 1.20.2.
495
510
 
496
511
  ## 2.0.1
497
512
 
498
513
  ### Patch Changes
499
514
 
500
- - [#13302](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13302)
501
- [`96c6146eef1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/96c6146eef1) -
502
- ED-13187: localId optional & empty values filtered
515
+ - [#13302](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/13302)
516
+ [`96c6146eef1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/96c6146eef1) -
517
+ ED-13187: localId optional & empty values filtered
503
518
 
504
519
  ## 2.0.0
505
520
 
506
521
  ### Major Changes
507
522
 
508
- - [#9847](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9847)
509
- [`71318e96b5d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/71318e96b5d) -
510
- NO-ISSUE Force bump editor-tables
523
+ - [#9847](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9847)
524
+ [`71318e96b5d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/71318e96b5d) - NO-ISSUE
525
+ Force bump editor-tables
511
526
 
512
527
  ## 1.1.5
513
528
 
514
529
  ### Patch Changes
515
530
 
516
- - [#9510](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9510)
517
- [`5089bd2544d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5089bd2544d) -
518
- ED-11919: generate localId for tables
519
- - [`58b170725be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58b170725be) -
520
- Renamed @atlaskit/editor-test-helpers/schema-builder to
521
- @atlaskit/editor-test-helpers/doc-builder
531
+ - [#9510](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9510)
532
+ [`5089bd2544d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5089bd2544d) -
533
+ ED-11919: generate localId for tables
534
+ - [`58b170725be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58b170725be) - Renamed
535
+ @atlaskit/editor-test-helpers/schema-builder to @atlaskit/editor-test-helpers/doc-builder
522
536
 
523
537
  ## 1.1.4
524
538
 
525
539
  ### Patch Changes
526
540
 
527
- - [#9083](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9083)
528
- [`d2e70ebaaa9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d2e70ebaaa9) -
529
- NO-ISSUE: updated editor tests to use 'doc: DocBuilder' instead of 'doc: any'
530
- - [`fe1c96a3d28`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe1c96a3d28) - added
531
- DocBuilder type to @atlaskit/editor-test-helpers, replaced duplicate definitions and
532
- DocumentType
541
+ - [#9083](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/9083)
542
+ [`d2e70ebaaa9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d2e70ebaaa9) -
543
+ NO-ISSUE: updated editor tests to use 'doc: DocBuilder' instead of 'doc: any'
544
+ - [`fe1c96a3d28`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe1c96a3d28) - added
545
+ DocBuilder type to @atlaskit/editor-test-helpers, replaced duplicate definitions and DocumentType
533
546
 
534
547
  ## 1.1.3
535
548
 
536
549
  ### Patch Changes
537
550
 
538
- - [#5857](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5857)
539
- [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) -
540
- Transpile packages using babel rather than tsc
551
+ - [#5857](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5857)
552
+ [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile
553
+ packages using babel rather than tsc
541
554
 
542
555
  ## 1.1.2
543
556
 
544
557
  ### Patch Changes
545
558
 
546
- - [#5860](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5860)
547
- [`703752d487`](https://bitbucket.org/atlassian/atlassian-frontend/commits/703752d487) - ED-10647
548
- Remove caret from prosemirror-model, prosemirror-keymap, prosemirror-state,
549
- prosemirror-transform to lock them down to an explicit version
559
+ - [#5860](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5860)
560
+ [`703752d487`](https://bitbucket.org/atlassian/atlassian-frontend/commits/703752d487) - ED-10647
561
+ Remove caret from prosemirror-model, prosemirror-keymap, prosemirror-state, prosemirror-transform
562
+ to lock them down to an explicit version
550
563
 
551
564
  ## 1.1.1
552
565
 
553
566
  ### Patch Changes
554
567
 
555
- - [#5516](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5516)
556
- [`e4abda244e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e4abda244e) - ED-9912:
557
- replace prosemirror-tables with editor-tables
558
- - [`d39fa49905`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d39fa49905) -
559
- ED-10420: remove utils copied from prosemirror-utils
568
+ - [#5516](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/5516)
569
+ [`e4abda244e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e4abda244e) - ED-9912:
570
+ replace prosemirror-tables with editor-tables
571
+ - [`d39fa49905`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d39fa49905) - ED-10420:
572
+ remove utils copied from prosemirror-utils
560
573
 
561
574
  ## 1.1.0
562
575
 
563
576
  ### Minor Changes
564
577
 
565
- - [#4749](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4749)
566
- [`111eac563c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/111eac563c) - ED-9915:
567
- added table utils from prosemirror-utils
568
- - [`9a39500244`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9a39500244) - Bump
569
- ProseMirror packages
578
+ - [#4749](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4749)
579
+ [`111eac563c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/111eac563c) - ED-9915:
580
+ added table utils from prosemirror-utils
581
+ - [`9a39500244`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9a39500244) - Bump
582
+ ProseMirror packages
570
583
 
571
- Read more: https://product-fabric.atlassian.net/wiki/spaces/E/pages/1671956531/2020-08
584
+ Read more: https://product-fabric.atlassian.net/wiki/spaces/E/pages/1671956531/2020-08
572
585
 
573
586
  ### Patch Changes
574
587
 
575
- - [`2d4bbe5e2e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2d4bbe5e2e) -
576
- [ED-10503] Fix prosemirror-view version at 1.15.4 without carret
577
- - [`9bf037e4e6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9bf037e4e6) -
578
- ED-10252: tests for moveColumn
579
- - [`b5e04ea3f6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b5e04ea3f6) -
580
- ED-10052: added the original MIT license to the package's source code
581
- - [`93be5de4de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/93be5de4de) - Move
582
- table_moveRow tests from prosemirror-utils to editor-tables
583
- - [`aa65a361a1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aa65a361a1) - Added
584
- some util functions
585
- - Updated dependencies
588
+ - [`2d4bbe5e2e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2d4bbe5e2e) - [ED-10503]
589
+ Fix prosemirror-view version at 1.15.4 without carret
590
+ - [`9bf037e4e6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9bf037e4e6) - ED-10252:
591
+ tests for moveColumn
592
+ - [`b5e04ea3f6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b5e04ea3f6) - ED-10052:
593
+ added the original MIT license to the package's source code
594
+ - [`93be5de4de`](https://bitbucket.org/atlassian/atlassian-frontend/commits/93be5de4de) - Move
595
+ table_moveRow tests from prosemirror-utils to editor-tables
596
+ - [`aa65a361a1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aa65a361a1) - Added some
597
+ util functions
598
+ - Updated dependencies
586
599
 
587
600
  ## 1.0.2
588
601
 
589
602
  ### Patch Changes
590
603
 
591
- - [#4424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4424)
592
- [`e485167c47`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e485167c47) -
593
- ED-10018: bump prosemirror-tables to fix copy-pasting merged rows
594
- - [`7325aff6d3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7325aff6d3) - ED-9626:
595
- added unit tests for CellSelection and tableEditing plugin to editor-tables
596
- - Updated dependencies
604
+ - [#4424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/4424)
605
+ [`e485167c47`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e485167c47) - ED-10018:
606
+ bump prosemirror-tables to fix copy-pasting merged rows
607
+ - [`7325aff6d3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7325aff6d3) - ED-9626:
608
+ added unit tests for CellSelection and tableEditing plugin to editor-tables
609
+ - Updated dependencies
597
610
 
598
611
  ## 1.0.1
599
612
 
600
613
  ### Patch Changes
601
614
 
602
- - [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885)
603
- [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded
604
- to TypeScript 3.9.6 and tslib to 2.0.0
615
+ - [#3885](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3885)
616
+ [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded
617
+ to TypeScript 3.9.6 and tslib to 2.0.0
605
618
 
606
- Since tslib is a dependency for all our packages we recommend that products also follow this
607
- tslib upgrade to prevent duplicates of tslib being bundled.
619
+ Since tslib is a dependency for all our packages we recommend that products also follow this tslib
620
+ upgrade to prevent duplicates of tslib being bundled.
608
621
 
609
622
  ## 1.0.0
610
623
 
611
624
  ### Major Changes
612
625
 
613
- - [#3428](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3428)
614
- [`b00bfbe3f3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b00bfbe3f3) - ED-9627
615
- Added new @atlaskit/editor-tables package to include common editor tables related code. Included
616
- TableMap class from prosemirror-tables package with it.
626
+ - [#3428](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/3428)
627
+ [`b00bfbe3f3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b00bfbe3f3) - ED-9627
628
+ Added new @atlaskit/editor-tables package to include common editor tables related code. Included
629
+ TableMap class from prosemirror-tables package with it.