@atlaskit/tmp-editor-statsig 19.0.0 → 20.1.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
+ ## 20.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`d3b00bd311c9d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d3b00bd311c9d) -
8
+ Improves an edge case where users may face unexpected cursor jumps collaboratively
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies
13
+
14
+ ## 20.0.0
15
+
16
+ ### Major Changes
17
+
18
+ - [`d20e0e448e8b7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d20e0e448e8b7) -
19
+ Cleanup experiment for style changes to prevent the numbered column from growing too big
20
+ - [`ef378e27dc43d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ef378e27dc43d) -
21
+ Clean up platform_editor_fix_quick_insert_consistency_exp
22
+
23
+ ### Patch Changes
24
+
25
+ - Updated dependencies
26
+
3
27
  ## 19.0.0
4
28
 
5
29
  ### Major Changes
@@ -166,14 +166,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
166
166
  param: 'isEnabled',
167
167
  defaultValue: false
168
168
  }),
169
- // Added 2025-07-24
170
- editor_prevent_numbered_column_too_big_jira_1: (0, _experimentBuilders.createBooleanExperiment)({
171
- productKeys: {
172
- jira: 'editor_prevent_numbered_column_too_big_jira_1'
173
- },
174
- param: 'isEnabled',
175
- defaultValue: false
176
- }),
177
169
  // Added 2025-06-02
