@atlaskit/tmp-editor-statsig 92.0.0 → 93.0.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,38 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 93.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`a4f97c853dccf`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a4f97c853dccf) -
8
+ Extend `no-module-level-eval` lint rule to cover editor experiment APIs (`expValEquals`, `expVal`,
9
+ `editorExperiment`, `expValEqualsNoExposure`) imported from `@atlaskit/tmp-editor-statsig`
10
+ subpaths. Module-level evaluation of these functions causes flakiness because experiment values
11
+ may not be resolved yet at import time.
12
+
13
+ Fix existing violations in `editor-plugin-block-controls` (`global-styles.tsx`) and
14
+ `editor-plugin-table` (`ContextualMenu.tsx`) by converting module-level experiment evaluations to
15
+ lazy function calls.
16
+
17
+ Clean up fully-launched experiment `platform_editor_unify_native_dnd_selectors` — replace
18
+ conditional selector logic with the winning `dragHandlerAnchorSelectorWithTaskExclusion` value and
19
+ remove the experiment from `experiments-config.ts`.
20
+
21
+ ## 93.0.0
22
+
23
+ ### Major Changes
24
+
25
+ - [`676198a68986c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/676198a68986c) -
26
+ Cleanup feature gate `platform_editor_prosemirror_rendered_data`. The ProseMirror rendered
27
+ analytics event now always includes page-load metadata, timing values, extension keys, and the UFO
28
+ interaction ID.
29
+
30
+ ### Minor Changes
31
+
32
+ - [`ebd3c5d7d340a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ebd3c5d7d340a) -
33
+ Gate single-link paste display menu behind confluence_editor_paste_3p_link_actions_menu feature
34
+ flag
35
+
3
36
  ## 92.0.0
4
37
 
5
38
  ### Major Changes
@@ -50,7 +50,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
50
50
  platform_editor_enable_single_player_step_merging: false,
51
51
  platform_editor_find_and_replace_improvements: false,
52
52
  platform_editor_reduce_noisy_steps_ncs: false,
53
- platform_editor_prosemirror_rendered_data: false,
54
53
  confluence_compact_text_format: false,
55
54
  platform_editor_paste_actions_menu: false,
56
55
  platform_editor_diff_plugin_extended: false,
@@ -941,14 +941,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
941
941
  param: 'isEnabled',
942
942
  defaultValue: false
943
943
  }),
944
- platform_editor_unify_native_dnd_selectors: (0, _experimentBuilders.createBooleanExperiment)({
945
- productKeys: {
946
- confluence: 'platform_editor_unify_native_dnd_selectors',
947
- jira: 'platform_editor_unify_native_dnd_selectors'
948
- },
949
- param: 'isEnabled',
950
- defaultValue: false
951
- }),
952
944
  // Added 2026-03-05
