@atlaskit/tmp-editor-statsig 52.2.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 +22 -0
- package/dist/cjs/exp-test-overrides.js +2 -1
- package/dist/cjs/experiments-config.js +16 -8
- package/dist/es2019/exp-test-overrides.js +2 -1
- package/dist/es2019/experiments-config.js +16 -8
- package/dist/esm/exp-test-overrides.js +2 -1
- package/dist/esm/experiments-config.js +16 -8
- package/dist/types/experiments-config.d.ts +12 -6
- package/dist/types-ts4.5/experiments-config.d.ts +12 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
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
|
+
|
|
17
|
+
## 53.0.0
|
|
18
|
+
|
|
19
|
+
### Major Changes
|
|
20
|
+
|
|
21
|
+
- [`93ba2d2f0eb22`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/93ba2d2f0eb22) -
|
|
22
|
+
Clean up experiment flag platform_editor_ai_fix_streaming_json_escape and to fix JSON escape on
|
|
23
|
+
the streaming parser for URL and path values
|
|
24
|
+
|
|
3
25
|
## 52.2.0
|
|
4
26
|
|
|
5
27
|
### Minor 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: {
|
|
@@ -1244,14 +1252,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1244
1252
|
param: 'isEnabled',
|
|
1245
1253
|
defaultValue: false
|
|
1246
1254
|
}),
|
|
1247
|
-
// Added 2026-01-26
|
|
1248
|
-
platform_editor_ai_fix_streaming_json_escape: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1249
|
-
productKeys: {
|
|
1250
|
-
confluence: 'platform_editor_ai_fix_streaming_json_escape'
|
|
1251
|
-
},
|
|
1252
|
-
param: 'isEnabled',
|
|
1253
|
-
defaultValue: false
|
|
1254
|
-
}),
|
|
1255
1255
|
// Added 2026-02-18
|
|
1256
1256
|
platform_editor_table_a11y_eslint_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1257
1257
|
productKeys: {
|
|
@@ -1823,6 +1823,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1823
1823
|
param: 'isEnabled',
|
|
1824
1824
|
defaultValue: false
|
|
1825
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
|
+
}),
|
|
1826
1834
|
// Added 2026-03-23
|
|
1827
1835
|
confluence_toc_nav_a11y: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1828
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: {
|
|
@@ -1238,14 +1246,6 @@ export const editorExperimentsConfig = {
|
|
|
1238
1246
|
param: 'isEnabled',
|
|
1239
1247
|
defaultValue: false
|
|
1240
1248
|
}),
|
|
1241
|
-
// Added 2026-01-26
|
|
1242
|
-
platform_editor_ai_fix_streaming_json_escape: createBooleanExperiment({
|
|
1243
|
-
productKeys: {
|
|
1244
|
-
confluence: 'platform_editor_ai_fix_streaming_json_escape'
|
|
1245
|
-
},
|
|
1246
|
-
param: 'isEnabled',
|
|
1247
|
-
defaultValue: false
|
|
1248
|
-
}),
|
|
1249
1249
|
// Added 2026-02-18
|
|
1250
1250
|
platform_editor_table_a11y_eslint_fix: createBooleanExperiment({
|
|
1251
1251
|
productKeys: {
|
|
@@ -1817,6 +1817,14 @@ export const editorExperimentsConfig = {
|
|
|
1817
1817
|
param: 'isEnabled',
|
|
1818
1818
|
defaultValue: false
|
|
1819
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
|
+
}),
|
|
1820
1828
|
// Added 2026-03-23
|
|
1821
1829
|
confluence_toc_nav_a11y: createBooleanExperiment({
|
|
1822
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: {
|
|
@@ -1238,14 +1246,6 @@ export var editorExperimentsConfig = {
|
|
|
1238
1246
|
param: 'isEnabled',
|
|
1239
1247
|
defaultValue: false
|
|
1240
1248
|
}),
|
|
1241
|
-
// Added 2026-01-26
|
|
1242
|
-
platform_editor_ai_fix_streaming_json_escape: createBooleanExperiment({
|
|
1243
|
-
productKeys: {
|
|
1244
|
-
confluence: 'platform_editor_ai_fix_streaming_json_escape'
|
|
1245
|
-
},
|
|
1246
|
-
param: 'isEnabled',
|
|
1247
|
-
defaultValue: false
|
|
1248
|
-
}),
|
|
1249
1249
|
// Added 2026-02-18
|
|
1250
1250
|
platform_editor_table_a11y_eslint_fix: createBooleanExperiment({
|
|
1251
1251
|
productKeys: {
|
|
@@ -1817,6 +1817,14 @@ export var editorExperimentsConfig = {
|
|
|
1817
1817
|
param: 'isEnabled',
|
|
1818
1818
|
defaultValue: false
|
|
1819
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
|
+
}),
|
|
1820
1828
|
// Added 2026-03-23
|
|
1821
1829
|
confluence_toc_nav_a11y: createBooleanExperiment({
|
|
1822
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;
|
|
@@ -917,12 +923,6 @@ export declare const editorExperimentsConfig: {
|
|
|
917
923
|
productKeys?: ProductKeys;
|
|
918
924
|
typeGuard: IsBooleanType;
|
|
919
925
|
};
|
|
920
|
-
platform_editor_ai_fix_streaming_json_escape: {
|
|
921
|
-
defaultValue: boolean;
|
|
922
|
-
param: string;
|
|
923
|
-
productKeys?: ProductKeys;
|
|
924
|
-
typeGuard: IsBooleanType;
|
|
925
|
-
};
|
|
926
926
|
platform_editor_renderer_toolbar_updates: {
|
|
927
927
|
defaultValue: boolean;
|
|
928
928
|
param: string;
|
|
@@ -1356,6 +1356,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1356
1356
|
productKeys?: ProductKeys;
|
|
1357
1357
|
typeGuard: IsBooleanType;
|
|
1358
1358
|
};
|
|
1359
|
+
platform_editor_preserve_node_identity: {
|
|
1360
|
+
defaultValue: boolean;
|
|
1361
|
+
param: string;
|
|
1362
|
+
productKeys?: ProductKeys;
|
|
1363
|
+
typeGuard: IsBooleanType;
|
|
1364
|
+
};
|
|
1359
1365
|
confluence_toc_nav_a11y: {
|
|
1360
1366
|
defaultValue: boolean;
|
|
1361
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;
|
|
@@ -917,12 +923,6 @@ export declare const editorExperimentsConfig: {
|
|
|
917
923
|
productKeys?: ProductKeys;
|
|
918
924
|
typeGuard: IsBooleanType;
|
|
919
925
|
};
|
|
920
|
-
platform_editor_ai_fix_streaming_json_escape: {
|
|
921
|
-
defaultValue: boolean;
|
|
922
|
-
param: string;
|
|
923
|
-
productKeys?: ProductKeys;
|
|
924
|
-
typeGuard: IsBooleanType;
|
|
925
|
-
};
|
|
926
926
|
platform_editor_renderer_toolbar_updates: {
|
|
927
927
|
defaultValue: boolean;
|
|
928
928
|
param: string;
|
|
@@ -1356,6 +1356,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1356
1356
|
productKeys?: ProductKeys;
|
|
1357
1357
|
typeGuard: IsBooleanType;
|
|
1358
1358
|
};
|
|
1359
|
+
platform_editor_preserve_node_identity: {
|
|
1360
|
+
defaultValue: boolean;
|
|
1361
|
+
param: string;
|
|
1362
|
+
productKeys?: ProductKeys;
|
|
1363
|
+
typeGuard: IsBooleanType;
|
|
1364
|
+
};
|
|
1359
1365
|
confluence_toc_nav_a11y: {
|
|
1360
1366
|
defaultValue: boolean;
|
|
1361
1367
|
param: string;
|
package/package.json
CHANGED