@atlaskit/tmp-editor-statsig 17.10.0 → 17.10.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,14 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 17.10.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`cbd94bd913e71`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cbd94bd913e71) -
|
|
8
|
+
[ux] EDITOR-4514 fix gap cursor positioning after paste by adding request animation frame to wait
|
|
9
|
+
for new content to be inserted into dom
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
3
12
|
## 17.10.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
|
@@ -1294,5 +1294,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1294
1294
|
},
|
|
1295
1295
|
param: 'isEnabled',
|
|
1296
1296
|
defaultValue: false
|
|
1297
|
+
}),
|
|
1298
|
+
// Added 2026-02-02
|
|
1299
|
+
platform_editor_fix_gapcursor_on_paste: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1300
|
+
productKeys: {
|
|
1301
|
+
confluence: 'platform_editor_fix_gapcursor_on_paste',
|
|
1302
|
+
jira: 'platform_editor_fix_gapcursor_on_paste'
|
|
1303
|
+
},
|
|
1304
|
+
param: 'isEnabled',
|
|
1305
|
+
defaultValue: false
|
|
1297
1306
|
})
|
|
1298
1307
|
};
|
|
@@ -1288,5 +1288,14 @@ export const editorExperimentsConfig = {
|
|
|
1288
1288
|
},
|
|
1289
1289
|
param: 'isEnabled',
|
|
1290
1290
|
defaultValue: false
|
|
1291
|
+
}),
|
|
1292
|
+
// Added 2026-02-02
|
|
1293
|
+
platform_editor_fix_gapcursor_on_paste: createBooleanExperiment({
|
|
1294
|
+
productKeys: {
|
|
1295
|
+
confluence: 'platform_editor_fix_gapcursor_on_paste',
|
|
1296
|
+
jira: 'platform_editor_fix_gapcursor_on_paste'
|
|
1297
|
+
},
|
|
1298
|
+
param: 'isEnabled',
|
|
1299
|
+
defaultValue: false
|
|
1291
1300
|
})
|
|
1292
1301
|
};
|
|
@@ -1288,5 +1288,14 @@ export var editorExperimentsConfig = {
|
|
|
1288
1288
|
},
|
|
1289
1289
|
param: 'isEnabled',
|
|
1290
1290
|
defaultValue: false
|
|
1291
|
+
}),
|
|
1292
|
+
// Added 2026-02-02
|
|
1293
|
+
platform_editor_fix_gapcursor_on_paste: createBooleanExperiment({
|
|
1294
|
+
productKeys: {
|
|
1295
|
+
confluence: 'platform_editor_fix_gapcursor_on_paste',
|
|
1296
|
+
jira: 'platform_editor_fix_gapcursor_on_paste'
|
|
1297
|
+
},
|
|
1298
|
+
param: 'isEnabled',
|
|
1299
|
+
defaultValue: false
|
|
1291
1300
|
})
|
|
1292
1301
|
};
|
|
@@ -958,5 +958,11 @@ export declare const editorExperimentsConfig: {
|
|
|
958
958
|
productKeys?: ProductKeys;
|
|
959
959
|
typeGuard: IsBooleanType;
|
|
960
960
|
};
|
|
961
|
+
platform_editor_fix_gapcursor_on_paste: {
|
|
962
|
+
defaultValue: boolean;
|
|
963
|
+
param: string;
|
|
964
|
+
productKeys?: ProductKeys;
|
|
965
|
+
typeGuard: IsBooleanType;
|
|
966
|
+
};
|
|
961
967
|
};
|
|
962
968
|
export {};
|
|
@@ -958,5 +958,11 @@ export declare const editorExperimentsConfig: {
|
|
|
958
958
|
productKeys?: ProductKeys;
|
|
959
959
|
typeGuard: IsBooleanType;
|
|
960
960
|
};
|
|
961
|
+
platform_editor_fix_gapcursor_on_paste: {
|
|
962
|
+
defaultValue: boolean;
|
|
963
|
+
param: string;
|
|
964
|
+
productKeys?: ProductKeys;
|
|
965
|
+
typeGuard: IsBooleanType;
|
|
966
|
+
};
|
|
961
967
|
};
|
|
962
968
|
export {};
|
package/package.json
CHANGED