@atlaskit/tmp-editor-statsig 40.1.0 → 40.2.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,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 40.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`d7dec29b99a58`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d7dec29b99a58) -
|
|
8
|
+
[ux] [EDITOR-5118] his change modifies scrolling behaviour to centre selected content when using
|
|
9
|
+
find and replace, behind exp platform_editor_editor_centre_content_on_find
|
|
10
|
+
|
|
3
11
|
## 40.1.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -1758,6 +1758,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1758
1758
|
defaultValue: false
|
|
1759
1759
|
}),
|
|
1760
1760
|
// Added 2026-03-13
|
|
1761
|
+
platform_editor_editor_centre_content_on_find: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1762
|
+
productKeys: {
|
|
1763
|
+
confluence: 'platform_editor_editor_centre_content_on_find'
|
|
1764
|
+
},
|
|
1765
|
+
param: 'isEnabled',
|
|
1766
|
+
defaultValue: false
|
|
1767
|
+
}),
|
|
1768
|
+
// Added 2026-03-13
|
|
1761
1769
|
platform_editor_misaligned_ai_screens_firefox_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1762
1770
|
productKeys: {
|
|
1763
1771
|
confluence: 'platform_editor_misaligned_ai_screens_firefox_fix',
|
|
@@ -1752,6 +1752,14 @@ export const editorExperimentsConfig = {
|
|
|
1752
1752
|
defaultValue: false
|
|
1753
1753
|
}),
|
|
1754
1754
|
// Added 2026-03-13
|
|
1755
|
+
platform_editor_editor_centre_content_on_find: createBooleanExperiment({
|
|
1756
|
+
productKeys: {
|
|
1757
|
+
confluence: 'platform_editor_editor_centre_content_on_find'
|
|
1758
|
+
},
|
|
1759
|
+
param: 'isEnabled',
|
|
1760
|
+
defaultValue: false
|
|
1761
|
+
}),
|
|
1762
|
+
// Added 2026-03-13
|
|
1755
1763
|
platform_editor_misaligned_ai_screens_firefox_fix: createBooleanExperiment({
|
|
1756
1764
|
productKeys: {
|
|
1757
1765
|
confluence: 'platform_editor_misaligned_ai_screens_firefox_fix',
|
|
@@ -1752,6 +1752,14 @@ export var editorExperimentsConfig = {
|
|
|
1752
1752
|
defaultValue: false
|
|
1753
1753
|
}),
|
|
1754
1754
|
// Added 2026-03-13
|
|
1755
|
+
platform_editor_editor_centre_content_on_find: createBooleanExperiment({
|
|
1756
|
+
productKeys: {
|
|
1757
|
+
confluence: 'platform_editor_editor_centre_content_on_find'
|
|
1758
|
+
},
|
|
1759
|
+
param: 'isEnabled',
|
|
1760
|
+
defaultValue: false
|
|
1761
|
+
}),
|
|
1762
|
+
// Added 2026-03-13
|
|
1755
1763
|
platform_editor_misaligned_ai_screens_firefox_fix: createBooleanExperiment({
|
|
1756
1764
|
productKeys: {
|
|
1757
1765
|
confluence: 'platform_editor_misaligned_ai_screens_firefox_fix',
|
|
@@ -1284,6 +1284,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1284
1284
|
productKeys?: ProductKeys;
|
|
1285
1285
|
typeGuard: IsBooleanType;
|
|
1286
1286
|
};
|
|
1287
|
+
platform_editor_editor_centre_content_on_find: {
|
|
1288
|
+
defaultValue: boolean;
|
|
1289
|
+
param: string;
|
|
1290
|
+
productKeys?: ProductKeys;
|
|
1291
|
+
typeGuard: IsBooleanType;
|
|
1292
|
+
};
|
|
1287
1293
|
platform_editor_misaligned_ai_screens_firefox_fix: {
|
|
1288
1294
|
defaultValue: boolean;
|
|
1289
1295
|
param: string;
|
|
@@ -1284,6 +1284,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1284
1284
|
productKeys?: ProductKeys;
|
|
1285
1285
|
typeGuard: IsBooleanType;
|
|
1286
1286
|
};
|
|
1287
|
+
platform_editor_editor_centre_content_on_find: {
|
|
1288
|
+
defaultValue: boolean;
|
|
1289
|
+
param: string;
|
|
1290
|
+
productKeys?: ProductKeys;
|
|
1291
|
+
typeGuard: IsBooleanType;
|
|
1292
|
+
};
|
|
1287
1293
|
platform_editor_misaligned_ai_screens_firefox_fix: {
|
|
1288
1294
|
defaultValue: boolean;
|
|
1289
1295
|
param: string;
|
package/package.json
CHANGED