@atlaskit/tmp-editor-statsig 53.0.0 → 54.0.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 +34 -0
- package/dist/cjs/exp-test-overrides.js +2 -1
- package/dist/cjs/experiments-config.js +32 -8
- package/dist/es2019/exp-test-overrides.js +2 -1
- package/dist/es2019/experiments-config.js +32 -8
- package/dist/esm/exp-test-overrides.js +2 -1
- package/dist/esm/experiments-config.js +32 -8
- package/dist/types/experiments-config.d.ts +24 -6
- package/dist/types-ts4.5/experiments-config.d.ts +24 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 54.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`65e300b324e87`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/65e300b324e87) -
|
|
8
|
+
Remove feature flag platform_editor_fix_advanced_codeblocks_crlf - CRLF line separator fix is now
|
|
9
|
+
always enabled
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [`22cc6940b4250`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/22cc6940b4250) -
|
|
14
|
+
Add gated editor-core perf lint cleanup experiment support
|
|
15
|
+
- [`59c51386456c3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/59c51386456c3) -
|
|
16
|
+
Convert platform_editor_ai_aifc_list_indentation_fix feature gate to
|
|
17
|
+
platform_editor_ai_aifc_listitem_indentation_fix experiment
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
|
|
23
|
+
## 53.1.0
|
|
24
|
+
|
|
25
|
+
### Minor Changes
|
|
26
|
+
|
|
27
|
+
- [`f8922537e5ec8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f8922537e5ec8) -
|
|
28
|
+
Preserve node referential identity in replaceDocument to prevent ProseMirror view reconciliation
|
|
29
|
+
from unnecessarily destroying and recreating mark wrappers (and their React nodeviews), which
|
|
30
|
+
caused visible flicker on sync blocks and other wrapped nodeviews during collab initialization.
|
|
31
|
+
|
|
32
|
+
Fixes EDITOR-5277.
|
|
33
|
+
|
|
34
|
+
- [`1229e42f9f503`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1229e42f9f503) -
|
|
35
|
+
fix layout shift issue and initial size issue on legacy media
|
|
36
|
+
|
|
3
37
|
## 53.0.0
|
|
4
38
|
|
|
5
39
|
### 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: {
|
|
@@ -744,6 +752,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
744
752
|
param: 'isEnabled',
|
|
745
753
|
defaultValue: false
|
|
746
754
|
}),
|
|
755
|
+
// Added 2026-03-26
|
|
756
|
+
platform_editor_perf_lint_cleanup: (0, _experimentBuilders.createBooleanExperiment)({
|
|
757
|
+
productKeys: {
|
|
758
|
+
confluence: 'platform_editor_perf_lint_cleanup'
|
|
759
|
+
},
|
|
760
|
+
param: 'isEnabled',
|
|
761
|
+
defaultValue: false
|
|
762
|
+
}),
|
|
747
763
|
// Added 2025-07-30
|
|
748
764
|
platform_editor_blocktaskitem_node_tenantid: (0, _experimentBuilders.createBooleanExperiment)({
|
|
749
765
|
productKeys: {
|
|
@@ -1162,14 +1178,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1162
1178
|
param: 'isEnabled',
|
|
1163
1179
|
defaultValue: false
|
|
1164
1180
|
}),
|
|
1165
|
-
// Added 2026-01-15
|
|
1166
|
-
platform_editor_fix_advanced_codeblocks_crlf: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1167
|
-
productKeys: {
|
|
1168
|
-
confluence: 'platform_editor_fix_advanced_codeblocks_crlf'
|
|
1169
|
-
},
|
|
1170
|
-
param: 'isEnabled',
|
|
1171
|
-
defaultValue: false
|
|
1172
|
-
}),
|
|
1173
1181
|
// Added 2026-01-08
|
|
1174
1182
|
platform_editor_focus_on_chromeless_editor: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1175
1183
|
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: {
|
|
@@ -1854,5 +1870,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1854
1870
|
},
|
|
1855
1871
|
param: 'isEnabled',
|
|
1856
1872
|
defaultValue: false
|
|
1873
|
+
}),
|
|
1874
|
+
// Added 2026-04-02
|
|
1875
|
+
platform_editor_ai_aifc_listitem_indentation_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1876
|
+
productKeys: {
|
|
1877
|
+
confluence: 'platform_editor_ai_aifc_listitem_indentation_fix'
|
|
1878
|
+
},
|
|
1879
|
+
param: 'isEnabled',
|
|
1880
|
+
defaultValue: false
|
|
1857
1881
|
})
|
|
1858
1882
|
};
|
|
@@ -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: {
|
|
@@ -738,6 +746,14 @@ export const editorExperimentsConfig = {
|
|
|
738
746
|
param: 'isEnabled',
|
|
739
747
|
defaultValue: false
|
|
740
748
|
}),
|
|
749
|
+
// Added 2026-03-26
|
|
750
|
+
platform_editor_perf_lint_cleanup: createBooleanExperiment({
|
|
751
|
+
productKeys: {
|
|
752
|
+
confluence: 'platform_editor_perf_lint_cleanup'
|
|
753
|
+
},
|
|
754
|
+
param: 'isEnabled',
|
|
755
|
+
defaultValue: false
|
|
756
|
+
}),
|
|
741
757
|
// Added 2025-07-30
|
|
742
758
|
platform_editor_blocktaskitem_node_tenantid: createBooleanExperiment({
|
|
743
759
|
productKeys: {
|
|
@@ -1156,14 +1172,6 @@ export const editorExperimentsConfig = {
|
|
|
1156
1172
|
param: 'isEnabled',
|
|
1157
1173
|
defaultValue: false
|
|
1158
1174
|
}),
|
|
1159
|
-
// Added 2026-01-15
|
|
1160
|
-
platform_editor_fix_advanced_codeblocks_crlf: createBooleanExperiment({
|
|
1161
|
-
productKeys: {
|
|
1162
|
-
confluence: 'platform_editor_fix_advanced_codeblocks_crlf'
|
|
1163
|
-
},
|
|
1164
|
-
param: 'isEnabled',
|
|
1165
|
-
defaultValue: false
|
|
1166
|
-
}),
|
|
1167
1175
|
// Added 2026-01-08
|
|
1168
1176
|
platform_editor_focus_on_chromeless_editor: createBooleanExperiment({
|
|
1169
1177
|
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: {
|
|
@@ -1848,5 +1864,13 @@ export const editorExperimentsConfig = {
|
|
|
1848
1864
|
},
|
|
1849
1865
|
param: 'isEnabled',
|
|
1850
1866
|
defaultValue: false
|
|
1867
|
+
}),
|
|
1868
|
+
// Added 2026-04-02
|
|
1869
|
+
platform_editor_ai_aifc_listitem_indentation_fix: createBooleanExperiment({
|
|
1870
|
+
productKeys: {
|
|
1871
|
+
confluence: 'platform_editor_ai_aifc_listitem_indentation_fix'
|
|
1872
|
+
},
|
|
1873
|
+
param: 'isEnabled',
|
|
1874
|
+
defaultValue: false
|
|
1851
1875
|
})
|
|
1852
1876
|
};
|
|
@@ -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: {
|
|
@@ -738,6 +746,14 @@ export var editorExperimentsConfig = {
|
|
|
738
746
|
param: 'isEnabled',
|
|
739
747
|
defaultValue: false
|
|
740
748
|
}),
|
|
749
|
+
// Added 2026-03-26
|
|
750
|
+
platform_editor_perf_lint_cleanup: createBooleanExperiment({
|
|
751
|
+
productKeys: {
|
|
752
|
+
confluence: 'platform_editor_perf_lint_cleanup'
|
|
753
|
+
},
|
|
754
|
+
param: 'isEnabled',
|
|
755
|
+
defaultValue: false
|
|
756
|
+
}),
|
|
741
757
|
// Added 2025-07-30
|
|
742
758
|
platform_editor_blocktaskitem_node_tenantid: createBooleanExperiment({
|
|
743
759
|
productKeys: {
|
|
@@ -1156,14 +1172,6 @@ export var editorExperimentsConfig = {
|
|
|
1156
1172
|
param: 'isEnabled',
|
|
1157
1173
|
defaultValue: false
|
|
1158
1174
|
}),
|
|
1159
|
-
// Added 2026-01-15
|
|
1160
|
-
platform_editor_fix_advanced_codeblocks_crlf: createBooleanExperiment({
|
|
1161
|
-
productKeys: {
|
|
1162
|
-
confluence: 'platform_editor_fix_advanced_codeblocks_crlf'
|
|
1163
|
-
},
|
|
1164
|
-
param: 'isEnabled',
|
|
1165
|
-
defaultValue: false
|
|
1166
|
-
}),
|
|
1167
1175
|
// Added 2026-01-08
|
|
1168
1176
|
platform_editor_focus_on_chromeless_editor: createBooleanExperiment({
|
|
1169
1177
|
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: {
|
|
@@ -1848,5 +1864,13 @@ export var editorExperimentsConfig = {
|
|
|
1848
1864
|
},
|
|
1849
1865
|
param: 'isEnabled',
|
|
1850
1866
|
defaultValue: false
|
|
1867
|
+
}),
|
|
1868
|
+
// Added 2026-04-02
|
|
1869
|
+
platform_editor_ai_aifc_listitem_indentation_fix: createBooleanExperiment({
|
|
1870
|
+
productKeys: {
|
|
1871
|
+
confluence: 'platform_editor_ai_aifc_listitem_indentation_fix'
|
|
1872
|
+
},
|
|
1873
|
+
param: 'isEnabled',
|
|
1874
|
+
defaultValue: false
|
|
1851
1875
|
})
|
|
1852
1876
|
};
|
|
@@ -529,6 +529,12 @@ export declare const editorExperimentsConfig: {
|
|
|
529
529
|
productKeys?: ProductKeys;
|
|
530
530
|
typeGuard: IsBooleanType;
|
|
531
531
|
};
|
|
532
|
+
platform_editor_ai_aifc_listitem_indentation_fix: {
|
|
533
|
+
defaultValue: boolean;
|
|
534
|
+
param: string;
|
|
535
|
+
productKeys?: ProductKeys;
|
|
536
|
+
typeGuard: IsBooleanType;
|
|
537
|
+
};
|
|
532
538
|
platform_editor_lovability_distribute_column_fix: {
|
|
533
539
|
defaultValue: boolean;
|
|
534
540
|
param: string;
|
|
@@ -547,6 +553,12 @@ export declare const editorExperimentsConfig: {
|
|
|
547
553
|
productKeys?: ProductKeys;
|
|
548
554
|
typeGuard: IsBooleanType;
|
|
549
555
|
};
|
|
556
|
+
platform_editor_media_vc_fixes_patch1: {
|
|
557
|
+
defaultValue: boolean;
|
|
558
|
+
param: string;
|
|
559
|
+
productKeys?: ProductKeys;
|
|
560
|
+
typeGuard: IsBooleanType;
|
|
561
|
+
};
|
|
550
562
|
platform_editor_native_embeds: {
|
|
551
563
|
defaultValue: boolean;
|
|
552
564
|
param: string;
|
|
@@ -851,12 +863,6 @@ export declare const editorExperimentsConfig: {
|
|
|
851
863
|
productKeys?: ProductKeys;
|
|
852
864
|
typeGuard: IsBooleanType;
|
|
853
865
|
};
|
|
854
|
-
platform_editor_fix_advanced_codeblocks_crlf: {
|
|
855
|
-
defaultValue: boolean;
|
|
856
|
-
param: string;
|
|
857
|
-
productKeys?: ProductKeys;
|
|
858
|
-
typeGuard: IsBooleanType;
|
|
859
|
-
};
|
|
860
866
|
platform_editor_table_sticky_header_patch_11: {
|
|
861
867
|
defaultValue: boolean;
|
|
862
868
|
param: string;
|
|
@@ -1020,6 +1026,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1020
1026
|
productKeys?: ProductKeys;
|
|
1021
1027
|
typeGuard: IsBooleanType;
|
|
1022
1028
|
};
|
|
1029
|
+
platform_editor_perf_lint_cleanup: {
|
|
1030
|
+
defaultValue: boolean;
|
|
1031
|
+
param: string;
|
|
1032
|
+
productKeys?: ProductKeys;
|
|
1033
|
+
typeGuard: IsBooleanType;
|
|
1034
|
+
};
|
|
1023
1035
|
confluence_frontend_fix_date_hydration_error: {
|
|
1024
1036
|
defaultValue: boolean;
|
|
1025
1037
|
param: string;
|
|
@@ -1350,6 +1362,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1350
1362
|
productKeys?: ProductKeys;
|
|
1351
1363
|
typeGuard: IsBooleanType;
|
|
1352
1364
|
};
|
|
1365
|
+
platform_editor_preserve_node_identity: {
|
|
1366
|
+
defaultValue: boolean;
|
|
1367
|
+
param: string;
|
|
1368
|
+
productKeys?: ProductKeys;
|
|
1369
|
+
typeGuard: IsBooleanType;
|
|
1370
|
+
};
|
|
1353
1371
|
confluence_toc_nav_a11y: {
|
|
1354
1372
|
defaultValue: boolean;
|
|
1355
1373
|
param: string;
|
|
@@ -529,6 +529,12 @@ export declare const editorExperimentsConfig: {
|
|
|
529
529
|
productKeys?: ProductKeys;
|
|
530
530
|
typeGuard: IsBooleanType;
|
|
531
531
|
};
|
|
532
|
+
platform_editor_ai_aifc_listitem_indentation_fix: {
|
|
533
|
+
defaultValue: boolean;
|
|
534
|
+
param: string;
|
|
535
|
+
productKeys?: ProductKeys;
|
|
536
|
+
typeGuard: IsBooleanType;
|
|
537
|
+
};
|
|
532
538
|
platform_editor_lovability_distribute_column_fix: {
|
|
533
539
|
defaultValue: boolean;
|
|
534
540
|
param: string;
|
|
@@ -547,6 +553,12 @@ export declare const editorExperimentsConfig: {
|
|
|
547
553
|
productKeys?: ProductKeys;
|
|
548
554
|
typeGuard: IsBooleanType;
|
|
549
555
|
};
|
|
556
|
+
platform_editor_media_vc_fixes_patch1: {
|
|
557
|
+
defaultValue: boolean;
|
|
558
|
+
param: string;
|
|
559
|
+
productKeys?: ProductKeys;
|
|
560
|
+
typeGuard: IsBooleanType;
|
|
561
|
+
};
|
|
550
562
|
platform_editor_native_embeds: {
|
|
551
563
|
defaultValue: boolean;
|
|
552
564
|
param: string;
|
|
@@ -851,12 +863,6 @@ export declare const editorExperimentsConfig: {
|
|
|
851
863
|
productKeys?: ProductKeys;
|
|
852
864
|
typeGuard: IsBooleanType;
|
|
853
865
|
};
|
|
854
|
-
platform_editor_fix_advanced_codeblocks_crlf: {
|
|
855
|
-
defaultValue: boolean;
|
|
856
|
-
param: string;
|
|
857
|
-
productKeys?: ProductKeys;
|
|
858
|
-
typeGuard: IsBooleanType;
|
|
859
|
-
};
|
|
860
866
|
platform_editor_table_sticky_header_patch_11: {
|
|
861
867
|
defaultValue: boolean;
|
|
862
868
|
param: string;
|
|
@@ -1020,6 +1026,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1020
1026
|
productKeys?: ProductKeys;
|
|
1021
1027
|
typeGuard: IsBooleanType;
|
|
1022
1028
|
};
|
|
1029
|
+
platform_editor_perf_lint_cleanup: {
|
|
1030
|
+
defaultValue: boolean;
|
|
1031
|
+
param: string;
|
|
1032
|
+
productKeys?: ProductKeys;
|
|
1033
|
+
typeGuard: IsBooleanType;
|
|
1034
|
+
};
|
|
1023
1035
|
confluence_frontend_fix_date_hydration_error: {
|
|
1024
1036
|
defaultValue: boolean;
|
|
1025
1037
|
param: string;
|
|
@@ -1350,6 +1362,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1350
1362
|
productKeys?: ProductKeys;
|
|
1351
1363
|
typeGuard: IsBooleanType;
|
|
1352
1364
|
};
|
|
1365
|
+
platform_editor_preserve_node_identity: {
|
|
1366
|
+
defaultValue: boolean;
|
|
1367
|
+
param: string;
|
|
1368
|
+
productKeys?: ProductKeys;
|
|
1369
|
+
typeGuard: IsBooleanType;
|
|
1370
|
+
};
|
|
1353
1371
|
confluence_toc_nav_a11y: {
|
|
1354
1372
|
defaultValue: boolean;
|
|
1355
1373
|
param: string;
|
package/package.json
CHANGED