@atlaskit/tmp-editor-statsig 93.0.0 → 94.0.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,36 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 94.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [`809a7bb620a33`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/809a7bb620a33) -
8
+ [ux] Cleanup feature gate `cc_editor_hover_link_overlay_css_fix`. The hover link overlay overflow
9
+ handling is now always active, so labels reset on hover and hide when the button would overflow
10
+ its container.
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies
15
+
16
+ ## 93.0.1
17
+
18
+ ### Patch Changes
19
+
20
+ - [`a4f97c853dccf`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a4f97c853dccf) -
21
+ Extend `no-module-level-eval` lint rule to cover editor experiment APIs (`expValEquals`, `expVal`,
22
+ `editorExperiment`, `expValEqualsNoExposure`) imported from `@atlaskit/tmp-editor-statsig`
23
+ subpaths. Module-level evaluation of these functions causes flakiness because experiment values
24
+ may not be resolved yet at import time.
25
+
26
+ Fix existing violations in `editor-plugin-block-controls` (`global-styles.tsx`) and
27
+ `editor-plugin-table` (`ContextualMenu.tsx`) by converting module-level experiment evaluations to
28
+ lazy function calls.
29
+
30
+ Clean up fully-launched experiment `platform_editor_unify_native_dnd_selectors` — replace
31
+ conditional selector logic with the winning `dragHandlerAnchorSelectorWithTaskExclusion` value and
32
+ remove the experiment from `experiments-config.ts`.
33
+
3
34
  ## 93.0.0
4
35
 
5
36
  ### Major Changes
@@ -25,7 +25,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
25
25
  platform_sl_3p_auth_rovo_action: false,
26
26
  platform_sl_3p_preauth_better_hovercard: true,
27
27
  cwr_blank_object_experiment: false,
28
- cc_editor_hover_link_overlay_css_fix: false,
29
28
  platform_editor_feedback_mandatory_rating: false,
30
29
  platform_editor_preview_panel_responsiveness: false,
31
30
  platform_editor_toolbar_aifc: false,
@@ -218,14 +218,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
218
218
  values: ['control', 'test'],
219
219
  defaultValue: 'control'
220
220
  }),
221
- // Added 2025-12-09
222
- cc_editor_hover_link_overlay_css_fix: (0, _experimentBuilders.createBooleanExperiment)({
223
- productKeys: {
224
- confluence: 'cc_editor_hover_link_overlay_css_fix'
225
- },
226
- param: 'isEnabled',
227
- defaultValue: false
228
- }),
229
221
  // Added 2026-04-08
