@atlaskit/tmp-editor-statsig 119.2.0 → 119.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
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 119.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`67aed651369bd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/67aed651369bd) -
|
|
8
|
+
[ux] Fixes an issue where editorContext was coming from underlying page, rather than open
|
|
9
|
+
stagingarea
|
|
10
|
+
|
|
3
11
|
## 119.2.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -1848,6 +1848,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1848
1848
|
param: 'isEnabled',
|
|
1849
1849
|
defaultValue: false
|
|
1850
1850
|
}),
|
|
1851
|
+
// Added 2026-06-30
|
|
1852
|
+
cc_fix_editor_context_on_cwr_followups: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1853
|
+
productKeys: {
|
|
1854
|
+
confluence: 'cc_fix_editor_context_on_cwr_followups'
|
|
1855
|
+
},
|
|
1856
|
+
param: 'isEnabled',
|
|
1857
|
+
defaultValue: false
|
|
1858
|
+
}),
|
|
1851
1859
|
// Added 2026-04-14
|
|
1852
1860
|
improve_3p_smart_link_resolve_rate: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1853
1861
|
productKeys: {
|
|
@@ -1842,6 +1842,14 @@ export const editorExperimentsConfig = {
|
|
|
1842
1842
|
param: 'isEnabled',
|
|
1843
1843
|
defaultValue: false
|
|
1844
1844
|
}),
|
|
1845
|
+
// Added 2026-06-30
|
|
1846
|
+
cc_fix_editor_context_on_cwr_followups: createBooleanExperiment({
|
|
1847
|
+
productKeys: {
|
|
1848
|
+
confluence: 'cc_fix_editor_context_on_cwr_followups'
|
|
1849
|
+
},
|
|
1850
|
+
param: 'isEnabled',
|
|
1851
|
+
defaultValue: false
|
|
1852
|
+
}),
|
|
1845
1853
|
// Added 2026-04-14
|
|
1846
1854
|
improve_3p_smart_link_resolve_rate: createBooleanExperiment({
|
|
1847
1855
|
productKeys: {
|
|
@@ -1842,6 +1842,14 @@ export var editorExperimentsConfig = {
|
|
|
1842
1842
|
param: 'isEnabled',
|
|
1843
1843
|
defaultValue: false
|
|
1844
1844
|
}),
|
|
1845
|
+
// Added 2026-06-30
|
|
1846
|
+
cc_fix_editor_context_on_cwr_followups: createBooleanExperiment({
|
|
1847
|
+
productKeys: {
|
|
1848
|
+
confluence: 'cc_fix_editor_context_on_cwr_followups'
|
|
1849
|
+
},
|
|
1850
|
+
param: 'isEnabled',
|
|
1851
|
+
defaultValue: false
|
|
1852
|
+
}),
|
|
1845
1853
|
// Added 2026-04-14
|
|
1846
1854
|
improve_3p_smart_link_resolve_rate: createBooleanExperiment({
|
|
1847
1855
|
productKeys: {
|
|
@@ -920,6 +920,12 @@ export declare const editorExperimentsConfig: {
|
|
|
920
920
|
typeGuard: (value: unknown) => value is 'control' | 'slot-four' | 'slot-two';
|
|
921
921
|
values: ('control' | 'slot-four' | 'slot-two')[];
|
|
922
922
|
};
|
|
923
|
+
cc_fix_editor_context_on_cwr_followups: {
|
|
924
|
+
defaultValue: boolean;
|
|
925
|
+
param: string;
|
|
926
|
+
productKeys?: ProductKeys;
|
|
927
|
+
typeGuard: IsBooleanType;
|
|
928
|
+
};
|
|
923
929
|
cc_fd_wb_jira_quick_insert_experiment: {
|
|
924
930
|
defaultValue: boolean;
|
|
925
931
|
param: string;
|
package/package.json
CHANGED