@atlaskit/tmp-editor-statsig 54.0.1 → 54.2.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 +22 -0
- package/dist/cjs/experiments-config.js +24 -0
- package/dist/es2019/experiments-config.js +24 -0
- package/dist/esm/experiments-config.js +24 -0
- package/dist/types/experiments-config.d.ts +18 -0
- package/dist/types-ts4.5/experiments-config.d.ts +18 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 54.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`e26d5e2ad8468`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e26d5e2ad8468) -
|
|
8
|
+
[ux] ENGHEALTH-49543 use system color HighlightText for text color when background is set to
|
|
9
|
+
system color Highlight
|
|
10
|
+
- [`e9ef7c6fc5370`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e9ef7c6fc5370) -
|
|
11
|
+
EDITOR-6179: Enable SSR Streaming for Edit Page and Live Doc routes.
|
|
12
|
+
- Add `platform_editor_editor_ssr_streaming` experiment to `tmp-editor-statsig` experiments
|
|
13
|
+
config.
|
|
14
|
+
- `EditorSSRRenderer`: replace `useLayoutEffect`+`containerRef` DOM mutation with
|
|
15
|
+
`dangerouslySetInnerHTML` for rendering serialized editor HTML, enabling correct rendering in
|
|
16
|
+
`renderToPipeableStream` SSR streaming context.
|
|
17
|
+
|
|
18
|
+
## 54.1.0
|
|
19
|
+
|
|
20
|
+
### Minor Changes
|
|
21
|
+
|
|
22
|
+
- [`24f029e3a215c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/24f029e3a215c) -
|
|
23
|
+
Gate Ask Rovo MAUI edit UI behind cc-maui-experiment-phase-2
|
|
24
|
+
|
|
3
25
|
## 54.0.1
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
|
@@ -420,6 +420,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
420
420
|
param: 'isEnabled',
|
|
421
421
|
defaultValue: false
|
|
422
422
|
}),
|
|
423
|
+
// Added 2026-03-30
|
|
424
|
+
platform_editor_editor_ssr_streaming: (0, _experimentBuilders.createBooleanExperiment)({
|
|
425
|
+
productKeys: {
|
|
426
|
+
confluence: 'platform_editor_editor_ssr_streaming'
|
|
427
|
+
},
|
|
428
|
+
param: 'isEnabled',
|
|
429
|
+
defaultValue: false
|
|
430
|
+
}),
|
|
423
431
|
// Added 2025-01-19
|
|
424
432
|
platform_editor_ai_edit_response_in_preview: (0, _experimentBuilders.createBooleanExperiment)({
|
|
425
433
|
productKeys: {
|
|
@@ -1404,6 +1412,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1404
1412
|
param: 'isEnabled',
|
|
1405
1413
|
defaultValue: false
|
|
1406
1414
|
}),
|
|
1415
|
+
// Added 2026-04-06
|
|
1416
|
+
'cc-maui-experiment-phase-2': (0, _experimentBuilders.createBooleanExperiment)({
|
|
1417
|
+
productKeys: {
|
|
1418
|
+
confluence: 'cc-maui-experiment-phase-2'
|
|
1419
|
+
},
|
|
1420
|
+
param: 'isEnabled',
|
|
1421
|
+
defaultValue: false
|
|
1422
|
+
}),
|
|
1407
1423
|
// Added 2026-03-05
|
|
1408
1424
|
'cc-mui-slides-experiment': (0, _experimentBuilders.createBooleanExperiment)({
|
|
1409
1425
|
productKeys: {
|
|
@@ -1847,6 +1863,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1847
1863
|
param: 'isEnabled',
|
|
1848
1864
|
defaultValue: false
|
|
1849
1865
|
}),
|
|
1866
|
+
// Added 2026-02-004
|
|
1867
|
+
platform_editor_user_highlight_contrast: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1868
|
+
productKeys: {
|
|
1869
|
+
confluence: 'platform_editor_user_highlight_contrast'
|
|
1870
|
+
},
|
|
1871
|
+
param: 'isEnabled',
|
|
1872
|
+
defaultValue: false
|
|
1873
|
+
}),
|
|
1850
1874
|
// Added 2026-03-25
|
|
1851
1875
|
platform_editor_improve_preset_builder_logging: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1852
1876
|
productKeys: {
|
|
@@ -414,6 +414,14 @@ export const editorExperimentsConfig = {
|
|
|
414
414
|
param: 'isEnabled',
|
|
415
415
|
defaultValue: false
|
|
416
416
|
}),
|
|
417
|
+
// Added 2026-03-30
|
|
418
|
+
platform_editor_editor_ssr_streaming: createBooleanExperiment({
|
|
419
|
+
productKeys: {
|
|
420
|
+
confluence: 'platform_editor_editor_ssr_streaming'
|
|
421
|
+
},
|
|
422
|
+
param: 'isEnabled',
|
|
423
|
+
defaultValue: false
|
|
424
|
+
}),
|
|
417
425
|
// Added 2025-01-19
|
|
418
426
|
platform_editor_ai_edit_response_in_preview: createBooleanExperiment({
|
|
419
427
|
productKeys: {
|
|
@@ -1398,6 +1406,14 @@ export const editorExperimentsConfig = {
|
|
|
1398
1406
|
param: 'isEnabled',
|
|
1399
1407
|
defaultValue: false
|
|
1400
1408
|
}),
|
|
1409
|
+
// Added 2026-04-06
|
|
1410
|
+
'cc-maui-experiment-phase-2': createBooleanExperiment({
|
|
1411
|
+
productKeys: {
|
|
1412
|
+
confluence: 'cc-maui-experiment-phase-2'
|
|
1413
|
+
},
|
|
1414
|
+
param: 'isEnabled',
|
|
1415
|
+
defaultValue: false
|
|
1416
|
+
}),
|
|
1401
1417
|
// Added 2026-03-05
|
|
1402
1418
|
'cc-mui-slides-experiment': createBooleanExperiment({
|
|
1403
1419
|
productKeys: {
|
|
@@ -1841,6 +1857,14 @@ export const editorExperimentsConfig = {
|
|
|
1841
1857
|
param: 'isEnabled',
|
|
1842
1858
|
defaultValue: false
|
|
1843
1859
|
}),
|
|
1860
|
+
// Added 2026-02-004
|
|
1861
|
+
platform_editor_user_highlight_contrast: createBooleanExperiment({
|
|
1862
|
+
productKeys: {
|
|
1863
|
+
confluence: 'platform_editor_user_highlight_contrast'
|
|
1864
|
+
},
|
|
1865
|
+
param: 'isEnabled',
|
|
1866
|
+
defaultValue: false
|
|
1867
|
+
}),
|
|
1844
1868
|
// Added 2026-03-25
|
|
1845
1869
|
platform_editor_improve_preset_builder_logging: createBooleanExperiment({
|
|
1846
1870
|
productKeys: {
|
|
@@ -414,6 +414,14 @@ export var editorExperimentsConfig = {
|
|
|
414
414
|
param: 'isEnabled',
|
|
415
415
|
defaultValue: false
|
|
416
416
|
}),
|
|
417
|
+
// Added 2026-03-30
|
|
418
|
+
platform_editor_editor_ssr_streaming: createBooleanExperiment({
|
|
419
|
+
productKeys: {
|
|
420
|
+
confluence: 'platform_editor_editor_ssr_streaming'
|
|
421
|
+
},
|
|
422
|
+
param: 'isEnabled',
|
|
423
|
+
defaultValue: false
|
|
424
|
+
}),
|
|
417
425
|
// Added 2025-01-19
|
|
418
426
|
platform_editor_ai_edit_response_in_preview: createBooleanExperiment({
|
|
419
427
|
productKeys: {
|
|
@@ -1398,6 +1406,14 @@ export var editorExperimentsConfig = {
|
|
|
1398
1406
|
param: 'isEnabled',
|
|
1399
1407
|
defaultValue: false
|
|
1400
1408
|
}),
|
|
1409
|
+
// Added 2026-04-06
|
|
1410
|
+
'cc-maui-experiment-phase-2': createBooleanExperiment({
|
|
1411
|
+
productKeys: {
|
|
1412
|
+
confluence: 'cc-maui-experiment-phase-2'
|
|
1413
|
+
},
|
|
1414
|
+
param: 'isEnabled',
|
|
1415
|
+
defaultValue: false
|
|
1416
|
+
}),
|
|
1401
1417
|
// Added 2026-03-05
|
|
1402
1418
|
'cc-mui-slides-experiment': createBooleanExperiment({
|
|
1403
1419
|
productKeys: {
|
|
@@ -1841,6 +1857,14 @@ export var editorExperimentsConfig = {
|
|
|
1841
1857
|
param: 'isEnabled',
|
|
1842
1858
|
defaultValue: false
|
|
1843
1859
|
}),
|
|
1860
|
+
// Added 2026-02-004
|
|
1861
|
+
platform_editor_user_highlight_contrast: createBooleanExperiment({
|
|
1862
|
+
productKeys: {
|
|
1863
|
+
confluence: 'platform_editor_user_highlight_contrast'
|
|
1864
|
+
},
|
|
1865
|
+
param: 'isEnabled',
|
|
1866
|
+
defaultValue: false
|
|
1867
|
+
}),
|
|
1844
1868
|
// Added 2026-03-25
|
|
1845
1869
|
platform_editor_improve_preset_builder_logging: createBooleanExperiment({
|
|
1846
1870
|
productKeys: {
|
|
@@ -244,6 +244,12 @@ export declare const editorExperimentsConfig: {
|
|
|
244
244
|
productKeys?: ProductKeys;
|
|
245
245
|
typeGuard: IsBooleanType;
|
|
246
246
|
};
|
|
247
|
+
platform_editor_editor_ssr_streaming: {
|
|
248
|
+
defaultValue: boolean;
|
|
249
|
+
param: string;
|
|
250
|
+
productKeys?: ProductKeys;
|
|
251
|
+
typeGuard: IsBooleanType;
|
|
252
|
+
};
|
|
247
253
|
confluence_remix_icon_right_side: {
|
|
248
254
|
defaultValue: boolean;
|
|
249
255
|
param: string;
|
|
@@ -1050,6 +1056,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1050
1056
|
productKeys?: ProductKeys;
|
|
1051
1057
|
typeGuard: IsBooleanType;
|
|
1052
1058
|
};
|
|
1059
|
+
'cc-maui-experiment-phase-2': {
|
|
1060
|
+
defaultValue: boolean;
|
|
1061
|
+
param: string;
|
|
1062
|
+
productKeys?: ProductKeys;
|
|
1063
|
+
typeGuard: IsBooleanType;
|
|
1064
|
+
};
|
|
1053
1065
|
'cc-mui-slides-experiment': {
|
|
1054
1066
|
defaultValue: boolean;
|
|
1055
1067
|
param: string;
|
|
@@ -1362,6 +1374,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1362
1374
|
productKeys?: ProductKeys;
|
|
1363
1375
|
typeGuard: IsBooleanType;
|
|
1364
1376
|
};
|
|
1377
|
+
platform_editor_user_highlight_contrast: {
|
|
1378
|
+
defaultValue: boolean;
|
|
1379
|
+
param: string;
|
|
1380
|
+
productKeys?: ProductKeys;
|
|
1381
|
+
typeGuard: IsBooleanType;
|
|
1382
|
+
};
|
|
1365
1383
|
platform_editor_improve_preset_builder_logging: {
|
|
1366
1384
|
defaultValue: boolean;
|
|
1367
1385
|
param: string;
|
|
@@ -244,6 +244,12 @@ export declare const editorExperimentsConfig: {
|
|
|
244
244
|
productKeys?: ProductKeys;
|
|
245
245
|
typeGuard: IsBooleanType;
|
|
246
246
|
};
|
|
247
|
+
platform_editor_editor_ssr_streaming: {
|
|
248
|
+
defaultValue: boolean;
|
|
249
|
+
param: string;
|
|
250
|
+
productKeys?: ProductKeys;
|
|
251
|
+
typeGuard: IsBooleanType;
|
|
252
|
+
};
|
|
247
253
|
confluence_remix_icon_right_side: {
|
|
248
254
|
defaultValue: boolean;
|
|
249
255
|
param: string;
|
|
@@ -1050,6 +1056,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1050
1056
|
productKeys?: ProductKeys;
|
|
1051
1057
|
typeGuard: IsBooleanType;
|
|
1052
1058
|
};
|
|
1059
|
+
'cc-maui-experiment-phase-2': {
|
|
1060
|
+
defaultValue: boolean;
|
|
1061
|
+
param: string;
|
|
1062
|
+
productKeys?: ProductKeys;
|
|
1063
|
+
typeGuard: IsBooleanType;
|
|
1064
|
+
};
|
|
1053
1065
|
'cc-mui-slides-experiment': {
|
|
1054
1066
|
defaultValue: boolean;
|
|
1055
1067
|
param: string;
|
|
@@ -1362,6 +1374,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1362
1374
|
productKeys?: ProductKeys;
|
|
1363
1375
|
typeGuard: IsBooleanType;
|
|
1364
1376
|
};
|
|
1377
|
+
platform_editor_user_highlight_contrast: {
|
|
1378
|
+
defaultValue: boolean;
|
|
1379
|
+
param: string;
|
|
1380
|
+
productKeys?: ProductKeys;
|
|
1381
|
+
typeGuard: IsBooleanType;
|
|
1382
|
+
};
|
|
1365
1383
|
platform_editor_improve_preset_builder_logging: {
|
|
1366
1384
|
defaultValue: boolean;
|
|
1367
1385
|
param: string;
|
package/package.json
CHANGED