@atlaskit/tmp-editor-statsig 15.13.0 → 15.15.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,26 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 15.15.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`53aef9589ca55`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/53aef9589ca55) -
8
+ [EDITOR-3786] Make sure that for any check of `cc_editor_ai_content_mode` &&
9
+ `platform_editor_content_mode_button_mvp` in the code we are also checking
10
+ `confluence_compact_text_format`
11
+
12
+ ### Patch Changes
13
+
14
+ - [`73a49fd4c204c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/73a49fd4c204c) -
15
+ Cleanup FG platform_editor_new_list_decorations_logic
16
+
17
+ ## 15.14.0
18
+
19
+ ### Minor Changes
20
+
21
+ - [`8f6e124ff820f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8f6e124ff820f) -
22
+ Fix case platform_editor_remove_ncsstepmetrics_plugin
23
+
3
24
  ## 15.13.0
4
25
 
5
26
  ### Minor Changes
@@ -60,5 +60,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
60
60
  platform_editor_toggle_expand_on_match_found: false,
61
61
  platform_editor_reduce_noisy_steps_ncs: false,
62
62
  cc_improve_writing_on_paste_v2: false,
63
- platform_editor_text_highlight_padding: false
63
+ platform_editor_text_highlight_padding: false,
64
+ confluence_compact_text_format: false
64
65
  };
@@ -896,6 +896,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
896
896
  values: ['control', 'test'],
897
897
  defaultValue: 'control'
898
898
  }),
899
+ // Added 2025-12-04
900
+ confluence_compact_text_format: (0, _experimentBuilders.createBooleanExperiment)({
901
+ productKeys: {
902
+ confluence: 'confluence_compact_text_format'
903
+ },
904
+ param: 'isEnabled',
905
+ defaultValue: false
906
+ }),
899
907
  // Added 2025-09-08
