@atlaskit/tmp-editor-statsig 176.0.0 → 177.0.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,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 177.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`20b31a55e5eb3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/20b31a55e5eb3) -
|
|
8
|
+
Clean up experiment `platform_editor_abort_ufo_on_user_interaction`
|
|
9
|
+
|
|
3
10
|
## 176.0.0
|
|
4
11
|
|
|
5
12
|
### Major Changes
|
|
@@ -722,14 +722,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
722
722
|
values: ['control', 'shadow_compare', 'live_cc_smarts'],
|
|
723
723
|
defaultValue: 'control'
|
|
724
724
|
}),
|
|
725
|
-
// Added 2026-03-05
|
|
726
|
-
platform_editor_abort_ufo_on_user_interaction: (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
727
|
-
productKeys: {
|
|
728
|
-
confluence: 'platform_editor_abort_ufo_on_user_interaction'
|
|
729
|
-
},
|
|
730
|
-
param: 'isEnabled',
|
|
731
|
-
defaultValue: false
|
|
732
|
-
}),
|
|
733
725
|
// Added 2025-10-10
|
|
734
726
|
platform_use_llm_space_recommendations: (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
735
727
|
productKeys: {
|
|
@@ -716,14 +716,6 @@ export const editorExperimentsConfig = {
|
|
|
716
716
|
values: ['control', 'shadow_compare', 'live_cc_smarts'],
|
|
717
717
|
defaultValue: 'control'
|
|
718
718
|
}),
|
|
719
|
-
// Added 2026-03-05
|
|
720
|
-
platform_editor_abort_ufo_on_user_interaction: createBooleanExperiment({
|
|
721
|
-
productKeys: {
|
|
722
|
-
confluence: 'platform_editor_abort_ufo_on_user_interaction'
|
|
723
|
-
},
|
|
724
|
-
param: 'isEnabled',
|
|
725
|
-
defaultValue: false
|
|
726
|
-
}),
|
|
727
719
|
// Added 2025-10-10
|
|
728
720
|
platform_use_llm_space_recommendations: createBooleanExperiment({
|
|
729
721
|
productKeys: {
|
|
@@ -716,14 +716,6 @@ export var editorExperimentsConfig = {
|
|
|
716
716
|
values: ['control', 'shadow_compare', 'live_cc_smarts'],
|
|
717
717
|
defaultValue: 'control'
|
|
718
718
|
}),
|
|
719
|
-
// Added 2026-03-05
|
|
720
|
-
platform_editor_abort_ufo_on_user_interaction: createBooleanExperiment({
|
|
721
|
-
productKeys: {
|
|
722
|
-
confluence: 'platform_editor_abort_ufo_on_user_interaction'
|
|
723
|
-
},
|
|
724
|
-
param: 'isEnabled',
|
|
725
|
-
defaultValue: false
|
|
726
|
-
}),
|
|
727
719
|
// Added 2025-10-10
|
|
728
720
|
platform_use_llm_space_recommendations: createBooleanExperiment({
|
|
729
721
|
productKeys: {
|
|
@@ -278,12 +278,6 @@ export declare const editorExperimentsConfig: {
|
|
|
278
278
|
productKeys?: ProductKeys;
|
|
279
279
|
typeGuard: IsBooleanType;
|
|
280
280
|
};
|
|
281
|
-
platform_editor_abort_ufo_on_user_interaction: {
|
|
282
|
-
defaultValue: boolean;
|
|
283
|
-
param: string;
|
|
284
|
-
productKeys?: ProductKeys;
|
|
285
|
-
typeGuard: IsBooleanType;
|
|
286
|
-
};
|
|
287
281
|
platform_editor_ai_edit_response_in_preview: {
|
|
288
282
|
defaultValue: boolean;
|
|
289
283
|
param: string;
|
package/package.json
CHANGED