@atlaskit/editor-plugin-table 7.11.2 → 7.11.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.
Files changed (78) hide show
  1. package/CHANGELOG.md +1731 -699
  2. package/dist/cjs/commands/column-resize.js +5 -1
  3. package/dist/cjs/nodeviews/TableComponent.js +31 -6
  4. package/dist/cjs/nodeviews/table.js +31 -14
  5. package/dist/cjs/plugin.js +8 -9
  6. package/dist/cjs/pm-plugins/drag-and-drop/plugin.js +6 -1
  7. package/dist/cjs/pm-plugins/table-resizing/event-handlers.js +16 -10
  8. package/dist/cjs/pm-plugins/table-resizing/plugin.js +2 -2
  9. package/dist/cjs/pm-plugins/table-resizing/utils/resize-state.js +7 -2
  10. package/dist/cjs/pm-plugins/table-resizing/utils/scale-table.js +16 -11
  11. package/dist/cjs/pm-plugins/table-width.js +1 -5
  12. package/dist/cjs/pm-plugins/view-mode-sort/utils.js +37 -20
  13. package/dist/cjs/toolbar.js +12 -21
  14. package/dist/cjs/transforms/column-width.js +3 -0
  15. package/dist/cjs/ui/FloatingDragMenu/index.js +2 -5
  16. package/dist/cjs/ui/common-styles.js +8 -16
  17. package/dist/cjs/ui/ui-styles.js +18 -36
  18. package/dist/es2019/commands/column-resize.js +6 -2
  19. package/dist/es2019/nodeviews/TableComponent.js +33 -7
  20. package/dist/es2019/nodeviews/table.js +32 -15
  21. package/dist/es2019/plugin.js +8 -9
  22. package/dist/es2019/pm-plugins/drag-and-drop/plugin.js +6 -1
  23. package/dist/es2019/pm-plugins/table-resizing/event-handlers.js +13 -7
  24. package/dist/es2019/pm-plugins/table-resizing/plugin.js +2 -2
  25. package/dist/es2019/pm-plugins/table-resizing/utils/resize-state.js +7 -2
  26. package/dist/es2019/pm-plugins/table-resizing/utils/scale-table.js +16 -11
  27. package/dist/es2019/pm-plugins/table-width.js +1 -5
  28. package/dist/es2019/pm-plugins/view-mode-sort/utils.js +36 -21
  29. package/dist/es2019/toolbar.js +7 -16
  30. package/dist/es2019/transforms/column-width.js +4 -1
  31. package/dist/es2019/ui/FloatingDragMenu/index.js +2 -5
  32. package/dist/es2019/ui/common-styles.js +18 -30
  33. package/dist/es2019/ui/ui-styles.js +88 -174
  34. package/dist/esm/commands/column-resize.js +5 -1
  35. package/dist/esm/nodeviews/TableComponent.js +31 -6
  36. package/dist/esm/nodeviews/table.js +31 -14
  37. package/dist/esm/plugin.js +8 -9
  38. package/dist/esm/pm-plugins/drag-and-drop/plugin.js +6 -1
  39. package/dist/esm/pm-plugins/table-resizing/event-handlers.js +16 -10
  40. package/dist/esm/pm-plugins/table-resizing/plugin.js +2 -2
  41. package/dist/esm/pm-plugins/table-resizing/utils/resize-state.js +7 -2
  42. package/dist/esm/pm-plugins/table-resizing/utils/scale-table.js +16 -11
  43. package/dist/esm/pm-plugins/table-width.js +1 -5
  44. package/dist/esm/pm-plugins/view-mode-sort/utils.js +37 -20
  45. package/dist/esm/toolbar.js +12 -21
  46. package/dist/esm/transforms/column-width.js +3 -0
  47. package/dist/esm/ui/FloatingDragMenu/index.js +2 -5
  48. package/dist/esm/ui/common-styles.js +8 -16
  49. package/dist/esm/ui/ui-styles.js +18 -36
  50. package/dist/types/pm-plugins/table-resizing/event-handlers.d.ts +1 -1
  51. package/dist/types/pm-plugins/table-resizing/plugin.d.ts +1 -1
  52. package/dist/types/pm-plugins/table-resizing/utils/scale-table.d.ts +3 -3
  53. package/dist/types/pm-plugins/table-width.d.ts +1 -1
  54. package/dist/types/pm-plugins/view-mode-sort/utils.d.ts +3 -1
  55. package/dist/types/ui/FloatingDragMenu/index.d.ts +2 -1
  56. package/dist/types-ts4.5/pm-plugins/table-resizing/event-handlers.d.ts +1 -1
  57. package/dist/types-ts4.5/pm-plugins/table-resizing/plugin.d.ts +1 -1
  58. package/dist/types-ts4.5/pm-plugins/table-resizing/utils/scale-table.d.ts +3 -3
  59. package/dist/types-ts4.5/pm-plugins/table-width.d.ts +1 -1
  60. package/dist/types-ts4.5/pm-plugins/view-mode-sort/utils.d.ts +3 -1
  61. package/dist/types-ts4.5/ui/FloatingDragMenu/index.d.ts +2 -1
  62. package/package.json +3 -6
  63. package/src/commands/column-resize.ts +11 -2
  64. package/src/nodeviews/TableComponent.tsx +79 -9
  65. package/src/nodeviews/table.tsx +49 -26
  66. package/src/plugin.tsx +10 -4
  67. package/src/pm-plugins/drag-and-drop/plugin.ts +14 -1
  68. package/src/pm-plugins/table-resizing/event-handlers.ts +26 -4
  69. package/src/pm-plugins/table-resizing/plugin.ts +2 -0
  70. package/src/pm-plugins/table-resizing/utils/resize-state.ts +13 -2
  71. package/src/pm-plugins/table-resizing/utils/scale-table.ts +24 -10
  72. package/src/pm-plugins/table-width.ts +1 -3
  73. package/src/pm-plugins/view-mode-sort/utils.ts +49 -23
  74. package/src/toolbar.tsx +7 -11
  75. package/src/transforms/column-width.ts +8 -1
  76. package/src/ui/FloatingDragMenu/index.tsx +2 -3
  77. package/src/ui/common-styles.ts +18 -30
  78. package/src/ui/ui-styles.ts +92 -183
package/CHANGELOG.md CHANGED
@@ -1,2564 +1,3596 @@
1
1
  # @atlaskit/editor-plugin-table
2
2
 
