@atlaskit/tmp-editor-statsig 20.0.0 → 20.2.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,25 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 20.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`9da7abaf781fa`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9da7abaf781fa) -
8
+ [ux] clean up platform_editor_text_highlight_padding
9
+ - [`508384bef9a9b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/508384bef9a9b) -
10
+ [EDITOR-4774] add experiment to config
11
+
12
+ ## 20.1.0
13
+
14
+ ### Minor Changes
15
+
16
+ - [`d3b00bd311c9d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d3b00bd311c9d) -
17
+ Improves an edge case where users may face unexpected cursor jumps collaboratively
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies
22
+
3
23
  ## 20.0.0
4
24
 
5
25
  ### Major Changes
@@ -52,7 +52,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
52
52
  platform_editor_find_and_replace_improvements: false,
53
53
  platform_editor_toggle_expand_on_match_found: false,
54
54
  platform_editor_reduce_noisy_steps_ncs: false,
55
- platform_editor_text_highlight_padding: false,
56
55
  confluence_compact_text_format: false,
57
56
  confluence_ttvc_inline_extensions: false
58
57
  };
@@ -859,14 +859,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
859
859
  param: 'isEnabled',
860
860
  defaultValue: false
861
861
  }),
862
- // Added 2025-09-15
863
- platform_editor_text_highlight_padding: (0, _experimentBuilders.createBooleanExperiment)({
864
- productKeys: {
865
- confluence: 'platform_editor_text_highlight_padding'
866
- },
867
- param: 'isEnabled',
868
- defaultValue: false
869
- }),
870
862
  // Added 2025-10-24
871
863
  platform_editor_lovability_user_intent: (0, _experimentBuilders.createBooleanExperiment)({
872
864
  productKeys: {
@@ -1037,6 +1029,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1037
1029
  param: 'isEnabled',
1038
1030
  defaultValue: false
1039
1031
  }),
1032
+ // Added 2026-02-04
1033
+ platform_editor_fix_cursor_flickering: (0, _experimentBuilders.createBooleanExperiment)({
1034
+ productKeys: {
1035
+ confluence: 'platform_editor_fix_cursor_flickering'
1036
+ },
1037
+ param: 'isEnabled',
1038
+ defaultValue: false
1039
+ }),
1040
1040
  // Added 2025-01-23
1041
1041
  platform_editor_to_use_pmr_for_collab_edit_none_ic: (0, _experimentBuilders.createBooleanExperiment)({
1042
1042
  productKeys: {
@@ -1301,5 +1301,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1301
1301
  },
1302
1302
  param: 'isEnabled',
1303
1303
  defaultValue: false
1304
+ }),
1305
+ // Added 2026-02-04
1306
+ platform_editor_emoji_tooltips_on_hover: (0, _experimentBuilders.createBooleanExperiment)({
1307
+ productKeys: {
1308
+ confluence: 'platform_editor_emoji_tooltips_on_hover'
1309
+ },
1310
+ param: 'isEnabled',
1311
+ defaultValue: false
1304
1312
  })
1305
1313
  };
@@ -46,7 +46,6 @@ export const testBooleanOverrides = {
46
46
  platform_editor_find_and_replace_improvements: false,
47
47
  platform_editor_toggle_expand_on_match_found: false,
48
48
  platform_editor_reduce_noisy_steps_ncs: false,
49
- platform_editor_text_highlight_padding: false,
50
49
  confluence_compact_text_format: false,
51
50
  confluence_ttvc_inline_extensions: false
52
51
  };
@@ -853,14 +853,6 @@ export const editorExperimentsConfig = {
853
853
  param: 'isEnabled',
854
854
  defaultValue: false
855
855
  }),
856
- // Added 2025-09-15
857
- platform_editor_text_highlight_padding: createBooleanExperiment({
858
- productKeys: {
859
- confluence: 'platform_editor_text_highlight_padding'
860
- },
861
- param: 'isEnabled',
862
- defaultValue: false
863
- }),
864
856
  // Added 2025-10-24
