@atlaskit/tmp-editor-statsig 53.0.0 → 53.1.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,19 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 53.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`f8922537e5ec8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f8922537e5ec8) -
8
+ Preserve node referential identity in replaceDocument to prevent ProseMirror view reconciliation
9
+ from unnecessarily destroying and recreating mark wrappers (and their React nodeviews), which
10
+ caused visible flicker on sync blocks and other wrapped nodeviews during collab initialization.
11
+
12
+ Fixes EDITOR-5277.
13
+
14
+ - [`1229e42f9f503`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1229e42f9f503) -
15
+ fix layout shift issue and initial size issue on legacy media
16
+
3
17
  ## 53.0.0
4
18
 
5
19
  ### Major Changes
@@ -52,5 +52,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
52
52
  platform_editor_prosemirror_rendered_data: false,
53
53
  confluence_compact_text_format: false,
54
54
  platform_editor_paste_actions_menu: false,
55
- platform_editor_diff_plugin_extended: false
55
+ platform_editor_diff_plugin_extended: false,
56
+ platform_editor_preserve_node_identity: false
56
57
  };
@@ -198,6 +198,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
198
198
  param: 'isEnabled',
199
199
  defaultValue: false
200
200
  }),
201
+ // Added 2026-03-24
202
+ platform_editor_media_vc_fixes_patch1: (0, _experimentBuilders.createBooleanExperiment)({
203
+ productKeys: {
204
+ confluence: 'platform_editor_media_vc_fixes_patch1'
205
+ },
206
+ param: 'isEnabled',
207
+ defaultValue: false
208
+ }),
201
209
  // Added 2026-03-06
202
210
  platform_editor_media_reliability_observability: (0, _experimentBuilders.createBooleanExperiment)({
203
211
  productKeys: {
@@ -1815,6 +1823,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1815
1823
  param: 'isEnabled',
1816
1824
  defaultValue: false
1817
1825
  }),
1826
+ // Added 2026-03-27
1827
+ platform_editor_preserve_node_identity: (0, _experimentBuilders.createBooleanExperiment)({
1828
+ productKeys: {
1829
+ confluence: 'platform_editor_preserve_node_identity'
1830
+ },
1831
+ param: 'isEnabled',
1832
+ defaultValue: false
1833
+ }),
1818
1834
  // Added 2026-03-23
1819
1835
  confluence_toc_nav_a11y: (0, _experimentBuilders.createBooleanExperiment)({
1820
1836
  productKeys: {
@@ -46,5 +46,6 @@ export const testBooleanOverrides = {
46
46
  platform_editor_prosemirror_rendered_data: false,
47
47
  confluence_compact_text_format: false,
48
48
  platform_editor_paste_actions_menu: false,
49
- platform_editor_diff_plugin_extended: false
49
+ platform_editor_diff_plugin_extended: false,
50
+ platform_editor_preserve_node_identity: false
50
51
  };
@@ -192,6 +192,14 @@ export const editorExperimentsConfig = {
192
192
  param: 'isEnabled',
193
193
  defaultValue: false
194
194
  }),
195
+ // Added 2026-03-24
196
+ platform_editor_media_vc_fixes_patch1: createBooleanExperiment({
197
+ productKeys: {
198
+ confluence: 'platform_editor_media_vc_fixes_patch1'
199
+ },
200
+ param: 'isEnabled',
201
+ defaultValue: false
202
+ }),
195
203
  // Added 2026-03-06
196
204
  platform_editor_media_reliability_observability: createBooleanExperiment({
197
205
  productKeys: {
@@ -1809,6 +1817,14 @@ export const editorExperimentsConfig = {
1809
1817
  param: 'isEnabled',
1810
1818
  defaultValue: false
1811
1819
  }),
1820
+ // Added 2026-03-27
1821
+ platform_editor_preserve_node_identity: createBooleanExperiment({
1822
+ productKeys: {
1823
+ confluence: 'platform_editor_preserve_node_identity'
1824
+ },
1825
+ param: 'isEnabled',
1826
+ defaultValue: false
1827
+ }),
1812
1828
  // Added 2026-03-23
1813
1829
  confluence_toc_nav_a11y: createBooleanExperiment({
1814
1830
  productKeys: {
@@ -46,5 +46,6 @@ export var testBooleanOverrides = {
46
46
  platform_editor_prosemirror_rendered_data: false,
47
47
  confluence_compact_text_format: false,
48
48
  platform_editor_paste_actions_menu: false,
49
- platform_editor_diff_plugin_extended: false
49
+ platform_editor_diff_plugin_extended: false,
50
+ platform_editor_preserve_node_identity: false
50
51
  };
@@ -192,6 +192,14 @@ export var editorExperimentsConfig = {
192
192
  param: 'isEnabled',
193
193
  defaultValue: false
194
194
  }),
195
+ // Added 2026-03-24
196
+ platform_editor_media_vc_fixes_patch1: createBooleanExperiment({
197
+ productKeys: {
198
+ confluence: 'platform_editor_media_vc_fixes_patch1'
199
+ },
200
+ param: 'isEnabled',
201
+ defaultValue: false
202
+ }),
195
203
  // Added 2026-03-06
196
204
  platform_editor_media_reliability_observability: createBooleanExperiment({
197
205
  productKeys: {
@@ -1809,6 +1817,14 @@ export var editorExperimentsConfig = {
1809
1817
  param: 'isEnabled',
1810
1818
  defaultValue: false
1811
1819
  }),
1820
+ // Added 2026-03-27
1821
+ platform_editor_preserve_node_identity: createBooleanExperiment({
1822
+ productKeys: {
1823
+ confluence: 'platform_editor_preserve_node_identity'
1824
+ },
1825
+ param: 'isEnabled',
1826
+ defaultValue: false
1827
+ }),
1812
1828
  // Added 2026-03-23
1813
1829
  confluence_toc_nav_a11y: createBooleanExperiment({
1814
1830
  productKeys: {
@@ -547,6 +547,12 @@ export declare const editorExperimentsConfig: {
547
547
  productKeys?: ProductKeys;
548
548
  typeGuard: IsBooleanType;
549
549
  };
550
+ platform_editor_media_vc_fixes_patch1: {
551
+ defaultValue: boolean;
552
+ param: string;
553
+ productKeys?: ProductKeys;
554
+ typeGuard: IsBooleanType;
555
+ };
550
556
  platform_editor_native_embeds: {
551
557
  defaultValue: boolean;
552
558
  param: string;
@@ -1350,6 +1356,12 @@ export declare const editorExperimentsConfig: {
1350
1356
  productKeys?: ProductKeys;
1351
1357
  typeGuard: IsBooleanType;
1352
1358
  };
1359
+ platform_editor_preserve_node_identity: {
1360
+ defaultValue: boolean;
1361
+ param: string;
1362
+ productKeys?: ProductKeys;
1363
+ typeGuard: IsBooleanType;
1364
+ };
1353
1365
  confluence_toc_nav_a11y: {
1354
1366
  defaultValue: boolean;
1355
1367
  param: string;
@@ -547,6 +547,12 @@ export declare const editorExperimentsConfig: {
547
547
  productKeys?: ProductKeys;
548
548
  typeGuard: IsBooleanType;
549
549
  };
550
+ platform_editor_media_vc_fixes_patch1: {
551
+ defaultValue: boolean;
552
+ param: string;
553
+ productKeys?: ProductKeys;
554
+ typeGuard: IsBooleanType;
555
+ };
550
556
  platform_editor_native_embeds: {
551
557
  defaultValue: boolean;
552
558
  param: string;
@@ -1350,6 +1356,12 @@ export declare const editorExperimentsConfig: {
1350
1356
  productKeys?: ProductKeys;
1351
1357
  typeGuard: IsBooleanType;
1352
1358
  };
1359
+ platform_editor_preserve_node_identity: {
1360
+ defaultValue: boolean;
1361
+ param: string;
1362
+ productKeys?: ProductKeys;
1363
+ typeGuard: IsBooleanType;
1364
+ };
1353
1365
  confluence_toc_nav_a11y: {
1354
1366
  defaultValue: boolean;
1355
1367
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "53.0.0",
3
+ "version": "53.1.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",