@atlaskit/tmp-editor-statsig 135.2.0 → 135.3.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 +10 -0
- package/dist/cjs/exp-test-overrides.js +1 -0
- package/dist/cjs/experiments-config.js +8 -0
- package/dist/es2019/exp-test-overrides.js +1 -0
- package/dist/es2019/experiments-config.js +8 -0
- package/dist/esm/exp-test-overrides.js +1 -0
- package/dist/esm/experiments-config.js +8 -0
- package/dist/types/experiments-config.d.ts +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 135.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`debd513af67a0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/debd513af67a0) -
|
|
8
|
+
MAUI-1017: Fix the Remix style dropdown showing a stale chart type after editing a chart (e.g.
|
|
9
|
+
line → bar). The backend-confirmed subtype is now recorded in the remix history for chart updates,
|
|
10
|
+
so the dropdown reflects the new type. Gated behind the `cc_maui_polish_changes_batch_2`
|
|
11
|
+
experiment.
|
|
12
|
+
|
|
3
13
|
## 135.2.0
|
|
4
14
|
|
|
5
15
|
### 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,
|
|
@@ -1451,6 +1451,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1451
1451
|
param: 'isEnabled',
|
|
1452
1452
|
defaultValue: false
|
|
1453
1453
|
}),
|
|
1454
|
+
// Added 2026-07-24
|
|
1455
|
+
cc_maui_polish_changes_batch_2: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1456
|
+
productKeys: {
|
|
1457
|
+
confluence: 'cc_maui_polish_changes_batch_2'
|
|
1458
|
+
},
|
|
1459
|
+
param: 'isEnabled',
|
|
1460
|
+
defaultValue: false
|
|
1461
|
+
}),
|
|
1454
1462
|
// Added 2026-03-05
|
|
1455
1463
|
'cc-mui-slides-experiment': (0, _experimentBuilders.createBooleanExperiment)({
|
|
1456
1464
|
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,
|
|
@@ -1445,6 +1445,14 @@ export const editorExperimentsConfig = {
|
|
|
1445
1445
|
param: 'isEnabled',
|
|
1446
1446
|
defaultValue: false
|
|
1447
1447
|
}),
|
|
1448
|
+
// Added 2026-07-24
|
|
1449
|
+
cc_maui_polish_changes_batch_2: createBooleanExperiment({
|
|
1450
|
+
productKeys: {
|
|
1451
|
+
confluence: 'cc_maui_polish_changes_batch_2'
|
|
1452
|
+
},
|
|
1453
|
+
param: 'isEnabled',
|
|
1454
|
+
defaultValue: false
|
|
1455
|
+
}),
|
|
1448
1456
|
// Added 2026-03-05
|
|
1449
1457
|
'cc-mui-slides-experiment': createBooleanExperiment({
|
|
1450
1458
|
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,
|
|
@@ -1445,6 +1445,14 @@ export var editorExperimentsConfig = {
|
|
|
1445
1445
|
param: 'isEnabled',
|
|
1446
1446
|
defaultValue: false
|
|
1447
1447
|
}),
|
|
1448
|
+
// Added 2026-07-24
|
|
1449
|
+
cc_maui_polish_changes_batch_2: createBooleanExperiment({
|
|
1450
|
+
productKeys: {
|
|
1451
|
+
confluence: 'cc_maui_polish_changes_batch_2'
|
|
1452
|
+
},
|
|
1453
|
+
param: 'isEnabled',
|
|
1454
|
+
defaultValue: false
|
|
1455
|
+
}),
|
|
1448
1456
|
// Added 2026-03-05
|
|
1449
1457
|
'cc-mui-slides-experiment': createBooleanExperiment({
|
|
1450
1458
|
productKeys: {
|
|
@@ -1106,6 +1106,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1106
1106
|
productKeys?: ProductKeys;
|
|
1107
1107
|
typeGuard: IsBooleanType;
|
|
1108
1108
|
};
|
|
1109
|
+
cc_maui_polish_changes_batch_2: {
|
|
1110
|
+
defaultValue: boolean;
|
|
1111
|
+
param: string;
|
|
1112
|
+
productKeys?: ProductKeys;
|
|
1113
|
+
typeGuard: IsBooleanType;
|
|
1114
|
+
};
|
|
1109
1115
|
'cc-mui-slides-experiment': {
|
|
1110
1116
|
defaultValue: boolean;
|
|
1111
1117
|
param: string;
|
package/package.json
CHANGED