@atlaskit/editor-plugin-table 7.11.3 → 7.11.5

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