@atlaskit/tmp-editor-statsig 15.7.1 → 15.9.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 +17 -0
- package/dist/cjs/exp-test-overrides.js +1 -1
- package/dist/cjs/experiments-config.js +16 -9
- package/dist/es2019/exp-test-overrides.js +1 -1
- package/dist/es2019/experiments-config.js +16 -9
- package/dist/esm/exp-test-overrides.js +1 -1
- package/dist/esm/experiments-config.js +16 -9
- package/dist/types/experiments-config.d.ts +12 -7
- package/dist/types-ts4.5/experiments-config.d.ts +12 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 15.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`cb319ae5e7782`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cb319ae5e7782) -
|
|
8
|
+
EDITOR-2864 - Address HoverLinkOverlay label spilling out beyond the margins of its container on
|
|
9
|
+
hover. For example, when a smart link is inside a table, and it is broken into 1+ line, the label
|
|
10
|
+
on hover will not break and will therefore appear hovering out of the table.
|
|
11
|
+
|
|
12
|
+
## 15.8.0
|
|
13
|
+
|
|
14
|
+
### Minor Changes
|
|
15
|
+
|
|
16
|
+
- [`8677e7b660127`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8677e7b660127) -
|
|
17
|
+
EDITOR-3792 Rollup max width changes previously gated with editor_tinymce_full_width_mode into
|
|
18
|
+
combined frontend/backend flag confluence_max_width_content_appearance
|
|
19
|
+
|
|
3
20
|
## 15.7.1
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -9,7 +9,6 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
|
|
|
9
9
|
'platform_editor_ai-prompts-placeholder': 'control',
|
|
10
10
|
platform_editor_ai_proactive_ai_nudge_parameters: 'control',
|
|
11
11
|
platform_editor_controls: 'control',
|
|
12
|
-
confluence_whiteboards_quick_insert_aa: 'control',
|
|
13
12
|
confluence_whiteboards_quick_insert: 'control',
|
|
14
13
|
confluence_whiteboards_quick_insert_localised: 'control',
|
|
15
14
|
confluence_whiteboards_quick_insert_localised_aa: 'control',
|
|
@@ -28,6 +27,7 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
|
|
|
28
27
|
platform_sl_3p_unauth_paste_as_block_card: 'control'
|
|
29
28
|
};
|
|
30
29
|
var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
30
|
+
cc_editor_hover_link_overlay_css_fix: false,
|
|
31
31
|
platform_editor_feedback_mandatory_rating: false,
|
|
32
32
|
platform_editor_preview_panel_responsiveness: false,
|
|
33
33
|
platform_editor_toolbar_aifc: false,
|
|
@@ -69,6 +69,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
69
69
|
param: 'isEnabled',
|
|
70
70
|
defaultValue: false
|
|
71
71
|
}),
|
|
72
|
+
// Added 2025-12-10
|
|
73
|
+
confluence_max_width_content_appearance: (0, _experimentBuilders.createBooleanExperiment)({
|
|
74
|
+
productKeys: {
|
|
75
|
+
confluence: 'confluence_max_width_content_appearance'
|
|
76
|
+
},
|
|
77
|
+
param: 'isEnabled',
|
|
78
|
+
defaultValue: false
|
|
79
|
+
}),
|
|
72
80
|
cc_editor_insm_doc_size_stats: (0, _experimentBuilders.createBooleanExperiment)({
|
|
73
81
|
productKeys: {
|
|
74
82
|
confluence: 'cc_editor_insm_doc_size_stats'
|
|
@@ -85,6 +93,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
85
93
|
values: ['control', 'test'],
|
|
86
94
|
defaultValue: 'control'
|
|
87
95
|
}),
|
|
96
|
+
// Added 2025-12-09
|
|
97
|
+
cc_editor_hover_link_overlay_css_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
98
|
+
productKeys: {
|
|
99
|
+
confluence: 'cc_editor_hover_link_overlay_css_fix'
|
|
100
|
+
},
|
|
101
|
+
param: 'isEnabled',
|
|
102
|
+
defaultValue: false
|
|
103
|
+
}),
|
|
88
104
|
// Added 2025-11-17
|
|
89
105
|
platform_editor_renderer_extension_width_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
90
106
|
productKeys: {
|
|
@@ -503,15 +519,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
503
519
|
param: 'isEnabled',
|
|
504
520
|
defaultValue: false
|
|
505
521
|
}),
|
|
506
|
-
// Added 2025-06-20
|
|
507
|
-
confluence_whiteboards_quick_insert_aa: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
508
|
-
productKeys: {
|
|
509
|
-
confluence: 'confluence_whiteboards_quick_insert_aa'
|
|
510
|
-
},
|
|
511
|
-
param: 'cohort',
|
|
512
|
-
values: ['control', 'test_blank', 'test_diagram'],
|
|
513
|
-
defaultValue: 'control'
|
|
514
|
-
}),
|
|
515
522
|
// Added 2025-06-24
|
|
516
523
|
platform_editor_find_and_replace_improvements: (0, _experimentBuilders.createBooleanExperiment)({
|
|
517
524
|
productKeys: {
|
|
@@ -3,7 +3,6 @@ export const testMultivariateOverrides = {
|
|
|
3
3
|
'platform_editor_ai-prompts-placeholder': 'control',
|
|
4
4
|
platform_editor_ai_proactive_ai_nudge_parameters: 'control',
|
|
5
5
|
platform_editor_controls: 'control',
|
|
6
|
-
confluence_whiteboards_quick_insert_aa: 'control',
|
|
7
6
|
confluence_whiteboards_quick_insert: 'control',
|
|
8
7
|
confluence_whiteboards_quick_insert_localised: 'control',
|
|
9
8
|
confluence_whiteboards_quick_insert_localised_aa: 'control',
|
|
@@ -22,6 +21,7 @@ export const testMultivariateOverrides = {
|
|
|
22
21
|
platform_sl_3p_unauth_paste_as_block_card: 'control'
|
|
23
22
|
};
|
|
24
23
|
export const testBooleanOverrides = {
|
|
24
|
+
cc_editor_hover_link_overlay_css_fix: false,
|
|
25
25
|
platform_editor_feedback_mandatory_rating: false,
|
|
26
26
|
platform_editor_preview_panel_responsiveness: false,
|
|
27
27
|
platform_editor_toolbar_aifc: false,
|
|
@@ -63,6 +63,14 @@ export const editorExperimentsConfig = {
|
|
|
63
63
|
param: 'isEnabled',
|
|
64
64
|
defaultValue: false
|
|
65
65
|
}),
|
|
66
|
+
// Added 2025-12-10
|
|
67
|
+
confluence_max_width_content_appearance: createBooleanExperiment({
|
|
68
|
+
productKeys: {
|
|
69
|
+
confluence: 'confluence_max_width_content_appearance'
|
|
70
|
+
},
|
|
71
|
+
param: 'isEnabled',
|
|
72
|
+
defaultValue: false
|
|
73
|
+
}),
|
|
66
74
|
cc_editor_insm_doc_size_stats: createBooleanExperiment({
|
|
67
75
|
productKeys: {
|
|
68
76
|
confluence: 'cc_editor_insm_doc_size_stats'
|
|
@@ -79,6 +87,14 @@ export const editorExperimentsConfig = {
|
|
|
79
87
|
values: ['control', 'test'],
|
|
80
88
|
defaultValue: 'control'
|
|
81
89
|
}),
|
|
90
|
+
// Added 2025-12-09
|
|
91
|
+
cc_editor_hover_link_overlay_css_fix: createBooleanExperiment({
|
|
92
|
+
productKeys: {
|
|
93
|
+
confluence: 'cc_editor_hover_link_overlay_css_fix'
|
|
94
|
+
},
|
|
95
|
+
param: 'isEnabled',
|
|
96
|
+
defaultValue: false
|
|
97
|
+
}),
|
|
82
98
|
// Added 2025-11-17
|
|
83
99
|
platform_editor_renderer_extension_width_fix: createBooleanExperiment({
|
|
84
100
|
productKeys: {
|
|
@@ -497,15 +513,6 @@ export const editorExperimentsConfig = {
|
|
|
497
513
|
param: 'isEnabled',
|
|
498
514
|
defaultValue: false
|
|
499
515
|
}),
|
|
500
|
-
// Added 2025-06-20
|
|
501
|
-
confluence_whiteboards_quick_insert_aa: createMultivariateExperiment({
|
|
502
|
-
productKeys: {
|
|
503
|
-
confluence: 'confluence_whiteboards_quick_insert_aa'
|
|
504
|
-
},
|
|
505
|
-
param: 'cohort',
|
|
506
|
-
values: ['control', 'test_blank', 'test_diagram'],
|
|
507
|
-
defaultValue: 'control'
|
|
508
|
-
}),
|
|
509
516
|
// Added 2025-06-24
|
|
510
517
|
platform_editor_find_and_replace_improvements: createBooleanExperiment({
|
|
511
518
|
productKeys: {
|
|
@@ -3,7 +3,6 @@ export var testMultivariateOverrides = {
|
|
|
3
3
|
'platform_editor_ai-prompts-placeholder': 'control',
|
|
4
4
|
platform_editor_ai_proactive_ai_nudge_parameters: 'control',
|
|
5
5
|
platform_editor_controls: 'control',
|
|
6
|
-
confluence_whiteboards_quick_insert_aa: 'control',
|
|
7
6
|
confluence_whiteboards_quick_insert: 'control',
|
|
8
7
|
confluence_whiteboards_quick_insert_localised: 'control',
|
|
9
8
|
confluence_whiteboards_quick_insert_localised_aa: 'control',
|
|
@@ -22,6 +21,7 @@ export var testMultivariateOverrides = {
|
|
|
22
21
|
platform_sl_3p_unauth_paste_as_block_card: 'control'
|
|
23
22
|
};
|
|
24
23
|
export var testBooleanOverrides = {
|
|
24
|
+
cc_editor_hover_link_overlay_css_fix: false,
|
|
25
25
|
platform_editor_feedback_mandatory_rating: false,
|
|
26
26
|
platform_editor_preview_panel_responsiveness: false,
|
|
27
27
|
platform_editor_toolbar_aifc: false,
|
|
@@ -63,6 +63,14 @@ export var editorExperimentsConfig = {
|
|
|
63
63
|
param: 'isEnabled',
|
|
64
64
|
defaultValue: false
|
|
65
65
|
}),
|
|
66
|
+
// Added 2025-12-10
|
|
67
|
+
confluence_max_width_content_appearance: createBooleanExperiment({
|
|
68
|
+
productKeys: {
|
|
69
|
+
confluence: 'confluence_max_width_content_appearance'
|
|
70
|
+
},
|
|
71
|
+
param: 'isEnabled',
|
|
72
|
+
defaultValue: false
|
|
73
|
+
}),
|
|
66
74
|
cc_editor_insm_doc_size_stats: createBooleanExperiment({
|
|
67
75
|
productKeys: {
|
|
68
76
|
confluence: 'cc_editor_insm_doc_size_stats'
|
|
@@ -79,6 +87,14 @@ export var editorExperimentsConfig = {
|
|
|
79
87
|
values: ['control', 'test'],
|
|
80
88
|
defaultValue: 'control'
|
|
81
89
|
}),
|
|
90
|
+
// Added 2025-12-09
|
|
91
|
+
cc_editor_hover_link_overlay_css_fix: createBooleanExperiment({
|
|
92
|
+
productKeys: {
|
|
93
|
+
confluence: 'cc_editor_hover_link_overlay_css_fix'
|
|
94
|
+
},
|
|
95
|
+
param: 'isEnabled',
|
|
96
|
+
defaultValue: false
|
|
97
|
+
}),
|
|
82
98
|
// Added 2025-11-17
|
|
83
99
|
platform_editor_renderer_extension_width_fix: createBooleanExperiment({
|
|
84
100
|
productKeys: {
|
|
@@ -497,15 +513,6 @@ export var editorExperimentsConfig = {
|
|
|
497
513
|
param: 'isEnabled',
|
|
498
514
|
defaultValue: false
|
|
499
515
|
}),
|
|
500
|
-
// Added 2025-06-20
|
|
501
|
-
confluence_whiteboards_quick_insert_aa: createMultivariateExperiment({
|
|
502
|
-
productKeys: {
|
|
503
|
-
confluence: 'confluence_whiteboards_quick_insert_aa'
|
|
504
|
-
},
|
|
505
|
-
param: 'cohort',
|
|
506
|
-
values: ['control', 'test_blank', 'test_diagram'],
|
|
507
|
-
defaultValue: 'control'
|
|
508
|
-
}),
|
|
509
516
|
// Added 2025-06-24
|
|
510
517
|
platform_editor_find_and_replace_improvements: createBooleanExperiment({
|
|
511
518
|
productKeys: {
|
|
@@ -33,6 +33,12 @@ export declare const editorExperimentsConfig: {
|
|
|
33
33
|
typeGuard: (value: unknown) => value is 'control' | 'test';
|
|
34
34
|
values: ('control' | 'test')[];
|
|
35
35
|
};
|
|
36
|
+
cc_editor_hover_link_overlay_css_fix: {
|
|
37
|
+
defaultValue: boolean;
|
|
38
|
+
param: string;
|
|
39
|
+
productKeys?: ProductKeys;
|
|
40
|
+
typeGuard: IsBooleanType;
|
|
41
|
+
};
|
|
36
42
|
cc_editor_insm_doc_size_stats: {
|
|
37
43
|
defaultValue: boolean;
|
|
38
44
|
param: string;
|
|
@@ -114,13 +120,6 @@ export declare const editorExperimentsConfig: {
|
|
|
114
120
|
typeGuard: (value: unknown) => value is 'control' | 'test_blank' | 'test_diagram';
|
|
115
121
|
values: ('control' | 'test_blank' | 'test_diagram')[];
|
|
116
122
|
};
|
|
117
|
-
confluence_whiteboards_quick_insert_aa: {
|
|
118
|
-
defaultValue: 'control' | 'test_blank' | 'test_diagram';
|
|
119
|
-
param: string;
|
|
120
|
-
productKeys?: ProductKeys;
|
|
121
|
-
typeGuard: (value: unknown) => value is 'control' | 'test_blank' | 'test_diagram';
|
|
122
|
-
values: ('control' | 'test_blank' | 'test_diagram')[];
|
|
123
|
-
};
|
|
124
123
|
confluence_whiteboards_quick_insert_localised: {
|
|
125
124
|
defaultValue: 'control' | 'test_blank' | 'test_diagram';
|
|
126
125
|
param: string;
|
|
@@ -165,6 +164,12 @@ export declare const editorExperimentsConfig: {
|
|
|
165
164
|
productKeys?: ProductKeys;
|
|
166
165
|
typeGuard: IsBooleanType;
|
|
167
166
|
};
|
|
167
|
+
confluence_max_width_content_appearance: {
|
|
168
|
+
defaultValue: boolean;
|
|
169
|
+
param: string;
|
|
170
|
+
productKeys?: ProductKeys;
|
|
171
|
+
typeGuard: IsBooleanType;
|
|
172
|
+
};
|
|
168
173
|
'example-boolean': {
|
|
169
174
|
defaultValue: boolean;
|
|
170
175
|
param: string;
|
|
@@ -33,6 +33,12 @@ export declare const editorExperimentsConfig: {
|
|
|
33
33
|
typeGuard: (value: unknown) => value is 'control' | 'test';
|
|
34
34
|
values: ('control' | 'test')[];
|
|
35
35
|
};
|
|
36
|
+
cc_editor_hover_link_overlay_css_fix: {
|
|
37
|
+
defaultValue: boolean;
|
|
38
|
+
param: string;
|
|
39
|
+
productKeys?: ProductKeys;
|
|
40
|
+
typeGuard: IsBooleanType;
|
|
41
|
+
};
|
|
36
42
|
cc_editor_insm_doc_size_stats: {
|
|
37
43
|
defaultValue: boolean;
|
|
38
44
|
param: string;
|
|
@@ -114,13 +120,6 @@ export declare const editorExperimentsConfig: {
|
|
|
114
120
|
typeGuard: (value: unknown) => value is 'control' | 'test_blank' | 'test_diagram';
|
|
115
121
|
values: ('control' | 'test_blank' | 'test_diagram')[];
|
|
116
122
|
};
|
|
117
|
-
confluence_whiteboards_quick_insert_aa: {
|
|
118
|
-
defaultValue: 'control' | 'test_blank' | 'test_diagram';
|
|
119
|
-
param: string;
|
|
120
|
-
productKeys?: ProductKeys;
|
|
121
|
-
typeGuard: (value: unknown) => value is 'control' | 'test_blank' | 'test_diagram';
|
|
122
|
-
values: ('control' | 'test_blank' | 'test_diagram')[];
|
|
123
|
-
};
|
|
124
123
|
confluence_whiteboards_quick_insert_localised: {
|
|
125
124
|
defaultValue: 'control' | 'test_blank' | 'test_diagram';
|
|
126
125
|
param: string;
|
|
@@ -165,6 +164,12 @@ export declare const editorExperimentsConfig: {
|
|
|
165
164
|
productKeys?: ProductKeys;
|
|
166
165
|
typeGuard: IsBooleanType;
|
|
167
166
|
};
|
|
167
|
+
confluence_max_width_content_appearance: {
|
|
168
|
+
defaultValue: boolean;
|
|
169
|
+
param: string;
|
|
170
|
+
productKeys?: ProductKeys;
|
|
171
|
+
typeGuard: IsBooleanType;
|
|
172
|
+
};
|
|
168
173
|
'example-boolean': {
|
|
169
174
|
defaultValue: boolean;
|
|
170
175
|
param: string;
|
package/package.json
CHANGED