@atlaskit/tmp-editor-statsig 35.6.0 → 35.7.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,21 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 35.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`f91f6be9566a5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f91f6be9566a5) -
8
+ Don't show the grid container if not visible to avoid reflow experiment.
9
+ - [`0a65ee9a1c299`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0a65ee9a1c299) -
10
+ Replace ReactDOM.render in editor-extesion-dropbox
11
+ - [`29e8db48dc55b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/29e8db48dc55b) -
12
+ [ux] EDITOR-5622 Remove sentinels when shadowObserver is cleaned up
13
+ - [`dd5154ad0dec5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/dd5154ad0dec5) -
14
+ [A11Y-10416] Add experiment editor-a11y-10416-codeblock-entry for code block accessibility
15
+ - [`1e58c64552ef8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1e58c64552ef8) -
16
+ Add new 'allowFontSize' plugin option to blockTypePlugin which enables new 'small' text feature to
17
+ be added, it's behind an experiment platform_editor_small_font_size.
18
+
3
19
  ## 35.6.0
4
20
 
5
21
  ### Minor Changes
@@ -248,6 +248,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
248
248
  param: 'isEnabled',
249
249
  defaultValue: false
250
250
  }),
251
+ // Added 2026-03-09
252
+ platform_editor_react19_migration: (0, _experimentBuilders.createBooleanExperiment)({
253
+ productKeys: {
254
+ confluence: 'platform_editor_react19_migration'
255
+ },
256
+ param: 'isEnabled',
257
+ defaultValue: false
258
+ }),
251
259
  // Added 2024-09-05
