@atlaskit/editor-plugin-table 4.0.1 → 4.0.3

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 (209) hide show
  1. package/CHANGELOG.md +146 -133
  2. package/README.md +1 -1
  3. package/dist/cjs/i18n/cs.js +2 -3
  4. package/dist/cjs/i18n/da.js +2 -3
  5. package/dist/cjs/i18n/de.js +2 -3
  6. package/dist/cjs/i18n/en.js +2 -3
  7. package/dist/cjs/i18n/en_GB.js +2 -3
  8. package/dist/cjs/i18n/en_ZZ.js +2 -3
  9. package/dist/cjs/i18n/es.js +2 -3
  10. package/dist/cjs/i18n/fi.js +2 -3
  11. package/dist/cjs/i18n/fr.js +2 -3
  12. package/dist/cjs/i18n/hu.js +2 -3
  13. package/dist/cjs/i18n/it.js +2 -3
  14. package/dist/cjs/i18n/ja.js +2 -3
  15. package/dist/cjs/i18n/ko.js +2 -3
  16. package/dist/cjs/i18n/nb.js +2 -3
  17. package/dist/cjs/i18n/nl.js +2 -3
  18. package/dist/cjs/i18n/pl.js +2 -3
  19. package/dist/cjs/i18n/pt_BR.js +2 -3
  20. package/dist/cjs/i18n/ru.js +2 -3
  21. package/dist/cjs/i18n/sv.js +2 -3
  22. package/dist/cjs/i18n/th.js +2 -3
  23. package/dist/cjs/i18n/tr.js +2 -3
  24. package/dist/cjs/i18n/uk.js +2 -3
  25. package/dist/cjs/i18n/vi.js +2 -3
  26. package/dist/cjs/i18n/zh.js +2 -3
  27. package/dist/cjs/i18n/zh_TW.js +2 -3
  28. package/dist/cjs/plugins/table/commands/clear.js +3 -5
  29. package/dist/cjs/plugins/table/commands/collapse.js +2 -3
  30. package/dist/cjs/plugins/table/commands/go-to-next-cell.js +2 -3
  31. package/dist/cjs/plugins/table/commands/hover.js +8 -15
  32. package/dist/cjs/plugins/table/commands/insert.js +8 -13
  33. package/dist/cjs/plugins/table/commands/misc.js +23 -45
  34. package/dist/cjs/plugins/table/commands/referentiality.js +2 -3
  35. package/dist/cjs/plugins/table/commands/selection.js +3 -6
  36. package/dist/cjs/plugins/table/commands/sort.js +5 -6
  37. package/dist/cjs/plugins/table/commands/split-cell.js +2 -3
  38. package/dist/cjs/plugins/table/commands/toggle.js +7 -13
  39. package/dist/cjs/plugins/table/commands-with-analytics.js +19 -37
  40. package/dist/cjs/plugins/table/create-plugin-config.js +2 -3
  41. package/dist/cjs/plugins/table/event-handlers.js +12 -22
  42. package/dist/cjs/plugins/table/handlers.js +4 -5
  43. package/dist/cjs/plugins/table/index.js +8 -9
  44. package/dist/cjs/plugins/table/nodeviews/OverflowShadowsObserver.js +5 -6
  45. package/dist/cjs/plugins/table/nodeviews/TableComponent.js +2 -3
  46. package/dist/cjs/plugins/table/nodeviews/TableContainer.js +10 -13
  47. package/dist/cjs/plugins/table/nodeviews/TableResizer.js +4 -5
  48. package/dist/cjs/plugins/table/nodeviews/TableStickyScrollbar.js +5 -10
  49. package/dist/cjs/plugins/table/nodeviews/table.js +4 -6
  50. package/dist/cjs/plugins/table/nodeviews/tableCell.js +2 -3
  51. package/dist/cjs/plugins/table/nodeviews/update-overflow-shadows.js +2 -3
  52. package/dist/cjs/plugins/table/pm-plugins/decorations/plugin.js +5 -9
  53. package/dist/cjs/plugins/table/pm-plugins/decorations/utils/column-controls.js +3 -5
  54. package/dist/cjs/plugins/table/pm-plugins/decorations/utils/column-resizing.js +3 -5
  55. package/dist/cjs/plugins/table/pm-plugins/decorations/utils/compose-decorations.js +2 -3
  56. package/dist/cjs/plugins/table/pm-plugins/default-table-selection.js +2 -3
  57. package/dist/cjs/plugins/table/pm-plugins/keymap.js +1 -2
  58. package/dist/cjs/plugins/table/pm-plugins/main.js +2 -3
  59. package/dist/cjs/plugins/table/pm-plugins/plugin-factory.js +3 -6
  60. package/dist/cjs/plugins/table/pm-plugins/plugin-key.js +1 -2
  61. package/dist/cjs/plugins/table/pm-plugins/safari-delete-composition-text-issue-workaround.js +3 -5
  62. package/dist/cjs/plugins/table/pm-plugins/sticky-headers/commands.js +3 -5
  63. package/dist/cjs/plugins/table/pm-plugins/sticky-headers/nodeviews/dom.js +3 -5
  64. package/dist/cjs/plugins/table/pm-plugins/sticky-headers/nodeviews/tableRow.js +6 -8
  65. package/dist/cjs/plugins/table/pm-plugins/sticky-headers/plugin-key.js +1 -2
  66. package/dist/cjs/plugins/table/pm-plugins/sticky-headers/plugin-state.js +2 -4
  67. package/dist/cjs/plugins/table/pm-plugins/sticky-headers/plugin.js +2 -3
  68. package/dist/cjs/plugins/table/pm-plugins/sticky-headers/util.js +2 -3
  69. package/dist/cjs/plugins/table/pm-plugins/table-analytics.js +5 -8
  70. package/dist/cjs/plugins/table/pm-plugins/table-local-id.js +2 -3
  71. package/dist/cjs/plugins/table/pm-plugins/table-resizing/commands.js +7 -13
  72. package/dist/cjs/plugins/table/pm-plugins/table-resizing/event-handlers.js +3 -4
  73. package/dist/cjs/plugins/table/pm-plugins/table-resizing/plugin-factory.js +3 -6
  74. package/dist/cjs/plugins/table/pm-plugins/table-resizing/plugin-key.js +1 -2
  75. package/dist/cjs/plugins/table/pm-plugins/table-resizing/reducer.js +2 -3
  76. package/dist/cjs/plugins/table/pm-plugins/table-resizing/utils/colgroup.js +7 -13
  77. package/dist/cjs/plugins/table/pm-plugins/table-resizing/utils/column-state.js +5 -10
  78. package/dist/cjs/plugins/table/pm-plugins/table-resizing/utils/consts.js +2 -4
  79. package/dist/cjs/plugins/table/pm-plugins/table-resizing/utils/dom.js +8 -15
  80. package/dist/cjs/plugins/table/pm-plugins/table-resizing/utils/misc.js +2 -3
  81. package/dist/cjs/plugins/table/pm-plugins/table-resizing/utils/resize-column.js +2 -3
  82. package/dist/cjs/plugins/table/pm-plugins/table-resizing/utils/resize-logic.js +70 -71
  83. package/dist/cjs/plugins/table/pm-plugins/table-resizing/utils/resize-state.js +11 -21
  84. package/dist/cjs/plugins/table/pm-plugins/table-resizing/utils/scale-table.js +5 -9
  85. package/dist/cjs/plugins/table/pm-plugins/table-resizing/utils/unit-to-number.js +2 -3
  86. package/dist/cjs/plugins/table/pm-plugins/table-selection-keymap.js +1 -2
  87. package/dist/cjs/plugins/table/pm-plugins/table-width.js +3 -5
  88. package/dist/cjs/plugins/table/reducer.js +2 -3
  89. package/dist/cjs/plugins/table/toolbar.js +8 -12
  90. package/dist/cjs/plugins/table/transforms/column-width.js +4 -6
  91. package/dist/cjs/plugins/table/transforms/delete-columns.js +60 -60
  92. package/dist/cjs/plugins/table/transforms/delete-rows.js +52 -52
  93. package/dist/cjs/plugins/table/transforms/fix-tables.js +3 -6
  94. package/dist/cjs/plugins/table/transforms/replace-table.js +3 -4
  95. package/dist/cjs/plugins/table/types.js +5 -9
  96. package/dist/cjs/plugins/table/ui/ColumnResizeWidget/index.js +2 -3
  97. package/dist/cjs/plugins/table/ui/FloatingContextualButton/FixedButton.js +5 -10
  98. package/dist/cjs/plugins/table/ui/FloatingContextualButton/styles.js +3 -5
  99. package/dist/cjs/plugins/table/ui/FloatingContextualMenu/ContextualMenu.js +7 -10
  100. package/dist/cjs/plugins/table/ui/FloatingContextualMenu/index.js +1 -2
  101. package/dist/cjs/plugins/table/ui/FloatingContextualMenu/styles.js +2 -4
  102. package/dist/cjs/plugins/table/ui/FloatingDeleteButton/DeleteButton.js +1 -2
  103. package/dist/cjs/plugins/table/ui/FloatingDeleteButton/index.js +1 -2
  104. package/dist/cjs/plugins/table/ui/FloatingInsertButton/InsertButton.js +1 -2
  105. package/dist/cjs/plugins/table/ui/FloatingInsertButton/getPopupOptions.js +1 -2
  106. package/dist/cjs/plugins/table/ui/FloatingInsertButton/index.js +2 -4
  107. package/dist/cjs/plugins/table/ui/LayoutButton/index.js +1 -2
  108. package/dist/cjs/plugins/table/ui/TableFloatingControls/CornerControls/index.js +1 -2
  109. package/dist/cjs/plugins/table/ui/TableFloatingControls/NumberColumn/index.js +2 -3
  110. package/dist/cjs/plugins/table/ui/TableFloatingControls/RowControls/index.js +1 -2
  111. package/dist/cjs/plugins/table/ui/TableFloatingControls/index.js +1 -2
  112. package/dist/cjs/plugins/table/ui/common-styles.js +23 -14
  113. package/dist/cjs/plugins/table/ui/consts.js +47 -94
  114. package/dist/cjs/plugins/table/ui/messages.js +2 -3
  115. package/dist/cjs/plugins/table/ui/ui-styles.js +32 -38
  116. package/dist/cjs/plugins/table/utils/analytics.js +7 -12
  117. package/dist/cjs/plugins/table/utils/collapse.js +3 -5
  118. package/dist/cjs/plugins/table/utils/column-controls.js +6 -11
  119. package/dist/cjs/plugins/table/utils/decoration.js +10 -19
  120. package/dist/cjs/plugins/table/utils/dom.js +16 -28
  121. package/dist/cjs/plugins/table/utils/guidelines.js +1 -2
  122. package/dist/cjs/plugins/table/utils/nodes.js +12 -23
  123. package/dist/cjs/plugins/table/utils/paste.js +10 -16
  124. package/dist/cjs/plugins/table/utils/row-controls.js +7 -13
  125. package/dist/cjs/plugins/table/utils/selection.js +5 -9
  126. package/dist/cjs/plugins/table/utils/snapping.js +4 -7
  127. package/dist/cjs/plugins/table/utils/table.js +3 -5
  128. package/dist/cjs/plugins/table/utils/update-plugin-state-decorations.js +2 -3
  129. package/dist/cjs/plugins/table-plugin.js +1 -2
  130. package/dist/es2019/plugins/table/commands/insert.js +1 -1
  131. package/dist/es2019/plugins/table/commands/sort.js +1 -1
  132. package/dist/es2019/plugins/table/handlers.js +1 -1
  133. package/dist/es2019/plugins/table/toolbar.js +1 -1
  134. package/dist/es2019/plugins/table/transforms/delete-columns.js +1 -1
  135. package/dist/es2019/plugins/table/ui/FloatingContextualMenu/ContextualMenu.js +1 -1
  136. package/dist/es2019/plugins/table/ui/common-styles.js +40 -4
  137. package/dist/es2019/plugins/table/ui/ui-styles.js +223 -85
  138. package/dist/esm/plugins/table/commands/insert.js +1 -1
  139. package/dist/esm/plugins/table/commands/sort.js +1 -1
  140. package/dist/esm/plugins/table/event-handlers.js +1 -1
  141. package/dist/esm/plugins/table/handlers.js +1 -1
  142. package/dist/esm/plugins/table/index.js +7 -7
  143. package/dist/esm/plugins/table/nodeviews/OverflowShadowsObserver.js +3 -3
  144. package/dist/esm/plugins/table/nodeviews/TableComponent.js +1 -1
  145. package/dist/esm/plugins/table/nodeviews/TableContainer.js +6 -6
  146. package/dist/esm/plugins/table/nodeviews/TableResizer.js +2 -2
  147. package/dist/esm/plugins/table/nodeviews/TableStickyScrollbar.js +3 -7
  148. package/dist/esm/plugins/table/nodeviews/table.js +1 -1
  149. package/dist/esm/plugins/table/pm-plugins/sticky-headers/nodeviews/tableRow.js +3 -3
  150. package/dist/esm/plugins/table/pm-plugins/table-analytics.js +1 -1
  151. package/dist/esm/plugins/table/pm-plugins/table-resizing/event-handlers.js +1 -1
  152. package/dist/esm/plugins/table/pm-plugins/table-resizing/utils/resize-logic.js +68 -67
  153. package/dist/esm/plugins/table/toolbar.js +2 -2
  154. package/dist/esm/plugins/table/transforms/column-width.js +1 -1
  155. package/dist/esm/plugins/table/transforms/delete-columns.js +57 -56
  156. package/dist/esm/plugins/table/transforms/delete-rows.js +51 -50
  157. package/dist/esm/plugins/table/transforms/replace-table.js +1 -1
  158. package/dist/esm/plugins/table/ui/FloatingContextualMenu/ContextualMenu.js +2 -2
  159. package/dist/esm/plugins/table/ui/common-styles.js +20 -6
  160. package/dist/esm/plugins/table/ui/ui-styles.js +18 -10
  161. package/dist/esm/plugins/table/utils/analytics.js +1 -1
  162. package/dist/esm/plugins/table/utils/dom.js +1 -1
  163. package/dist/esm/plugins/table/utils/paste.js +4 -4
  164. package/dist/types/plugins/table/commands/sort.d.ts +2 -2
  165. package/dist/types/plugins/table/commands-with-analytics.d.ts +4 -4
  166. package/dist/types/plugins/table/handlers.d.ts +2 -2
  167. package/dist/types/plugins/table/nodeviews/TableComponent.d.ts +1 -1
  168. package/dist/types/plugins/table/types.d.ts +1 -1
  169. package/dist/types/plugins/table/ui/TableFloatingControls/index.d.ts +4 -4
  170. package/dist/types-ts4.5/plugins/table/commands/sort.d.ts +2 -2
  171. package/dist/types-ts4.5/plugins/table/commands-with-analytics.d.ts +4 -4
  172. package/dist/types-ts4.5/plugins/table/handlers.d.ts +2 -2
  173. package/dist/types-ts4.5/plugins/table/nodeviews/TableComponent.d.ts +1 -1
  174. package/dist/types-ts4.5/plugins/table/types.d.ts +1 -1
  175. package/dist/types-ts4.5/plugins/table/ui/TableFloatingControls/index.d.ts +4 -4
  176. package/docs/0-intro.tsx +1 -1
  177. package/package.json +8 -4
  178. package/src/__tests__/integration/__snapshots__/auto-size.ts.snap +3 -0
  179. package/src/__tests__/integration/__snapshots__/copy-button.ts.snap +2 -0
  180. package/src/__tests__/integration/__snapshots__/delete-columns.ts.snap +2 -0
  181. package/src/__tests__/integration/__snapshots__/delete-last-column-in-full-width.ts.snap +1 -0
  182. package/src/__tests__/integration/__snapshots__/delete-last-column-with-empty-action.ts.snap +1 -0
  183. package/src/__tests__/integration/__snapshots__/delete-last-row-with-empty-action.ts.snap +2 -0
  184. package/src/__tests__/integration/__snapshots__/delete-rows.ts.snap +3 -0
  185. package/src/__tests__/integration/__snapshots__/deleting-empty-paragraph-under-table.ts.snap +3 -0
  186. package/src/__tests__/integration/__snapshots__/even-columns.ts.snap +2 -0
  187. package/src/__tests__/integration/__snapshots__/insert-cell-header-with-strong-mark.ts.snap +1 -0
  188. package/src/__tests__/integration/__snapshots__/insert-row-inside-layout.ts.snap +1 -0
  189. package/src/__tests__/integration/__snapshots__/layout.ts.snap +9 -0
  190. package/src/__tests__/integration/__snapshots__/resize.ts.snap +11 -0
  191. package/src/__tests__/integration/__snapshots__/scale.ts.snap +2 -0
  192. package/src/__tests__/unit/commands/sort.ts +1 -1
  193. package/src/__tests__/unit/pm-plugins/table-width.ts +190 -1
  194. package/src/__tests__/unit/sort-column.ts +1 -1
  195. package/src/plugins/table/commands/insert.ts +1 -1
  196. package/src/plugins/table/commands/sort.ts +7 -7
  197. package/src/plugins/table/commands-with-analytics.ts +11 -6
  198. package/src/plugins/table/handlers.ts +7 -8
  199. package/src/plugins/table/nodeviews/TableComponent.tsx +1 -1
  200. package/src/plugins/table/nodeviews/table.tsx +1 -1
  201. package/src/plugins/table/toolbar.tsx +1 -1
  202. package/src/plugins/table/transforms/delete-columns.ts +1 -1
  203. package/src/plugins/table/types.ts +1 -1
  204. package/src/plugins/table/ui/FloatingContextualMenu/ContextualMenu.tsx +1 -1
  205. package/src/plugins/table/ui/TableFloatingControls/index.tsx +4 -4
  206. package/src/plugins/table/ui/common-styles.ts +46 -4
  207. package/src/plugins/table/ui/ui-styles.ts +235 -90
  208. package/tsconfig.app.json +3 -0
  209. package/tsconfig.dev.json +3 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @atlaskit/editor-plugin-table