865
857
  platform_editor_lovability_user_intent: createBooleanExperiment({
866
858
  productKeys: {
@@ -1031,6 +1023,14 @@ export const editorExperimentsConfig = {
1031
1023
  param: 'isEnabled',
1032
1024
  defaultValue: false
1033
1025
  }),
1026
+ // Added 2026-02-04
1027
+ platform_editor_fix_cursor_flickering: createBooleanExperiment({
1028
+ productKeys: {
1029
+ confluence: 'platform_editor_fix_cursor_flickering'
1030
+ },
1031
+ param: 'isEnabled',
1032
+ defaultValue: false
1033
+ }),
1034
1034
  // Added 2025-01-23
1035
1035
  platform_editor_to_use_pmr_for_collab_edit_none_ic: createBooleanExperiment({
1036
1036
  productKeys: {
@@ -1295,5 +1295,13 @@ export const editorExperimentsConfig = {
1295
1295
  },
1296
1296
  param: 'isEnabled',
1297
1297
  defaultValue: false
1298
+ }),
1299
+ // Added 2026-02-04
1300
+ platform_editor_emoji_tooltips_on_hover: createBooleanExperiment({
1301
+ productKeys: {
1302
+ confluence: 'platform_editor_emoji_tooltips_on_hover'
1303
+ },
1304
+ param: 'isEnabled',
1305
+ defaultValue: false
1298
1306
  })
1299
1307
  };
@@ -46,7 +46,6 @@ export var testBooleanOverrides = {
46
46
  platform_editor_find_and_replace_improvements: false,
47
47
  platform_editor_toggle_expand_on_match_found: false,
48
48
  platform_editor_reduce_noisy_steps_ncs: false,
49
- platform_editor_text_highlight_padding: false,
50
49
  confluence_compact_text_format: false,
51
50
  confluence_ttvc_inline_extensions: false
52
51
  };
@@ -853,14 +853,6 @@ export var editorExperimentsConfig = {
853
853
  param: 'isEnabled',
854
854
  defaultValue: false
855
855
  }),
856
- // Added 2025-09-15
857
- platform_editor_text_highlight_padding: createBooleanExperiment({
858
- productKeys: {
859
- confluence: 'platform_editor_text_highlight_padding'
860
- },
861
- param: 'isEnabled',
862
- defaultValue: false
863
- }),
864
856
  // Added 2025-10-24
865
857
  platform_editor_lovability_user_intent: createBooleanExperiment({
866
858
  productKeys: {
@@ -1031,6 +1023,14 @@ export var editorExperimentsConfig = {
1031
1023
  param: 'isEnabled',
1032
1024
  defaultValue: false
1033
1025
  }),
1026
+ // Added 2026-02-04
1027
+ platform_editor_fix_cursor_flickering: createBooleanExperiment({
1028
+ productKeys: {
1029
+ confluence: 'platform_editor_fix_cursor_flickering'
1030
+ },
1031
+ param: 'isEnabled',
1032
+ defaultValue: false
1033
+ }),
1034
1034
  // Added 2025-01-23
1035
1035
  platform_editor_to_use_pmr_for_collab_edit_none_ic: createBooleanExperiment({
1036
1036
  productKeys: {
@@ -1295,5 +1295,13 @@ export var editorExperimentsConfig = {
1295
1295
  },
1296
1296
  param: 'isEnabled',
1297
1297
  defaultValue: false
1298
+ }),
1299
+ // Added 2026-02-04
1300
+ platform_editor_emoji_tooltips_on_hover: createBooleanExperiment({
1301
+ productKeys: {
1302
+ confluence: 'platform_editor_emoji_tooltips_on_hover'
1303
+ },
1304
+ param: 'isEnabled',
1305
+ defaultValue: false
1298
1306
  })
1299
1307
  };
@@ -629,12 +629,6 @@ export declare const editorExperimentsConfig: {
629
629
  productKeys?: ProductKeys;
630
630
  typeGuard: IsBooleanType;
631
631
  };
632
- platform_editor_text_highlight_padding: {
633
- defaultValue: boolean;
634
- param: string;
635
- productKeys?: ProductKeys;
636
- typeGuard: IsBooleanType;
637
- };
638
632
  platform_editor_toggle_expand_on_match_found: {
639
633
  defaultValue: boolean;
640
634
  param: string;
@@ -915,6 +909,12 @@ export declare const editorExperimentsConfig: {
915
909
  productKeys?: ProductKeys;
916
910
  typeGuard: IsBooleanType;
917
911
  };
912
+ platform_editor_fix_cursor_flickering: {
913
+ defaultValue: boolean;
914
+ param: string;
915
+ productKeys?: ProductKeys;
916
+ typeGuard: IsBooleanType;
917
+ };
918
918
  platform_editor_send_client_platform_header: {
919
919
  defaultValue: boolean;
920
920
  param: string;
@@ -963,5 +963,11 @@ export declare const editorExperimentsConfig: {
963
963
  productKeys?: ProductKeys;
964
964
  typeGuard: IsBooleanType;
965
965
  };
966
+ platform_editor_emoji_tooltips_on_hover: {
967
+ defaultValue: boolean;
968
+ param: string;
969
+ productKeys?: ProductKeys;
970
+ typeGuard: IsBooleanType;
971
+ };
966
972
  };
967
973
  export {};
@@ -629,12 +629,6 @@ export declare const editorExperimentsConfig: {
629
629
  productKeys?: ProductKeys;
630
630
  typeGuard: IsBooleanType;
631
631
  };
632
- platform_editor_text_highlight_padding: {
633
- defaultValue: boolean;
634
- param: string;
635
- productKeys?: ProductKeys;
636
- typeGuard: IsBooleanType;
637
- };
638
632
  platform_editor_toggle_expand_on_match_found: {
639
633
  defaultValue: boolean;
640
634
  param: string;
@@ -915,6 +909,12 @@ export declare const editorExperimentsConfig: {
915
909
  productKeys?: ProductKeys;
916
910
  typeGuard: IsBooleanType;
917
911
  };
912
+ platform_editor_fix_cursor_flickering: {
913
+ defaultValue: boolean;
914
+ param: string;
915
+ productKeys?: ProductKeys;
916
+ typeGuard: IsBooleanType;
917
+ };
918
918
  platform_editor_send_client_platform_header: {
919
919
  defaultValue: boolean;
920
920
  param: string;
@@ -963,5 +963,11 @@ export declare const editorExperimentsConfig: {
963
963
  productKeys?: ProductKeys;
964
964
  typeGuard: IsBooleanType;
965
965
  };
966
+ platform_editor_emoji_tooltips_on_hover: {
967
+ defaultValue: boolean;
968
+ param: string;
969
+ productKeys?: ProductKeys;
970
+ typeGuard: IsBooleanType;
971
+ };
966
972
  };
967
973
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "20.0.0",
3
+ "version": "20.2.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",