@atlaskit/tmp-editor-statsig 74.7.0 → 74.8.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,14 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 74.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`429ab0e83dda1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/429ab0e83dda1) -
8
+ [NO-ISSUE] Add platform_editor_paste_actions_menu_v2 as experiment
9
+ - [`20c2faf5c3ca8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/20c2faf5c3ca8) -
10
+ CONFCLOUD-84107 add override for user preference
11
+
3
12
  ## 74.7.0
4
13
 
5
14
  ### Minor Changes
@@ -14,7 +14,8 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
14
14
  cc_editor_insm_outlier_events: 'test',
15
15
  platform_editor_table_sticky_header_improvements: 'test_with_overflow',
16
16
  cc_fd_db_top_editor_toolbar: 'control',
17
- cc_fd_cwr_quick_insert: 'control'
17
+ cc_fd_cwr_quick_insert: 'control',
18
+ platform_editor_paste_actions_menu_v2: 'control'
18
19
  };
19
20
  var testBooleanOverrides = exports.testBooleanOverrides = {
20
21
  platform_sl_3p_auth_rovo_action: false,
@@ -1838,6 +1838,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1838
1838
  param: 'isEnabled',
1839
1839
  defaultValue: false
1840
1840
  }),
1841
+ // Added 2026-04-15
1842
+ platform_editor_user_preference_override: (0, _experimentBuilders.createBooleanExperiment)({
1843
+ productKeys: {
1844
+ confluence: 'platform_editor_user_preference_override'
1845
+ },
1846
+ param: 'isEnabled',
1847
+ defaultValue: false
1848
+ }),
1841
1849
  // Added 2026-03-26