2
2
 
3
+ ## 4.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#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.
8
+
9
+ ## 4.0.2
10
+
11
+ ### Patch Changes
12
+
13
+ - [#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
14
+ - Updated dependencies
15
+
3
16
  ## 4.0.1
4
17
 
5
18
  ### Patch Changes
@@ -10,7 +23,7 @@
10
23
 
11
24
  ### Major Changes
12
25
 
13
- - [`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.
26
+ - [#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.
14
27
 
15
28
  ### Patch Changes
16
29
 
@@ -20,13 +33,13 @@
20
33
 
21
34
  ### Patch Changes
22
35
 
23
- - [`b1a93f61747`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b1a93f61747) - [ED-20091] add logic to refire intersection observers and prevent detached table sticky headers
36
+ - [#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
24
37
 
25
38
  ## 3.2.0
26
39
 
27
40
  ### Minor Changes
28
41
 
29
- - [`3aaff60be08`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3aaff60be08) - [ux] ED-18988 Adds table sticky scrollbar
42
+ - [#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
30
43
 
31
44
  ### Patch Changes
32
45
 
@@ -36,25 +49,25 @@
36
49
 
37
50
  ### Patch Changes
38
51
 
39
- - [`5b783c0f957`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5b783c0f957) - Clean up resizing plugin state for table when deleted
52
+ - [#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
40
53
 
41
54
  ## 3.1.2
42
55
 
43
56
  ### Patch Changes
44
57
 
45
- - [`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
58
+ - [#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
46
59
 
47
60
  ## 3.1.1
48
61
 
49
62
  ### Patch Changes
50
63
 
51
- - [`05b9c2db1dc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/05b9c2db1dc) - [ux] Increase visibility of table scroll shadows
64
+ - [#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
52
65
 
53
66
  ## 3.1.0
54
67
 
55
68
  ### Minor Changes
56
69
 
57
- - [`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
70
+ - [#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
58
71
 
59
72
  ### Patch Changes
60
73
 
@@ -64,21 +77,21 @@
64
77
 
65
78
  ### Patch Changes
66
79
 
67
- - [`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
80
+ - [#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
68
81
  - Updated dependencies
69
82
 
70
83
  ## 3.0.4
71
84
 
72
85
  ### Patch Changes
73
86
 
74
- - [`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.
87
+ - [#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.
75
88
 
76
89
  ## 3.0.3
77
90
 
78
91
  ### Patch Changes
79
92
 
80
- - [`65b155b2787`](https://bitbucket.org/atlassian/atlassian-frontend/commits/65b155b2787) - [ux] ED-19172: Updated tableHeaderCellBackgroundColor to use non-transparent token."
81
- - [`cd06919038d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cd06919038d) - [ux] Fix Firefox scrolling stuck in some certain height when scroll up from bottom
93
+ - [#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."
94
+ - [#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
82
95
  - [`0b1f816e4fa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0b1f816e4fa) - [ux] Added akEditorTableHeaderCellBackground to store fallback.
83
96
  - Updated dependencies
84
97
 
@@ -86,7 +99,7 @@
86
99
 
87
100
  ### Patch Changes
88
101
 
89
- - [`37c62369dae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/37c62369dae) - NO-ISSUE Import doc builder types from editor-common
102
+ - [#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
90
103
 
91
104
  ## 3.0.1
92
105
 
@@ -98,48 +111,48 @@
98
111
 
99
112
  ### Major Changes
100
113
 
101
- - [`18e8e6cc9c8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18e8e6cc9c8) - ED-19782: Clean up feature flag types from table optimisation related feature flags.
114
+ - [#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.
102
115
 
103
116
  ## 2.14.1
104
117
 
105
118
  ### Patch Changes
106
119
 
107
- - [`b6525ba4703`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b6525ba4703) - [ux] Reimplement inline height for table when resizing
120
+ - [#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
108
121
 
109
122
  ## 2.14.0
110
123
 
111
124
  ### Minor Changes
112
125
 
113
- - [`6ccd72d2fe0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6ccd72d2fe0) - ED-18264: Clean up useSomewhatSemanticTextColorNames - default behaviour will be same as when FF was on.
126
+ - [#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.
114
127
 
115
128
  ### Patch Changes
116
129
 
117
- - [`69857bbbff0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/69857bbbff0) - [ED-20004] Capture errors in getPos due to prosemirror-view bump
130
+ - [#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
118
131
 
119
132
  ## 2.13.3
120
133
 
121
134
  ### Patch Changes
122
135
 
123
- - [`aeb5c9a01e8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aeb5c9a01e8) - Delete adf-schema from AFE and rely on npm package for adf-schema
136
+ - [#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
124
137
  - [`4b4dcfe0bba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4b4dcfe0bba) - Delete adf-schema, use published version
125
138
 
126
139
  ## 2.13.2
127
140
 
128
141
  ### Patch Changes
129
142
 
130
- - [`ddb171ba2d5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ddb171ba2d5) - Fix the table alignment issue with guideline snapping when numbered columnis enabled
143
+ - [#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
131
144
 
132
145
  ## 2.13.1
133
146
 
134
147
  ### Patch Changes
135
148
 
136
- - [`dca155209d9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dca155209d9) - ED-15094 Feature flag clean up for copy button
149
+ - [#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
137
150
 
138
151
  ## 2.13.0
139
152
 
140
153
  ### Minor Changes
141
154
 
142
- - [`a5f5786f39b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a5f5786f39b) - Use selection plugin to hide gap cursor when table is resized
155
+ - [#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
143
156
 
144
157
  ### Patch Changes
145
158
 
@@ -149,31 +162,31 @@
149
162
 
150
163
  ### Patch Changes
151
164
 
152
- - [`1f6e908f2bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f6e908f2bd) - Workaround invalid getPos error occuring for TableComponent
165
+ - [#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
153
166
 
154
167
  ## 2.12.5
155
168
 
156
169
  ### Patch Changes
157
170
 
158
- - [`1da71810c5d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1da71810c5d) - [Regression] Fix Invalid getPos issue happening for Table nodeviews
171
+ - [#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
159
172
 
160
173
  ## 2.12.4
161
174
 
162
175
  ### Patch Changes
163
176
 
164
- - [`74cf8d56408`](https://bitbucket.org/atlassian/atlassian-frontend/commits/74cf8d56408) - ED-19748: dispatch analytics when a table is selected.
177
+ - [#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.
165
178
 
166
179
  ## 2.12.3
167
180
 
168
181
  ### Patch Changes
169
182
 
170
- - [`35242fb367a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/35242fb367a) - Add custom-table-width feature flag and add width to table node when inserted
183
+ - [#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
171
184
 
172
185
  ## 2.12.2
173
186
 
174
187
  ### Patch Changes
175
188
 
176
- - [`6acf9830b36`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6acf9830b36) - Update feature flags plugin
189
+ - [#39304](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/39304) [`6acf9830b36`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6acf9830b36) - Update feature flags plugin
177
190
  (@atlaskit/editor-plugin-feature-flags) to use a named export
178
191
  rather than default export to match other plugins.
179
192
 
@@ -189,13 +202,13 @@
189
202
 
190
203
  ### Patch Changes
191
204
 
192
- - [`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
205
+ - [#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
193
206
 
194
207
  ## 2.12.0
195
208
 
196
209
  ### Minor Changes
197
210
 
198
- - [`ad3c5c21079`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ad3c5c21079) - Updating all plugins with minor version to correct issue with semver.
211
+ - [#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.
199
212
 
200
213
  ### Patch Changes
201
214
 
@@ -205,18 +218,18 @@
205
218
 
206
219
  ### Minor Changes
207
220
 
208
- - [`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
221
+ - [#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
209
222
 
210
223
  ### Patch Changes
211
224
 
212
- - [`8b78535f8bd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8b78535f8bd) - Fix sticky header not resize with table
225
+ - [#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
213
226
  - Updated dependencies
214
227
 
215
228
  ## 2.10.8
216
229
 
217
230
  ### Patch Changes
218
231
 
219
- - [`8467bdcdf4f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8467bdcdf4f) - Removing `dependencies` prop from PluginInjectionAPI and changing
232
+ - [#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
220
233
  signature of `NextEditorPlugin`.
221
234
 
222
235
  Previously a `NextEditorPlugin` would be consumed as so:
@@ -246,53 +259,53 @@
246
259
 
247
260
  ### Patch Changes
248
261
 
249
- - [`24e27147cbd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/24e27147cbd) - Added atlaskit docs to all existing plugins.
262
+ - [#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.
250
263
  - Updated dependencies
251
264
 
252
265
  ## 2.10.6
253
266
 
254
267
  ### Patch Changes
255
268
 
256
- - [`33cb07de05f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/33cb07de05f) - change adf-schema to fixed versioning
269
+ - [#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
257
270
  - Updated dependencies
258
271
 
259
272
  ## 2.10.5
260
273
 
261
274
  ### Patch Changes
262
275
 
263
- - [`e813382ff78`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e813382ff78) - Revert ED-19511 due to incorrect height calculations when sticky headers are enabled for tables
276
+ - [#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
264
277
 
265
278
  ## 2.10.4
266
279
 
267
280
  ### Patch Changes
268
281
 
269
- - [`eefbc3c6065`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eefbc3c6065) - [ED-19510] Applies performance tweaks for table
282
+ - [#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
270
283
 
271
284
  ## 2.10.3
272
285
 
273
286
  ### Patch Changes
274
287
 
275
- - [`d6e4badd8c4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d6e4badd8c4) - Add explicit height to table when resizing width to increase performance
288
+ - [#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
276
289
 
277
290
  ## 2.10.2
278
291
 
279
292
  ### Patch Changes
280
293
 
281
- - [`31031f52f80`](https://bitbucket.org/atlassian/atlassian-frontend/commits/31031f52f80) - Fix table shift when two users resize the same table in collab mode
294
+ - [#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
282
295
  - Updated dependencies
283
296
 
284
297
  ## 2.10.1
285
298
 
286
299
  ### Patch Changes
287
300
 
288
- - [`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
301
+ - [#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
289
302
  - Updated dependencies
290
303
 
291
304
  ## 2.10.0
292
305
 
293
306
  ### Minor Changes
294
307
 
295
- - [`0f3026deda5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0f3026deda5) - ED-12027 cleaned up table optimisation feature flags, made optimised code run by default.
308
+ - [#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.
296
309
 
297
310
  ### Patch Changes
298
311
 
@@ -302,13 +315,13 @@
302
315
 
303
316
  ### Patch Changes
304
317
 
305
- - [`84cf99bc0f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/84cf99bc0f0) - ED-19153:Update table container width to be consistent with table resizer.
318
+ - [#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.
306
319
 
307
320
  ## 2.9.0
308
321
 
309
322
  ### Minor Changes
310
323
 
311
- - [`4cb3deef759`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4cb3deef759) - Improved table container/wrapper styles to better support custom table widths
324
+ - [#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
312
325
 
313
326
  - Remove padding on table wrapper so table overflow is restricted correctly, so it doesn't spew out
314
327
  - Update shadows to match these new styles
@@ -323,25 +336,25 @@
323
336
 
324
337
  ### Patch Changes
325
338
 
326
- - [`5365e42ef97`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5365e42ef97) - cleaned up more of the \* as keymaps imports to enable better tree-shaking
339
+ - [#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
327
340
 
328
341
  ## 2.8.5
329
342
 
330
343
  ### Patch Changes
331
344
 
332
- - [`58fa188ef48`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58fa188ef48) - [ux] [ED-19461] Reduce draggable zone of adjacent resize handle.
345
+ - [#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.
333
346
 
334
347
  ## 2.8.4
335
348
 
336
349
  ### Patch Changes
337
350
 
338
- - [`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
351
+ - [#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
339
352
 
340
353
  ## 2.8.3
341
354
 
342
355
  ### Patch Changes
343
356
 
344
- - [`77b74847baa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/77b74847baa) - ED-19152 Cancels scheduled resize to avoid handleResize being called after handleResizeStop.
357
+ - [#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.
345
358
 
346
359
  ## 2.8.2
347
360
 
@@ -353,13 +366,13 @@
353
366
 
354
367
  ### Patch Changes
355
368
 
356
- - [`800c927efd1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/800c927efd1) - [ux] ED-19317: fix numbered column shift up issue with custom table FF on
369
+ - [#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
357
370
 
358
371
  ## 2.8.0
359
372
 
360
373
  ### Minor Changes
361
374
 
362
- - [`7472b6ab3b4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7472b6ab3b4) - [ED-19329] Add analytics event for table resize framerate
375
+ - [#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
363
376
 
364
377
  ### Patch Changes
365
378
 
@@ -369,19 +382,19 @@
369
382
 
370
383
  ### Patch Changes
371
384
 
372
- - [`8b104cb7575`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8b104cb7575) - [ED-14769] Remove tableCellOptionsinFloatingToolbar feature flag & make it default behaviour
385
+ - [#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
373
386
 
374
387
  ## 2.7.1
375
388
 
376
389
  ### Patch Changes
377
390
 
378
- - [`39099193642`](https://bitbucket.org/atlassian/atlassian-frontend/commits/39099193642) - Cleanup breakout styling when table has fragment mark ff
391
+ - [#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
379
392
 
380
393
  ## 2.7.0
381
394
 
382
395
  ### Minor Changes
383
396
 
384
- - [`960a2b478c8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/960a2b478c8) - [ux] [ED-19167] Add blue shadow to resizer handle on hover
397
+ - [#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
385
398
 
386
399
  ### Patch Changes
387
400
 
@@ -391,13 +404,13 @@
391
404
 
392
405
  ### Patch Changes
393
406
 
394
- - [`8fe864e4f7a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8fe864e4f7a) - [ux] ED-19336: Fixed insert column button not visible when sticky header is enabled."
407
+ - [#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."
395
408
 
396
409
  ## 2.6.12
397
410
 
398
411
  ### Patch Changes
399
412
 
400
- - [`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
413
+ - [#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
401
414
  toggling side-effects because the intersection observers gets confused and ends up toggling the sticky header on when it should
402
415
  be off and vice-versa.
403
416
 
@@ -419,7 +432,7 @@
419
432
 
420
433
  ### Patch Changes
421
434
 
422
- - [`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.
435
+ - [#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.
423
436
  - Updated dependencies
424
437
 
425
438
  ## 2.6.9
@@ -432,57 +445,57 @@
432
445
 
433
446
  ### Patch Changes
434
447
 
435
- - [`d432ad14798`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d432ad14798) - [ux] Added standard page guidelines when custom table width enabled and is resizing table.
448
+ - [#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.
436
449
 
437
450
  ## 2.6.7
438
451
 
439
452
  ### Patch Changes
440
453
 
441
- - [`56f4b88f7c2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56f4b88f7c2) - [ux] ED-19317: fix numbered column shifted up issue when sticky header
454
+ - [#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
442
455
 
443
456
  ## 2.6.6
444
457
 
445
458
  ### Patch Changes
446
459
 
447
- - [`fb2597b2dc3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fb2597b2dc3) - Check analytic plugin exists before accessing attach function
460
+ - [#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
448
461
 
449
462
  ## 2.6.5
450
463
 
451
464
  ### Patch Changes
452
465
 
453
- - [`4e6f1bf8511`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4e6f1bf8511) - [ED-19233] Import prosemirror libraries from internal facade package
466
+ - [#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
454
467
  - Updated dependencies
455
468
 
456
469
  ## 2.6.4
457
470
 
458
471
  ### Patch Changes
459
472
 
460
- - [`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.
473
+ - [#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.
461
474
 
462
475
  ## 2.6.3
463
476
 
464
477
  ### Patch Changes
465
478
 
466
- - [`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."
479
+ - [#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."
467
480
 
468
481
  ## 2.6.2
469
482
 
470
483
  ### Patch Changes
471
484
 
472
- - [`bc9f806f84a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc9f806f84a) - Toggle handle visibility of resizer if current table is selected
485
+ - [#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
473
486
  - Updated dependencies
474
487
 
475
488
  ## 2.6.1
476
489
 
477
490
  ### Patch Changes
478
491
 
479
- - [`84516fbd72d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/84516fbd72d) - [ux] ED-19068: fix numbered columns scroll bar issue
492
+ - [#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
480
493
 
481
494
  ## 2.6.0
482
495
 
483
496
  ### Minor Changes
484
497
 
485
- - [`0ae6f70038a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0ae6f70038a) - [ED-17635] Add analytics event for table width resizing
498
+ - [#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
486
499
 
487
500
  ### Patch Changes
488
501
 
@@ -492,38 +505,38 @@
492
505
 
493
506
  ### Patch Changes
494
507
 
495
- - [`d55db921de3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d55db921de3) - improve performance when adding a new column in table
508
+ - [#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
496
509
 
497
510
  ## 2.5.4
498
511
 
499
512
  ### Patch Changes
500
513
 
501
- - [`b6758f1ecff`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b6758f1ecff) - [ux] Fixes positioning of popups inside table cell
514
+ - [#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
502
515
  - Updated dependencies
503
516
 
504
517
  ## 2.5.3
505
518
 
506
519
  ### Patch Changes
507
520
 
508
- - [`e8885f55db6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e8885f55db6) - Fixed type issue
521
+ - [#37348](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37348) [`e8885f55db6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e8885f55db6) - Fixed type issue
509
522
 
510
523
  ## 2.5.2
511
524
 
512
525
  ### Patch Changes
513
526
 
514
- - [`8b77d484c89`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8b77d484c89) - Change snap gap for tables guideline to 9px
527
+ - [#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
515
528
 
516
529
  ## 2.5.1
517
530
 
518
531
  ### Patch Changes
519
532
 
520
- - [`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.
533
+ - [#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.
521
534
 
522
535
  ## 2.5.0
523
536
 
524
537
  ### Minor Changes
525
538
 
526
- - [`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
539
+ - [#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
527
540
 
528
541
  ### Patch Changes
529
542
 
@@ -533,19 +546,19 @@
533
546
 
534
547
  ### Minor Changes
535
548
 
536
- - [`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
549
+ - [#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
537
550
 
538
551
  ## 2.3.1
539
552
 
540
553
  ### Patch Changes
541
554
 
542
- - [`a9c98fc8503`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a9c98fc8503) - [ED-19028] Remove less-padding class when using table width resizer
555
+ - [#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
543
556
 
544
557
  ## 2.3.0
545
558
 
546
559
  ### Minor Changes
547
560
 
548
- - [`464c9736dff`](https://bitbucket.org/atlassian/atlassian-frontend/commits/464c9736dff) - [ux] [ED-17626] Remove table controls during table width resizing
561
+ - [#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
549
562
 
550
563
  ### Patch Changes
551
564
 
@@ -555,7 +568,7 @@
555
568
 
556
569
  ### Minor Changes
557
570
 
558
- - [`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
571
+ - [#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
559
572
 
560
573
  ### Patch Changes
561
574
 
@@ -565,38 +578,38 @@
565
578
 
566
579
  ### Patch Changes
567
580
 
568
- - [`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.
581
+ - [#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.
569
582
 
570
583
  ## 2.1.6
571
584
 
572
585
  ### Patch Changes
573
586
 
574
- - [`32ca42e82c3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/32ca42e82c3) - Extracted internal editor card plugin to new package `editor-plugin-card`.
587
+ - [#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`.
575
588
 
576
589
  ## 2.1.5
577
590
 
578
591
  ### Patch Changes
579
592
 
580
- - [`c133c710360`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c133c710360) - Fix typing errors
593
+ - [#36916](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36916) [`c133c710360`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c133c710360) - Fix typing errors
581
594
 
582
595
  ## 2.1.4
583
596
 
584
597
  ### Patch Changes
585
598
 
586
- - [`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`.
599
+ - [#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`.
587
600
  - Updated dependencies
588
601
 
589
602
  ## 2.1.3
590
603
 
591
604
  ### Patch Changes
592
605
 
593
- - [`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
606
+ - [#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
594
607
 
595
608
  ## 2.1.2
596
609
 
597
610
  ### Patch Changes
598
611
 
599
- - [`b8d84a1ffcd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b8d84a1ffcd) - [ux] ED-17632 disable table resizer when nested
612
+ - [#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
600
613
 
601
614
  ## 2.1.1
602
615
 
@@ -608,20 +621,20 @@
608
621
 
609
622
  ### Minor Changes
610
623
 
611
- - [`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
624
+ - [#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
612
625
 
613
626
  ## 2.0.1
614
627
 
615
628
  ### Patch Changes
616
629
 
617
- - [`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
630
+ - [#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
618
631
  - Updated dependencies
619
632
 
620
633
  ## 2.0.0
621
634
 
622
635
  ### Major Changes
623
636
 
624
- - [`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.
637
+ - [#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.
625
638
 
626
639
  Fix issue where internal analytics plugin was not being called correctly.
627
640
 
@@ -629,7 +642,7 @@
629
642
 
630
643
  ### Patch Changes
631
644
 
632
- - [`5f5ba16de66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f5ba16de66) - [ED-13910] Fix prosemirror types
645
+ - [#36241](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/36241) [`5f5ba16de66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f5ba16de66) - [ED-13910] Fix prosemirror types
633
646
  - Updated dependencies
634
647
 
635
648
  ## 1.7.2
@@ -642,13 +655,13 @@
642
655
 
643
656
  ### Patch Changes
644
657
 
645
- - [`7a720ec3e8e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7a720ec3e8e) - ED-18796 Use setAttrsStep to update colwidth attribute when scaling the table
658
+ - [#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
646
659
 
647
660
  ## 1.7.0
648
661
 
649
662
  ### Minor Changes
650
663
 
651
- - [`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
664
+ - [#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
652
665
 
653
666
  ### Patch Changes
654
667
 
@@ -658,45 +671,45 @@
658
671
 
659
672
  ### Patch Changes
660
673
 
661
- - [`6e54d9fbeea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6e54d9fbeea) - Added tableAddWidthPlugin
674
+ - [#35749](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35749) [`6e54d9fbeea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6e54d9fbeea) - Added tableAddWidthPlugin
662
675
 
663
676
  ## 1.6.8
664
677
 
665
678
  ### Patch Changes
666
679
 
667
- - [`a9350cf3831`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a9350cf3831) - Check existence of window and document variable for confluence SSR to work
680
+ - [#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
668
681
 
669
682
  ## 1.6.7
670
683
 
671
684
  ### Patch Changes
672
685
 
673
- - [`18344c31ea3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18344c31ea3) - [ED-13910] Fix EditorView getPos type
686
+ - [#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
674
687
 
675
688
  ## 1.6.6
676
689
 
677
690
  ### Patch Changes
678
691
 
679
- - [`73b5128036b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/73b5128036b) - [ED-17082] Mark package as a singleton one
692
+ - [#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
680
693
  - Updated dependencies
681
694
 
682
695
  ## 1.6.5
683
696
 
684
697
  ### Patch Changes
685
698
 
686
- - [`dcb378acc03`](https://bitbucket.org/atlassian/atlassian-frontend/commits/dcb378acc03) - [ux] ED-17625: add restriction of resizing table
699
+ - [#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
687
700
 
688
701
  ## 1.6.4
689
702
 
690
703
  ### Patch Changes
691
704
 
692
- - [`5e01082b600`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5e01082b600) - Extracting SelectionBasedNodeView to editor-common.
705
+ - [#35353](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/35353) [`5e01082b600`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5e01082b600) - Extracting SelectionBasedNodeView to editor-common.
693
706
  - Updated dependencies
694
707
 
695
708
  ## 1.6.3
696
709
 
697
710
  ### Patch Changes
698
711
 
699
- - [`1202f6f0a82`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1202f6f0a82) - ED-16692: add logic to position FloatingContextualButton correctly when sticky and scrolling
712
+ - [#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
700
713
 
701
714
  ## 1.6.2
702
715
 
@@ -708,13 +721,13 @@
708
721
 
709
722
  ### Patch Changes
710
723
 
711
- - [`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.
724
+ - [#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.
712
725
 
713
726
  ## 1.6.0
714
727
 
715
728
  ### Minor Changes
716
729
 
717
- - [`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
730
+ - [#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
718
731
 
719
732
  ### Patch Changes
720
733
 
@@ -730,13 +743,13 @@
730
743
 
731
744
  ### Patch Changes
732
745
 
733
- - [`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
746
+ - [#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
734
747
 
735
748
  ## 1.5.3
736
749
 
737
750
  ### Patch Changes
738
751
 
739
- - [`b38a0fcd924`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b38a0fcd924) - Use NextEditorPlugin API for width plugin in tables.
752
+ - [#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.
740
753
 
741
754
  ## 1.5.2
742
755
 
@@ -748,7 +761,7 @@
748
761
 
749
762
  ### Patch Changes
750
763
 
751
- - [`26d9c8cb4b1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/26d9c8cb4b1) - Extract decorations plugin from editor-core to its own package.
764
+ - [#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.
752
765
  - [`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.
753
766
  - [`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
754
767
  - [`741b3acd455`](https://bitbucket.org/atlassian/atlassian-frontend/commits/741b3acd455) - This major change includes:
@@ -779,7 +792,7 @@
779
792
 
780
793
  ### Minor Changes
781
794
 
782
- - [`20809d41658`](https://bitbucket.org/atlassian/atlassian-frontend/commits/20809d41658) - Added feature flag `platform.editor.custom-table-width` which toggles the new table experience
795
+ - [#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
783
796
 
784
797
  ### Patch Changes
785
798
 
@@ -790,14 +803,14 @@
790
803
 
791
804
  ### Patch Changes
792
805
 
793
- - [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
806
+ - [#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
794
807
  - Updated dependencies
795
808
 
796
809
  ## 1.4.0
797
810
 
798
811
  ### Minor Changes
799
812
 
800
- - [`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.
813
+ - [#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.
801
814
 
802
815
  ### Patch Changes
803
816
 
@@ -812,14 +825,14 @@
812
825
 
813
826
  ### Patch Changes
814
827
 
815
- - [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
828
+ - [#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`
816
829
  - Updated dependencies
817
830
 
818
831
  ## 1.3.0
819
832
 
820
833
  ### Minor Changes
821
834
 
822
- - [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
835
+ - [#33258](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/33258) [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
823
836
 
824
837
  ### Patch Changes
825
838
 
@@ -829,13 +842,13 @@
829
842
 
830
843
  ### Patch Changes
831
844
 
832
- - [`55b4a026119`](https://bitbucket.org/atlassian/atlassian-frontend/commits/55b4a026119) - [ux] ED-17710 Cellbackground button in context menu is tokenised.
845
+ - [#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.
833
846
 
834
847
  ## 1.2.6
835
848
 
836
849
  ### Patch Changes
837
850
 
838
- - [`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"
851
+ - [#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"
839
852
  - [`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
840
853
  - Updated dependencies
841
854
 
@@ -843,13 +856,13 @@
843
856
 
844
857
  ### Patch Changes
845
858
 
846
- - [`115a119a42c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/115a119a42c) - [ux] ED-17710 Color palette in table context menu is tokenised.
859
+ - [#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.
847
860
 
848
861
  ## 1.2.4
849
862
 
850
863
  ### Patch Changes
851
864
 
852
- - [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY remove before merging to master; dupe adf-schema via adf-utils
865
+ - [#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
853
866
  - [`d9a8fe191f2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d9a8fe191f2) - [ED-17295] Update feature flag usage for media plugin
854
867
  - Updated dependencies
855
868
 
@@ -857,13 +870,13 @@
857
870
 
858
871
  ### Patch Changes
859
872
 
860
- - [`9f9b4b1cf60`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9f9b4b1cf60) - [ux] [HOT-103036] Fix table width styling when broken out with fragment mark
873
+ - [#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
861
874
 
862
875
  ## 1.2.2
863
876
 
864
877
  ### Patch Changes
865
878
 
866
- - [`ef830fdabfa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ef830fdabfa) - [ED-17294] Enable type checking for Preset plugins on unit tests
879
+ - [#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
867
880
  - [`b7f9b82ecd8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b7f9b82ecd8) - [ED-16109] Fix deleting rows with row above and below having merged cells
868
881
  - [`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
869
882
  - Updated dependencies
@@ -872,7 +885,7 @@
872
885
 
873
886
  ### Patch Changes
874
887
 
875
- - [`f07824eeccc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f07824eeccc) - ED-15647 fix undo when pasting table with resized column in expand
888
+ - [#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
876
889
  - [`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
877
890
  - [`2f7fff7239d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2f7fff7239d) - [ux] [ED-17271] Sticky headers now listen for width changes in the parent scroll container
878
891
  - [`2367ba14aa0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2367ba14aa0) - [ux] ED-16758 Added support for theme tokens in table cell background color.
@@ -889,7 +902,7 @@
889
902
 
890
903
  ### Minor Changes
891
904
 
892
- - [`1d11b24f17e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1d11b24f17e) - [ux] ED-15549 Implemented keyboard navigation in color palette
905
+ - [#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
893
906
 
894
907
  ### Patch Changes
895
908
 
@@ -904,20 +917,20 @@
904
917
 
905
918
  ### Patch Changes
906
919
 
907
- - [`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
920
+ - [#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
908
921
 
909
922
  ## 1.1.4
910
923
 
911
924
  ### Patch Changes
912
925
 
913
- - [`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
926
+ - [#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
914
927
  - Updated dependencies
915
928
 
916
929
  ## 1.1.3
917
930
 
918
931
  ### Patch Changes
919
932
 
920
- - [`2fe7d1a47ab`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2fe7d1a47ab) - [ux] ED-16512: Table should not scroll on large screens after column resizing
933
+ - [#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
921
934
  - [`20f8e0400ae`](https://bitbucket.org/atlassian/atlassian-frontend/commits/20f8e0400ae) - [ux] ED-16251: Added logic to respect minimum column width when adding columns to table.
922
935
  - [`3820895a26d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3820895a26d) - [ux] Fix column resizing when single column is selected
923
936
  - [`a2d2aedc1c6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a2d2aedc1c6) - [ux] ED-16212: Fix 1px table overflow issue
@@ -935,13 +948,13 @@
935
948
 
936
949
  ### Patch Changes
937
950
 
938
- - [`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.
951
+ - [#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.
939
952
 
940
953
  ## 1.1.0
941
954
 
942
955
  ### Minor Changes
943
956
 
944
- - [`a0a35fe7fb1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a0a35fe7fb1) - Renaming contentComponent event subject to contentComponentv2. Move errorStack attribute to nonPrivacySafeAttributes
957
+ - [#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
945
958
 
946
959
  ### Patch Changes
947
960
 
@@ -952,7 +965,7 @@
952
965
 
953
966
  ### Patch Changes
954
967
 
955
- - [`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
968
+ - [#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
956
969
  - [`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
957
970
  - [`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
958
971
  - [`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.
@@ -962,19 +975,19 @@
962
975
 
963
976
  ### Patch Changes
964
977
 
965
- - [`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.
978
+ - [#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.
966
979
 
967
980
  ## 1.0.1
968
981
 
969
982
  ### Patch Changes
970
983
 
971
- - [`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.
984
+ - [#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.
972
985
 
973
986
  ## 1.0.0
974
987
 
975
988
  ### Major Changes
976
989
 
977
- - [`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.
990
+ - [#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.
978
991
 
979
992
  Note: restartNumberedLists will be off by default. To enable it, consumers will need to set <Editor featureFlags={{ restartNumberedLists: true }}> or <Renderer featureFlags={{ restartNumberedLists: true }}>
980
993
 
@@ -1020,13 +1033,13 @@
1020
1033
 
1021
1034
  ### Patch Changes
1022
1035
 
1023
- - [`49588ece345`](https://bitbucket.org/atlassian/atlassian-frontend/commits/49588ece345) - Fixed regression where resize line would not show up for selected cell
1036
+ - [#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
1024
1037
 
1025
1038
  ## 0.2.3
1026
1039
 
1027
1040
  ### Patch Changes
1028
1041
 
1029
- - [`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).
1042
+ - [#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).
1030
1043
  - [`47f1f76cb80`](https://bitbucket.org/atlassian/atlassian-frontend/commits/47f1f76cb80) - Fix table delete button hover bug
1031
1044
  - [`8a11811caca`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8a11811caca) - ED-15298 clean up table cell optimisation
1032
1045
  - [`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).
@@ -1046,13 +1059,13 @@
1046
1059
 
1047
1060
  ### Patch Changes
1048
1061
 
1049
- - [`b68f5ae3b64`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b68f5ae3b64) - [ED-16384] Add sideEffects false
1062
+ - [#27931](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27931) [`b68f5ae3b64`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b68f5ae3b64) - [ED-16384] Add sideEffects false
1050
1063
 
1051
1064
  ## 0.2.1
1052
1065
 
1053
1066
  ### Patch Changes
1054
1067
 
1055
- - [`9ae762b0920`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9ae762b0920) - removing unused prop 'stickToolbarToBottom'
1068
+ - [#26320](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/26320) [`9ae762b0920`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9ae762b0920) - removing unused prop 'stickToolbarToBottom'
1056
1069
  - [`f240c3eb761`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f240c3eb761) - [ux] Prevent cursor selection from being reset when delete button is clicked
1057
1070
 
1058
1071
  The fix ensures that when removing a row or column via the delete button, the cursor will stay within the table.
@@ -1067,7 +1080,7 @@
1067
1080
 
1068
1081
  ### Minor Changes
1069
1082
 
1070
- - [`efac742b6c3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/efac742b6c3) - Removed extra column resize handlers
1083
+ - [#27112](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/27112) [`efac742b6c3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/efac742b6c3) - Removed extra column resize handlers
1071
1084
 
1072
1085
  ## 0.1.2
1073
1086
 
@@ -1079,7 +1092,7 @@
1079
1092
 
1080
1093
  ### Patch Changes
1081
1094
 
1082
- - [`2ce5df13885`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2ce5df13885) - [ux] Prevent cursor selection from being reset when delete button is clicked
1095
+ - [#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
1083
1096
  The fix ensures that when removing a row or column via the delete button, the cursor will stay within the table.
1084
1097
  Reference https://discuss.prosemirror.net/t/setting-selection-to-newly-inserted-text-node/3615/6
1085
1098
 
@@ -1087,7 +1100,7 @@
1087
1100
 
1088
1101
  ### Minor Changes
1089
1102
 
1090
- - [`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.
1103
+ - [#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.
1091
1104
 
1092
1105
  [ED-15674][ed15739] [ED-15633]
1093
1106
 
@@ -1110,25 +1123,25 @@
1110
1123
 
1111
1124
  ### Patch Changes
1112
1125
 
1113
- - [`b519be31909`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b519be31909) - Improve FloatingDeleteButton accessibility and update tests
1126
+ - [#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
1114
1127
 
1115
1128
  ## 0.0.9
1116
1129
 
1117
1130
  ### Patch Changes
1118
1131
 
1119
- - [`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.
1132
+ - [#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.
1120
1133
 
1121
1134
  ## 0.0.8
1122
1135
 
1123
1136
  ### Patch Changes
1124
1137
 
1125
- - [`e5b0deecf68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e5b0deecf68) - Add ability to localize for nodeview and add aria labels to RowControl and CornerControl
1138
+ - [#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
1126
1139
 
1127
1140
  ## 0.0.7
1128
1141
 
1129
1142
  ### Patch Changes
1130
1143
 
1131
- - [`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.
1144
+ - [#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.
1132
1145
  - [`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.
1133
1146
 
1134
1147
  Reference: https://sentry.io/organizations/atlassian-2y/issues/3434914334/?project=5988900
@@ -1145,32 +1158,32 @@
1145
1158
 
1146
1159
  ### Patch Changes
1147
1160
 
1148
- - [`75afc133d94`](https://bitbucket.org/atlassian/atlassian-frontend/commits/75afc133d94) - [ED-15625] Fix media full screen on table
1161
+ - [#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
1149
1162
 
1150
1163
  ## 0.0.4
1151
1164
 
1152
1165
  ### Patch Changes
1153
1166
 
1154
- - [`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
1167
+ - [#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
1155
1168
  - Updated dependencies
1156
1169
 
1157
1170
  ## 0.0.3
1158
1171
 
1159
1172
  ### Patch Changes
1160
1173
 
1161
- - [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade Typescript from `4.3.5` to `4.5.5`
1174
+ - [#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`
1162
1175
 
1163
1176
  ## 0.0.2
1164
1177
 
1165
1178
  ### Patch Changes
1166
1179
 
1167
- - [`b18bb5420cb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b18bb5420cb) - [ED-15731] Replace the GetEditorContainerWidth API with a workaround to grab with plugin state data
1180
+ - [#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
1168
1181
 
1169
1182
  ## 0.0.1
1170
1183
 
1171
1184
  ### Patch Changes
1172
1185
 
1173
- - [`e2fa17aaee6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e2fa17aaee6) - [ED-15587] Fix types added when the copy was made
1186
+ - [#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
1174
1187
  - [`36b3ba5a140`](https://bitbucket.org/atlassian/atlassian-frontend/commits/36b3ba5a140) - [ED-15618] Remove dead code with cross-reference to list plugin
1175
1188
  - [`d459e83ce52`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d459e83ce52) - [ED-15616] Replace the unnecessary cross-reference feature editorDisabledPluginKey to use the native editor way
1176
1189
  - [`7487d066e92`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7487d066e92) - [ED-15551] Copy ReactNodeView and dependencies into editor-common