3
+ ## 7.11.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#95704](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/95704)
8
+ [`0b8589c9d035`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0b8589c9d035) -
9
+ Update Table view mode sorting logic to match Renderer
10
+ - [#95264](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/95264)
11
+ [`a5aec1e6bf14`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a5aec1e6bf14) -
12
+ Cleanup feature flag for new table column styling.
13
+ - [#94579](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/94579)
14
+ [`e4ea35d25662`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e4ea35d25662) -
15
+ [ux] Toggles scaling logic based on displayMode attribute value.
16
+ - Updated dependencies
17
+
18
+ ## 7.11.3
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies
23
+
3
24
  ## 7.11.2
4
25
 
5
26
  ### Patch Changes
6
27
 
7
- - [#95258](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/95258) [`f40514ef08e3`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f40514ef08e3) - Cleanup feature flag to allow grouping with editor dropdown menu.
8
- - Updated dependencies
28
+ - [#95258](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/95258)
29
+ [`f40514ef08e3`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f40514ef08e3) -
30
+ Cleanup feature flag to allow grouping with editor dropdown menu.
31
+ - Updated dependencies
9
32
 
10
33
  ## 7.11.1
11
34
 
12
35
  ### Patch Changes
13
36
 
14
- - [#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.
15
- - [#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
37
+ - [#95351](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/95351)
38
+ [`23a6facb3598`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/23a6facb3598) -
39
+ Remove feature flag for shift arrow up selection in a table.
40
+ - [#94901](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/94901)
41
+ [`da964fcdc828`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/da964fcdc828) -
42
+ [ED-23097] Bump ADF schema to version 35.12.1
16
43
 
17
44
  ## 7.11.0
18
45
 
19
46
  ### Minor Changes
20
47
 
21
- - [#90188](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/90188) [`ac66ba300996`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ac66ba300996) - Add plugin to allow sorting tables in Live View mode
48
+ - [#90188](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/90188)
49
+ [`ac66ba300996`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ac66ba300996) -
50
+ Add plugin to allow sorting tables in Live View mode
22
51
 
23
52
  ### Patch Changes
24
53
 
25
- - Updated dependencies
54
+ - Updated dependencies
26
55
 
27
56
  ## 7.10.2
28
57
 
29
58
  ### Patch Changes
30
59
 
31
- - [#95062](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/95062) [`06171107f90c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/06171107f90c) - Cleanup analytics moved event feature flag.
60
+ - [#95062](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/95062)
61
+ [`06171107f90c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/06171107f90c) -
62
+ Cleanup analytics moved event feature flag.
32
63
 
33
64
  ## 7.10.1
34
65
 
35
66
  ### Patch Changes
36
67
 
37
- - [#92552](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92552) [`7cd874b858c8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7cd874b858c8) - Check target elements are actually HTMLElement rather than typecasting.
68
+ - [#92552](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92552)
69
+ [`7cd874b858c8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7cd874b858c8) -
70
+ Check target elements are actually HTMLElement rather than typecasting.
38
71
 
39
72
  ## 7.10.0
40
73
 
41
74
  ### Minor Changes
42
75
 
43
- - [#85498](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/85498) [`ae3b8e85ce49`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ae3b8e85ce49) - [ux] [ECA11Y-17] Added screen reader announcement for insertion and removal of table columns and rows
76
+ - [#85498](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/85498)
77
+ [`ae3b8e85ce49`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ae3b8e85ce49) -
78
+ [ux] [ECA11Y-17] Added screen reader announcement for insertion and removal of table columns and
79
+ rows
44
80
 
45
81
  ## 7.9.0
46
82
 
47
83
  ### Minor Changes
48
84
 
49
- - [#91653](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91653) [`57a3511f76c1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/57a3511f76c1) - ECA11Y-203: Added cursor back to the cell, after changing cell background
85
+ - [#91653](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91653)
86
+ [`57a3511f76c1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/57a3511f76c1) -
87
+ ECA11Y-203: Added cursor back to the cell, after changing cell background
50
88
 
51
89
  ### Patch Changes
52
90
 
53
- - Updated dependencies
91
+ - Updated dependencies
54
92
 
55
93
  ## 7.8.1
56
94
 
57
95
  ### Patch Changes
58
96
 
59
- - [#93689](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/93689) [`5ba5d2b4a9ac`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5ba5d2b4a9ac) - Updating adf-schema version to 35.10.0
97
+ - [#93689](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/93689)
98
+ [`5ba5d2b4a9ac`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5ba5d2b4a9ac) -
99
+ Updating adf-schema version to 35.10.0
60
100
 
61
101
  ## 7.8.0
62
102
 
63
103
  ### Minor Changes
64
104
 
65
- - [#91934](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91934) [`b76a78c6a199`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b76a78c6a199) - bumped editor-prosemirror version to 4.0.0
105
+ - [#91934](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91934)
106
+ [`b76a78c6a199`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b76a78c6a199) -
107
+ bumped editor-prosemirror version to 4.0.0
66
108
 
67
109
  ### Patch Changes
68
110
 
69
- - [#93082](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/93082) [`fb0cc922f8e4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fb0cc922f8e4) - fix resizing offset not match when extend to overflow in handle and mouse
70
- - Updated dependencies
111
+ - [#93082](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/93082)
112
+ [`fb0cc922f8e4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fb0cc922f8e4) -
113
+ fix resizing offset not match when extend to overflow in handle and mouse
114
+ - Updated dependencies
71
115
 
72
116
  ## 7.7.4
73
117
 
74
118
  ### Patch Changes
75
119
 
76
- - [#92426](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92426) [`32c76c7c225c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/32c76c7c225c) - Bump adf-schema to 35.9.2 to support table alignment options
77
- - [#90659](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/90659) [`fc633861cff4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fc633861cff4) - [ux] Adds lock button on table's floating toolbar.
78
- - Updated dependencies
120
+ - [#92426](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92426)
121
+ [`32c76c7c225c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/32c76c7c225c) -
122
+ Bump adf-schema to 35.9.2 to support table alignment options
123
+ - [#90659](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/90659)
124
+ [`fc633861cff4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fc633861cff4) -
125
+ [ux] Adds lock button on table's floating toolbar.
126
+ - Updated dependencies
79
127
 
80
128
  ## 7.7.3
81
129
 
82
130
  ### Patch Changes
83
131
 
84
- - [#92977](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92977) [`402557920a06`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/402557920a06) - Use the start position during col resize to update table width
132
+ - [#92977](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92977)
133
+ [`402557920a06`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/402557920a06) -
134
+ Use the start position during col resize to update table width
85
135
 
86
136
  ## 7.7.2
87
137
 
88
138
  ### Patch Changes
89
139
 
90
- - [#92335](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92335) [`8bdb6ebbad6c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8bdb6ebbad6c) - fix column resize issue when table preserve width enabled.
91
- - Updated dependencies
140
+ - [#92335](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/92335)
141
+ [`8bdb6ebbad6c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8bdb6ebbad6c) -
142
+ fix column resize issue when table preserve width enabled.
143
+ - Updated dependencies
92
144
 
93
145
  ## 7.7.1
94
146
 
95
147
  ### Patch Changes
96
148
 
97
- - [#90896](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/90896) [`ee5dc6f04816`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ee5dc6f04816) - Add new column resize functionality behind LD ff platform.editor.table.colum-resizing-improvements
98
- - [#91106](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91106) [`b6ffa30186b9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b6ffa30186b9) - Bump ADF-schema package to version 35.0.0
99
- - Updated dependencies
149
+ - [#90896](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/90896)
150
+ [`ee5dc6f04816`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ee5dc6f04816) -
151
+ Add new column resize functionality behind LD ff
152
+ platform.editor.table.colum-resizing-improvements
153
+ - [#91106](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/91106)
154
+ [`b6ffa30186b9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b6ffa30186b9) -
155
+ Bump ADF-schema package to version 35.0.0
156
+ - Updated dependencies
100
157
 
101
158
  ## 7.7.0
102
159
 
103
160
  ### Minor Changes
104
161
 
105
- - [#86368](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/86368) [`d07ec8d13230`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d07ec8d13230) - [ux] Remove the custom table width platform flag and remove Layout/Breakout button
162
+ - [#86368](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/86368)
163
+ [`d07ec8d13230`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d07ec8d13230) -
164
+ [ux] Remove the custom table width platform flag and remove Layout/Breakout button
106
165
 
107
166
  ## 7.6.14
108
167
 
109
168
  ### Patch Changes
110
169
 
111
- - [#89135](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/89135) [`134b3db4945d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/134b3db4945d) - fix drag menu flicker issue
170
+ - [#89135](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/89135)
171
+ [`134b3db4945d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/134b3db4945d) -
172
+ fix drag menu flicker issue
112
173
 
113
174
  ## 7.6.13
114
175
 
115
176
  ### Patch Changes
116
177
 
117
- - [#88770](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/88770) [`c86d9e7941f1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c86d9e7941f1) - [ux] fixing the numbered columns blue insert line indicator with correct length
178
+ - [#88770](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/88770)
179
+ [`c86d9e7941f1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c86d9e7941f1) -
180
+ [ux] fixing the numbered columns blue insert line indicator with correct length
118
181
 
119
182
  ## 7.6.12
120
183
 
121
184
  ### Patch Changes
122
185
 
123
- - [#88299](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/88299) [`5a05e6793651`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5a05e6793651) - [ux] fix clickable zone issue
124
- - [#88007](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/88007) [`966ef2d91a91`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/966ef2d91a91) - Disable table resizing in live view mode
125
- - Updated dependencies
186
+ - [#88299](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/88299)
187
+ [`5a05e6793651`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5a05e6793651) -
188
+ [ux] fix clickable zone issue
189
+ - [#88007](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/88007)
190
+ [`966ef2d91a91`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/966ef2d91a91) -
191
+ Disable table resizing in live view mode
192
+ - Updated dependencies
126
193
 
127
194
  ## 7.6.11
128
195
 
129
196
  ### Patch Changes
130
197
 
131
- - [#80728](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80728) [`aac7ad9bb32d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/aac7ad9bb32d) - [ux] The table's floating toolbar dropdown menu a11y annnouncement.
198
+ - [#80728](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80728)
199
+ [`aac7ad9bb32d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/aac7ad9bb32d) -
200
+ [ux] The table's floating toolbar dropdown menu a11y annnouncement.
132
201
 
133
202
  ## 7.6.10
134
203
 
135
204
  ### Patch Changes
136
205
 
137
- - [#88096](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/88096) [`38f5046368e5`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/38f5046368e5) - fix preserve table width undo / redo issue and show full width guide on small screens
206
+ - [#88096](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/88096)
207
+ [`38f5046368e5`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/38f5046368e5) -
208
+ fix preserve table width undo / redo issue and show full width guide on small screens
138
209
 
139
210
  ## 7.6.9
140
211
 
141
212
  ### Patch Changes
142
213
 
143
- - [#87069](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/87069) [`3c2cb323593e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3c2cb323593e) - remove feature flag in-danger-hover-merged-cells-fix
214
+ - [#87069](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/87069)
215
+ [`3c2cb323593e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3c2cb323593e) -
216
+ remove feature flag in-danger-hover-merged-cells-fix
144
217
 
145
218
  ## 7.6.8
146
219
 
147
220
  ### Patch Changes
148
221
 
149
- - [#84955](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/84955) [`f5eded0ecb9d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f5eded0ecb9d) - ECA11Y-192: Fix table resize screen reader announcement for NVDA Windows
222
+ - [#84955](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/84955)
223
+ [`f5eded0ecb9d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f5eded0ecb9d) -
224
+ ECA11Y-192: Fix table resize screen reader announcement for NVDA Windows
150
225
 
151
226
  ## 7.6.7
152
227
 
153
228
  ### Patch Changes
154
229
 
155
- - [#86408](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/86408) [`6bff86c31d81`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6bff86c31d81) - Clean up feature flag for increasing visibility of table scroll shadows
230
+ - [#86408](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/86408)
231
+ [`6bff86c31d81`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6bff86c31d81) -
232
+ Clean up feature flag for increasing visibility of table scroll shadows
156
233
 
157
234
  ## 7.6.6
158
235
 
159
236
  ### Patch Changes
160
237
 
161
- - [#86633](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/86633) [`d9780cd1adb8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d9780cd1adb8) - ED-22713: Fixed table resizing not working with keyboard shortcuts
162
- - [#86724](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/86724) [`718a9aa2424d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/718a9aa2424d) - [ED-22607] Remove references to maxFrames for multi bodied extensions and bump adf-schema from 35.7.0 to 35.8.0
163
- - Updated dependencies
238
+ - [#86633](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/86633)
239
+ [`d9780cd1adb8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d9780cd1adb8) -
240
+ ED-22713: Fixed table resizing not working with keyboard shortcuts
241
+ - [#86724](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/86724)
242
+ [`718a9aa2424d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/718a9aa2424d) -
243
+ [ED-22607] Remove references to maxFrames for multi bodied extensions and bump adf-schema from
244
+ 35.7.0 to 35.8.0
245
+ - Updated dependencies
164
246
 
165
247
  ## 7.6.5
166
248
 
167
249
  ### Patch Changes
168
250
 
169
- - [#85342](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/85342) [`9a6a1786bc65`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9a6a1786bc65) - [ux] Migrates table styles to space tokens
251
+ - [#85342](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/85342)
252
+ [`9a6a1786bc65`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9a6a1786bc65) -
253
+ [ux] Migrates table styles to space tokens
170
254
 
171
255
  ## 7.6.4
172
256
 
173
257
  ### Patch Changes
174
258
 
175
- - [#84595](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/84595) [`412b82018310`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/412b82018310) - ED-22555: Added isFullWidth to GuidelineConfig and use it as a signal
176
- - Updated dependencies
259
+ - [#84595](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/84595)
260
+ [`412b82018310`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/412b82018310) -
261
+ ED-22555: Added isFullWidth to GuidelineConfig and use it as a signal
262
+ - Updated dependencies
177
263
 
178
264
  ## 7.6.3
179
265
 
180
266
  ### Patch Changes
181
267
 
182
- - [#82198](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/82198) [`fb41831c5371`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fb41831c5371) - Remove WithPluginState behind a feature flag and introduce basic gemini tests
268
+ - [#82198](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/82198)
269
+ [`fb41831c5371`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fb41831c5371) -
270
+ Remove WithPluginState behind a feature flag and introduce basic gemini tests
183
271
 
184
272
  ## 7.6.2
185
273
 
186
274
  ### Patch Changes
187
275
 
188
- - [#83121](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83121) [`97ee7097d940`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/97ee7097d940) - [ux] Prevents contenteditable on table shadows and table drag column handles.
276
+ - [#83121](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83121)
277
+ [`97ee7097d940`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/97ee7097d940) -
278
+ [ux] Prevents contenteditable on table shadows and table drag column handles.
189
279
 
190
280
  ## 7.6.1
191
281
 
192
282
  ### Patch Changes
193
283
 
194
- - [#83158](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83158) [`5a0749bf19ec`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5a0749bf19ec) - Fix incorrect full width guideline snapping
284
+ - [#83158](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83158)
285
+ [`5a0749bf19ec`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5a0749bf19ec) -
286
+ Fix incorrect full width guideline snapping
195
287
 
196
288
  ## 7.6.0
197
289
 
198
290
  ### Minor Changes
199
291
 
200
- - [#83612](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83612) [`25b32cbfbb7e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/25b32cbfbb7e) - [ux] Added new clone row/column behaviour to tables drag N drop. When the user holds the alt modifier during the operation the row/column will be duplicated rather then moved.
292
+ - [#83612](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83612)
293
+ [`25b32cbfbb7e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/25b32cbfbb7e) -
294
+ [ux] Added new clone row/column behaviour to tables drag N drop. When the user holds the alt
295
+ modifier during the operation the row/column will be duplicated rather then moved.
201
296
 
202
297
  ### Patch Changes
203
298
 
204
- - Updated dependencies
299
+ - Updated dependencies
205
300
 
206
301
  ## 7.5.16
207
302
 
208
303
  ### Patch Changes
209
304
 
210
- - [#83148](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83148) [`c7e46e32cf2d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c7e46e32cf2d) - [ux] add label in floating toolbar when table resize to widest guideline
305
+ - [#83148](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83148)
306
+ [`c7e46e32cf2d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c7e46e32cf2d) -
307
+ [ux] add label in floating toolbar when table resize to widest guideline
211
308
 
212
309
  ## 7.5.15
213
310
 
214
311
  ### Patch Changes
215
312
 
216
- - [#83567](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83567) [`755de34e0656`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/755de34e0656) - fix preserve table width copy paste and resizing to full width behaviour
217
- - Updated dependencies
313
+ - [#83567](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83567)
314
+ [`755de34e0656`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/755de34e0656) -
315
+ fix preserve table width copy paste and resizing to full width behaviour
316
+ - Updated dependencies
218
317
 
219
318
  ## 7.5.14
220
319
 
221
320
  ### Patch Changes
222
321
 
223
- - [#81777](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81777) [`c6d7a5378751`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c6d7a5378751) - Bump adf-schema to 35.7.0
224
- - Updated dependencies
322
+ - [#81777](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81777)
323
+ [`c6d7a5378751`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c6d7a5378751) -
324
+ Bump adf-schema to 35.7.0
325
+ - Updated dependencies
225
326
 
226
327
  ## 7.5.13
227
328
 
228
329
  ### Patch Changes
229
330
 
230
- - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116) [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) - Upgrade Typescript from `4.9.5` to `5.4.2`
231
- - Updated dependencies
331
+ - [#83116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/83116)
332
+ [`8d4e99057fe0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8d4e99057fe0) -
333
+ Upgrade Typescript from `4.9.5` to `5.4.2`
334
+ - Updated dependencies
232
335
 
233
336
  ## 7.5.12
234
337
 
235
338
  ### Patch Changes
236
339
 
237
- - [#82347](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/82347) [`1290405f274b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1290405f274b) - [ux] Updates move util used by move shortcuts and drag menu to cater for new merged cells logic.
238
- - Updated dependencies
340
+ - [#82347](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/82347)
341
+ [`1290405f274b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1290405f274b) -
342
+ [ux] Updates move util used by move shortcuts and drag menu to cater for new merged cells logic.
343
+ - Updated dependencies
239
344
 
240
345
  ## 7.5.11
241
346
 
242
347
  ### Patch Changes
243
348
 
244
- - [#82119](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/82119) [`0358b8d41041`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0358b8d41041) - insert table at full width via shortcut in full width page
245
- - Updated dependencies
349
+ - [#82119](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/82119)
350
+ [`0358b8d41041`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0358b8d41041) -
351
+ insert table at full width via shortcut in full width page
352
+ - Updated dependencies
246
353
 
247
354
  ## 7.5.10
248
355
 
249
356
  ### Patch Changes
250
357
 
251
- - [#81527](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81527) [`f54438c79095`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f54438c79095) - prevent nested tables from scaling
358
+ - [#81527](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81527)
359
+ [`f54438c79095`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f54438c79095) -
360
+ prevent nested tables from scaling
252
361
 
253
362
  ## 7.5.9
254
363
 
255
364
  ### Patch Changes
256
365
 
257
- - [#81302](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81302) [`969e899b8844`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/969e899b8844) - Update column resize logic to match mouse movement
258
- - [#81427](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81427) [`8adea3fa8973`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8adea3fa8973) - [ux] When number column toggled and preserve table widths ff enabled, the table oveflow state should align with current behaviour.
366
+ - [#81302](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81302)
367
+ [`969e899b8844`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/969e899b8844) -
368
+ Update column resize logic to match mouse movement
369
+ - [#81427](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81427)
370
+ [`8adea3fa8973`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8adea3fa8973) -
371
+ [ux] When number column toggled and preserve table widths ff enabled, the table oveflow state
372
+ should align with current behaviour.
259
373
 
260
374
  ## 7.5.8
261
375
 
262
376
  ### Patch Changes
263
377
 
264
- - [#80679](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80679) [`104eb9443b7e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/104eb9443b7e) - ED-22553 Updating adf-schema version to 35.6.0
265
- - Updated dependencies
378
+ - [#80679](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80679)
379
+ [`104eb9443b7e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/104eb9443b7e) -
380
+ ED-22553 Updating adf-schema version to 35.6.0
381
+ - Updated dependencies
266
382
 
267
383
  ## 7.5.7
268
384
 
269
385
  ### Patch Changes
270
386
 
271
- - [#80086](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80086) [`c30ac781b469`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c30ac781b469) - Add keyboard support Cmd-A to select whole table
272
- - [#81017](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81017) [`df5a993963d9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/df5a993963d9) - prevent scaled table columns being resized below min width
387
+ - [#80086](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80086)
388
+ [`c30ac781b469`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c30ac781b469) -
389
+ Add keyboard support Cmd-A to select whole table
390
+ - [#81017](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81017)
391
+ [`df5a993963d9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/df5a993963d9) -
392
+ prevent scaled table columns being resized below min width
273
393
 
274
394
  ## 7.5.6
275
395
 
276
396
  ### Patch Changes
277
397
 
278
- - [#72764](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/72764) [`1a23abba80b0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1a23abba80b0) - Minor performance improvements to reduce reflows and re-renders
398
+ - [#72764](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/72764)
399
+ [`1a23abba80b0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1a23abba80b0) -
400
+ Minor performance improvements to reduce reflows and re-renders
279
401
 
280
402
  ## 7.5.5
281
403
 
282
404
  ### Patch Changes
283
405
 
284
- - [#79509](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/79509) [`111e580bb58a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/111e580bb58a) - update preserve table width changes to only appear on full width pages
285
- - Updated dependencies
406
+ - [#79509](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/79509)
407
+ [`111e580bb58a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/111e580bb58a) -
408
+ update preserve table width changes to only appear on full width pages
409
+ - Updated dependencies
286
410
 
287
411
  ## 7.5.4
288
412
 
289
413
  ### Patch Changes
290
414
 
291
- - [#80391](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80391) [`bf741c7ef44c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bf741c7ef44c) - Make @atlaskit/editor-plugin-table, @atlaskit/date, @atlaskit/editor-plugin-date React 18 compatible.
292
- - [#79483](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/79483) [`b2a75ed4502b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b2a75ed4502b) - add dynamic widest guideline for table resize
415
+ - [#80391](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/80391)
416
+ [`bf741c7ef44c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bf741c7ef44c) -
417
+ Make @atlaskit/editor-plugin-table, @atlaskit/date, @atlaskit/editor-plugin-date React 18
418
+ compatible.
419
+ - [#79483](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/79483)
420
+ [`b2a75ed4502b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b2a75ed4502b) -
421
+ add dynamic widest guideline for table resize
293
422
 
294
423
  ## 7.5.3
295
424
 
296
425
  ### Patch Changes
297
426
 
298
- - [#78924](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/78924) [`76ebbfb53b83`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/76ebbfb53b83) - Add analytics event when table column is resized
427
+ - [#78924](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/78924)
428
+ [`76ebbfb53b83`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/76ebbfb53b83) -
429
+ Add analytics event when table column is resized
299
430
 
300
431
  ## 7.5.2
301
432
 
302
433
  ### Patch Changes
303
434
 
304
- - [#79502](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/79502) [`be5350055f7a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/be5350055f7a) - [ux] Fix switch focused table cause a crash
435
+ - [#79502](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/79502)
436
+ [`be5350055f7a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/be5350055f7a) -
437
+ [ux] Fix switch focused table cause a crash
305
438
 
306
439
  ## 7.5.1
307
440
 
308
441
  ### Patch Changes
309
442
 
310
- - [#75947](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/75947) [`43549c3789b1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/43549c3789b1) - Migrate @atlaskit/editor-core to use declarative entry points
443
+ - [#75947](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/75947)
444
+ [`43549c3789b1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/43549c3789b1) -
445
+ Migrate @atlaskit/editor-core to use declarative entry points
311
446
 
312
447
  ## 7.5.0
313
448
 
314
449
  ### Minor Changes
315
450
 
316
- - [#77531](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/77531) [`18e5d61eaec6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/18e5d61eaec6) - add preserve table width logic
451
+ - [#77531](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/77531)
452
+ [`18e5d61eaec6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/18e5d61eaec6) -
453
+ add preserve table width logic
317
454
 
318
455
  ## 7.4.9
319
456
 
320
457
  ### Patch Changes
321
458
 
322
- - [#78202](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/78202) [`287432cbca17`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/287432cbca17) - [ux] ED-22099: Fixed drag menu position when close to edge of view port.
459
+ - [#78202](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/78202)
460
+ [`287432cbca17`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/287432cbca17) -
461
+ [ux] ED-22099: Fixed drag menu position when close to edge of view port.
323
462
 
324
463
  ## 7.4.8
325
464
 
326
465
  ### Patch Changes
327
466
 
328
- - [#77796](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/77796) [`eab996d08513`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/eab996d08513) - Add new statsig experiement for preserve table width, add support for passing through width to create table. Allow tables to be inserted at full width
467
+ - [#77796](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/77796)
468
+ [`eab996d08513`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/eab996d08513) -
469
+ Add new statsig experiement for preserve table width, add support for passing through width to
470
+ create table. Allow tables to be inserted at full width
329
471
 
330
472
  ## 7.4.7
331
473
 
332
474
  ### Patch Changes
333
475
 
334
- - [#78224](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/78224) [`6b4c9dd4ad34`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6b4c9dd4ad34) - ED-22219: adf-schema updated to 35.5.2
335
- - Updated dependencies
476
+ - [#78224](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/78224)
477
+ [`6b4c9dd4ad34`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6b4c9dd4ad34) -
478
+ ED-22219: adf-schema updated to 35.5.2
479
+ - Updated dependencies
336
480
 
337
481
  ## 7.4.6
338
482
 
339
483
  ### Patch Changes
340
484
 
341
- - Updated dependencies
485
+ - Updated dependencies
342
486
 
343
487
  ## 7.4.5
344
488
 
345
489
  ### Patch Changes
346
490
 
347
- - [#77616](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/77616) [`fbf65d3a22d9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fbf65d3a22d9) - clean up work for merged cell.
348
- - Updated dependencies
491
+ - [#77616](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/77616)
492
+ [`fbf65d3a22d9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fbf65d3a22d9) -
493
+ clean up work for merged cell.
494
+ - Updated dependencies
349
495
 
350
496
  ## 7.4.4
351
497
 
352
498
  ### Patch Changes
353
499
 
354
- - [#75436](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/75436) [`bfcf32bb4fa3`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bfcf32bb4fa3) - [ux] ED-21941 Disable resize/layout options for table, media and extension when added to MBE. Table rendering fixed for Confluence editor
500
+ - [#75436](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/75436)
501
+ [`bfcf32bb4fa3`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bfcf32bb4fa3) -
502
+ [ux] ED-21941 Disable resize/layout options for table, media and extension when added to MBE.
503
+ Table rendering fixed for Confluence editor
355
504
 
356
505
  ## 7.4.3
357
506
 
358
507
  ### Patch Changes
359
508
 
360
- - [#72037](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/72037) [`e59f0b7a9115`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e59f0b7a9115) - [ux] add flexiable to make merged cells detection allow to detect edge merged cells
509
+ - [#72037](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/72037)
510
+ [`e59f0b7a9115`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e59f0b7a9115) -
511
+ [ux] add flexiable to make merged cells detection allow to detect edge merged cells
361
512
 
362
513
  ## 7.4.2
363
514
 
364
515
  ### Patch Changes
365
516
 
366
- - [#76112](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/76112) [`1cd6cd3382d9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1cd6cd3382d9) - remove table performance experiment
517
+ - [#76112](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/76112)
518
+ [`1cd6cd3382d9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1cd6cd3382d9) -
519
+ remove table performance experiment
367
520
 
368
521
  ## 7.4.1
369
522
 
370
523
  ### Patch Changes
371
524
 
372
- - Updated dependencies
525
+ - Updated dependencies
373
526
 
374
527
  ## 7.4.0
375
528
 
376
529
  ### Minor Changes
377
530
 
378
- - [#75678](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/75678) [`fdcbedeb3cab`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fdcbedeb3cab) - [ux] Fix cell solour menu button to display selected state colour
531
+ - [#75678](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/75678)
532
+ [`fdcbedeb3cab`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fdcbedeb3cab) -
533
+ [ux] Fix cell solour menu button to display selected state colour
379
534
 
380
535
  ## 7.3.11
381
536
 
382
537
  ### Patch Changes
383
538
 
384
- - [#76016](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/76016) [`a93d86a19f91`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a93d86a19f91) - improve drag and drop cursor active and disabled states
385
- - [#76115](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/76115) [`3e3eb7cf04e1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3e3eb7cf04e1) - ED-21718 Transform slice to remove nestedExpand from slice before pasting
386
- - Updated dependencies
539
+ - [#76016](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/76016)
540
+ [`a93d86a19f91`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a93d86a19f91) -
541
+ improve drag and drop cursor active and disabled states
542
+ - [#76115](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/76115)
543
+ [`3e3eb7cf04e1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3e3eb7cf04e1) -
544
+ ED-21718 Transform slice to remove nestedExpand from slice before pasting
545
+ - Updated dependencies
387
546
 
388
547
  ## 7.3.10
389
548
 
390
549
  ### Patch Changes
391
550
 
392
- - [#75205](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/75205) [`add1e7b7f424`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/add1e7b7f424) - Reduce NCS spam when holding the move column/row keyboard shortcut
551
+ - [#75205](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/75205)
552
+ [`add1e7b7f424`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/add1e7b7f424) -
553
+ Reduce NCS spam when holding the move column/row keyboard shortcut
393
554
 
394
555
  ## 7.3.9
395
556
 
396
557
  ### Patch Changes
397
558
 
398
- - [#70616](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70616) [`76068b6be8dc`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/76068b6be8dc) - Upgrading to Pragmatic drag and drop 1.0
399
- - Updated dependencies
559
+ - [#70616](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70616)
560
+ [`76068b6be8dc`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/76068b6be8dc) -
561
+ Upgrading to Pragmatic drag and drop 1.0
562
+ - Updated dependencies
400
563
 
401
564
  ## 7.3.8
402
565
 
403
566
  ### Patch Changes
404
567
 
405
- - [#73364](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/73364) [`1c4d3e31c0e8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1c4d3e31c0e8) - fix last insert row button hard to select issue
406
- - [#73853](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/73853) [`34a4ba976c08`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/34a4ba976c08) - [ux] When insert column button clicked on the last column, it stays in place allowing to insert more columns without moving the mouse.
568
+ - [#73364](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/73364)
569
+ [`1c4d3e31c0e8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1c4d3e31c0e8) -
570
+ fix last insert row button hard to select issue
571
+ - [#73853](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/73853)
572
+ [`34a4ba976c08`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/34a4ba976c08) -
573
+ [ux] When insert column button clicked on the last column, it stays in place allowing to insert
574
+ more columns without moving the mouse.
407
575
 
408
576
  ## 7.3.7
409
577
 
410
578
  ### Patch Changes
411
579
 
412
- - [#70116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70116) [`31f1fa8d4ba3`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/31f1fa8d4ba3) - Removed Feature Flag for platform.editor.table.alternative-sticky-header-logic
413
- - Updated dependencies
580
+ - [#70116](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70116)
581
+ [`31f1fa8d4ba3`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/31f1fa8d4ba3) -
582
+ Removed Feature Flag for platform.editor.table.alternative-sticky-header-logic
583
+ - Updated dependencies
414
584
 
415
585
  ## 7.3.6
416
586
 
417
587
  ### Patch Changes
418
588
 
419
- - Updated dependencies
589
+ - Updated dependencies
420
590
 
421
591
  ## 7.3.5
422
592
 
423
593
  ### Patch Changes
424
594
 
425
- - [#72850](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/72850) [`5099580a0330`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5099580a0330) - Adds analytics for sort options in table's Drag handle menu
426
- - Updated dependencies
595
+ - [#72850](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/72850)
596
+ [`5099580a0330`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5099580a0330) -
597
+ Adds analytics for sort options in table's Drag handle menu
598
+ - Updated dependencies
427
599
 
428
600
  ## 7.3.4
429
601
 
430
602
  ### Patch Changes
431
603
 
432
- - Updated dependencies
604
+ - Updated dependencies
433
605
 
434
606
  ## 7.3.3
435
607
 
436
608
  ### Patch Changes
437
609
 
438
- - [#70829](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70829) [`18955263bc9a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/18955263bc9a) - ED-17638: Marked permittedLayouts as deprecated
610
+ - [#70829](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70829)
611
+ [`18955263bc9a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/18955263bc9a) -
612
+ ED-17638: Marked permittedLayouts as deprecated
439
613
 
440
614
  ## 7.3.2
441
615
 
442
616
  ### Patch Changes
443
617
 
444
- - [#72081](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/72081) [`4487160917d2`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4487160917d2) - [ux] ED-22052: adds button type attribute to non atlaskit button instances
618
+ - [#72081](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/72081)
619
+ [`4487160917d2`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4487160917d2) -
620
+ [ux] ED-22052: adds button type attribute to non atlaskit button instances
445
621
 
446
622
  ## 7.3.1
447
623
 
448
624
  ### Patch Changes
449
625
 
450
- - [#69911](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69911) [`50161fb5966e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/50161fb5966e) - [ux] Added keyboard shortcut to drag handle and keyboard navigation for drag menu
451
- - Updated dependencies
626
+ - [#69911](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69911)
627
+ [`50161fb5966e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/50161fb5966e) -
628
+ [ux] Added keyboard shortcut to drag handle and keyboard navigation for drag menu
629
+ - Updated dependencies
452
630
 
453
631
  ## 7.3.0
454
632
 
455
633
  ### Minor Changes
456
634
 
457
- - [#63203](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63203) [`2bf8f7ffabfd`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2bf8f7ffabfd) - ECA11Y-194: Stop keyboard column resizing when table updated or lost focus
635
+ - [#63203](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63203)
636
+ [`2bf8f7ffabfd`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2bf8f7ffabfd) -
637
+ ECA11Y-194: Stop keyboard column resizing when table updated or lost focus
458
638
 
459
639
  ## 7.2.3
460
640
 
461
641
  ### Patch Changes
462
642
 
463
- - [#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
464
- - [#70707](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70707) [`01c10b920070`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/01c10b920070) - [ux] Move options in drag menu now have disabled state when target has merged cells.
465
- - Updated dependencies
643
+ - [#68572](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68572)
644
+ [`15d407fe5143`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/15d407fe5143) -
645
+ Upgrading @atlaskit/editor-prosemirror dependency
646
+ - [#70707](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70707)
647
+ [`01c10b920070`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/01c10b920070) -
648
+ [ux] Move options in drag menu now have disabled state when target has merged cells.
649
+ - Updated dependencies
466
650
 
467
651
  ## 7.2.2
468
652
 
469
653
  ### Patch Changes
470
654
 
471
- - [#70342](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70342) [`6862cba17f31`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6862cba17f31) - Fix drop functionality when dragging in overflown table
655
+ - [#70342](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70342)
656
+ [`6862cba17f31`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6862cba17f31) -
657
+ Fix drop functionality when dragging in overflown table
472
658
 
473
659
  ## 7.2.1
474
660
 
475
661
  ### Patch Changes
476
662
 
477
- - [#70802](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70802) [`ee58189e1b0e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ee58189e1b0e) - ED-21911 Adding custom paste handling for content copied from MBE frames.
663
+ - [#70802](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70802)
664
+ [`ee58189e1b0e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ee58189e1b0e) -
665
+ ED-21911 Adding custom paste handling for content copied from MBE frames.
478
666
 
479
667
  ## 7.2.0
480
668
 
481
669
  ### Minor Changes
482
670
 
483
- - [#70702](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70702) [`de0d7031a536`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/de0d7031a536) - remove drag and drop nodesize limit
671
+ - [#70702](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70702)
672
+ [`de0d7031a536`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/de0d7031a536) -
673
+ remove drag and drop nodesize limit
484
674
 
485
675
  ### Patch Changes
486
676
 
487
- - [#70152](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70152) [`53ed3673df28`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/53ed3673df28) - Updating adf-schema version to 35.5.1
488
- - Updated dependencies
677
+ - [#70152](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70152)
678
+ [`53ed3673df28`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/53ed3673df28) -
679
+ Updating adf-schema version to 35.5.1
680
+ - Updated dependencies
489
681
 
490
682
  ## 7.1.4
491
683
 
492
684
  ### Patch Changes
493
685
 
494
- - [#70084](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70084) [`4d651eb93ab5`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4d651eb93ab5) - Add editor-plugin-annotation pr and create shared utils for it in editor-test-helpers
495
- - Updated dependencies
686
+ - [#70084](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70084)
687
+ [`4d651eb93ab5`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4d651eb93ab5) -
688
+ Add editor-plugin-annotation pr and create shared utils for it in editor-test-helpers
689
+ - Updated dependencies
496
690
 
497
691
  ## 7.1.3
498
692
 
499
693
  ### Patch Changes
500
694
 
501
- - [#70368](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70368) [`77021a60ef37`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/77021a60ef37) - Add button background css reset to drag handle button to fix issue on safari where the background can be seen through the svg graphic
695
+ - [#70368](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70368)
696
+ [`77021a60ef37`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/77021a60ef37) -
697
+ Add button background css reset to drag handle button to fix issue on safari where the
698
+ background can be seen through the svg graphic
502
699
 
503
700
  ## 7.1.2
504
701
 
505
702
  ### Patch Changes
506
703
 
507
- - [#70109](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70109) [`ecf39362df41`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ecf39362df41) - The drag preview size will now match the same size of the selection row/col region when a drag is started.
704
+ - [#70109](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/70109)
705
+ [`ecf39362df41`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ecf39362df41) -
706
+ The drag preview size will now match the same size of the selection row/col region when a drag
707
+ is started.
508
708
 
509
709
  ## 7.1.1
510
710
 
511
711
  ### Patch Changes
512
712
 
513
- - [#69625](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69625) [`67d7971c6ddf`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/67d7971c6ddf) - [ux] Tables DnD now supports dragging multiple rows/columns in a single drag using multi-select
514
- - [#69338](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69338) [`da642bc0799f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/da642bc0799f) - Fix unable to drop when table sticky header shows
515
- - [#69050](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69050) [`9affe9831bd2`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9affe9831bd2) - [ux] Adds a clickable zone around drag handles to allow columns/rows to be selected outside of small drag handle button.
516
- - [#69226](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69226) [`eb9cd91f1bdb`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/eb9cd91f1bdb) - ED-21807: Replace Dnd LD feature flag with Statsig experiment
517
- - Updated dependencies
713
+ - [#69625](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69625)
714
+ [`67d7971c6ddf`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/67d7971c6ddf) -
715
+ [ux] Tables DnD now supports dragging multiple rows/columns in a single drag using multi-select
716
+ - [#69338](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69338)
717
+ [`da642bc0799f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/da642bc0799f) -
718
+ Fix unable to drop when table sticky header shows
719
+ - [#69050](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69050)
720
+ [`9affe9831bd2`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9affe9831bd2) -
721
+ [ux] Adds a clickable zone around drag handles to allow columns/rows to be selected outside of
722
+ small drag handle button.
723
+ - [#69226](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69226)
724
+ [`eb9cd91f1bdb`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/eb9cd91f1bdb) -
725
+ ED-21807: Replace Dnd LD feature flag with Statsig experiment
726
+ - Updated dependencies
518
727
 
519
728
  ## 7.1.0
520
729
 
521
730
  ### Minor Changes
522
731
 
523
- - [#69232](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69232) [`93c8f231aa82`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/93c8f231aa82) - Optimized the table move column logic to perform individual insert/deletes per row
524
- - [#68790](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68790) [`c6d8affc52d1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c6d8affc52d1) - Support maybeAdd plugins in usePreset. Add typing support for universal preset.
732
+ - [#69232](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/69232)
733
+ [`93c8f231aa82`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/93c8f231aa82) -
734
+ Optimized the table move column logic to perform individual insert/deletes per row
735
+ - [#68790](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68790)
736
+ [`c6d8affc52d1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c6d8affc52d1) -
737
+ Support maybeAdd plugins in usePreset. Add typing support for universal preset.
525
738
 
526
- Now when using the editor API with the universal preset
739
+ Now when using the editor API with the universal preset
527
740
 
528
741
  ### Patch Changes
529
742
 
530
- - [#68693](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68693) [`f664d35cc135`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f664d35cc135) - Fix incorrect drag handle position after deleting row in table
531
- - [#68011](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68011) [`f19b64a46694`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f19b64a46694) - Remove check for header for column insert keyboard shortcut
532
- - [#68926](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68926) [`fceb32f94798`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fceb32f94798) - [ux] update drag menu's insert row's icons
533
- - Updated dependencies
743
+ - [#68693](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68693)
744
+ [`f664d35cc135`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f664d35cc135) -
745
+ Fix incorrect drag handle position after deleting row in table
746
+ - [#68011](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68011)
747
+ [`f19b64a46694`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f19b64a46694) -
748
+ Remove check for header for column insert keyboard shortcut
749
+ - [#68926](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68926)
750
+ [`fceb32f94798`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fceb32f94798) -
751
+ [ux] update drag menu's insert row's icons
752
+ - Updated dependencies
534
753
 
535
754
  ## 7.0.3
536
755
 
537
756
  ### Patch Changes
538
757
 
539
- - [#68585](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68585) [`453395005d42`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/453395005d42) - [ux] Fixed a bug where a table nested in expand has showdows after clicking breakout button.
758
+ - [#68585](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/68585)
759
+ [`453395005d42`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/453395005d42) -
760
+ [ux] Fixed a bug where a table nested in expand has showdows after clicking breakout button.
540
761
 
541
762
  ## 7.0.2
542
763
 
543
764
  ### Patch Changes
544
765
 
545
- - [#67831](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67831) [`6027f6646d15`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6027f6646d15) - Fix table scroll when pressing CMD+A to select all
766
+ - [#67831](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67831)
767
+ [`6027f6646d15`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/6027f6646d15) -
768
+ Fix table scroll when pressing CMD+A to select all
546
769
 
547
770
  ## 7.0.1
548
771
 
549
772
  ### Patch Changes
550
773
 
551
- - [#67948](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67948) [`28fcdf6793a4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/28fcdf6793a4) - Expand/collapse for panel and table color pickers
774
+ - [#67948](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67948)
775
+ [`28fcdf6793a4`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/28fcdf6793a4) -
776
+ Expand/collapse for panel and table color pickers
552
777
 
553
778
  ## 7.0.0
554
779
 
555
780
  ### Major Changes
556
781
 
557
- - [#67703](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67703) [`d5303cb0f0cb`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d5303cb0f0cb) - When a table is inserted via the table selector popup, an analytics event should be sent with the totalRowCount and totalColumnCount and the input method picker. Removed ASCII and TYPEAHEAD inputMethod from table selector command.
782
+ - [#67703](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67703)
783
+ [`d5303cb0f0cb`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d5303cb0f0cb) -
784
+ When a table is inserted via the table selector popup, an analytics event should be sent with
785
+ the totalRowCount and totalColumnCount and the input method picker. Removed ASCII and TYPEAHEAD
786
+ inputMethod from table selector command.
558
787
 
559
788
  ## 6.1.1
560
789
 
561
790
  ### Patch Changes
562
791
 
563
- - Updated dependencies
792
+ - Updated dependencies
564
793
 
565
794
  ## 6.1.0
566
795
 
567
796
  ### Minor Changes
568
797
 
569
- - [#67400](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67400) [`191436e36f93`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/191436e36f93) - Optimised the table move row logic to perform insert/delete steps rather than an entire table replacement
798
+ - [#67400](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67400)
799
+ [`191436e36f93`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/191436e36f93) -
800
+ Optimised the table move row logic to perform insert/delete steps rather than an entire table
801
+ replacement
570
802
 
571
803
  ### Patch Changes
572
804
 
573
- - Updated dependencies
805
+ - Updated dependencies
574
806
 
575
807
  ## 6.0.0
576
808
 
577
809
  ### Major Changes
578
810
 
579
- - [#67764](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67764) [`392964912fad`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/392964912fad) - Fixed incorrectly imported dependencies from src in the editor-plugin-table
811
+ - [#67764](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67764)
812
+ [`392964912fad`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/392964912fad) -
813
+ Fixed incorrectly imported dependencies from src in the editor-plugin-table
580
814
 
581
815
  ### Patch Changes
582
816
 
583
- - [#67255](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67255) [`f73d19be272d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f73d19be272d) - Set pointer events to none on column controls while dragging. Fixes issue where column controls prevent drop targets from showing.
817
+ - [#67255](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67255)
818
+ [`f73d19be272d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f73d19be272d) -
819
+ Set pointer events to none on column controls while dragging. Fixes issue where column controls
820
+ prevent drop targets from showing.
584
821
 
585
822
  ## 5.8.6
586
823
 
587
824
  ### Patch Changes
588
825
 
589
- - [#67239](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67239) [`4b543688dfcb`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4b543688dfcb) - [ux] ED-21242: Fixed some menu item not full visible on drag menu"
590
- - Updated dependencies
826
+ - [#67239](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67239)
827
+ [`4b543688dfcb`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4b543688dfcb) -
828
+ [ux] ED-21242: Fixed some menu item not full visible on drag menu"
829
+ - Updated dependencies
591
830
 
592
831
  ## 5.8.5
593
832
 
594
833
  ### Patch Changes
595
834
 
596
- - [#67238](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67238) [`40533849b2ec`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/40533849b2ec) - [ED-21835] Change EditorAPI type to always union with undefined
835
+ - [#67238](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67238)
836
+ [`40533849b2ec`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/40533849b2ec) -
837
+ [ED-21835] Change EditorAPI type to always union with undefined
597
838
 
598
839
  ## 5.8.4
599
840
 
600
841
  ### Patch Changes
601
842
 
602
- - [#67113](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67113) [`7160ae19d9e5`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7160ae19d9e5) - [ux] Adds localisation for table drag handle menu options
603
- - [#66456](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66456) [`f67ea3106bb9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f67ea3106bb9) - Add support for i18n for drag handles
843
+ - [#67113](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67113)
844
+ [`7160ae19d9e5`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7160ae19d9e5) -
845
+ [ux] Adds localisation for table drag handle menu options
846
+ - [#66456](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66456)
847
+ [`f67ea3106bb9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f67ea3106bb9) -
848
+ Add support for i18n for drag handles
604
849
 
605
850
  ## 5.8.3
606
851
 
607
852
  ### Patch Changes
608
853
 
609
- - [#66462](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66462) [`241abc835673`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/241abc835673) - Add autoscroll to editor page to fix table drag and drop
854
+ - [#66462](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66462)
855
+ [`241abc835673`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/241abc835673) -
856
+ Add autoscroll to editor page to fix table drag and drop
610
857
 
611
858
  ## 5.8.2
612
859
 
613
860
  ### Patch Changes
614
861
 
615
- - [#66678](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66678) [`dcfaed76166a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/dcfaed76166a) - Update insert row / column plus icon for table
862
+ - [#66678](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66678)
863
+ [`dcfaed76166a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/dcfaed76166a) -
864
+ Update insert row / column plus icon for table
616
865
 
617
866
  ## 5.8.1
618
867
 
619
868
  ### Patch Changes
620
869
 
621
- - Updated dependencies
870
+ - Updated dependencies
622
871
 
623
872
  ## 5.8.0
624
873
 
625
874
  ### Minor Changes
626
875
 
627
- - [#57215](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/57215) [`73841c209537`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/73841c209537) - [ux] ECA11Y-107: Add basic keyboard navigation for resize sliders
876
+ - [#57215](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/57215)
877
+ [`73841c209537`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/73841c209537) -
878
+ [ux] ECA11Y-107: Add basic keyboard navigation for resize sliders
628
879
 
629
880
  ### Patch Changes
630
881
 
631
- - [#66092](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66092) [`b436457c489f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b436457c489f) - [ux] ED-21241: Add new menu items to the drag handle menus
632
- - Updated dependencies
882
+ - [#66092](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66092)
883
+ [`b436457c489f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b436457c489f) -
884
+ [ux] ED-21241: Add new menu items to the drag handle menus
885
+ - Updated dependencies
633
886
 
634
887
  ## 5.7.10
635
888
 
636
889
  ### Patch Changes
637
890
 
638
- - [#66128](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66128) [`a276b9ce0b8f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a276b9ce0b8f) - Add data test ids to elements, introduce table tests
639
- - [#66453](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66453) [`a43a37f6b703`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a43a37f6b703) - [ux] Updates color of insert line when drop target has merged cells.
640
- - Updated dependencies
891
+ - [#66128](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66128)
892
+ [`a276b9ce0b8f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a276b9ce0b8f) -
893
+ Add data test ids to elements, introduce table tests
894
+ - [#66453](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/66453)
895
+ [`a43a37f6b703`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a43a37f6b703) -
896
+ [ux] Updates color of insert line when drop target has merged cells.
897
+ - Updated dependencies
641
898
 
642
899
  ## 5.7.9
643
900
 
644
901
  ### Patch Changes
645
902
 
646
- - [#65636](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/65636) [`de5fd6bce7c5`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/de5fd6bce7c5) - [ux] update offset so multiple lines row drag preview could be looks properly
903
+ - [#65636](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/65636)
904
+ [`de5fd6bce7c5`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/de5fd6bce7c5) -
905
+ [ux] update offset so multiple lines row drag preview could be looks properly
647
906
 
648
907
  ## 5.7.8
649
908
 
650
909
  ### Patch Changes
651
910
 
652
- - [#65572](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/65572) [`a13e13b8eb7d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a13e13b8eb7d) - [ux] Increases drag menu width by 10px to ensure "Move column right" option fits on one line.
653
- - [#65031](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/65031) [`a00094111b5a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a00094111b5a) - ED-21609 Update adf-schema to 35.3.0
654
- - Updated dependencies
911
+ - [#65572](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/65572)
912
+ [`a13e13b8eb7d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a13e13b8eb7d) -
913
+ [ux] Increases drag menu width by 10px to ensure "Move column right" option fits on one line.
914
+ - [#65031](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/65031)
915
+ [`a00094111b5a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a00094111b5a) -
916
+ ED-21609 Update adf-schema to 35.3.0
917
+ - Updated dependencies
655
918
 
656
919
  ## 5.7.7
657
920
 
658
921
  ### Patch Changes
659
922
 
660
- - [#64359](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/64359) [`e728a3537d3b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e728a3537d3b) - [ux] Adds table shortcust to move row or column and to delete row or column when drag and drop enabled
923
+ - [#64359](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/64359)
924
+ [`e728a3537d3b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e728a3537d3b) -
925
+ [ux] Adds table shortcust to move row or column and to delete row or column when drag and drop
926
+ enabled
661
927
 
662
928
  ## 5.7.6
663
929
 
664
930
  ### Patch Changes
665
931
 
666
- - [#64679](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/64679) [`0d0b1219b1b9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0d0b1219b1b9) - Fix insert column button and line above toolbar popups
667
- - Updated dependencies
932
+ - [#64679](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/64679)
933
+ [`0d0b1219b1b9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0d0b1219b1b9) -
934
+ Fix insert column button and line above toolbar popups
935
+ - Updated dependencies
668
936
 
669
937
  ## 5.7.5
670
938
 
671
939
  ### Patch Changes
672
940
 
673
- - [#64179](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/64179) [`3754cce9321d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3754cce9321d) - setup table resizing performance experiment
674
- - [#63857](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63857) [`9f15ea30d592`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9f15ea30d592) - [ux] fix zindex for sticky scrollbar
675
- - Updated dependencies
941
+ - [#64179](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/64179)
942
+ [`3754cce9321d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3754cce9321d) -
943
+ setup table resizing performance experiment
944
+ - [#63857](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63857)
945
+ [`9f15ea30d592`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9f15ea30d592) -
946
+ [ux] fix zindex for sticky scrollbar
947
+ - Updated dependencies
676
948
 
677
949
  ## 5.7.4
678
950
 
679
951
  ### Patch Changes
680
952
 
681
- - [#63287](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63287) [`8b58c452f126`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8b58c452f126) - ED-20334 Cleaned reference for feature flag 'platform.editor.table-update-colwidths-after-column-is-deleted'and refactored code for it.
953
+ - [#63287](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63287)
954
+ [`8b58c452f126`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8b58c452f126) -
955
+ ED-20334 Cleaned reference for feature flag
956
+ 'platform.editor.table-update-colwidths-after-column-is-deleted'and refactored code for it.
682
957
 
683
958
  ## 5.7.3
684
959
 
685
960
  ### Patch Changes
686
961
 
687
- - [#63290](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63290) [`52ea8e908f57`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/52ea8e908f57) - ED-19613: Cleaned references for feature flag: platform.editor.table-remove-update-resize-handles_djvab.
688
- - [#63606](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63606) [`196f99e732d6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/196f99e732d6) - [ux] Add support for drag handle for sticky header in table
689
- - [#61531](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/61531) [`4f1e82618f55`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4f1e82618f55) - [ux] fix in danger selection been re-calcuate with merged cells
690
- - Updated dependencies
962
+ - [#63290](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63290)
963
+ [`52ea8e908f57`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/52ea8e908f57) -
964
+ ED-19613: Cleaned references for feature flag:
965
+ platform.editor.table-remove-update-resize-handles_djvab.
966
+ - [#63606](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63606)
967
+ [`196f99e732d6`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/196f99e732d6) -
968
+ [ux] Add support for drag handle for sticky header in table
969
+ - [#61531](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/61531)
970
+ [`4f1e82618f55`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4f1e82618f55) -
971
+ [ux] fix in danger selection been re-calcuate with merged cells
972
+ - Updated dependencies
691
973
 
692
974
  ## 5.7.2
693
975
 
694
976
  ### Patch Changes
695
977
 
696
- - [#63416](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63416) [`cfa23683ae92`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/cfa23683ae92) - update floating tool bar button
697
- - [#63569](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63569) [`bf5ed730bc99`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bf5ed730bc99) - Use start position to calculate insert column buttons to cater for merged cells
978
+ - [#63416](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63416)
979
+ [`cfa23683ae92`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/cfa23683ae92) -
980
+ update floating tool bar button
981
+ - [#63569](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63569)
982
+ [`bf5ed730bc99`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bf5ed730bc99) -
983
+ Use start position to calculate insert column buttons to cater for merged cells
698
984
 
699
985
  ## 5.7.1
700
986
 
701
987
  ### Patch Changes
702
988
 
703
- - [#63516](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63516) [`8fdf2e7a3737`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8fdf2e7a3737) - [ux] Added an adjustment value to the guidelines visible filtering method to exclude guidelines which may be visible but are not snapable.
704
- - Updated dependencies
989
+ - [#63516](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/63516)
990
+ [`8fdf2e7a3737`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/8fdf2e7a3737) -
991
+ [ux] Added an adjustment value to the guidelines visible filtering method to exclude guidelines
992
+ which may be visible but are not snapable.
993
+ - Updated dependencies
705
994
 
706
995
  ## 5.7.0
707
996
 
708
997
  ### Minor Changes
709
998
 
710
- - [#62416](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/62416) [`9f3c36680d89`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9f3c36680d89) - [ux] Updated table context menu styling.
999
+ - [#62416](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/62416)
1000
+ [`9f3c36680d89`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9f3c36680d89) -
1001
+ [ux] Updated table context menu styling.
711
1002
 
712
1003
  ## 5.6.7
713
1004
 
714
1005
  ### Patch Changes
715
1006
 
716
- - [#61923](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/61923) [`04e38cfe9e90`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/04e38cfe9e90) - Remove legacy theming logic from all Editor plugin packages. Theming is still available via the @atlaskit/tokens package.
717
- - Updated dependencies
1007
+ - [#61923](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/61923)
1008
+ [`04e38cfe9e90`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/04e38cfe9e90) -
1009
+ Remove legacy theming logic from all Editor plugin packages. Theming is still available via the
1010
+ @atlaskit/tokens package.
1011
+ - Updated dependencies
718
1012
 
719
1013
  ## 5.6.6
720
1014
 
721
1015
  ### Patch Changes
722
1016
 
723
- - [#62165](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/62165) [`b44ac0968d79`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b44ac0968d79) - [ED-21562] Bump @atlaskit/adf-schema to 35.2.0 for border mark update
724
- - Updated dependencies
1017
+ - [#62165](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/62165)
1018
+ [`b44ac0968d79`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b44ac0968d79) -
1019
+ [ED-21562] Bump @atlaskit/adf-schema to 35.2.0 for border mark update
1020
+ - Updated dependencies
725
1021
 
726
1022
  ## 5.6.5
727
1023
 
728
1024
  ### Patch Changes
729
1025
 
730
- - [#58893](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58893) [`ed82b25d516b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ed82b25d516b) - [ux] [ECA11Y-110] Selecting table columns and rows via shortcuts
1026
+ - [#58893](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58893)
1027
+ [`ed82b25d516b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ed82b25d516b) -
1028
+ [ux] [ECA11Y-110] Selecting table columns and rows via shortcuts
731
1029
 
732
1030
  ## 5.6.4
733
1031
 
734
1032
  ### Patch Changes
735
1033
 
736
- - [#61812](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/61812) [`1d1776f9f6bf`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1d1776f9f6bf) - Fix issue where inserting column via drag menu introduces a scroll
1034
+ - [#61812](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/61812)
1035
+ [`1d1776f9f6bf`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1d1776f9f6bf) -
1036
+ Fix issue where inserting column via drag menu introduces a scroll
737
1037
 
738
1038
  ## 5.6.3
739
1039
 
740
1040
  ### Patch Changes
741
1041
 
742
- - [#59319](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59319) [`d2e34e936bf2`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d2e34e936bf2) - [ED-15859] Clean up restartNumberedLists feature flag and set this feature as the default behaviour for ordered lists. Currently this feature is only rolled out in Confluence so this change will roll it out to all other products which adopt this version.
1042
+ - [#59319](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59319)
1043
+ [`d2e34e936bf2`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d2e34e936bf2) -
1044
+ [ED-15859] Clean up restartNumberedLists feature flag and set this feature as the default
1045
+ behaviour for ordered lists. Currently this feature is only rolled out in Confluence so this
1046
+ change will roll it out to all other products which adopt this version.
743
1047
 
744
1048
  ## 5.6.2
745
1049
 
746
1050
  ### Patch Changes
747
1051
 
748
- - [#61138](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/61138) [`d3a57afcd62b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d3a57afcd62b) - Cleaned references for feature flag: platform.editor.table.update-table-resizer-styles
1052
+ - [#61138](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/61138)
1053
+ [`d3a57afcd62b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d3a57afcd62b) -
1054
+ Cleaned references for feature flag: platform.editor.table.update-table-resizer-styles
749
1055
 
750
1056
  ## 5.6.1
751
1057
 
752
1058
  ### Patch Changes
753
1059
 
754
- - [#61294](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/61294) [`70b236bfd951`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/70b236bfd951) - remove raf from sticky scrollbar handler to fix jittery behaviour
1060
+ - [#61294](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/61294)
1061
+ [`70b236bfd951`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/70b236bfd951) -
1062
+ remove raf from sticky scrollbar handler to fix jittery behaviour
755
1063
 
756
1064
  ## 5.6.0
757
1065
 
758
1066
  ### Minor Changes
759
1067
 
760
- - [#60937](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60937) [`fd6ea5aa5a6e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fd6ea5aa5a6e) - Added new table analytics to cover moving row/column scenarios
1068
+ - [#60937](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60937)
1069
+ [`fd6ea5aa5a6e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fd6ea5aa5a6e) -
1070
+ Added new table analytics to cover moving row/column scenarios
761
1071
 
762
1072
  ### Patch Changes
763
1073
 
764
- - Updated dependencies
1074
+ - Updated dependencies
765
1075
 
766
1076
  ## 5.5.13
767
1077
 
768
1078
  ### Patch Changes
769
1079
 
770
- - [#60425](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60425) [`0caaaa7105f9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0caaaa7105f9) - [ux] Fix drag menu position and anchor element
1080
+ - [#60425](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60425)
1081
+ [`0caaaa7105f9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0caaaa7105f9) -
1082
+ [ux] Fix drag menu position and anchor element
771
1083
 
772
1084
  ## 5.5.12
773
1085
 
774
1086
  ### Patch Changes
775
1087
 
776
- - [#60612](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60612) [`7edc766361a2`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7edc766361a2) - Created an EditorCommad on table plugin to insert a table of custom size
1088
+ - [#60612](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60612)
1089
+ [`7edc766361a2`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7edc766361a2) -
1090
+ Created an EditorCommad on table plugin to insert a table of custom size
777
1091
 
778
1092
  ## 5.5.11
779
1093
 
780
1094
  ### Patch Changes
781
1095
 
782
- - [#60830](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60830) [`5472a318103f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5472a318103f) - force colgroup to update after column drop to ensure the correct column width is shown
783
- - [#60767](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60767) [`737f3666a35d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/737f3666a35d) - Ensure the target that is being pasted is a table
784
- - [#60717](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60717) [`15f7bd8c548a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/15f7bd8c548a) - disable sort in drag menu when there is merged cell in table
1096
+ - [#60830](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60830)
1097
+ [`5472a318103f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5472a318103f) -
1098
+ force colgroup to update after column drop to ensure the correct column width is shown
1099
+ - [#60767](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60767)
1100
+ [`737f3666a35d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/737f3666a35d) -
1101
+ Ensure the target that is being pasted is a table
1102
+ - [#60717](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60717)
1103
+ [`15f7bd8c548a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/15f7bd8c548a) -
1104
+ disable sort in drag menu when there is merged cell in table
785
1105
 
786
1106
  ## 5.5.10
787
1107
 
788
1108
  ### Patch Changes
789
1109
 
790
- - [#60808](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60808) [`f509a21be124`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f509a21be124) - ED-21506: @atlaskit/adf-schema upgraded to 35.1.1 to support renderer for MBE
791
- - Updated dependencies
1110
+ - [#60808](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60808)
1111
+ [`f509a21be124`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f509a21be124) -
1112
+ ED-21506: @atlaskit/adf-schema upgraded to 35.1.1 to support renderer for MBE
1113
+ - Updated dependencies
792
1114
 
793
1115
  ## 5.5.9
794
1116
 
795
1117
  ### Patch Changes
796
1118
 
797
- - [#60800](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60800) [`ec9a5b53bdc0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ec9a5b53bdc0) - only show white overflay on numbered columns when sticky headers is active
798
- - [#60696](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60696) [`edd1af912ca8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/edd1af912ca8) - remove column controls when sticky header is active
1119
+ - [#60800](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60800)
1120
+ [`ec9a5b53bdc0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ec9a5b53bdc0) -
1121
+ only show white overflay on numbered columns when sticky headers is active
1122
+ - [#60696](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60696)
1123
+ [`edd1af912ca8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/edd1af912ca8) -
1124
+ remove column controls when sticky header is active
799
1125
 
800
1126
  ## 5.5.8
801
1127
 
802
1128
  ### Patch Changes
803
1129
 
804
- - [#60644](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60644) [`513c52530ec8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/513c52530ec8) - add distribute column logic to drag menu
805
- - Updated dependencies
1130
+ - [#60644](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60644)
1131
+ [`513c52530ec8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/513c52530ec8) -
1132
+ add distribute column logic to drag menu
1133
+ - Updated dependencies
806
1134
 
807
1135
  ## 5.5.7
808
1136
 
809
1137
  ### Patch Changes
810
1138
 
811
- - [#60463](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60463) [`fc3ba048ce0b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fc3ba048ce0b) - - increase drag handle z-index to prevent overlap from column resize decoration
812
- - update drag corner button to match updated designs
1139
+ - [#60463](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60463)
1140
+ [`fc3ba048ce0b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fc3ba048ce0b) - -
1141
+ increase drag handle z-index to prevent overlap from column resize decoration
1142
+ - update drag corner button to match updated designs
813
1143
 
814
1144
  ## 5.5.6
815
1145
 
816
1146
  ### Patch Changes
817
1147
 
818
- - [#58246](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58246) [`a381b2599716`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a381b2599716) - ED-21371 Update adf-schema to 35.1.0
819
- - Updated dependencies
1148
+ - [#58246](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58246)
1149
+ [`a381b2599716`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a381b2599716) -
1150
+ ED-21371 Update adf-schema to 35.1.0
1151
+ - Updated dependencies
820
1152
 
821
1153
  ## 5.5.5
822
1154
 
823
1155
  ### Patch Changes
824
1156
 
825
- - [#59951](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59951) [`a42a17e8af1b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a42a17e8af1b) - ED-21106: Remove nonPrivacySafeAttributes from editor operational events
826
- - [#59453](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59453) [`e23de3e96559`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e23de3e96559) - Fix drop table row/column next to merged cells
1157
+ - [#59951](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59951)
1158
+ [`a42a17e8af1b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a42a17e8af1b) -
1159
+ ED-21106: Remove nonPrivacySafeAttributes from editor operational events
1160
+ - [#59453](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59453)
1161
+ [`e23de3e96559`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e23de3e96559) -
1162
+ Fix drop table row/column next to merged cells
827
1163
 
828
1164
  ## 5.5.4
829
1165
 
830
1166
  ### Patch Changes
831
1167
 
832
- - [#60278](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60278) [`bc2785a02329`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bc2785a02329) - Selection of multiple rows / column should remain when clicking the drag handle
833
- - [#60323](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60323) [`e0c900d97140`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e0c900d97140) - Fix undo of drag and drop using keyboard
1168
+ - [#60278](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60278)
1169
+ [`bc2785a02329`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bc2785a02329) -
1170
+ Selection of multiple rows / column should remain when clicking the drag handle
1171
+ - [#60323](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60323)
1172
+ [`e0c900d97140`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e0c900d97140) -
1173
+ Fix undo of drag and drop using keyboard
834
1174
 
835
1175
  ## 5.5.3
836
1176
 
837
1177
  ### Patch Changes
838
1178
 
839
- - [#59569](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59569) [`dffa156814cd`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/dffa156814cd) - [ux] re-implement feature with fixed handle when drag menu off and fix issue when numbered column enabled.
840
- - [#60153](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60153) [`5764d44cc93b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5764d44cc93b) - Cleaned references for feature flag: platform.editor.table.overflow-state-analytics
1179
+ - [#59569](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59569)
1180
+ [`dffa156814cd`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/dffa156814cd) -
1181
+ [ux] re-implement feature with fixed handle when drag menu off and fix issue when numbered
1182
+ column enabled.
1183
+ - [#60153](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60153)
1184
+ [`5764d44cc93b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5764d44cc93b) -
1185
+ Cleaned references for feature flag: platform.editor.table.overflow-state-analytics
841
1186
 
842
1187
  ## 5.5.2
843
1188
 
844
1189
  ### Patch Changes
845
1190
 
846
- - [#60256](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60256) [`e5e06beb51e1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e5e06beb51e1) - Fixed a regression in the drag handles where they would reset to the previous position after the user drops a row from the top to bottom of the table.
1191
+ - [#60256](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/60256)
1192
+ [`e5e06beb51e1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/e5e06beb51e1) -
1193
+ Fixed a regression in the drag handles where they would reset to the previous position after the
1194
+ user drops a row from the top to bottom of the table.
847
1195
 
848
1196
  ## 5.5.1
849
1197
 
850
1198
  ### Patch Changes
851
1199
 
852
- - [#59829](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59829) [`3120b36a9f2c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3120b36a9f2c) - Converted spacing values to the corresponding space tokens
1200
+ - [#59829](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59829)
1201
+ [`3120b36a9f2c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3120b36a9f2c) -
1202
+ Converted spacing values to the corresponding space tokens
853
1203
 
854
1204
  ## 5.5.0
855
1205
 
856
1206
  ### Minor Changes
857
1207
 
858
- - [#56823](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/56823) [`d2fbdf3b6822`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d2fbdf3b6822) - [ux] ECA11Y-111: Keyboard accessibility of table resizer
1208
+ - [#56823](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/56823)
1209
+ [`d2fbdf3b6822`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d2fbdf3b6822) -
1210
+ [ux] ECA11Y-111: Keyboard accessibility of table resizer
859
1211
 
860
1212
  ## 5.4.25
861
1213
 
862
1214
  ### Patch Changes
863
1215
 
864
- - [#58565](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58565) [`1f112c9375db`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1f112c9375db) - replace table sticky scrollbar platform feature flag with an editorFeatureFlag
1216
+ - [#58565](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58565)
1217
+ [`1f112c9375db`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/1f112c9375db) -
1218
+ replace table sticky scrollbar platform feature flag with an editorFeatureFlag
865
1219
 
866
1220
  ## 5.4.24
867
1221
 
868
1222
  ### Patch Changes
869
1223
 
870
- - Updated dependencies
1224
+ - Updated dependencies
871
1225
 
872
1226
  ## 5.4.23
873
1227
 
874
1228
  ### Patch Changes
875
1229
 
876
- - [#59370](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59370) [`eb7463620368`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/eb7463620368) - [ux] ED-21355:When table drag and drop enable not show cell options on table toolbar.
1230
+ - [#59370](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59370)
1231
+ [`eb7463620368`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/eb7463620368) -
1232
+ [ux] ED-21355:When table drag and drop enable not show cell options on table toolbar.
877
1233
 
878
1234
  ## 5.4.22
879
1235
 
880
1236
  ### Patch Changes
881
1237
 
882
- - Updated dependencies
1238
+ - Updated dependencies
883
1239
 
884
1240
  ## 5.4.21
885
1241
 
886
1242
  ### Patch Changes
887
1243
 
888
- - [#59392](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59392) [`d0da8be30b97`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d0da8be30b97) - Reduce width of drag handle to ensure it doesn't overlap editable space
1244
+ - [#59392](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59392)
1245
+ [`d0da8be30b97`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d0da8be30b97) -
1246
+ Reduce width of drag handle to ensure it doesn't overlap editable space
889
1247
 
890
1248
  ## 5.4.20
891
1249
 
892
1250
  ### Patch Changes
893
1251
 
894
- - [#59135](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59135) [`0f0de3fcf207`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0f0de3fcf207) - Drag and drop inside tables will now be disabled if the table nodeSize exceeds 20000
1252
+ - [#59135](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59135)
1253
+ [`0f0de3fcf207`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0f0de3fcf207) -
1254
+ Drag and drop inside tables will now be disabled if the table nodeSize exceeds 20000
895
1255
 
896
1256
  ## 5.4.19
897
1257
 
898
1258
  ### Patch Changes
899
1259
 
900
- - [#59403](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59403) [`4edf50cbdc01`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4edf50cbdc01) - Fixed DnD preview bug which was impacting safari when the preview snapshot was taken, other html elements below the preview zone would be included.
1260
+ - [#59403](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59403)
1261
+ [`4edf50cbdc01`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4edf50cbdc01) -
1262
+ Fixed DnD preview bug which was impacting safari when the preview snapshot was taken, other html
1263
+ elements below the preview zone would be included.
901
1264
 
902
1265
  ## 5.4.18
903
1266
 
904
1267
  ### Patch Changes
905
1268
 
906
- - [#59374](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59374) [`7c5ff172f275`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7c5ff172f275) - Fix firefox issue with dragging when child element has pointer elements blocked
907
- - [#59400](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59400) [`92bff40b42a1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/92bff40b42a1) - revert changes to make drag handle visible when menu is open
1269
+ - [#59374](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59374)
1270
+ [`7c5ff172f275`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/7c5ff172f275) -
1271
+ Fix firefox issue with dragging when child element has pointer elements blocked
1272
+ - [#59400](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59400)
1273
+ [`92bff40b42a1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/92bff40b42a1) -
1274
+ revert changes to make drag handle visible when menu is open
908
1275
 
909
1276
  ## 5.4.17
910
1277
 
911
1278
  ### Patch Changes
912
1279
 
913
- - [#59009](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59009) [`f7e9d874ff37`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f7e9d874ff37) - Fix table expand selection when `platform.editor.table-shift-click-selection-backward` FF is enabled
914
- - [#58768](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58768) [`a300aa54a8e9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a300aa54a8e9) - [ux] Fixes resize handle state when column is in danger
1280
+ - [#59009](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59009)
1281
+ [`f7e9d874ff37`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f7e9d874ff37) -
1282
+ Fix table expand selection when `platform.editor.table-shift-click-selection-backward` FF is
1283
+ enabled
1284
+ - [#58768](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58768)
1285
+ [`a300aa54a8e9`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a300aa54a8e9) -
1286
+ [ux] Fixes resize handle state when column is in danger
915
1287
 
916
1288
  ## 5.4.16
917
1289
 
918
1290
  ### Patch Changes
919
1291
 
920
- - [#58843](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58843) [`630177f9bf2e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/630177f9bf2e) - [ux] add selected handle and also keep hover handle
1292
+ - [#58843](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58843)
1293
+ [`630177f9bf2e`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/630177f9bf2e) -
1294
+ [ux] add selected handle and also keep hover handle
921
1295
 
922
1296
  ## 5.4.15
923
1297
 
924
1298
  ### Patch Changes
925
1299
 
926
- - [#59147](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59147) [`f12e489f23b0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f12e489f23b0) - Re-build and deploy packages to NPM to resolve React/Compiled not found error (HOT-106483).
927
- - [#59075](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59075) [`f149e1b3253c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f149e1b3253c) - Fixed the apperance of a globe icon which occurs when dragging a column which generates a preview with 0px area. The preview width and height are now calculate when needed, rather then using the cached hovered cell value.
928
- - [#58846](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58846) [`99f05f5ee5b5`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/99f05f5ee5b5) - normalise cell positions as table maps are offsets for rowOrColumMoved event
929
- - [#58451](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58451) [`174737fc3054`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/174737fc3054) - The table drag handles will now correctly display after dropping a row/column when previously the handle would disappear
930
- - Updated dependencies
1300
+ - [#59147](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59147)
1301
+ [`f12e489f23b0`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f12e489f23b0) -
1302
+ Re-build and deploy packages to NPM to resolve React/Compiled not found error (HOT-106483).
1303
+ - [#59075](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/59075)
1304
+ [`f149e1b3253c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f149e1b3253c) -
1305
+ Fixed the apperance of a globe icon which occurs when dragging a column which generates a
1306
+ preview with 0px area. The preview width and height are now calculate when needed, rather then
1307
+ using the cached hovered cell value.
1308
+ - [#58846](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58846)
1309
+ [`99f05f5ee5b5`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/99f05f5ee5b5) -
1310
+ normalise cell positions as table maps are offsets for rowOrColumMoved event
1311
+ - [#58451](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58451)
1312
+ [`174737fc3054`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/174737fc3054) -
1313
+ The table drag handles will now correctly display after dropping a row/column when previously
1314
+ the handle would disappear
1315
+ - Updated dependencies
931
1316
 
932
1317
  ## 5.4.14
933
1318
 
934
1319
  ### Patch Changes
935
1320
 
936
- - [#58816](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58816) [`ce6fd55ca7ec`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ce6fd55ca7ec) - Disable pointer events for SVG file in drag handle which fixes an issue where the selection would move outside of table
1321
+ - [#58816](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58816)
1322
+ [`ce6fd55ca7ec`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ce6fd55ca7ec) -
1323
+ Disable pointer events for SVG file in drag handle which fixes an issue where the selection
1324
+ would move outside of table
937
1325
 
938
1326
  ## 5.4.13
939
1327
 
940
1328
  ### Patch Changes
941
1329
 
942
- - [#58379](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58379) [`985c068738e8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/985c068738e8) - [ux] Add a util to convert cell index into actula colIndex to fix column drag handle position.
943
- - Updated dependencies
1330
+ - [#58379](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58379)
1331
+ [`985c068738e8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/985c068738e8) -
1332
+ [ux] Add a util to convert cell index into actula colIndex to fix column drag handle position.
1333
+ - Updated dependencies
944
1334
 
945
1335
  ## 5.4.12
946
1336
 
947
1337
  ### Patch Changes
948
1338
 
949
- - [#58717](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58717) [`d65ee171dc89`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d65ee171dc89) - Return focus to editor when a mouse up event on drag handle is called - this allows copying of table selection to still work
950
- - [#58763](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58763) [`0fdbd64522bf`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0fdbd64522bf) - update ADF schema
951
- - Updated dependencies
1339
+ - [#58717](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58717)
1340
+ [`d65ee171dc89`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/d65ee171dc89) -
1341
+ Return focus to editor when a mouse up event on drag handle is called - this allows copying of
1342
+ table selection to still work
1343
+ - [#58763](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58763)
1344
+ [`0fdbd64522bf`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0fdbd64522bf) -
1345
+ update ADF schema
1346
+ - Updated dependencies
952
1347
 
953
1348
  ## 5.4.11
954
1349
 
955
1350
  ### Patch Changes
956
1351
 
957
- - [#58433](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58433) [`4d8e164d7760`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4d8e164d7760) - fix shift + click to expand column / row selection bug when `platform.editor.table.drag-and-drop` is enabled
1352
+ - [#58433](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58433)
1353
+ [`4d8e164d7760`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4d8e164d7760) -
1354
+ fix shift + click to expand column / row selection bug when
1355
+ `platform.editor.table.drag-and-drop` is enabled
958
1356
 
959
1357
  ## 5.4.10
960
1358
 
961
1359
  ### Patch Changes
962
1360
 
963
- - [#58174](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58174) [`b409282ab2b8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b409282ab2b8) - Check pasted slice is a table element before trying to access table map
1361
+ - [#58174](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58174)
1362
+ [`b409282ab2b8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b409282ab2b8) -
1363
+ Check pasted slice is a table element before trying to access table map
964
1364
 
965
1365
  ## 5.4.9
966
1366
 
967
1367
  ### Patch Changes
968
1368
 
969
- - [#58068](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58068) [`3f88811fe28a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3f88811fe28a) - Disable move commands in floating menu when there are merged cells
1369
+ - [#58068](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58068)
1370
+ [`3f88811fe28a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3f88811fe28a) -
1371
+ Disable move commands in floating menu when there are merged cells
970
1372
 
971
1373
  ## 5.4.8
972
1374
 
973
1375
  ### Patch Changes
974
1376
 
975
- - [#57815](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/57815) [`5cd97624a19d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5cd97624a19d) - Replace getBooleanFF calls inside stylesheets and replace with isDragAndDrop table option - fixes column controls not rendering in comments
1377
+ - [#57815](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/57815)
1378
+ [`5cd97624a19d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5cd97624a19d) -
1379
+ Replace getBooleanFF calls inside stylesheets and replace with isDragAndDrop table option -
1380
+ fixes column controls not rendering in comments
976
1381
 
977
1382
  ## 5.4.7
978
1383
 
979
1384
  ### Patch Changes
980
1385
 
981
- - [#56725](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/56725) [`4401801c484b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4401801c484b) - Add new rowOrColumnMoved event to table plugin, behind a feature flag
1386
+ - [#56725](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/56725)
1387
+ [`4401801c484b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4401801c484b) -
1388
+ Add new rowOrColumnMoved event to table plugin, behind a feature flag
982
1389
 
983
1390
  ## 5.4.6
984
1391
 
985
1392
  ### Patch Changes
986
1393
 
987
- - Updated dependencies
1394
+ - Updated dependencies
988
1395
 
989
1396
  ## 5.4.5
990
1397
 
991
1398
  ### Patch Changes
992
1399
 
993
- - [#56956](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/56956) [`5fc2be1d6859`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5fc2be1d6859) - fix hover to other column and rows handle icon not show minimised when drag menu open
994
- - [#56619](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/56619) [`12b429f6bd9b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/12b429f6bd9b) - remove blue border highlight in table when hover over row and column handle in drag and drop FF on
1400
+ - [#56956](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/56956)
1401
+ [`5fc2be1d6859`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5fc2be1d6859) - fix
1402
+ hover to other column and rows handle icon not show minimised when drag menu open
1403
+ - [#56619](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/56619)
1404
+ [`12b429f6bd9b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/12b429f6bd9b) -
1405
+ remove blue border highlight in table when hover over row and column handle in drag and drop FF
1406
+ on
995
1407
 
996
1408
  ## 5.4.4
997
1409
 
998
1410
  ### Patch Changes
999
1411
 
1000
- - [#56790](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/56790) [`ff577a7969d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ff577a7969d4) - ED-21266: Updated @atlaskit/adf-schema to 34.0.1
1001
- - Updated dependencies
1412
+ - [#56790](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/56790)
1413
+ [`ff577a7969d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ff577a7969d4) -
1414
+ ED-21266: Updated @atlaskit/adf-schema to 34.0.1
1415
+ - Updated dependencies
1002
1416
 
1003
1417
  ## 5.4.3
1004
1418
 
1005
1419
  ### Patch Changes
1006
1420
 
1007
- - [#43839](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43839) [`55860bbc9f5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/55860bbc9f5) - ED-20974:Fixed the cursor not easy to move to before table when drag handle is visible.
1421
+ - [#43839](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43839)
1422
+ [`55860bbc9f5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/55860bbc9f5) -
1423
+ ED-20974:Fixed the cursor not easy to move to before table when drag handle is visible.
1008
1424
 
1009
1425
  ## 5.4.2
1010
1426
 
1011
1427
  ### Patch Changes
1012
1428
 
1013
- - [#43514](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43514) [`a420cd85815`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a420cd85815) - add minimised handle and add drag handle icon
1014
- - [#43838](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43838) [`b0a7c5c4669`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b0a7c5c4669) - [ux] Adds a mousemove handle to ensure that a column drag handle is shown when we hover over cells in the first row.
1429
+ - [#43514](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43514)
1430
+ [`a420cd85815`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a420cd85815) - add
1431
+ minimised handle and add drag handle icon
1432
+ - [#43838](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43838)
1433
+ [`b0a7c5c4669`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b0a7c5c4669) - [ux]
1434
+ Adds a mousemove handle to ensure that a column drag handle is shown when we hover over cells in
1435
+ the first row.
1015
1436
 
1016
1437
  ## 5.4.1
1017
1438
 
1018
1439
  ### Patch Changes
1019
1440
 
1020
- - [#43829](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43829) [`40e78202328`](https://bitbucket.org/atlassian/atlassian-frontend/commits/40e78202328) - The table autoscroller has been updated to fix a bug which occured when rows were dragged to the bottom of the table, it would jump up.
1441
+ - [#43829](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43829)
1442
+ [`40e78202328`](https://bitbucket.org/atlassian/atlassian-frontend/commits/40e78202328) - The
1443
+ table autoscroller has been updated to fix a bug which occured when rows were dragged to the
1444
+ bottom of the table, it would jump up.
1021
1445
 
1022
1446
  ## 5.4.0
1023
1447
 
1024
1448
  ### Minor Changes
1025
1449
 
1026
- - [#43732](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43732) [`d6f43e8a9d1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d6f43e8a9d1) - Added alternative sticky header logic which is much simplier and can be toggled using platform.editor.table.alternative-sticky-header-logic
1450
+ - [#43732](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43732)
1451
+ [`d6f43e8a9d1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d6f43e8a9d1) - Added
1452
+ alternative sticky header logic which is much simplier and can be toggled using
1453
+ platform.editor.table.alternative-sticky-header-logic
1027
1454
 
1028
1455
  ### Patch Changes
1029
1456
 
1030
- - [#43802](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43802) [`e5c615c29fd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e5c615c29fd) - Changed the row drop targets to be sticky to avoid insertion line flashing
1031
- - [#43582](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43582) [`ac1084d92a6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac1084d92a6) - [ux] ED-20911: Updated the styles for corner table select button.
1032
- - Updated dependencies
1457
+ - [#43802](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43802)
1458
+ [`e5c615c29fd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e5c615c29fd) -
1459
+ Changed the row drop targets to be sticky to avoid insertion line flashing
1460
+ - [#43582](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43582)
1461
+ [`ac1084d92a6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac1084d92a6) - [ux]
1462
+ ED-20911: Updated the styles for corner table select button.
1463
+ - Updated dependencies
1033
1464
 
1034
1465
  ## 5.3.39
1035
1466
 
1036
1467
  ### Patch Changes
1037
1468
 
1038
- - [#43553](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43553) [`827197275fc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/827197275fc) - [ux] Fixes position of table overflow shadows when drag and drop enabled.
1469
+ - [#43553](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43553)
1470
+ [`827197275fc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/827197275fc) - [ux]
1471
+ Fixes position of table overflow shadows when drag and drop enabled.
1039
1472
 
1040
1473
  ## 5.3.38
1041
1474
 
1042
1475
  ### Patch Changes
1043
1476
 
1044
- - [#43646](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43646) [`d43f8e9402f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d43f8e9402f) - Make feature flags plugin optional in all plugins including:
1477
+ - [#43646](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43646)
1478
+ [`d43f8e9402f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d43f8e9402f) - Make
1479
+ feature flags plugin optional in all plugins including:
1045
1480
 
1046
- - analytics
1047
- - base
1048
- - card
1049
- - code-block
1050
- - expand
1051
- - extension
1052
- - floating-toolbar
1053
- - hyperlink
1054
- - insert-block
1055
- - layout
1056
- - layout
1057
- - list
1058
- - media
1059
- - paste
1060
- - rule
1061
- - table
1062
- - tasks-and-decisions
1481
+ - analytics
1482
+ - base
1483
+ - card
1484
+ - code-block
1485
+ - expand
1486
+ - extension
1487
+ - floating-toolbar
1488
+ - hyperlink
1489
+ - insert-block
1490
+ - layout
1491
+ - layout
1492
+ - list
1493
+ - media
1494
+ - paste
1495
+ - rule
1496
+ - table
1497
+ - tasks-and-decisions
1063
1498
 
1064
- We already treat it as optional in the plugins, so this is just ensuring that the plugin is not mandatory to be added to the preset.
1499
+ We already treat it as optional in the plugins, so this is just ensuring that the plugin is not
1500
+ mandatory to be added to the preset.
1065
1501
 
1066
- - Updated dependencies
1502
+ - Updated dependencies
1067
1503
 
1068
1504
  ## 5.3.37
1069
1505
 
1070
1506
  ### Patch Changes
1071
1507
 
1072
- - [#42221](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42221) [`7fd1f8bb312`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7fd1f8bb312) - revert pr 42221
1073
- - [#43417](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43417) [`3f3c17f0273`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3f3c17f0273) - ED-20971 Upgrade adf-schema package to ^34.0.0
1074
- - Updated dependencies
1508
+ - [#42221](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42221)
1509
+ [`7fd1f8bb312`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7fd1f8bb312) - revert
1510
+ pr 42221
1511
+ - [#43417](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43417)
1512
+ [`3f3c17f0273`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3f3c17f0273) -
1513
+ ED-20971 Upgrade adf-schema package to ^34.0.0
1514
+ - Updated dependencies
1075
1515
 
1076
1516
  ## 5.3.36
1077
1517
 
1078
1518
  ### Patch Changes
1079
1519
 
1080
- - [#42221](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42221) [`1f49a73a590`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f49a73a590) - [ux] [ECA11Y-110] Selecting table columns, rows, whole table via shortcuts
1520
+ - [#42221](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42221)
1521
+ [`1f49a73a590`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f49a73a590) - [ux]
1522
+ [ECA11Y-110] Selecting table columns, rows, whole table via shortcuts
1081
1523
 
1082
1524
  ## 5.3.35
1083
1525
 
1084
1526
  ### Patch Changes
1085
1527
 
1086
- - [#43255](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43255) [`404fa3bc44e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/404fa3bc44e) - Add requestAnimationFrame around move row/column command to fix an issue where selection would be lost
1087
- - Updated dependencies
1528
+ - [#43255](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43255)
1529
+ [`404fa3bc44e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/404fa3bc44e) - Add
1530
+ requestAnimationFrame around move row/column command to fix an issue where selection would be
1531
+ lost
1532
+ - Updated dependencies
1088
1533
 
1089
1534
  ## 5.3.34
1090
1535
 
1091
1536
  ### Patch Changes
1092
1537
 
1093
- - [#43176](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43176) [`08ef3d55edb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/08ef3d55edb) - [ux] Increases size of insert row/column button for drag and drop
1538
+ - [#43176](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43176)
1539
+ [`08ef3d55edb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/08ef3d55edb) - [ux]
1540
+ Increases size of insert row/column button for drag and drop
1094
1541
 
1095
1542
  ## 5.3.33
1096
1543
 
1097
1544
  ### Patch Changes
1098
1545
 
1099
- - Updated dependencies
1546
+ - Updated dependencies
1100
1547
 
1101
1548
  ## 5.3.32
1102
1549
 
1103
1550
  ### Patch Changes
1104
1551
 
1105
- - [#43379](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43379) [`482c025520d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/482c025520d) - ED-20763 Upgrade ADF schema version to 33.2.3 for MBE nodes.
1106
- - Updated dependencies
1552
+ - [#43379](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43379)
1553
+ [`482c025520d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/482c025520d) -
1554
+ ED-20763 Upgrade ADF schema version to 33.2.3 for MBE nodes.
1555
+ - Updated dependencies
1107
1556
 
1108
1557
  ## 5.3.31
1109
1558
 
1110
1559
  ### Patch Changes
1111
1560
 
1112
- - [#43131](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43131) [`31f8285fa54`](https://bitbucket.org/atlassian/atlassian-frontend/commits/31f8285fa54) - Fix hover other table in same page will also update cell position issue in selected table.
1561
+ - [#43131](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43131)
1562
+ [`31f8285fa54`](https://bitbucket.org/atlassian/atlassian-frontend/commits/31f8285fa54) - Fix
1563
+ hover other table in same page will also update cell position issue in selected table.
1113
1564
 
1114
1565
  ## 5.3.30
1115
1566
 
1116
1567
  ### Patch Changes
1117
1568
 
1118
- - [#42908](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42908) [`f1df173bd21`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f1df173bd21) - Add new drop targets to table node, add new pragmatic drag and drop autoscroller
1569
+ - [#42908](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42908)
1570
+ [`f1df173bd21`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f1df173bd21) - Add
1571
+ new drop targets to table node, add new pragmatic drag and drop autoscroller
1119
1572
 
1120
1573
  ## 5.3.29
1121
1574
 
1122
1575
  ### Patch Changes
1123
1576
 
1124
- - Updated dependencies
1577
+ - Updated dependencies
1125
1578
 
1126
1579
  ## 5.3.28
1127
1580
 
1128
1581
  ### Patch Changes
1129
1582
 
1130
- - [#43155](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43155) [`9c7cabf1b12`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9c7cabf1b12) - ED-20671:Fixed drag handle not visible when drag menu is open
1583
+ - [#43155](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43155)
1584
+ [`9c7cabf1b12`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9c7cabf1b12) -
1585
+ ED-20671:Fixed drag handle not visible when drag menu is open
1131
1586
 
1132
1587
  ## 5.3.27
1133
1588
 
1134
1589
  ### Patch Changes
1135
1590
 
1136
- - [#42960](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42960) [`93a67d55fd9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/93a67d55fd9) - disable drag and drop handler when has merged cell in current column or row
1137
- - Updated dependencies
1591
+ - [#42960](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42960)
1592
+ [`93a67d55fd9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/93a67d55fd9) -
1593
+ disable drag and drop handler when has merged cell in current column or row
1594
+ - Updated dependencies
1138
1595
 
1139
1596
  ## 5.3.26
1140
1597
 
1141
1598
  ### Patch Changes
1142
1599
 
1143
- - [#42815](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42815) [`7fac5fb48e7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7fac5fb48e7) - ED-20673: Fixed drag menu is not open when clicking on different drag handles consecutively.
1144
- - Updated dependencies
1600
+ - [#42815](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42815)
1601
+ [`7fac5fb48e7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7fac5fb48e7) -
1602
+ ED-20673: Fixed drag menu is not open when clicking on different drag handles consecutively.
1603
+ - Updated dependencies
1145
1604
 
1146
1605
  ## 5.3.25
1147
1606
 
1148
1607
  ### Patch Changes
1149
1608
 
1150
- - [#42925](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42925) [`8ea16423505`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8ea16423505) - Removes FF platform.editor.update-table-cell-width-via-step
1609
+ - [#42925](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42925)
1610
+ [`8ea16423505`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8ea16423505) -
1611
+ Removes FF platform.editor.update-table-cell-width-via-step
1151
1612
 
1152
1613
  ## 5.3.24
1153
1614
 
1154
1615
  ### Patch Changes
1155
1616
 
1156
- - Updated dependencies
1617
+ - Updated dependencies
1157
1618
 
1158
1619
  ## 5.3.23
1159
1620
 
1160
1621
  ### Patch Changes
1161
1622
 
1162
- - [#42746](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42746) [`ea352517252`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ea352517252) - Update editor dropdown menu component to support section behind platform.editor.menu.group-items FF
1623
+ - [#42746](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42746)
1624
+ [`ea352517252`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ea352517252) - Update
1625
+ editor dropdown menu component to support section behind platform.editor.menu.group-items FF
1163
1626
 
1164
1627
  ## 5.3.22
1165
1628
 
1166
1629
  ### Patch Changes
1167
1630
 
1168
- - [#42762](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42762) [`424cc9c0c25`](https://bitbucket.org/atlassian/atlassian-frontend/commits/424cc9c0c25) - [ED-20613] Removing duplicate webdriver tests that already have migrated tests to Libra
1631
+ - [#42762](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42762)
1632
+ [`424cc9c0c25`](https://bitbucket.org/atlassian/atlassian-frontend/commits/424cc9c0c25) -
1633
+ [ED-20613] Removing duplicate webdriver tests that already have migrated tests to Libra
1169
1634
 
1170
1635
  ## 5.3.21
1171
1636
 
1172
1637
  ### Patch Changes
1173
1638
 
1174
- - [#42754](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42754) [`3e156c0e632`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3e156c0e632) - move guideline/selection/width editor plugin packages from devDependencies to depenedencies
1639
+ - [#42754](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42754)
1640
+ [`3e156c0e632`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3e156c0e632) - move
1641
+ guideline/selection/width editor plugin packages from devDependencies to depenedencies
1175
1642
 
1176
1643
  ## 5.3.20
1177
1644
 
1178
1645
  ### Patch Changes
1179
1646
 
1180
- - Updated dependencies
1647
+ - Updated dependencies
1181
1648
 
1182
1649
  ## 5.3.19
1183
1650
 
1184
1651
  ### Patch Changes
1185
1652
 
1186
- - Updated dependencies
1653
+ - Updated dependencies
1187
1654
 
1188
1655
  ## 5.3.18
1189
1656
 
1190
1657
  ### Patch Changes
1191
1658
 
1192
- - [#42287](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42287) [`02bc2130172`](https://bitbucket.org/atlassian/atlassian-frontend/commits/02bc2130172) - [ux] Moves intl messages from edito-plugin-table to editor-common to fix table plugin translations
1659
+ - [#42287](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42287)
1660
+ [`02bc2130172`](https://bitbucket.org/atlassian/atlassian-frontend/commits/02bc2130172) - [ux]
1661
+ Moves intl messages from edito-plugin-table to editor-common to fix table plugin translations
1193
1662
 
1194
1663
  ## 5.3.17
1195
1664
 
1196
1665
  ### Patch Changes
1197
1666
 
1198
- - Updated dependencies
1667
+ - Updated dependencies
1199
1668
 
1200
1669
  ## 5.3.16
1201
1670
 
1202
1671
  ### Patch Changes
1203
1672
 
1204
- - [#42211](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42211) [`feef33e6e7e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/feef33e6e7e) - Add new corner button for tables to support drag and drop
1205
- - [#42213](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42213) [`1daf5ff634c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1daf5ff634c) - Fixed and issue where a drag could occur with the menu open. When a drag starts if a menu is open then it wil be closed.
1206
- - Updated dependencies
1673
+ - [#42211](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42211)
1674
+ [`feef33e6e7e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/feef33e6e7e) - Add
1675
+ new corner button for tables to support drag and drop
1676
+ - [#42213](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42213)
1677
+ [`1daf5ff634c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1daf5ff634c) - Fixed
1678
+ and issue where a drag could occur with the menu open. When a drag starts if a menu is open then
1679
+ it wil be closed.
1680
+ - Updated dependencies
1207
1681
 
1208
1682
  ## 5.3.15
1209
1683
 
1210
1684
  ### Patch Changes
1211
1685
 
1212
- - [#42203](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42203) [`7eb9439a045`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7eb9439a045) - Implement drag menu options
1686
+ - [#42203](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42203)
1687
+ [`7eb9439a045`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7eb9439a045) -
1688
+ Implement drag menu options
1213
1689
 
1214
1690
  ## 5.3.14
1215
1691
 
1216
1692
  ### Patch Changes
1217
1693
 
1218
- - [#42038](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42038) [`071533736a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/071533736a8) - Fixed an bug in the tables where the onBlur was causing the editor has focus flag to be reset to false. This would result in the drag handle disappearing due to the table not being active anymore.
1219
- - [#42188](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42188) [`5b8b565940b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5b8b565940b) - Killed the outline for the drag handle button which appears only in firfox when the button has focus
1220
- - [#42186](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42186) [`20b5f464a2b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/20b5f464a2b) - [ux] Integrate drag menu with column control
1221
- - [#42148](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42148) [`fb0c3a2c035`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fb0c3a2c035) - Add row and column select functionality for table drag controls
1222
- - [#42182](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42182) [`1053f5745d3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1053f5745d3) - Added autoscroller functionality to the table DnD plugin. When dragging rows/cols the table will auto scroll into view when the drag approaches the borders of the table
1694
+ - [#42038](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42038)
1695
+ [`071533736a8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/071533736a8) - Fixed
1696
+ an bug in the tables where the onBlur was causing the editor has focus flag to be reset to
1697
+ false. This would result in the drag handle disappearing due to the table not being active
1698
+ anymore.
1699
+ - [#42188](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42188)
1700
+ [`5b8b565940b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5b8b565940b) - Killed
1701
+ the outline for the drag handle button which appears only in firfox when the button has focus
1702
+ - [#42186](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42186)
1703
+ [`20b5f464a2b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/20b5f464a2b) - [ux]
1704
+ Integrate drag menu with column control
1705
+ - [#42148](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42148)
1706
+ [`fb0c3a2c035`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fb0c3a2c035) - Add
1707
+ row and column select functionality for table drag controls
1708
+ - [#42182](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42182)
1709
+ [`1053f5745d3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1053f5745d3) - Added
1710
+ autoscroller functionality to the table DnD plugin. When dragging rows/cols the table will auto
1711
+ scroll into view when the drag approaches the borders of the table
1223
1712
 
1224
1713
  ## 5.3.13
1225
1714
 
1226
1715
  ### Patch Changes
1227
1716
 
1228
- - [#41846](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41846) [`7fe6ab0832b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7fe6ab0832b) - [ux] Add utility function to create drag menu content and integrate with row control behind platform.editor.table.drag-and-drop FF
1229
- - [#42137](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42137) [`88058fc0fcb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/88058fc0fcb) - ED-20197 moved editor preset and other prod code out of labs
1230
- - Updated dependencies
1717
+ - [#41846](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41846)
1718
+ [`7fe6ab0832b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7fe6ab0832b) - [ux]
1719
+ Add utility function to create drag menu content and integrate with row control behind
1720
+ platform.editor.table.drag-and-drop FF
1721
+ - [#42137](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42137)
1722
+ [`88058fc0fcb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/88058fc0fcb) -
1723
+ ED-20197 moved editor preset and other prod code out of labs
1724
+ - Updated dependencies
1231
1725
 
1232
1726
  ## 5.3.12
1233
1727
 
1234
1728
  ### Patch Changes
1235
1729
 
1236
- - [#42109](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42109) [`d25ae495fed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d25ae495fed) - [ux] Adds a fix to keep selection on a dropped row or column.
1730
+ - [#42109](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42109)
1731
+ [`d25ae495fed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d25ae495fed) - [ux]
1732
+ Adds a fix to keep selection on a dropped row or column.
1237
1733
 
1238
1734
  ## 5.3.11
1239
1735
 
1240
1736
  ### Patch Changes
1241
1737
 
1242
- - [#41823](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41823) [`60dab8657e1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/60dab8657e1) - Add row and column select functionality for table drag controls
1738
+ - [#41823](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41823)
1739
+ [`60dab8657e1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/60dab8657e1) - Add
1740
+ row and column select functionality for table drag controls
1243
1741
 
1244
1742
  ## 5.3.10
1245
1743
 
1246
1744
  ### Patch Changes
1247
1745
 
1248
- - [#42000](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42000) [`62e03b45cf6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/62e03b45cf6) - Updated the column drag handle to display the drag preview correctly
1746
+ - [#42000](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/42000)
1747
+ [`62e03b45cf6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/62e03b45cf6) -
1748
+ Updated the column drag handle to display the drag preview correctly
1249
1749
 
1250
1750
  ## 5.3.9
1251
1751
 
1252
1752
  ### Patch Changes
1253
1753
 
1254
- - [#41924](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41924) [`71cb328c202`](https://bitbucket.org/atlassian/atlassian-frontend/commits/71cb328c202) - Fixed the column controls drag and drop targets. The monitor was not responding to the targets due to there layering and pointer value. The targets are now added/removed on demand when the user starts/stop dragging
1754
+ - [#41924](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41924)
1755
+ [`71cb328c202`](https://bitbucket.org/atlassian/atlassian-frontend/commits/71cb328c202) - Fixed
1756
+ the column controls drag and drop targets. The monitor was not responding to the targets due to
1757
+ there layering and pointer value. The targets are now added/removed on demand when the user
1758
+ starts/stop dragging
1255
1759
 
1256
1760
  ## 5.3.8
1257
1761
 
1258
1762
  ### Patch Changes
1259
1763
 
1260
- - [#41909](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41909) [`b122e4659bc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b122e4659bc) - Use floating column control buttons insetead of column controls implemented as decorations
1764
+ - [#41909](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41909)
1765
+ [`b122e4659bc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b122e4659bc) - Use
1766
+ floating column control buttons insetead of column controls implemented as decorations
1261
1767
 
1262
1768
  ## 5.3.7
1263
1769
 
1264
1770
  ### Patch Changes
1265
1771
 
1266
- - [#41918](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41918) [`a82ee707d1d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a82ee707d1d) - [ux] ED-20495: Added table row drag preview
1772
+ - [#41918](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41918)
1773
+ [`a82ee707d1d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a82ee707d1d) - [ux]
1774
+ ED-20495: Added table row drag preview
1267
1775
 
1268
1776
  ## 5.3.6
1269
1777
 
1270
1778
  ### Patch Changes
1271
1779
 
1272
- - [#41863](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41863) [`fe134b9566c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe134b9566c) - Add a new custom icon for table drag and drop
1780
+ - [#41863](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41863)
1781
+ [`fe134b9566c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe134b9566c) - Add a
1782
+ new custom icon for table drag and drop
1273
1783
 
1274
1784
  ## 5.3.5
1275
1785
 
1276
1786
  ### Patch Changes
1277
1787
 
1278
- - [#41864](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41864) [`34e85d7299e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/34e85d7299e) - The table row nodeview needs to fetch the current live index and id when the canDrop and getData DnD methods are called. This is due to the fact that prosemirror reorders the tr elements efficently which causes the target indexes to be reordered and never updated.
1788
+ - [#41864](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41864)
1789
+ [`34e85d7299e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/34e85d7299e) - The
1790
+ table row nodeview needs to fetch the current live index and id when the canDrop and getData DnD
1791
+ methods are called. This is due to the fact that prosemirror reorders the tr elements efficently
1792
+ which causes the target indexes to be reordered and never updated.
1279
1793
 
1280
1794
  ## 5.3.4
1281
1795
 
1282
1796
  ### Patch Changes
1283
1797
 
1284
- - [#41793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41793) [`7e48d39f900`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e48d39f900) - Connected the Pragmatic DnD monitor to the new drop target insert line decorations
1798
+ - [#41793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41793)
1799
+ [`7e48d39f900`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e48d39f900) -
1800
+ Connected the Pragmatic DnD monitor to the new drop target insert line decorations
1285
1801
 
1286
1802
  ## 5.3.3
1287
1803
 
1288
1804
  ### Patch Changes
1289
1805
 
1290
- - [#41701](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41701) [`168e0da8a1c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/168e0da8a1c) - [ux] ED-20425: Added DragPreview and DragInMotionIcon
1806
+ - [#41701](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41701)
1807
+ [`168e0da8a1c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/168e0da8a1c) - [ux]
1808
+ ED-20425: Added DragPreview and DragInMotionIcon
1291
1809
 
1292
1810
  ## 5.3.2
1293
1811
 
1294
1812
  ### Patch Changes
1295
1813
 
1296
- - [#41446](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41446) [`ff8add18e61`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ff8add18e61) - Add drag handle controls to table behind a feature flag
1814
+ - [#41446](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41446)
1815
+ [`ff8add18e61`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ff8add18e61) - Add
1816
+ drag handle controls to table behind a feature flag
1297
1817
 
1298
1818
  ## 5.3.1
1299
1819
 
1300
1820
  ### Patch Changes
1301
1821
 
1302
- - [#41703](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41703) [`3631a9d9750`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3631a9d9750) - [ux] Added a command to show insert line decoration/ drop target when dragging a table column or a row.
1303
- - [#41640](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41640) [`c387b1bfcdd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c387b1bfcdd) - Added a Pragmatic Drag and Drop montior to the DnD table plugin. This is responsible for triggering the row/column move when a drop operation occurs.
1822
+ - [#41703](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41703)
1823
+ [`3631a9d9750`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3631a9d9750) - [ux]
1824
+ Added a command to show insert line decoration/ drop target when dragging a table column or a
1825
+ row.
1826
+ - [#41640](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41640)
1827
+ [`c387b1bfcdd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c387b1bfcdd) - Added
1828
+ a Pragmatic Drag and Drop montior to the DnD table plugin. This is responsible for triggering
1829
+ the row/column move when a drop operation occurs.
1304
1830
 
1305
1831
  ## 5.3.0
1306
1832
 
1307
1833
  ### Minor Changes
1308
1834
 
1309
- - [#41577](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41577) [`3d9daab8d32`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3d9daab8d32) - [ux] Added a new floating column control region to the table. This region now also contains Pragmatic DnD Drop targets so we can identify where draggable elements are dropped
1835
+ - [#41577](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41577)
1836
+ [`3d9daab8d32`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3d9daab8d32) - [ux]
1837
+ Added a new floating column control region to the table. This region now also contains Pragmatic
1838
+ DnD Drop targets so we can identify where draggable elements are dropped
1310
1839
 
1311
1840
  ## 5.2.2
1312
1841
 
1313
1842
  ### Patch Changes
1314
1843
 
1315
- - [#41510](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41510) [`12e9528f975`](https://bitbucket.org/atlassian/atlassian-frontend/commits/12e9528f975) - [ux] Adds a command for shift+arrowUp when pressed inside table to select the whole table when we reach top row.
1316
- - Updated dependencies
1844
+ - [#41510](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41510)
1845
+ [`12e9528f975`](https://bitbucket.org/atlassian/atlassian-frontend/commits/12e9528f975) - [ux]
1846
+ Adds a command for shift+arrowUp when pressed inside table to select the whole table when we
1847
+ reach top row.
1848
+ - Updated dependencies
1317
1849
 
1318
1850
  ## 5.2.1
1319
1851
 
1320
1852
  ### Patch Changes
1321
1853
 
1322
- - [#41471](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41471) [`94c3351cece`](https://bitbucket.org/atlassian/atlassian-frontend/commits/94c3351cece) - Table row nodeviews will now be set as drop targets when the DnD FF is enabled
1854
+ - [#41471](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41471)
1855
+ [`94c3351cece`](https://bitbucket.org/atlassian/atlassian-frontend/commits/94c3351cece) - Table
1856
+ row nodeviews will now be set as drop targets when the DnD FF is enabled
1323
1857
 
1324
1858
  ## 5.2.0
1325
1859
 
1326
1860
  ### Minor Changes
1327
1861
 
1328
- - [#41423](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41423) [`d0acefc12f6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d0acefc12f6) - The nodeviews are now all located in a single space rather then being spread out amounst other sub-plugins. Only the main pm-plugin should add one nodeview per node.
1862
+ - [#41423](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41423)
1863
+ [`d0acefc12f6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d0acefc12f6) - The
1864
+ nodeviews are now all located in a single space rather then being spread out amounst other
1865
+ sub-plugins. Only the main pm-plugin should add one nodeview per node.
1329
1866
 
1330
1867
  ## 5.1.0
1331
1868
 
1332
1869
  ### Minor Changes
1333
1870
 
1334
- - [#41273](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41273) [`322add4eb2a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/322add4eb2a) - Created table drag N drop plugin
1871
+ - [#41273](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41273)
1872
+ [`322add4eb2a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/322add4eb2a) -
1873
+ Created table drag N drop plugin
1335
1874
 
1336
1875
  ## 5.0.0
1337
1876
 
1338
1877
  ### Major Changes
1339
1878
 
1340
- - [#40750](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40750) [`fc19a7b9edd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fc19a7b9edd) - [ED-19875] Extraction of Editor Core's Selection Plugin into independent package '@atlaskit/editor-plugin-selection'.
1879
+ - [#40750](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40750)
1880
+ [`fc19a7b9edd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fc19a7b9edd) -
1881
+ [ED-19875] Extraction of Editor Core's Selection Plugin into independent package
1882
+ '@atlaskit/editor-plugin-selection'.
1341
1883
 
1342
1884
  ### Patch Changes
1343
1885
 
1344
- - Updated dependencies
1886
+ - Updated dependencies
1345
1887
 
1346
1888
  ## 4.2.1
1347
1889
 
1348
1890
  ### Patch Changes
1349
1891
 
1350
- - [#40795](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40795) [`fec7aa5c761`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fec7aa5c761) - [ux] Fix distribute column resize will not been override when undefined
1892
+ - [#40795](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40795)
1893
+ [`fec7aa5c761`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fec7aa5c761) - [ux]
1894
+ Fix distribute column resize will not been override when undefined
1351
1895
 
1352
1896
  ## 4.2.0
1353
1897
 
1354
1898
  ### Minor Changes
1355
1899
 
1356
- - [#40780](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40780) [`981ad6038e9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/981ad6038e9) - Fixes a bug when deleting a table column will cause column resizing to become unresponsive and lag. Delete columns operation will now update the table column widths to avoid this, under a new feature flag.
1900
+ - [#40780](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40780)
1901
+ [`981ad6038e9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/981ad6038e9) - Fixes
1902
+ a bug when deleting a table column will cause column resizing to become unresponsive and lag.
1903
+ Delete columns operation will now update the table column widths to avoid this, under a new
1904
+ feature flag.
1357
1905
 
1358
1906
  ## 4.1.1
1359
1907
 
1360
1908
  ### Patch Changes
1361
1909
 
1362
- - [#41220](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41220) [`9e66f4b0610`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e66f4b0610) - Add a new feature flag (platform.editor.table.update-table-resizer-styles) that uses display: flex; to center resizable tables in full page editor. This replaces the current method which uses margin to calculate an offset
1363
- - Updated dependencies
1910
+ - [#41220](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41220)
1911
+ [`9e66f4b0610`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e66f4b0610) - Add a
1912
+ new feature flag (platform.editor.table.update-table-resizer-styles) that uses display: flex; to
1913
+ center resizable tables in full page editor. This replaces the current method which uses margin
1914
+ to calculate an offset
1915
+ - Updated dependencies
1364
1916
 
1365
1917
  ## 4.1.0
1366
1918
 
1367
1919
  ### Minor Changes
1368
1920
 
1369
- - [#41224](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41224) [`6818e578fd6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6818e578fd6) - Added new Tables toggle option for enabling Drag and Drop
1921
+ - [#41224](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41224)
1922
+ [`6818e578fd6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6818e578fd6) - Added
1923
+ new Tables toggle option for enabling Drag and Drop
1370
1924
 
1371
1925
  ## 4.0.3
1372
1926
 
1373
1927
  ### Patch Changes
1374
1928
 
1375
- - [#41163](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41163) [`298256e6c4f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/298256e6c4f) - [ux] Updates table column controls decorations styles to fix table horizontal scroll on page zoom.
1929
+ - [#41163](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41163)
1930
+ [`298256e6c4f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/298256e6c4f) - [ux]
1931
+ Updates table column controls decorations styles to fix table horizontal scroll on page zoom.
1376
1932
 
1377
1933
  ## 4.0.2
1378
1934
 
1379
1935
  ### Patch Changes
1380
1936
 
1381
- - [#39749](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39749) [`e6b69f455c3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6b69f455c3) - Connect yarn changeset to packages, upgrade adf-schema
1382
- - Updated dependencies
1937
+ - [#39749](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39749)
1938
+ [`e6b69f455c3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6b69f455c3) -
1939
+ Connect yarn changeset to packages, upgrade adf-schema
1940
+ - Updated dependencies
1383
1941
 
1384
1942
  ## 4.0.1
1385
1943
 
1386
1944
  ### Patch Changes
1387
1945
 
1388
- - [#40684](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40684) [`9aa958ee692`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9aa958ee692) - [ux] Makes sticky scrollbar visible in Safari and Firefox by setting height.
1946
+ - [#40684](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40684)
1947
+ [`9aa958ee692`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9aa958ee692) - [ux]
1948
+ Makes sticky scrollbar visible in Safari and Firefox by setting height.
1389
1949
 
1390
1950
  ## 4.0.0
1391
1951
 
1392
1952
  ### Major Changes
1393
1953
 
1394
- - [#39205](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39205) [`151b0d45db4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/151b0d45db4) - Changed Resizer API. Removed handleComponent, innerPadding & handleMarginTop. Also renamed HandleHeightSizeType to HandleSize. The resizer should be opionated and control the handle component itself. innerPadding & handleMarginTop can also be controlled via the handleStyles override property.
1954
+ - [#39205](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39205)
1955
+ [`151b0d45db4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/151b0d45db4) -
1956
+ Changed Resizer API. Removed handleComponent, innerPadding & handleMarginTop. Also renamed
1957
+ HandleHeightSizeType to HandleSize. The resizer should be opionated and control the handle
1958
+ component itself. innerPadding & handleMarginTop can also be controlled via the handleStyles
1959
+ override property.
1395
1960
 
1396
1961
  ### Patch Changes
1397
1962
 
1398
- - Updated dependencies
1963
+ - Updated dependencies
1399
1964
 
1400
1965
  ## 3.2.1
1401
1966
 
1402
1967
  ### Patch Changes
1403
1968
 
1404
- - [#40294](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40294) [`b1a93f61747`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b1a93f61747) - [ED-20091] add logic to refire intersection observers and prevent detached table sticky headers
1969
+ - [#40294](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40294)
1970
+ [`b1a93f61747`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b1a93f61747) -
1971
+ [ED-20091] add logic to refire intersection observers and prevent detached table sticky headers
1405
1972
 
1406
1973
  ## 3.2.0
1407
1974
 
1408
1975
  ### Minor Changes
1409
1976
 
1410
- - [#39366](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39366) [`3aaff60be08`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3aaff60be08) - [ux] ED-18988 Adds table sticky scrollbar
1977
+ - [#39366](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39366)
1978
+ [`3aaff60be08`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3aaff60be08) - [ux]
1979
+ ED-18988 Adds table sticky scrollbar
1411
1980
 
1412
1981
  ### Patch Changes
1413
1982
 
1414
- - Updated dependencies
1983
+ - Updated dependencies
1415
1984
 
1416
1985
  ## 3.1.3
1417
1986
 
1418
1987
  ### Patch Changes
1419
1988
 
1420
- - [#40416](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40416) [`5b783c0f957`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5b783c0f957) - Clean up resizing plugin state for table when deleted
1989
+ - [#40416](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40416)
1990
+ [`5b783c0f957`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5b783c0f957) - Clean
1991
+ up resizing plugin state for table when deleted
1421
1992
 
1422
1993
  ## 3.1.2
1423
1994
 
1424
1995
  ### Patch Changes
1425
1996
 
1426
- - [#40494](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40494) [`866a47baae3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/866a47baae3) - Moved the cache FF variables from global to plugin state, to avoid other editor instances from overriding them
1997
+ - [#40494](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40494)
1998
+ [`866a47baae3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/866a47baae3) - Moved
1999
+ the cache FF variables from global to plugin state, to avoid other editor instances from
2000
+ overriding them
1427
2001
 
1428
2002
  ## 3.1.1
1429
2003
 
1430
2004
  ### Patch Changes
1431
2005
 
1432
- - [#40231](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40231) [`05b9c2db1dc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/05b9c2db1dc) - [ux] Increase visibility of table scroll shadows
2006
+ - [#40231](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40231)
2007
+ [`05b9c2db1dc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/05b9c2db1dc) - [ux]
2008
+ Increase visibility of table scroll shadows
1433
2009
 
1434
2010
  ## 3.1.0
1435
2011
 
1436
2012
  ### Minor Changes
1437
2013
 
1438
- - [#39755](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39755) [`20d1964ba9d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/20d1964ba9d) - Adds a new table-analytics plugin to collect payload information and dispatch a new tableOverflowChanged event
2014
+ - [#39755](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39755)
2015
+ [`20d1964ba9d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/20d1964ba9d) - Adds a
2016
+ new table-analytics plugin to collect payload information and dispatch a new
2017
+ tableOverflowChanged event
1439
2018
 
1440
2019
  ### Patch Changes
1441
2020
 
1442
- - Updated dependencies
2021
+ - Updated dependencies
1443
2022
 
1444
2023
  ## 3.0.5
1445
2024
 
1446
2025
  ### Patch Changes
1447
2026
 
1448
- - [#40407](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40407) [`45f669fac0c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/45f669fac0c) - Reduce the width of the last column resizer handle to 5px, this was previously 10px and would interfer with the table cell menu button and other nodes that that also had resize handles
1449
- - Updated dependencies
2027
+ - [#40407](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40407)
2028
+ [`45f669fac0c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/45f669fac0c) - Reduce
2029
+ the width of the last column resizer handle to 5px, this was previously 10px and would interfer
2030
+ with the table cell menu button and other nodes that that also had resize handles
2031
+ - Updated dependencies
1450
2032
 
1451
2033
  ## 3.0.4
1452
2034
 
1453
2035
  ### Patch Changes
1454
2036
 
1455
- - [#40346](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40346) [`9e36c4aec5c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e36c4aec5c) - Fixed a bug in the local id plugin where it was deferred dispatching a transaction created from and old state causing the "Applying a mismatched transaction" runtime error to occur.
2037
+ - [#40346](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40346)
2038
+ [`9e36c4aec5c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e36c4aec5c) - Fixed
2039
+ a bug in the local id plugin where it was deferred dispatching a transaction created from and
2040
+ old state causing the "Applying a mismatched transaction" runtime error to occur.
1456
2041
 
1457
2042
  ## 3.0.3
1458
2043
 
1459
2044
  ### Patch Changes
1460
2045
 
1461
- - [#40236](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40236) [`65b155b2787`](https://bitbucket.org/atlassian/atlassian-frontend/commits/65b155b2787) - [ux] ED-19172: Updated tableHeaderCellBackgroundColor to use non-transparent token."
1462
- - [#39948](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39948) [`cd06919038d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cd06919038d) - [ux] Fix Firefox scrolling stuck in some certain height when scroll up from bottom
1463
- - [`0b1f816e4fa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0b1f816e4fa) - [ux] Added akEditorTableHeaderCellBackground to store fallback.
1464
- - Updated dependencies
2046
+ - [#40236](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40236)
2047
+ [`65b155b2787`](https://bitbucket.org/atlassian/atlassian-frontend/commits/65b155b2787) - [ux]
2048
+ ED-19172: Updated tableHeaderCellBackgroundColor to use non-transparent token."
2049
+ - [#39948](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39948)
2050
+ [`cd06919038d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cd06919038d) - [ux]
2051
+ Fix Firefox scrolling stuck in some certain height when scroll up from bottom
2052
+ - [`0b1f816e4fa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0b1f816e4fa) - [ux]
2053
+ Added akEditorTableHeaderCellBackground to store fallback.
2054
+ - Updated dependencies
1465
2055
 
1466
2056
  ## 3.0.2
1467
2057
 
1468
2058
  ### Patch Changes
1469
2059
 
1470
- - [#39984](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39984) [`37c62369dae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/37c62369dae) - NO-ISSUE Import doc builder types from editor-common
2060
+ - [#39984](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39984)
2061
+ [`37c62369dae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/37c62369dae) -
2062
+ NO-ISSUE Import doc builder types from editor-common
1471
2063
 
1472
2064
  ## 3.0.1
1473
2065
 
1474
2066
  ### Patch Changes
1475
2067
 
1476
- - Updated dependencies
2068
+ - Updated dependencies
1477
2069
 
1478
2070
  ## 3.0.0
1479
2071
 
1480
2072
  ### Major Changes
1481
2073
 
1482
- - [#40043](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40043) [`18e8e6cc9c8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18e8e6cc9c8) - ED-19782: Clean up feature flag types from table optimisation related feature flags.
2074
+ - [#40043](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/40043)
2075
+ [`18e8e6cc9c8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18e8e6cc9c8) -
2076
+ ED-19782: Clean up feature flag types from table optimisation related feature flags.
1483
2077
 
1484
2078
  ## 2.14.1
1485
2079
 
1486
2080
  ### Patch Changes
1487
2081
 
1488
- - [#39570](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39570) [`b6525ba4703`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b6525ba4703) - [ux] Reimplement inline height for table when resizing
2082
+ - [#39570](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39570)
2083
+ [`b6525ba4703`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b6525ba4703) - [ux]
2084
+ Reimplement inline height for table when resizing
1489
2085
 
1490
2086
  ## 2.14.0
1491
2087
 
1492
2088
  ### Minor Changes
1493
2089
 
1494
- - [#38828](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38828) [`6ccd72d2fe0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6ccd72d2fe0) - ED-18264: Clean up useSomewhatSemanticTextColorNames - default behaviour will be same as when FF was on.
2090
+ - [#38828](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38828)
2091
+ [`6ccd72d2fe0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6ccd72d2fe0) -
2092
+ ED-18264: Clean up useSomewhatSemanticTextColorNames - default behaviour will be same as when FF
2093
+ was on.
1495
2094
 
1496
2095
  ### Patch Changes
1497
2096
 
1498
- - [#39940](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39940) [`69857bbbff0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/69857bbbff0) - [ED-20004] Capture errors in getPos due to prosemirror-view bump
2097
+ - [#39940](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39940)
2098
+ [`69857bbbff0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/69857bbbff0) -
2099
+ [ED-20004] Capture errors in getPos due to prosemirror-view bump
1499
2100
 
1500
2101
  ## 2.13.3
1501
2102
 
1502
2103
  ### Patch Changes
1503
2104
 
1504
- - [#39481](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39481) [`aeb5c9a01e8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aeb5c9a01e8) - Delete adf-schema from AFE and rely on npm package for adf-schema
1505
- - [`4b4dcfe0bba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4b4dcfe0bba) - Delete adf-schema, use published version
2105
+ - [#39481](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39481)
2106
+ [`aeb5c9a01e8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aeb5c9a01e8) - Delete
2107
+ adf-schema from AFE and rely on npm package for adf-schema
2108
+ - [`4b4dcfe0bba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4b4dcfe0bba) - Delete
2109
+ adf-schema, use published version
1506
2110
 
1507
2111
  ## 2.13.2
1508
2112
 
1509
2113
  ### Patch Changes
1510
2114
 
1511
- - [#39742](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39742) [`ddb171ba2d5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ddb171ba2d5) - Fix the table alignment issue with guideline snapping when numbered columnis enabled
2115
+ - [#39742](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39742)
2116
+ [`ddb171ba2d5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ddb171ba2d5) - Fix
2117
+ the table alignment issue with guideline snapping when numbered columnis enabled
1512
2118
 
1513
2119
  ## 2.13.1
1514
2120
 
1515
2121
  ### Patch Changes
1516
2122
 
1517
- - [#39202](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39202) [`dca155209d9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dca155209d9) - ED-15094 Feature flag clean up for copy button
2123
+ - [#39202](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39202)
2124
+ [`dca155209d9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dca155209d9) -
2125
+ ED-15094 Feature flag clean up for copy button
1518
2126
 
1519
2127
  ## 2.13.0
1520
2128
 
1521
2129
  ### Minor Changes
1522
2130
 
1523
- - [#39694](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39694) [`a5f5786f39b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a5f5786f39b) - Use selection plugin to hide gap cursor when table is resized
2131
+ - [#39694](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39694)
2132
+ [`a5f5786f39b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a5f5786f39b) - Use
2133
+ selection plugin to hide gap cursor when table is resized
1524
2134
 
1525
2135
  ### Patch Changes
1526
2136
 
1527
- - Updated dependencies
2137
+ - Updated dependencies
1528
2138
 
1529
2139
  ## 2.12.6
1530
2140
 
1531
2141
  ### Patch Changes
1532
2142
 
1533
- - [#39533](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39533) [`1f6e908f2bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f6e908f2bd) - Workaround invalid getPos error occuring for TableComponent
2143
+ - [#39533](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39533)
2144
+ [`1f6e908f2bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f6e908f2bd) -
2145
+ Workaround invalid getPos error occuring for TableComponent
1534
2146
 
1535
2147
  ## 2.12.5
1536
2148
 
1537
2149
  ### Patch Changes
1538
2150
 
1539
- - [#39402](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39402) [`1da71810c5d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1da71810c5d) - [Regression] Fix Invalid getPos issue happening for Table nodeviews
2151
+ - [#39402](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39402)
2152
+ [`1da71810c5d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1da71810c5d) -
2153
+ [Regression] Fix Invalid getPos issue happening for Table nodeviews
1540
2154
 
1541
2155
  ## 2.12.4
1542
2156
 
1543
2157
  ### Patch Changes
1544
2158
 
1545
- - [#39411](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39411) [`74cf8d56408`](https://bitbucket.org/atlassian/atlassian-frontend/commits/74cf8d56408) - ED-19748: dispatch analytics when a table is selected.
2159
+ - [#39411](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39411)
2160
+ [`74cf8d56408`](https://bitbucket.org/atlassian/atlassian-frontend/commits/74cf8d56408) -
2161
+ ED-19748: dispatch analytics when a table is selected.
1546
2162
 
1547
2163
  ## 2.12.3
1548
2164
 
1549
2165
  ### Patch Changes
1550
2166
 
1551
- - [#39381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39381) [`35242fb367a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/35242fb367a) - Add custom-table-width feature flag and add width to table node when inserted
2167
+ - [#39381](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39381)
2168
+ [`35242fb367a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/35242fb367a) - Add
2169
+ custom-table-width feature flag and add width to table node when inserted
1552
2170
 
1553
2171
  ## 2.12.2
1554
2172
 
1555
2173
  ### Patch Changes
1556
2174
 
1557
- - [#39304](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39304) [`6acf9830b36`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6acf9830b36) - Update feature flags plugin
1558
- (@atlaskit/editor-plugin-feature-flags) to use a named export
1559
- rather than default export to match other plugins.
2175
+ - [#39304](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39304)
2176
+ [`6acf9830b36`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6acf9830b36) - Update
2177
+ feature flags plugin (@atlaskit/editor-plugin-feature-flags) to use a named export rather than
2178
+ default export to match other plugins.
1560
2179
 
1561
- ```ts
1562
- // Before
1563
- import featureFlagsPlugin from '@atlaskit/editor-plugin-feature-flags';
2180
+ ```ts
2181
+ // Before
2182
+ import featureFlagsPlugin from '@atlaskit/editor-plugin-feature-flags';
1564
2183
 
1565
- // After
1566
- import { featureFlagsPlugin } from '@atlaskit/editor-plugin-feature-flags';
1567
- ```
2184
+ // After
2185
+ import { featureFlagsPlugin } from '@atlaskit/editor-plugin-feature-flags';
2186
+ ```
1568
2187
 
1569
2188
  ## 2.12.1
1570
2189
 
1571
2190
  ### Patch Changes
1572
2191
 
1573
- - [#39342](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39342) [`58f6154cd7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58f6154cd7c) - Use color.icon.danger colour token for resizer danger state, rename the danger className to avoid collisions and ensure danger state is only applied to tables when the table is selected
2192
+ - [#39342](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39342)
2193
+ [`58f6154cd7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58f6154cd7c) - Use
2194
+ color.icon.danger colour token for resizer danger state, rename the danger className to avoid
2195
+ collisions and ensure danger state is only applied to tables when the table is selected
1574
2196
 
1575
2197
  ## 2.12.0
1576
2198
 
1577
2199
  ### Minor Changes
1578
2200
 
1579
- - [#39325](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39325) [`ad3c5c21079`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ad3c5c21079) - Updating all plugins with minor version to correct issue with semver.
2201
+ - [#39325](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39325)
2202
+ [`ad3c5c21079`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ad3c5c21079) -
2203
+ Updating all plugins with minor version to correct issue with semver.
1580
2204
 
1581
2205
  ### Patch Changes
1582
2206
 
1583
- - Updated dependencies
2207
+ - Updated dependencies
1584
2208
 
1585
2209
  ## 2.11.0
1586
2210
 
1587
2211
  ### Minor Changes
1588
2212
 
1589
- - [#39045](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39045) [`b08849ad727`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b08849ad727) - [ux] Added tooltip to table column resize handles, also added a tooltip to the custom table width table resizer handle
2213
+ - [#39045](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39045)
2214
+ [`b08849ad727`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b08849ad727) - [ux]
2215
+ Added tooltip to table column resize handles, also added a tooltip to the custom table width
2216
+ table resizer handle
1590
2217
 
1591
2218
  ### Patch Changes
1592
2219
 
1593
- - [#39145](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39145) [`8b78535f8bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8b78535f8bd) - Fix sticky header not resize with table
1594
- - Updated dependencies
2220
+ - [#39145](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39145)
2221
+ [`8b78535f8bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8b78535f8bd) - Fix
2222
+ sticky header not resize with table
2223
+ - Updated dependencies
1595
2224
 
1596
2225
  ## 2.10.8
1597
2226
 
1598
2227
  ### Patch Changes
1599
2228
 
1600
- - [#39010](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39010) [`8467bdcdf4f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8467bdcdf4f) - Removing `dependencies` prop from PluginInjectionAPI and changing
1601
- signature of `NextEditorPlugin`.
2229
+ - [#39010](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39010)
2230
+ [`8467bdcdf4f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8467bdcdf4f) -
2231
+ Removing `dependencies` prop from PluginInjectionAPI and changing signature of
2232
+ `NextEditorPlugin`.
1602
2233
 
1603
- Previously a `NextEditorPlugin` would be consumed as so:
2234
+ Previously a `NextEditorPlugin` would be consumed as so:
1604
2235
 
1605
- ```ts
1606
- const plugin: NextEditorPlugin< ... > = (config, api) => {
1607
- // Can use api like so:
1608
- api.dependencies.core.actions.execute( ... )
1609
- return { ... }
1610
- }
1611
- ```
2236
+ ```ts
2237
+ const plugin: NextEditorPlugin< ... > = (config, api) => {
2238
+ // Can use api like so:
2239
+ api.dependencies.core.actions.execute( ... )
2240
+ return { ... }
2241
+ }
2242
+ ```
1612
2243
 
1613
- Now these have become named parameters like so and the `pluginInjectionAPI` is used
1614
- without the `dependencies` prop:
2244
+ Now these have become named parameters like so and the `pluginInjectionAPI` is used without the
2245
+ `dependencies` prop:
1615
2246
 
1616
- ```ts
1617
- const plugin: NextEditorPlugin< ... > = ({ config, api }) => {
1618
- // Can use api like so:
1619
- api.core.actions.execute( ... )
1620
- return { ... }
1621
- }
1622
- ```
2247
+ ```ts
2248
+ const plugin: NextEditorPlugin< ... > = ({ config, api }) => {
2249
+ // Can use api like so:
2250
+ api.core.actions.execute( ... )
2251
+ return { ... }
2252
+ }
2253
+ ```
1623
2254
 
1624
- - Updated dependencies
2255
+ - Updated dependencies
1625
2256
 
1626
2257
  ## 2.10.7
1627
2258
 
1628
2259
  ### Patch Changes
1629
2260
 
1630
- - [#39177](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39177) [`24e27147cbd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/24e27147cbd) - Added atlaskit docs to all existing plugins.
1631
- - Updated dependencies
2261
+ - [#39177](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39177)
2262
+ [`24e27147cbd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/24e27147cbd) - Added
2263
+ atlaskit docs to all existing plugins.
2264
+ - Updated dependencies
1632
2265
 
1633
2266
  ## 2.10.6
1634
2267
 
1635
2268
  ### Patch Changes
1636
2269
 
1637
- - [#38976](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38976) [`33cb07de05f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/33cb07de05f) - change adf-schema to fixed versioning
1638
- - Updated dependencies
2270
+ - [#38976](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38976)
2271
+ [`33cb07de05f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/33cb07de05f) - change
2272
+ adf-schema to fixed versioning
2273
+ - Updated dependencies
1639
2274
 
1640
2275
  ## 2.10.5
1641
2276
 
1642
2277
  ### Patch Changes
1643
2278
 
1644
- - [#39072](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39072) [`e813382ff78`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e813382ff78) - Revert ED-19511 due to incorrect height calculations when sticky headers are enabled for tables
2279
+ - [#39072](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39072)
2280
+ [`e813382ff78`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e813382ff78) - Revert
2281
+ ED-19511 due to incorrect height calculations when sticky headers are enabled for tables
1645
2282
 
1646
2283
  ## 2.10.4
1647
2284
 
1648
2285
  ### Patch Changes
1649
2286
 
1650
- - [#38814](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38814) [`eefbc3c6065`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eefbc3c6065) - [ED-19510] Applies performance tweaks for table
2287
+ - [#38814](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38814)
2288
+ [`eefbc3c6065`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eefbc3c6065) -
2289
+ [ED-19510] Applies performance tweaks for table
1651
2290
 
1652
2291
  ## 2.10.3
1653
2292
 
1654
2293
  ### Patch Changes
1655
2294
 
1656
- - [#38729](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38729) [`d6e4badd8c4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d6e4badd8c4) - Add explicit height to table when resizing width to increase performance
2295
+ - [#38729](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38729)
2296
+ [`d6e4badd8c4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d6e4badd8c4) - Add
2297
+ explicit height to table when resizing width to increase performance
1657
2298
 
1658
2299
  ## 2.10.2
1659
2300
 
1660
2301
  ### Patch Changes
1661
2302
 
1662
- - [#38429](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38429) [`31031f52f80`](https://bitbucket.org/atlassian/atlassian-frontend/commits/31031f52f80) - Fix table shift when two users resize the same table in collab mode
1663
- - Updated dependencies
2303
+ - [#38429](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38429)
2304
+ [`31031f52f80`](https://bitbucket.org/atlassian/atlassian-frontend/commits/31031f52f80) - Fix
2305
+ table shift when two users resize the same table in collab mode
2306
+ - Updated dependencies
1664
2307
 
1665
2308
  ## 2.10.1
1666
2309
 
1667
2310
  ### Patch Changes
1668
2311
 
1669
- - [#38739](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38739) [`30d49e87f62`](https://bitbucket.org/atlassian/atlassian-frontend/commits/30d49e87f62) - Added danger apperance to ReszierNext component and toggled it when the delete icon in the table floating toolbar is rolled over
1670
- - Updated dependencies
2312
+ - [#38739](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38739)
2313
+ [`30d49e87f62`](https://bitbucket.org/atlassian/atlassian-frontend/commits/30d49e87f62) - Added
2314
+ danger apperance to ReszierNext component and toggled it when the delete icon in the table
2315
+ floating toolbar is rolled over
2316
+ - Updated dependencies
1671
2317
 
1672
2318
  ## 2.10.0
1673
2319
 
1674
2320
  ### Minor Changes
1675
2321
 
1676
- - [#37656](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37656) [`0f3026deda5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0f3026deda5) - ED-12027 cleaned up table optimisation feature flags, made optimised code run by default.
2322
+ - [#37656](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37656)
2323
+ [`0f3026deda5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0f3026deda5) -
2324
+ ED-12027 cleaned up table optimisation feature flags, made optimised code run by default.
1677
2325
 
1678
2326
  ### Patch Changes
1679
2327
 
1680
- - Updated dependencies
2328
+ - Updated dependencies
1681
2329
 
1682
2330
  ## 2.9.1
1683
2331
 
1684
2332
  ### Patch Changes
1685
2333
 
1686
- - [#38661](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38661) [`84cf99bc0f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/84cf99bc0f0) - ED-19153:Update table container width to be consistent with table resizer.
2334
+ - [#38661](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38661)
2335
+ [`84cf99bc0f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/84cf99bc0f0) -
2336
+ ED-19153:Update table container width to be consistent with table resizer.
1687
2337
 
1688
2338
  ## 2.9.0
1689
2339
 
1690
2340
  ### Minor Changes
1691
2341
 
1692
- - [#37787](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37787) [`4cb3deef759`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4cb3deef759) - Improved table container/wrapper styles to better support custom table widths
2342
+ - [#37787](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37787)
2343
+ [`4cb3deef759`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4cb3deef759) -
2344
+ Improved table container/wrapper styles to better support custom table widths
1693
2345
 
1694
- - Remove padding on table wrapper so table overflow is restricted correctly, so it doesn't spew out
1695
- - Update shadows to match these new styles
1696
- - Move floating add column dot by 1px to avoid scroll
1697
- - Ensure the colgroup is always one pixel less than overall table container, done in a few places
2346
+ - Remove padding on table wrapper so table overflow is restricted correctly, so it doesn't
2347
+ spew out
2348
+ - Update shadows to match these new styles
2349
+ - Move floating add column dot by 1px to avoid scroll
2350
+ - Ensure the colgroup is always one pixel less than overall table container, done in a few
2351
+ places
1698
2352
 
1699
2353
  ### Patch Changes
1700
2354
 
1701
- - Updated dependencies
2355
+ - Updated dependencies
1702
2356
 
1703
2357
  ## 2.8.6
1704
2358
 
1705
2359
  ### Patch Changes
1706
2360
 
1707
- - [#38679](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38679) [`5365e42ef97`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5365e42ef97) - cleaned up more of the \* as keymaps imports to enable better tree-shaking
2361
+ - [#38679](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38679)
2362
+ [`5365e42ef97`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5365e42ef97) -
2363
+ cleaned up more of the \* as keymaps imports to enable better tree-shaking
1708
2364
 
1709
2365
  ## 2.8.5
1710
2366
 
1711
2367
  ### Patch Changes
1712
2368
 
1713
- - [#38636](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38636) [`58fa188ef48`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58fa188ef48) - [ux] [ED-19461] Reduce draggable zone of adjacent resize handle.
2369
+ - [#38636](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38636)
2370
+ [`58fa188ef48`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58fa188ef48) - [ux]
2371
+ [ED-19461] Reduce draggable zone of adjacent resize handle.
1714
2372
 
1715
2373
  ## 2.8.4
1716
2374
 
1717
2375
  ### Patch Changes
1718
2376
 
1719
- - [#38588](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38588) [`e73d62af335`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e73d62af335) - [ux] Adjusted the guidelines to be 1 pixel smaller then the snapping widths due to the fact that the tbody is 1 pixel smaller then the table. The table snaps to the snap widths and the guidelines align to the tbody cell borders
2377
+ - [#38588](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38588)
2378
+ [`e73d62af335`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e73d62af335) - [ux]
2379
+ Adjusted the guidelines to be 1 pixel smaller then the snapping widths due to the fact that the
2380
+ tbody is 1 pixel smaller then the table. The table snaps to the snap widths and the guidelines
2381
+ align to the tbody cell borders
1720
2382
 
1721
2383
  ## 2.8.3
1722
2384
 
1723
2385
  ### Patch Changes
1724
2386
 
1725
- - [#38540](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38540) [`77b74847baa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/77b74847baa) - ED-19152 Cancels scheduled resize to avoid handleResize being called after handleResizeStop.
2387
+ - [#38540](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38540)
2388
+ [`77b74847baa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/77b74847baa) -
2389
+ ED-19152 Cancels scheduled resize to avoid handleResize being called after handleResizeStop.
1726
2390
 
1727
2391
  ## 2.8.2
1728
2392
 
1729
2393
  ### Patch Changes
1730
2394
 
1731
- - Updated dependencies
2395
+ - Updated dependencies
1732
2396
 
1733
2397
  ## 2.8.1
1734
2398
 
1735
2399
  ### Patch Changes
1736
2400
 
1737
- - [#38257](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38257) [`800c927efd1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/800c927efd1) - [ux] ED-19317: fix numbered column shift up issue with custom table FF on
2401
+ - [#38257](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38257)
2402
+ [`800c927efd1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/800c927efd1) - [ux]
2403
+ ED-19317: fix numbered column shift up issue with custom table FF on
1738
2404
 
1739
2405
  ## 2.8.0
1740
2406
 
1741
2407
  ### Minor Changes
1742
2408
 
1743
- - [#38232](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38232) [`7472b6ab3b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7472b6ab3b4) - [ED-19329] Add analytics event for table resize framerate
2409
+ - [#38232](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38232)
2410
+ [`7472b6ab3b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7472b6ab3b4) -
2411
+ [ED-19329] Add analytics event for table resize framerate
1744
2412
 
1745
2413
  ### Patch Changes
1746
2414
 
1747
- - Updated dependencies
2415
+ - Updated dependencies
1748
2416
 
1749
2417
  ## 2.7.2
1750
2418
 
1751
2419
  ### Patch Changes
1752
2420
 
1753
- - [#38287](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38287) [`8b104cb7575`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8b104cb7575) - [ED-14769] Remove tableCellOptionsinFloatingToolbar feature flag & make it default behaviour
2421
+ - [#38287](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38287)
2422
+ [`8b104cb7575`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8b104cb7575) -
2423
+ [ED-14769] Remove tableCellOptionsinFloatingToolbar feature flag & make it default behaviour
1754
2424
 
1755
2425
  ## 2.7.1
1756
2426
 
1757
2427
  ### Patch Changes
1758
2428
 
1759
- - [#38344](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38344) [`39099193642`](https://bitbucket.org/atlassian/atlassian-frontend/commits/39099193642) - Cleanup breakout styling when table has fragment mark ff
2429
+ - [#38344](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38344)
2430
+ [`39099193642`](https://bitbucket.org/atlassian/atlassian-frontend/commits/39099193642) -
2431
+ Cleanup breakout styling when table has fragment mark ff
1760
2432
 
1761
2433
  ## 2.7.0
1762
2434
 
1763
2435
  ### Minor Changes
1764
2436
 
1765
- - [#38268](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38268) [`960a2b478c8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/960a2b478c8) - [ux] [ED-19167] Add blue shadow to resizer handle on hover
2437
+ - [#38268](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38268)
2438
+ [`960a2b478c8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/960a2b478c8) - [ux]
2439
+ [ED-19167] Add blue shadow to resizer handle on hover
1766
2440
 
1767
2441
  ### Patch Changes
1768
2442
 
1769
- - Updated dependencies
2443
+ - Updated dependencies
1770
2444
 
1771
2445
  ## 2.6.13
1772
2446
 
1773
2447
  ### Patch Changes
1774
2448
 
1775
- - [#38134](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38134) [`8fe864e4f7a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8fe864e4f7a) - [ux] ED-19336: Fixed insert column button not visible when sticky header is enabled."
2449
+ - [#38134](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38134)
2450
+ [`8fe864e4f7a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8fe864e4f7a) - [ux]
2451
+ ED-19336: Fixed insert column button not visible when sticky header is enabled."
1776
2452
 
1777
2453
  ## 2.6.12
1778
2454
 
1779
2455
  ### Patch Changes
1780
2456
 
1781
- - [#38303](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38303) [`08bae0f0926`](https://bitbucket.org/atlassian/atlassian-frontend/commits/08bae0f0926) - [ux] When there's only one row in a table the top & bottom sentinels become inverted. This creates some nasty visiblity
1782
- toggling side-effects because the intersection observers gets confused and ends up toggling the sticky header on when it should
1783
- be off and vice-versa.
2457
+ - [#38303](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38303)
2458
+ [`08bae0f0926`](https://bitbucket.org/atlassian/atlassian-frontend/commits/08bae0f0926) - [ux]
2459
+ When there's only one row in a table the top & bottom sentinels become inverted. This creates
2460
+ some nasty visiblity toggling side-effects because the intersection observers gets confused and
2461
+ ends up toggling the sticky header on when it should be off and vice-versa.
1784
2462
 
1785
- This is due to their positioning using css relative top & bottom respectively. A row is only ~44px height and the bottom sentinel is
1786
- positioned ~67px off the bottom, and the top sentinel is ~25px off the top (which aligns to the top of the row).
1787
- So when only 1 row exist the bottom sentinel ends up being ~23px above the top sentinel. Which means the logic for
1788
- toggling becomes inverted and when the sentinels are scrolled off the screen the top on is now last and ends up displaying the
1789
- sticky header, where previously the bottom sentinel would hide it.
2463
+ This is due to their positioning using css relative top & bottom respectively. A row is only
2464
+ ~44px height and the bottom sentinel is positioned ~67px off the bottom, and the top sentinel is
2465
+ ~25px off the top (which aligns to the top of the row). So when only 1 row exist the bottom
2466
+ sentinel ends up being ~23px above the top sentinel. Which means the logic for toggling becomes
2467
+ inverted and when the sentinels are scrolled off the screen the top on is now last and ends up
2468
+ displaying the sticky header, where previously the bottom sentinel would hide it.
1790
2469
 
1791
- - Updated dependencies
2470
+ - Updated dependencies
1792
2471
 
1793
2472
  ## 2.6.11
1794
2473
 
1795
2474
  ### Patch Changes
1796
2475
 
1797
- - Updated dependencies
2476
+ - Updated dependencies
1798
2477
 
1799
2478
  ## 2.6.10
1800
2479
 
1801
2480
  ### Patch Changes
1802
2481
 
1803
- - [#38223](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38223) [`79dc812733f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/79dc812733f) - [ux] [ED-19293] Updates table's guideline used for wide layout. The value is aligned with other nodes that use breakouts and are set to wide.
1804
- - Updated dependencies
2482
+ - [#38223](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/38223)
2483
+ [`79dc812733f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/79dc812733f) - [ux]
2484
+ [ED-19293] Updates table's guideline used for wide layout. The value is aligned with other nodes
2485
+ that use breakouts and are set to wide.
2486
+ - Updated dependencies
1805
2487
 
1806
2488
  ## 2.6.9
1807
2489
 
1808
2490
  ### Patch Changes
1809
2491
 
1810
- - Updated dependencies
2492
+ - Updated dependencies
1811
2493
 
1812
2494
  ## 2.6.8
1813
2495
 
1814
2496
  ### Patch Changes
1815
2497
 
1816
- - [#37990](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37990) [`d432ad14798`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d432ad14798) - [ux] Added standard page guidelines when custom table width enabled and is resizing table.
2498
+ - [#37990](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37990)
2499
+ [`d432ad14798`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d432ad14798) - [ux]
2500
+ Added standard page guidelines when custom table width enabled and is resizing table.
1817
2501
 
1818
2502
  ## 2.6.7
1819
2503
 
1820
2504
  ### Patch Changes
1821
2505
 
1822
- - [#37973](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37973) [`56f4b88f7c2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56f4b88f7c2) - [ux] ED-19317: fix numbered column shifted up issue when sticky header
2506
+ - [#37973](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37973)
2507
+ [`56f4b88f7c2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56f4b88f7c2) - [ux]
2508
+ ED-19317: fix numbered column shifted up issue when sticky header
1823
2509
 
1824
2510
  ## 2.6.6
1825
2511
 
1826
2512
  ### Patch Changes
1827
2513
 
1828
- - [#37954](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37954) [`fb2597b2dc3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fb2597b2dc3) - Check analytic plugin exists before accessing attach function
2514
+ - [#37954](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37954)
2515
+ [`fb2597b2dc3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fb2597b2dc3) - Check
2516
+ analytic plugin exists before accessing attach function
1829
2517
 
1830
2518
  ## 2.6.5
1831
2519
 
1832
2520
  ### Patch Changes
1833
2521
 
1834
- - [#37785](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37785) [`4e6f1bf8511`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4e6f1bf8511) - [ED-19233] Import prosemirror libraries from internal facade package
1835
- - Updated dependencies
2522
+ - [#37785](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37785)
2523
+ [`4e6f1bf8511`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4e6f1bf8511) -
2524
+ [ED-19233] Import prosemirror libraries from internal facade package
2525
+ - Updated dependencies
1836
2526
 
1837
2527
  ## 2.6.4
1838
2528
 
1839
2529
  ### Patch Changes
1840
2530
 
1841
- - [#37709](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37709) [`467515ad237`](https://bitbucket.org/atlassian/atlassian-frontend/commits/467515ad237) - [ux] ED-17628 Maximum table width is calculated using table node to make adding columns behabiour similar to current behaviuor when custom table widths is enabled.
2531
+ - [#37709](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37709)
2532
+ [`467515ad237`](https://bitbucket.org/atlassian/atlassian-frontend/commits/467515ad237) - [ux]
2533
+ ED-17628 Maximum table width is calculated using table node to make adding columns behabiour
2534
+ similar to current behaviuor when custom table widths is enabled.
1842
2535
 
1843
2536
  ## 2.6.3
1844
2537
 
1845
2538
  ### Patch Changes
1846
2539
 
1847
- - [#37567](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37567) [`b0277c41c33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b0277c41c33) - ED-19064: Fixed border issue when selecting and deleting header column, and fixed border issue of the column control decoration."
2540
+ - [#37567](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37567)
2541
+ [`b0277c41c33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b0277c41c33) -
2542
+ ED-19064: Fixed border issue when selecting and deleting header column, and fixed border issue
2543
+ of the column control decoration."
1848
2544
 
1849
2545
  ## 2.6.2
1850
2546
 
1851
2547
  ### Patch Changes
1852
2548
 
1853
- - [#37588](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37588) [`bc9f806f84a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc9f806f84a) - Toggle handle visibility of resizer if current table is selected
1854
- - Updated dependencies
2549
+ - [#37588](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37588)
2550
+ [`bc9f806f84a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc9f806f84a) - Toggle
2551
+ handle visibility of resizer if current table is selected
2552
+ - Updated dependencies
1855
2553
 
1856
2554
  ## 2.6.1
1857
2555
 
1858
2556
  ### Patch Changes
1859
2557
 
1860
- - [#37460](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37460) [`84516fbd72d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/84516fbd72d) - [ux] ED-19068: fix numbered columns scroll bar issue
2558
+ - [#37460](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37460)
2559
+ [`84516fbd72d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/84516fbd72d) - [ux]
2560
+ ED-19068: fix numbered columns scroll bar issue
1861
2561
 
1862
2562
  ## 2.6.0
1863
2563
 
1864
2564
  ### Minor Changes
1865
2565
 
1866
- - [#37467](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37467) [`0ae6f70038a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0ae6f70038a) - [ED-17635] Add analytics event for table width resizing
2566
+ - [#37467](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37467)
2567
+ [`0ae6f70038a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0ae6f70038a) -
2568
+ [ED-17635] Add analytics event for table width resizing
1867
2569
 
1868
2570
  ### Patch Changes
1869
2571
 
1870
- - Updated dependencies
2572
+ - Updated dependencies
1871
2573
 
1872
2574
  ## 2.5.5
1873
2575
 
1874
2576
  ### Patch Changes
1875
2577
 
1876
- - [#37390](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37390) [`d55db921de3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d55db921de3) - improve performance when adding a new column in table
2578
+ - [#37390](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37390)
2579
+ [`d55db921de3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d55db921de3) -
2580
+ improve performance when adding a new column in table
1877
2581
 
1878
2582
  ## 2.5.4
1879
2583
 
1880
2584
  ### Patch Changes
1881
2585
 
1882
- - [#37270](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37270) [`b6758f1ecff`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b6758f1ecff) - [ux] Fixes positioning of popups inside table cell
1883
- - Updated dependencies
2586
+ - [#37270](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37270)
2587
+ [`b6758f1ecff`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b6758f1ecff) - [ux]
2588
+ Fixes positioning of popups inside table cell
2589
+ - Updated dependencies
1884
2590
 
1885
2591
  ## 2.5.3
1886
2592
 
1887
2593
  ### Patch Changes
1888
2594
 
1889
- - [#37348](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37348) [`e8885f55db6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e8885f55db6) - Fixed type issue
2595
+ - [#37348](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37348)
2596
+ [`e8885f55db6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e8885f55db6) - Fixed
2597
+ type issue
1890
2598
 
1891
2599
  ## 2.5.2
1892
2600
 
1893
2601
  ### Patch Changes
1894
2602
 
1895
- - [#37218](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37218) [`8b77d484c89`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8b77d484c89) - Change snap gap for tables guideline to 9px
2603
+ - [#37218](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37218)
2604
+ [`8b77d484c89`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8b77d484c89) - Change
2605
+ snap gap for tables guideline to 9px
1896
2606
 
1897
2607
  ## 2.5.1
1898
2608
 
1899
2609
  ### Patch Changes
1900
2610
 
1901
- - [#36845](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36845) [`e64541c6fda`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e64541c6fda) - [ux] [ED-18759] Updated table border, handlebar controls, blanket, icon, icon background and table cell options button colour tokens on light and dark theme for table selection and table deletion. Borders for Table Floating Contextual Button & Floating toolbar color palette button on dark & light theme are also updated.
2611
+ - [#36845](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36845)
2612
+ [`e64541c6fda`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e64541c6fda) - [ux]
2613
+ [ED-18759] Updated table border, handlebar controls, blanket, icon, icon background and table
2614
+ cell options button colour tokens on light and dark theme for table selection and table
2615
+ deletion. Borders for Table Floating Contextual Button & Floating toolbar color palette button
2616
+ on dark & light theme are also updated.
1902
2617
 
1903
2618
  ## 2.5.0
1904
2619
 
1905
2620
  ### Minor Changes
1906
2621
 
1907
- - [#37063](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37063) [`22a59977bb3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/22a59977bb3) - [ux] Updated ResizerNext to allow handle style overrides. Updated the table resizer to space and align the resizer handle according the the design specifications
2622
+ - [#37063](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37063)
2623
+ [`22a59977bb3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/22a59977bb3) - [ux]
2624
+ Updated ResizerNext to allow handle style overrides. Updated the table resizer to space and
2625
+ align the resizer handle according the the design specifications
1908
2626
 
1909
2627
  ### Patch Changes
1910
2628
 
1911
- - Updated dependencies
2629
+ - Updated dependencies
1912
2630
 
1913
2631
  ## 2.4.0
1914
2632
 
1915
2633
  ### Minor Changes
1916
2634
 
1917
- - [#36960](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36960) [`e7ed90bad7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e7ed90bad7c) - Remove platform feature flag calls to editor-core and pass through a new option instead for custom table widths project, allowing for simpler clean up and reference
2635
+ - [#36960](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36960)
2636
+ [`e7ed90bad7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e7ed90bad7c) - Remove
2637
+ platform feature flag calls to editor-core and pass through a new option instead for custom
2638
+ table widths project, allowing for simpler clean up and reference
1918
2639
 
1919
2640
  ## 2.3.1
1920
2641
 
1921
2642
  ### Patch Changes
1922
2643
 
1923
- - [#37128](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37128) [`a9c98fc8503`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a9c98fc8503) - [ED-19028] Remove less-padding class when using table width resizer
2644
+ - [#37128](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37128)
2645
+ [`a9c98fc8503`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a9c98fc8503) -
2646
+ [ED-19028] Remove less-padding class when using table width resizer
1924
2647
 
1925
2648
  ## 2.3.0
1926
2649
 
1927
2650
  ### Minor Changes
1928
2651
 
1929
- - [#36797](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36797) [`464c9736dff`](https://bitbucket.org/atlassian/atlassian-frontend/commits/464c9736dff) - [ux] [ED-17626] Remove table controls during table width resizing
2652
+ - [#36797](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36797)
2653
+ [`464c9736dff`](https://bitbucket.org/atlassian/atlassian-frontend/commits/464c9736dff) - [ux]
2654
+ [ED-17626] Remove table controls during table width resizing
1930
2655
 
1931
2656
  ### Patch Changes
1932
2657
 
1933
- - Updated dependencies
2658
+ - Updated dependencies
1934
2659
 
1935
2660
  ## 2.2.0
1936
2661
 
1937
2662
  ### Minor Changes
1938
2663
 
1939
- - [#36772](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36772) [`464745a92e6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/464745a92e6) - [ux] Updated the Editor Table plugin to use the new guidelines plugin when custom-table-widths FF is enabled
2664
+ - [#36772](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36772)
2665
+ [`464745a92e6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/464745a92e6) - [ux]
2666
+ Updated the Editor Table plugin to use the new guidelines plugin when custom-table-widths FF is
2667
+ enabled
1940
2668
 
1941
2669
  ### Patch Changes
1942
2670
 
1943
- - Updated dependencies
2671
+ - Updated dependencies
1944
2672
 
1945
2673
  ## 2.1.7
1946
2674
 
1947
2675
  ### Patch Changes
1948
2676
 
1949
- - [#36852](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36852) [`018b27d3392`](https://bitbucket.org/atlassian/atlassian-frontend/commits/018b27d3392) - [ux] Makes new table resize handle sticky and of variable height based on the table height.
2677
+ - [#36852](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36852)
2678
+ [`018b27d3392`](https://bitbucket.org/atlassian/atlassian-frontend/commits/018b27d3392) - [ux]
2679
+ Makes new table resize handle sticky and of variable height based on the table height.
1950
2680
 
1951
2681
  ## 2.1.6
1952
2682
 
1953
2683
  ### Patch Changes
1954
2684
 
1955
- - [#36863](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36863) [`32ca42e82c3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/32ca42e82c3) - Extracted internal editor card plugin to new package `editor-plugin-card`.
2685
+ - [#36863](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36863)
2686
+ [`32ca42e82c3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/32ca42e82c3) -
2687
+ Extracted internal editor card plugin to new package `editor-plugin-card`.
1956
2688
 
1957
2689
  ## 2.1.5
1958
2690
 
1959
2691
  ### Patch Changes
1960
2692
 
1961
- - [#36916](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36916) [`c133c710360`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c133c710360) - Fix typing errors
2693
+ - [#36916](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36916)
2694
+ [`c133c710360`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c133c710360) - Fix
2695
+ typing errors
1962
2696
 
1963
2697
  ## 2.1.4
1964
2698
 
1965
2699
  ### Patch Changes
1966
2700
 
1967
- - [#36631](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36631) [`8b891bf3590`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8b891bf3590) - This change introduces `editor-plugin-hyperlink` which separates the hyperlink plugin from `editor-core`. In order to enable this change there are now new entry points on `editor-common` (such as `/link`, `/quick-insert`) in order to separate common code. Further `prosemirror-input-rules` now has new exports of `createPlugin` and `createRule` which are used in many plugins in `editor-core`.
1968
- - Updated dependencies
2701
+ - [#36631](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36631)
2702
+ [`8b891bf3590`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8b891bf3590) - This
2703
+ change introduces `editor-plugin-hyperlink` which separates the hyperlink plugin from
2704
+ `editor-core`. In order to enable this change there are now new entry points on `editor-common`
2705
+ (such as `/link`, `/quick-insert`) in order to separate common code. Further
2706
+ `prosemirror-input-rules` now has new exports of `createPlugin` and `createRule` which are used
2707
+ in many plugins in `editor-core`.
2708
+ - Updated dependencies
1969
2709
 
1970
2710
  ## 2.1.3
1971
2711
 
1972
2712
  ### Patch Changes
1973
2713
 
1974
- - [#36777](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36777) [`caa8dc8e5f5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/caa8dc8e5f5) - ED-18758:Making the box-shadow used in table with sticky headers consistent in light theme to original
2714
+ - [#36777](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36777)
2715
+ [`caa8dc8e5f5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/caa8dc8e5f5) -
2716
+ ED-18758:Making the box-shadow used in table with sticky headers consistent in light theme to
2717
+ original
1975
2718
 
1976
2719
  ## 2.1.2
1977
2720
 
1978
2721
  ### Patch Changes
1979
2722
 
1980
- - [#36477](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36477) [`b8d84a1ffcd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b8d84a1ffcd) - [ux] ED-17632 disable table resizer when nested
2723
+ - [#36477](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36477)
2724
+ [`b8d84a1ffcd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b8d84a1ffcd) - [ux]
2725
+ ED-17632 disable table resizer when nested
1981
2726
 
1982
2727
  ## 2.1.1
1983
2728
 
1984
2729
  ### Patch Changes
1985
2730
 
1986
- - Updated dependencies
2731
+ - Updated dependencies
1987
2732
 
1988
2733
  ## 2.1.0
1989
2734
 
1990
2735
  ### Minor Changes
1991
2736
 
1992
- - [#36588](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36588) [`48ebe1fa732`](https://bitbucket.org/atlassian/atlassian-frontend/commits/48ebe1fa732) - [ED-18895] Moved table integration tests to dedicated editor plugin test package to avoid circular dependencies
2737
+ - [#36588](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36588)
2738
+ [`48ebe1fa732`](https://bitbucket.org/atlassian/atlassian-frontend/commits/48ebe1fa732) -
2739
+ [ED-18895] Moved table integration tests to dedicated editor plugin test package to avoid
2740
+ circular dependencies
1993
2741
 
1994
2742
  ## 2.0.1
1995
2743
 
1996
2744
  ### Patch Changes
1997
2745
 
1998
- - [#35851](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35851) [`802453ec412`](https://bitbucket.org/atlassian/atlassian-frontend/commits/802453ec412) - [ux] update how table respond to external width changes under `platform.editor.custom-table-width` feature flag
1999
- - Updated dependencies
2746
+ - [#35851](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35851)
2747
+ [`802453ec412`](https://bitbucket.org/atlassian/atlassian-frontend/commits/802453ec412) - [ux]
2748
+ update how table respond to external width changes under `platform.editor.custom-table-width`
2749
+ feature flag
2750
+ - Updated dependencies
2000
2751
 
2001
2752
  ## 2.0.0
2002
2753
 
2003
2754
  ### Major Changes
2004
2755
 
2005
- - [#36423](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36423) [`bdb840c6eaa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bdb840c6eaa) - Remove EditorAnalyticsAPI parameter from tables plugin as it now gets this from `editor-plugin-analytics`. This parameter is unused and the action is just to remove it.
2756
+ - [#36423](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36423)
2757
+ [`bdb840c6eaa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bdb840c6eaa) - Remove
2758
+ EditorAnalyticsAPI parameter from tables plugin as it now gets this from
2759
+ `editor-plugin-analytics`. This parameter is unused and the action is just to remove it.
2006
2760
 
2007
- Fix issue where internal analytics plugin was not being called correctly.
2761
+ Fix issue where internal analytics plugin was not being called correctly.
2008
2762
 
2009
2763
  ## 1.7.3
2010
2764
 
2011
2765
  ### Patch Changes
2012
2766
 
2013
- - [#36241](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36241) [`5f5ba16de66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f5ba16de66) - [ED-13910] Fix prosemirror types
2014
- - Updated dependencies
2767
+ - [#36241](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36241)
2768
+ [`5f5ba16de66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f5ba16de66) -
2769
+ [ED-13910] Fix prosemirror types
2770
+ - Updated dependencies
2015
2771
 
2016
2772
  ## 1.7.2
2017
2773
 
2018
2774
  ### Patch Changes
2019
2775
 
2020
- - Updated dependencies
2776
+ - Updated dependencies
2021
2777
 
2022
2778
  ## 1.7.1
2023
2779
 
2024
2780
  ### Patch Changes
2025
2781
 
2026
- - [#35848](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35848) [`7a720ec3e8e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7a720ec3e8e) - ED-18796 Use setAttrsStep to update colwidth attribute when scaling the table
2782
+ - [#35848](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35848)
2783
+ [`7a720ec3e8e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7a720ec3e8e) -
2784
+ ED-18796 Use setAttrsStep to update colwidth attribute when scaling the table
2027
2785
 
2028
2786
  ## 1.7.0
2029
2787
 
2030
2788
  ### Minor Changes
2031
2789
 
2032
- - [#35767](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35767) [`cb69e6847ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb69e6847ec) - [ux] The table colgroup will always set the width to the min width when the custom-table-width flag is enabled
2790
+ - [#35767](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35767)
2791
+ [`cb69e6847ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb69e6847ec) - [ux]
2792
+ The table colgroup will always set the width to the min width when the custom-table-width flag
2793
+ is enabled
2033
2794
 
2034
2795
  ### Patch Changes
2035
2796
 
2036
- - Updated dependencies
2797
+ - Updated dependencies
2037
2798
 
2038
2799
  ## 1.6.9
2039
2800
 
2040
2801
  ### Patch Changes
2041
2802
 
2042
- - [#35749](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35749) [`6e54d9fbeea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6e54d9fbeea) - Added tableAddWidthPlugin
2803
+ - [#35749](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35749)
2804
+ [`6e54d9fbeea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6e54d9fbeea) - Added
2805
+ tableAddWidthPlugin
2043
2806
 
2044
2807
  ## 1.6.8
2045
2808
 
2046
2809
  ### Patch Changes
2047
2810
 
2048
- - [#35233](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35233) [`a9350cf3831`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a9350cf3831) - Check existence of window and document variable for confluence SSR to work
2811
+ - [#35233](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35233)
2812
+ [`a9350cf3831`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a9350cf3831) - Check
2813
+ existence of window and document variable for confluence SSR to work
2049
2814
 
2050
2815
  ## 1.6.7
2051
2816
 
2052
2817
  ### Patch Changes
2053
2818
 
2054
- - [#35788](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35788) [`18344c31ea3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18344c31ea3) - [ED-13910] Fix EditorView getPos type
2819
+ - [#35788](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35788)
2820
+ [`18344c31ea3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18344c31ea3) -
2821
+ [ED-13910] Fix EditorView getPos type
2055
2822
 
2056
2823
  ## 1.6.6
2057
2824
 
2058
2825
  ### Patch Changes
2059
2826
 
2060
- - [#35782](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35782) [`73b5128036b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/73b5128036b) - [ED-17082] Mark package as a singleton one
2061
- - Updated dependencies
2827
+ - [#35782](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35782)
2828
+ [`73b5128036b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/73b5128036b) -
2829
+ [ED-17082] Mark package as a singleton one
2830
+ - Updated dependencies
2062
2831
 
2063
2832
  ## 1.6.5
2064
2833
 
2065
2834
  ### Patch Changes
2066
2835
 
2067
- - [#35506](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35506) [`dcb378acc03`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dcb378acc03) - [ux] ED-17625: add restriction of resizing table
2836
+ - [#35506](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35506)
2837
+ [`dcb378acc03`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dcb378acc03) - [ux]
2838
+ ED-17625: add restriction of resizing table
2068
2839
 
2069
2840
  ## 1.6.4
2070
2841
 
2071
2842
  ### Patch Changes
2072
2843
 
2073
- - [#35353](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35353) [`5e01082b600`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5e01082b600) - Extracting SelectionBasedNodeView to editor-common.
2074
- - Updated dependencies
2844
+ - [#35353](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35353)
2845
+ [`5e01082b600`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5e01082b600) -
2846
+ Extracting SelectionBasedNodeView to editor-common.
2847
+ - Updated dependencies
2075
2848
 
2076
2849
  ## 1.6.3
2077
2850
 
2078
2851
  ### Patch Changes
2079
2852
 
2080
- - [#35009](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35009) [`1202f6f0a82`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1202f6f0a82) - ED-16692: add logic to position FloatingContextualButton correctly when sticky and scrolling
2853
+ - [#35009](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35009)
2854
+ [`1202f6f0a82`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1202f6f0a82) -
2855
+ ED-16692: add logic to position FloatingContextualButton correctly when sticky and scrolling
2081
2856
 
2082
2857
  ## 1.6.2
2083
2858
 
2084
2859
  ### Patch Changes
2085
2860
 
2086
- - Updated dependencies
2861
+ - Updated dependencies
2087
2862
 
2088
2863
  ## 1.6.1
2089
2864
 
2090
2865
  ### Patch Changes
2091
2866
 
2092
- - [#35227](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35227) [`b48d0a5f88f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b48d0a5f88f) - Create new placeholder for the floating toolbar plugin and use a new action to replace the forceFocusSelector action.
2867
+ - [#35227](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35227)
2868
+ [`b48d0a5f88f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b48d0a5f88f) - Create
2869
+ new placeholder for the floating toolbar plugin and use a new action to replace the
2870
+ forceFocusSelector action.
2093
2871
 
2094
2872
  ## 1.6.0
2095
2873
 
2096
2874
  ### Minor Changes
2097
2875
 
2098
- - [#34954](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34954) [`89989e06f43`](https://bitbucket.org/atlassian/atlassian-frontend/commits/89989e06f43) - [ux] Adding initial Resizer to table plugin behind a platform feature flag, allowing tables to resize to a custom width. This change also includes the following refactors:- change calcTableWidth function to return number instead of px- allowing tables to use breakout values when allowColumnResize is disabled
2876
+ - [#34954](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34954)
2877
+ [`89989e06f43`](https://bitbucket.org/atlassian/atlassian-frontend/commits/89989e06f43) - [ux]
2878
+ Adding initial Resizer to table plugin behind a platform feature flag, allowing tables to resize
2879
+ to a custom width. This change also includes the following refactors:- change calcTableWidth
2880
+ function to return number instead of px- allowing tables to use breakout values when
2881
+ allowColumnResize is disabled
2099
2882
 
2100
2883
  ### Patch Changes
2101
2884
 
2102
- - Updated dependencies
2885
+ - Updated dependencies
2103
2886
 
2104
2887
  ## 1.5.5
2105
2888
 
2106
2889
  ### Patch Changes
2107
2890
 
2108
- - Updated dependencies
2891
+ - Updated dependencies
2109
2892
 
2110
2893
  ## 1.5.4
2111
2894
 
2112
2895
  ### Patch Changes
2113
2896
 
2114
- - [#35131](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35131) [`00d7488cf36`](https://bitbucket.org/atlassian/atlassian-frontend/commits/00d7488cf36) - [ux] The table shadow sentinels when rendered out of view would sometimes return a 0 root bounds object in the intersection observer. This became an issue because we ignore intersection entities with 0 root bounds. This fixes the right shadow not appear on tablessimply by removing the root bounds check from the observer
2897
+ - [#35131](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35131)
2898
+ [`00d7488cf36`](https://bitbucket.org/atlassian/atlassian-frontend/commits/00d7488cf36) - [ux]
2899
+ The table shadow sentinels when rendered out of view would sometimes return a 0 root bounds
2900
+ object in the intersection observer. This became an issue because we ignore intersection
2901
+ entities with 0 root bounds. This fixes the right shadow not appear on tablessimply by removing
2902
+ the root bounds check from the observer
2115
2903
 
2116
2904
  ## 1.5.3
2117
2905
 
2118
2906
  ### Patch Changes
2119
2907
 
2120
- - [#35053](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35053) [`b38a0fcd924`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b38a0fcd924) - Use NextEditorPlugin API for width plugin in tables.
2908
+ - [#35053](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35053)
2909
+ [`b38a0fcd924`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b38a0fcd924) - Use
2910
+ NextEditorPlugin API for width plugin in tables.
2121
2911
 
2122
2912
  ## 1.5.2
2123
2913
 
2124
2914
  ### Patch Changes
2125
2915
 
2126
- - Updated dependencies
2916
+ - Updated dependencies
2127
2917
 
2128
2918
  ## 1.5.1
2129
2919
 
2130
2920
  ### Patch Changes
2131
2921
 
2132
- - [#34644](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34644) [`26d9c8cb4b1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/26d9c8cb4b1) - Extract decorations plugin from editor-core to its own package.
2133
- - [`077e086c53f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/077e086c53f) - [ux] ED-17971 Changes the color token used for table borders and background of table controls and numbered column.
2134
- - [`8f98e952174`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8f98e952174) - [ED-17881] Fix performance issue when table has not been resized and distribute columns feature is turned on
2135
- - [`741b3acd455`](https://bitbucket.org/atlassian/atlassian-frontend/commits/741b3acd455) - This major change includes:
2922
+ - [#34644](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34644)
2923
+ [`26d9c8cb4b1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/26d9c8cb4b1) -
2924
+ Extract decorations plugin from editor-core to its own package.
2925
+ - [`077e086c53f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/077e086c53f) - [ux]
2926
+ ED-17971 Changes the color token used for table borders and background of table controls and
2927
+ numbered column.
2928
+ - [`8f98e952174`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8f98e952174) -
2929
+ [ED-17881] Fix performance issue when table has not been resized and distribute columns feature
2930
+ is turned on
2931
+ - [`741b3acd455`](https://bitbucket.org/atlassian/atlassian-frontend/commits/741b3acd455) - This
2932
+ major change includes:
2136
2933
 
2137
- - `EditorMigrationComponent` being renamed to `Editor`. This includes making component methods which should never be used private (which should never be used in normal operation and have been deprecated for several releases).
2138
- - `EditorMigrationComponent` is now removed
2139
- - Removing `useEditorNext` feature flag
2934
+ - `EditorMigrationComponent` being renamed to `Editor`. This includes making component methods
2935
+ which should never be used private (which should never be used in normal operation and have
2936
+ been deprecated for several releases).
2937
+ - `EditorMigrationComponent` is now removed
2938
+ - Removing `useEditorNext` feature flag
2140
2939
 
2141
- This change was made as part of our strategy to move to a new architecture with `EditorMigrationComponent`, now that the component has served its purpose it is no longer required.
2940
+ This change was made as part of our strategy to move to a new architecture with
2941
+ `EditorMigrationComponent`, now that the component has served its purpose it is no longer
2942
+ required.
2142
2943
 
2143
- Any references to this component can be updated like so:
2944
+ Any references to this component can be updated like so:
2144
2945
 
2145
- Before:
2946
+ Before:
2146
2947
 
2147
- ```ts
2148
- import { EditorMigrationComponent } from '@atlaskit/editor-core';
2149
- ```
2948
+ ```ts
2949
+ import { EditorMigrationComponent } from '@atlaskit/editor-core';
2950
+ ```
2150
2951
 
2151
- After:
2952
+ After:
2152
2953
 
2153
- ```ts
2154
- import { Editor } from '@atlaskit/editor-core';
2155
- ```
2954
+ ```ts
2955
+ import { Editor } from '@atlaskit/editor-core';
2956
+ ```
2156
2957
 
2157
- - Updated dependencies
2958
+ - Updated dependencies
2158
2959
 
2159
2960
  ## 1.5.0
2160
2961
 
2161
2962
  ### Minor Changes
2162
2963
 
2163
- - [#34192](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34192) [`20809d41658`](https://bitbucket.org/atlassian/atlassian-frontend/commits/20809d41658) - Added feature flag `platform.editor.custom-table-width` which toggles the new table experience
2964
+ - [#34192](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/34192)
2965
+ [`20809d41658`](https://bitbucket.org/atlassian/atlassian-frontend/commits/20809d41658) - Added
2966
+ feature flag `platform.editor.custom-table-width` which toggles the new table experience
2164
2967
 
2165
2968
  ### Patch Changes
2166
2969
 
2167
- - [`1549c2e6dda`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1549c2e6dda) - Extract width plugin from `editor-core` to separate `editor-plugin-width` package.
2168
- - Updated dependencies
2970
+ - [`1549c2e6dda`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1549c2e6dda) -
2971
+ Extract width plugin from `editor-core` to separate `editor-plugin-width` package.
2972
+ - Updated dependencies
2169
2973
 
2170
2974
  ## 1.4.1
2171
2975
 
2172
2976
  ### Patch Changes
2173
2977
 
2174
- - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793) [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
2175
- - Updated dependencies
2978
+ - [#33793](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33793)
2979
+ [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
2980
+ legacy types are published for TS 4.5-4.8
2981
+ - Updated dependencies
2176
2982
 
2177
2983
  ## 1.4.0
2178
2984
 
2179
2985
  ### Minor Changes
2180
2986
 
2181
- - [#33771](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33771) [`8a391616ecc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8a391616ecc) - Moving insert node API to a new editor plugin to allow it to be more extensible. Also exposing a new editor plugin action for tables to allow for consistent insertion.
2987
+ - [#33771](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33771)
2988
+ [`8a391616ecc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8a391616ecc) - Moving
2989
+ insert node API to a new editor plugin to allow it to be more extensible. Also exposing a new
2990
+ editor plugin action for tables to allow for consistent insertion.
2182
2991
 
2183
2992
  ### Patch Changes
2184
2993
 
2185
- - [`5cc449dac8d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5cc449dac8d) - Decouple card plugin so that it uses new NextEditorPlugin for any injected dependencies.
2186
- - [`b804d3ad561`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b804d3ad561) - Remove unused code related to GASv2 table analytics from editor-plugin table, editor-core and editor-common
2187
- - [`6550d08f5af`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6550d08f5af) - [ux] Color picker button should not be focused after selecting color.
2188
- - [`f621ae6490a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f621ae6490a) - Adding type dependency on analytics plugin to tables plugin.
2189
- - [`a142ba1aa28`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a142ba1aa28) - [ED17172] Bump prosemirror-model to 1.16.0 and prosemirror-view to 1.23.7 and removed work-arounds for fixed issues
2190
- - Updated dependencies
2994
+ - [`5cc449dac8d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5cc449dac8d) -
2995
+ Decouple card plugin so that it uses new NextEditorPlugin for any injected dependencies.
2996
+ - [`b804d3ad561`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b804d3ad561) - Remove
2997
+ unused code related to GASv2 table analytics from editor-plugin table, editor-core and
2998
+ editor-common
2999
+ - [`6550d08f5af`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6550d08f5af) - [ux]
3000
+ Color picker button should not be focused after selecting color.
3001
+ - [`f621ae6490a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f621ae6490a) - Adding
3002
+ type dependency on analytics plugin to tables plugin.
3003
+ - [`a142ba1aa28`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a142ba1aa28) -
3004
+ [ED17172] Bump prosemirror-model to 1.16.0 and prosemirror-view to 1.23.7 and removed
3005
+ work-arounds for fixed issues
3006
+ - Updated dependencies
2191
3007
 
2192
3008
  ## 1.3.1
2193
3009
 
2194
3010
  ### Patch Changes
2195
3011
 
2196
- - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649) [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
2197
- - Updated dependencies
3012
+ - [#33649](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33649)
3013
+ [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) -
3014
+ Upgrade Typescript from `4.5.5` to `4.9.5`
3015
+ - Updated dependencies
2198
3016
 
2199
3017
  ## 1.3.0
2200
3018
 
2201
3019
  ### Minor Changes
2202
3020
 
2203
- - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258) [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
3021
+ - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258)
3022
+ [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
3023
+ minor dependency bump
2204
3024
 
2205
3025
  ### Patch Changes
2206
3026
 
2207
- - Updated dependencies
3027
+ - Updated dependencies
2208
3028
 
2209
3029
  ## 1.2.7
2210
3030
 
2211
3031
  ### Patch Changes
2212
3032
 
2213
- - [#33213](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33213) [`55b4a026119`](https://bitbucket.org/atlassian/atlassian-frontend/commits/55b4a026119) - [ux] ED-17710 Cellbackground button in context menu is tokenised.
3033
+ - [#33213](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33213)
3034
+ [`55b4a026119`](https://bitbucket.org/atlassian/atlassian-frontend/commits/55b4a026119) - [ux]
3035
+ ED-17710 Cellbackground button in context menu is tokenised.
2214
3036
 
2215
3037
  ## 1.2.6
2216
3038
 
2217
3039
  ### Patch Changes
2218
3040
 
2219
- - [#33004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33004) [`0ffb55018c9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0ffb55018c9) - Revert "[ED-17172] Bumped prosemirror-view from 1.23.2 to 1.23.7 and removed work-around for fixed issues"
2220
- - [`888cd482b98`](https://bitbucket.org/atlassian/atlassian-frontend/commits/888cd482b98) - Fix logic of generated new duplicated localIds when pasting a copied node above the copied node
2221
- - Updated dependencies
3041
+ - [#33004](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33004)
3042
+ [`0ffb55018c9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0ffb55018c9) - Revert
3043
+ "[ED-17172] Bumped prosemirror-view from 1.23.2 to 1.23.7 and removed work-around for fixed
3044
+ issues"
3045
+ - [`888cd482b98`](https://bitbucket.org/atlassian/atlassian-frontend/commits/888cd482b98) - Fix
3046
+ logic of generated new duplicated localIds when pasting a copied node above the copied node
3047
+ - Updated dependencies
2222
3048
 
2223
3049
  ## 1.2.5
2224
3050
 
2225
3051
  ### Patch Changes
2226
3052
 
2227
- - [#33045](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33045) [`115a119a42c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/115a119a42c) - [ux] ED-17710 Color palette in table context menu is tokenised.
3053
+ - [#33045](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33045)
3054
+ [`115a119a42c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/115a119a42c) - [ux]
3055
+ ED-17710 Color palette in table context menu is tokenised.
2228
3056
 
2229
3057
  ## 1.2.4
2230
3058
 
2231
3059
  ### Patch Changes
2232
3060
 
2233
- - [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424) [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY remove before merging to master; dupe adf-schema via adf-utils
2234
- - [`d9a8fe191f2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d9a8fe191f2) - [ED-17295] Update feature flag usage for media plugin
2235
- - Updated dependencies
3061
+ - [#32424](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/32424)
3062
+ [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY
3063
+ remove before merging to master; dupe adf-schema via adf-utils
3064
+ - [`d9a8fe191f2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d9a8fe191f2) -
3065
+ [ED-17295] Update feature flag usage for media plugin
3066
+ - Updated dependencies
2236
3067
 
2237
3068
  ## 1.2.3
2238
3069
 
2239
3070
  ### Patch Changes
2240
3071
 
2241
- - [#31852](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31852) [`9f9b4b1cf60`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9f9b4b1cf60) - [ux] [HOT-103036] Fix table width styling when broken out with fragment mark
3072
+ - [#31852](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31852)
3073
+ [`9f9b4b1cf60`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9f9b4b1cf60) - [ux]
3074
+ [HOT-103036] Fix table width styling when broken out with fragment mark
2242
3075
 
2243
3076
  ## 1.2.2
2244
3077
 
2245
3078
  ### Patch Changes
2246
3079
 
2247
- - [#31891](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31891) [`ef830fdabfa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ef830fdabfa) - [ED-17294] Enable type checking for Preset plugins on unit tests
2248
- - [`b7f9b82ecd8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b7f9b82ecd8) - [ED-16109] Fix deleting rows with row above and below having merged cells
2249
- - [`7946da1848a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7946da1848a) - [ux] [ED-16668] Update table shadow intersection table to observe new shadow sentinels instead of first and last cell
2250
- - Updated dependencies
3080
+ - [#31891](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31891)
3081
+ [`ef830fdabfa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ef830fdabfa) -
3082
+ [ED-17294] Enable type checking for Preset plugins on unit tests
3083
+ - [`b7f9b82ecd8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b7f9b82ecd8) -
3084
+ [ED-16109] Fix deleting rows with row above and below having merged cells
3085
+ - [`7946da1848a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7946da1848a) - [ux]
3086
+ [ED-16668] Update table shadow intersection table to observe new shadow sentinels instead of
3087
+ first and last cell
3088
+ - Updated dependencies
2251
3089
 
2252
3090
  ## 1.2.1
2253
3091
 
2254
3092
  ### Patch Changes
2255
3093
 
2256
- - [#31299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31299) [`f07824eeccc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f07824eeccc) - ED-15647 fix undo when pasting table with resized column in expand
2257
- - [`924e8493f96`](https://bitbucket.org/atlassian/atlassian-frontend/commits/924e8493f96) - [ux] [ED-16418] Fixed issue where on resize the topPosEditorElement top position which determines the height of the sticky header would not update on window resize or other actions that may affect its height
2258
- - [`2f7fff7239d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2f7fff7239d) - [ux] [ED-17271] Sticky headers now listen for width changes in the parent scroll container
2259
- - [`2367ba14aa0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2367ba14aa0) - [ux] ED-16758 Added support for theme tokens in table cell background color.
2260
- - [`1f10173bdad`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f10173bdad) - [ux] [ED-15686] Added sticky to floating contextual menu dropdown
2261
- - [`a5d7c8d0f1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a5d7c8d0f1e) - [ux] Fix of the regression caused due to https://product-fabric.atlassian.net/browse/DTR-1313
2262
- - [`deef98920f4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/deef98920f4) - [ux] ED-16718 Table scroll troll - refactor nested expand logic back into editor-common
2263
- - [`1720ddc8076`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1720ddc8076) - [ux] ED-16725 Added support for semantic tooltip names for background color palette.
2264
- - [`454e652b2ed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/454e652b2ed) - [ux] This change (TSLA-488) addresses a bug that occurs when changing the browser window size causes the
2265
- table margin to not be immediately updated for tables with active sticky headers. This change adds an
2266
- event listener for window resizing that updates the table margins.
2267
- - Updated dependencies
3094
+ - [#31299](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/31299)
3095
+ [`f07824eeccc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f07824eeccc) -
3096
+ ED-15647 fix undo when pasting table with resized column in expand
3097
+ - [`924e8493f96`](https://bitbucket.org/atlassian/atlassian-frontend/commits/924e8493f96) - [ux]
3098
+ [ED-16418] Fixed issue where on resize the topPosEditorElement top position which determines the
3099
+ height of the sticky header would not update on window resize or other actions that may affect
3100
+ its height
3101
+ - [`2f7fff7239d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2f7fff7239d) - [ux]
3102
+ [ED-17271] Sticky headers now listen for width changes in the parent scroll container
3103
+ - [`2367ba14aa0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2367ba14aa0) - [ux]
3104
+ ED-16758 Added support for theme tokens in table cell background color.
3105
+ - [`1f10173bdad`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f10173bdad) - [ux]
3106
+ [ED-15686] Added sticky to floating contextual menu dropdown
3107
+ - [`a5d7c8d0f1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a5d7c8d0f1e) - [ux]
3108
+ Fix of the regression caused due to https://product-fabric.atlassian.net/browse/DTR-1313
3109
+ - [`deef98920f4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/deef98920f4) - [ux]
3110
+ ED-16718 Table scroll troll - refactor nested expand logic back into editor-common
3111
+ - [`1720ddc8076`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1720ddc8076) - [ux]
3112
+ ED-16725 Added support for semantic tooltip names for background color palette.
3113
+ - [`454e652b2ed`](https://bitbucket.org/atlassian/atlassian-frontend/commits/454e652b2ed) - [ux]
3114
+ This change (TSLA-488) addresses a bug that occurs when changing the browser window size causes
3115
+ the table margin to not be immediately updated for tables with active sticky headers. This
3116
+ change adds an event listener for window resizing that updates the table margins.
3117
+ - Updated dependencies
2268
3118
 
2269
3119
  ## 1.2.0
2270
3120
 
2271
3121
  ### Minor Changes
2272
3122
 
2273
- - [#30248](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30248) [`1d11b24f17e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1d11b24f17e) - [ux] ED-15549 Implemented keyboard navigation in color palette
3123
+ - [#30248](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30248)
3124
+ [`1d11b24f17e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1d11b24f17e) - [ux]
3125
+ ED-15549 Implemented keyboard navigation in color palette
2274
3126
 
2275
3127
  ### Patch Changes
2276
3128
 
2277
- - [`a3b5b5b28d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a3b5b5b28d4) - [ux] Fixed issue where first row control dot was off by 10px when on narrow screens, the issue was caused by updated padding on smaller screens which adjusted the "total width" of the element, which then offset the control dot
2278
- - [`ac424e40c77`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac424e40c77) - [ED-16817] Removed isObserved flag from table sentinels after intersection observer has been disconnected
2279
- - [`6a031b9b2da`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6a031b9b2da) - [ED-16334] Merge NextEditorPlugin interface with NextEditorPluginWithDependencies
2280
- - [`e907b6924cc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e907b6924cc) - [ux] ED-16505 Update confirmation dialog message shown when data source element is about to removed
2281
- - [`19c1c5e554a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19c1c5e554a) - [ux] TSLA-487 Fixes horizontal scroll shadow and places the scroll bar on the last row instead of below the table. See expected behavior on TSLA-27
2282
- - Updated dependencies
3129
+ - [`a3b5b5b28d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a3b5b5b28d4) - [ux]
3130
+ Fixed issue where first row control dot was off by 10px when on narrow screens, the issue was
3131
+ caused by updated padding on smaller screens which adjusted the "total width" of the element,
3132
+ which then offset the control dot
3133
+ - [`ac424e40c77`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac424e40c77) -
3134
+ [ED-16817] Removed isObserved flag from table sentinels after intersection observer has been
3135
+ disconnected
3136
+ - [`6a031b9b2da`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6a031b9b2da) -
3137
+ [ED-16334] Merge NextEditorPlugin interface with NextEditorPluginWithDependencies
3138
+ - [`e907b6924cc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e907b6924cc) - [ux]
3139
+ ED-16505 Update confirmation dialog message shown when data source element is about to removed
3140
+ - [`19c1c5e554a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19c1c5e554a) - [ux]
3141
+ TSLA-487 Fixes horizontal scroll shadow and places the scroll bar on the last row instead of
3142
+ below the table. See expected behavior on TSLA-27
3143
+ - Updated dependencies
2283
3144
 
2284
3145
  ## 1.1.5
2285
3146
 
2286
3147
  ### Patch Changes
2287
3148
 
2288
- - [#30196](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30196) [`2cde23fc462`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2cde23fc462) - This changeset exists because a PR touches these packages in a way that doesn't require a release
3149
+ - [#30196](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/30196)
3150
+ [`2cde23fc462`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2cde23fc462) - This
3151
+ changeset exists because a PR touches these packages in a way that doesn't require a release
2289
3152
 
2290
3153
  ## 1.1.4
2291
3154
 
2292
3155
  ### Patch Changes
2293
3156
 
2294
- - [#29470](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29470) [`3efca940231`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3efca940231) - [ux] ED-16417 fix cell background menu item becomes blue when clicking on color palette from table contextual menu
2295
- - Updated dependencies
3157
+ - [#29470](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29470)
3158
+ [`3efca940231`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3efca940231) - [ux]
3159
+ ED-16417 fix cell background menu item becomes blue when clicking on color palette from table
3160
+ contextual menu
3161
+ - Updated dependencies
2296
3162
 
2297
3163
  ## 1.1.3
2298
3164
 
2299
3165
  ### Patch Changes
2300
3166
 
2301
- - [#29183](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29183) [`2fe7d1a47ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2fe7d1a47ab) - [ux] ED-16512: Table should not scroll on large screens after column resizing
2302
- - [`20f8e0400ae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/20f8e0400ae) - [ux] ED-16251: Added logic to respect minimum column width when adding columns to table.
2303
- - [`3820895a26d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3820895a26d) - [ux] Fix column resizing when single column is selected
2304
- - [`a2d2aedc1c6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a2d2aedc1c6) - [ux] ED-16212: Fix 1px table overflow issue
2305
- - [`06f78e978d3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/06f78e978d3) - [ux] ED-15640: Added layoutChanged check before setting scaleTable meta data to true in scaleTable function.
2306
- - [`3c3e9524f33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3c3e9524f33) - [ux] ED-16213: Prevented scroll bar when column is resized and new column is inserted in tables
2307
- - [`ad2df7a6b46`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ad2df7a6b46) - [ux] ED-16214: fix issue where last table column cannot be resized to remove scroll when inside and expand
3167
+ - [#29183](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29183)
3168
+ [`2fe7d1a47ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2fe7d1a47ab) - [ux]
3169
+ ED-16512: Table should not scroll on large screens after column resizing
3170
+ - [`20f8e0400ae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/20f8e0400ae) - [ux]
3171
+ ED-16251: Added logic to respect minimum column width when adding columns to table.
3172
+ - [`3820895a26d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3820895a26d) - [ux]
3173
+ Fix column resizing when single column is selected
3174
+ - [`a2d2aedc1c6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a2d2aedc1c6) - [ux]
3175
+ ED-16212: Fix 1px table overflow issue
3176
+ - [`06f78e978d3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/06f78e978d3) - [ux]
3177
+ ED-15640: Added layoutChanged check before setting scaleTable meta data to true in scaleTable
3178
+ function.
3179
+ - [`3c3e9524f33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3c3e9524f33) - [ux]
3180
+ ED-16213: Prevented scroll bar when column is resized and new column is inserted in tables
3181
+ - [`ad2df7a6b46`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ad2df7a6b46) - [ux]
3182
+ ED-16214: fix issue where last table column cannot be resized to remove scroll when inside and
3183
+ expand
2308
3184
 
2309
3185
  ## 1.1.2
2310
3186
 
2311
3187
  ### Patch Changes
2312
3188
 
2313
- - Updated dependencies
3189
+ - Updated dependencies
2314
3190
 
2315
3191
  ## 1.1.1
2316
3192
 
2317
3193
  ### Patch Changes
2318
3194
 
2319
- - [#29227](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29227) [`4ee60bafc6d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ee60bafc6d) - ED-16603: Remove tooltips from VR tests and make them opt in. To opt-in, add `allowedSideEffects` when loading the page.
3195
+ - [#29227](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/29227)
3196
+ [`4ee60bafc6d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4ee60bafc6d) -
3197
+ ED-16603: Remove tooltips from VR tests and make them opt in. To opt-in, add
3198
+ `allowedSideEffects` when loading the page.
2320
3199
 
2321
3200
  ## 1.1.0
2322
3201
 
2323
3202
  ### Minor Changes
2324
3203
 
2325
- - [#28932](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28932) [`a0a35fe7fb1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a0a35fe7fb1) - Renaming contentComponent event subject to contentComponentv2. Move errorStack attribute to nonPrivacySafeAttributes
3204
+ - [#28932](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28932)
3205
+ [`a0a35fe7fb1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a0a35fe7fb1) -
3206
+ Renaming contentComponent event subject to contentComponentv2. Move errorStack attribute to
3207
+ nonPrivacySafeAttributes
2326
3208
 
2327
3209
  ### Patch Changes
2328
3210
 
2329
- - [`cb6dc027c6d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb6dc027c6d) - [ux] Disable content editable on a table number column to prevent selection on the number column.
2330
- - Updated dependencies
3211
+ - [`cb6dc027c6d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb6dc027c6d) - [ux]
3212
+ Disable content editable on a table number column to prevent selection on the number column.
3213
+ - Updated dependencies
2331
3214
 
2332
3215
  ## 1.0.3
2333
3216
 
2334
3217
  ### Patch Changes
2335
3218
 
2336
- - [#28374](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28374) [`20117f2de5a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/20117f2de5a) - [ux] ED-16204 Fix table cell options floating toolbar context menu closes after clicking on disabled options
2337
- - [`c6c0cab10e0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c6c0cab10e0) - [ux] ED-16205 - Fix missing yellow highlight on merged table cells when hover sort column options on table floating toolbar
2338
- - [`e3b699e5069`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e3b699e5069) - ED-15794 - Fix merged cells in table not highlighting on delete hover when in bottom right corner
2339
- - [`746d7339a88`](https://bitbucket.org/atlassian/atlassian-frontend/commits/746d7339a88) - [ux] ED-15823 - Table cells on the second column would change their color upon unchecking "Header Column" table option when the selection cursor was placed in the 3rd column. This was caused by a view update not identifying the cells to update correctly. This was causing table data cells to be changed to table header cells.
2340
- - Updated dependencies
3219
+ - [#28374](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28374)
3220
+ [`20117f2de5a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/20117f2de5a) - [ux]
3221
+ ED-16204 Fix table cell options floating toolbar context menu closes after clicking on disabled
3222
+ options
3223
+ - [`c6c0cab10e0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c6c0cab10e0) - [ux]
3224
+ ED-16205 - Fix missing yellow highlight on merged table cells when hover sort column options on
3225
+ table floating toolbar
3226
+ - [`e3b699e5069`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e3b699e5069) -
3227
+ ED-15794 - Fix merged cells in table not highlighting on delete hover when in bottom right
3228
+ corner
3229
+ - [`746d7339a88`](https://bitbucket.org/atlassian/atlassian-frontend/commits/746d7339a88) - [ux]
3230
+ ED-15823 - Table cells on the second column would change their color upon unchecking "Header
3231
+ Column" table option when the selection cursor was placed in the 3rd column. This was caused by
3232
+ a view update not identifying the cells to update correctly. This was causing table data cells
3233
+ to be changed to table header cells.
3234
+ - Updated dependencies
2341
3235
 
2342
3236
  ## 1.0.2
2343
3237
 
2344
3238
  ### Patch Changes
2345
3239
 
2346
- - [#28324](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28324) [`6455cf006b3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6455cf006b3) - Builds for this package now pass through a tokens babel plugin, removing runtime invocations of the tokens() function and improving performance.
3240
+ - [#28324](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28324)
3241
+ [`6455cf006b3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6455cf006b3) - Builds
3242
+ for this package now pass through a tokens babel plugin, removing runtime invocations of the
3243
+ tokens() function and improving performance.
2347
3244
 
2348
3245
  ## 1.0.1
2349
3246
 
2350
3247
  ### Patch Changes
2351
3248
 
2352
- - [#28297](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28297) [`04f178ea323`](https://bitbucket.org/atlassian/atlassian-frontend/commits/04f178ea323) - [ux] ED-15823 - Table cells on the second column would change their color upon unchecking "Header Column" table option when the selection cursor was placed in the 3rd column. This was caused by a view update not identifying the cells to update correctly. This was causing table data cells to be changed to table header cells.
3249
+ - [#28297](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28297)
3250
+ [`04f178ea323`](https://bitbucket.org/atlassian/atlassian-frontend/commits/04f178ea323) - [ux]
3251
+ ED-15823 - Table cells on the second column would change their color upon unchecking "Header
3252
+ Column" table option when the selection cursor was placed in the 3rd column. This was caused by
3253
+ a view update not identifying the cells to update correctly. This was causing table data cells
3254
+ to be changed to table header cells.
2353
3255
 
2354
3256
  ## 1.0.0
2355
3257
 
2356
3258
  ### Major Changes
2357
3259
 
2358
- - [#28090](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28090) [`5d317ed8aa3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5d317ed8aa3) - [ux] ED-15882: Implement custom starting numbers for orderedList nodes in adf-schema, editor, renderer, transformers behind restartNumberedLists feature flag. Users will be able to set a custom starting number when typing to create a numbered list in the Editor and this will be persisted across Renderer and other format transformations.
3260
+ - [#28090](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/28090)
3261
+ [`5d317ed8aa3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5d317ed8aa3) - [ux]
3262
+ ED-15882: Implement custom starting numbers for orderedList nodes in adf-schema, editor,
3263
+ renderer, transformers behind restartNumberedLists feature flag. Users will be able to set a
3264
+ custom starting number when typing to create a numbered list in the Editor and this will be
3265
+ persisted across Renderer and other format transformations.
2359
3266
 
2360
- Note: restartNumberedLists will be off by default. To enable it, consumers will need to set <Editor featureFlags={{ restartNumberedLists: true }}> or <Renderer featureFlags={{ restartNumberedLists: true }}>
3267
+ Note: restartNumberedLists will be off by default. To enable it, consumers will need to set
3268
+ <Editor featureFlags={{ restartNumberedLists: true }}> or <Renderer
3269
+ featureFlags={{ restartNumberedLists: true }}>
2361
3270
 
2362
3271
  ### Minor Changes
2363
3272
 
2364
- - [`8820442c2b2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8820442c2b2) - [ux] ED-15709: add feature for delete element if it is `isReferencedSource` is `true`
2365
-
2366
- - add checkbox confirmation dialog when then config have `isReferentiality.`
2367
- - add referentiality helper functions.
2368
- - update confirmDialog config to a handler to reduce traverse times.
2369
- - user can now tick checkbox to delete descendent nodes or only selected node when user click the delete icon in floating toolbar.
2370
-
2371
- ### Patch Changes
2372
-
2373
- - [`f0901dad354`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f0901dad354) - ED-16218 - Patch to fix editor.table.colorPicker id
2374
- - [`bd809217772`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bd809217772) - [ux] Table plugin will now re-read the selection or re-parse the range around the mutation for 'selection' mutations
2375
- - [`ed617ce197c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ed617ce197c) - [ux] DSP-4451 - Adds design tokens to table overflow shadows. Fixes visual bug with table overflow shadow size and placement.
2376
- - [`38a9332eed9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/38a9332eed9) - [ux] Fixed sticky header related table render issues when header row is toggled
2377
- - [`7a123e47141`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7a123e47141) - [ux] Make sure sticky header is only applied to first row
2378
- - [`233e03b2d92`](https://bitbucket.org/atlassian/atlassian-frontend/commits/233e03b2d92) - ED-16007 To highlight the table rows and columns when the 'Delete Row' and 'Delete Column' options are highlighted in the 'cell options' menu of floating toolbar
2379
- - [`f788287d932`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f788287d932) - [ux] Fix table sticky header becoming unsticky when cursor moves below table
2380
- - [`60068f7fcbe`](https://bitbucket.org/atlassian/atlassian-frontend/commits/60068f7fcbe) - [ED-16007] Changes made to enable the keyboard accessibility to the table's floating toolbar
2381
-
2382
- 1. Use Alt+F10 to access the table's floating toolbar
2383
- 2. Use 'Esc' to return to table
2384
- 3. If any of the options accessed in dropdown of floating toolbar the focus should be retained on editor's current selection.
2385
-
2386
- - Updated dependencies
3273
+ - [`8820442c2b2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8820442c2b2) - [ux]
3274
+ ED-15709: add feature for delete element if it is `isReferencedSource` is `true`
3275
+
3276
+ - add checkbox confirmation dialog when then config have `isReferentiality.`
3277
+ - add referentiality helper functions.
3278
+ - update confirmDialog config to a handler to reduce traverse times.
3279
+ - user can now tick checkbox to delete descendent nodes or only selected node when user click
3280
+ the delete icon in floating toolbar.
3281
+
3282
+ ### Patch Changes
3283
+
3284
+ - [`f0901dad354`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f0901dad354) -
3285
+ ED-16218 - Patch to fix editor.table.colorPicker id
3286
+ - [`bd809217772`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bd809217772) - [ux]
3287
+ Table plugin will now re-read the selection or re-parse the range around the mutation for
3288
+ 'selection' mutations
3289
+ - [`ed617ce197c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ed617ce197c) - [ux]
3290
+ DSP-4451 - Adds design tokens to table overflow shadows. Fixes visual bug with table overflow
3291
+ shadow size and placement.
3292
+ - [`38a9332eed9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/38a9332eed9) - [ux]
3293
+ Fixed sticky header related table render issues when header row is toggled
3294
+ - [`7a123e47141`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7a123e47141) - [ux]
3295
+ Make sure sticky header is only applied to first row
3296
+ - [`233e03b2d92`](https://bitbucket.org/atlassian/atlassian-frontend/commits/233e03b2d92) -
3297
+ ED-16007 To highlight the table rows and columns when the 'Delete Row' and 'Delete Column'
3298
+ options are highlighted in the 'cell options' menu of floating toolbar
3299
+ - [`f788287d932`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f788287d932) - [ux]
3300
+ Fix table sticky header becoming unsticky when cursor moves below table
3301
+ - [`60068f7fcbe`](https://bitbucket.org/atlassian/atlassian-frontend/commits/60068f7fcbe) -
3302
+ [ED-16007] Changes made to enable the keyboard accessibility to the table's floating toolbar
3303
+
3304
+ 1. Use Alt+F10 to access the table's floating toolbar
3305
+ 2. Use 'Esc' to return to table
3306
+ 3. If any of the options accessed in dropdown of floating toolbar the focus should be retained
3307
+ on editor's current selection.
3308
+
3309
+ - Updated dependencies
2387
3310
 
2388
3311
  ## 0.2.6
2389
3312
 
2390
3313
  ### Patch Changes
2391
3314
 
2392
- - Updated dependencies
3315
+ - Updated dependencies
2393
3316
 
2394
3317
  ## 0.2.5
2395
3318
 
2396
3319
  ### Patch Changes
2397
3320
 
2398
- - Updated dependencies
3321
+ - Updated dependencies
2399
3322
 
2400
3323
  ## 0.2.4
2401
3324
 
2402
3325
  ### Patch Changes
2403
3326
 
2404
- - [#27999](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27999) [`49588ece345`](https://bitbucket.org/atlassian/atlassian-frontend/commits/49588ece345) - Fixed regression where resize line would not show up for selected cell
3327
+ - [#27999](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27999)
3328
+ [`49588ece345`](https://bitbucket.org/atlassian/atlassian-frontend/commits/49588ece345) - Fixed
3329
+ regression where resize line would not show up for selected cell
2405
3330
 
2406
3331
  ## 0.2.3
2407
3332
 
2408
3333
  ### Patch Changes
2409
3334
 
2410
- - [#26712](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26712) [`c472a1eed2f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c472a1eed2f) - DSP-3443 Updates tokens used for floating buttons; updated appearances only visible in applications configured to use the new Tokens API (currently in alpha).
2411
- - [`47f1f76cb80`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47f1f76cb80) - Fix table delete button hover bug
2412
- - [`8a11811caca`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8a11811caca) - ED-15298 clean up table cell optimisation
2413
- - [`2c992c530da`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2c992c530da) - DSP-5929 - Adds design tokens to table column and row button background color. Updated appearances only visible in applications configured to use the new Tokens API (currently in alpha).
2414
- - [`dc699dd58ce`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dc699dd58ce) - DSP-4461 - Updates the selected, hover and danger state colors for table row and column buttons to subtler color versions. Updated appearances only visible in applications configured to use the new Tokens API (currently in alpha).
2415
- - [`0a781873466`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0a781873466) - ED-15702: Add check on distribute columns option when table resizing
2416
- - [`7bf4281949a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7bf4281949a) - ED-15704 - Fix missing hover inducators on Delete column and Delete row under table floating toolbar context menu
2417
- - [`de571f84591`](https://bitbucket.org/atlassian/atlassian-frontend/commits/de571f84591) - [ux] ED-15705: added tooltip for sorting back in when table contains merged cell
2418
- - [`28e25520771`](https://bitbucket.org/atlassian/atlassian-frontend/commits/28e25520771) - [ED-16264] changes made to fix a regression caused in ED-15483 and ED-15497 , The arrow key navigation in 'Edit Link' 'Alt Text' popup and 'cell options' popup of table is hijacked incorrectly. post this fix the arrow key navigation behaviour should be deafult in these two popups
2419
- - [`359c6e79403`](https://bitbucket.org/atlassian/atlassian-frontend/commits/359c6e79403) - [ux] Fixed regression where last column of a table was unable to be resized to recover from an overflow state.
2420
- - [`47dfcc04652`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47dfcc04652) - ED-15703 - Minor change on floating toolbar to allow z-index value to be passed as parameter
2421
- - [`92547defc70`](https://bitbucket.org/atlassian/atlassian-frontend/commits/92547defc70) - [ux] ED-15795 Fixed an issue where table cells would retain table header design after a split operation. This occurs when tableCellOptimization and stickyHeaders are enabled on for tables
2422
- - [`66783618ce5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/66783618ce5) - DSP-7200 - Adds design tokens to background color for non-custom color cell. Updated appearances only visible in applications configured to use the new Tokens API (currently in alpha).
2423
- - [`95c94af3911`](https://bitbucket.org/atlassian/atlassian-frontend/commits/95c94af3911) - [ux] Fix table danger styles persisting when table in not in selection
2424
- - Updated dependencies
3335
+ - [#26712](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26712)
3336
+ [`c472a1eed2f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c472a1eed2f) -
3337
+ DSP-3443 Updates tokens used for floating buttons; updated appearances only visible in
3338
+ applications configured to use the new Tokens API (currently in alpha).
3339
+ - [`47f1f76cb80`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47f1f76cb80) - Fix
3340
+ table delete button hover bug
3341
+ - [`8a11811caca`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8a11811caca) -
3342
+ ED-15298 clean up table cell optimisation
3343
+ - [`2c992c530da`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2c992c530da) -
3344
+ DSP-5929 - Adds design tokens to table column and row button background color. Updated
3345
+ appearances only visible in applications configured to use the new Tokens API (currently in
3346
+ alpha).
3347
+ - [`dc699dd58ce`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dc699dd58ce) -
3348
+ DSP-4461 - Updates the selected, hover and danger state colors for table row and column buttons
3349
+ to subtler color versions. Updated appearances only visible in applications configured to use
3350
+ the new Tokens API (currently in alpha).
3351
+ - [`0a781873466`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0a781873466) -
3352
+ ED-15702: Add check on distribute columns option when table resizing
3353
+ - [`7bf4281949a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7bf4281949a) -
3354
+ ED-15704 - Fix missing hover inducators on Delete column and Delete row under table floating
3355
+ toolbar context menu
3356
+ - [`de571f84591`](https://bitbucket.org/atlassian/atlassian-frontend/commits/de571f84591) - [ux]
3357
+ ED-15705: added tooltip for sorting back in when table contains merged cell
3358
+ - [`28e25520771`](https://bitbucket.org/atlassian/atlassian-frontend/commits/28e25520771) -
3359
+ [ED-16264] changes made to fix a regression caused in ED-15483 and ED-15497 , The arrow key
3360
+ navigation in 'Edit Link' 'Alt Text' popup and 'cell options' popup of table is hijacked
3361
+ incorrectly. post this fix the arrow key navigation behaviour should be deafult in these two
3362
+ popups
3363
+ - [`359c6e79403`](https://bitbucket.org/atlassian/atlassian-frontend/commits/359c6e79403) - [ux]
3364
+ Fixed regression where last column of a table was unable to be resized to recover from an
3365
+ overflow state.
3366
+ - [`47dfcc04652`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47dfcc04652) -
3367
+ ED-15703 - Minor change on floating toolbar to allow z-index value to be passed as parameter
3368
+ - [`92547defc70`](https://bitbucket.org/atlassian/atlassian-frontend/commits/92547defc70) - [ux]
3369
+ ED-15795 Fixed an issue where table cells would retain table header design after a split
3370
+ operation. This occurs when tableCellOptimization and stickyHeaders are enabled on for tables
3371
+ - [`66783618ce5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/66783618ce5) -
3372
+ DSP-7200 - Adds design tokens to background color for non-custom color cell. Updated appearances
3373
+ only visible in applications configured to use the new Tokens API (currently in alpha).
3374
+ - [`95c94af3911`](https://bitbucket.org/atlassian/atlassian-frontend/commits/95c94af3911) - [ux]
3375
+ Fix table danger styles persisting when table in not in selection
3376
+ - Updated dependencies
2425
3377
 
2426
3378
  ## 0.2.2
2427
3379
 
2428
3380
  ### Patch Changes
2429
3381
 
2430
- - [#27931](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27931) [`b68f5ae3b64`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b68f5ae3b64) - [ED-16384] Add sideEffects false
3382
+ - [#27931](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27931)
3383
+ [`b68f5ae3b64`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b68f5ae3b64) -
3384
+ [ED-16384] Add sideEffects false
2431
3385
 
2432
3386
  ## 0.2.1
2433
3387
 
2434
3388
  ### Patch Changes
2435
3389
 
2436
- - [#26320](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26320) [`9ae762b0920`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9ae762b0920) - removing unused prop 'stickToolbarToBottom'
2437
- - [`f240c3eb761`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f240c3eb761) - [ux] Prevent cursor selection from being reset when delete button is clicked
3390
+ - [#26320](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26320)
3391
+ [`9ae762b0920`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9ae762b0920) -
3392
+ removing unused prop 'stickToolbarToBottom'
3393
+ - [`f240c3eb761`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f240c3eb761) - [ux]
3394
+ Prevent cursor selection from being reset when delete button is clicked
2438
3395
 
2439
- The fix ensures that when removing a row or column via the delete button, the cursor will stay within the table.
3396
+ The fix ensures that when removing a row or column via the delete button, the cursor will stay
3397
+ within the table.
2440
3398
 
2441
- Reference https://discuss.prosemirror.net/t/setting-selection-to-newly-inserted-text-node/3615/6
3399
+ Reference https://discuss.prosemirror.net/t/setting-selection-to-newly-inserted-text-node/3615/6
2442
3400
 
2443
- - [`0708f3901cd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0708f3901cd) - [ux] This change fixes a bug where the shadows at the bottom left and right of the table extend too far when horizontal scroll and sticky header are active.
2444
- - [`aa502f7cc6f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aa502f7cc6f) - [ux] Fix misalignment between active sticky header and the rest of the table when user has scrolled horizontally
2445
- - [`3c75d643fb2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3c75d643fb2) - [ux] This change addresses a bug that occurs when the sticky header is active and there is misalignment between the row height for the leftmost grey column and the rest of the table. This change contains CSS changes that change the top margin of the table when sticky header is active, the white space of the table, and the top border of the table.
3401
+ - [`0708f3901cd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0708f3901cd) - [ux]
3402
+ This change fixes a bug where the shadows at the bottom left and right of the table extend too
3403
+ far when horizontal scroll and sticky header are active.
3404
+ - [`aa502f7cc6f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aa502f7cc6f) - [ux]
3405
+ Fix misalignment between active sticky header and the rest of the table when user has scrolled
3406
+ horizontally
3407
+ - [`3c75d643fb2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3c75d643fb2) - [ux]
3408
+ This change addresses a bug that occurs when the sticky header is active and there is
3409
+ misalignment between the row height for the leftmost grey column and the rest of the table. This
3410
+ change contains CSS changes that change the top margin of the table when sticky header is
3411
+ active, the white space of the table, and the top border of the table.
2446
3412
 
2447
3413
  ## 0.2.0
2448
3414
 
2449
3415
  ### Minor Changes
2450
3416
 
2451
- - [#27112](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27112) [`efac742b6c3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/efac742b6c3) - Removed extra column resize handlers
3417
+ - [#27112](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27112)
3418
+ [`efac742b6c3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/efac742b6c3) -
3419
+ Removed extra column resize handlers
2452
3420
 
2453
3421
  ## 0.1.2
2454
3422
 
2455
3423
  ### Patch Changes
2456
3424
 
2457
- - Updated dependencies
3425
+ - Updated dependencies
2458
3426
 
2459
3427
  ## 0.1.1
2460
3428
 
2461
3429
  ### Patch Changes
2462
3430
 
2463
- - [#27262](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27262) [`2ce5df13885`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2ce5df13885) - [ux] Prevent cursor selection from being reset when delete button is clicked
2464
- The fix ensures that when removing a row or column via the delete button, the cursor will stay within the table.
2465
- Reference https://discuss.prosemirror.net/t/setting-selection-to-newly-inserted-text-node/3615/6
3431
+ - [#27262](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27262)
3432
+ [`2ce5df13885`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2ce5df13885) - [ux]
3433
+ Prevent cursor selection from being reset when delete button is clicked The fix ensures that
3434
+ when removing a row or column via the delete button, the cursor will stay within the table.
3435
+ Reference https://discuss.prosemirror.net/t/setting-selection-to-newly-inserted-text-node/3615/6
2466
3436
 
2467
3437
  ## 0.1.0
2468
3438
 
2469
3439
  ### Minor Changes
2470
3440
 
2471
- - [#25860](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25860) [`90c44a68da2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/90c44a68da2) - Removed editor-core table plugin and replaced with new `editor-plugin-table` package. This change required adding copying new table changes from editor-core to the new table package, moving IconTable to shared package, and creating new entry-points from editor-plugin-table. `getPluginState` from `packages/editor/editor-plugin-table/src/plugins/table/pm-plugins/table-resizing` was also exported.
2472
-
2473
- [ED-15674][ed15739] [ED-15633]
2474
-
2475
- - [`1e1ac6d1d15`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1e1ac6d1d15) - [ED-15501] Removal of coupled table-resizing code in `editor-core` media and card plugin. This makes entry-point `/table-resizing` from `editor-plugin-table` unused so removed the entry-point.
2476
-
2477
- ### Patch Changes
2478
-
2479
- - [`29d7f84c649`](https://bitbucket.org/atlassian/atlassian-frontend/commits/29d7f84c649) - Removed styled-components peerDependency
2480
- - [`30e8425f7d6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/30e8425f7d6) - [ux] ED-15706 Reenable copy button on editor-plugin-table. Added property copyButton to floatingToolbarConfig.
2481
- - [`e9168851af4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e9168851af4) - This changes addresses a bug that occurs when a user is resizing tables and receives a TypeError (found on Sentry). This change adds a null check on columns existing in the growColumn and shrinkColumn functions so that we do not try to access a column that doesn't exist.
2482
- - [`ac8b10d645e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac8b10d645e) - This change addresses a RangeError on `getRelativeDomCellWidths` found on Sentry. It sets the check for `colspan` to be strict equals to one as the value comes from the first table row's colspan DOM attribute and cannot be negative.
2483
-
2484
- Reference: https://sentry.io/organizations/atlassian-2y/issues/3434914334/?project=5988900
2485
-
2486
- - [`46703fdde00`](https://bitbucket.org/atlassian/atlassian-frontend/commits/46703fdde00) - This change addresses a bug that occurs when a user is clicking into an element inside the table and receives a RangeError (found on Sentry). This change adds bounds, NaN, and type checks when reading a cellIndex from tableMap so that we don't pass NaN or undefined to the call to nodeAt.
2487
- - [`edb93baa953`](https://bitbucket.org/atlassian/atlassian-frontend/commits/edb93baa953) - Moved sendLogs to editor-common. Re-exported in editor-core and import sendLogs from editor-common in editor-plugin-table package.
2488
- - Updated dependencies
3441
+ - [#25860](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25860)
3442
+ [`90c44a68da2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/90c44a68da2) -
3443
+ Removed editor-core table plugin and replaced with new `editor-plugin-table` package. This
3444
+ change required adding copying new table changes from editor-core to the new table package,
3445
+ moving IconTable to shared package, and creating new entry-points from editor-plugin-table.
3446
+ `getPluginState` from
3447
+ `packages/editor/editor-plugin-table/src/plugins/table/pm-plugins/table-resizing` was also
3448
+ exported.
3449
+
3450
+ [ED-15674][ed15739] [ED-15633]
3451
+
3452
+ - [`1e1ac6d1d15`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1e1ac6d1d15) -
3453
+ [ED-15501] Removal of coupled table-resizing code in `editor-core` media and card plugin. This
3454
+ makes entry-point `/table-resizing` from `editor-plugin-table` unused so removed the
3455
+ entry-point.
3456
+
3457
+ ### Patch Changes
3458
+
3459
+ - [`29d7f84c649`](https://bitbucket.org/atlassian/atlassian-frontend/commits/29d7f84c649) -
3460
+ Removed styled-components peerDependency
3461
+ - [`30e8425f7d6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/30e8425f7d6) - [ux]
3462
+ ED-15706 Reenable copy button on editor-plugin-table. Added property copyButton to
3463
+ floatingToolbarConfig.
3464
+ - [`e9168851af4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e9168851af4) - This
3465
+ changes addresses a bug that occurs when a user is resizing tables and receives a TypeError
3466
+ (found on Sentry). This change adds a null check on columns existing in the growColumn and
3467
+ shrinkColumn functions so that we do not try to access a column that doesn't exist.
3468
+ - [`ac8b10d645e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ac8b10d645e) - This
3469
+ change addresses a RangeError on `getRelativeDomCellWidths` found on Sentry. It sets the check
3470
+ for `colspan` to be strict equals to one as the value comes from the first table row's colspan
3471
+ DOM attribute and cannot be negative.
3472
+
3473
+ Reference: https://sentry.io/organizations/atlassian-2y/issues/3434914334/?project=5988900
3474
+
3475
+ - [`46703fdde00`](https://bitbucket.org/atlassian/atlassian-frontend/commits/46703fdde00) - This
3476
+ change addresses a bug that occurs when a user is clicking into an element inside the table and
3477
+ receives a RangeError (found on Sentry). This change adds bounds, NaN, and type checks when
3478
+ reading a cellIndex from tableMap so that we don't pass NaN or undefined to the call to nodeAt.
3479
+ - [`edb93baa953`](https://bitbucket.org/atlassian/atlassian-frontend/commits/edb93baa953) - Moved
3480
+ sendLogs to editor-common. Re-exported in editor-core and import sendLogs from editor-common in
3481
+ editor-plugin-table package.
3482
+ - Updated dependencies
2489
3483
 
2490
3484
  ## 0.0.10
2491
3485
 
2492
3486
  ### Patch Changes
2493
3487
 
2494
- - [#25922](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25922) [`b519be31909`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b519be31909) - Improve FloatingDeleteButton accessibility and update tests
3488
+ - [#25922](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25922)
3489
+ [`b519be31909`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b519be31909) -
3490
+ Improve FloatingDeleteButton accessibility and update tests
2495
3491
 
2496
3492
  ## 0.0.9
2497
3493
 
2498
3494
  ### Patch Changes
2499
3495
 
2500
- - [#25924](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25924) [`30d47a9f80d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/30d47a9f80d) - This change adds data-testid to the top and bottom sticky sentinels in TableComponent and updates tests to access the sentinels by the testId.
3496
+ - [#25924](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25924)
3497
+ [`30d47a9f80d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/30d47a9f80d) - This
3498
+ change adds data-testid to the top and bottom sticky sentinels in TableComponent and updates
3499
+ tests to access the sentinels by the testId.
2501
3500
 
2502
3501
  ## 0.0.8
2503
3502
 
2504
3503
  ### Patch Changes
2505
3504
 
2506
- - [#25757](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25757) [`e5b0deecf68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e5b0deecf68) - Add ability to localize for nodeview and add aria labels to RowControl and CornerControl
3505
+ - [#25757](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25757)
3506
+ [`e5b0deecf68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e5b0deecf68) - Add
3507
+ ability to localize for nodeview and add aria labels to RowControl and CornerControl
2507
3508
 
2508
3509
  ## 0.0.7
2509
3510
 
2510
3511
  ### Patch Changes
2511
3512
 
2512
- - [#25747](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25747) [`3b93848ef7e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3b93848ef7e) - This changes addresses a bug that occurs when a user is resizing tables and receives a TypeError (found on Sentry). This change adds a null check on columns existing in the growColumn and shrinkColumn functions so that we do not try to access a column that doesn't exist.
2513
- - [`a1b80e72418`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a1b80e72418) - This change addresses a RangeError on `getRelativeDomCellWidths` found on Sentry. It sets the check for `colspan` to be strict equals to one as the value comes from the first table row's colspan DOM attribute and cannot be negative.
3513
+ - [#25747](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25747)
3514
+ [`3b93848ef7e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3b93848ef7e) - This
3515
+ changes addresses a bug that occurs when a user is resizing tables and receives a TypeError
3516
+ (found on Sentry). This change adds a null check on columns existing in the growColumn and
3517
+ shrinkColumn functions so that we do not try to access a column that doesn't exist.
3518
+ - [`a1b80e72418`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a1b80e72418) - This
3519
+ change addresses a RangeError on `getRelativeDomCellWidths` found on Sentry. It sets the check
3520
+ for `colspan` to be strict equals to one as the value comes from the first table row's colspan
3521
+ DOM attribute and cannot be negative.
2514
3522
 
2515
- Reference: https://sentry.io/organizations/atlassian-2y/issues/3434914334/?project=5988900
3523
+ Reference: https://sentry.io/organizations/atlassian-2y/issues/3434914334/?project=5988900
2516
3524
 
2517
- - [`b63aa34e1fe`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b63aa34e1fe) - This change addresses a bug that occurs when a user is clicking into an element inside the table and receives a RangeError (found on Sentry). This change adds bounds, NaN, and type checks when reading a cellIndex from tableMap so that we don't pass NaN or undefined to the call to nodeAt.
3525
+ - [`b63aa34e1fe`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b63aa34e1fe) - This
3526
+ change addresses a bug that occurs when a user is clicking into an element inside the table and
3527
+ receives a RangeError (found on Sentry). This change adds bounds, NaN, and type checks when
3528
+ reading a cellIndex from tableMap so that we don't pass NaN or undefined to the call to nodeAt.
2518
3529
 
2519
3530
  ## 0.0.6
2520
3531
 
2521
3532
  ### Patch Changes
2522
3533
 
2523
- - Updated dependencies
3534
+ - Updated dependencies
2524
3535
 
2525
3536
  ## 0.0.5
2526
3537
 
2527
3538
  ### Patch Changes
2528
3539
 
2529
- - [#25637](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25637) [`75afc133d94`](https://bitbucket.org/atlassian/atlassian-frontend/commits/75afc133d94) - [ED-15625] Fix media full screen on table
3540
+ - [#25637](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25637)
3541
+ [`75afc133d94`](https://bitbucket.org/atlassian/atlassian-frontend/commits/75afc133d94) -
3542
+ [ED-15625] Fix media full screen on table
2530
3543
 
2531
3544
  ## 0.0.4
2532
3545
 
2533
3546
  ### Patch Changes
2534
3547
 
2535
- - [#25390](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25390) [`06ae7af103f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/06ae7af103f) - [ux][ed-15739] Bring back the table icon to the typeahead menu by moving IconTable component to shared package
2536
- - Updated dependencies
3548
+ - [#25390](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25390)
3549
+ [`06ae7af103f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/06ae7af103f) -
3550
+ [ux][ed-15739] Bring back the table icon to the typeahead menu by moving IconTable component to
3551
+ shared package
3552
+ - Updated dependencies
2537
3553
 
2538
3554
  ## 0.0.3
2539
3555
 
2540
3556
  ### Patch Changes
2541
3557
 
2542
- - [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874) [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade Typescript from `4.3.5` to `4.5.5`
3558
+ - [#24874](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24874)
3559
+ [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) -
3560
+ Upgrade Typescript from `4.3.5` to `4.5.5`
2543
3561
 
2544
3562
  ## 0.0.2
2545
3563
 
2546
3564
  ### Patch Changes
2547
3565
 
2548
- - [#25355](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25355) [`b18bb5420cb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b18bb5420cb) - [ED-15731] Replace the GetEditorContainerWidth API with a workaround to grab with plugin state data
3566
+ - [#25355](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/25355)
3567
+ [`b18bb5420cb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b18bb5420cb) -
3568
+ [ED-15731] Replace the GetEditorContainerWidth API with a workaround to grab with plugin state
3569
+ data
2549
3570
 
2550
3571
  ## 0.0.1
2551
3572
 
2552
3573
  ### Patch Changes
2553
3574
 
2554
- - [#24607](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24607) [`e2fa17aaee6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e2fa17aaee6) - [ED-15587] Fix types added when the copy was made
2555
- - [`36b3ba5a140`](https://bitbucket.org/atlassian/atlassian-frontend/commits/36b3ba5a140) - [ED-15618] Remove dead code with cross-reference to list plugin
2556
- - [`d459e83ce52`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d459e83ce52) - [ED-15616] Replace the unnecessary cross-reference feature editorDisabledPluginKey to use the native editor way
2557
- - [`7487d066e92`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7487d066e92) - [ED-15551] Copy ReactNodeView and dependencies into editor-common
2558
- - [`5b156047608`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5b156047608) - empty
2559
- - [`a4a59914b7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a4a59914b7c) - [ED-15634] Upgrade table package with last table core styles
2560
- - [`949bba4aaf4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/949bba4aaf4) - [ED-15556] Initial Editor Analytic API for Table extraction
2561
- - [`d43ae395cb1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d43ae395cb1) - [ED-15619] Remove cross-reference with inline card plugin
2562
- - [`7d7d541b5b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7d7d541b5b4) - [ED-15553] Remove copy button stub from next editor table
2563
- - [`1691708e13b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1691708e13b) - [ED-15555] Export getParentNodeWidth to editor-common
2564
- - Updated dependencies
3575
+ - [#24607](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/24607)
3576
+ [`e2fa17aaee6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e2fa17aaee6) -
3577
+ [ED-15587] Fix types added when the copy was made
3578
+ - [`36b3ba5a140`](https://bitbucket.org/atlassian/atlassian-frontend/commits/36b3ba5a140) -
3579
+ [ED-15618] Remove dead code with cross-reference to list plugin
3580
+ - [`d459e83ce52`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d459e83ce52) -
3581
+ [ED-15616] Replace the unnecessary cross-reference feature editorDisabledPluginKey to use the
3582
+ native editor way
3583
+ - [`7487d066e92`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7487d066e92) -
3584
+ [ED-15551] Copy ReactNodeView and dependencies into editor-common
3585
+ - [`5b156047608`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5b156047608) - empty
3586
+ - [`a4a59914b7c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a4a59914b7c) -
3587
+ [ED-15634] Upgrade table package with last table core styles
3588
+ - [`949bba4aaf4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/949bba4aaf4) -
3589
+ [ED-15556] Initial Editor Analytic API for Table extraction
3590
+ - [`d43ae395cb1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d43ae395cb1) -
3591
+ [ED-15619] Remove cross-reference with inline card plugin
3592
+ - [`7d7d541b5b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7d7d541b5b4) -
3593
+ [ED-15553] Remove copy button stub from next editor table
3594
+ - [`1691708e13b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1691708e13b) -
3595
+ [ED-15555] Export getParentNodeWidth to editor-common
3596
+ - Updated dependencies