@atlaskit/tmp-editor-statsig 20.0.0 → 20.1.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,16 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 20.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`d3b00bd311c9d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d3b00bd311c9d) -
|
|
8
|
+
Improves an edge case where users may face unexpected cursor jumps collaboratively
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
3
14
|
## 20.0.0
|
|
4
15
|
|
|
5
16
|
### Major Changes
|
|
@@ -1037,6 +1037,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1037
1037
|
param: 'isEnabled',
|
|
1038
1038
|
defaultValue: false
|
|
1039
1039
|
}),
|
|
1040
|
+
// Added 2026-02-04
|
|
1041
|
+
platform_editor_fix_cursor_flickering: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1042
|
+
productKeys: {
|
|
1043
|
+
confluence: 'platform_editor_fix_cursor_flickering'
|
|
1044
|
+
},
|
|
1045
|
+
param: 'isEnabled',
|
|
1046
|
+
defaultValue: false
|
|
1047
|
+
}),
|
|
1040
1048
|
// Added 2025-01-23
|
|
1041
1049
|
platform_editor_to_use_pmr_for_collab_edit_none_ic: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1042
1050
|
productKeys: {
|
|
@@ -1031,6 +1031,14 @@ export const editorExperimentsConfig = {
|
|
|
1031
1031
|
param: 'isEnabled',
|
|
1032
1032
|
defaultValue: false
|
|
1033
1033
|
}),
|
|
1034
|
+
// Added 2026-02-04
|
|
1035
|
+
platform_editor_fix_cursor_flickering: createBooleanExperiment({
|
|
1036
|
+
productKeys: {
|
|
1037
|
+
confluence: 'platform_editor_fix_cursor_flickering'
|
|
1038
|
+
},
|
|
1039
|
+
param: 'isEnabled',
|
|
1040
|
+
defaultValue: false
|
|
1041
|
+
}),
|
|
1034
1042
|
// Added 2025-01-23
|
|
1035
1043
|
platform_editor_to_use_pmr_for_collab_edit_none_ic: createBooleanExperiment({
|
|
1036
1044
|
productKeys: {
|
|
@@ -1031,6 +1031,14 @@ export var editorExperimentsConfig = {
|
|
|
1031
1031
|
param: 'isEnabled',
|
|
1032
1032
|
defaultValue: false
|
|
1033
1033
|
}),
|
|
1034
|
+
// Added 2026-02-04
|
|
1035
|
+
platform_editor_fix_cursor_flickering: createBooleanExperiment({
|
|
1036
|
+
productKeys: {
|
|
1037
|
+
confluence: 'platform_editor_fix_cursor_flickering'
|
|
1038
|
+
},
|
|
1039
|
+
param: 'isEnabled',
|
|
1040
|
+
defaultValue: false
|
|
1041
|
+
}),
|
|
1034
1042
|
// Added 2025-01-23
|
|
1035
1043
|
platform_editor_to_use_pmr_for_collab_edit_none_ic: createBooleanExperiment({
|
|
1036
1044
|
productKeys: {
|
|
@@ -915,6 +915,12 @@ export declare const editorExperimentsConfig: {
|
|
|
915
915
|
productKeys?: ProductKeys;
|
|
916
916
|
typeGuard: IsBooleanType;
|
|
917
917
|
};
|
|
918
|
+
platform_editor_fix_cursor_flickering: {
|
|
919
|
+
defaultValue: boolean;
|
|
920
|
+
param: string;
|
|
921
|
+
productKeys?: ProductKeys;
|
|
922
|
+
typeGuard: IsBooleanType;
|
|
923
|
+
};
|
|
918
924
|
platform_editor_send_client_platform_header: {
|
|
919
925
|
defaultValue: boolean;
|
|
920
926
|
param: string;
|
|
@@ -915,6 +915,12 @@ export declare const editorExperimentsConfig: {
|
|
|
915
915
|
productKeys?: ProductKeys;
|
|
916
916
|
typeGuard: IsBooleanType;
|
|
917
917
|
};
|
|
918
|
+
platform_editor_fix_cursor_flickering: {
|
|
919
|
+
defaultValue: boolean;
|
|
920
|
+
param: string;
|
|
921
|
+
productKeys?: ProductKeys;
|
|
922
|
+
typeGuard: IsBooleanType;
|
|
923
|
+
};
|
|
918
924
|
platform_editor_send_client_platform_header: {
|
|
919
925
|
defaultValue: boolean;
|
|
920
926
|
param: string;
|
package/package.json
CHANGED