@atlaskit/tmp-editor-statsig 149.0.0 → 151.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
+ ## 151.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [`1eb42bae392d7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1eb42bae392d7) -
8
+ Clean up experiment `platform_editor_remove_bidi_char_warning`. Bidirectional character warnings
9
+ are no longer rendered in code blocks: `codeBidiWarningPlugin` is no longer registered by any
10
+ preset, and the renderer passes `hasBidiWarnings={false}` to `@atlaskit/code` code blocks. Bidi
11
+ warnings on inline `code` marks are unaffected.
12
+
13
+ `codeBidiWarning` has been removed from the plugin lists and plugin options of the Confluence
14
+ full-page, Confluence markdown, and Company Hub presets, so consumers no longer need to pass
15
+ `pluginOptions.codeBidiWarning` or `enabledOptionalPlugins.codeBidiWarning`.
16
+
17
+ `@atlaskit/editor-plugin-code-bidi-warning` is retained but now has no consumers; it is scheduled
18
+ for removal in a follow-up.
19
+
20
+ ## 150.0.0
21
+
22
+ ### Major Changes
23
+
24
+ - [`4d7433f9c93d8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4d7433f9c93d8) -
25
+ Clean up the enabled `platform_editor_code_block_fold_gutter` experiment for Confluence.
26
+
3
27
  ## 149.0.0
4
28
 
5
29
  ### Major Changes
@@ -713,14 +713,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
713
713
  param: 'isEnabled',
714
714
  defaultValue: false
715
715
  }),
716
- // Added 2025-07-02
717
- platform_editor_code_block_fold_gutter: (0, _createBooleanExperiment.createBooleanExperiment)({
718
- productKeys: {
719
- confluence: 'platform_editor_code_block_fold_gutter'
720
- },
721
- param: 'isEnabled',
722
- defaultValue: false
723
- }),
724
716
  // Added 2025-07-15
725
717
  platform_editor_preview_panel_responsiveness: (0, _createBooleanExperiment.createBooleanExperiment)({
726
718
  productKeys: {
@@ -948,14 +940,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
948
940
  param: 'isEnabled',
949
941
  defaultValue: false
950
942
  }),
951
- // Added 2025-10-22
952
- platform_editor_remove_bidi_char_warning: (0, _createBooleanExperiment.createBooleanExperiment)({
953
- productKeys: {
954
- confluence: 'platform_editor_remove_bidi_char_warning'
955
- },
956
- param: 'isEnabled',
957
- defaultValue: false
958
- }),
959
943
  // Added 2025-10-27
960
944
  platform_editor_table_sticky_header_improvements: (0, _createMultivariateExperiment.createMultivariateExperiment)({
961
945
  productKeys: {
@@ -707,14 +707,6 @@ export const editorExperimentsConfig = {
707
707
  param: 'isEnabled',
708
708
  defaultValue: false
709
709
  }),
710
- // Added 2025-07-02
711
- platform_editor_code_block_fold_gutter: createBooleanExperiment({
712
- productKeys: {
713
- confluence: 'platform_editor_code_block_fold_gutter'
714
- },
715
- param: 'isEnabled',
716
- defaultValue: false
717
- }),
718
710
  // Added 2025-07-15
719
711
  platform_editor_preview_panel_responsiveness: createBooleanExperiment({
720
712
  productKeys: {
@@ -942,14 +934,6 @@ export const editorExperimentsConfig = {
942
934
  param: 'isEnabled',
943
935
  defaultValue: false
944
936
  }),
945
- // Added 2025-10-22
946
- platform_editor_remove_bidi_char_warning: createBooleanExperiment({
947
- productKeys: {
948
- confluence: 'platform_editor_remove_bidi_char_warning'
949
- },
950
- param: 'isEnabled',
951
- defaultValue: false
952
- }),
953
937
  // Added 2025-10-27
954
938
  platform_editor_table_sticky_header_improvements: createMultivariateExperiment({
955
939
  productKeys: {
@@ -707,14 +707,6 @@ export var editorExperimentsConfig = {
707
707
  param: 'isEnabled',
708
708
  defaultValue: false
709
709
  }),
710
- // Added 2025-07-02
711
- platform_editor_code_block_fold_gutter: createBooleanExperiment({
712
- productKeys: {
713
- confluence: 'platform_editor_code_block_fold_gutter'
714
- },
715
- param: 'isEnabled',
716
- defaultValue: false
717
- }),
718
710
  // Added 2025-07-15
719
711
  platform_editor_preview_panel_responsiveness: createBooleanExperiment({
720
712
  productKeys: {
@@ -942,14 +934,6 @@ export var editorExperimentsConfig = {
942
934
  param: 'isEnabled',
943
935
  defaultValue: false
944
936
  }),
945
- // Added 2025-10-22
946
- platform_editor_remove_bidi_char_warning: createBooleanExperiment({
947
- productKeys: {
948
- confluence: 'platform_editor_remove_bidi_char_warning'
949
- },
950
- param: 'isEnabled',
951
- defaultValue: false
952
- }),
953
937
  // Added 2025-10-27
954
938
  platform_editor_table_sticky_header_improvements: createMultivariateExperiment({
955
939
  productKeys: {
@@ -429,12 +429,6 @@ export declare const editorExperimentsConfig: {
429
429
  productKeys?: ProductKeys;
430
430
  typeGuard: IsBooleanType;
431
431
  };
432
- platform_editor_code_block_fold_gutter: {
433
- defaultValue: boolean;
434
- param: string;
435
- productKeys?: ProductKeys;
436
- typeGuard: IsBooleanType;
437
- };
438
432
  platform_editor_controls: {
439
433
  defaultValue: 'control' | 'variant1';
440
434
  param: string;
@@ -646,12 +640,6 @@ export declare const editorExperimentsConfig: {
646
640
  productKeys?: ProductKeys;
647
641
  typeGuard: IsBooleanType;
648
642
  };
649
- platform_editor_remove_bidi_char_warning: {
650
- defaultValue: boolean;
651
- param: string;
652
- productKeys?: ProductKeys;
653
- typeGuard: IsBooleanType;
654
- };
655
643
  platform_editor_renderer_extension_width_fix: {
656
644
  defaultValue: boolean;
657
645
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "149.0.0",
3
+ "version": "151.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",