UNPKG

@atlaskit/editor-plugin-table

Version:

Table plugin for the @atlaskit/editor

1,925 lines (1,159 loc) 314 kB
# @atlaskit/editor-plugin-table ## 22.0.0 ### Major Changes - [`b47ee185c5ac4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b47ee185c5ac4) - Remove deprecated dragAndDropEnabled plugin option Drag and drop table rows/ columns and advanced table controls used to be toggled with dragAndDropEnabled table plugin option however we're deprecating this prop to make this the default behaviour. ``` // Before - to turn on drag and drop: const createPreset = () => createDefaultPreset({ featureFlags: {}, paste: {} }) .add([tablePlugin, {tableOptions: {}, dragAndDropEnabled: true}]) const { preset } = usePreset(createPreset); // Now - drag and drop enabled even without prop const createPreset = () => createDefaultPreset({ featureFlags: {}, paste: {} }) .add([tablePlugin, {tableOptions: {}}]) const { preset } = usePreset(createPreset); ``` The `dragAndDropEnabled` property has also been removed from the `TablePluginOptions` TypeScript interface. **Note:** If you previously set `dragAndDropEnabled: false` to explicitly disable drag and drop, this is no longer supported — drag and drop is now always enabled and cannot be turned off via this option. If issues occur when bumping editor package, please check if dragAndDropEnabled is still present in editor integration. ### Patch Changes - Updated dependencies ## 21.0.0 ### Major Changes - [`901c87a57486e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/901c87a57486e) - Removed `react-intl-next` alias and replaced all usages with `react-intl` directly. What changed: The `react-intl-next` npm alias (which resolved to `react-intl@^5`) has been removed. All imports now reference `react-intl` directly, and `peerDependencies` have been updated to `"^5.25.1 || ^6.0.0 || ^7.0.0"`. How consumer should update their code: Ensure `react-intl` is installed at a version satisfying `^5.25.1 || ^6.0.0 || ^7.0.0`. If your application was using `react-intl-next` as an npm alias, it can be safely removed. Replace any remaining `react-intl-next` imports with `react-intl`. ### Patch Changes - Updated dependencies ## 20.0.0 ### Patch Changes - [`b10c935ca9497`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b10c935ca9497) - Removed deprecated `browser` singleton from editor-common. This has been replaced with a `getBrowserInfo` function that returns the same information. This change was made to avoid issues with module loading order and to provide a more consistent API for accessing browser information. Please update any imports of `browser` to use `getBrowserInfo` instead. For example, the following imports have been removed: ```javascript import { browser } from '@atlaskit/editor-common/utils'; import { browser } from '@atlaskit/editor-common/browser'; ``` Instead, please use: ```javascript import { getBrowserInfo } from '@atlaskit/editor-common/browser'; ``` If you were previously using `browser.ie_version`, you would now use `getBrowserInfo().ie_version`. - Updated dependencies ## 19.0.1 ### Patch Changes - [`ed96586aa0e43`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ed96586aa0e43) - Cleanup experiment platform_editor_table_resizer_extended_zone: ship treatment (needExtendedResizeZone always true) - Updated dependencies ## 19.0.0 ### Major Changes - [`2df767cd2e0e9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2df767cd2e0e9) - Remove deprecated dragAndDropEnabled plugin option - table drag and drop is now always enabled(EDITOR-6287) ## 18.1.34 ### Patch Changes - Updated dependencies ## 18.1.33 ### Patch Changes - [`73b2fc243f544`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/73b2fc243f544) - Cleaning up getBrowserInfo which was behind experiment platform_editor_hydratable_ui and is now rolled out - Updated dependencies ## 18.1.32 ### Patch Changes - [`0ad738e8f896e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0ad738e8f896e) - Remove `support_table_in_comment` and `support_table_in_comment_jira` experiment references. Both experiments are fully rolled out — table resizing, alignment, scaling, and distribute columns are now enabled unconditionally in comment editors. - Updated dependencies ## 18.1.31 ### Patch Changes - Updated dependencies ## 18.1.30 ### Patch Changes - Updated dependencies ## 18.1.29 ### Patch Changes - Updated dependencies ## 18.1.28 ### Patch Changes - [`9ff7d1c1aa288`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9ff7d1c1aa288) - Update README.md and 0-intro.tsx - Updated dependencies ## 18.1.27 ### Patch Changes - Updated dependencies ## 18.1.26 ### Patch Changes - Updated dependencies ## 18.1.25 ### Patch Changes - Updated dependencies ## 18.1.24 ### Patch Changes - Updated dependencies ## 18.1.23 ### Patch Changes - [`bd6a75f50c1e9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bd6a75f50c1e9) - [ux] [EDITOR-6267] add support to SelectAll table keymap to first select the active table cell behind experiment `platform_editor_lovability_select_all_shortcut` - Updated dependencies ## 18.1.22 ### Patch Changes - Updated dependencies ## 18.1.21 ### Patch Changes - Updated dependencies ## 18.1.20 ### Patch Changes - [`91f722df43475`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/91f722df43475) - [ux] [EDITOR-5815] the fix adds a check for column width changes so that we update the table on click of 'distribute columns' button. this is gated behind the `platform_editor_lovability_distribute_column_fix` experiment. - Updated dependencies ## 18.1.19 ### Patch Changes - Updated dependencies ## 18.1.18 ### Patch Changes - Updated dependencies ## 18.1.17 ### Patch Changes - [`f65fa1ea7c0e5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f65fa1ea7c0e5) - Cleaned up stale feature flag `platform_editor_fix_button_name_violation_in_table`. The flag has been fully rolled out, so the button name fix in table floating insert button is now always applied. - Updated dependencies ## 18.1.16 ### Patch Changes - Updated dependencies ## 18.1.15 ### Patch Changes - [`12e112a137d5f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/12e112a137d5f) - Clean up platform_editor_table_fw_numcol_overflow_fix feature flag - Updated dependencies ## 18.1.14 ### Patch Changes - Updated dependencies ## 18.1.13 ### Patch Changes - Updated dependencies ## 18.1.12 ### Patch Changes - Updated dependencies ## 18.1.11 ### Patch Changes - Updated dependencies ## 18.1.10 ### Patch Changes - [`5221db0d676ef`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5221db0d676ef) - Mechanical type-import autofix for tables, collab, and synchrony packages. - Updated dependencies ## 18.1.9 ### Patch Changes - Updated dependencies ## 18.1.8 ### Patch Changes - Updated dependencies ## 18.1.7 ### Patch Changes - Updated dependencies ## 18.1.6 ### Patch Changes - [`d43c8a96e6740`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d43c8a96e6740) - Gate table ref update dispatch behind tableActive check to avoid unnecessary transactions firing for every table on the page - [`737087ff3afe7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/737087ff3afe7) - Cleanup experiment platform_editor_change_table_nesting_check - Updated dependencies ## 18.1.5 ### Patch Changes - [`0f4a08b633f6e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0f4a08b633f6e) - Internal changes to remove unnecessary token fallbacks and imports from `@atlaskit/theme` - Updated dependencies ## 18.1.4 ### Patch Changes - Updated dependencies ## 18.1.3 ### Patch Changes - [`9ed32aea2c1d3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9ed32aea2c1d3) - Replace feature experiment util with cross platform alternative for platform_editor_block_menu - Updated dependencies ## 18.1.2 ### Patch Changes - [`0d04e250bdf4b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0d04e250bdf4b) - [ux] Making submenus for media (color/size) and table (background color) consistent with ADS and fixing incorrect gate mocking in editor-plugin-ai-tests - Updated dependencies ## 18.1.1 ### Patch Changes - Updated dependencies ## 18.1.0 ### Minor Changes - [`ea21f2748d986`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ea21f2748d986) - feat: set display-mode in table toDOM from node attributes ### Patch Changes - Updated dependencies ## 18.0.8 ### Patch Changes - Updated dependencies ## 18.0.7 ### Patch Changes - Updated dependencies ## 18.0.6 ### Patch Changes - Updated dependencies ## 18.0.5 ### Patch Changes - Updated dependencies ## 18.0.4 ### Patch Changes - Updated dependencies ## 18.0.3 ### Patch Changes - Updated dependencies ## 18.0.2 ### Patch Changes - Updated dependencies ## 18.0.1 ### Patch Changes - Updated dependencies ## 18.0.0 ### Patch Changes - Updated dependencies ## 17.7.3 ### Patch Changes - [`477d48a3021a5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/477d48a3021a5) - EDITOR-5818 fix to not send dispatch during render or in ref callback - Updated dependencies ## 17.7.2 ### Patch Changes - [`1fd2b267eb592`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1fd2b267eb592) - Cleanup `platform_editor_ai_aifc_patch_ga` flag - [`ac4a428022f83`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ac4a428022f83) - [EDITOR-5480] Removes data-borders-ready fix from table and adds border to prosemirror toDOM instead - Updated dependencies ## 17.7.1 ### Patch Changes - [`94dbc76370522`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/94dbc76370522) - [ux] remove unnecessary decoration for last cell element in table - [`1d6c1d6ba61dc`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1d6c1d6ba61dc) - FFCLEANUP-79953 clean up stale experiment platform_editor_editor_width_analytics - Updated dependencies ## 17.7.0 ### Minor Changes - [`557de2bd28f21`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/557de2bd28f21) - [EDITOR-5773](https://hello.jira.atlassian.cloud/browse/EDITOR-5773) - clean up platform_editor_disable_query_command_supported experiment ### Patch Changes - Updated dependencies ## 17.6.1 ### Patch Changes - Updated dependencies ## 17.6.0 ### Minor Changes - [`17119fb95e0a4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/17119fb95e0a4) - [EDITOR-3747](https://hello.jira.atlassian.cloud/browse/EDITOR-3747) - clean up platform_editor_ssr_renderer experiment ### Patch Changes - Updated dependencies ## 17.5.0 ### Minor Changes - [`4225fbfc03770`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4225fbfc03770) - [EDITOR-5765](https://hello.jira.atlassian.cloud/browse/EDITOR-5765) - clean up platform_editor_rename_numbered_rows_label feature flag ### Patch Changes - Updated dependencies ## 17.4.5 ### Patch Changes - Updated dependencies ## 17.4.4 ### Patch Changes - [`2ba512be34b34`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2ba512be34b34) - [ux] always enable table resizer extended zone - Updated dependencies ## 17.4.3 ### Patch Changes - [`0f91061590da3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0f91061590da3) - Split platform_editor_vc90_transition_fixes_batch_1 into platform_editor_vc90_transition_table_border, platform_editor_vc90_transition_expand_icon, platform_editor_vc90_transition_mentions, platform_editor_vc90_transition_panel_icon - Updated dependencies ## 17.4.2 ### Patch Changes - [`7c93170d2ea8a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7c93170d2ea8a) - [ux] Set full width for table if in Editor max width mode and table has no width attribute set - Updated dependencies ## 17.4.1 ### Patch Changes - Updated dependencies ## 17.4.0 ### Minor Changes - [`050e73fa93cfe`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/050e73fa93cfe) - [FFCLEANUP-87580] clean up feature gate platform_editor_nested_tables_sticky_header_bug ### Patch Changes - Updated dependencies ## 17.3.32 ### Patch Changes - Updated dependencies ## 17.3.31 ### Patch Changes - [`715d7c4db3977`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/715d7c4db3977) - [EDITOR-4953] clean up platform_editor_table_cell_colour_change experiment - Updated dependencies ## 17.3.30 ### Patch Changes - Updated dependencies ## 17.3.29 ### Patch Changes - Updated dependencies ## 17.3.28 ### Patch Changes - Updated dependencies ## 17.3.27 ### Patch Changes - Updated dependencies ## 17.3.26 ### Patch Changes - Updated dependencies ## 17.3.25 ### Patch Changes - [`4af588e6196fe`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4af588e6196fe) - batch experiment for page transition - Updated dependencies ## 17.3.24 ### Patch Changes - Updated dependencies ## 17.3.23 ### Patch Changes - Updated dependencies ## 17.3.22 ### Patch Changes - [`a040c03082274`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a040c03082274) - [ux] EDITOR-507 Clean up main nested tables experiment `platform_editor_nested_tables` - Updated dependencies ## 17.3.21 ### Patch Changes - [`dece098c3ab1f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/dece098c3ab1f) - [ux] ENGHEALTH-46818 Add focus and blur handlers to table buttons to fix a11y - Updated dependencies ## 17.3.20 ### Patch Changes - [`81937b9af604e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/81937b9af604e) - [ux] fix table border late render issue - Updated dependencies ## 17.3.19 ### Patch Changes - [`7ef3027df8198`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7ef3027df8198) - remove platform_editor_lovability_user_intent experiment - Updated dependencies ## 17.3.18 ### Patch Changes - Updated dependencies ## 17.3.17 ### Patch Changes - [`369400c30a0cc`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/369400c30a0cc) - Cleanup FG platform_editor_change_table_nesting_check - [`34c3a60cb9325`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/34c3a60cb9325) - Cleanup FG platform_editor_fix_confirm_table_removal ## 17.3.16 ### Patch Changes - [`b4422f96787ee`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b4422f96787ee) - [ux] Fix contextual menu showing on load before editor being focussed or interactions - Updated dependencies ## 17.3.15 ### Patch Changes - Updated dependencies ## 17.3.14 ### Patch Changes - Updated dependencies ## 17.3.13 ### Patch Changes - Updated dependencies ## 17.3.12 ### Patch Changes - Updated dependencies ## 17.3.11 ### Patch Changes - [`ad8f50e8000f5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ad8f50e8000f5) - [EDITOR-4662] Cleans up FG platform_editor_number_column_sticky_header_bug ## 17.3.10 ### Patch Changes - [`d1ee0512f85f4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d1ee0512f85f4) - [EDITOR-4531] Cleans up FG platform_editor_table_numbered_table_border - Updated dependencies ## 17.3.9 ### Patch Changes - [`95a9857d9f007`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/95a9857d9f007) - Replaced keymaps for moving table columns/rows in the Editor behind experiment - Updated dependencies ## 17.3.8 ### Patch Changes - Updated dependencies ## 17.3.7 ### Patch Changes - Updated dependencies ## 17.3.6 ### Patch Changes - [`d3b00bd311c9d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d3b00bd311c9d) - Improves an edge case where users may face unexpected cursor jumps collaboratively - Updated dependencies ## 17.3.5 ### Patch Changes - [`7f6ca0d7b6afc`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7f6ca0d7b6afc) - Updated the table drag menu to fire a track analytic event when the menu is opened - Updated dependencies ## 17.3.4 ### Patch Changes - Updated dependencies ## 17.3.3 ### Patch Changes - Updated dependencies ## 17.3.2 ### Patch Changes - [`e910a57bdc437`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e910a57bdc437) - [ux] EDITOR-4880 Fix cell option menu showing in view mode - Updated dependencies ## 17.3.1 ### Patch Changes - [`afb6165b36773`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/afb6165b36773) - [ux] Add new gate for missing cell option menu fix for atlas" ## 17.3.0 ### Minor Changes - [`fe3cbbba3c6d6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/fe3cbbba3c6d6) - [EDITOR-4877](https://hello.jira.atlassian.cloud/browse/EDITOR-4877) - remove queryCommandSupported from TableComponent ### Patch Changes - Updated dependencies ## 17.2.0 ### Minor Changes - [`5dfede89f8ccc`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5dfede89f8ccc) - [EDITOR-4601](https://hello.jira.atlassian.cloud/browse/EDITOR-4601) - rename table Numbered rows label ### Patch Changes - Updated dependencies ## 17.1.2 ### Patch Changes - Updated dependencies ## 17.1.1 ### Patch Changes - Updated dependencies ## 17.1.0 ### Minor Changes - [`a218bead9e6a7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a218bead9e6a7) - EDITOR-4542 Make isTableWithFixedColumnWidthsOptionEnabled an editor prop instead of using FG value ## 17.0.1 ### Patch Changes - [`2bd7dcf49bbf2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2bd7dcf49bbf2) - [ux] [EDITOR-4452] remove the selection change after setting the background color on multiple table cells behind platform_editor_table_cell_colour_change - Updated dependencies ## 17.0.0 ### Major Changes - [`c774e8b6231c2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c774e8b6231c2) - EDITOR-4549 Removing allowCellOptionsInFloatingToolbar as a prop as the functionality has been removed and changing this prop doesn't do anything ## 16.4.4 ### Patch Changes - Updated dependencies ## 16.4.3 ### Patch Changes - [`b68e8044e4394`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b68e8044e4394) - [ux] EDITOR-4416 Set tableRef to fix drop targets not appearing when editor is not focused - Updated dependencies ## 16.4.2 ### Patch Changes - [`0a5d4198cf008`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0a5d4198cf008) - [ux] Fix numbered column selection style when multiple nodes are selected ## 16.4.1 ### Patch Changes - [`265980d7959cf`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/265980d7959cf) - [ux] recursive node decoration and 'selected danger' classname - Updated dependencies ## 16.4.0 ### Minor Changes - [`f2606056e2aa9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f2606056e2aa9) - [ux] EDITOR-4516 Deprecate isTableScaling to enable it by default ### Patch Changes - [`111f223aff3d1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/111f223aff3d1) - Clean up platform_editor_table_less_padding_fix - Updated dependencies ## 16.3.4 ### Patch Changes - [`275fdae298e95`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/275fdae298e95) - [ux] EDITOR-4412 Show/hide header column/row and numbered column toggles in drag controls based on editor props - Updated dependencies ## 16.3.3 ### Patch Changes - [`e225fb5074e28`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e225fb5074e28) - [ux] Update logic for enabling drag and drop in tables - Updated dependencies ## 16.3.2 ### Patch Changes - Updated dependencies ## 16.3.1 ### Patch Changes - [`d668a11849163`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d668a11849163) - [ux] EDITOR-4411 Enable sorting by default in column drag menu ## 16.3.0 ### Minor Changes - [`814909b91111b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/814909b91111b) - [ux] EDITOR-4459 Set dragAndDropEnabled by default in tablesPlugin ### Patch Changes - Updated dependencies ## 16.2.0 ### Minor Changes - [`9ee3f2262dfcf`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9ee3f2262dfcf) - improve performance of table floating toolbar when determine the disabled state of distribute column button ### Patch Changes - Updated dependencies ## 16.1.9 ### Patch Changes - [`0095cf9cd3e6f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0095cf9cd3e6f) - NOISSUE Clean up feature gate cc_editor_limited_mode_table_align_bttn Remove the feature gate `cc_editor_limited_mode_table_align_bttn` and assume it's always enabled. The performance optimization for table column distribution in limited mode is now always active when limited mode is enabled. - Updated dependencies ## 16.1.8 ### Patch Changes - [`7b37ece9ebb50`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7b37ece9ebb50) - EDITOR-4199: Fix table border issues when tables rendered under mobile breakpoint. - Updated dependencies ## 16.1.7 ### Patch Changes - [`acd81a73a9a20`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/acd81a73a9a20) - [ux] EDITOR-4259 Set table ref when table is rendered - Updated dependencies ## 16.1.6 ### Patch Changes - [`8c24728c97456`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8c24728c97456) - EDITOR-3638 Exclude zero intersection entries when scroll is detected - Updated dependencies ## 16.1.5 ### Patch Changes - [`38de936c97015`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/38de936c97015) - EDITOR-3707 Fire UI event when native/ legacy sticky headers are enabled - Updated dependencies ## 16.1.4 ### Patch Changes - [`c4a774ad462fb`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c4a774ad462fb) - EDITOR-2477 Clean up remaining usages of `platform_editor_use_nested_table_pm_nodes` which are no longer needed now that `isNestedTablesSupported` is fully rolled out. - Updated dependencies ## 16.1.3 ### Patch Changes - [`cd1f8017b3bc0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cd1f8017b3bc0) - [ux] Tweak table psudoelement borders ## 16.1.2 ### Patch Changes - [`66dcfa397e97d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/66dcfa397e97d) - [ux] EDITOR-4197 Fix cell option menu for table header cells in table header column - Updated dependencies ## 16.1.1 ### Patch Changes - [`30607f97eadae`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/30607f97eadae) - Update table tests after sticky header changes - Updated dependencies ## 16.1.0 ### Minor Changes - [`00e69e0b7c839`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/00e69e0b7c839) - Clean up and removal of the `platform-visual-refresh-icons` feature flag. ### Patch Changes - [`a3bc4ac27ae8e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a3bc4ac27ae8e) - [ux] EDITOR-4134 Fix firefox nightly for anchor fallback solution - Updated dependencies ## 16.0.3 ### Patch Changes - [`b429c01ce6af9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b429c01ce6af9) - icon migration entry point update - Updated dependencies ## 16.0.2 ### Patch Changes - [`1112caa726b84`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1112caa726b84) - Clean up platform_editor_enghealth_table_plugin_lable_rule experiment - Add accessibility labels to table drag handles and toggles by default - Updated dependencies ## 16.0.1 ### Patch Changes - [`e96899177b5f8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e96899177b5f8) - [ux] EDITOR-4111 Fix masked cell alignment when table is selected - Updated dependencies ## 16.0.0 ### Patch Changes - Updated dependencies ## 15.6.9 ### Patch Changes - [`f41ee46c84bb1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f41ee46c84bb1) - [EDITOR-3881] Fix table styling to work with SSR renderer - Updated dependencies ## 15.6.8 ### Patch Changes - [`b1ea4fa4e8e56`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b1ea4fa4e8e56) - Remove static scroll listener ## 15.6.7 ### Patch Changes - [`fe7b3f29093a6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/fe7b3f29093a6) - [ux] EDITOR-2990 Disable native sticky header for tables with headers greater than 50% viewport height - [`b4a854535b851`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b4a854535b851) - [ux] EDITOR-2625 Add missing left border when table controls are showing and header is sticking in table with numbered columns - Updated dependencies ## 15.6.6 ### Patch Changes - [`8e7168f651cc2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8e7168f651cc2) - Only set native sticky header classes if a scroll event has occurred - Updated dependencies ## 15.6.5 ### Patch Changes - Updated dependencies ## 15.6.4 ### Patch Changes - [`20fb93093ca02`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/20fb93093ca02) - Remove data attribute for sticky state instead of setting false - Updated dependencies ## 15.6.3 ### Patch Changes - [`dbe5bb7c0221c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/dbe5bb7c0221c) - Only set native sticky header classes if a scroll event has occurred - [`dbe5bb7c0221c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/dbe5bb7c0221c) - Remove top margin change when native table sticky headers are enabled - Updated dependencies ## 15.6.2 ### Patch Changes - Updated dependencies ## 15.6.1 ### Patch Changes - [`53aef9589ca55`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/53aef9589ca55) - [EDITOR-3786] Make sure that for any check of `cc_editor_ai_content_mode` && `platform_editor_content_mode_button_mvp` in the code we are also checking `confluence_compact_text_format` - [`dab46476d6a9c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/dab46476d6a9c) - Remove top margin change when native table sticky headers are enabled - Updated dependencies ## 15.6.0 ### Minor Changes - [`762b79e21f96a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/762b79e21f96a) - Migrated and cleaned up legacy iconography usage. ### Patch Changes - [`7e1f5e6e54c20`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7e1f5e6e54c20) - [EDITOR-3962] Update check for if a table is nested so it covers all cases - Updated dependencies ## 15.5.6 ### Patch Changes - [`90abe9b926a6f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/90abe9b926a6f) - Icon entrypoint migration - Updated dependencies ## 15.5.5 ### Patch Changes - [`f5fb826bac3cd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f5fb826bac3cd) - fix eslint disable in editor table plugin get cell position - Updated dependencies ## 15.5.4 ### Patch Changes - [`1d64ffdaa96fa`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1d64ffdaa96fa) - [ux] Fix sticky header mask overlapping adjacent node borders - [`1d64ffdaa96fa`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1d64ffdaa96fa) - Add fallback for table row/header anchor names ## 15.5.3 ### Patch Changes - [`a4ac43fb6ff37`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a4ac43fb6ff37) - Add fallback for table row/header anchor names - Updated dependencies ## 15.5.2 ### Patch Changes - [`c72c25a7b8822`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c72c25a7b8822) - [ux] EDITOR-3741 Add pseudo border classes for sticky header cells - Updated dependencies ## 15.5.1 ### Patch Changes - Updated dependencies ## 15.5.0 ### Minor Changes - [`8677e7b660127`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8677e7b660127) - EDITOR-3792 Rollup max width changes previously gated with editor_tinymce_full_width_mode into combined frontend/backend flag confluence_max_width_content_appearance ### Patch Changes - [`0882d69646f51`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0882d69646f51) - tidy up fg platform_editor_table_width_refactor - Updated dependencies ## 15.4.24 ### Patch Changes - [`e51da6f828fe9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e51da6f828fe9) - Exclude Safari due to contenteditable in sticky positioned table header bug - Updated dependencies ## 15.4.23 ### Patch Changes - [`21089bb0ca0d2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/21089bb0ca0d2) - Only enable new table sticky header if drag and drop flag enabled ## 15.4.22 ### Patch Changes - [`d94330c37d126`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d94330c37d126) - tidy up ff platform_editor_disable_table_overflow_shadows - [`1a0e740f0e18a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1a0e740f0e18a) - [ux] EDITOR-2818 Fix sticky header column controls and masked cell styles - Updated dependencies ## 15.4.21 ### Patch Changes - [`5935652291a5f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5935652291a5f) - Remove platform_editor_table_drag_handle_hover experiment and enable hover behavior permanently - Updated dependencies ## 15.4.20 ### Patch Changes - Updated dependencies ## 15.4.19 ### Patch Changes - [`edbc1458b100c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/edbc1458b100c) - Add native anchor experiment as guard for native sticky headers - Updated dependencies ## 15.4.18 ### Patch Changes - [`a2fa645318b72`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a2fa645318b72) - EDITOR-3822 Update anchor styles to fix cell option manu alignment in safari - Updated dependencies ## 15.4.17 ### Patch Changes - [`193738561b24f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/193738561b24f) - [ux] Fix bug where contextual table cell button not rendered when overflowing ## 15.4.16 ### Patch Changes - [`e8d3ca0f12af5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e8d3ca0f12af5) - [ux] EDITOR-3743 Add selected and danger styles to masked cell when numbered column and header row is present ## 15.4.15 ### Patch Changes - [`0d2bf469b7c66`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0d2bf469b7c66) - [ux] EDITOR-3742 Fix table sticker header styles when numbered column is enabled ## 15.4.14 ### Patch Changes - [`ac6e5ca03207b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ac6e5ca03207b) - fix numbered table border issue - [`ac6e5ca03207b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ac6e5ca03207b) - fix numbered table border issue - Updated dependencies ## 15.4.13 ### Patch Changes - [`6ce7f7d7b4940`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6ce7f7d7b4940) - [ux] Fix missing cell controls when native sticky - Updated dependencies ## 15.4.12 ### Patch Changes - [`e3779b75fdeca`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e3779b75fdeca) - EDITOR-1643 Promote syncBlock and bodiedSyncBlock to full schema - [`a3a20e1d45d82`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a3a20e1d45d82) - Fix table col control positioning for new dnd anchor experiment - [`7eedf0747e9e2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7eedf0747e9e2) - Fix table sticky header detection - Updated dependencies ## 15.4.11 ### Patch Changes - [`55920a92e882a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/55920a92e882a) - tsignores added for help-center local consumpton removed - Updated dependencies ## 15.4.10 ### Patch Changes - [`5a25eff5f9f2d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5a25eff5f9f2d) - [ux] Correctly disable legacy sticky table header when no overflow - Updated dependencies ## 15.4.9 ### Patch Changes - [`9fa355db69f2c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9fa355db69f2c) - [ux] Cleans up FG platform_editor_fix_table_menus_jira - Updated dependencies ## 15.4.8 ### Patch Changes - [`7bcc5b67de741`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7bcc5b67de741) - [ux] Add drop shadow to table col control mask when sticky positioned header - Updated dependencies ## 15.4.7 ### Patch Changes - [`ccac90cc6d089`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ccac90cc6d089) - [ux] Only show row control on table sticky header when header not in stuck state - Updated dependencies ## 15.4.6 ### Patch Changes - Updated dependencies ## 15.4.5 ### Patch Changes - [`d4b8a7cf9ea37`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d4b8a7cf9ea37) - fix unsafe experiment usage for platform_editor_lovability_user_intent ## 15.4.4 ### Patch Changes - [`4d676bbdb3ce6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4d676bbdb3ce6) - ts-ignore added temporarily to unblock local consumption for help-center, will be removed once project refs are setup - Updated dependencies ## 15.4.3 ### Patch Changes - Updated dependencies ## 15.4.2 ### Patch Changes - [`0e07e981de8c7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0e07e981de8c7) - Fix mask for above sticky positioned table header to cover nested table controls - Updated dependencies ## 15.4.1 ### Patch Changes - [`3e9ac3a2226fd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3e9ac3a2226fd) - Detect 'stuck' state for sticky positioned table header and toggle drop shadow ## 15.4.0 ### Minor Changes - [`8f759171c089b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8f759171c089b) - [EDITOR-3322] Make sure that tables are able to handle the new max-width ## 15.3.23 ### Patch Changes - [`a05464ea42678`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a05464ea42678) - EDITOR-2791 bump adf-schema - Updated dependencies ## 15.3.22 ### Patch Changes - [`a4b46d14da1ad`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a4b46d14da1ad) - [ux] Add mask to table sticky header and col controls when sticky positioned - [`7a405ff491f5e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7a405ff491f5e) - [ux] Add gap between viewport and table header when sticky positioned - Updated dependencies ## 15.3.21 ### Patch Changes - Updated dependencies ## 15.3.20 ### Patch Changes - [`cf07075f295f9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cf07075f295f9) - Remove casting to HTMLElement in TableRowNativeStickyWithFallback - Updated dependencies ## 15.3.19 ### Patch Changes - [`1432eb6affaee`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1432eb6affaee) - [ux] Fix column control alignment when table header is using sticky positioning - Updated dependencies ## 15.3.18 ### Patch Changes - Updated dependencies ## 15.3.17 ### Patch Changes - [`cdde660f1ee48`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cdde660f1ee48) - Refresh sticky header when native sticky positioning is removed - Updated dependencies ## 15.3.16 ### Patch Changes - [`855e2a1085226`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/855e2a1085226) - [ux] Scaffolding for native sticky headers - Updated dependencies ## 15.3.15 ### Patch Changes - [`fd0c8ec823f49`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/fd0c8ec823f49) - NOISSUE - Add limited mode check for expensive getTableScalingPercent calls for the table floating toolbar alignment button. - Updated dependencies ## 15.3.14 ### Patch Changes - [`21ffffe31e25a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/21ffffe31e25a) - Cleaned platform_editor_fix_table_resizing_undo FG. - Updated dependencies ## 15.3.13 ### Patch Changes - [`ca454ed251e1e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ca454ed251e1e) - Add table height analytics - Updated dependencies ## 15.3.12 ### Patch Changes - [`c094becfaeeaa`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c094becfaeeaa) - EDITOR-2476 Introduce new utility method to check if nested tables is supported in the schema to facilitate removal of gate `platform_editor_use_nested_table_pm_nodes` - Updated dependencies ## 15.3.11 ### Patch Changes - [`e3336879840a4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e3336879840a4) - [ux] EDITOR-2620 Toggle contextual menu when drag menu is opened - [`8b2c7333efccd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8b2c7333efccd) - fix table width css used for table scaling - Updated dependencies ## 15.3.10 ### Patch Changes - [`b31ba91cf1c16`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b31ba91cf1c16) - Remove platform_editor_table_paste_in_dark_mode feature gate and enable dark mode table paste fix permanently ## 15.3.9 ### Patch Changes - [`b504b21832b1f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b504b21832b1f) - Removed feature gate platform_editor_table_overflow_in_full_width_fix - Updated dependencies ## 15.3.8 ### Patch Changes - [`ca5c3cd4d655b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ca5c3cd4d655b) - Clean up FG platform_editor_table_column_selected_state_fix - Updated dependencies ## 15.3.7 ### Patch Changes - [`28ba94dae8f9a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/28ba94dae8f9a) - [ux] EDITOR-2458 Replace usage of \_\_suppressAllToolbars with userIntentPlugin - Updated dependencies ## 15.3.6 ### Patch Changes - Updated dependencies ## 15.3.5 ### Patch Changes - Updated dependencies ## 15.3.4 ### Patch Changes - [`135fb050129cb`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/135fb050129cb) - [ux] [ED-25852] Fixes table menus rendering outside their container in Jira ## 15.3.3 ### Patch Changes - [`21fe79119fe74`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/21fe79119fe74) - EDITOR-2447 Bump adf-schema to 51.3.2 - Updated dependencies ## 15.3.2 ### Patch Changes - Updated dependencies ## 15.3.1 ### Patch Changes - [`c28cd65d12c24`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c28cd65d12c24) - EDITOR-2447 Bump adf-schema to 51.3.1 - Updated dependencies ## 15.3.0 ### Minor Changes - [`0ec7ab64eb92d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0ec7ab64eb92d) - Remove remaining usages of `platform_editor_use_nested_table_pm_nodes` which are safe to remove. Additional usages will be replaced with a helper function in followup releases ### Patch Changes - Updated dependencies ## 15.2.3 ### Patch Changes - [`14a03e6be917d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/14a03e6be917d) - upgrade use of browser util - Updated dependencies ## 15.2.2 ### Patch Changes - [`5f70b8e74f5f3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5f70b8e74f5f3) - tidy up feature flag platform_editor_tables_scaling_css - Updated dependencies ## 15.2.1 ### Patch Changes - [`668649eea2f53`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/668649eea2f53) - [ux] EDITOR-2261 Toggles number column numbering sizing to match editor contentMode - Updated dependencies ## 15.2.0 ### Minor Changes - [`5167552fe1a93`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5167552fe1a93) - [EDITOR-2339] Bump @atlaskit/adf-schema to 51.3.0 ### Patch Changes - [`fbecd9bc5082c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/fbecd9bc5082c) - fix a bug that caused column not resized in non-resizable table - Updated dependencies ## 15.1.4 ### Patch Changes - Updated dependencies ## 15.1.3 ### Patch Changes - [`544fe6cd169ad`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/544fe6cd169ad) - minor improvement on the fake table outer border when overflow - Updated dependencies ## 15.1.2 ### Patch Changes - [`7c61ac7c9ef3d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7c61ac7c9ef3d) - Clean up platform_editor_table_drag_menu_flickers_fix ## 15.1.1 ### Patch Changes - [`1ad50530f4fdd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1ad50530f4fdd) - fix wrong experiment for table toDOM relates to table overflow shadow - Updated dependencies ## 15.1.0 ### Minor Changes - [`18f1ab6ba31b0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/18f1ab6ba31b0) - improve table overshadow under experiment with variants including variant1: complete remove table overflow shadowing, variant2: complete remove table overflow shadowing but have border in table outer wrapper, variant3: use css-only driven table overflow shadowing. ### Patch Changes - Updated dependencies ## 15.0.12 ### Patch Changes - [`c0ef0bedb49c0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c0ef0bedb49c0) - EDITOR-1391 only send table width information events if there are tables, add enums and boolean values for table width, editor width and scrollbar existence for ingestion in signalfx - Updated dependencies ## 15.0.11 ### Patch Changes - [`ef001bf65d48f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ef001bf65d48f) - Remove usage of `platform_editor_toolbar_aifc` inside editor packages - instead rely on checking for new toolbar plugin option, make `enableNewToolbarExperience` mandatory for consumers to opt in to new toolbar experience - Updated dependencies ## 15.0.10 ### Patch Changes - Updated dependencies ## 15.0.9 ### Patch Changes - [`8f55eb73e7b77`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8f55eb73e7b77) - Cleanup platform_editor_live_page_prevent_table_recreation ## 15.0.8 ### Patch Changes - [`925eb6478e9a5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/925eb6478e9a5) - Remove overflowY on tables to prevent Y axis scroll bar showing on Windows. - Updated dependencies ## 15.0.7 ### Patch Changes - [`02d5fa5dcc791`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/02d5fa5dcc791) - Cleanup cc_editor_ufo_hold_table_till_resize_complete - Updated dependencies ## 15.0.6 ### Patch Changes - [`4141e6d6c0258`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4141e6d6c0258) - [ux] ED-29125 Add danger styles for media group, tables with numbered columns and nested panels - Updated dependencies ## 15.0.5 ### Patch Changes - [`a3254a75cdfb7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a3254a75cdfb7) - [ED-29448] clean up experiment platform_editor_toolbar_aifc_patch_2 - Updated dependencies ## 15.0.4 ### Patch Changes - [`5292689cffab1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5292689cffab1) - fix/ignore minor eslint issues ahead of bug fix for confirming the removal of tables - Updated dependencies ## 15.0.3 ### Patch Changes - Updated dependencies ## 15.0.2 ### Patch Changes - [`d9c862034d9c9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d9c862034d9c9) - [ux] EDITOR-1681 fix pasting tables background colors in dark mode - Updated dependencies ## 15.0.1 ### Patch Changes - [`199b1024b2b0e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/199b1024b2b0e) - Remove hover decoration on table unmount, to fix issues of delete decorations persisting - [`99d1f21e15dcc`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/99d1f21e15dcc) - clean up platform_editor_nodevisibility_resize_sync - Updated dependencies ## 15.0.0 ### Patch Changes - Updated dependencies ## 14.3.0 ### Minor Changes - [`f3461c712ac67`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f3461c712ac67) - Remove platform_editor_table_use_shared_state_hook_fg FG, add platform_editor_table_drag_handle_hover experiments - [`687c1b8fa7801`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/687c1b8fa7801) - EDITOR-1566 bump adf-schema + update validator ### Patch Changes - Updated dependencies ## 14.2.7 ### Patch Changes - Updated dependencies ## 14.2.6 ### Patch Changes - Updated dependencies ## 14.2.5 ### Patch Changes - [`6b6eca9cee16d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6b6eca9cee16d) - Switch to use editorExperiment to use productKey for responsive preview panel changes. - [`07c4ed52fa008`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/07c4ed52fa008) - Hydration fixes for table plugin - Updated dependencies ## 14.2.4 ### Patch Changes - [`6759639cbc48a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6759639cbc48a) - Optimized table resizing in full page mode by bundling layout calculations and clean up old expensive layout calculations ## 14.2.3 ### Patch Changes - Updated dependencies ## 14.2.2 ### Patch Changes - [`c1ef6524373ae`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c1ef6524373ae) - Add insm feature tracking for tableColumnResize ## 14.2.1 ### Patch Changes - [`8b18612863ea6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8b18612863ea6) - Add insm feature tracking for tableResize - [`39f3b00f65aa0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/39f3b00f65aa0) - NOISSUE: Patches emotion CSS exports in various editor packages - Updated dependencies ## 14.2.0 ### Minor Changes - [`b367661ba720e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b367661ba720e) - EDITOR-1562 bump adf-schema for afm ### Patch Changes - Updated dependencies ## 14.1.1 ### Patch Changes - [`99f67e6caf2b2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/99f67e6caf2b2) - Add aria-label to table floating insert buttons to address button-name A11Y violation - Updated dependencies ## 14.1.0 ### Minor Changes - [`64ec65231b4cf`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/64ec65231b4cf) - EDITOR-1568 bump adf-schema for afm ### Patch Changes - Updated dependencies ## 14.0.2 ### Patch Changes - [`33f34d6fd24f3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/33f34d6fd24f3) - NO-ISSUE Prevent tableLocalId plugin running if platform_editor_adf_with_localid is true - Updated dependencies ## 14.0.1 ### Patch Changes - [`c0656bad0f992`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c0656bad0f992) - EDITOR-1389 fix table container width behind platform_editor_table_container_width_fix - [`f0662cd7a143e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f0662cd7a143e) - Internal changes to how borders are applied. - Updated dependencies ## 14.0.0 ### Patch Changes - Updated dependencies ## 13.1.0 ### Minor Changes - [`c0113eeccb2df`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c0113eeccb2df) - [ux] ED-29120 add a new config option for default editor preset (`toolbar.enableNewToolbarExperience`) which allows the new toolbar to be disabled. This is needed for editors that can't be excluded at the experiment level. ### Patch Changes - Updated dependencies ## 13.0.8 ### Patch Changes - [`a8630c1107c3d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a8630c1107c3d) - [ED-28781] Hide inline text toolbar when other popups are open - Updated dependencies ## 13.0.7 ### Patch Changes - [`5be5ab89fb72d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5be5ab89fb72d) - Add tableDragAndDrop insm feature tracking - [`790dacebab86f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/790dacebab86f) - fix table resize issue when table scailing experiment is on - Updated dependencies ## 13.0.6 ### Patch Changes - [`f3ccf5a62c62f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f3ccf5a62c62f) - PR to cleanup platform_editor_usesharedpluginstatewithselector for table ## 13.0.5 ### Patch Changes - [`255837cfba315`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/255837cfba315) - Internal changes to how border radius is applied. - Updated dependencies ## 13.0.4 ### Patch Changes - [`bb5564f5dadab`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bb5564f5dadab) - fix table local id type error - Updated dependencies