@atlaskit/tmp-editor-statsig 35.6.0 → 35.8.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 +23 -0
- package/dist/cjs/experiments-config.js +48 -0
- package/dist/es2019/experiments-config.js +48 -0
- package/dist/esm/experiments-config.js +48 -0
- package/dist/types/experiments-config.d.ts +36 -0
- package/dist/types-ts4.5/experiments-config.d.ts +36 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 35.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`477d48a3021a5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/477d48a3021a5) -
|
|
8
|
+
EDITOR-5818 fix to not send dispatch during render or in ref callback
|
|
9
|
+
|
|
10
|
+
## 35.7.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`f91f6be9566a5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f91f6be9566a5) -
|
|
15
|
+
Don't show the grid container if not visible to avoid reflow experiment.
|
|
16
|
+
- [`0a65ee9a1c299`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0a65ee9a1c299) -
|
|
17
|
+
Replace ReactDOM.render in editor-extesion-dropbox
|
|
18
|
+
- [`29e8db48dc55b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/29e8db48dc55b) -
|
|
19
|
+
[ux] EDITOR-5622 Remove sentinels when shadowObserver is cleaned up
|
|
20
|
+
- [`dd5154ad0dec5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/dd5154ad0dec5) -
|
|
21
|
+
[A11Y-10416] Add experiment editor-a11y-10416-codeblock-entry for code block accessibility
|
|
22
|
+
- [`1e58c64552ef8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1e58c64552ef8) -
|
|
23
|
+
Add new 'allowFontSize' plugin option to blockTypePlugin which enables new 'small' text feature to
|
|
24
|
+
be added, it's behind an experiment platform_editor_small_font_size.
|
|
25
|
+
|
|
3
26
|
## 35.6.0
|
|
4
27
|
|
|
5
28
|
### Minor Changes
|
|
@@ -248,6 +248,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
248
248
|
param: 'isEnabled',
|
|
249
249
|
defaultValue: false
|
|
250
250
|
}),
|
|
251
|
+
// Added 2026-03-09
|
|
252
|
+
platform_editor_react19_migration: (0, _experimentBuilders.createBooleanExperiment)({
|
|
253
|
+
productKeys: {
|
|
254
|
+
confluence: 'platform_editor_react19_migration'
|
|
255
|
+
},
|
|
256
|
+
param: 'isEnabled',
|
|
257
|
+
defaultValue: false
|
|
258
|
+
}),
|
|
251
259
|
// Added 2024-09-05
|
|
252
260
|
support_table_in_comment: (0, _experimentBuilders.createBooleanExperiment)({
|
|
253
261
|
productKeys: {
|
|
@@ -501,6 +509,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
501
509
|
param: 'isEnabled',
|
|
502
510
|
defaultValue: false
|
|
503
511
|
}),
|
|
512
|
+
// Added 2026-03-10
|
|
513
|
+
platform_editor_renderer_shadow_observer_cleanup: (0, _experimentBuilders.createBooleanExperiment)({
|
|
514
|
+
productKeys: {
|
|
515
|
+
jira: 'platform_editor_renderer_shadow_observer_cleanup',
|
|
516
|
+
confluence: 'platform_editor_renderer_shadow_observer_cleanup'
|
|
517
|
+
},
|
|
518
|
+
param: 'isEnabled',
|
|
519
|
+
defaultValue: false
|
|
520
|
+
}),
|
|
504
521
|
// Added 2025-07-08 - Jira work sync description comment summary
|
|
505
522
|
'jira-work-sync-desc-comment-summary': (0, _experimentBuilders.createBooleanExperiment)({
|
|
506
523
|
productKeys: {
|
|
@@ -1380,6 +1397,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1380
1397
|
values: ['control', 'new-description', 'orig-description'],
|
|
1381
1398
|
defaultValue: 'control'
|
|
1382
1399
|
}),
|
|
1400
|
+
// Added 2026-02-05 - A11Y-10416
|
|
1401
|
+
editor_a11y_role_textbox: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1402
|
+
productKeys: {
|
|
1403
|
+
confluence: 'editor_a11y_role_textbox'
|
|
1404
|
+
},
|
|
1405
|
+
param: 'isEnabled',
|
|
1406
|
+
defaultValue: false
|
|
1407
|
+
}),
|
|
1383
1408
|
// Added 2026-01-28
|
|
1384
1409
|
platform_editor_smartlink_local_cache: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1385
1410
|
productKeys: {
|
|
@@ -1633,6 +1658,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1633
1658
|
param: 'isEnabled',
|
|
1634
1659
|
defaultValue: false
|
|
1635
1660
|
}),
|
|
1661
|
+
// Added 2026-03-10
|
|
1662
|
+
platform_editor_fix_editor_unhandled_type_errors: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1663
|
+
productKeys: {
|
|
1664
|
+
confluence: 'platform_editor_fix_editor_unhandled_type_errors'
|
|
1665
|
+
},
|
|
1666
|
+
param: 'isEnabled',
|
|
1667
|
+
defaultValue: false
|
|
1668
|
+
}),
|
|
1636
1669
|
// Added 2026-03-05
|
|
1637
1670
|
platform_editor_table_resizer_extended_zone: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1638
1671
|
productKeys: {
|
|
@@ -1649,6 +1682,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1649
1682
|
param: 'isEnabled',
|
|
1650
1683
|
defaultValue: false
|
|
1651
1684
|
}),
|
|
1685
|
+
// Added 2026-03-11
|
|
1686
|
+
platform_editor_remove_grid_init_reflow: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1687
|
+
productKeys: {
|
|
1688
|
+
confluence: 'platform_editor_remove_grid_init_reflow'
|
|
1689
|
+
},
|
|
1690
|
+
param: 'isEnabled',
|
|
1691
|
+
defaultValue: false
|
|
1692
|
+
}),
|
|
1652
1693
|
// Added 2026-03-07
|
|
1653
1694
|
platform_editor_table_remove_last_cell_decoration: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1654
1695
|
productKeys: {
|
|
@@ -1657,6 +1698,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1657
1698
|
param: 'isEnabled',
|
|
1658
1699
|
defaultValue: false
|
|
1659
1700
|
}),
|
|
1701
|
+
platform_editor_small_font_size: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1702
|
+
productKeys: {
|
|
1703
|
+
confluence: 'platform_editor_small_font_size'
|
|
1704
|
+
},
|
|
1705
|
+
param: 'isEnabled',
|
|
1706
|
+
defaultValue: false
|
|
1707
|
+
}),
|
|
1660
1708
|
// Added 2026-03-10
|
|
1661
1709
|
platform_editor_diff_plugin_extended: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1662
1710
|
productKeys: {
|
|
@@ -242,6 +242,14 @@ export const editorExperimentsConfig = {
|
|
|
242
242
|
param: 'isEnabled',
|
|
243
243
|
defaultValue: false
|
|
244
244
|
}),
|
|
245
|
+
// Added 2026-03-09
|
|
246
|
+
platform_editor_react19_migration: createBooleanExperiment({
|
|
247
|
+
productKeys: {
|
|
248
|
+
confluence: 'platform_editor_react19_migration'
|
|
249
|
+
},
|
|
250
|
+
param: 'isEnabled',
|
|
251
|
+
defaultValue: false
|
|
252
|
+
}),
|
|
245
253
|
// Added 2024-09-05
|
|
246
254
|
support_table_in_comment: createBooleanExperiment({
|
|
247
255
|
productKeys: {
|
|
@@ -495,6 +503,15 @@ export const editorExperimentsConfig = {
|
|
|
495
503
|
param: 'isEnabled',
|
|
496
504
|
defaultValue: false
|
|
497
505
|
}),
|
|
506
|
+
// Added 2026-03-10
|
|
507
|
+
platform_editor_renderer_shadow_observer_cleanup: createBooleanExperiment({
|
|
508
|
+
productKeys: {
|
|
509
|
+
jira: 'platform_editor_renderer_shadow_observer_cleanup',
|
|
510
|
+
confluence: 'platform_editor_renderer_shadow_observer_cleanup'
|
|
511
|
+
},
|
|
512
|
+
param: 'isEnabled',
|
|
513
|
+
defaultValue: false
|
|
514
|
+
}),
|
|
498
515
|
// Added 2025-07-08 - Jira work sync description comment summary
|
|
499
516
|
'jira-work-sync-desc-comment-summary': createBooleanExperiment({
|
|
500
517
|
productKeys: {
|
|
@@ -1374,6 +1391,14 @@ export const editorExperimentsConfig = {
|
|
|
1374
1391
|
values: ['control', 'new-description', 'orig-description'],
|
|
1375
1392
|
defaultValue: 'control'
|
|
1376
1393
|
}),
|
|
1394
|
+
// Added 2026-02-05 - A11Y-10416
|
|
1395
|
+
editor_a11y_role_textbox: createBooleanExperiment({
|
|
1396
|
+
productKeys: {
|
|
1397
|
+
confluence: 'editor_a11y_role_textbox'
|
|
1398
|
+
},
|
|
1399
|
+
param: 'isEnabled',
|
|
1400
|
+
defaultValue: false
|
|
1401
|
+
}),
|
|
1377
1402
|
// Added 2026-01-28
|
|
1378
1403
|
platform_editor_smartlink_local_cache: createBooleanExperiment({
|
|
1379
1404
|
productKeys: {
|
|
@@ -1627,6 +1652,14 @@ export const editorExperimentsConfig = {
|
|
|
1627
1652
|
param: 'isEnabled',
|
|
1628
1653
|
defaultValue: false
|
|
1629
1654
|
}),
|
|
1655
|
+
// Added 2026-03-10
|
|
1656
|
+
platform_editor_fix_editor_unhandled_type_errors: createBooleanExperiment({
|
|
1657
|
+
productKeys: {
|
|
1658
|
+
confluence: 'platform_editor_fix_editor_unhandled_type_errors'
|
|
1659
|
+
},
|
|
1660
|
+
param: 'isEnabled',
|
|
1661
|
+
defaultValue: false
|
|
1662
|
+
}),
|
|
1630
1663
|
// Added 2026-03-05
|
|
1631
1664
|
platform_editor_table_resizer_extended_zone: createBooleanExperiment({
|
|
1632
1665
|
productKeys: {
|
|
@@ -1643,6 +1676,14 @@ export const editorExperimentsConfig = {
|
|
|
1643
1676
|
param: 'isEnabled',
|
|
1644
1677
|
defaultValue: false
|
|
1645
1678
|
}),
|
|
1679
|
+
// Added 2026-03-11
|
|
1680
|
+
platform_editor_remove_grid_init_reflow: createBooleanExperiment({
|
|
1681
|
+
productKeys: {
|
|
1682
|
+
confluence: 'platform_editor_remove_grid_init_reflow'
|
|
1683
|
+
},
|
|
1684
|
+
param: 'isEnabled',
|
|
1685
|
+
defaultValue: false
|
|
1686
|
+
}),
|
|
1646
1687
|
// Added 2026-03-07
|
|
1647
1688
|
platform_editor_table_remove_last_cell_decoration: createBooleanExperiment({
|
|
1648
1689
|
productKeys: {
|
|
@@ -1651,6 +1692,13 @@ export const editorExperimentsConfig = {
|
|
|
1651
1692
|
param: 'isEnabled',
|
|
1652
1693
|
defaultValue: false
|
|
1653
1694
|
}),
|
|
1695
|
+
platform_editor_small_font_size: createBooleanExperiment({
|
|
1696
|
+
productKeys: {
|
|
1697
|
+
confluence: 'platform_editor_small_font_size'
|
|
1698
|
+
},
|
|
1699
|
+
param: 'isEnabled',
|
|
1700
|
+
defaultValue: false
|
|
1701
|
+
}),
|
|
1654
1702
|
// Added 2026-03-10
|
|
1655
1703
|
platform_editor_diff_plugin_extended: createBooleanExperiment({
|
|
1656
1704
|
productKeys: {
|
|
@@ -242,6 +242,14 @@ export var editorExperimentsConfig = {
|
|
|
242
242
|
param: 'isEnabled',
|
|
243
243
|
defaultValue: false
|
|
244
244
|
}),
|
|
245
|
+
// Added 2026-03-09
|
|
246
|
+
platform_editor_react19_migration: createBooleanExperiment({
|
|
247
|
+
productKeys: {
|
|
248
|
+
confluence: 'platform_editor_react19_migration'
|
|
249
|
+
},
|
|
250
|
+
param: 'isEnabled',
|
|
251
|
+
defaultValue: false
|
|
252
|
+
}),
|
|
245
253
|
// Added 2024-09-05
|
|
246
254
|
support_table_in_comment: createBooleanExperiment({
|
|
247
255
|
productKeys: {
|
|
@@ -495,6 +503,15 @@ export var editorExperimentsConfig = {
|
|
|
495
503
|
param: 'isEnabled',
|
|
496
504
|
defaultValue: false
|
|
497
505
|
}),
|
|
506
|
+
// Added 2026-03-10
|
|
507
|
+
platform_editor_renderer_shadow_observer_cleanup: createBooleanExperiment({
|
|
508
|
+
productKeys: {
|
|
509
|
+
jira: 'platform_editor_renderer_shadow_observer_cleanup',
|
|
510
|
+
confluence: 'platform_editor_renderer_shadow_observer_cleanup'
|
|
511
|
+
},
|
|
512
|
+
param: 'isEnabled',
|
|
513
|
+
defaultValue: false
|
|
514
|
+
}),
|
|
498
515
|
// Added 2025-07-08 - Jira work sync description comment summary
|
|
499
516
|
'jira-work-sync-desc-comment-summary': createBooleanExperiment({
|
|
500
517
|
productKeys: {
|
|
@@ -1374,6 +1391,14 @@ export var editorExperimentsConfig = {
|
|
|
1374
1391
|
values: ['control', 'new-description', 'orig-description'],
|
|
1375
1392
|
defaultValue: 'control'
|
|
1376
1393
|
}),
|
|
1394
|
+
// Added 2026-02-05 - A11Y-10416
|
|
1395
|
+
editor_a11y_role_textbox: createBooleanExperiment({
|
|
1396
|
+
productKeys: {
|
|
1397
|
+
confluence: 'editor_a11y_role_textbox'
|
|
1398
|
+
},
|
|
1399
|
+
param: 'isEnabled',
|
|
1400
|
+
defaultValue: false
|
|
1401
|
+
}),
|
|
1377
1402
|
// Added 2026-01-28
|
|
1378
1403
|
platform_editor_smartlink_local_cache: createBooleanExperiment({
|
|
1379
1404
|
productKeys: {
|
|
@@ -1627,6 +1652,14 @@ export var editorExperimentsConfig = {
|
|
|
1627
1652
|
param: 'isEnabled',
|
|
1628
1653
|
defaultValue: false
|
|
1629
1654
|
}),
|
|
1655
|
+
// Added 2026-03-10
|
|
1656
|
+
platform_editor_fix_editor_unhandled_type_errors: createBooleanExperiment({
|
|
1657
|
+
productKeys: {
|
|
1658
|
+
confluence: 'platform_editor_fix_editor_unhandled_type_errors'
|
|
1659
|
+
},
|
|
1660
|
+
param: 'isEnabled',
|
|
1661
|
+
defaultValue: false
|
|
1662
|
+
}),
|
|
1630
1663
|
// Added 2026-03-05
|
|
1631
1664
|
platform_editor_table_resizer_extended_zone: createBooleanExperiment({
|
|
1632
1665
|
productKeys: {
|
|
@@ -1643,6 +1676,14 @@ export var editorExperimentsConfig = {
|
|
|
1643
1676
|
param: 'isEnabled',
|
|
1644
1677
|
defaultValue: false
|
|
1645
1678
|
}),
|
|
1679
|
+
// Added 2026-03-11
|
|
1680
|
+
platform_editor_remove_grid_init_reflow: createBooleanExperiment({
|
|
1681
|
+
productKeys: {
|
|
1682
|
+
confluence: 'platform_editor_remove_grid_init_reflow'
|
|
1683
|
+
},
|
|
1684
|
+
param: 'isEnabled',
|
|
1685
|
+
defaultValue: false
|
|
1686
|
+
}),
|
|
1646
1687
|
// Added 2026-03-07
|
|
1647
1688
|
platform_editor_table_remove_last_cell_decoration: createBooleanExperiment({
|
|
1648
1689
|
productKeys: {
|
|
@@ -1651,6 +1692,13 @@ export var editorExperimentsConfig = {
|
|
|
1651
1692
|
param: 'isEnabled',
|
|
1652
1693
|
defaultValue: false
|
|
1653
1694
|
}),
|
|
1695
|
+
platform_editor_small_font_size: createBooleanExperiment({
|
|
1696
|
+
productKeys: {
|
|
1697
|
+
confluence: 'platform_editor_small_font_size'
|
|
1698
|
+
},
|
|
1699
|
+
param: 'isEnabled',
|
|
1700
|
+
defaultValue: false
|
|
1701
|
+
}),
|
|
1654
1702
|
// Added 2026-03-10
|
|
1655
1703
|
platform_editor_diff_plugin_extended: createBooleanExperiment({
|
|
1656
1704
|
productKeys: {
|
|
@@ -70,6 +70,12 @@ export declare const editorExperimentsConfig: {
|
|
|
70
70
|
productKeys?: ProductKeys;
|
|
71
71
|
typeGuard: IsBooleanType;
|
|
72
72
|
};
|
|
73
|
+
platform_editor_react19_migration: {
|
|
74
|
+
defaultValue: boolean;
|
|
75
|
+
param: string;
|
|
76
|
+
productKeys?: ProductKeys;
|
|
77
|
+
typeGuard: IsBooleanType;
|
|
78
|
+
};
|
|
73
79
|
cc_editor_interactivity_monitoring: {
|
|
74
80
|
defaultValue: boolean;
|
|
75
81
|
param: string;
|
|
@@ -1014,6 +1020,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1014
1020
|
typeGuard: (value: unknown) => value is 'control' | 'new-description' | 'orig-description';
|
|
1015
1021
|
values: ('control' | 'new-description' | 'orig-description')[];
|
|
1016
1022
|
};
|
|
1023
|
+
editor_a11y_role_textbox: {
|
|
1024
|
+
defaultValue: boolean;
|
|
1025
|
+
param: string;
|
|
1026
|
+
productKeys?: ProductKeys;
|
|
1027
|
+
typeGuard: IsBooleanType;
|
|
1028
|
+
};
|
|
1017
1029
|
platform_editor_smartlink_local_cache: {
|
|
1018
1030
|
defaultValue: boolean;
|
|
1019
1031
|
param: string;
|
|
@@ -1194,6 +1206,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1194
1206
|
productKeys?: ProductKeys;
|
|
1195
1207
|
typeGuard: IsBooleanType;
|
|
1196
1208
|
};
|
|
1209
|
+
platform_editor_renderer_shadow_observer_cleanup: {
|
|
1210
|
+
defaultValue: boolean;
|
|
1211
|
+
param: string;
|
|
1212
|
+
productKeys?: ProductKeys;
|
|
1213
|
+
typeGuard: IsBooleanType;
|
|
1214
|
+
};
|
|
1197
1215
|
confluence_fe_renderer_inline_node_mark_color_fix: {
|
|
1198
1216
|
defaultValue: boolean;
|
|
1199
1217
|
param: string;
|
|
@@ -1206,18 +1224,36 @@ export declare const editorExperimentsConfig: {
|
|
|
1206
1224
|
productKeys?: ProductKeys;
|
|
1207
1225
|
typeGuard: IsBooleanType;
|
|
1208
1226
|
};
|
|
1227
|
+
platform_editor_fix_editor_unhandled_type_errors: {
|
|
1228
|
+
defaultValue: boolean;
|
|
1229
|
+
param: string;
|
|
1230
|
+
productKeys?: ProductKeys;
|
|
1231
|
+
typeGuard: IsBooleanType;
|
|
1232
|
+
};
|
|
1209
1233
|
cc_drag_and_drop_smart_link_from_content_to_tree: {
|
|
1210
1234
|
defaultValue: boolean;
|
|
1211
1235
|
param: string;
|
|
1212
1236
|
productKeys?: ProductKeys;
|
|
1213
1237
|
typeGuard: IsBooleanType;
|
|
1214
1238
|
};
|
|
1239
|
+
platform_editor_remove_grid_init_reflow: {
|
|
1240
|
+
defaultValue: boolean;
|
|
1241
|
+
param: string;
|
|
1242
|
+
productKeys?: ProductKeys;
|
|
1243
|
+
typeGuard: IsBooleanType;
|
|
1244
|
+
};
|
|
1215
1245
|
platform_editor_table_remove_last_cell_decoration: {
|
|
1216
1246
|
defaultValue: boolean;
|
|
1217
1247
|
param: string;
|
|
1218
1248
|
productKeys?: ProductKeys;
|
|
1219
1249
|
typeGuard: IsBooleanType;
|
|
1220
1250
|
};
|
|
1251
|
+
platform_editor_small_font_size: {
|
|
1252
|
+
defaultValue: boolean;
|
|
1253
|
+
param: string;
|
|
1254
|
+
productKeys?: ProductKeys;
|
|
1255
|
+
typeGuard: IsBooleanType;
|
|
1256
|
+
};
|
|
1221
1257
|
platform_editor_diff_plugin_extended: {
|
|
1222
1258
|
defaultValue: boolean;
|
|
1223
1259
|
param: string;
|
|
@@ -70,6 +70,12 @@ export declare const editorExperimentsConfig: {
|
|
|
70
70
|
productKeys?: ProductKeys;
|
|
71
71
|
typeGuard: IsBooleanType;
|
|
72
72
|
};
|
|
73
|
+
platform_editor_react19_migration: {
|
|
74
|
+
defaultValue: boolean;
|
|
75
|
+
param: string;
|
|
76
|
+
productKeys?: ProductKeys;
|
|
77
|
+
typeGuard: IsBooleanType;
|
|
78
|
+
};
|
|
73
79
|
cc_editor_interactivity_monitoring: {
|
|
74
80
|
defaultValue: boolean;
|
|
75
81
|
param: string;
|
|
@@ -1014,6 +1020,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1014
1020
|
typeGuard: (value: unknown) => value is 'control' | 'new-description' | 'orig-description';
|
|
1015
1021
|
values: ('control' | 'new-description' | 'orig-description')[];
|
|
1016
1022
|
};
|
|
1023
|
+
editor_a11y_role_textbox: {
|
|
1024
|
+
defaultValue: boolean;
|
|
1025
|
+
param: string;
|
|
1026
|
+
productKeys?: ProductKeys;
|
|
1027
|
+
typeGuard: IsBooleanType;
|
|
1028
|
+
};
|
|
1017
1029
|
platform_editor_smartlink_local_cache: {
|
|
1018
1030
|
defaultValue: boolean;
|
|
1019
1031
|
param: string;
|
|
@@ -1194,6 +1206,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1194
1206
|
productKeys?: ProductKeys;
|
|
1195
1207
|
typeGuard: IsBooleanType;
|
|
1196
1208
|
};
|
|
1209
|
+
platform_editor_renderer_shadow_observer_cleanup: {
|
|
1210
|
+
defaultValue: boolean;
|
|
1211
|
+
param: string;
|
|
1212
|
+
productKeys?: ProductKeys;
|
|
1213
|
+
typeGuard: IsBooleanType;
|
|
1214
|
+
};
|
|
1197
1215
|
confluence_fe_renderer_inline_node_mark_color_fix: {
|
|
1198
1216
|
defaultValue: boolean;
|
|
1199
1217
|
param: string;
|
|
@@ -1206,18 +1224,36 @@ export declare const editorExperimentsConfig: {
|
|
|
1206
1224
|
productKeys?: ProductKeys;
|
|
1207
1225
|
typeGuard: IsBooleanType;
|
|
1208
1226
|
};
|
|
1227
|
+
platform_editor_fix_editor_unhandled_type_errors: {
|
|
1228
|
+
defaultValue: boolean;
|
|
1229
|
+
param: string;
|
|
1230
|
+
productKeys?: ProductKeys;
|
|
1231
|
+
typeGuard: IsBooleanType;
|
|
1232
|
+
};
|
|
1209
1233
|
cc_drag_and_drop_smart_link_from_content_to_tree: {
|
|
1210
1234
|
defaultValue: boolean;
|
|
1211
1235
|
param: string;
|
|
1212
1236
|
productKeys?: ProductKeys;
|
|
1213
1237
|
typeGuard: IsBooleanType;
|
|
1214
1238
|
};
|
|
1239
|
+
platform_editor_remove_grid_init_reflow: {
|
|
1240
|
+
defaultValue: boolean;
|
|
1241
|
+
param: string;
|
|
1242
|
+
productKeys?: ProductKeys;
|
|
1243
|
+
typeGuard: IsBooleanType;
|
|
1244
|
+
};
|
|
1215
1245
|
platform_editor_table_remove_last_cell_decoration: {
|
|
1216
1246
|
defaultValue: boolean;
|
|
1217
1247
|
param: string;
|
|
1218
1248
|
productKeys?: ProductKeys;
|
|
1219
1249
|
typeGuard: IsBooleanType;
|
|
1220
1250
|
};
|
|
1251
|
+
platform_editor_small_font_size: {
|
|
1252
|
+
defaultValue: boolean;
|
|
1253
|
+
param: string;
|
|
1254
|
+
productKeys?: ProductKeys;
|
|
1255
|
+
typeGuard: IsBooleanType;
|
|
1256
|
+
};
|
|
1221
1257
|
platform_editor_diff_plugin_extended: {
|
|
1222
1258
|
defaultValue: boolean;
|
|
1223
1259
|
param: string;
|
package/package.json
CHANGED