@atlaskit/editor-plugin-table 7.11.3 → 7.11.4

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