@atlaskit/tmp-editor-statsig 132.3.1 → 132.5.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 +18 -0
- package/dist/cjs/exp-test-overrides.js +1 -0
- package/dist/cjs/experiments-config.js +16 -0
- package/dist/es2019/exp-test-overrides.js +1 -0
- package/dist/es2019/experiments-config.js +16 -0
- package/dist/esm/exp-test-overrides.js +1 -0
- package/dist/esm/experiments-config.js +16 -0
- package/dist/types/experiments-config.d.ts +12 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 132.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`6f1a6a07b4be1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6f1a6a07b4be1) -
|
|
8
|
+
Fixes malfunctioning sticky header row when header columns are merged
|
|
9
|
+
|
|
10
|
+
## 132.4.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`d1f841209d233`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d1f841209d233) -
|
|
15
|
+
[ux] Fix MAUI image loading cleanup on Rovo stream errors
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
|
|
3
21
|
## 132.3.1
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
|
@@ -21,6 +21,7 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
|
|
|
21
21
|
};
|
|
22
22
|
var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
23
23
|
'cc-maui-ai-edit-loading-experiment': true,
|
|
24
|
+
cc_maui_polish_changes_batch_1: false,
|
|
24
25
|
social_proof_3p_unauth_block_exp: false,
|
|
25
26
|
linking_platform_track_non_primary_3p_clicks: false,
|
|
26
27
|
platform_sl_3p_preauth_better_hovercard: true,
|
|
@@ -1417,6 +1417,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1417
1417
|
param: 'isEnabled',
|
|
1418
1418
|
defaultValue: false
|
|
1419
1419
|
}),
|
|
1420
|
+
// Added 2026-07-22
|
|
1421
|
+
cc_maui_polish_changes_batch_1: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1422
|
+
productKeys: {
|
|
1423
|
+
confluence: 'cc_maui_polish_changes_batch_1'
|
|
1424
|
+
},
|
|
1425
|
+
param: 'isEnabled',
|
|
1426
|
+
defaultValue: false
|
|
1427
|
+
}),
|
|
1420
1428
|
// Added 2026-03-05
|
|
1421
1429
|
'cc-mui-slides-experiment': (0, _experimentBuilders.createBooleanExperiment)({
|
|
1422
1430
|
productKeys: {
|
|
@@ -2250,6 +2258,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2250
2258
|
param: 'isEnabled',
|
|
2251
2259
|
defaultValue: false
|
|
2252
2260
|
}),
|
|
2261
|
+
// Added 2026-07-17
|
|
2262
|
+
platform_editor_fix_sticky_header_row: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2263
|
+
productKeys: {
|
|
2264
|
+
confluence: 'platform_editor_fix_sticky_header_row'
|
|
2265
|
+
},
|
|
2266
|
+
param: 'isEnabled',
|
|
2267
|
+
defaultValue: false
|
|
2268
|
+
}),
|
|
2253
2269
|
// Added 2026-06-10
|
|
2254
2270
|
confluence_editor_paste_3p_link_actions_menu: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2255
2271
|
productKeys: {
|
|
@@ -15,6 +15,7 @@ export const testMultivariateOverrides = {
|
|
|
15
15
|
};
|
|
16
16
|
export const testBooleanOverrides = {
|
|
17
17
|
'cc-maui-ai-edit-loading-experiment': true,
|
|
18
|
+
cc_maui_polish_changes_batch_1: false,
|
|
18
19
|
social_proof_3p_unauth_block_exp: false,
|
|
19
20
|
linking_platform_track_non_primary_3p_clicks: false,
|
|
20
21
|
platform_sl_3p_preauth_better_hovercard: true,
|
|
@@ -1411,6 +1411,14 @@ export const editorExperimentsConfig = {
|
|
|
1411
1411
|
param: 'isEnabled',
|
|
1412
1412
|
defaultValue: false
|
|
1413
1413
|
}),
|
|
1414
|
+
// Added 2026-07-22
|
|
1415
|
+
cc_maui_polish_changes_batch_1: createBooleanExperiment({
|
|
1416
|
+
productKeys: {
|
|
1417
|
+
confluence: 'cc_maui_polish_changes_batch_1'
|
|
1418
|
+
},
|
|
1419
|
+
param: 'isEnabled',
|
|
1420
|
+
defaultValue: false
|
|
1421
|
+
}),
|
|
1414
1422
|
// Added 2026-03-05
|
|
1415
1423
|
'cc-mui-slides-experiment': createBooleanExperiment({
|
|
1416
1424
|
productKeys: {
|
|
@@ -2244,6 +2252,14 @@ export const editorExperimentsConfig = {
|
|
|
2244
2252
|
param: 'isEnabled',
|
|
2245
2253
|
defaultValue: false
|
|
2246
2254
|
}),
|
|
2255
|
+
// Added 2026-07-17
|
|
2256
|
+
platform_editor_fix_sticky_header_row: createBooleanExperiment({
|
|
2257
|
+
productKeys: {
|
|
2258
|
+
confluence: 'platform_editor_fix_sticky_header_row'
|
|
2259
|
+
},
|
|
2260
|
+
param: 'isEnabled',
|
|
2261
|
+
defaultValue: false
|
|
2262
|
+
}),
|
|
2247
2263
|
// Added 2026-06-10
|
|
2248
2264
|
confluence_editor_paste_3p_link_actions_menu: createBooleanExperiment({
|
|
2249
2265
|
productKeys: {
|
|
@@ -15,6 +15,7 @@ export var testMultivariateOverrides = {
|
|
|
15
15
|
};
|
|
16
16
|
export var testBooleanOverrides = {
|
|
17
17
|
'cc-maui-ai-edit-loading-experiment': true,
|
|
18
|
+
cc_maui_polish_changes_batch_1: false,
|
|
18
19
|
social_proof_3p_unauth_block_exp: false,
|
|
19
20
|
linking_platform_track_non_primary_3p_clicks: false,
|
|
20
21
|
platform_sl_3p_preauth_better_hovercard: true,
|
|
@@ -1411,6 +1411,14 @@ export var editorExperimentsConfig = {
|
|
|
1411
1411
|
param: 'isEnabled',
|
|
1412
1412
|
defaultValue: false
|
|
1413
1413
|
}),
|
|
1414
|
+
// Added 2026-07-22
|
|
1415
|
+
cc_maui_polish_changes_batch_1: createBooleanExperiment({
|
|
1416
|
+
productKeys: {
|
|
1417
|
+
confluence: 'cc_maui_polish_changes_batch_1'
|
|
1418
|
+
},
|
|
1419
|
+
param: 'isEnabled',
|
|
1420
|
+
defaultValue: false
|
|
1421
|
+
}),
|
|
1414
1422
|
// Added 2026-03-05
|
|
1415
1423
|
'cc-mui-slides-experiment': createBooleanExperiment({
|
|
1416
1424
|
productKeys: {
|
|
@@ -2244,6 +2252,14 @@ export var editorExperimentsConfig = {
|
|
|
2244
2252
|
param: 'isEnabled',
|
|
2245
2253
|
defaultValue: false
|
|
2246
2254
|
}),
|
|
2255
|
+
// Added 2026-07-17
|
|
2256
|
+
platform_editor_fix_sticky_header_row: createBooleanExperiment({
|
|
2257
|
+
productKeys: {
|
|
2258
|
+
confluence: 'platform_editor_fix_sticky_header_row'
|
|
2259
|
+
},
|
|
2260
|
+
param: 'isEnabled',
|
|
2261
|
+
defaultValue: false
|
|
2262
|
+
}),
|
|
2247
2263
|
// Added 2026-06-10
|
|
2248
2264
|
confluence_editor_paste_3p_link_actions_menu: createBooleanExperiment({
|
|
2249
2265
|
productKeys: {
|
|
@@ -1088,6 +1088,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1088
1088
|
productKeys?: ProductKeys;
|
|
1089
1089
|
typeGuard: IsBooleanType;
|
|
1090
1090
|
};
|
|
1091
|
+
cc_maui_polish_changes_batch_1: {
|
|
1092
|
+
defaultValue: boolean;
|
|
1093
|
+
param: string;
|
|
1094
|
+
productKeys?: ProductKeys;
|
|
1095
|
+
typeGuard: IsBooleanType;
|
|
1096
|
+
};
|
|
1091
1097
|
'cc-mui-slides-experiment': {
|
|
1092
1098
|
defaultValue: boolean;
|
|
1093
1099
|
param: string;
|
|
@@ -1605,6 +1611,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1605
1611
|
productKeys?: ProductKeys;
|
|
1606
1612
|
typeGuard: IsBooleanType;
|
|
1607
1613
|
};
|
|
1614
|
+
platform_editor_fix_sticky_header_row: {
|
|
1615
|
+
defaultValue: boolean;
|
|
1616
|
+
param: string;
|
|
1617
|
+
productKeys?: ProductKeys;
|
|
1618
|
+
typeGuard: IsBooleanType;
|
|
1619
|
+
};
|
|
1608
1620
|
platform_editor_paste_actions_menu_v2: {
|
|
1609
1621
|
defaultValue: 'control' | 'hasSpellingAndGrammar' | 'hasAltAiActions';
|
|
1610
1622
|
param: string;
|
package/package.json
CHANGED