@atlaskit/tmp-editor-statsig 135.6.0 → 135.8.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 +25 -0
- package/dist/cjs/exp-test-overrides.js +2 -0
- package/dist/cjs/experiments-config.js +33 -0
- package/dist/es2019/exp-test-overrides.js +2 -0
- package/dist/es2019/experiments-config.js +33 -0
- package/dist/esm/exp-test-overrides.js +2 -0
- package/dist/esm/experiments-config.js +33 -0
- package/dist/types/experiments-config.d.ts +24 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 135.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`d98f609f1fc23`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d98f609f1fc23) -
|
|
8
|
+
Register the platform_editor_nest_expand_in_panel boolean experiment used to gate the
|
|
9
|
+
expand-in-panel nesting scenario.
|
|
10
|
+
- [`9425f3fa081e4`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9425f3fa081e4) -
|
|
11
|
+
Fix nested content selection inside layouts
|
|
12
|
+
- [`09b86875f59c3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/09b86875f59c3) -
|
|
13
|
+
Add cc_maui_polish_changes_batch_3 and cc_maui_polish_changes_batch_4 editor experiment gates
|
|
14
|
+
- [`3cfefe56db017`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3cfefe56db017) -
|
|
15
|
+
Close the Confluence Remix chooser when a remix is cancelled
|
|
16
|
+
|
|
17
|
+
## 135.7.0
|
|
18
|
+
|
|
19
|
+
### Minor Changes
|
|
20
|
+
|
|
21
|
+
- [`51c33ef5349b6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/51c33ef5349b6) -
|
|
22
|
+
Enable compatibility with React 19.2.0
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
|
|
3
28
|
## 135.6.0
|
|
4
29
|
|
|
5
30
|
### Minor Changes
|
|
@@ -24,6 +24,8 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
24
24
|
'cc-maui-ai-edit-loading-experiment': true,
|
|
25
25
|
cc_maui_polish_changes_batch_1: false,
|
|
26
26
|
cc_maui_polish_changes_batch_2: false,
|
|
27
|
+
cc_maui_polish_changes_batch_3: false,
|
|
28
|
+
cc_maui_polish_changes_batch_4: false,
|
|
27
29
|
social_proof_3p_unauth_block_exp: false,
|
|
28
30
|
linking_platform_track_non_primary_3p_clicks: false,
|
|
29
31
|
platform_sl_3p_preauth_better_hovercard: true,
|
|
@@ -1474,6 +1474,22 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1474
1474
|
param: 'isEnabled',
|
|
1475
1475
|
defaultValue: false
|
|
1476
1476
|
}),
|
|
1477
|
+
// Added 2026-07-29
|
|
1478
|
+
cc_maui_polish_changes_batch_3: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1479
|
+
productKeys: {
|
|
1480
|
+
confluence: 'cc_maui_polish_changes_batch_3'
|
|
1481
|
+
},
|
|
1482
|
+
param: 'isEnabled',
|
|
1483
|
+
defaultValue: false
|
|
1484
|
+
}),
|
|
1485
|
+
// Added 2026-07-29
|
|
1486
|
+
cc_maui_polish_changes_batch_4: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1487
|
+
productKeys: {
|
|
1488
|
+
confluence: 'cc_maui_polish_changes_batch_4'
|
|
1489
|
+
},
|
|
1490
|
+
param: 'isEnabled',
|
|
1491
|
+
defaultValue: false
|
|
1492
|
+
}),
|
|
1477
1493
|
// Added 2026-03-05
|
|
1478
1494
|
'cc-mui-slides-experiment': (0, _experimentBuilders.createBooleanExperiment)({
|
|
1479
1495
|
productKeys: {
|
|
@@ -1960,6 +1976,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1960
1976
|
param: 'isEnabled',
|
|
1961
1977
|
defaultValue: false
|
|
1962
1978
|
}),
|
|
1979
|
+
// Added 2026-07-29
|
|
1980
|
+
platform_editor_layout_column_selection_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1981
|
+
productKeys: {
|
|
1982
|
+
confluence: 'platform_editor_layout_column_selection_fix',
|
|
1983
|
+
jira: 'platform_editor_layout_column_selection_fix'
|
|
1984
|
+
},
|
|
1985
|
+
param: 'isEnabled',
|
|
1986
|
+
defaultValue: false
|
|
1987
|
+
}),
|
|
1963
1988
|
// Added 2026-06-15
|
|
1964
1989
|
platform_editor_layout_column_valign_rendering: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1965
1990
|
productKeys: {
|
|
@@ -2284,6 +2309,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2284
2309
|
param: 'isEnabled',
|
|
2285
2310
|
defaultValue: false
|
|
2286
2311
|
}),
|
|
2312
|
+
// Added 2026-07-24
|
|
2313
|
+
platform_editor_nest_expand_in_panel: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2314
|
+
productKeys: {
|
|
2315
|
+
confluence: 'platform_editor_nest_expand_in_panel'
|
|
2316
|
+
},
|
|
2317
|
+
param: 'isEnabled',
|
|
2318
|
+
defaultValue: false
|
|
2319
|
+
}),
|
|
2287
2320
|
// Added 2026-05-20
|
|
2288
2321
|
platform_editor_default_toolbar_state: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2289
2322
|
productKeys: {
|
|
@@ -18,6 +18,8 @@ export const testBooleanOverrides = {
|
|
|
18
18
|
'cc-maui-ai-edit-loading-experiment': true,
|
|
19
19
|
cc_maui_polish_changes_batch_1: false,
|
|
20
20
|
cc_maui_polish_changes_batch_2: false,
|
|
21
|
+
cc_maui_polish_changes_batch_3: false,
|
|
22
|
+
cc_maui_polish_changes_batch_4: false,
|
|
21
23
|
social_proof_3p_unauth_block_exp: false,
|
|
22
24
|
linking_platform_track_non_primary_3p_clicks: false,
|
|
23
25
|
platform_sl_3p_preauth_better_hovercard: true,
|
|
@@ -1468,6 +1468,22 @@ export const editorExperimentsConfig = {
|
|
|
1468
1468
|
param: 'isEnabled',
|
|
1469
1469
|
defaultValue: false
|
|
1470
1470
|
}),
|
|
1471
|
+
// Added 2026-07-29
|
|
1472
|
+
cc_maui_polish_changes_batch_3: createBooleanExperiment({
|
|
1473
|
+
productKeys: {
|
|
1474
|
+
confluence: 'cc_maui_polish_changes_batch_3'
|
|
1475
|
+
},
|
|
1476
|
+
param: 'isEnabled',
|
|
1477
|
+
defaultValue: false
|
|
1478
|
+
}),
|
|
1479
|
+
// Added 2026-07-29
|
|
1480
|
+
cc_maui_polish_changes_batch_4: createBooleanExperiment({
|
|
1481
|
+
productKeys: {
|
|
1482
|
+
confluence: 'cc_maui_polish_changes_batch_4'
|
|
1483
|
+
},
|
|
1484
|
+
param: 'isEnabled',
|
|
1485
|
+
defaultValue: false
|
|
1486
|
+
}),
|
|
1471
1487
|
// Added 2026-03-05
|
|
1472
1488
|
'cc-mui-slides-experiment': createBooleanExperiment({
|
|
1473
1489
|
productKeys: {
|
|
@@ -1954,6 +1970,15 @@ export const editorExperimentsConfig = {
|
|
|
1954
1970
|
param: 'isEnabled',
|
|
1955
1971
|
defaultValue: false
|
|
1956
1972
|
}),
|
|
1973
|
+
// Added 2026-07-29
|
|
1974
|
+
platform_editor_layout_column_selection_fix: createBooleanExperiment({
|
|
1975
|
+
productKeys: {
|
|
1976
|
+
confluence: 'platform_editor_layout_column_selection_fix',
|
|
1977
|
+
jira: 'platform_editor_layout_column_selection_fix'
|
|
1978
|
+
},
|
|
1979
|
+
param: 'isEnabled',
|
|
1980
|
+
defaultValue: false
|
|
1981
|
+
}),
|
|
1957
1982
|
// Added 2026-06-15
|
|
1958
1983
|
platform_editor_layout_column_valign_rendering: createBooleanExperiment({
|
|
1959
1984
|
productKeys: {
|
|
@@ -2278,6 +2303,14 @@ export const editorExperimentsConfig = {
|
|
|
2278
2303
|
param: 'isEnabled',
|
|
2279
2304
|
defaultValue: false
|
|
2280
2305
|
}),
|
|
2306
|
+
// Added 2026-07-24
|
|
2307
|
+
platform_editor_nest_expand_in_panel: createBooleanExperiment({
|
|
2308
|
+
productKeys: {
|
|
2309
|
+
confluence: 'platform_editor_nest_expand_in_panel'
|
|
2310
|
+
},
|
|
2311
|
+
param: 'isEnabled',
|
|
2312
|
+
defaultValue: false
|
|
2313
|
+
}),
|
|
2281
2314
|
// Added 2026-05-20
|
|
2282
2315
|
platform_editor_default_toolbar_state: createBooleanExperiment({
|
|
2283
2316
|
productKeys: {
|
|
@@ -18,6 +18,8 @@ export var testBooleanOverrides = {
|
|
|
18
18
|
'cc-maui-ai-edit-loading-experiment': true,
|
|
19
19
|
cc_maui_polish_changes_batch_1: false,
|
|
20
20
|
cc_maui_polish_changes_batch_2: false,
|
|
21
|
+
cc_maui_polish_changes_batch_3: false,
|
|
22
|
+
cc_maui_polish_changes_batch_4: false,
|
|
21
23
|
social_proof_3p_unauth_block_exp: false,
|
|
22
24
|
linking_platform_track_non_primary_3p_clicks: false,
|
|
23
25
|
platform_sl_3p_preauth_better_hovercard: true,
|
|
@@ -1468,6 +1468,22 @@ export var editorExperimentsConfig = {
|
|
|
1468
1468
|
param: 'isEnabled',
|
|
1469
1469
|
defaultValue: false
|
|
1470
1470
|
}),
|
|
1471
|
+
// Added 2026-07-29
|
|
1472
|
+
cc_maui_polish_changes_batch_3: createBooleanExperiment({
|
|
1473
|
+
productKeys: {
|
|
1474
|
+
confluence: 'cc_maui_polish_changes_batch_3'
|
|
1475
|
+
},
|
|
1476
|
+
param: 'isEnabled',
|
|
1477
|
+
defaultValue: false
|
|
1478
|
+
}),
|
|
1479
|
+
// Added 2026-07-29
|
|
1480
|
+
cc_maui_polish_changes_batch_4: createBooleanExperiment({
|
|
1481
|
+
productKeys: {
|
|
1482
|
+
confluence: 'cc_maui_polish_changes_batch_4'
|
|
1483
|
+
},
|
|
1484
|
+
param: 'isEnabled',
|
|
1485
|
+
defaultValue: false
|
|
1486
|
+
}),
|
|
1471
1487
|
// Added 2026-03-05
|
|
1472
1488
|
'cc-mui-slides-experiment': createBooleanExperiment({
|
|
1473
1489
|
productKeys: {
|
|
@@ -1954,6 +1970,15 @@ export var editorExperimentsConfig = {
|
|
|
1954
1970
|
param: 'isEnabled',
|
|
1955
1971
|
defaultValue: false
|
|
1956
1972
|
}),
|
|
1973
|
+
// Added 2026-07-29
|
|
1974
|
+
platform_editor_layout_column_selection_fix: createBooleanExperiment({
|
|
1975
|
+
productKeys: {
|
|
1976
|
+
confluence: 'platform_editor_layout_column_selection_fix',
|
|
1977
|
+
jira: 'platform_editor_layout_column_selection_fix'
|
|
1978
|
+
},
|
|
1979
|
+
param: 'isEnabled',
|
|
1980
|
+
defaultValue: false
|
|
1981
|
+
}),
|
|
1957
1982
|
// Added 2026-06-15
|
|
1958
1983
|
platform_editor_layout_column_valign_rendering: createBooleanExperiment({
|
|
1959
1984
|
productKeys: {
|
|
@@ -2278,6 +2303,14 @@ export var editorExperimentsConfig = {
|
|
|
2278
2303
|
param: 'isEnabled',
|
|
2279
2304
|
defaultValue: false
|
|
2280
2305
|
}),
|
|
2306
|
+
// Added 2026-07-24
|
|
2307
|
+
platform_editor_nest_expand_in_panel: createBooleanExperiment({
|
|
2308
|
+
productKeys: {
|
|
2309
|
+
confluence: 'platform_editor_nest_expand_in_panel'
|
|
2310
|
+
},
|
|
2311
|
+
param: 'isEnabled',
|
|
2312
|
+
defaultValue: false
|
|
2313
|
+
}),
|
|
2281
2314
|
// Added 2026-05-20
|
|
2282
2315
|
platform_editor_default_toolbar_state: createBooleanExperiment({
|
|
2283
2316
|
productKeys: {
|
|
@@ -1028,6 +1028,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1028
1028
|
productKeys?: ProductKeys;
|
|
1029
1029
|
typeGuard: IsBooleanType;
|
|
1030
1030
|
};
|
|
1031
|
+
platform_editor_layout_column_selection_fix: {
|
|
1032
|
+
defaultValue: boolean;
|
|
1033
|
+
param: string;
|
|
1034
|
+
productKeys?: ProductKeys;
|
|
1035
|
+
typeGuard: IsBooleanType;
|
|
1036
|
+
};
|
|
1031
1037
|
platform_editor_layout_column_valign_rendering: {
|
|
1032
1038
|
defaultValue: boolean;
|
|
1033
1039
|
param: string;
|
|
@@ -1124,6 +1130,18 @@ export declare const editorExperimentsConfig: {
|
|
|
1124
1130
|
productKeys?: ProductKeys;
|
|
1125
1131
|
typeGuard: IsBooleanType;
|
|
1126
1132
|
};
|
|
1133
|
+
cc_maui_polish_changes_batch_3: {
|
|
1134
|
+
defaultValue: boolean;
|
|
1135
|
+
param: string;
|
|
1136
|
+
productKeys?: ProductKeys;
|
|
1137
|
+
typeGuard: IsBooleanType;
|
|
1138
|
+
};
|
|
1139
|
+
cc_maui_polish_changes_batch_4: {
|
|
1140
|
+
defaultValue: boolean;
|
|
1141
|
+
param: string;
|
|
1142
|
+
productKeys?: ProductKeys;
|
|
1143
|
+
typeGuard: IsBooleanType;
|
|
1144
|
+
};
|
|
1127
1145
|
'cc-mui-slides-experiment': {
|
|
1128
1146
|
defaultValue: boolean;
|
|
1129
1147
|
param: string;
|
|
@@ -1690,6 +1708,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1690
1708
|
productKeys?: ProductKeys;
|
|
1691
1709
|
typeGuard: IsBooleanType;
|
|
1692
1710
|
};
|
|
1711
|
+
platform_editor_nest_expand_in_panel: {
|
|
1712
|
+
defaultValue: boolean;
|
|
1713
|
+
param: string;
|
|
1714
|
+
productKeys?: ProductKeys;
|
|
1715
|
+
typeGuard: IsBooleanType;
|
|
1716
|
+
};
|
|
1693
1717
|
platform_rovo_support_create_inline_comment: {
|
|
1694
1718
|
defaultValue: boolean;
|
|
1695
1719
|
param: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tmp-editor-statsig",
|
|
3
|
-
"version": "135.
|
|
3
|
+
"version": "135.8.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",
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@atlassian/feature-flags-test-utils": "^1.2.0",
|
|
43
|
-
"react": "^
|
|
43
|
+
"react": "^19.2.0"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
|
-
"react": "^18.2.0"
|
|
46
|
+
"react": "^18.2.0 || ^19.2.0"
|
|
47
47
|
}
|
|
48
48
|
}
|