@atlaskit/tmp-editor-statsig 54.1.0 → 54.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 CHANGED
@@ -1,5 +1,33 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 54.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`2e8697decd076`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2e8697decd076) -
8
+ Migrate @atlaskit/onboarding to @atlaskit/spotlight, gate pulse removal behind
9
+ platform_editor_spotlight_migration experiment. Remove dead spotlight config code from floating
10
+ toolbar.
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies
15
+
16
+ ## 54.2.0
17
+
18
+ ### Minor Changes
19
+
20
+ - [`e26d5e2ad8468`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e26d5e2ad8468) -
21
+ [ux] ENGHEALTH-49543 use system color HighlightText for text color when background is set to
22
+ system color Highlight
23
+ - [`e9ef7c6fc5370`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e9ef7c6fc5370) -
24
+ EDITOR-6179: Enable SSR Streaming for Edit Page and Live Doc routes.
25
+ - Add `platform_editor_editor_ssr_streaming` experiment to `tmp-editor-statsig` experiments
26
+ config.
27
+ - `EditorSSRRenderer`: replace `useLayoutEffect`+`containerRef` DOM mutation with
28
+ `dangerouslySetInnerHTML` for rendering serialized editor HTML, enabling correct rendering in
29
+ `renderToPipeableStream` SSR streaming context.
30
+
3
31
  ## 54.1.0
4
32
 
5
33
  ### 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: {
@@ -1871,6 +1887,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1871
1887
  param: 'isEnabled',
1872
1888
  defaultValue: false
1873
1889
  }),
1890
+ // Added 2026-03-30
1891
+ platform_editor_spotlight_migration: (0, _experimentBuilders.createBooleanExperiment)({
1892
+ productKeys: {
1893
+ confluence: 'platform_editor_spotlight_migration'
1894
+ },
1895
+ param: 'isEnabled',
1896
+ defaultValue: false
1897
+ }),
1874
1898
  // Added 2026-03-31
1875
1899
  platform_editor_dnd_accessibility_fixes_expand: (0, _experimentBuilders.createBooleanExperiment)({
1876
1900
  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: {
@@ -1865,6 +1881,14 @@ export const editorExperimentsConfig = {
1865
1881
  param: 'isEnabled',
1866
1882
  defaultValue: false
1867
1883
  }),
1884
+ // Added 2026-03-30
1885
+ platform_editor_spotlight_migration: createBooleanExperiment({
1886
+ productKeys: {
1887
+ confluence: 'platform_editor_spotlight_migration'
1888
+ },
1889
+ param: 'isEnabled',
1890
+ defaultValue: false
1891
+ }),
1868
1892
  // Added 2026-03-31
1869
1893
  platform_editor_dnd_accessibility_fixes_expand: createBooleanExperiment({
1870
1894
  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: {
@@ -1865,6 +1881,14 @@ export var editorExperimentsConfig = {
1865
1881
  param: 'isEnabled',
1866
1882
  defaultValue: false
1867
1883
  }),
1884
+ // Added 2026-03-30
1885
+ platform_editor_spotlight_migration: createBooleanExperiment({
1886
+ productKeys: {
1887
+ confluence: 'platform_editor_spotlight_migration'
1888
+ },
1889
+ param: 'isEnabled',
1890
+ defaultValue: false
1891
+ }),
1868
1892
  // Added 2026-03-31
1869
1893
  platform_editor_dnd_accessibility_fixes_expand: createBooleanExperiment({
1870
1894
  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;
@@ -1032,6 +1038,12 @@ export declare const editorExperimentsConfig: {
1032
1038
  productKeys?: ProductKeys;
1033
1039
  typeGuard: IsBooleanType;
1034
1040
  };
1041
+ platform_editor_spotlight_migration: {
1042
+ defaultValue: boolean;
1043
+ param: string;
1044
+ productKeys?: ProductKeys;
1045
+ typeGuard: IsBooleanType;
1046
+ };
1035
1047
  confluence_frontend_fix_date_hydration_error: {
1036
1048
  defaultValue: boolean;
1037
1049
  param: string;
@@ -1368,6 +1380,12 @@ export declare const editorExperimentsConfig: {
1368
1380
  productKeys?: ProductKeys;
1369
1381
  typeGuard: IsBooleanType;
1370
1382
  };
1383
+ platform_editor_user_highlight_contrast: {
1384
+ defaultValue: boolean;
1385
+ param: string;
1386
+ productKeys?: ProductKeys;
1387
+ typeGuard: IsBooleanType;
1388
+ };
1371
1389
  platform_editor_improve_preset_builder_logging: {
1372
1390
  defaultValue: boolean;
1373
1391
  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;
@@ -1032,6 +1038,12 @@ export declare const editorExperimentsConfig: {
1032
1038
  productKeys?: ProductKeys;
1033
1039
  typeGuard: IsBooleanType;
1034
1040
  };
1041
+ platform_editor_spotlight_migration: {
1042
+ defaultValue: boolean;
1043
+ param: string;
1044
+ productKeys?: ProductKeys;
1045
+ typeGuard: IsBooleanType;
1046
+ };
1035
1047
  confluence_frontend_fix_date_hydration_error: {
1036
1048
  defaultValue: boolean;
1037
1049
  param: string;
@@ -1368,6 +1380,12 @@ export declare const editorExperimentsConfig: {
1368
1380
  productKeys?: ProductKeys;
1369
1381
  typeGuard: IsBooleanType;
1370
1382
  };
1383
+ platform_editor_user_highlight_contrast: {
1384
+ defaultValue: boolean;
1385
+ param: string;
1386
+ productKeys?: ProductKeys;
1387
+ typeGuard: IsBooleanType;
1388
+ };
1371
1389
  platform_editor_improve_preset_builder_logging: {
1372
1390
  defaultValue: boolean;
1373
1391
  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.3.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",