@atlaskit/tmp-editor-statsig 126.0.0 → 126.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,14 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 126.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`d3536d2e15575`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d3536d2e15575) -
|
|
8
|
+
Fix inline comment anchoring to wrong text when a new selection is made while a draft is active.
|
|
9
|
+
Clears stale hover/selection draft position before promoting new selection, and adds missing deps
|
|
10
|
+
to useCallback arrays.
|
|
11
|
+
|
|
3
12
|
## 126.0.0
|
|
4
13
|
|
|
5
14
|
### Major Changes
|
|
@@ -202,6 +202,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
202
202
|
param: 'isEnabled',
|
|
203
203
|
defaultValue: false
|
|
204
204
|
}),
|
|
205
|
+
// Added 2026-07-08
|
|
206
|
+
confluence_inline_comments_fix_stale_selection: (0, _experimentBuilders.createBooleanExperiment)({
|
|
207
|
+
productKeys: {
|
|
208
|
+
confluence: 'confluence_inline_comments_fix_stale_selection'
|
|
209
|
+
},
|
|
210
|
+
param: 'isEnabled',
|
|
211
|
+
defaultValue: false
|
|
212
|
+
}),
|
|
205
213
|
// Added 2026-06-01
|
|
206
214
|
rovo_remix_experience_context: (0, _experimentBuilders.createBooleanExperiment)({
|
|
207
215
|
productKeys: {
|
|
@@ -196,6 +196,14 @@ export const editorExperimentsConfig = {
|
|
|
196
196
|
param: 'isEnabled',
|
|
197
197
|
defaultValue: false
|
|
198
198
|
}),
|
|
199
|
+
// Added 2026-07-08
|
|
200
|
+
confluence_inline_comments_fix_stale_selection: createBooleanExperiment({
|
|
201
|
+
productKeys: {
|
|
202
|
+
confluence: 'confluence_inline_comments_fix_stale_selection'
|
|
203
|
+
},
|
|
204
|
+
param: 'isEnabled',
|
|
205
|
+
defaultValue: false
|
|
206
|
+
}),
|
|
199
207
|
// Added 2026-06-01
|
|
200
208
|
rovo_remix_experience_context: createBooleanExperiment({
|
|
201
209
|
productKeys: {
|
|
@@ -196,6 +196,14 @@ export var editorExperimentsConfig = {
|
|
|
196
196
|
param: 'isEnabled',
|
|
197
197
|
defaultValue: false
|
|
198
198
|
}),
|
|
199
|
+
// Added 2026-07-08
|
|
200
|
+
confluence_inline_comments_fix_stale_selection: createBooleanExperiment({
|
|
201
|
+
productKeys: {
|
|
202
|
+
confluence: 'confluence_inline_comments_fix_stale_selection'
|
|
203
|
+
},
|
|
204
|
+
param: 'isEnabled',
|
|
205
|
+
defaultValue: false
|
|
206
|
+
}),
|
|
199
207
|
// Added 2026-06-01
|
|
200
208
|
rovo_remix_experience_context: createBooleanExperiment({
|
|
201
209
|
productKeys: {
|
|
@@ -21,6 +21,12 @@ export type ExperimentDefaultValue<ExperimentName extends keyof EditorExperiment
|
|
|
21
21
|
* existing experiments.
|
|
22
22
|
*/
|
|
23
23
|
export declare const editorExperimentsConfig: {
|
|
24
|
+
confluence_inline_comments_fix_stale_selection: {
|
|
25
|
+
defaultValue: boolean;
|
|
26
|
+
param: string;
|
|
27
|
+
productKeys?: ProductKeys;
|
|
28
|
+
typeGuard: IsBooleanType;
|
|
29
|
+
};
|
|
24
30
|
platform_editor_first_node_fix: {
|
|
25
31
|
defaultValue: boolean;
|
|
26
32
|
param: string;
|
package/package.json
CHANGED