@atlaskit/tmp-editor-statsig 54.1.0 → 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 CHANGED
@@ -1,5 +1,20 @@
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
+
3
18
  ## 54.1.0
4
19
 
5
20
  ### Minor 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: {
@@ -1855,6 +1863,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1855
1863
  param: 'isEnabled',
1856
1864
  defaultValue: false
1857
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
+ }),
1858
1874
  // Added 2026-03-25
1859
1875
  platform_editor_improve_preset_builder_logging: (0, _experimentBuilders.createBooleanExperiment)({
1860
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: {
@@ -1849,6 +1857,14 @@ export const editorExperimentsConfig = {
1849
1857
  param: 'isEnabled',
1850
1858
  defaultValue: false
1851
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
+ }),
1852
1868
  // Added 2026-03-25
1853
1869
  platform_editor_improve_preset_builder_logging: createBooleanExperiment({
1854
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: {
@@ -1849,6 +1857,14 @@ export var editorExperimentsConfig = {
1849
1857
  param: 'isEnabled',
1850
1858
  defaultValue: false
1851
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
+ }),
1852
1868
  // Added 2026-03-25
1853
1869
  platform_editor_improve_preset_builder_logging: createBooleanExperiment({
1854
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;
@@ -1368,6 +1374,12 @@ export declare const editorExperimentsConfig: {
1368
1374
  productKeys?: ProductKeys;
1369
1375
  typeGuard: IsBooleanType;
1370
1376
  };
1377
+ platform_editor_user_highlight_contrast: {
1378
+ defaultValue: boolean;
1379
+ param: string;
1380
+ productKeys?: ProductKeys;
1381
+ typeGuard: IsBooleanType;
1382
+ };
1371
1383
  platform_editor_improve_preset_builder_logging: {
1372
1384
  defaultValue: boolean;
1373
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;
@@ -1368,6 +1374,12 @@ export declare const editorExperimentsConfig: {
1368
1374
  productKeys?: ProductKeys;
1369
1375
  typeGuard: IsBooleanType;
1370
1376
  };
1377
+ platform_editor_user_highlight_contrast: {
1378
+ defaultValue: boolean;
1379
+ param: string;
1380
+ productKeys?: ProductKeys;
1381
+ typeGuard: IsBooleanType;
1382
+ };
1371
1383
  platform_editor_improve_preset_builder_logging: {
1372
1384
  defaultValue: boolean;
1373
1385
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "54.1.0",
3
+ "version": "54.2.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",