@atlaskit/tmp-editor-statsig 40.0.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,20 @@
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
+
11
+ ## 40.1.0
12
+
13
+ ### Minor Changes
14
+
15
+ - [`be5f64b1c1011`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/be5f64b1c1011) -
16
+ [ux] Patch for image editor tool bar border drop downUI size
17
+
3
18
  ## 40.0.0
4
19
 
5
20
  ### Major Changes
@@ -1708,6 +1708,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1708
1708
  defaultValue: false
1709
1709
  }),
1710
1710
  // Added 2026-03-10
1711
+ platform_editor_fix_media_toolbar_border_dropdown: (0, _experimentBuilders.createBooleanExperiment)({
1712
+ productKeys: {
1713
+ confluence: 'platform_editor_fix_media_toolbar_border_dropdown'
1714
+ },
1715
+ param: 'isEnabled',
1716
+ defaultValue: false
1717
+ }),
1718
+ // Added 2026-03-10
1711
1719
  platform_editor_analyse_table_with_merged_cells: (0, _experimentBuilders.createBooleanExperiment)({
1712
1720
  productKeys: {
1713
1721
  confluence: 'platform_editor_analyse_table_with_merged_cells'
@@ -1750,6 +1758,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1750
1758
  defaultValue: false
1751
1759
  }),
1752
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
1753
1769
  platform_editor_misaligned_ai_screens_firefox_fix: (0, _experimentBuilders.createBooleanExperiment)({
1754
1770
  productKeys: {
1755
1771
  confluence: 'platform_editor_misaligned_ai_screens_firefox_fix',
@@ -1702,6 +1702,14 @@ export const editorExperimentsConfig = {
1702
1702
  defaultValue: false
1703
1703
  }),
1704
1704
  // Added 2026-03-10
1705
+ platform_editor_fix_media_toolbar_border_dropdown: createBooleanExperiment({
1706
+ productKeys: {
1707
+ confluence: 'platform_editor_fix_media_toolbar_border_dropdown'
1708
+ },
1709
+ param: 'isEnabled',
1710
+ defaultValue: false
1711
+ }),
1712
+ // Added 2026-03-10
1705
1713
  platform_editor_analyse_table_with_merged_cells: createBooleanExperiment({
1706
1714
  productKeys: {
1707
1715
  confluence: 'platform_editor_analyse_table_with_merged_cells'
@@ -1744,6 +1752,14 @@ export const editorExperimentsConfig = {
1744
1752
  defaultValue: false
1745
1753
  }),
1746
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
1747
1763
  platform_editor_misaligned_ai_screens_firefox_fix: createBooleanExperiment({
1748
1764
  productKeys: {
1749
1765
  confluence: 'platform_editor_misaligned_ai_screens_firefox_fix',
@@ -1702,6 +1702,14 @@ export var editorExperimentsConfig = {
1702
1702
  defaultValue: false
1703
1703
  }),
1704
1704
  // Added 2026-03-10
1705
+ platform_editor_fix_media_toolbar_border_dropdown: createBooleanExperiment({
1706
+ productKeys: {
1707
+ confluence: 'platform_editor_fix_media_toolbar_border_dropdown'
1708
+ },
1709
+ param: 'isEnabled',
1710
+ defaultValue: false
1711
+ }),
1712
+ // Added 2026-03-10
1705
1713
  platform_editor_analyse_table_with_merged_cells: createBooleanExperiment({
1706
1714
  productKeys: {
1707
1715
  confluence: 'platform_editor_analyse_table_with_merged_cells'
@@ -1744,6 +1752,14 @@ export var editorExperimentsConfig = {
1744
1752
  defaultValue: false
1745
1753
  }),
1746
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
1747
1763
  platform_editor_misaligned_ai_screens_firefox_fix: createBooleanExperiment({
1748
1764
  productKeys: {
1749
1765
  confluence: 'platform_editor_misaligned_ai_screens_firefox_fix',
@@ -1254,6 +1254,12 @@ export declare const editorExperimentsConfig: {
1254
1254
  productKeys?: ProductKeys;
1255
1255
  typeGuard: IsBooleanType;
1256
1256
  };
1257
+ platform_editor_fix_media_toolbar_border_dropdown: {
1258
+ defaultValue: boolean;
1259
+ param: string;
1260
+ productKeys?: ProductKeys;
1261
+ typeGuard: IsBooleanType;
1262
+ };
1257
1263
  platform_editor_analyse_table_with_merged_cells: {
1258
1264
  defaultValue: boolean;
1259
1265
  param: string;
@@ -1278,6 +1284,12 @@ export declare const editorExperimentsConfig: {
1278
1284
  productKeys?: ProductKeys;
1279
1285
  typeGuard: IsBooleanType;
1280
1286
  };
1287
+ platform_editor_editor_centre_content_on_find: {
1288
+ defaultValue: boolean;
1289
+ param: string;
1290
+ productKeys?: ProductKeys;
1291
+ typeGuard: IsBooleanType;
1292
+ };
1281
1293
  platform_editor_misaligned_ai_screens_firefox_fix: {
1282
1294
  defaultValue: boolean;
1283
1295
  param: string;
@@ -1254,6 +1254,12 @@ export declare const editorExperimentsConfig: {
1254
1254
  productKeys?: ProductKeys;
1255
1255
  typeGuard: IsBooleanType;
1256
1256
  };
1257
+ platform_editor_fix_media_toolbar_border_dropdown: {
1258
+ defaultValue: boolean;
1259
+ param: string;
1260
+ productKeys?: ProductKeys;
1261
+ typeGuard: IsBooleanType;
1262
+ };
1257
1263
  platform_editor_analyse_table_with_merged_cells: {
1258
1264
  defaultValue: boolean;
1259
1265
  param: string;
@@ -1278,6 +1284,12 @@ export declare const editorExperimentsConfig: {
1278
1284
  productKeys?: ProductKeys;
1279
1285
  typeGuard: IsBooleanType;
1280
1286
  };
1287
+ platform_editor_editor_centre_content_on_find: {
1288
+ defaultValue: boolean;
1289
+ param: string;
1290
+ productKeys?: ProductKeys;
1291
+ typeGuard: IsBooleanType;
1292
+ };
1281
1293
  platform_editor_misaligned_ai_screens_firefox_fix: {
1282
1294
  defaultValue: boolean;
1283
1295
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "40.0.0",
3
+ "version": "40.2.0",
4
4
  "description": "Temp plugin to ease use of statsig feature flags until platform feature flags are available",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",