@atlaskit/tmp-editor-statsig 15.14.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 +14 -0
- package/dist/cjs/exp-test-overrides.js +2 -1
- package/dist/cjs/experiments-config.js +8 -8
- package/dist/es2019/exp-test-overrides.js +2 -1
- package/dist/es2019/experiments-config.js +8 -8
- package/dist/esm/exp-test-overrides.js +2 -1
- package/dist/esm/experiments-config.js +8 -8
- package/dist/types/experiments-config.d.ts +6 -6
- package/dist/types-ts4.5/experiments-config.d.ts +6 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
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
|
+
|
|
3
17
|
## 15.14.0
|
|
4
18
|
|
|
5
19
|
### 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: {
|
|
@@ -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: {
|
|
@@ -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: {
|
|
@@ -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;
|
|
@@ -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;
|
package/package.json
CHANGED