@atlaskit/tmp-editor-statsig 15.8.0 → 15.9.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
+ ## 15.9.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`cb319ae5e7782`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cb319ae5e7782) -
8
+ EDITOR-2864 - Address HoverLinkOverlay label spilling out beyond the margins of its container on
9
+ hover. For example, when a smart link is inside a table, and it is broken into 1+ line, the label
10
+ on hover will not break and will therefore appear hovering out of the table.
11
+
3
12
  ## 15.8.0
4
13
 
5
14
  ### Minor Changes
@@ -27,6 +27,7 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
27
27
  platform_sl_3p_unauth_paste_as_block_card: 'control'
28
28
  };
29
29
  var testBooleanOverrides = exports.testBooleanOverrides = {
30
+ cc_editor_hover_link_overlay_css_fix: false,
30
31
  platform_editor_feedback_mandatory_rating: false,
31
32
  platform_editor_preview_panel_responsiveness: false,
32
33
  platform_editor_toolbar_aifc: false,
@@ -93,6 +93,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
93
93
  values: ['control', 'test'],
94
94
  defaultValue: 'control'
95
95
  }),
96
+ // Added 2025-12-09
97
+ cc_editor_hover_link_overlay_css_fix: (0, _experimentBuilders.createBooleanExperiment)({
98
+ productKeys: {
99
+ confluence: 'cc_editor_hover_link_overlay_css_fix'
100
+ },
101
+ param: 'isEnabled',
102
+ defaultValue: false
103
+ }),
96
104
  // Added 2025-11-17
97
105
  platform_editor_renderer_extension_width_fix: (0, _experimentBuilders.createBooleanExperiment)({
98
106
  productKeys: {
@@ -21,6 +21,7 @@ export const testMultivariateOverrides = {
21
21
  platform_sl_3p_unauth_paste_as_block_card: 'control'
22
22
  };
23
23
  export const testBooleanOverrides = {
24
+ cc_editor_hover_link_overlay_css_fix: false,
24
25
  platform_editor_feedback_mandatory_rating: false,
25
26
  platform_editor_preview_panel_responsiveness: false,
26
27
  platform_editor_toolbar_aifc: false,
@@ -87,6 +87,14 @@ export const editorExperimentsConfig = {
87
87
  values: ['control', 'test'],
88
88
  defaultValue: 'control'
89
89
  }),
90
+ // Added 2025-12-09
91
+ cc_editor_hover_link_overlay_css_fix: createBooleanExperiment({
92
+ productKeys: {
93
+ confluence: 'cc_editor_hover_link_overlay_css_fix'
94
+ },
95
+ param: 'isEnabled',
96
+ defaultValue: false
97
+ }),
90
98
  // Added 2025-11-17
91
99
  platform_editor_renderer_extension_width_fix: createBooleanExperiment({
92
100
  productKeys: {
@@ -21,6 +21,7 @@ export var testMultivariateOverrides = {
21
21
  platform_sl_3p_unauth_paste_as_block_card: 'control'
22
22
  };
23
23
  export var testBooleanOverrides = {
24
+ cc_editor_hover_link_overlay_css_fix: false,
24
25
  platform_editor_feedback_mandatory_rating: false,
25
26
  platform_editor_preview_panel_responsiveness: false,
26
27
  platform_editor_toolbar_aifc: false,
@@ -87,6 +87,14 @@ export var editorExperimentsConfig = {
87
87
  values: ['control', 'test'],
88
88
  defaultValue: 'control'
89
89
  }),
90
+ // Added 2025-12-09
91
+ cc_editor_hover_link_overlay_css_fix: createBooleanExperiment({
92
+ productKeys: {
93
+ confluence: 'cc_editor_hover_link_overlay_css_fix'
94
+ },
95
+ param: 'isEnabled',
96
+ defaultValue: false
97
+ }),
90
98
  // Added 2025-11-17
91
99
  platform_editor_renderer_extension_width_fix: createBooleanExperiment({
92
100
  productKeys: {
@@ -33,6 +33,12 @@ export declare const editorExperimentsConfig: {
33
33
  typeGuard: (value: unknown) => value is 'control' | 'test';
34
34
  values: ('control' | 'test')[];
35
35
  };
36
+ cc_editor_hover_link_overlay_css_fix: {
37
+ defaultValue: boolean;
38
+ param: string;
39
+ productKeys?: ProductKeys;
40
+ typeGuard: IsBooleanType;
41
+ };
36
42
  cc_editor_insm_doc_size_stats: {
37
43
  defaultValue: boolean;
38
44
  param: string;
@@ -33,6 +33,12 @@ export declare const editorExperimentsConfig: {
33
33
  typeGuard: (value: unknown) => value is 'control' | 'test';
34
34
  values: ('control' | 'test')[];
35
35
  };
36
+ cc_editor_hover_link_overlay_css_fix: {
37
+ defaultValue: boolean;
38
+ param: string;
39
+ productKeys?: ProductKeys;
40
+ typeGuard: IsBooleanType;
41
+ };
36
42
  cc_editor_insm_doc_size_stats: {
37
43
  defaultValue: boolean;
38
44
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "15.8.0",
3
+ "version": "15.9.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",