@atlaskit/tmp-editor-statsig 1.3.0 → 1.3.1
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
|
+
## 1.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#133748](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/133748)
|
|
8
|
+
[`3d90a431f7ed8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/3d90a431f7ed8) -
|
|
9
|
+
Add experiment for input latency fix
|
|
10
|
+
|
|
3
11
|
## 1.3.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -66,5 +66,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
66
66
|
param: 'isEnabled',
|
|
67
67
|
typeGuard: isBoolean,
|
|
68
68
|
defaultValue: false
|
|
69
|
+
},
|
|
70
|
+
// Added 2024-08-27
|
|
71
|
+
'dnd-input-performance-optimisation': {
|
|
72
|
+
productKeys: {
|
|
73
|
+
confluence: 'platform_editor_dnd_input_performance_optimisation'
|
|
74
|
+
},
|
|
75
|
+
param: 'isEnabled',
|
|
76
|
+
typeGuard: isBoolean,
|
|
77
|
+
defaultValue: false
|
|
69
78
|
}
|
|
70
79
|
};
|
|
@@ -60,5 +60,14 @@ export const editorExperimentsConfig = {
|
|
|
60
60
|
param: 'isEnabled',
|
|
61
61
|
typeGuard: isBoolean,
|
|
62
62
|
defaultValue: false
|
|
63
|
+
},
|
|
64
|
+
// Added 2024-08-27
|
|
65
|
+
'dnd-input-performance-optimisation': {
|
|
66
|
+
productKeys: {
|
|
67
|
+
confluence: 'platform_editor_dnd_input_performance_optimisation'
|
|
68
|
+
},
|
|
69
|
+
param: 'isEnabled',
|
|
70
|
+
typeGuard: isBoolean,
|
|
71
|
+
defaultValue: false
|
|
63
72
|
}
|
|
64
73
|
};
|
|
@@ -60,5 +60,14 @@ export var editorExperimentsConfig = {
|
|
|
60
60
|
param: 'isEnabled',
|
|
61
61
|
typeGuard: isBoolean,
|
|
62
62
|
defaultValue: false
|
|
63
|
+
},
|
|
64
|
+
// Added 2024-08-27
|
|
65
|
+
'dnd-input-performance-optimisation': {
|
|
66
|
+
productKeys: {
|
|
67
|
+
confluence: 'platform_editor_dnd_input_performance_optimisation'
|
|
68
|
+
},
|
|
69
|
+
param: 'isEnabled',
|
|
70
|
+
typeGuard: isBoolean,
|
|
71
|
+
defaultValue: false
|
|
63
72
|
}
|
|
64
73
|
};
|
|
@@ -47,5 +47,13 @@ export declare const editorExperimentsConfig: {
|
|
|
47
47
|
typeGuard: typeof isBoolean;
|
|
48
48
|
defaultValue: boolean;
|
|
49
49
|
};
|
|
50
|
+
'dnd-input-performance-optimisation': {
|
|
51
|
+
productKeys: {
|
|
52
|
+
confluence: string;
|
|
53
|
+
};
|
|
54
|
+
param: string;
|
|
55
|
+
typeGuard: typeof isBoolean;
|
|
56
|
+
defaultValue: boolean;
|
|
57
|
+
};
|
|
50
58
|
};
|
|
51
59
|
export {};
|
|
@@ -47,5 +47,13 @@ export declare const editorExperimentsConfig: {
|
|
|
47
47
|
typeGuard: typeof isBoolean;
|
|
48
48
|
defaultValue: boolean;
|
|
49
49
|
};
|
|
50
|
+
'dnd-input-performance-optimisation': {
|
|
51
|
+
productKeys: {
|
|
52
|
+
confluence: string;
|
|
53
|
+
};
|
|
54
|
+
param: string;
|
|
55
|
+
typeGuard: typeof isBoolean;
|
|
56
|
+
defaultValue: boolean;
|
|
57
|
+
};
|
|
50
58
|
};
|
|
51
59
|
export {};
|
package/package.json
CHANGED