@atlaskit/tmp-editor-statsig 15.8.0 → 15.10.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,21 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 15.10.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`31417f38e1e12`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/31417f38e1e12) -
8
+ Update toolbar experiments configuration
9
+
10
+ ## 15.9.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [`cb319ae5e7782`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cb319ae5e7782) -
15
+ EDITOR-2864 - Address HoverLinkOverlay label spilling out beyond the margins of its container on
16
+ hover. For example, when a smart link is inside a table, and it is broken into 1+ line, the label
17
+ on hover will not break and will therefore appear hovering out of the table.
18
+
3
19
  ## 15.8.0
4
20
 
5
21
  ### 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: {
@@ -1156,6 +1164,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1156
1164
  param: 'isEnabled',
1157
1165
  defaultValue: false
1158
1166
  }),
1167
+ // Added 2025-12-12
1168
+ platform_editor_toolbar_delay_render_fix: (0, _experimentBuilders.createBooleanExperiment)({
1169
+ productKeys: {
1170
+ confluence: 'platform_editor_toolbar_delay_render_fix'
1171
+ },
1172
+ param: 'isEnabled',
1173
+ defaultValue: false
1174
+ }),
1159
1175
  // Added 2025-12-03
1160
1176
  platform_editor_nested_media_selection_fix: (0, _experimentBuilders.createBooleanExperiment)({
1161
1177
  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: {
@@ -1150,6 +1158,14 @@ export const editorExperimentsConfig = {
1150
1158
  param: 'isEnabled',
1151
1159
  defaultValue: false
1152
1160
  }),
1161
+ // Added 2025-12-12
1162
+ platform_editor_toolbar_delay_render_fix: createBooleanExperiment({
1163
+ productKeys: {
1164
+ confluence: 'platform_editor_toolbar_delay_render_fix'
1165
+ },
1166
+ param: 'isEnabled',
1167
+ defaultValue: false
1168
+ }),
1153
1169
  // Added 2025-12-03
1154
1170
  platform_editor_nested_media_selection_fix: createBooleanExperiment({
1155
1171
  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: {
@@ -1150,6 +1158,14 @@ export var editorExperimentsConfig = {
1150
1158
  param: 'isEnabled',
1151
1159
  defaultValue: false
1152
1160
  }),
1161
+ // Added 2025-12-12
1162
+ platform_editor_toolbar_delay_render_fix: createBooleanExperiment({
1163
+ productKeys: {
1164
+ confluence: 'platform_editor_toolbar_delay_render_fix'
1165
+ },
1166
+ param: 'isEnabled',
1167
+ defaultValue: false
1168
+ }),
1153
1169
  // Added 2025-12-03
1154
1170
  platform_editor_nested_media_selection_fix: createBooleanExperiment({
1155
1171
  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;
@@ -862,6 +868,12 @@ export declare const editorExperimentsConfig: {
862
868
  productKeys?: ProductKeys;
863
869
  typeGuard: IsBooleanType;
864
870
  };
871
+ platform_editor_toolbar_delay_render_fix: {
872
+ defaultValue: boolean;
873
+ param: string;
874
+ productKeys?: ProductKeys;
875
+ typeGuard: IsBooleanType;
876
+ };
865
877
  platform_editor_nested_media_selection_fix: {
866
878
  defaultValue: boolean;
867
879
  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;
@@ -862,6 +868,12 @@ export declare const editorExperimentsConfig: {
862
868
  productKeys?: ProductKeys;
863
869
  typeGuard: IsBooleanType;
864
870
  };
871
+ platform_editor_toolbar_delay_render_fix: {
872
+ defaultValue: boolean;
873
+ param: string;
874
+ productKeys?: ProductKeys;
875
+ typeGuard: IsBooleanType;
876
+ };
865
877
  platform_editor_nested_media_selection_fix: {
866
878
  defaultValue: boolean;
867
879
  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.10.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",