@atlaskit/tmp-editor-statsig 14.6.1 → 14.7.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
|
+
## 14.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`2bab449c372a5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2bab449c372a5) -
|
|
8
|
+
sync annotations state when delete and undo
|
|
9
|
+
|
|
3
10
|
## 14.6.1
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -121,6 +121,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
121
121
|
param: 'isEnabled',
|
|
122
122
|
defaultValue: false
|
|
123
123
|
}),
|
|
124
|
+
// Added 2025-11-20
|
|
125
|
+
platform_editor_annotations_sync_on_docchange: (0, _experimentBuilders.createBooleanExperiment)({
|
|
126
|
+
productKeys: {
|
|
127
|
+
confluence: 'platform_editor_annotations_sync_on_docchange'
|
|
128
|
+
},
|
|
129
|
+
param: 'isEnabled',
|
|
130
|
+
defaultValue: false
|
|
131
|
+
}),
|
|
124
132
|
// Added 2025-05-27
|
|
125
133
|
platform_editor_reduce_noisy_steps_ncs: (0, _experimentBuilders.createBooleanExperiment)({
|
|
126
134
|
productKeys: {
|
|
@@ -115,6 +115,14 @@ export const editorExperimentsConfig = {
|
|
|
115
115
|
param: 'isEnabled',
|
|
116
116
|
defaultValue: false
|
|
117
117
|
}),
|
|
118
|
+
// Added 2025-11-20
|
|
119
|
+
platform_editor_annotations_sync_on_docchange: createBooleanExperiment({
|
|
120
|
+
productKeys: {
|
|
121
|
+
confluence: 'platform_editor_annotations_sync_on_docchange'
|
|
122
|
+
},
|
|
123
|
+
param: 'isEnabled',
|
|
124
|
+
defaultValue: false
|
|
125
|
+
}),
|
|
118
126
|
// Added 2025-05-27
|
|
119
127
|
platform_editor_reduce_noisy_steps_ncs: createBooleanExperiment({
|
|
120
128
|
productKeys: {
|
|
@@ -115,6 +115,14 @@ export var editorExperimentsConfig = {
|
|
|
115
115
|
param: 'isEnabled',
|
|
116
116
|
defaultValue: false
|
|
117
117
|
}),
|
|
118
|
+
// Added 2025-11-20
|
|
119
|
+
platform_editor_annotations_sync_on_docchange: createBooleanExperiment({
|
|
120
|
+
productKeys: {
|
|
121
|
+
confluence: 'platform_editor_annotations_sync_on_docchange'
|
|
122
|
+
},
|
|
123
|
+
param: 'isEnabled',
|
|
124
|
+
defaultValue: false
|
|
125
|
+
}),
|
|
118
126
|
// Added 2025-05-27
|
|
119
127
|
platform_editor_reduce_noisy_steps_ncs: createBooleanExperiment({
|
|
120
128
|
productKeys: {
|
|
@@ -255,6 +255,12 @@ export declare const editorExperimentsConfig: {
|
|
|
255
255
|
typeGuard: (value: unknown) => value is 'control' | 'test';
|
|
256
256
|
values: ('control' | 'test')[];
|
|
257
257
|
};
|
|
258
|
+
platform_editor_annotations_sync_on_docchange: {
|
|
259
|
+
defaultValue: boolean;
|
|
260
|
+
param: string;
|
|
261
|
+
productKeys?: ProductKeys;
|
|
262
|
+
typeGuard: IsBooleanType;
|
|
263
|
+
};
|
|
258
264
|
platform_editor_august_a11y: {
|
|
259
265
|
defaultValue: boolean;
|
|
260
266
|
param: string;
|
|
@@ -255,6 +255,12 @@ export declare const editorExperimentsConfig: {
|
|
|
255
255
|
typeGuard: (value: unknown) => value is 'control' | 'test';
|
|
256
256
|
values: ('control' | 'test')[];
|
|
257
257
|
};
|
|
258
|
+
platform_editor_annotations_sync_on_docchange: {
|
|
259
|
+
defaultValue: boolean;
|
|
260
|
+
param: string;
|
|
261
|
+
productKeys?: ProductKeys;
|
|
262
|
+
typeGuard: IsBooleanType;
|
|
263
|
+
};
|
|
258
264
|
platform_editor_august_a11y: {
|
|
259
265
|
defaultValue: boolean;
|
|
260
266
|
param: string;
|
package/package.json
CHANGED