@atlaskit/tmp-editor-statsig 51.0.0 → 52.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,29 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 52.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [`e2f512c5e8eba`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e2f512c5e8eba) -
8
+ Clean up feature flag platform_editor_task_item_styles for task item checkbox and remove unused
9
+ styles objects taskItemCheckboxStylesWithBlockTaskItem and taskItemCheckboxStyles. Renamed
10
+ taskItemNextCheckboxStyles to taskItemCheckboxStyles
11
+
12
+ ## 51.1.0
13
+
14
+ ### Minor Changes
15
+
16
+ - [`f2500fdeca2ee`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f2500fdeca2ee) -
17
+ Fix Ctrl+Shift+H keyboard shortcut for expand node title drag handles to support keyboard-only and
18
+ screen reader users
19
+ - [`d3c7e8b3f1a04`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d3c7e8b3f1a04) -
20
+ add stricter typecheck for panel color attr to avoid unhandled errors
21
+ - [`87bb2de1fb74d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/87bb2de1fb74d) -
22
+ Fix scrollable-region-focusable a11y violation on inline code by removing overflow:auto from code
23
+ mark styles in EditorContentContainer behind the platform_editor_a11y_scrollable_region
24
+ experiment. Removing overflow:auto eliminates the scrollable region entirely (text wraps naturally
25
+ via overflow-wrap:break-word and white-space:pre-wrap),
26
+
3
27
  ## 51.0.0
4
28
 
5
29
  ### Major Changes
@@ -430,14 +430,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
430
430
  values: ['control', 'variant1'],
431
431
  defaultValue: 'control'
432
432
  }),
433
- // Added 2025-08-01
434
- platform_editor_controls_block_controls_state_fix: (0, _experimentBuilders.createBooleanExperiment)({
435
- productKeys: {
436
- confluence: 'platform_editor_controls_block_controls_state_fix'
437
- },
438
- param: 'isEnabled',
439
- defaultValue: false
440
- }),
441
433
  // Added 2025-09-03
442
434
  platform_editor_hydratable_ui: (0, _experimentBuilders.createBooleanExperiment)({
443
435
  productKeys: {
@@ -673,14 +665,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
673
665
  param: 'isEnabled',
674
666
  defaultValue: false
675
667
  }),
676
- // Added 2026-01-10
677
- platform_editor_task_item_styles: (0, _experimentBuilders.createBooleanExperiment)({
678
- productKeys: {
679
- confluence: 'platform_editor_task_item_styles'
680
- },
681
- param: 'isEnabled',
682
- defaultValue: false
683
- }),
684
668
  // Added 2025-08-17
685
669
  platform_hover_card_preview_panel: (0, _experimentBuilders.createMultivariateExperiment)({
686
670
  productKeys: {
@@ -1584,6 +1568,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1584
1568
  param: 'isEnabled',
1585
1569
  defaultValue: false
1586
1570
  }),
1571
+ // Added 2026-03-30
1572
+ platform_editor_a11y_scrollable_region: (0, _experimentBuilders.createBooleanExperiment)({
1573
+ productKeys: {
1574
+ confluence: 'platform_editor_a11y_scrollable_region'
1575
+ },
1576
+ param: 'isEnabled',
1577
+ defaultValue: false
1578
+ }),
1587
1579
  // Added 2026-03-02
1588
1580
  platform_editor_a11y_table_wrapper_fix: (0, _experimentBuilders.createBooleanExperiment)({
1589
1581
  productKeys: {
@@ -1800,6 +1792,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1800
1792
  defaultValue: false
1801
1793
  }),
1802
1794
  // Added 2026-03-15
1795
+ platform_editor_stricter_panelcolor_typecheck: (0, _experimentBuilders.createBooleanExperiment)({
1796
+ productKeys: {
1797
+ confluence: 'platform_editor_stricter_panelcolor_typecheck'
1798
+ },
1799
+ param: 'isEnabled',
1800
+ defaultValue: false
1801
+ }),
1802
+ // Added 2026-03-15
1803
1803
  platform_editor_sync_block_ssr_config: (0, _experimentBuilders.createBooleanExperiment)({
1804
1804
  productKeys: {
1805
1805
  confluence: 'platform_editor_sync_block_ssr_config'
@@ -1838,5 +1838,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1838
1838
  },
1839
1839
  param: 'isEnabled',
1840
1840
  defaultValue: false
1841
+ }),
1842
+ // Added 2026-03-31
1843
+ platform_editor_dnd_accessibility_fixes_expand: (0, _experimentBuilders.createBooleanExperiment)({
1844
+ productKeys: {
1845
+ confluence: 'platform_editor_dnd_accessibility_fixes_expand'
1846
+ },
1847
+ param: 'isEnabled',
1848
+ defaultValue: false
1841
1849
  })
1842
1850
  };
@@ -424,14 +424,6 @@ export const editorExperimentsConfig = {
424
424
  values: ['control', 'variant1'],
425
425
  defaultValue: 'control'
426
426
  }),
427
- // Added 2025-08-01
428
- platform_editor_controls_block_controls_state_fix: createBooleanExperiment({
429
- productKeys: {
430
- confluence: 'platform_editor_controls_block_controls_state_fix'
431
- },
432
- param: 'isEnabled',
433
- defaultValue: false
434
- }),
435
427
  // Added 2025-09-03
436
428
  platform_editor_hydratable_ui: createBooleanExperiment({
437
429
  productKeys: {
@@ -667,14 +659,6 @@ export const editorExperimentsConfig = {
667
659
  param: 'isEnabled',
668
660
  defaultValue: false
669
661
  }),
670
- // Added 2026-01-10
671
- platform_editor_task_item_styles: createBooleanExperiment({
672
- productKeys: {
673
- confluence: 'platform_editor_task_item_styles'
674
- },
675
- param: 'isEnabled',
676
- defaultValue: false
677
- }),
678
662
  // Added 2025-08-17
679
663
  platform_hover_card_preview_panel: createMultivariateExperiment({
680
664
  productKeys: {
@@ -1578,6 +1562,14 @@ export const editorExperimentsConfig = {
1578
1562
  param: 'isEnabled',
1579
1563
  defaultValue: false
1580
1564
  }),
1565
+ // Added 2026-03-30
1566
+ platform_editor_a11y_scrollable_region: createBooleanExperiment({
1567
+ productKeys: {
1568
+ confluence: 'platform_editor_a11y_scrollable_region'
1569
+ },
1570
+ param: 'isEnabled',
1571
+ defaultValue: false
1572
+ }),
1581
1573
  // Added 2026-03-02
1582
1574
  platform_editor_a11y_table_wrapper_fix: createBooleanExperiment({
1583
1575
  productKeys: {
@@ -1794,6 +1786,14 @@ export const editorExperimentsConfig = {
1794
1786
  defaultValue: false
1795
1787
  }),
1796
1788
  // Added 2026-03-15
1789
+ platform_editor_stricter_panelcolor_typecheck: createBooleanExperiment({
1790
+ productKeys: {
1791
+ confluence: 'platform_editor_stricter_panelcolor_typecheck'
1792
+ },
1793
+ param: 'isEnabled',
1794
+ defaultValue: false
1795
+ }),
1796
+ // Added 2026-03-15
1797
1797
  platform_editor_sync_block_ssr_config: createBooleanExperiment({
1798
1798
  productKeys: {
1799
1799
  confluence: 'platform_editor_sync_block_ssr_config'
@@ -1832,5 +1832,13 @@ export const editorExperimentsConfig = {
1832
1832
  },
1833
1833
  param: 'isEnabled',
1834
1834
  defaultValue: false
1835
+ }),
1836
+ // Added 2026-03-31
1837
+ platform_editor_dnd_accessibility_fixes_expand: createBooleanExperiment({
1838
+ productKeys: {
1839
+ confluence: 'platform_editor_dnd_accessibility_fixes_expand'
1840
+ },
1841
+ param: 'isEnabled',
1842
+ defaultValue: false
1835
1843
  })
1836
1844
  };
@@ -424,14 +424,6 @@ export var editorExperimentsConfig = {
424
424
  values: ['control', 'variant1'],
425
425
  defaultValue: 'control'
426
426
  }),
427
- // Added 2025-08-01
428
- platform_editor_controls_block_controls_state_fix: createBooleanExperiment({
429
- productKeys: {
430
- confluence: 'platform_editor_controls_block_controls_state_fix'
431
- },
432
- param: 'isEnabled',
433
- defaultValue: false
434
- }),
435
427
  // Added 2025-09-03
436
428
  platform_editor_hydratable_ui: createBooleanExperiment({
437
429
  productKeys: {
@@ -667,14 +659,6 @@ export var editorExperimentsConfig = {
667
659
  param: 'isEnabled',
668
660
  defaultValue: false
669
661
  }),
670
- // Added 2026-01-10
671
- platform_editor_task_item_styles: createBooleanExperiment({
672
- productKeys: {
673
- confluence: 'platform_editor_task_item_styles'
674
- },
675
- param: 'isEnabled',
676
- defaultValue: false
677
- }),
678
662
  // Added 2025-08-17
679
663
  platform_hover_card_preview_panel: createMultivariateExperiment({
680
664
  productKeys: {
@@ -1578,6 +1562,14 @@ export var editorExperimentsConfig = {
1578
1562
  param: 'isEnabled',
1579
1563
  defaultValue: false
1580
1564
  }),
1565
+ // Added 2026-03-30
1566
+ platform_editor_a11y_scrollable_region: createBooleanExperiment({
1567
+ productKeys: {
1568
+ confluence: 'platform_editor_a11y_scrollable_region'
1569
+ },
1570
+ param: 'isEnabled',
1571
+ defaultValue: false
1572
+ }),
1581
1573
  // Added 2026-03-02
1582
1574
  platform_editor_a11y_table_wrapper_fix: createBooleanExperiment({
1583
1575
  productKeys: {
@@ -1794,6 +1786,14 @@ export var editorExperimentsConfig = {
1794
1786
  defaultValue: false
1795
1787
  }),
1796
1788
  // Added 2026-03-15
1789
+ platform_editor_stricter_panelcolor_typecheck: createBooleanExperiment({
1790
+ productKeys: {
1791
+ confluence: 'platform_editor_stricter_panelcolor_typecheck'
1792
+ },
1793
+ param: 'isEnabled',
1794
+ defaultValue: false
1795
+ }),
1796
+ // Added 2026-03-15
1797
1797
  platform_editor_sync_block_ssr_config: createBooleanExperiment({
1798
1798
  productKeys: {
1799
1799
  confluence: 'platform_editor_sync_block_ssr_config'
@@ -1832,5 +1832,13 @@ export var editorExperimentsConfig = {
1832
1832
  },
1833
1833
  param: 'isEnabled',
1834
1834
  defaultValue: false
1835
+ }),
1836
+ // Added 2026-03-31
1837
+ platform_editor_dnd_accessibility_fixes_expand: createBooleanExperiment({
1838
+ productKeys: {
1839
+ confluence: 'platform_editor_dnd_accessibility_fixes_expand'
1840
+ },
1841
+ param: 'isEnabled',
1842
+ defaultValue: false
1835
1843
  })
1836
1844
  };
@@ -391,12 +391,6 @@ export declare const editorExperimentsConfig: {
391
391
  typeGuard: (value: unknown) => value is 'control' | 'variant1';
392
392
  values: ('control' | 'variant1')[];
393
393
  };
394
- platform_editor_controls_block_controls_state_fix: {
395
- defaultValue: boolean;
396
- param: string;
397
- productKeys?: ProductKeys;
398
- typeGuard: IsBooleanType;
399
- };
400
394
  platform_editor_clean_up_widget_mark_logic: {
401
395
  defaultValue: boolean;
402
396
  param: string;
@@ -698,12 +692,6 @@ export declare const editorExperimentsConfig: {
698
692
  productKeys?: ProductKeys;
699
693
  typeGuard: IsBooleanType;
700
694
  };
701
- platform_editor_task_item_styles: {
702
- defaultValue: boolean;
703
- param: string;
704
- productKeys?: ProductKeys;
705
- typeGuard: IsBooleanType;
706
- };
707
695
  platform_editor_add_image_editing: {
708
696
  defaultValue: boolean;
709
697
  param: string;
@@ -1176,6 +1164,12 @@ export declare const editorExperimentsConfig: {
1176
1164
  productKeys?: ProductKeys;
1177
1165
  typeGuard: IsBooleanType;
1178
1166
  };
1167
+ platform_editor_a11y_scrollable_region: {
1168
+ defaultValue: boolean;
1169
+ param: string;
1170
+ productKeys?: ProductKeys;
1171
+ typeGuard: IsBooleanType;
1172
+ };
1179
1173
  platform_editor_a11y_table_wrapper_fix: {
1180
1174
  defaultValue: boolean;
1181
1175
  param: string;
@@ -1326,6 +1320,12 @@ export declare const editorExperimentsConfig: {
1326
1320
  productKeys?: ProductKeys;
1327
1321
  typeGuard: IsBooleanType;
1328
1322
  };
1323
+ platform_editor_stricter_panelcolor_typecheck: {
1324
+ defaultValue: boolean;
1325
+ param: string;
1326
+ productKeys?: ProductKeys;
1327
+ typeGuard: IsBooleanType;
1328
+ };
1329
1329
  platform_editor_sync_block_ssr_config: {
1330
1330
  defaultValue: boolean;
1331
1331
  param: string;
@@ -1350,5 +1350,11 @@ export declare const editorExperimentsConfig: {
1350
1350
  productKeys?: ProductKeys;
1351
1351
  typeGuard: IsBooleanType;
1352
1352
  };
1353
+ platform_editor_dnd_accessibility_fixes_expand: {
1354
+ defaultValue: boolean;
1355
+ param: string;
1356
+ productKeys?: ProductKeys;
1357
+ typeGuard: IsBooleanType;
1358
+ };
1353
1359
  };
1354
1360
  export {};
@@ -391,12 +391,6 @@ export declare const editorExperimentsConfig: {
391
391
  typeGuard: (value: unknown) => value is 'control' | 'variant1';
392
392
  values: ('control' | 'variant1')[];
393
393
  };
394
- platform_editor_controls_block_controls_state_fix: {
395
- defaultValue: boolean;
396
- param: string;
397
- productKeys?: ProductKeys;
398
- typeGuard: IsBooleanType;
399
- };
400
394
  platform_editor_clean_up_widget_mark_logic: {
401
395
  defaultValue: boolean;
402
396
  param: string;
@@ -698,12 +692,6 @@ export declare const editorExperimentsConfig: {
698
692
  productKeys?: ProductKeys;
699
693
  typeGuard: IsBooleanType;
700
694
  };
701
- platform_editor_task_item_styles: {
702
- defaultValue: boolean;
703
- param: string;
704
- productKeys?: ProductKeys;
705
- typeGuard: IsBooleanType;
706
- };
707
695
  platform_editor_add_image_editing: {
708
696
  defaultValue: boolean;
709
697
  param: string;
@@ -1176,6 +1164,12 @@ export declare const editorExperimentsConfig: {
1176
1164
  productKeys?: ProductKeys;
1177
1165
  typeGuard: IsBooleanType;
1178
1166
  };
1167
+ platform_editor_a11y_scrollable_region: {
1168
+ defaultValue: boolean;
1169
+ param: string;
1170
+ productKeys?: ProductKeys;
1171
+ typeGuard: IsBooleanType;
1172
+ };
1179
1173
  platform_editor_a11y_table_wrapper_fix: {
1180
1174
  defaultValue: boolean;
1181
1175
  param: string;
@@ -1326,6 +1320,12 @@ export declare const editorExperimentsConfig: {
1326
1320
  productKeys?: ProductKeys;
1327
1321
  typeGuard: IsBooleanType;
1328
1322
  };
1323
+ platform_editor_stricter_panelcolor_typecheck: {
1324
+ defaultValue: boolean;
1325
+ param: string;
1326
+ productKeys?: ProductKeys;
1327
+ typeGuard: IsBooleanType;
1328
+ };
1329
1329
  platform_editor_sync_block_ssr_config: {
1330
1330
  defaultValue: boolean;
1331
1331
  param: string;
@@ -1350,5 +1350,11 @@ export declare const editorExperimentsConfig: {
1350
1350
  productKeys?: ProductKeys;
1351
1351
  typeGuard: IsBooleanType;
1352
1352
  };
1353
+ platform_editor_dnd_accessibility_fixes_expand: {
1354
+ defaultValue: boolean;
1355
+ param: string;
1356
+ productKeys?: ProductKeys;
1357
+ typeGuard: IsBooleanType;
1358
+ };
1353
1359
  };
1354
1360
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "51.0.0",
3
+ "version": "52.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",
@@ -34,7 +34,7 @@
34
34
  "atlaskit:src": "src/index.ts",
35
35
  "dependencies": {
36
36
  "@atlaskit/feature-gate-js-client": "^5.5.0",
37
- "@atlaskit/react-ufo": "^5.7.0",
37
+ "@atlaskit/react-ufo": "^5.8.0",
38
38
  "@babel/runtime": "^7.0.0"
39
39
  },
40
40
  "peerDependencies": {