@atlaskit/tmp-editor-statsig 40.5.0 → 40.6.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,15 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 40.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`244ca4ec80372`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/244ca4ec80372) -
8
+ Add platform_editor_chromeless_expand_fix experiment
9
+ - [`029e47b456b89`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/029e47b456b89) -
10
+ Fixing a bug where we expect the selection toolbar to show when selecting text and releasing on
11
+ the block controls handle.
12
+
3
13
  ## 40.5.0
4
14
 
5
15
  ### Minor Changes
@@ -1766,6 +1766,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1766
1766
  param: 'isEnabled',
1767
1767
  defaultValue: false
1768
1768
  }),
1769
+ // Added 2026-03-20
1770
+ platform_editor_chromeless_expand_fix: (0, _experimentBuilders.createBooleanExperiment)({
1771
+ productKeys: {
1772
+ confluence: 'platform_editor_chromeless_expand_fix',
1773
+ jira: 'platform_editor_chromeless_expand_fix'
1774
+ },
1775
+ param: 'isEnabled',
1776
+ defaultValue: false
1777
+ }),
1769
1778
  // Added 2026-03-13
1770
1779
  platform_editor_misaligned_ai_screens_firefox_fix: (0, _experimentBuilders.createBooleanExperiment)({
1771
1780
  productKeys: {
@@ -1782,5 +1791,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1782
1791
  },
1783
1792
  param: 'isEnabled',
1784
1793
  defaultValue: false
1794
+ }),
1795
+ // Added 2026-03-18
1796
+ platform_editor_selection_toolbar_block_handle: (0, _experimentBuilders.createBooleanExperiment)({
1797
+ productKeys: {
1798
+ confluence: 'platform_editor_selection_toolbar_block_handle'
1799
+ },
1800
+ param: 'isEnabled',
1801
+ defaultValue: false
1785
1802
  })
1786
1803
  };
@@ -1760,6 +1760,15 @@ export const editorExperimentsConfig = {
1760
1760
  param: 'isEnabled',
1761
1761
  defaultValue: false
1762
1762
  }),
1763
+ // Added 2026-03-20
1764
+ platform_editor_chromeless_expand_fix: createBooleanExperiment({
1765
+ productKeys: {
1766
+ confluence: 'platform_editor_chromeless_expand_fix',
1767
+ jira: 'platform_editor_chromeless_expand_fix'
1768
+ },
1769
+ param: 'isEnabled',
1770
+ defaultValue: false
1771
+ }),
1763
1772
  // Added 2026-03-13
1764
1773
  platform_editor_misaligned_ai_screens_firefox_fix: createBooleanExperiment({
1765
1774
  productKeys: {
@@ -1776,5 +1785,13 @@ export const editorExperimentsConfig = {
1776
1785
  },
1777
1786
  param: 'isEnabled',
1778
1787
  defaultValue: false
1788
+ }),
1789
+ // Added 2026-03-18
1790
+ platform_editor_selection_toolbar_block_handle: createBooleanExperiment({
1791
+ productKeys: {
1792
+ confluence: 'platform_editor_selection_toolbar_block_handle'
1793
+ },
1794
+ param: 'isEnabled',
1795
+ defaultValue: false
1779
1796
  })
1780
1797
  };
@@ -1760,6 +1760,15 @@ export var editorExperimentsConfig = {
1760
1760
  param: 'isEnabled',
1761
1761
  defaultValue: false
1762
1762
  }),
1763
+ // Added 2026-03-20
1764
+ platform_editor_chromeless_expand_fix: createBooleanExperiment({
1765
+ productKeys: {
1766
+ confluence: 'platform_editor_chromeless_expand_fix',
1767
+ jira: 'platform_editor_chromeless_expand_fix'
1768
+ },
1769
+ param: 'isEnabled',
1770
+ defaultValue: false
1771
+ }),
1763
1772
  // Added 2026-03-13
1764
1773
  platform_editor_misaligned_ai_screens_firefox_fix: createBooleanExperiment({
1765
1774
  productKeys: {
@@ -1776,5 +1785,13 @@ export var editorExperimentsConfig = {
1776
1785
  },
1777
1786
  param: 'isEnabled',
1778
1787
  defaultValue: false
1788
+ }),
1789
+ // Added 2026-03-18
1790
+ platform_editor_selection_toolbar_block_handle: createBooleanExperiment({
1791
+ productKeys: {
1792
+ confluence: 'platform_editor_selection_toolbar_block_handle'
1793
+ },
1794
+ param: 'isEnabled',
1795
+ defaultValue: false
1779
1796
  })
1780
1797
  };
@@ -1290,6 +1290,12 @@ export declare const editorExperimentsConfig: {
1290
1290
  productKeys?: ProductKeys;
1291
1291
  typeGuard: IsBooleanType;
1292
1292
  };
1293
+ platform_editor_chromeless_expand_fix: {
1294
+ defaultValue: boolean;
1295
+ param: string;
1296
+ productKeys?: ProductKeys;
1297
+ typeGuard: IsBooleanType;
1298
+ };
1293
1299
  platform_editor_misaligned_ai_screens_firefox_fix: {
1294
1300
  defaultValue: boolean;
1295
1301
  param: string;
@@ -1308,5 +1314,11 @@ export declare const editorExperimentsConfig: {
1308
1314
  productKeys?: ProductKeys;
1309
1315
  typeGuard: IsBooleanType;
1310
1316
  };
1317
+ platform_editor_selection_toolbar_block_handle: {
1318
+ defaultValue: boolean;
1319
+ param: string;
1320
+ productKeys?: ProductKeys;
1321
+ typeGuard: IsBooleanType;
1322
+ };
1311
1323
  };
1312
1324
  export {};
@@ -1290,6 +1290,12 @@ export declare const editorExperimentsConfig: {
1290
1290
  productKeys?: ProductKeys;
1291
1291
  typeGuard: IsBooleanType;
1292
1292
  };
1293
+ platform_editor_chromeless_expand_fix: {
1294
+ defaultValue: boolean;
1295
+ param: string;
1296
+ productKeys?: ProductKeys;
1297
+ typeGuard: IsBooleanType;
1298
+ };
1293
1299
  platform_editor_misaligned_ai_screens_firefox_fix: {
1294
1300
  defaultValue: boolean;
1295
1301
  param: string;
@@ -1308,5 +1314,11 @@ export declare const editorExperimentsConfig: {
1308
1314
  productKeys?: ProductKeys;
1309
1315
  typeGuard: IsBooleanType;
1310
1316
  };
1317
+ platform_editor_selection_toolbar_block_handle: {
1318
+ defaultValue: boolean;
1319
+ param: string;
1320
+ productKeys?: ProductKeys;
1321
+ typeGuard: IsBooleanType;
1322
+ };
1311
1323
  };
1312
1324
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "40.5.0",
3
+ "version": "40.6.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",