230
222
  cc_integrations_editor_open_link_click_analytics: (0, _experimentBuilders.createBooleanExperiment)({
231
223
  productKeys: {
@@ -941,14 +933,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
941
933
  param: 'isEnabled',
942
934
  defaultValue: false
943
935
  }),
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
936
  // Added 2026-03-05
953
937
  platform_editor_abort_ufo_on_user_interaction: (0, _experimentBuilders.createBooleanExperiment)({
954
938
  productKeys: {
@@ -1503,6 +1487,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1503
1487
  param: 'isEnabled',
1504
1488
  defaultValue: false
1505
1489
  }),
1490
+ // Added 2026-06-11
1491
+ platform_teamoji_26_refresh_emoji_picker: (0, _experimentBuilders.createBooleanExperiment)({
1492
+ productKeys: {
1493
+ confluence: 'platform_teamoji_26_refresh_emoji_picker',
1494
+ jira: 'platform_teamoji_26_refresh_emoji_picker'
1495
+ },
1496
+ param: 'isEnabled',
1497
+ defaultValue: false
1498
+ }),
1506
1499
  // Added 2026-02-26
1507
1500
  platform_editor_toolbar_update_jira_config: (0, _experimentBuilders.createBooleanExperiment)({
1508
1501
  productKeys: {
@@ -19,7 +19,6 @@ export const testBooleanOverrides = {
19
19
  platform_sl_3p_auth_rovo_action: false,
20
20
  platform_sl_3p_preauth_better_hovercard: true,
21
21
  cwr_blank_object_experiment: false,
22
- cc_editor_hover_link_overlay_css_fix: false,
23
22
  platform_editor_feedback_mandatory_rating: false,
24
23
  platform_editor_preview_panel_responsiveness: false,
25
24
  platform_editor_toolbar_aifc: false,
@@ -212,14 +212,6 @@ export const editorExperimentsConfig = {
212
212
  values: ['control', 'test'],
213
213
  defaultValue: 'control'
214
214
  }),
215
- // Added 2025-12-09
216
- cc_editor_hover_link_overlay_css_fix: createBooleanExperiment({
217
- productKeys: {
218
- confluence: 'cc_editor_hover_link_overlay_css_fix'
219
- },
220
- param: 'isEnabled',
221
- defaultValue: false
222
- }),
223
215
  // Added 2026-04-08
224
216
  cc_integrations_editor_open_link_click_analytics: createBooleanExperiment({
225
217
  productKeys: {
@@ -935,14 +927,6 @@ export const editorExperimentsConfig = {
935
927
  param: 'isEnabled',
936
928
  defaultValue: false
937
929
  }),
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
930
  // Added 2026-03-05
947
931
  platform_editor_abort_ufo_on_user_interaction: createBooleanExperiment({
948
932
  productKeys: {
@@ -1497,6 +1481,15 @@ export const editorExperimentsConfig = {
1497
1481
  param: 'isEnabled',
1498
1482
  defaultValue: false
1499
1483
  }),
1484
+ // Added 2026-06-11
1485
+ platform_teamoji_26_refresh_emoji_picker: createBooleanExperiment({
1486
+ productKeys: {
1487
+ confluence: 'platform_teamoji_26_refresh_emoji_picker',
1488
+ jira: 'platform_teamoji_26_refresh_emoji_picker'
1489
+ },
1490
+ param: 'isEnabled',
1491
+ defaultValue: false
1492
+ }),
1500
1493
  // Added 2026-02-26
1501
1494
  platform_editor_toolbar_update_jira_config: createBooleanExperiment({
1502
1495
  productKeys: {
@@ -19,7 +19,6 @@ export var testBooleanOverrides = {
19
19
  platform_sl_3p_auth_rovo_action: false,
20
20
  platform_sl_3p_preauth_better_hovercard: true,
21
21
  cwr_blank_object_experiment: false,
22
- cc_editor_hover_link_overlay_css_fix: false,
23
22
  platform_editor_feedback_mandatory_rating: false,
24
23
  platform_editor_preview_panel_responsiveness: false,
25
24
  platform_editor_toolbar_aifc: false,
@@ -212,14 +212,6 @@ export var editorExperimentsConfig = {
212
212
  values: ['control', 'test'],
213
213
  defaultValue: 'control'
214
214
  }),
215
- // Added 2025-12-09
216
- cc_editor_hover_link_overlay_css_fix: createBooleanExperiment({
217
- productKeys: {
218
- confluence: 'cc_editor_hover_link_overlay_css_fix'
219
- },
220
- param: 'isEnabled',
221
- defaultValue: false
222
- }),
223
215
  // Added 2026-04-08
224
216
  cc_integrations_editor_open_link_click_analytics: createBooleanExperiment({
225
217
  productKeys: {
@@ -935,14 +927,6 @@ export var editorExperimentsConfig = {
935
927
  param: 'isEnabled',
936
928
  defaultValue: false
937
929
  }),
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
930
  // Added 2026-03-05
947
931
  platform_editor_abort_ufo_on_user_interaction: createBooleanExperiment({
948
932
  productKeys: {
@@ -1497,6 +1481,15 @@ export var editorExperimentsConfig = {
1497
1481
  param: 'isEnabled',
1498
1482
  defaultValue: false
1499
1483
  }),
1484
+ // Added 2026-06-11
1485
+ platform_teamoji_26_refresh_emoji_picker: createBooleanExperiment({
1486
+ productKeys: {
1487
+ confluence: 'platform_teamoji_26_refresh_emoji_picker',
1488
+ jira: 'platform_teamoji_26_refresh_emoji_picker'
1489
+ },
1490
+ param: 'isEnabled',
1491
+ defaultValue: false
1492
+ }),
1500
1493
  // Added 2026-02-26
1501
1494
  platform_editor_toolbar_update_jira_config: createBooleanExperiment({
1502
1495
  productKeys: {
@@ -70,12 +70,6 @@ export declare const editorExperimentsConfig: {
70
70
  typeGuard: (value: unknown) => value is 'control' | 'test';
71
71
  values: ('control' | 'test')[];
72
72
  };
73
- cc_editor_hover_link_overlay_css_fix: {
74
- defaultValue: boolean;
75
- param: string;
76
- productKeys?: ProductKeys;
77
- typeGuard: IsBooleanType;
78
- };
79
73
  cc_integrations_editor_open_link_click_analytics: {
80
74
  defaultValue: boolean;
81
75
  param: string;
@@ -203,12 +197,6 @@ export declare const editorExperimentsConfig: {
203
197
  productKeys?: ProductKeys;
204
198
  typeGuard: IsBooleanType;
205
199
  };
206
- platform_editor_unify_native_dnd_selectors: {
207
- defaultValue: boolean;
208
- param: string;
209
- productKeys?: ProductKeys;
210
- typeGuard: IsBooleanType;
211
- };
212
200
  ai_speech_to_text_in_editor: {
213
201
  defaultValue: boolean;
214
202
  param: string;
@@ -1160,6 +1148,12 @@ export declare const editorExperimentsConfig: {
1160
1148
  productKeys?: ProductKeys;
1161
1149
  typeGuard: IsBooleanType;
1162
1150
  };
1151
+ platform_teamoji_26_refresh_emoji_picker: {
1152
+ defaultValue: boolean;
1153
+ param: string;
1154
+ productKeys?: ProductKeys;
1155
+ typeGuard: IsBooleanType;
1156
+ };
1163
1157
  platform_editor_toolbar_update_jira_config: {
1164
1158
  defaultValue: boolean;
1165
1159
  param: string;
@@ -70,12 +70,6 @@ export declare const editorExperimentsConfig: {
70
70
  typeGuard: (value: unknown) => value is 'control' | 'test';
71
71
  values: ('control' | 'test')[];
72
72
  };
73
- cc_editor_hover_link_overlay_css_fix: {
74
- defaultValue: boolean;
75
- param: string;
76
- productKeys?: ProductKeys;
77
- typeGuard: IsBooleanType;
78
- };
79
73
  cc_integrations_editor_open_link_click_analytics: {
80
74
  defaultValue: boolean;
81
75
  param: string;
@@ -203,12 +197,6 @@ export declare const editorExperimentsConfig: {
203
197
  productKeys?: ProductKeys;
204
198
  typeGuard: IsBooleanType;
205
199
  };
206
- platform_editor_unify_native_dnd_selectors: {
207
- defaultValue: boolean;
208
- param: string;
209
- productKeys?: ProductKeys;
210
- typeGuard: IsBooleanType;
211
- };
212
200
  ai_speech_to_text_in_editor: {
213
201
  defaultValue: boolean;
214
202
  param: string;
@@ -1160,6 +1148,12 @@ export declare const editorExperimentsConfig: {
1160
1148
  productKeys?: ProductKeys;
1161
1149
  typeGuard: IsBooleanType;
1162
1150
  };
1151
+ platform_teamoji_26_refresh_emoji_picker: {
1152
+ defaultValue: boolean;
1153
+ param: string;
1154
+ productKeys?: ProductKeys;
1155
+ typeGuard: IsBooleanType;
1156
+ };
1163
1157
  platform_editor_toolbar_update_jira_config: {
1164
1158
  defaultValue: boolean;
1165
1159
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "93.0.0",
3
+ "version": "94.0.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",