@atlaskit/tmp-editor-statsig 13.14.0 → 13.15.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 +8 -0
- package/dist/cjs/exp-test-overrides.js +2 -1
- package/dist/cjs/experiments-config.js +9 -0
- package/dist/es2019/exp-test-overrides.js +2 -1
- package/dist/es2019/experiments-config.js +9 -0
- package/dist/esm/exp-test-overrides.js +2 -1
- package/dist/esm/experiments-config.js +9 -0
- package/dist/types/experiments-config.d.ts +7 -0
- package/dist/types-ts4.5/experiments-config.d.ts +7 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 13.15.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`f34518606af3d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f34518606af3d) -
|
|
8
|
+
[ux] Fixes UI issues of the HoverLinkOverlay when it is shown on a heading and on a mulitline
|
|
9
|
+
smartlink.
|
|
10
|
+
|
|
3
11
|
## 13.14.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -22,7 +22,8 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
|
|
|
22
22
|
platform_inline_smartcard_connect_button_exp: 'control',
|
|
23
23
|
confluence_content_mode_replace_dense_with_compact: 'control',
|
|
24
24
|
cc_editor_insm_outlier_events: 'test',
|
|
25
|
-
platform_editor_disable_table_overflow_shadows: 'control'
|
|
25
|
+
platform_editor_disable_table_overflow_shadows: 'control',
|
|
26
|
+
platform_editor_hoverlink_ui_fixes_exp: 'control'
|
|
26
27
|
};
|
|
27
28
|
var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
28
29
|
platform_editor_feedback_mandatory_rating: false,
|
|
@@ -549,6 +549,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
549
549
|
param: 'isEnabled',
|
|
550
550
|
defaultValue: false
|
|
551
551
|
}),
|
|
552
|
+
// Added 2025-10-10
|
|
553
|
+
platform_editor_hoverlink_ui_fixes_exp: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
554
|
+
productKeys: {
|
|
555
|
+
confluence: 'platform_editor_hoverlink_ui_fixes_exp'
|
|
556
|
+
},
|
|
557
|
+
param: 'cohort',
|
|
558
|
+
values: ['control', 'css_changes_only', 'css_js_changes'],
|
|
559
|
+
defaultValue: 'control'
|
|
560
|
+
}),
|
|
552
561
|
// Added 2025-08-17
|
|
553
562
|
platform_hover_card_preview_panel: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
554
563
|
productKeys: {
|
|
@@ -16,7 +16,8 @@ export const testMultivariateOverrides = {
|
|
|
16
16
|
platform_inline_smartcard_connect_button_exp: 'control',
|
|
17
17
|
confluence_content_mode_replace_dense_with_compact: 'control',
|
|
18
18
|
cc_editor_insm_outlier_events: 'test',
|
|
19
|
-
platform_editor_disable_table_overflow_shadows: 'control'
|
|
19
|
+
platform_editor_disable_table_overflow_shadows: 'control',
|
|
20
|
+
platform_editor_hoverlink_ui_fixes_exp: 'control'
|
|
20
21
|
};
|
|
21
22
|
export const testBooleanOverrides = {
|
|
22
23
|
platform_editor_feedback_mandatory_rating: false,
|
|
@@ -543,6 +543,15 @@ export const editorExperimentsConfig = {
|
|
|
543
543
|
param: 'isEnabled',
|
|
544
544
|
defaultValue: false
|
|
545
545
|
}),
|
|
546
|
+
// Added 2025-10-10
|
|
547
|
+
platform_editor_hoverlink_ui_fixes_exp: createMultivariateExperiment({
|
|
548
|
+
productKeys: {
|
|
549
|
+
confluence: 'platform_editor_hoverlink_ui_fixes_exp'
|
|
550
|
+
},
|
|
551
|
+
param: 'cohort',
|
|
552
|
+
values: ['control', 'css_changes_only', 'css_js_changes'],
|
|
553
|
+
defaultValue: 'control'
|
|
554
|
+
}),
|
|
546
555
|
// Added 2025-08-17
|
|
547
556
|
platform_hover_card_preview_panel: createMultivariateExperiment({
|
|
548
557
|
productKeys: {
|
|
@@ -16,7 +16,8 @@ export var testMultivariateOverrides = {
|
|
|
16
16
|
platform_inline_smartcard_connect_button_exp: 'control',
|
|
17
17
|
confluence_content_mode_replace_dense_with_compact: 'control',
|
|
18
18
|
cc_editor_insm_outlier_events: 'test',
|
|
19
|
-
platform_editor_disable_table_overflow_shadows: 'control'
|
|
19
|
+
platform_editor_disable_table_overflow_shadows: 'control',
|
|
20
|
+
platform_editor_hoverlink_ui_fixes_exp: 'control'
|
|
20
21
|
};
|
|
21
22
|
export var testBooleanOverrides = {
|
|
22
23
|
platform_editor_feedback_mandatory_rating: false,
|
|
@@ -543,6 +543,15 @@ export var editorExperimentsConfig = {
|
|
|
543
543
|
param: 'isEnabled',
|
|
544
544
|
defaultValue: false
|
|
545
545
|
}),
|
|
546
|
+
// Added 2025-10-10
|
|
547
|
+
platform_editor_hoverlink_ui_fixes_exp: createMultivariateExperiment({
|
|
548
|
+
productKeys: {
|
|
549
|
+
confluence: 'platform_editor_hoverlink_ui_fixes_exp'
|
|
550
|
+
},
|
|
551
|
+
param: 'cohort',
|
|
552
|
+
values: ['control', 'css_changes_only', 'css_js_changes'],
|
|
553
|
+
defaultValue: 'control'
|
|
554
|
+
}),
|
|
546
555
|
// Added 2025-08-17
|
|
547
556
|
platform_hover_card_preview_panel: createMultivariateExperiment({
|
|
548
557
|
productKeys: {
|
|
@@ -401,6 +401,13 @@ export declare const editorExperimentsConfig: {
|
|
|
401
401
|
param: string;
|
|
402
402
|
productKeys?: import("./types").ProductKeys;
|
|
403
403
|
};
|
|
404
|
+
platform_editor_hoverlink_ui_fixes_exp: {
|
|
405
|
+
values: ("control" | "css_changes_only" | "css_js_changes")[];
|
|
406
|
+
typeGuard: (value: unknown) => value is "control" | "css_changes_only" | "css_js_changes";
|
|
407
|
+
defaultValue: "control" | "css_changes_only" | "css_js_changes";
|
|
408
|
+
param: string;
|
|
409
|
+
productKeys?: import("./types").ProductKeys;
|
|
410
|
+
};
|
|
404
411
|
platform_hover_card_preview_panel: {
|
|
405
412
|
values: ("test" | "control")[];
|
|
406
413
|
typeGuard: (value: unknown) => value is "test" | "control";
|
|
@@ -401,6 +401,13 @@ export declare const editorExperimentsConfig: {
|
|
|
401
401
|
param: string;
|
|
402
402
|
productKeys?: import("./types").ProductKeys;
|
|
403
403
|
};
|
|
404
|
+
platform_editor_hoverlink_ui_fixes_exp: {
|
|
405
|
+
values: ("control" | "css_changes_only" | "css_js_changes")[];
|
|
406
|
+
typeGuard: (value: unknown) => value is "control" | "css_changes_only" | "css_js_changes";
|
|
407
|
+
defaultValue: "control" | "css_changes_only" | "css_js_changes";
|
|
408
|
+
param: string;
|
|
409
|
+
productKeys?: import("./types").ProductKeys;
|
|
410
|
+
};
|
|
404
411
|
platform_hover_card_preview_panel: {
|
|
405
412
|
values: ("test" | "control")[];
|
|
406
413
|
typeGuard: (value: unknown) => value is "test" | "control";
|
package/package.json
CHANGED