@atlaskit/tmp-editor-statsig 114.1.0 → 114.3.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 +15 -0
- package/dist/cjs/exp-test-overrides.js +1 -0
- package/dist/cjs/experiments-config.js +16 -0
- package/dist/es2019/exp-test-overrides.js +1 -0
- package/dist/es2019/experiments-config.js +16 -0
- package/dist/esm/exp-test-overrides.js +1 -0
- package/dist/esm/experiments-config.js +16 -0
- package/dist/types/experiments-config.d.ts +12 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 114.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`5d42cea730a1b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5d42cea730a1b) -
|
|
8
|
+
[ENGHEALTH-53346] Gate the inline extension width-context memoization fix behind a Jira
|
|
9
|
+
experiment.
|
|
10
|
+
|
|
11
|
+
## 114.2.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [`0c3036cbf6b5c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0c3036cbf6b5c) -
|
|
16
|
+
Add gated Rovo actions footer experiment for eligible resolved 3P Smart Link embeds in Confluence.
|
|
17
|
+
|
|
3
18
|
## 114.1.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
|
@@ -27,6 +27,7 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
27
27
|
cwr_blank_object_experiment: false,
|
|
28
28
|
platform_editor_feedback_mandatory_rating: false,
|
|
29
29
|
platform_editor_preview_panel_responsiveness: false,
|
|
30
|
+
'enghealth-53346_fix_redaction_marker_editor': false,
|
|
30
31
|
platform_editor_toolbar_aifc: false,
|
|
31
32
|
'test-new-experiments-package': false,
|
|
32
33
|
platform_editor_exp_lazy_node_views: false,
|
|
@@ -82,6 +82,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
82
82
|
param: 'isEnabled',
|
|
83
83
|
defaultValue: false
|
|
84
84
|
}),
|
|
85
|
+
// Added 2026-06-19
|
|
86
|
+
'enghealth-53346_fix_redaction_marker_editor': (0, _experimentBuilders.createBooleanExperiment)({
|
|
87
|
+
productKeys: {
|
|
88
|
+
jira: 'enghealth-53346_fix_redaction_marker_editor'
|
|
89
|
+
},
|
|
90
|
+
param: 'isEnabled',
|
|
91
|
+
defaultValue: false
|
|
92
|
+
}),
|
|
85
93
|
// Added 03-09-2025
|
|
86
94
|
cc_editor_interactivity_monitoring: (0, _experimentBuilders.createBooleanExperiment)({
|
|
87
95
|
productKeys: {
|
|
@@ -1027,6 +1035,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1027
1035
|
param: 'isEnabled',
|
|
1028
1036
|
defaultValue: false
|
|
1029
1037
|
}),
|
|
1038
|
+
// Added 2026-06-15 — Embed card footer rovo action for resolved 3P smart links in confluence
|
|
1039
|
+
platform_sl_3p_auth_rovo_embed_footer_exp: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1040
|
+
productKeys: {
|
|
1041
|
+
confluence: 'platform_sl_3p_auth_rovo_embed_footer_exp'
|
|
1042
|
+
},
|
|
1043
|
+
param: 'isEnabled',
|
|
1044
|
+
defaultValue: false
|
|
1045
|
+
}),
|
|
1030
1046
|
// Added 2025-01-23
|
|
1031
1047
|
platform_editor_to_use_pmr_for_collab_edit_none_ic: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1032
1048
|
productKeys: {
|
|
@@ -21,6 +21,7 @@ export const testBooleanOverrides = {
|
|
|
21
21
|
cwr_blank_object_experiment: false,
|
|
22
22
|
platform_editor_feedback_mandatory_rating: false,
|
|
23
23
|
platform_editor_preview_panel_responsiveness: false,
|
|
24
|
+
'enghealth-53346_fix_redaction_marker_editor': false,
|
|
24
25
|
platform_editor_toolbar_aifc: false,
|
|
25
26
|
'test-new-experiments-package': false,
|
|
26
27
|
platform_editor_exp_lazy_node_views: false,
|
|
@@ -76,6 +76,14 @@ export const editorExperimentsConfig = {
|
|
|
76
76
|
param: 'isEnabled',
|
|
77
77
|
defaultValue: false
|
|
78
78
|
}),
|
|
79
|
+
// Added 2026-06-19
|
|
80
|
+
'enghealth-53346_fix_redaction_marker_editor': createBooleanExperiment({
|
|
81
|
+
productKeys: {
|
|
82
|
+
jira: 'enghealth-53346_fix_redaction_marker_editor'
|
|
83
|
+
},
|
|
84
|
+
param: 'isEnabled',
|
|
85
|
+
defaultValue: false
|
|
86
|
+
}),
|
|
79
87
|
// Added 03-09-2025
|
|
80
88
|
cc_editor_interactivity_monitoring: createBooleanExperiment({
|
|
81
89
|
productKeys: {
|
|
@@ -1021,6 +1029,14 @@ export const editorExperimentsConfig = {
|
|
|
1021
1029
|
param: 'isEnabled',
|
|
1022
1030
|
defaultValue: false
|
|
1023
1031
|
}),
|
|
1032
|
+
// Added 2026-06-15 — Embed card footer rovo action for resolved 3P smart links in confluence
|
|
1033
|
+
platform_sl_3p_auth_rovo_embed_footer_exp: createBooleanExperiment({
|
|
1034
|
+
productKeys: {
|
|
1035
|
+
confluence: 'platform_sl_3p_auth_rovo_embed_footer_exp'
|
|
1036
|
+
},
|
|
1037
|
+
param: 'isEnabled',
|
|
1038
|
+
defaultValue: false
|
|
1039
|
+
}),
|
|
1024
1040
|
// Added 2025-01-23
|
|
1025
1041
|
platform_editor_to_use_pmr_for_collab_edit_none_ic: createBooleanExperiment({
|
|
1026
1042
|
productKeys: {
|
|
@@ -21,6 +21,7 @@ export var testBooleanOverrides = {
|
|
|
21
21
|
cwr_blank_object_experiment: false,
|
|
22
22
|
platform_editor_feedback_mandatory_rating: false,
|
|
23
23
|
platform_editor_preview_panel_responsiveness: false,
|
|
24
|
+
'enghealth-53346_fix_redaction_marker_editor': false,
|
|
24
25
|
platform_editor_toolbar_aifc: false,
|
|
25
26
|
'test-new-experiments-package': false,
|
|
26
27
|
platform_editor_exp_lazy_node_views: false,
|
|
@@ -76,6 +76,14 @@ export var editorExperimentsConfig = {
|
|
|
76
76
|
param: 'isEnabled',
|
|
77
77
|
defaultValue: false
|
|
78
78
|
}),
|
|
79
|
+
// Added 2026-06-19
|
|
80
|
+
'enghealth-53346_fix_redaction_marker_editor': createBooleanExperiment({
|
|
81
|
+
productKeys: {
|
|
82
|
+
jira: 'enghealth-53346_fix_redaction_marker_editor'
|
|
83
|
+
},
|
|
84
|
+
param: 'isEnabled',
|
|
85
|
+
defaultValue: false
|
|
86
|
+
}),
|
|
79
87
|
// Added 03-09-2025
|
|
80
88
|
cc_editor_interactivity_monitoring: createBooleanExperiment({
|
|
81
89
|
productKeys: {
|
|
@@ -1021,6 +1029,14 @@ export var editorExperimentsConfig = {
|
|
|
1021
1029
|
param: 'isEnabled',
|
|
1022
1030
|
defaultValue: false
|
|
1023
1031
|
}),
|
|
1032
|
+
// Added 2026-06-15 — Embed card footer rovo action for resolved 3P smart links in confluence
|
|
1033
|
+
platform_sl_3p_auth_rovo_embed_footer_exp: createBooleanExperiment({
|
|
1034
|
+
productKeys: {
|
|
1035
|
+
confluence: 'platform_sl_3p_auth_rovo_embed_footer_exp'
|
|
1036
|
+
},
|
|
1037
|
+
param: 'isEnabled',
|
|
1038
|
+
defaultValue: false
|
|
1039
|
+
}),
|
|
1024
1040
|
// Added 2025-01-23
|
|
1025
1041
|
platform_editor_to_use_pmr_for_collab_edit_none_ic: createBooleanExperiment({
|
|
1026
1042
|
productKeys: {
|
|
@@ -101,6 +101,12 @@ export declare const editorExperimentsConfig: {
|
|
|
101
101
|
productKeys?: ProductKeys;
|
|
102
102
|
typeGuard: IsBooleanType;
|
|
103
103
|
};
|
|
104
|
+
'enghealth-53346_fix_redaction_marker_editor': {
|
|
105
|
+
defaultValue: boolean;
|
|
106
|
+
param: string;
|
|
107
|
+
productKeys?: ProductKeys;
|
|
108
|
+
typeGuard: IsBooleanType;
|
|
109
|
+
};
|
|
104
110
|
platform_editor_ai_normalized_telemetry: {
|
|
105
111
|
defaultValue: boolean;
|
|
106
112
|
param: string;
|
|
@@ -701,6 +707,12 @@ export declare const editorExperimentsConfig: {
|
|
|
701
707
|
productKeys?: ProductKeys;
|
|
702
708
|
typeGuard: IsBooleanType;
|
|
703
709
|
};
|
|
710
|
+
platform_sl_3p_auth_rovo_embed_footer_exp: {
|
|
711
|
+
defaultValue: boolean;
|
|
712
|
+
param: string;
|
|
713
|
+
productKeys?: ProductKeys;
|
|
714
|
+
typeGuard: IsBooleanType;
|
|
715
|
+
};
|
|
704
716
|
social_proof_3p_unauth_block_exp: {
|
|
705
717
|
defaultValue: boolean;
|
|
706
718
|
param: string;
|
package/package.json
CHANGED