@atlaskit/editor-plugin-table 4.0.0 → 4.0.2

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