953
945
  platform_editor_abort_ufo_on_user_interaction: (0, _experimentBuilders.createBooleanExperiment)({
954
946
  productKeys: {
@@ -1478,15 +1470,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1478
1470
  param: 'isEnabled',
1479
1471
  defaultValue: false
1480
1472
  }),
1481
- // Added 2026-02-11
1482
- platform_editor_prosemirror_rendered_data: (0, _experimentBuilders.createBooleanExperiment)({
1483
- productKeys: {
1484
- confluence: 'platform_editor_prosemirror_rendered_data',
1485
- jira: 'platform_editor_prosemirror_rendered_data'
1486
- },
1487
- param: 'isEnabled',
1488
- defaultValue: false
1489
- }),
1490
1473
  // Added 2026-02-19
1491
1474
  platform_editor_flexible_list_indentation: (0, _experimentBuilders.createBooleanExperiment)({
1492
1475
  productKeys: {
@@ -2277,6 +2260,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
2277
2260
  param: 'isEnabled',
2278
2261
  defaultValue: false
2279
2262
  }),
2263
+ // Added 2026-06-10
2264
+ confluence_editor_paste_3p_link_actions_menu: (0, _experimentBuilders.createBooleanExperiment)({
2265
+ productKeys: {
2266
+ confluence: 'confluence_editor_paste_3p_link_actions_menu'
2267
+ },
2268
+ param: 'isEnabled',
2269
+ defaultValue: false
2270
+ }),
2280
2271
  // Added 2026-05-19
2281
2272
  platform_editor_ai_improve_formatting_toolbar: (0, _experimentBuilders.createBooleanExperiment)({
2282
2273
  productKeys: {
@@ -44,7 +44,6 @@ export const testBooleanOverrides = {
44
44
  platform_editor_enable_single_player_step_merging: false,
45
45
  platform_editor_find_and_replace_improvements: false,
46
46
  platform_editor_reduce_noisy_steps_ncs: false,
47
- platform_editor_prosemirror_rendered_data: false,
48
47
  confluence_compact_text_format: false,
49
48
  platform_editor_paste_actions_menu: false,
50
49
  platform_editor_diff_plugin_extended: false,
@@ -935,14 +935,6 @@ export const editorExperimentsConfig = {
935
935
  param: 'isEnabled',
936
936
  defaultValue: false
937
937
  }),
938
- platform_editor_unify_native_dnd_selectors: createBooleanExperiment({
939
- productKeys: {
940
- confluence: 'platform_editor_unify_native_dnd_selectors',
941
- jira: 'platform_editor_unify_native_dnd_selectors'
942
- },
943
- param: 'isEnabled',
944
- defaultValue: false
945
- }),
946
938
  // Added 2026-03-05
947
939
  platform_editor_abort_ufo_on_user_interaction: createBooleanExperiment({
948
940
  productKeys: {
@@ -1472,15 +1464,6 @@ export const editorExperimentsConfig = {
1472
1464
  param: 'isEnabled',
1473
1465
  defaultValue: false
1474
1466
  }),
1475
- // Added 2026-02-11
1476
- platform_editor_prosemirror_rendered_data: createBooleanExperiment({
1477
- productKeys: {
1478
- confluence: 'platform_editor_prosemirror_rendered_data',
1479
- jira: 'platform_editor_prosemirror_rendered_data'
1480
- },
1481
- param: 'isEnabled',
1482
- defaultValue: false
1483
- }),
1484
1467
  // Added 2026-02-19
1485
1468
  platform_editor_flexible_list_indentation: createBooleanExperiment({
1486
1469
  productKeys: {
@@ -2271,6 +2254,14 @@ export const editorExperimentsConfig = {
2271
2254
  param: 'isEnabled',
2272
2255
  defaultValue: false
2273
2256
  }),
2257
+ // Added 2026-06-10
2258
+ confluence_editor_paste_3p_link_actions_menu: createBooleanExperiment({
2259
+ productKeys: {
2260
+ confluence: 'confluence_editor_paste_3p_link_actions_menu'
2261
+ },
2262
+ param: 'isEnabled',
2263
+ defaultValue: false
2264
+ }),
2274
2265
  // Added 2026-05-19
2275
2266
  platform_editor_ai_improve_formatting_toolbar: createBooleanExperiment({
2276
2267
  productKeys: {
@@ -44,7 +44,6 @@ export var testBooleanOverrides = {
44
44
  platform_editor_enable_single_player_step_merging: false,
45
45
  platform_editor_find_and_replace_improvements: false,
46
46
  platform_editor_reduce_noisy_steps_ncs: false,
47
- platform_editor_prosemirror_rendered_data: false,
48
47
  confluence_compact_text_format: false,
49
48
  platform_editor_paste_actions_menu: false,
50
49
  platform_editor_diff_plugin_extended: false,
@@ -935,14 +935,6 @@ export var editorExperimentsConfig = {
935
935
  param: 'isEnabled',
936
936
  defaultValue: false
937
937
  }),
938
- platform_editor_unify_native_dnd_selectors: createBooleanExperiment({
939
- productKeys: {
940
- confluence: 'platform_editor_unify_native_dnd_selectors',
941
- jira: 'platform_editor_unify_native_dnd_selectors'
942
- },
943
- param: 'isEnabled',
944
- defaultValue: false
945
- }),
946
938
  // Added 2026-03-05
947
939
  platform_editor_abort_ufo_on_user_interaction: createBooleanExperiment({
948
940
  productKeys: {
@@ -1472,15 +1464,6 @@ export var editorExperimentsConfig = {
1472
1464
  param: 'isEnabled',
1473
1465
  defaultValue: false
1474
1466
  }),
1475
- // Added 2026-02-11
1476
- platform_editor_prosemirror_rendered_data: createBooleanExperiment({
1477
- productKeys: {
1478
- confluence: 'platform_editor_prosemirror_rendered_data',
1479
- jira: 'platform_editor_prosemirror_rendered_data'
1480
- },
1481
- param: 'isEnabled',
1482
- defaultValue: false
1483
- }),
1484
1467
  // Added 2026-02-19
1485
1468
  platform_editor_flexible_list_indentation: createBooleanExperiment({
1486
1469
  productKeys: {
@@ -2271,6 +2254,14 @@ export var editorExperimentsConfig = {
2271
2254
  param: 'isEnabled',
2272
2255
  defaultValue: false
2273
2256
  }),
2257
+ // Added 2026-06-10
2258
+ confluence_editor_paste_3p_link_actions_menu: createBooleanExperiment({
2259
+ productKeys: {
2260
+ confluence: 'confluence_editor_paste_3p_link_actions_menu'
2261
+ },
2262
+ param: 'isEnabled',
2263
+ defaultValue: false
2264
+ }),
2274
2265
  // Added 2026-05-19
2275
2266
  platform_editor_ai_improve_formatting_toolbar: createBooleanExperiment({
2276
2267
  productKeys: {
@@ -197,24 +197,12 @@ export declare const editorExperimentsConfig: {
197
197
  productKeys?: ProductKeys;
198
198
  typeGuard: IsBooleanType;
199
199
  };
200
- platform_editor_prosemirror_rendered_data: {
201
- defaultValue: boolean;
202
- param: string;
203
- productKeys?: ProductKeys;
204
- typeGuard: IsBooleanType;
205
- };
206
200
  confluence_compact_text_format: {
207
201
  defaultValue: boolean;
208
202
  param: string;
209
203
  productKeys?: ProductKeys;
210
204
  typeGuard: IsBooleanType;
211
205
  };
212
- platform_editor_unify_native_dnd_selectors: {
213
- defaultValue: boolean;
214
- param: string;
215
- productKeys?: ProductKeys;
216
- typeGuard: IsBooleanType;
217
- };
218
206
  ai_speech_to_text_in_editor: {
219
207
  defaultValue: boolean;
220
208
  param: string;
@@ -1641,6 +1629,12 @@ export declare const editorExperimentsConfig: {
1641
1629
  productKeys?: ProductKeys;
1642
1630
  typeGuard: IsBooleanType;
1643
1631
  };
1632
+ confluence_editor_paste_3p_link_actions_menu: {
1633
+ defaultValue: boolean;
1634
+ param: string;
1635
+ productKeys?: ProductKeys;
1636
+ typeGuard: IsBooleanType;
1637
+ };
1644
1638
  platform_editor_ai_replace_doc: {
1645
1639
  defaultValue: boolean;
1646
1640
  param: string;
@@ -197,24 +197,12 @@ export declare const editorExperimentsConfig: {
197
197
  productKeys?: ProductKeys;
198
198
  typeGuard: IsBooleanType;
199
199
  };
200
- platform_editor_prosemirror_rendered_data: {
201
- defaultValue: boolean;
202
- param: string;
203
- productKeys?: ProductKeys;
204
- typeGuard: IsBooleanType;
205
- };
206
200
  confluence_compact_text_format: {
207
201
  defaultValue: boolean;
208
202
  param: string;
209
203
  productKeys?: ProductKeys;
210
204
  typeGuard: IsBooleanType;
211
205
  };
212
- platform_editor_unify_native_dnd_selectors: {
213
- defaultValue: boolean;
214
- param: string;
215
- productKeys?: ProductKeys;
216
- typeGuard: IsBooleanType;
217
- };
218
206
  ai_speech_to_text_in_editor: {
219
207
  defaultValue: boolean;
220
208
  param: string;
@@ -1641,6 +1629,12 @@ export declare const editorExperimentsConfig: {
1641
1629
  productKeys?: ProductKeys;
1642
1630
  typeGuard: IsBooleanType;
1643
1631
  };
1632
+ confluence_editor_paste_3p_link_actions_menu: {
1633
+ defaultValue: boolean;
1634
+ param: string;
1635
+ productKeys?: ProductKeys;
1636
+ typeGuard: IsBooleanType;
1637
+ };
1644
1638
  platform_editor_ai_replace_doc: {
1645
1639
  defaultValue: boolean;
1646
1640
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "92.0.0",
3
+ "version": "93.0.1",
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",
@@ -41,6 +41,9 @@
41
41
  "platform-feature-flags": {
42
42
  "platform_editor_experiments_use_product_keys": {
43
43
  "type": "boolean"
44
+ },
45
+ "confluence_editor_paste_3p_link_actions_menu": {
46
+ "type": "boolean"
44
47
  }
45
48
  },
46
49
  "devDependencies": {