1842
1850
  platform_editor_fix_comment_border: (0, _experimentBuilders.createBooleanExperiment)({
1843
1851
  productKeys: {
@@ -2105,6 +2113,23 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
2105
2113
  param: 'isEnabled',
2106
2114
  defaultValue: false
2107
2115
  }),
2116
+ platform_editor_paste_actions_menu_v2: (0, _experimentBuilders.createMultivariateExperiment)({
2117
+ productKeys: {
2118
+ confluence: 'platform_editor_paste_actions_menu_v2',
2119
+ jira: 'platform_editor_paste_actions_menu_v2'
2120
+ },
2121
+ param: 'variant',
2122
+ values: ['control', 'hasSpellingAndGrammar', 'hasAltAiActions'],
2123
+ defaultValue: 'control'
2124
+ }),
2125
+ platform_editor_paste_actions_menu_v2_boolean: (0, _experimentBuilders.createBooleanExperiment)({
2126
+ productKeys: {
2127
+ confluence: 'platform_editor_paste_actions_menu_v2',
2128
+ jira: 'platform_editor_paste_actions_menu_v2'
2129
+ },
2130
+ param: 'isEnabled',
2131
+ defaultValue: false
2132
+ }),
2108
2133
  // Added 2026-05-04
2109
2134
  platform_editor_show_diff_fix_missing_attrs: (0, _experimentBuilders.createBooleanExperiment)({
2110
2135
  productKeys: {
@@ -8,7 +8,8 @@ export const testMultivariateOverrides = {
8
8
  cc_editor_insm_outlier_events: 'test',
9
9
  platform_editor_table_sticky_header_improvements: 'test_with_overflow',
10
10
  cc_fd_db_top_editor_toolbar: 'control',
11
- cc_fd_cwr_quick_insert: 'control'
11
+ cc_fd_cwr_quick_insert: 'control',
12
+ platform_editor_paste_actions_menu_v2: 'control'
12
13
  };
13
14
  export const testBooleanOverrides = {
14
15
  platform_sl_3p_auth_rovo_action: false,
@@ -1832,6 +1832,14 @@ export const editorExperimentsConfig = {
1832
1832
  param: 'isEnabled',
1833
1833
  defaultValue: false
1834
1834
  }),
1835
+ // Added 2026-04-15
1836
+ platform_editor_user_preference_override: createBooleanExperiment({
1837
+ productKeys: {
1838
+ confluence: 'platform_editor_user_preference_override'
1839
+ },
1840
+ param: 'isEnabled',
1841
+ defaultValue: false
1842
+ }),
1835
1843
  // Added 2026-03-26
1836
1844
  platform_editor_fix_comment_border: createBooleanExperiment({
1837
1845
  productKeys: {
@@ -2099,6 +2107,23 @@ export const editorExperimentsConfig = {
2099
2107
  param: 'isEnabled',
2100
2108
  defaultValue: false
2101
2109
  }),
2110
+ platform_editor_paste_actions_menu_v2: createMultivariateExperiment({
2111
+ productKeys: {
2112
+ confluence: 'platform_editor_paste_actions_menu_v2',
2113
+ jira: 'platform_editor_paste_actions_menu_v2'
2114
+ },
2115
+ param: 'variant',
2116
+ values: ['control', 'hasSpellingAndGrammar', 'hasAltAiActions'],
2117
+ defaultValue: 'control'
2118
+ }),
2119
+ platform_editor_paste_actions_menu_v2_boolean: createBooleanExperiment({
2120
+ productKeys: {
2121
+ confluence: 'platform_editor_paste_actions_menu_v2',
2122
+ jira: 'platform_editor_paste_actions_menu_v2'
2123
+ },
2124
+ param: 'isEnabled',
2125
+ defaultValue: false
2126
+ }),
2102
2127
  // Added 2026-05-04
2103
2128
  platform_editor_show_diff_fix_missing_attrs: createBooleanExperiment({
2104
2129
  productKeys: {
@@ -8,7 +8,8 @@ export var testMultivariateOverrides = {
8
8
  cc_editor_insm_outlier_events: 'test',
9
9
  platform_editor_table_sticky_header_improvements: 'test_with_overflow',
10
10
  cc_fd_db_top_editor_toolbar: 'control',
11
- cc_fd_cwr_quick_insert: 'control'
11
+ cc_fd_cwr_quick_insert: 'control',
12
+ platform_editor_paste_actions_menu_v2: 'control'
12
13
  };
13
14
  export var testBooleanOverrides = {
14
15
  platform_sl_3p_auth_rovo_action: false,
@@ -1832,6 +1832,14 @@ export var editorExperimentsConfig = {
1832
1832
  param: 'isEnabled',
1833
1833
  defaultValue: false
1834
1834
  }),
1835
+ // Added 2026-04-15
1836
+ platform_editor_user_preference_override: createBooleanExperiment({
1837
+ productKeys: {
1838
+ confluence: 'platform_editor_user_preference_override'
1839
+ },
1840
+ param: 'isEnabled',
1841
+ defaultValue: false
1842
+ }),
1835
1843
  // Added 2026-03-26
1836
1844
  platform_editor_fix_comment_border: createBooleanExperiment({
1837
1845
  productKeys: {
@@ -2099,6 +2107,23 @@ export var editorExperimentsConfig = {
2099
2107
  param: 'isEnabled',
2100
2108
  defaultValue: false
2101
2109
  }),
2110
+ platform_editor_paste_actions_menu_v2: createMultivariateExperiment({
2111
+ productKeys: {
2112
+ confluence: 'platform_editor_paste_actions_menu_v2',
2113
+ jira: 'platform_editor_paste_actions_menu_v2'
2114
+ },
2115
+ param: 'variant',
2116
+ values: ['control', 'hasSpellingAndGrammar', 'hasAltAiActions'],
2117
+ defaultValue: 'control'
2118
+ }),
2119
+ platform_editor_paste_actions_menu_v2_boolean: createBooleanExperiment({
2120
+ productKeys: {
2121
+ confluence: 'platform_editor_paste_actions_menu_v2',
2122
+ jira: 'platform_editor_paste_actions_menu_v2'
2123
+ },
2124
+ param: 'isEnabled',
2125
+ defaultValue: false
2126
+ }),
2102
2127
  // Added 2026-05-04
2103
2128
  platform_editor_show_diff_fix_missing_attrs: createBooleanExperiment({
2104
2129
  productKeys: {
@@ -1380,6 +1380,12 @@ export declare const editorExperimentsConfig: {
1380
1380
  productKeys?: ProductKeys;
1381
1381
  typeGuard: IsBooleanType;
1382
1382
  };
1383
+ platform_editor_user_preference_override: {
1384
+ defaultValue: boolean;
1385
+ param: string;
1386
+ productKeys?: ProductKeys;
1387
+ typeGuard: IsBooleanType;
1388
+ };
1383
1389
  platform_editor_preserve_node_identity: {
1384
1390
  defaultValue: boolean;
1385
1391
  param: string;
@@ -1554,5 +1560,18 @@ export declare const editorExperimentsConfig: {
1554
1560
  productKeys?: ProductKeys;
1555
1561
  typeGuard: IsBooleanType;
1556
1562
  };
1563
+ platform_editor_paste_actions_menu_v2: {
1564
+ defaultValue: 'control' | 'hasSpellingAndGrammar' | 'hasAltAiActions';
1565
+ param: string;
1566
+ productKeys?: ProductKeys;
1567
+ typeGuard: (value: unknown) => value is 'control' | 'hasSpellingAndGrammar' | 'hasAltAiActions';
1568
+ values: ('control' | 'hasSpellingAndGrammar' | 'hasAltAiActions')[];
1569
+ };
1570
+ platform_editor_paste_actions_menu_v2_boolean: {
1571
+ defaultValue: boolean;
1572
+ param: string;
1573
+ productKeys?: ProductKeys;
1574
+ typeGuard: IsBooleanType;
1575
+ };
1557
1576
  };
1558
1577
  export {};
@@ -1380,6 +1380,12 @@ export declare const editorExperimentsConfig: {
1380
1380
  productKeys?: ProductKeys;
1381
1381
  typeGuard: IsBooleanType;
1382
1382
  };
1383
+ platform_editor_user_preference_override: {
1384
+ defaultValue: boolean;
1385
+ param: string;
1386
+ productKeys?: ProductKeys;
1387
+ typeGuard: IsBooleanType;
1388
+ };
1383
1389
  platform_editor_preserve_node_identity: {
1384
1390
  defaultValue: boolean;
1385
1391
  param: string;
@@ -1554,5 +1560,18 @@ export declare const editorExperimentsConfig: {
1554
1560
  productKeys?: ProductKeys;
1555
1561
  typeGuard: IsBooleanType;
1556
1562
  };
1563
+ platform_editor_paste_actions_menu_v2: {
1564
+ defaultValue: 'control' | 'hasSpellingAndGrammar' | 'hasAltAiActions';
1565
+ param: string;
1566
+ productKeys?: ProductKeys;
1567
+ typeGuard: (value: unknown) => value is 'control' | 'hasSpellingAndGrammar' | 'hasAltAiActions';
1568
+ values: ('control' | 'hasSpellingAndGrammar' | 'hasAltAiActions')[];
1569
+ };
1570
+ platform_editor_paste_actions_menu_v2_boolean: {
1571
+ defaultValue: boolean;
1572
+ param: string;
1573
+ productKeys?: ProductKeys;
1574
+ typeGuard: IsBooleanType;
1575
+ };
1557
1576
  };
1558
1577
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "74.7.0",
3
+ "version": "74.8.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",