@atlaskit/tmp-editor-statsig 130.2.0 → 132.0.0

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,48 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 132.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [`d73da6cdded98`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d73da6cdded98) -
8
+ Clean up experiment `confluence_max_width_breakout_extension_fix` (now permanently enabled)
9
+
10
+ ## 131.0.0
11
+
12
+ ### Major Changes
13
+
14
+ - [`f99c886e52489`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f99c886e52489) -
15
+ Clean up experiment `platform_editor_ai_screen_layout_refactor`
16
+ - [`ea47d8afdb33d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ea47d8afdb33d) -
17
+ Clean up experiment `platform_editor_ignore_metadata_connection_errors`
18
+ - [`6afed619aa443`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6afed619aa443) -
19
+ Clean up experiment `platform_editor_table_close_cell_menu_on_move_exp`
20
+ - [`f94fb2358b562`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f94fb2358b562) -
21
+ Clean up experiment `platform_editor_misaligned_ai_screens_firefox_fix`
22
+ - [`7d2c4ad5f91a2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7d2c4ad5f91a2) -
23
+ Clean up experiment `improve_3p_smart_link_resolve_rate`
24
+
25
+ ### Minor Changes
26
+
27
+ - [`ded72f3ee293f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ded72f3ee293f) -
28
+ Fix table diff cell overlays to use rounded corners for delete row diffs when
29
+ platform_editor_table_diff_rounded_corners is enabled
30
+ - [`c5e72a8f173eb`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c5e72a8f173eb) -
31
+ text change only with experiment gate
32
+ - [`63f37967452f1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/63f37967452f1) -
33
+ A11Y-42687 remove redundant aria-described-by attributes from toolbar
34
+
35
+ ### Patch Changes
36
+
37
+ - [`79c6e92d799d3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/79c6e92d799d3) -
38
+ [ux] A11Y-31084: Expose the emoji picker grid as an accessible list
39
+
40
+ Behind the `platform_a11y_fixes_emoji_picker_list` experiment, the emoji picker's scrollable grid
41
+ is exposed to assistive technology as a single list: the scroll container becomes `role="list"`
42
+ and each emoji is a `role="listitem"` (`<li>`), so screen readers announce the list and its items
43
+ instead of a grid. The virtualizer is left intact. Also registers the experiment in the editor
44
+ experiments config so it can be resolved via `expValEqualsNoExposure`.
45
+
3
46
  ## 130.2.0
4
47
 
5
48
  ### Minor Changes
@@ -12,7 +12,7 @@ var _setup = require("./setup");
12
12
  // This internal representation doesn't currently support productKeys
13
13
  // the way expVal(...) does, this adds temporary support for some keys while
14
14
  // we determine our preferred approach forward
15
- var allowsProductKeys = ['cc-maui-experiment', 'platform_use_unicode_emojis'];
15
+ var allowsProductKeys = ['cc-maui-experiment', 'cc_maui_create_keyword', 'platform_use_unicode_emojis'];
16
16
 
17
17
  /**
18
18
  * Check the value if an editor experiment.
@@ -13,7 +13,7 @@ var _experimentBuilders = require("./experiment-builders");
13
13
 
14
14
  // These experiments have a jira-specific key that differs from the experiment name,
15
15
  // so they must opt out of product-key routing to avoid sending the wrong key on jira.
16
- var disallowsProductKeys = exports.disallowsProductKeys = ['platform_editor_block_menu', 'platform_editor_blocks', 'platform_editor_controls', 'platform_editor_preview_panel_linking_exp', 'platform_synced_block', 'smart_link_confluence_short_link_analytics', 'platform_editor_static_css', 'advanced_layouts', 'single_column_layouts', 'platform_editor_preview_panel_responsiveness', 'platform_editor_toolbar_aifc', 'platform_editor_ignore_metadata_connection_errors', 'comment_on_bodied_extensions'];
16
+ var disallowsProductKeys = exports.disallowsProductKeys = ['platform_editor_block_menu', 'platform_editor_blocks', 'platform_editor_controls', 'platform_editor_preview_panel_linking_exp', 'platform_synced_block', 'smart_link_confluence_short_link_analytics', 'platform_editor_static_css', 'advanced_layouts', 'single_column_layouts', 'platform_editor_preview_panel_responsiveness', 'platform_editor_toolbar_aifc', 'comment_on_bodied_extensions'];
17
17
 
18
18
  /**
19
19
  * Extract valid expected values.
@@ -108,6 +108,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
108
108
  param: 'isEnabled',
109
109
  defaultValue: false
110
110
  }),
111
+ // Added 2026-07-21
112
+ 'editor_a11y__toolbar-item-aria-described-by_fy27': (0, _experimentBuilders.createBooleanExperiment)({
113
+ productKeys: {
114
+ confluence: 'editor_a11y__toolbar-item-aria-described-by_fy27',
115
+ jira: 'editor_a11y__toolbar-item-aria-described-by_fy27'
116
+ },
117
+ param: 'isEnabled',
118
+ defaultValue: false
119
+ }),
111
120
  // Added 2026-06-19
112
121
  'enghealth-53346_fix_redaction_marker_editor': (0, _experimentBuilders.createBooleanExperiment)({
113
122
  productKeys: {
@@ -156,14 +165,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
156
165
  param: 'isEnabled',
157
166
  defaultValue: false
158
167
  }),
159
- // Added 2026-01-15
160
- confluence_max_width_breakout_extension_fix: (0, _experimentBuilders.createBooleanExperiment)({
161
- productKeys: {
162
- confluence: 'confluence_max_width_breakout_extension_fix'
163
- },
164
- param: 'isEnabled',
165
- defaultValue: false
166
- }),
167
168
  confluence_quick_insert_embeds: (0, _experimentBuilders.createMultivariateExperiment)({
168
169
  productKeys: {
169
170
  confluence: 'confluence_quick_insert_embeds'
@@ -1240,14 +1241,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1240
1241
  param: 'isEnabled',
1241
1242
  defaultValue: false
1242
1243
  }),
1243
- // Added 2026-03-16
1244
- platform_editor_ignore_metadata_connection_errors: (0, _experimentBuilders.createBooleanExperiment)({
1245
- productKeys: {
1246
- confluence: 'platform_editor_collab_provider_suppress_metadata_errors'
1247
- },
1248
- param: 'isEnabled',
1249
- defaultValue: false
1250
- }),
1251
1244
  // Added 2026-02-18
1252
1245
  platform_editor_table_a11y_eslint_fix: (0, _experimentBuilders.createBooleanExperiment)({
1253
1246
  productKeys: {
@@ -1394,6 +1387,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1394
1387
  param: 'isEnabled',
1395
1388
  defaultValue: false
1396
1389
  }),
1390
+ cc_maui_create_keyword: (0, _experimentBuilders.createBooleanExperiment)({
1391
+ productKeys: {
1392
+ confluence: 'cc_maui_create_keyword'
1393
+ },
1394
+ param: 'isEnabled',
1395
+ defaultValue: false
1396
+ }),
1397
1397
  // Added 2026-07-13
1398
1398
  confluence_native_tabs_experiment: (0, _experimentBuilders.createBooleanExperiment)({
1399
1399
  productKeys: {
@@ -1714,6 +1714,22 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1714
1714
  param: 'isEnabled',
1715
1715
  defaultValue: false
1716
1716
  }),
1717
+ // Added 2026-07-20
1718
+ platform_editor_table_diff_rounded_corners: (0, _experimentBuilders.createBooleanExperiment)({
1719
+ productKeys: {
1720
+ confluence: 'platform_editor_table_diff_rounded_corners'
1721
+ },
1722
+ param: 'isEnabled',
1723
+ defaultValue: false
1724
+ }),
1725
+ // Added 2026-07-17
1726
+ platform_editor_improve_inline_diffs: (0, _experimentBuilders.createBooleanExperiment)({
1727
+ productKeys: {
1728
+ confluence: 'platform_editor_improve_inline_diffs'
1729
+ },
1730
+ param: 'isEnabled',
1731
+ defaultValue: false
1732
+ }),
1717
1733
  // Added 2026-03-10
1718
1734
  platform_editor_fix_media_toolbar_border_dropdown: (0, _experimentBuilders.createBooleanExperiment)({
1719
1735
  productKeys: {
@@ -1784,15 +1800,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1784
1800
  param: 'isEnabled',
1785
1801
  defaultValue: false
1786
1802
  }),
1787
- // Added 2026-03-13
1788
- platform_editor_misaligned_ai_screens_firefox_fix: (0, _experimentBuilders.createBooleanExperiment)({
1789
- productKeys: {
1790
- confluence: 'platform_editor_misaligned_ai_screens_firefox_fix',
1791
- jira: 'platform_editor_misaligned_ai_screens_firefox_fix'
1792
- },
1793
- param: 'isEnabled',
1794
- defaultValue: false
1795
- }),
1796
1803
  // Added 2026-03-15
1797
1804
  platform_editor_stricter_panelcolor_typecheck: (0, _experimentBuilders.createBooleanExperiment)({
1798
1805
  productKeys: {
@@ -1947,14 +1954,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1947
1954
  param: 'isEnabled',
1948
1955
  defaultValue: false
1949
1956
  }),
1950
- // Added 2026-04-14
1951
- improve_3p_smart_link_resolve_rate: (0, _experimentBuilders.createBooleanExperiment)({
1952
- productKeys: {
1953
- confluence: 'improve_3p_smart_link_resolve_rate'
1954
- },
1955
- param: 'isEnabled',
1956
- defaultValue: false
1957
- }),
1958
1957
  // Added 2026-04-01
1959
1958
  platform_editor_hydration_skip_react_portal: (0, _experimentBuilders.createBooleanExperiment)({
1960
1959
  productKeys: {
@@ -2069,14 +2068,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
2069
2068
  param: 'isEnabled',
2070
2069
  defaultValue: false
2071
2070
  }),
2072
- platform_editor_table_close_cell_menu_on_move_exp: (0, _experimentBuilders.createBooleanExperiment)({
2073
- productKeys: {
2074
- confluence: 'platform_editor_table_close_cell_menu_on_move_exp',
2075
- jira: 'platform_editor_table_close_cell_menu_on_move_exp'
2076
- },
2077
- param: 'isEnabled',
2078
- defaultValue: false
2079
- }),
2080
2071
  // Added 2026-07-16
2081
2072
  platform_editor_fix_table_move_shortcut: (0, _experimentBuilders.createBooleanExperiment)({
2082
2073
  productKeys: {
@@ -2094,14 +2085,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
2094
2085
  param: 'isEnabled',
2095
2086
  defaultValue: false
2096
2087
  }),
2097
- // Added 2026-04-22
2098
- platform_editor_ai_screen_layout_refactor: (0, _experimentBuilders.createBooleanExperiment)({
2099
- productKeys: {
2100
- confluence: 'platform_editor_ai_screen_layout_refactor'
2101
- },
2102
- param: 'isEnabled',
2103
- defaultValue: false
2104
- }),
2105
2088
  // Added 2026-04-23
2106
2089
  work_item_modernization: (0, _experimentBuilders.createBooleanExperiment)({
2107
2090
  productKeys: {
@@ -2311,6 +2294,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
2311
2294
  param: 'isEnabled',
2312
2295
  defaultValue: false
2313
2296
  }),
2297
+ // Added 2026-07-16
2298
+ platform_a11y_fixes_emoji_picker_list: (0, _experimentBuilders.createBooleanExperiment)({
2299
+ productKeys: {
2300
+ confluence: 'platform_a11y_fixes_emoji_picker_list',
2301
+ jira: 'platform_a11y_fixes_emoji_picker_list'
2302
+ },
2303
+ param: 'isEnabled',
2304
+ defaultValue: false
2305
+ }),
2314
2306
  // Added 2026-05-25
2315
2307
  // HTML+ v2 incremental tool-call streaming contract — gates the new
2316
2308
  // PartialStreamParserV2 / ToolCallProcessorV2 / AdfChunkStrategyV2 stack
@@ -6,7 +6,7 @@ import { _overrides, _product } from './setup';
6
6
  // This internal representation doesn't currently support productKeys
7
7
  // the way expVal(...) does, this adds temporary support for some keys while
8
8
  // we determine our preferred approach forward
9
- const allowsProductKeys = ['cc-maui-experiment', 'platform_use_unicode_emojis'];
9
+ const allowsProductKeys = ['cc-maui-experiment', 'cc_maui_create_keyword', 'platform_use_unicode_emojis'];
10
10
 
11
11
  /**
12
12
  * Check the value if an editor experiment.
@@ -7,7 +7,7 @@ import { createBooleanExperiment, createMultivariateExperiment } from './experim
7
7
 
8
8
  // These experiments have a jira-specific key that differs from the experiment name,
9
9
  // so they must opt out of product-key routing to avoid sending the wrong key on jira.
10
- export const disallowsProductKeys = ['platform_editor_block_menu', 'platform_editor_blocks', 'platform_editor_controls', 'platform_editor_preview_panel_linking_exp', 'platform_synced_block', 'smart_link_confluence_short_link_analytics', 'platform_editor_static_css', 'advanced_layouts', 'single_column_layouts', 'platform_editor_preview_panel_responsiveness', 'platform_editor_toolbar_aifc', 'platform_editor_ignore_metadata_connection_errors', 'comment_on_bodied_extensions'];
10
+ export const disallowsProductKeys = ['platform_editor_block_menu', 'platform_editor_blocks', 'platform_editor_controls', 'platform_editor_preview_panel_linking_exp', 'platform_synced_block', 'smart_link_confluence_short_link_analytics', 'platform_editor_static_css', 'advanced_layouts', 'single_column_layouts', 'platform_editor_preview_panel_responsiveness', 'platform_editor_toolbar_aifc', 'comment_on_bodied_extensions'];
11
11
 
12
12
  /**
13
13
  * Extract valid expected values.
@@ -102,6 +102,15 @@ export const editorExperimentsConfig = {
102
102
  param: 'isEnabled',
103
103
  defaultValue: false
104
104
  }),
105
+ // Added 2026-07-21
106
+ 'editor_a11y__toolbar-item-aria-described-by_fy27': createBooleanExperiment({
107
+ productKeys: {
108
+ confluence: 'editor_a11y__toolbar-item-aria-described-by_fy27',
109
+ jira: 'editor_a11y__toolbar-item-aria-described-by_fy27'
110
+ },
111
+ param: 'isEnabled',
112
+ defaultValue: false
113
+ }),
105
114
  // Added 2026-06-19
106
115
  'enghealth-53346_fix_redaction_marker_editor': createBooleanExperiment({
107
116
  productKeys: {
@@ -150,14 +159,6 @@ export const editorExperimentsConfig = {
150
159
  param: 'isEnabled',
151
160
  defaultValue: false
152
161
  }),
153
- // Added 2026-01-15
154
- confluence_max_width_breakout_extension_fix: createBooleanExperiment({
155
- productKeys: {
156
- confluence: 'confluence_max_width_breakout_extension_fix'
157
- },
158
- param: 'isEnabled',
159
- defaultValue: false
160
- }),
161
162
  confluence_quick_insert_embeds: createMultivariateExperiment({
162
163
  productKeys: {
163
164
  confluence: 'confluence_quick_insert_embeds'
@@ -1234,14 +1235,6 @@ export const editorExperimentsConfig = {
1234
1235
  param: 'isEnabled',
1235
1236
  defaultValue: false
1236
1237
  }),
1237
- // Added 2026-03-16
1238
- platform_editor_ignore_metadata_connection_errors: createBooleanExperiment({
1239
- productKeys: {
1240
- confluence: 'platform_editor_collab_provider_suppress_metadata_errors'
1241
- },
1242
- param: 'isEnabled',
1243
- defaultValue: false
1244
- }),
1245
1238
  // Added 2026-02-18
1246
1239
  platform_editor_table_a11y_eslint_fix: createBooleanExperiment({
1247
1240
  productKeys: {
@@ -1388,6 +1381,13 @@ export const editorExperimentsConfig = {
1388
1381
  param: 'isEnabled',
1389
1382
  defaultValue: false
1390
1383
  }),
1384
+ cc_maui_create_keyword: createBooleanExperiment({
1385
+ productKeys: {
1386
+ confluence: 'cc_maui_create_keyword'
1387
+ },
1388
+ param: 'isEnabled',
1389
+ defaultValue: false
1390
+ }),
1391
1391
  // Added 2026-07-13
1392
1392
  confluence_native_tabs_experiment: createBooleanExperiment({
1393
1393
  productKeys: {
@@ -1708,6 +1708,22 @@ export const editorExperimentsConfig = {
1708
1708
  param: 'isEnabled',
1709
1709
  defaultValue: false
1710
1710
  }),
1711
+ // Added 2026-07-20
1712
+ platform_editor_table_diff_rounded_corners: createBooleanExperiment({
1713
+ productKeys: {
1714
+ confluence: 'platform_editor_table_diff_rounded_corners'
1715
+ },
1716
+ param: 'isEnabled',
1717
+ defaultValue: false
1718
+ }),
1719
+ // Added 2026-07-17
1720
+ platform_editor_improve_inline_diffs: createBooleanExperiment({
1721
+ productKeys: {
1722
+ confluence: 'platform_editor_improve_inline_diffs'
1723
+ },
1724
+ param: 'isEnabled',
1725
+ defaultValue: false
1726
+ }),
1711
1727
  // Added 2026-03-10
1712
1728
  platform_editor_fix_media_toolbar_border_dropdown: createBooleanExperiment({
1713
1729
  productKeys: {
@@ -1778,15 +1794,6 @@ export const editorExperimentsConfig = {
1778
1794
  param: 'isEnabled',
1779
1795
  defaultValue: false
1780
1796
  }),
1781
- // Added 2026-03-13
1782
- platform_editor_misaligned_ai_screens_firefox_fix: createBooleanExperiment({
1783
- productKeys: {
1784
- confluence: 'platform_editor_misaligned_ai_screens_firefox_fix',
1785
- jira: 'platform_editor_misaligned_ai_screens_firefox_fix'
1786
- },
1787
- param: 'isEnabled',
1788
- defaultValue: false
1789
- }),
1790
1797
  // Added 2026-03-15
1791
1798
  platform_editor_stricter_panelcolor_typecheck: createBooleanExperiment({
1792
1799
  productKeys: {
@@ -1941,14 +1948,6 @@ export const editorExperimentsConfig = {
1941
1948
  param: 'isEnabled',
1942
1949
  defaultValue: false
1943
1950
  }),
1944
- // Added 2026-04-14
1945
- improve_3p_smart_link_resolve_rate: createBooleanExperiment({
1946
- productKeys: {
1947
- confluence: 'improve_3p_smart_link_resolve_rate'
1948
- },
1949
- param: 'isEnabled',
1950
- defaultValue: false
1951
- }),
1952
1951
  // Added 2026-04-01
1953
1952
  platform_editor_hydration_skip_react_portal: createBooleanExperiment({
1954
1953
  productKeys: {
@@ -2063,14 +2062,6 @@ export const editorExperimentsConfig = {
2063
2062
  param: 'isEnabled',
2064
2063
  defaultValue: false
2065
2064
  }),
2066
- platform_editor_table_close_cell_menu_on_move_exp: createBooleanExperiment({
2067
- productKeys: {
2068
- confluence: 'platform_editor_table_close_cell_menu_on_move_exp',
2069
- jira: 'platform_editor_table_close_cell_menu_on_move_exp'
2070
- },
2071
- param: 'isEnabled',
2072
- defaultValue: false
2073
- }),
2074
2065
  // Added 2026-07-16
2075
2066
  platform_editor_fix_table_move_shortcut: createBooleanExperiment({
2076
2067
  productKeys: {
@@ -2088,14 +2079,6 @@ export const editorExperimentsConfig = {
2088
2079
  param: 'isEnabled',
2089
2080
  defaultValue: false
2090
2081
  }),
2091
- // Added 2026-04-22
2092
- platform_editor_ai_screen_layout_refactor: createBooleanExperiment({
2093
- productKeys: {
2094
- confluence: 'platform_editor_ai_screen_layout_refactor'
2095
- },
2096
- param: 'isEnabled',
2097
- defaultValue: false
2098
- }),
2099
2082
  // Added 2026-04-23
2100
2083
  work_item_modernization: createBooleanExperiment({
2101
2084
  productKeys: {
@@ -2305,6 +2288,15 @@ export const editorExperimentsConfig = {
2305
2288
  param: 'isEnabled',
2306
2289
  defaultValue: false
2307
2290
  }),
2291
+ // Added 2026-07-16
2292
+ platform_a11y_fixes_emoji_picker_list: createBooleanExperiment({
2293
+ productKeys: {
2294
+ confluence: 'platform_a11y_fixes_emoji_picker_list',
2295
+ jira: 'platform_a11y_fixes_emoji_picker_list'
2296
+ },
2297
+ param: 'isEnabled',
2298
+ defaultValue: false
2299
+ }),
2308
2300
  // Added 2026-05-25
2309
2301
  // HTML+ v2 incremental tool-call streaming contract — gates the new
2310
2302
  // PartialStreamParserV2 / ToolCallProcessorV2 / AdfChunkStrategyV2 stack
@@ -6,7 +6,7 @@ import { _overrides, _product } from './setup';
6
6
  // This internal representation doesn't currently support productKeys
7
7
  // the way expVal(...) does, this adds temporary support for some keys while
8
8
  // we determine our preferred approach forward
9
- var allowsProductKeys = ['cc-maui-experiment', 'platform_use_unicode_emojis'];
9
+ var allowsProductKeys = ['cc-maui-experiment', 'cc_maui_create_keyword', 'platform_use_unicode_emojis'];
10
10
 
11
11
  /**
12
12
  * Check the value if an editor experiment.
@@ -7,7 +7,7 @@ import { createBooleanExperiment, createMultivariateExperiment } from './experim
7
7
 
8
8
  // These experiments have a jira-specific key that differs from the experiment name,
9
9
  // so they must opt out of product-key routing to avoid sending the wrong key on jira.
10
- export var disallowsProductKeys = ['platform_editor_block_menu', 'platform_editor_blocks', 'platform_editor_controls', 'platform_editor_preview_panel_linking_exp', 'platform_synced_block', 'smart_link_confluence_short_link_analytics', 'platform_editor_static_css', 'advanced_layouts', 'single_column_layouts', 'platform_editor_preview_panel_responsiveness', 'platform_editor_toolbar_aifc', 'platform_editor_ignore_metadata_connection_errors', 'comment_on_bodied_extensions'];
10
+ export var disallowsProductKeys = ['platform_editor_block_menu', 'platform_editor_blocks', 'platform_editor_controls', 'platform_editor_preview_panel_linking_exp', 'platform_synced_block', 'smart_link_confluence_short_link_analytics', 'platform_editor_static_css', 'advanced_layouts', 'single_column_layouts', 'platform_editor_preview_panel_responsiveness', 'platform_editor_toolbar_aifc', 'comment_on_bodied_extensions'];
11
11
 
12
12
  /**
13
13
  * Extract valid expected values.
@@ -102,6 +102,15 @@ export var editorExperimentsConfig = {
102
102
  param: 'isEnabled',
103
103
  defaultValue: false
104
104
  }),
105
+ // Added 2026-07-21
106
+ 'editor_a11y__toolbar-item-aria-described-by_fy27': createBooleanExperiment({
107
+ productKeys: {
108
+ confluence: 'editor_a11y__toolbar-item-aria-described-by_fy27',
109
+ jira: 'editor_a11y__toolbar-item-aria-described-by_fy27'
110
+ },
111
+ param: 'isEnabled',
112
+ defaultValue: false
113
+ }),
105
114
  // Added 2026-06-19
106
115
  'enghealth-53346_fix_redaction_marker_editor': createBooleanExperiment({
107
116
  productKeys: {
@@ -150,14 +159,6 @@ export var editorExperimentsConfig = {
150
159
  param: 'isEnabled',
151
160
  defaultValue: false
152
161
  }),
153
- // Added 2026-01-15
154
- confluence_max_width_breakout_extension_fix: createBooleanExperiment({
155
- productKeys: {
156
- confluence: 'confluence_max_width_breakout_extension_fix'
157
- },
158
- param: 'isEnabled',
159
- defaultValue: false
160
- }),
161
162
  confluence_quick_insert_embeds: createMultivariateExperiment({
162
163
  productKeys: {
163
164
  confluence: 'confluence_quick_insert_embeds'
@@ -1234,14 +1235,6 @@ export var editorExperimentsConfig = {
1234
1235
  param: 'isEnabled',
1235
1236
  defaultValue: false
1236
1237
  }),
1237
- // Added 2026-03-16
1238
- platform_editor_ignore_metadata_connection_errors: createBooleanExperiment({
1239
- productKeys: {
1240
- confluence: 'platform_editor_collab_provider_suppress_metadata_errors'
1241
- },
1242
- param: 'isEnabled',
1243
- defaultValue: false
1244
- }),
1245
1238
  // Added 2026-02-18
1246
1239
  platform_editor_table_a11y_eslint_fix: createBooleanExperiment({
1247
1240
  productKeys: {
@@ -1388,6 +1381,13 @@ export var editorExperimentsConfig = {
1388
1381
  param: 'isEnabled',
1389
1382
  defaultValue: false
1390
1383
  }),
1384
+ cc_maui_create_keyword: createBooleanExperiment({
1385
+ productKeys: {
1386
+ confluence: 'cc_maui_create_keyword'
1387
+ },
1388
+ param: 'isEnabled',
1389
+ defaultValue: false
1390
+ }),
1391
1391
  // Added 2026-07-13
1392
1392
  confluence_native_tabs_experiment: createBooleanExperiment({
1393
1393
  productKeys: {
@@ -1708,6 +1708,22 @@ export var editorExperimentsConfig = {
1708
1708
  param: 'isEnabled',
1709
1709
  defaultValue: false
1710
1710
  }),
1711
+ // Added 2026-07-20
1712
+ platform_editor_table_diff_rounded_corners: createBooleanExperiment({
1713
+ productKeys: {
1714
+ confluence: 'platform_editor_table_diff_rounded_corners'
1715
+ },
1716
+ param: 'isEnabled',
1717
+ defaultValue: false
1718
+ }),
1719
+ // Added 2026-07-17
1720
+ platform_editor_improve_inline_diffs: createBooleanExperiment({
1721
+ productKeys: {
1722
+ confluence: 'platform_editor_improve_inline_diffs'
1723
+ },
1724
+ param: 'isEnabled',
1725
+ defaultValue: false
1726
+ }),
1711
1727
  // Added 2026-03-10
1712
1728
  platform_editor_fix_media_toolbar_border_dropdown: createBooleanExperiment({
1713
1729
  productKeys: {
@@ -1778,15 +1794,6 @@ export var editorExperimentsConfig = {
1778
1794
  param: 'isEnabled',
1779
1795
  defaultValue: false
1780
1796
  }),
1781
- // Added 2026-03-13
1782
- platform_editor_misaligned_ai_screens_firefox_fix: createBooleanExperiment({
1783
- productKeys: {
1784
- confluence: 'platform_editor_misaligned_ai_screens_firefox_fix',
1785
- jira: 'platform_editor_misaligned_ai_screens_firefox_fix'
1786
- },
1787
- param: 'isEnabled',
1788
- defaultValue: false
1789
- }),
1790
1797
  // Added 2026-03-15
1791
1798
  platform_editor_stricter_panelcolor_typecheck: createBooleanExperiment({
1792
1799
  productKeys: {
@@ -1941,14 +1948,6 @@ export var editorExperimentsConfig = {
1941
1948
  param: 'isEnabled',
1942
1949
  defaultValue: false
1943
1950
  }),
1944
- // Added 2026-04-14
1945
- improve_3p_smart_link_resolve_rate: createBooleanExperiment({
1946
- productKeys: {
1947
- confluence: 'improve_3p_smart_link_resolve_rate'
1948
- },
1949
- param: 'isEnabled',
1950
- defaultValue: false
1951
- }),
1952
1951
  // Added 2026-04-01
1953
1952
  platform_editor_hydration_skip_react_portal: createBooleanExperiment({
1954
1953
  productKeys: {
@@ -2063,14 +2062,6 @@ export var editorExperimentsConfig = {
2063
2062
  param: 'isEnabled',
2064
2063
  defaultValue: false
2065
2064
  }),
2066
- platform_editor_table_close_cell_menu_on_move_exp: createBooleanExperiment({
2067
- productKeys: {
2068
- confluence: 'platform_editor_table_close_cell_menu_on_move_exp',
2069
- jira: 'platform_editor_table_close_cell_menu_on_move_exp'
2070
- },
2071
- param: 'isEnabled',
2072
- defaultValue: false
2073
- }),
2074
2065
  // Added 2026-07-16
2075
2066
  platform_editor_fix_table_move_shortcut: createBooleanExperiment({
2076
2067
  productKeys: {
@@ -2088,14 +2079,6 @@ export var editorExperimentsConfig = {
2088
2079
  param: 'isEnabled',
2089
2080
  defaultValue: false
2090
2081
  }),
2091
- // Added 2026-04-22
2092
- platform_editor_ai_screen_layout_refactor: createBooleanExperiment({
2093
- productKeys: {
2094
- confluence: 'platform_editor_ai_screen_layout_refactor'
2095
- },
2096
- param: 'isEnabled',
2097
- defaultValue: false
2098
- }),
2099
2082
  // Added 2026-04-23
2100
2083
  work_item_modernization: createBooleanExperiment({
2101
2084
  productKeys: {
@@ -2305,6 +2288,15 @@ export var editorExperimentsConfig = {
2305
2288
  param: 'isEnabled',
2306
2289
  defaultValue: false
2307
2290
  }),
2291
+ // Added 2026-07-16
2292
+ platform_a11y_fixes_emoji_picker_list: createBooleanExperiment({
2293
+ productKeys: {
2294
+ confluence: 'platform_a11y_fixes_emoji_picker_list',
2295
+ jira: 'platform_a11y_fixes_emoji_picker_list'
2296
+ },
2297
+ param: 'isEnabled',
2298
+ defaultValue: false
2299
+ }),
2308
2300
  // Added 2026-05-25
2309
2301
  // HTML+ v2 incremental tool-call streaming contract — gates the new
2310
2302
  // PartialStreamParserV2 / ToolCallProcessorV2 / AdfChunkStrategyV2 stack
@@ -137,6 +137,12 @@ export declare const editorExperimentsConfig: {
137
137
  productKeys?: ProductKeys;
138
138
  typeGuard: IsBooleanType;
139
139
  };
140
+ 'editor_a11y__toolbar-item-aria-described-by_fy27': {
141
+ defaultValue: boolean;
142
+ param: string;
143
+ productKeys?: ProductKeys;
144
+ typeGuard: IsBooleanType;
145
+ };
140
146
  'enghealth-53346_fix_redaction_marker_editor': {
141
147
  defaultValue: boolean;
142
148
  param: string;
@@ -264,12 +270,6 @@ export declare const editorExperimentsConfig: {
264
270
  productKeys?: ProductKeys;
265
271
  typeGuard: IsBooleanType;
266
272
  };
267
- confluence_max_width_breakout_extension_fix: {
268
- defaultValue: boolean;
269
- param: string;
270
- productKeys?: ProductKeys;
271
- typeGuard: IsBooleanType;
272
- };
273
273
  confluence_quick_insert_embeds: {
274
274
  defaultValue: 'control' | 'prioritizeLinkInQIM' | 'prioritizeEmbedInQIM';
275
275
  param: string;
@@ -901,12 +901,6 @@ export declare const editorExperimentsConfig: {
901
901
  productKeys?: ProductKeys;
902
902
  typeGuard: IsBooleanType;
903
903
  };
904
- platform_editor_ignore_metadata_connection_errors: {
905
- defaultValue: boolean;
906
- param: string;
907
- productKeys?: ProductKeys;
908
- typeGuard: IsBooleanType;
909
- };
910
904
  platform_editor_renderer_toolbar_updates: {
911
905
  defaultValue: boolean;
912
906
  param: string;
@@ -1071,6 +1065,12 @@ export declare const editorExperimentsConfig: {
1071
1065
  productKeys?: ProductKeys;
1072
1066
  typeGuard: IsBooleanType;
1073
1067
  };
1068
+ cc_maui_create_keyword: {
1069
+ defaultValue: boolean;
1070
+ param: string;
1071
+ productKeys?: ProductKeys;
1072
+ typeGuard: IsBooleanType;
1073
+ };
1074
1074
  confluence_native_tabs_experiment: {
1075
1075
  defaultValue: boolean;
1076
1076
  param: string;
@@ -1324,37 +1324,43 @@ export declare const editorExperimentsConfig: {
1324
1324
  productKeys?: ProductKeys;
1325
1325
  typeGuard: IsBooleanType;
1326
1326
  };
1327
- platform_editor_fix_media_toolbar_border_dropdown: {
1327
+ platform_editor_table_diff_rounded_corners: {
1328
1328
  defaultValue: boolean;
1329
1329
  param: string;
1330
1330
  productKeys?: ProductKeys;
1331
1331
  typeGuard: IsBooleanType;
1332
1332
  };
1333
- platform_editor_single_player_expand: {
1333
+ platform_editor_improve_inline_diffs: {
1334
1334
  defaultValue: boolean;
1335
1335
  param: string;
1336
1336
  productKeys?: ProductKeys;
1337
1337
  typeGuard: IsBooleanType;
1338
1338
  };
1339
- platform_editor_remove_collab_step_metrics: {
1339
+ platform_editor_fix_media_toolbar_border_dropdown: {
1340
1340
  defaultValue: boolean;
1341
1341
  param: string;
1342
1342
  productKeys?: ProductKeys;
1343
1343
  typeGuard: IsBooleanType;
1344
1344
  };
1345
- platform_editor_editor_centre_content_on_find: {
1345
+ platform_editor_single_player_expand: {
1346
1346
  defaultValue: boolean;
1347
1347
  param: string;
1348
1348
  productKeys?: ProductKeys;
1349
1349
  typeGuard: IsBooleanType;
1350
1350
  };
1351
- platform_editor_close_expand_find: {
1351
+ platform_editor_remove_collab_step_metrics: {
1352
1352
  defaultValue: boolean;
1353
1353
  param: string;
1354
1354
  productKeys?: ProductKeys;
1355
1355
  typeGuard: IsBooleanType;
1356
1356
  };
1357
- platform_editor_misaligned_ai_screens_firefox_fix: {
1357
+ platform_editor_editor_centre_content_on_find: {
1358
+ defaultValue: boolean;
1359
+ param: string;
1360
+ productKeys?: ProductKeys;
1361
+ typeGuard: IsBooleanType;
1362
+ };
1363
+ platform_editor_close_expand_find: {
1358
1364
  defaultValue: boolean;
1359
1365
  param: string;
1360
1366
  productKeys?: ProductKeys;
@@ -1486,12 +1492,6 @@ export declare const editorExperimentsConfig: {
1486
1492
  productKeys?: ProductKeys;
1487
1493
  typeGuard: IsBooleanType;
1488
1494
  };
1489
- improve_3p_smart_link_resolve_rate: {
1490
- defaultValue: boolean;
1491
- param: string;
1492
- productKeys?: ProductKeys;
1493
- typeGuard: IsBooleanType;
1494
- };
1495
1495
  platform_editor_media_reliability_enhancements: {
1496
1496
  defaultValue: boolean;
1497
1497
  param: string;
@@ -1522,12 +1522,6 @@ export declare const editorExperimentsConfig: {
1522
1522
  productKeys?: ProductKeys;
1523
1523
  typeGuard: IsBooleanType;
1524
1524
  };
1525
- platform_editor_table_close_cell_menu_on_move_exp: {
1526
- defaultValue: boolean;
1527
- param: string;
1528
- productKeys?: ProductKeys;
1529
- typeGuard: IsBooleanType;
1530
- };
1531
1525
  platform_editor_fix_table_move_shortcut: {
1532
1526
  defaultValue: boolean;
1533
1527
  param: string;
@@ -1540,12 +1534,6 @@ export declare const editorExperimentsConfig: {
1540
1534
  productKeys?: ProductKeys;
1541
1535
  typeGuard: IsBooleanType;
1542
1536
  };
1543
- platform_editor_ai_screen_layout_refactor: {
1544
- defaultValue: boolean;
1545
- param: string;
1546
- productKeys?: ProductKeys;
1547
- typeGuard: IsBooleanType;
1548
- };
1549
1537
  work_item_modernization: {
1550
1538
  defaultValue: boolean;
1551
1539
  param: string;
@@ -1691,6 +1679,12 @@ export declare const editorExperimentsConfig: {
1691
1679
  productKeys?: ProductKeys;
1692
1680
  typeGuard: IsBooleanType;
1693
1681
  };
1682
+ platform_a11y_fixes_emoji_picker_list: {
1683
+ defaultValue: boolean;
1684
+ param: string;
1685
+ productKeys?: ProductKeys;
1686
+ typeGuard: IsBooleanType;
1687
+ };
1694
1688
  platform_editor_use_html_plus_streaming_parser: {
1695
1689
  defaultValue: boolean;
1696
1690
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "130.2.0",
3
+ "version": "132.0.0",
4
4
  "description": "Temp plugin to ease use of statsig feature flags until platform feature flags are available",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -26,7 +26,7 @@
26
26
  "atlaskit:src": "src/index.ts",
27
27
  "dependencies": {
28
28
  "@atlaskit/feature-gate-js-client": "^6.0.0",
29
- "@atlaskit/platform-feature-flags": "^2.0.0",
29
+ "@atlaskit/platform-feature-flags": "^2.1.0",
30
30
  "@atlaskit/react-ufo": "^7.3.0",
31
31
  "@babel/runtime": "^7.0.0"
32
32
  },