@atlaskit/tmp-editor-statsig 135.2.0 → 135.4.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 +28 -0
- package/dist/cjs/exp-test-overrides.js +1 -0
- package/dist/cjs/experiments-config.js +16 -1
- package/dist/es2019/exp-test-overrides.js +1 -0
- package/dist/es2019/experiments-config.js +16 -1
- package/dist/esm/exp-test-overrides.js +1 -0
- package/dist/esm/experiments-config.js +16 -1
- package/dist/types/experiments-config.d.ts +12 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 135.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`069c5c0253ba5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/069c5c0253ba5) -
|
|
8
|
+
[ux] Improve Remix button hover reliability near the right edge of narrow editor layouts behind
|
|
9
|
+
the `cc_maui_remix_button_hover_corridor` experiment.
|
|
10
|
+
|
|
11
|
+
Consumers can check the new typed boolean experiment at the behavior callsite:
|
|
12
|
+
|
|
13
|
+
```ts
|
|
14
|
+
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
15
|
+
|
|
16
|
+
if (expValEquals('cc_maui_remix_button_hover_corridor', 'isEnabled', true)) {
|
|
17
|
+
// Apply the treatment behavior.
|
|
18
|
+
}
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## 135.3.0
|
|
22
|
+
|
|
23
|
+
### Minor Changes
|
|
24
|
+
|
|
25
|
+
- [`debd513af67a0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/debd513af67a0) -
|
|
26
|
+
MAUI-1017: Fix the Remix style dropdown showing a stale chart type after editing a chart (e.g.
|
|
27
|
+
line → bar). The backend-confirmed subtype is now recorded in the remix history for chart updates,
|
|
28
|
+
so the dropdown reflects the new type. Gated behind the `cc_maui_polish_changes_batch_2`
|
|
29
|
+
experiment.
|
|
30
|
+
|
|
3
31
|
## 135.2.0
|
|
4
32
|
|
|
5
33
|
### Minor Changes
|
|
@@ -23,6 +23,7 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
|
|
|
23
23
|
var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
24
24
|
'cc-maui-ai-edit-loading-experiment': true,
|
|
25
25
|
cc_maui_polish_changes_batch_1: false,
|
|
26
|
+
cc_maui_polish_changes_batch_2: false,
|
|
26
27
|
social_proof_3p_unauth_block_exp: false,
|
|
27
28
|
linking_platform_track_non_primary_3p_clicks: false,
|
|
28
29
|
platform_sl_3p_preauth_better_hovercard: true,
|
|
@@ -38,7 +38,14 @@ var disallowsProductKeys = exports.disallowsProductKeys = ['platform_editor_bloc
|
|
|
38
38
|
*/
|
|
39
39
|
var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
40
40
|
// new format to avoid collisions with other users when updating the file
|
|
41
|
-
|
|
41
|
+
// Added 2026-07-18
|
|
42
|
+
cc_maui_remix_button_hover_corridor: (0, _experimentBuilders.createBooleanExperiment)({
|
|
43
|
+
productKeys: {
|
|
44
|
+
confluence: 'cc_maui_remix_button_hover_corridor'
|
|
45
|
+
},
|
|
46
|
+
param: 'isEnabled',
|
|
47
|
+
defaultValue: false
|
|
48
|
+
}),
|
|
42
49
|
// Added 2026-07-24
|
|
43
50
|
platform_editor_layout_column_delete_shortcut_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
44
51
|
productKeys: {
|
|
@@ -1451,6 +1458,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1451
1458
|
param: 'isEnabled',
|
|
1452
1459
|
defaultValue: false
|
|
1453
1460
|
}),
|
|
1461
|
+
// Added 2026-07-24
|
|
1462
|
+
cc_maui_polish_changes_batch_2: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1463
|
+
productKeys: {
|
|
1464
|
+
confluence: 'cc_maui_polish_changes_batch_2'
|
|
1465
|
+
},
|
|
1466
|
+
param: 'isEnabled',
|
|
1467
|
+
defaultValue: false
|
|
1468
|
+
}),
|
|
1454
1469
|
// Added 2026-03-05
|
|
1455
1470
|
'cc-mui-slides-experiment': (0, _experimentBuilders.createBooleanExperiment)({
|
|
1456
1471
|
productKeys: {
|
|
@@ -17,6 +17,7 @@ export const testMultivariateOverrides = {
|
|
|
17
17
|
export const testBooleanOverrides = {
|
|
18
18
|
'cc-maui-ai-edit-loading-experiment': true,
|
|
19
19
|
cc_maui_polish_changes_batch_1: false,
|
|
20
|
+
cc_maui_polish_changes_batch_2: false,
|
|
20
21
|
social_proof_3p_unauth_block_exp: false,
|
|
21
22
|
linking_platform_track_non_primary_3p_clicks: false,
|
|
22
23
|
platform_sl_3p_preauth_better_hovercard: true,
|
|
@@ -32,7 +32,14 @@ export const disallowsProductKeys = ['platform_editor_block_menu', 'platform_edi
|
|
|
32
32
|
*/
|
|
33
33
|
export const editorExperimentsConfig = {
|
|
34
34
|
// new format to avoid collisions with other users when updating the file
|
|
35
|
-
|
|
35
|
+
// Added 2026-07-18
|
|
36
|
+
cc_maui_remix_button_hover_corridor: createBooleanExperiment({
|
|
37
|
+
productKeys: {
|
|
38
|
+
confluence: 'cc_maui_remix_button_hover_corridor'
|
|
39
|
+
},
|
|
40
|
+
param: 'isEnabled',
|
|
41
|
+
defaultValue: false
|
|
42
|
+
}),
|
|
36
43
|
// Added 2026-07-24
|
|
37
44
|
platform_editor_layout_column_delete_shortcut_fix: createBooleanExperiment({
|
|
38
45
|
productKeys: {
|
|
@@ -1445,6 +1452,14 @@ export const editorExperimentsConfig = {
|
|
|
1445
1452
|
param: 'isEnabled',
|
|
1446
1453
|
defaultValue: false
|
|
1447
1454
|
}),
|
|
1455
|
+
// Added 2026-07-24
|
|
1456
|
+
cc_maui_polish_changes_batch_2: createBooleanExperiment({
|
|
1457
|
+
productKeys: {
|
|
1458
|
+
confluence: 'cc_maui_polish_changes_batch_2'
|
|
1459
|
+
},
|
|
1460
|
+
param: 'isEnabled',
|
|
1461
|
+
defaultValue: false
|
|
1462
|
+
}),
|
|
1448
1463
|
// Added 2026-03-05
|
|
1449
1464
|
'cc-mui-slides-experiment': createBooleanExperiment({
|
|
1450
1465
|
productKeys: {
|
|
@@ -17,6 +17,7 @@ export var testMultivariateOverrides = {
|
|
|
17
17
|
export var testBooleanOverrides = {
|
|
18
18
|
'cc-maui-ai-edit-loading-experiment': true,
|
|
19
19
|
cc_maui_polish_changes_batch_1: false,
|
|
20
|
+
cc_maui_polish_changes_batch_2: false,
|
|
20
21
|
social_proof_3p_unauth_block_exp: false,
|
|
21
22
|
linking_platform_track_non_primary_3p_clicks: false,
|
|
22
23
|
platform_sl_3p_preauth_better_hovercard: true,
|
|
@@ -32,7 +32,14 @@ export var disallowsProductKeys = ['platform_editor_block_menu', 'platform_edito
|
|
|
32
32
|
*/
|
|
33
33
|
export var editorExperimentsConfig = {
|
|
34
34
|
// new format to avoid collisions with other users when updating the file
|
|
35
|
-
|
|
35
|
+
// Added 2026-07-18
|
|
36
|
+
cc_maui_remix_button_hover_corridor: createBooleanExperiment({
|
|
37
|
+
productKeys: {
|
|
38
|
+
confluence: 'cc_maui_remix_button_hover_corridor'
|
|
39
|
+
},
|
|
40
|
+
param: 'isEnabled',
|
|
41
|
+
defaultValue: false
|
|
42
|
+
}),
|
|
36
43
|
// Added 2026-07-24
|
|
37
44
|
platform_editor_layout_column_delete_shortcut_fix: createBooleanExperiment({
|
|
38
45
|
productKeys: {
|
|
@@ -1445,6 +1452,14 @@ export var editorExperimentsConfig = {
|
|
|
1445
1452
|
param: 'isEnabled',
|
|
1446
1453
|
defaultValue: false
|
|
1447
1454
|
}),
|
|
1455
|
+
// Added 2026-07-24
|
|
1456
|
+
cc_maui_polish_changes_batch_2: createBooleanExperiment({
|
|
1457
|
+
productKeys: {
|
|
1458
|
+
confluence: 'cc_maui_polish_changes_batch_2'
|
|
1459
|
+
},
|
|
1460
|
+
param: 'isEnabled',
|
|
1461
|
+
defaultValue: false
|
|
1462
|
+
}),
|
|
1448
1463
|
// Added 2026-03-05
|
|
1449
1464
|
'cc-mui-slides-experiment': createBooleanExperiment({
|
|
1450
1465
|
productKeys: {
|
|
@@ -27,6 +27,12 @@ export declare const editorExperimentsConfig: {
|
|
|
27
27
|
productKeys?: ProductKeys;
|
|
28
28
|
typeGuard: IsBooleanType;
|
|
29
29
|
};
|
|
30
|
+
cc_maui_remix_button_hover_corridor: {
|
|
31
|
+
defaultValue: boolean;
|
|
32
|
+
param: string;
|
|
33
|
+
productKeys?: ProductKeys;
|
|
34
|
+
typeGuard: IsBooleanType;
|
|
35
|
+
};
|
|
30
36
|
platform_editor_agent_be_streaming: {
|
|
31
37
|
defaultValue: boolean;
|
|
32
38
|
param: string;
|
|
@@ -1106,6 +1112,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1106
1112
|
productKeys?: ProductKeys;
|
|
1107
1113
|
typeGuard: IsBooleanType;
|
|
1108
1114
|
};
|
|
1115
|
+
cc_maui_polish_changes_batch_2: {
|
|
1116
|
+
defaultValue: boolean;
|
|
1117
|
+
param: string;
|
|
1118
|
+
productKeys?: ProductKeys;
|
|
1119
|
+
typeGuard: IsBooleanType;
|
|
1120
|
+
};
|
|
1109
1121
|
'cc-mui-slides-experiment': {
|
|
1110
1122
|
defaultValue: boolean;
|
|
1111
1123
|
param: string;
|
package/package.json
CHANGED