178
170
  platform_editor_block_control_optimise_render: (0, _experimentBuilders.createBooleanExperiment)({
179
171
  productKeys: {
@@ -682,14 +674,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
682
674
  param: 'isEnabled',
683
675
  defaultValue: false
684
676
  }),
685
- // Added 20205-07-28
686
- platform_editor_fix_quick_insert_consistency_exp: (0, _experimentBuilders.createBooleanExperiment)({
687
- productKeys: {
688
- confluence: 'platform_editor_fix_quick_insert_consistency_exp'
689
- },
690
- param: 'isEnabled',
691
- defaultValue: false
692
- }),
693
677
  //Added 2025-11-19
694
678
  platform_editor_pasting_text_in_panel: (0, _experimentBuilders.createBooleanExperiment)({
695
679
  productKeys: {
@@ -1053,6 +1037,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1053
1037
  param: 'isEnabled',
1054
1038
  defaultValue: false
1055
1039
  }),
1040
+ // Added 2026-02-04
1041
+ platform_editor_fix_cursor_flickering: (0, _experimentBuilders.createBooleanExperiment)({
1042
+ productKeys: {
1043
+ confluence: 'platform_editor_fix_cursor_flickering'
1044
+ },
1045
+ param: 'isEnabled',
1046
+ defaultValue: false
1047
+ }),
1056
1048
  // Added 2025-01-23
1057
1049
  platform_editor_to_use_pmr_for_collab_edit_none_ic: (0, _experimentBuilders.createBooleanExperiment)({
1058
1050
  productKeys: {
@@ -1069,14 +1061,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1069
1061
  param: 'isEnabled',
1070
1062
  defaultValue: false
1071
1063
  }),
1072
- // Added 2025-12-03
1073
- platform_editor_nested_media_selection_fix: (0, _experimentBuilders.createBooleanExperiment)({
1074
- productKeys: {
1075
- confluence: 'platform_editor_nested_media_selection_fix'
1076
- },
1077
- param: 'isEnabled',
1078
- defaultValue: false
1079
- }),
1080
1064
  // Added 2025-12-08
1081
1065
  platform_editor_add_image_editing: (0, _experimentBuilders.createBooleanExperiment)({
1082
1066
  productKeys: {
@@ -160,14 +160,6 @@ export const editorExperimentsConfig = {
160
160
  param: 'isEnabled',
161
161
  defaultValue: false
162
162
  }),
163
- // Added 2025-07-24
164
- editor_prevent_numbered_column_too_big_jira_1: createBooleanExperiment({
165
- productKeys: {
166
- jira: 'editor_prevent_numbered_column_too_big_jira_1'
167
- },
168
- param: 'isEnabled',
169
- defaultValue: false
170
- }),
171
163
  // Added 2025-06-02
172
164
  platform_editor_block_control_optimise_render: createBooleanExperiment({
173
165
  productKeys: {
@@ -676,14 +668,6 @@ export const editorExperimentsConfig = {
676
668
  param: 'isEnabled',
677
669
  defaultValue: false
678
670
  }),
679
- // Added 20205-07-28
680
- platform_editor_fix_quick_insert_consistency_exp: createBooleanExperiment({
681
- productKeys: {
682
- confluence: 'platform_editor_fix_quick_insert_consistency_exp'
683
- },
684
- param: 'isEnabled',
685
- defaultValue: false
686
- }),
687
671
  //Added 2025-11-19
688
672
  platform_editor_pasting_text_in_panel: createBooleanExperiment({
689
673
  productKeys: {
@@ -1047,6 +1031,14 @@ export const editorExperimentsConfig = {
1047
1031
  param: 'isEnabled',
1048
1032
  defaultValue: false
1049
1033
  }),
1034
+ // Added 2026-02-04
1035
+ platform_editor_fix_cursor_flickering: createBooleanExperiment({
1036
+ productKeys: {
1037
+ confluence: 'platform_editor_fix_cursor_flickering'
1038
+ },
1039
+ param: 'isEnabled',
1040
+ defaultValue: false
1041
+ }),
1050
1042
  // Added 2025-01-23
1051
1043
  platform_editor_to_use_pmr_for_collab_edit_none_ic: createBooleanExperiment({
1052
1044
  productKeys: {
@@ -1063,14 +1055,6 @@ export const editorExperimentsConfig = {
1063
1055
  param: 'isEnabled',
1064
1056
  defaultValue: false
1065
1057
  }),
1066
- // Added 2025-12-03
1067
- platform_editor_nested_media_selection_fix: createBooleanExperiment({
1068
- productKeys: {
1069
- confluence: 'platform_editor_nested_media_selection_fix'
1070
- },
1071
- param: 'isEnabled',
1072
- defaultValue: false
1073
- }),
1074
1058
  // Added 2025-12-08
1075
1059
  platform_editor_add_image_editing: createBooleanExperiment({
1076
1060
  productKeys: {
@@ -160,14 +160,6 @@ export var editorExperimentsConfig = {
160
160
  param: 'isEnabled',
161
161
  defaultValue: false
162
162
  }),
163
- // Added 2025-07-24
164
- editor_prevent_numbered_column_too_big_jira_1: createBooleanExperiment({
165
- productKeys: {
166
- jira: 'editor_prevent_numbered_column_too_big_jira_1'
167
- },
168
- param: 'isEnabled',
169
- defaultValue: false
170
- }),
171
163
  // Added 2025-06-02
172
164
  platform_editor_block_control_optimise_render: createBooleanExperiment({
173
165
  productKeys: {
@@ -676,14 +668,6 @@ export var editorExperimentsConfig = {
676
668
  param: 'isEnabled',
677
669
  defaultValue: false
678
670
  }),
679
- // Added 20205-07-28
680
- platform_editor_fix_quick_insert_consistency_exp: createBooleanExperiment({
681
- productKeys: {
682
- confluence: 'platform_editor_fix_quick_insert_consistency_exp'
683
- },
684
- param: 'isEnabled',
685
- defaultValue: false
686
- }),
687
671
  //Added 2025-11-19
688
672
  platform_editor_pasting_text_in_panel: createBooleanExperiment({
689
673
  productKeys: {
@@ -1047,6 +1031,14 @@ export var editorExperimentsConfig = {
1047
1031
  param: 'isEnabled',
1048
1032
  defaultValue: false
1049
1033
  }),
1034
+ // Added 2026-02-04
1035
+ platform_editor_fix_cursor_flickering: createBooleanExperiment({
1036
+ productKeys: {
1037
+ confluence: 'platform_editor_fix_cursor_flickering'
1038
+ },
1039
+ param: 'isEnabled',
1040
+ defaultValue: false
1041
+ }),
1050
1042
  // Added 2025-01-23
1051
1043
  platform_editor_to_use_pmr_for_collab_edit_none_ic: createBooleanExperiment({
1052
1044
  productKeys: {
@@ -1063,14 +1055,6 @@ export var editorExperimentsConfig = {
1063
1055
  param: 'isEnabled',
1064
1056
  defaultValue: false
1065
1057
  }),
1066
- // Added 2025-12-03
1067
- platform_editor_nested_media_selection_fix: createBooleanExperiment({
1068
- productKeys: {
1069
- confluence: 'platform_editor_nested_media_selection_fix'
1070
- },
1071
- param: 'isEnabled',
1072
- defaultValue: false
1073
- }),
1074
1058
  // Added 2025-12-08
1075
1059
  platform_editor_add_image_editing: createBooleanExperiment({
1076
1060
  productKeys: {
@@ -156,12 +156,6 @@ export declare const editorExperimentsConfig: {
156
156
  productKeys?: ProductKeys;
157
157
  typeGuard: IsBooleanType;
158
158
  };
159
- editor_prevent_numbered_column_too_big_jira_1: {
160
- defaultValue: boolean;
161
- param: string;
162
- productKeys?: ProductKeys;
163
- typeGuard: IsBooleanType;
164
- };
165
159
  editor_refactor_backspace_task_and_decisions: {
166
160
  defaultValue: boolean;
167
161
  param: string;
@@ -423,12 +417,6 @@ export declare const editorExperimentsConfig: {
423
417
  productKeys?: ProductKeys;
424
418
  typeGuard: IsBooleanType;
425
419
  };
426
- platform_editor_fix_quick_insert_consistency_exp: {
427
- defaultValue: boolean;
428
- param: string;
429
- productKeys?: ProductKeys;
430
- typeGuard: IsBooleanType;
431
- };
432
420
  platform_editor_floating_toolbar_button_aria_label: {
433
421
  defaultValue: boolean;
434
422
  param: string;
@@ -801,12 +789,6 @@ export declare const editorExperimentsConfig: {
801
789
  productKeys?: ProductKeys;
802
790
  typeGuard: IsBooleanType;
803
791
  };
804
- platform_editor_nested_media_selection_fix: {
805
- defaultValue: boolean;
806
- param: string;
807
- productKeys?: ProductKeys;
808
- typeGuard: IsBooleanType;
809
- };
810
792
  platform_editor_ai_exp_inline_date_year_refresh: {
811
793
  defaultValue: boolean;
812
794
  param: string;
@@ -933,6 +915,12 @@ export declare const editorExperimentsConfig: {
933
915
  productKeys?: ProductKeys;
934
916
  typeGuard: IsBooleanType;
935
917
  };
918
+ platform_editor_fix_cursor_flickering: {
919
+ defaultValue: boolean;
920
+ param: string;
921
+ productKeys?: ProductKeys;
922
+ typeGuard: IsBooleanType;
923
+ };
936
924
  platform_editor_send_client_platform_header: {
937
925
  defaultValue: boolean;
938
926
  param: string;
@@ -156,12 +156,6 @@ export declare const editorExperimentsConfig: {
156
156
  productKeys?: ProductKeys;
157
157
  typeGuard: IsBooleanType;
158
158
  };
159
- editor_prevent_numbered_column_too_big_jira_1: {
160
- defaultValue: boolean;
161
- param: string;
162
- productKeys?: ProductKeys;
163
- typeGuard: IsBooleanType;
164
- };
165
159
  editor_refactor_backspace_task_and_decisions: {
166
160
  defaultValue: boolean;
167
161
  param: string;
@@ -423,12 +417,6 @@ export declare const editorExperimentsConfig: {
423
417
  productKeys?: ProductKeys;
424
418
  typeGuard: IsBooleanType;
425
419
  };
426
- platform_editor_fix_quick_insert_consistency_exp: {
427
- defaultValue: boolean;
428
- param: string;
429
- productKeys?: ProductKeys;
430
- typeGuard: IsBooleanType;
431
- };
432
420
  platform_editor_floating_toolbar_button_aria_label: {
433
421
  defaultValue: boolean;
434
422
  param: string;
@@ -801,12 +789,6 @@ export declare const editorExperimentsConfig: {
801
789
  productKeys?: ProductKeys;
802
790
  typeGuard: IsBooleanType;
803
791
  };
804
- platform_editor_nested_media_selection_fix: {
805
- defaultValue: boolean;
806
- param: string;
807
- productKeys?: ProductKeys;
808
- typeGuard: IsBooleanType;
809
- };
810
792
  platform_editor_ai_exp_inline_date_year_refresh: {
811
793
  defaultValue: boolean;
812
794
  param: string;
@@ -933,6 +915,12 @@ export declare const editorExperimentsConfig: {
933
915
  productKeys?: ProductKeys;
934
916
  typeGuard: IsBooleanType;
935
917
  };
918
+ platform_editor_fix_cursor_flickering: {
919
+ defaultValue: boolean;
920
+ param: string;
921
+ productKeys?: ProductKeys;
922
+ typeGuard: IsBooleanType;
923
+ };
936
924
  platform_editor_send_client_platform_header: {
937
925
  defaultValue: boolean;
938
926
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "19.0.0",
3
+ "version": "20.1.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.0.0",
37
+ "@atlaskit/react-ufo": "^5.1.0",
38
38
  "@babel/runtime": "^7.0.0"
39
39
  },
40
40
  "peerDependencies": {