252
260
  support_table_in_comment: (0, _experimentBuilders.createBooleanExperiment)({
253
261
  productKeys: {
@@ -501,6 +509,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
501
509
  param: 'isEnabled',
502
510
  defaultValue: false
503
511
  }),
512
+ // Added 2026-03-10
513
+ platform_editor_renderer_shadow_observer_cleanup: (0, _experimentBuilders.createBooleanExperiment)({
514
+ productKeys: {
515
+ jira: 'platform_editor_renderer_shadow_observer_cleanup',
516
+ confluence: 'platform_editor_renderer_shadow_observer_cleanup'
517
+ },
518
+ param: 'isEnabled',
519
+ defaultValue: false
520
+ }),
504
521
  // Added 2025-07-08 - Jira work sync description comment summary
505
522
  'jira-work-sync-desc-comment-summary': (0, _experimentBuilders.createBooleanExperiment)({
506
523
  productKeys: {
@@ -1380,6 +1397,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1380
1397
  values: ['control', 'new-description', 'orig-description'],
1381
1398
  defaultValue: 'control'
1382
1399
  }),
1400
+ // Added 2026-02-05 - A11Y-10416
1401
+ editor_a11y_role_textbox: (0, _experimentBuilders.createBooleanExperiment)({
1402
+ productKeys: {
1403
+ confluence: 'editor_a11y_role_textbox'
1404
+ },
1405
+ param: 'isEnabled',
1406
+ defaultValue: false
1407
+ }),
1383
1408
  // Added 2026-01-28
1384
1409
  platform_editor_smartlink_local_cache: (0, _experimentBuilders.createBooleanExperiment)({
1385
1410
  productKeys: {
@@ -1649,6 +1674,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1649
1674
  param: 'isEnabled',
1650
1675
  defaultValue: false
1651
1676
  }),
1677
+ // Added 2026-03-11
1678
+ platform_editor_remove_grid_init_reflow: (0, _experimentBuilders.createBooleanExperiment)({
1679
+ productKeys: {
1680
+ confluence: 'platform_editor_remove_grid_init_reflow'
1681
+ },
1682
+ param: 'isEnabled',
1683
+ defaultValue: false
1684
+ }),
1652
1685
  // Added 2026-03-07
1653
1686
  platform_editor_table_remove_last_cell_decoration: (0, _experimentBuilders.createBooleanExperiment)({
1654
1687
  productKeys: {
@@ -1657,6 +1690,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1657
1690
  param: 'isEnabled',
1658
1691
  defaultValue: false
1659
1692
  }),
1693
+ platform_editor_small_font_size: (0, _experimentBuilders.createBooleanExperiment)({
1694
+ productKeys: {
1695
+ confluence: 'platform_editor_small_font_size'
1696
+ },
1697
+ param: 'isEnabled',
1698
+ defaultValue: false
1699
+ }),
1660
1700
  // Added 2026-03-10
1661
1701
  platform_editor_diff_plugin_extended: (0, _experimentBuilders.createBooleanExperiment)({
1662
1702
  productKeys: {
@@ -242,6 +242,14 @@ export const editorExperimentsConfig = {
242
242
  param: 'isEnabled',
243
243
  defaultValue: false
244
244
  }),
245
+ // Added 2026-03-09
246
+ platform_editor_react19_migration: createBooleanExperiment({
247
+ productKeys: {
248
+ confluence: 'platform_editor_react19_migration'
249
+ },
250
+ param: 'isEnabled',
251
+ defaultValue: false
252
+ }),
245
253
  // Added 2024-09-05
246
254
  support_table_in_comment: createBooleanExperiment({
247
255
  productKeys: {
@@ -495,6 +503,15 @@ export const editorExperimentsConfig = {
495
503
  param: 'isEnabled',
496
504
  defaultValue: false
497
505
  }),
506
+ // Added 2026-03-10
507
+ platform_editor_renderer_shadow_observer_cleanup: createBooleanExperiment({
508
+ productKeys: {
509
+ jira: 'platform_editor_renderer_shadow_observer_cleanup',
510
+ confluence: 'platform_editor_renderer_shadow_observer_cleanup'
511
+ },
512
+ param: 'isEnabled',
513
+ defaultValue: false
514
+ }),
498
515
  // Added 2025-07-08 - Jira work sync description comment summary
499
516
  'jira-work-sync-desc-comment-summary': createBooleanExperiment({
500
517
  productKeys: {
@@ -1374,6 +1391,14 @@ export const editorExperimentsConfig = {
1374
1391
  values: ['control', 'new-description', 'orig-description'],
1375
1392
  defaultValue: 'control'
1376
1393
  }),
1394
+ // Added 2026-02-05 - A11Y-10416
1395
+ editor_a11y_role_textbox: createBooleanExperiment({
1396
+ productKeys: {
1397
+ confluence: 'editor_a11y_role_textbox'
1398
+ },
1399
+ param: 'isEnabled',
1400
+ defaultValue: false
1401
+ }),
1377
1402
  // Added 2026-01-28
1378
1403
  platform_editor_smartlink_local_cache: createBooleanExperiment({
1379
1404
  productKeys: {
@@ -1643,6 +1668,14 @@ export const editorExperimentsConfig = {
1643
1668
  param: 'isEnabled',
1644
1669
  defaultValue: false
1645
1670
  }),
1671
+ // Added 2026-03-11
1672
+ platform_editor_remove_grid_init_reflow: createBooleanExperiment({
1673
+ productKeys: {
1674
+ confluence: 'platform_editor_remove_grid_init_reflow'
1675
+ },
1676
+ param: 'isEnabled',
1677
+ defaultValue: false
1678
+ }),
1646
1679
  // Added 2026-03-07
1647
1680
  platform_editor_table_remove_last_cell_decoration: createBooleanExperiment({
1648
1681
  productKeys: {
@@ -1651,6 +1684,13 @@ export const editorExperimentsConfig = {
1651
1684
  param: 'isEnabled',
1652
1685
  defaultValue: false
1653
1686
  }),
1687
+ platform_editor_small_font_size: createBooleanExperiment({
1688
+ productKeys: {
1689
+ confluence: 'platform_editor_small_font_size'
1690
+ },
1691
+ param: 'isEnabled',
1692
+ defaultValue: false
1693
+ }),
1654
1694
  // Added 2026-03-10
1655
1695
  platform_editor_diff_plugin_extended: createBooleanExperiment({
1656
1696
  productKeys: {
@@ -242,6 +242,14 @@ export var editorExperimentsConfig = {
242
242
  param: 'isEnabled',
243
243
  defaultValue: false
244
244
  }),
245
+ // Added 2026-03-09
246
+ platform_editor_react19_migration: createBooleanExperiment({
247
+ productKeys: {
248
+ confluence: 'platform_editor_react19_migration'
249
+ },
250
+ param: 'isEnabled',
251
+ defaultValue: false
252
+ }),
245
253
  // Added 2024-09-05
246
254
  support_table_in_comment: createBooleanExperiment({
247
255
  productKeys: {
@@ -495,6 +503,15 @@ export var editorExperimentsConfig = {
495
503
  param: 'isEnabled',
496
504
  defaultValue: false
497
505
  }),
506
+ // Added 2026-03-10
507
+ platform_editor_renderer_shadow_observer_cleanup: createBooleanExperiment({
508
+ productKeys: {
509
+ jira: 'platform_editor_renderer_shadow_observer_cleanup',
510
+ confluence: 'platform_editor_renderer_shadow_observer_cleanup'
511
+ },
512
+ param: 'isEnabled',
513
+ defaultValue: false
514
+ }),
498
515
  // Added 2025-07-08 - Jira work sync description comment summary
499
516
  'jira-work-sync-desc-comment-summary': createBooleanExperiment({
500
517
  productKeys: {
@@ -1374,6 +1391,14 @@ export var editorExperimentsConfig = {
1374
1391
  values: ['control', 'new-description', 'orig-description'],
1375
1392
  defaultValue: 'control'
1376
1393
  }),
1394
+ // Added 2026-02-05 - A11Y-10416
1395
+ editor_a11y_role_textbox: createBooleanExperiment({
1396
+ productKeys: {
1397
+ confluence: 'editor_a11y_role_textbox'
1398
+ },
1399
+ param: 'isEnabled',
1400
+ defaultValue: false
1401
+ }),
1377
1402
  // Added 2026-01-28
1378
1403
  platform_editor_smartlink_local_cache: createBooleanExperiment({
1379
1404
  productKeys: {
@@ -1643,6 +1668,14 @@ export var editorExperimentsConfig = {
1643
1668
  param: 'isEnabled',
1644
1669
  defaultValue: false
1645
1670
  }),
1671
+ // Added 2026-03-11
1672
+ platform_editor_remove_grid_init_reflow: createBooleanExperiment({
1673
+ productKeys: {
1674
+ confluence: 'platform_editor_remove_grid_init_reflow'
1675
+ },
1676
+ param: 'isEnabled',
1677
+ defaultValue: false
1678
+ }),
1646
1679
  // Added 2026-03-07
1647
1680
  platform_editor_table_remove_last_cell_decoration: createBooleanExperiment({
1648
1681
  productKeys: {
@@ -1651,6 +1684,13 @@ export var editorExperimentsConfig = {
1651
1684
  param: 'isEnabled',
1652
1685
  defaultValue: false
1653
1686
  }),
1687
+ platform_editor_small_font_size: createBooleanExperiment({
1688
+ productKeys: {
1689
+ confluence: 'platform_editor_small_font_size'
1690
+ },
1691
+ param: 'isEnabled',
1692
+ defaultValue: false
1693
+ }),
1654
1694
  // Added 2026-03-10
1655
1695
  platform_editor_diff_plugin_extended: createBooleanExperiment({
1656
1696
  productKeys: {
@@ -70,6 +70,12 @@ export declare const editorExperimentsConfig: {
70
70
  productKeys?: ProductKeys;
71
71
  typeGuard: IsBooleanType;
72
72
  };
73
+ platform_editor_react19_migration: {
74
+ defaultValue: boolean;
75
+ param: string;
76
+ productKeys?: ProductKeys;
77
+ typeGuard: IsBooleanType;
78
+ };
73
79
  cc_editor_interactivity_monitoring: {
74
80
  defaultValue: boolean;
75
81
  param: string;
@@ -1014,6 +1020,12 @@ export declare const editorExperimentsConfig: {
1014
1020
  typeGuard: (value: unknown) => value is 'control' | 'new-description' | 'orig-description';
1015
1021
  values: ('control' | 'new-description' | 'orig-description')[];
1016
1022
  };
1023
+ editor_a11y_role_textbox: {
1024
+ defaultValue: boolean;
1025
+ param: string;
1026
+ productKeys?: ProductKeys;
1027
+ typeGuard: IsBooleanType;
1028
+ };
1017
1029
  platform_editor_smartlink_local_cache: {
1018
1030
  defaultValue: boolean;
1019
1031
  param: string;
@@ -1194,6 +1206,12 @@ export declare const editorExperimentsConfig: {
1194
1206
  productKeys?: ProductKeys;
1195
1207
  typeGuard: IsBooleanType;
1196
1208
  };
1209
+ platform_editor_renderer_shadow_observer_cleanup: {
1210
+ defaultValue: boolean;
1211
+ param: string;
1212
+ productKeys?: ProductKeys;
1213
+ typeGuard: IsBooleanType;
1214
+ };
1197
1215
  confluence_fe_renderer_inline_node_mark_color_fix: {
1198
1216
  defaultValue: boolean;
1199
1217
  param: string;
@@ -1212,12 +1230,24 @@ export declare const editorExperimentsConfig: {
1212
1230
  productKeys?: ProductKeys;
1213
1231
  typeGuard: IsBooleanType;
1214
1232
  };
1233
+ platform_editor_remove_grid_init_reflow: {
1234
+ defaultValue: boolean;
1235
+ param: string;
1236
+ productKeys?: ProductKeys;
1237
+ typeGuard: IsBooleanType;
1238
+ };
1215
1239
  platform_editor_table_remove_last_cell_decoration: {
1216
1240
  defaultValue: boolean;
1217
1241
  param: string;
1218
1242
  productKeys?: ProductKeys;
1219
1243
  typeGuard: IsBooleanType;
1220
1244
  };
1245
+ platform_editor_small_font_size: {
1246
+ defaultValue: boolean;
1247
+ param: string;
1248
+ productKeys?: ProductKeys;
1249
+ typeGuard: IsBooleanType;
1250
+ };
1221
1251
  platform_editor_diff_plugin_extended: {
1222
1252
  defaultValue: boolean;
1223
1253
  param: string;
@@ -70,6 +70,12 @@ export declare const editorExperimentsConfig: {
70
70
  productKeys?: ProductKeys;
71
71
  typeGuard: IsBooleanType;
72
72
  };
73
+ platform_editor_react19_migration: {
74
+ defaultValue: boolean;
75
+ param: string;
76
+ productKeys?: ProductKeys;
77
+ typeGuard: IsBooleanType;
78
+ };
73
79
  cc_editor_interactivity_monitoring: {
74
80
  defaultValue: boolean;
75
81
  param: string;
@@ -1014,6 +1020,12 @@ export declare const editorExperimentsConfig: {
1014
1020
  typeGuard: (value: unknown) => value is 'control' | 'new-description' | 'orig-description';
1015
1021
  values: ('control' | 'new-description' | 'orig-description')[];
1016
1022
  };
1023
+ editor_a11y_role_textbox: {
1024
+ defaultValue: boolean;
1025
+ param: string;
1026
+ productKeys?: ProductKeys;
1027
+ typeGuard: IsBooleanType;
1028
+ };
1017
1029
  platform_editor_smartlink_local_cache: {
1018
1030
  defaultValue: boolean;
1019
1031
  param: string;
@@ -1194,6 +1206,12 @@ export declare const editorExperimentsConfig: {
1194
1206
  productKeys?: ProductKeys;
1195
1207
  typeGuard: IsBooleanType;
1196
1208
  };
1209
+ platform_editor_renderer_shadow_observer_cleanup: {
1210
+ defaultValue: boolean;
1211
+ param: string;
1212
+ productKeys?: ProductKeys;
1213
+ typeGuard: IsBooleanType;
1214
+ };
1197
1215
  confluence_fe_renderer_inline_node_mark_color_fix: {
1198
1216
  defaultValue: boolean;
1199
1217
  param: string;
@@ -1212,12 +1230,24 @@ export declare const editorExperimentsConfig: {
1212
1230
  productKeys?: ProductKeys;
1213
1231
  typeGuard: IsBooleanType;
1214
1232
  };
1233
+ platform_editor_remove_grid_init_reflow: {
1234
+ defaultValue: boolean;
1235
+ param: string;
1236
+ productKeys?: ProductKeys;
1237
+ typeGuard: IsBooleanType;
1238
+ };
1215
1239
  platform_editor_table_remove_last_cell_decoration: {
1216
1240
  defaultValue: boolean;
1217
1241
  param: string;
1218
1242
  productKeys?: ProductKeys;
1219
1243
  typeGuard: IsBooleanType;
1220
1244
  };
1245
+ platform_editor_small_font_size: {
1246
+ defaultValue: boolean;
1247
+ param: string;
1248
+ productKeys?: ProductKeys;
1249
+ typeGuard: IsBooleanType;
1250
+ };
1221
1251
  platform_editor_diff_plugin_extended: {
1222
1252
  defaultValue: boolean;
1223
1253
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "35.6.0",
3
+ "version": "35.7.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",