900
908
  platform_editor_editor_width_analytics: (0, _experimentBuilders.createBooleanExperiment)({
901
909
  productKeys: {
@@ -1004,14 +1012,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1004
1012
  values: ['control', 'test1', 'test2'],
1005
1013
  defaultValue: 'control'
1006
1014
  }),
1007
- // Added 2025-10-10
1008
- platform_editor_new_list_decorations_logic: (0, _experimentBuilders.createBooleanExperiment)({
1009
- productKeys: {
1010
- confluence: 'platform_editor_new_list_decorations_logic'
1011
- },
1012
- param: 'isEnabled',
1013
- defaultValue: false
1014
- }),
1015
1015
  // Added 2025-10-13
1016
1016
  platform_editor_media_error_analytics: (0, _experimentBuilders.createBooleanExperiment)({
1017
1017
  productKeys: {
@@ -1114,9 +1114,9 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1114
1114
  defaultValue: 'control'
1115
1115
  }),
1116
1116
  // Added 2025-11-25
1117
- platform_editor_remove_ncsStepMetrics_plugin: (0, _experimentBuilders.createBooleanExperiment)({
1117
+ platform_editor_remove_ncsstepmetrics_plugin: (0, _experimentBuilders.createBooleanExperiment)({
1118
1118
  productKeys: {
1119
- confluence: 'platform_editor_remove_ncsStepMetrics_plugin'
1119
+ confluence: 'platform_editor_remove_ncsstepmetrics_plugin'
1120
1120
  },
1121
1121
  param: 'isEnabled',
1122
1122
  defaultValue: false
@@ -54,5 +54,6 @@ export const testBooleanOverrides = {
54
54
  platform_editor_toggle_expand_on_match_found: false,
55
55
  platform_editor_reduce_noisy_steps_ncs: false,
56
56
  cc_improve_writing_on_paste_v2: false,
57
- platform_editor_text_highlight_padding: false
57
+ platform_editor_text_highlight_padding: false,
58
+ confluence_compact_text_format: false
58
59
  };
@@ -890,6 +890,14 @@ export const editorExperimentsConfig = {
890
890
  values: ['control', 'test'],
891
891
  defaultValue: 'control'
892
892
  }),
893
+ // Added 2025-12-04
894
+ confluence_compact_text_format: createBooleanExperiment({
895
+ productKeys: {
896
+ confluence: 'confluence_compact_text_format'
897
+ },
898
+ param: 'isEnabled',
899
+ defaultValue: false
900
+ }),
893
901
  // Added 2025-09-08
894
902
  platform_editor_editor_width_analytics: createBooleanExperiment({
895
903
  productKeys: {
@@ -998,14 +1006,6 @@ export const editorExperimentsConfig = {
998
1006
  values: ['control', 'test1', 'test2'],
999
1007
  defaultValue: 'control'
1000
1008
  }),
1001
- // Added 2025-10-10
1002
- platform_editor_new_list_decorations_logic: createBooleanExperiment({
1003
- productKeys: {
1004
- confluence: 'platform_editor_new_list_decorations_logic'
1005
- },
1006
- param: 'isEnabled',
1007
- defaultValue: false
1008
- }),
1009
1009
  // Added 2025-10-13
1010
1010
  platform_editor_media_error_analytics: createBooleanExperiment({
1011
1011
  productKeys: {
@@ -1108,9 +1108,9 @@ export const editorExperimentsConfig = {
1108
1108
  defaultValue: 'control'
1109
1109
  }),
1110
1110
  // Added 2025-11-25
1111
- platform_editor_remove_ncsStepMetrics_plugin: createBooleanExperiment({
1111
+ platform_editor_remove_ncsstepmetrics_plugin: createBooleanExperiment({
1112
1112
  productKeys: {
1113
- confluence: 'platform_editor_remove_ncsStepMetrics_plugin'
1113
+ confluence: 'platform_editor_remove_ncsstepmetrics_plugin'
1114
1114
  },
1115
1115
  param: 'isEnabled',
1116
1116
  defaultValue: false
@@ -54,5 +54,6 @@ export var testBooleanOverrides = {
54
54
  platform_editor_toggle_expand_on_match_found: false,
55
55
  platform_editor_reduce_noisy_steps_ncs: false,
56
56
  cc_improve_writing_on_paste_v2: false,
57
- platform_editor_text_highlight_padding: false
57
+ platform_editor_text_highlight_padding: false,
58
+ confluence_compact_text_format: false
58
59
  };
@@ -890,6 +890,14 @@ export var editorExperimentsConfig = {
890
890
  values: ['control', 'test'],
891
891
  defaultValue: 'control'
892
892
  }),
893
+ // Added 2025-12-04
894
+ confluence_compact_text_format: createBooleanExperiment({
895
+ productKeys: {
896
+ confluence: 'confluence_compact_text_format'
897
+ },
898
+ param: 'isEnabled',
899
+ defaultValue: false
900
+ }),
893
901
  // Added 2025-09-08
894
902
  platform_editor_editor_width_analytics: createBooleanExperiment({
895
903
  productKeys: {
@@ -998,14 +1006,6 @@ export var editorExperimentsConfig = {
998
1006
  values: ['control', 'test1', 'test2'],
999
1007
  defaultValue: 'control'
1000
1008
  }),
1001
- // Added 2025-10-10
1002
- platform_editor_new_list_decorations_logic: createBooleanExperiment({
1003
- productKeys: {
1004
- confluence: 'platform_editor_new_list_decorations_logic'
1005
- },
1006
- param: 'isEnabled',
1007
- defaultValue: false
1008
- }),
1009
1009
  // Added 2025-10-13
1010
1010
  platform_editor_media_error_analytics: createBooleanExperiment({
1011
1011
  productKeys: {
@@ -1108,9 +1108,9 @@ export var editorExperimentsConfig = {
1108
1108
  defaultValue: 'control'
1109
1109
  }),
1110
1110
  // Added 2025-11-25
1111
- platform_editor_remove_ncsStepMetrics_plugin: createBooleanExperiment({
1111
+ platform_editor_remove_ncsstepmetrics_plugin: createBooleanExperiment({
1112
1112
  productKeys: {
1113
- confluence: 'platform_editor_remove_ncsStepMetrics_plugin'
1113
+ confluence: 'platform_editor_remove_ncsstepmetrics_plugin'
1114
1114
  },
1115
1115
  param: 'isEnabled',
1116
1116
  defaultValue: false
@@ -106,6 +106,12 @@ export declare const editorExperimentsConfig: {
106
106
  productKeys?: ProductKeys;
107
107
  typeGuard: IsBooleanType;
108
108
  };
109
+ confluence_compact_text_format: {
110
+ defaultValue: boolean;
111
+ param: string;
112
+ productKeys?: ProductKeys;
113
+ typeGuard: IsBooleanType;
114
+ };
109
115
  confluence_whiteboards_quick_insert: {
110
116
  defaultValue: 'control' | 'test_blank' | 'test_diagram';
111
117
  param: string;
@@ -513,12 +519,6 @@ export declare const editorExperimentsConfig: {
513
519
  productKeys?: ProductKeys;
514
520
  typeGuard: IsBooleanType;
515
521
  };
516
- platform_editor_new_list_decorations_logic: {
517
- defaultValue: boolean;
518
- param: string;
519
- productKeys?: ProductKeys;
520
- typeGuard: IsBooleanType;
521
- };
522
522
  platform_editor_new_mentions_detection_logic: {
523
523
  defaultValue: boolean;
524
524
  param: string;
@@ -609,7 +609,7 @@ export declare const editorExperimentsConfig: {
609
609
  productKeys?: ProductKeys;
610
610
  typeGuard: IsBooleanType;
611
611
  };
612
- platform_editor_remove_ncsStepMetrics_plugin: {
612
+ platform_editor_remove_ncsstepmetrics_plugin: {
613
613
  defaultValue: boolean;
614
614
  param: string;
615
615
  productKeys?: ProductKeys;
@@ -106,6 +106,12 @@ export declare const editorExperimentsConfig: {
106
106
  productKeys?: ProductKeys;
107
107
  typeGuard: IsBooleanType;
108
108
  };
109
+ confluence_compact_text_format: {
110
+ defaultValue: boolean;
111
+ param: string;
112
+ productKeys?: ProductKeys;
113
+ typeGuard: IsBooleanType;
114
+ };
109
115
  confluence_whiteboards_quick_insert: {
110
116
  defaultValue: 'control' | 'test_blank' | 'test_diagram';
111
117
  param: string;
@@ -513,12 +519,6 @@ export declare const editorExperimentsConfig: {
513
519
  productKeys?: ProductKeys;
514
520
  typeGuard: IsBooleanType;
515
521
  };
516
- platform_editor_new_list_decorations_logic: {
517
- defaultValue: boolean;
518
- param: string;
519
- productKeys?: ProductKeys;
520
- typeGuard: IsBooleanType;
521
- };
522
522
  platform_editor_new_mentions_detection_logic: {
523
523
  defaultValue: boolean;
524
524
  param: string;
@@ -609,7 +609,7 @@ export declare const editorExperimentsConfig: {
609
609
  productKeys?: ProductKeys;
610
610
  typeGuard: IsBooleanType;
611
611
  };
612
- platform_editor_remove_ncsStepMetrics_plugin: {
612
+ platform_editor_remove_ncsstepmetrics_plugin: {
613
613
  defaultValue: boolean;
614
614
  param: string;
615
615
  productKeys?: ProductKeys;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "15.13.0",
3
+ "version": "15.15.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",