@atlaskit/tmp-editor-statsig 12.28.0 → 12.30.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 +29 -0
- package/dist/cjs/exp-test-overrides.js +0 -2
- package/dist/cjs/experiments-config.js +40 -15
- package/dist/es2019/exp-test-overrides.js +0 -2
- package/dist/es2019/experiments-config.js +40 -15
- package/dist/esm/exp-test-overrides.js +0 -2
- package/dist/esm/experiments-config.js +40 -15
- package/dist/types/experiments-config.d.ts +30 -12
- package/dist/types-ts4.5/experiments-config.d.ts +30 -12
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 12.30.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`c7f63d8f3fd7b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c7f63d8f3fd7b) -
|
|
8
|
+
[ED-29266] add platform_editor_toolbar_aifc_renderer_selection experiment
|
|
9
|
+
- [`9af8b5101d35f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9af8b5101d35f) -
|
|
10
|
+
[https://product-fabric.atlassian.net/browse/ED-29411](ED-29411) - clean up
|
|
11
|
+
platform_editor_memoized_node_check experiment
|
|
12
|
+
- [`f3461c712ac67`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f3461c712ac67) -
|
|
13
|
+
Remove platform_editor_table_use_shared_state_hook_fg FG, add
|
|
14
|
+
platform_editor_table_drag_handle_hover experiments
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- [`2c4405f422ac7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2c4405f422ac7) -
|
|
19
|
+
clean up feature flag for static emotion
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
|
|
22
|
+
## 12.29.0
|
|
23
|
+
|
|
24
|
+
### Minor Changes
|
|
25
|
+
|
|
26
|
+
- [`6d186dc817ef9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6d186dc817ef9) -
|
|
27
|
+
[ux] ED-26884 fix bug where resize columns for nested table results in a scrollbar
|
|
28
|
+
- [`e49f1d35e507a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e49f1d35e507a) -
|
|
29
|
+
[https://product-fabric.atlassian.net/browse/ED-29349](ED-29349) - add one tick provider (SSR)
|
|
30
|
+
support for emojis in editor and live pages
|
|
31
|
+
|
|
3
32
|
## 12.28.0
|
|
4
33
|
|
|
5
34
|
### Minor Changes
|
|
@@ -26,7 +26,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
26
26
|
platform_editor_preview_panel_responsiveness: false,
|
|
27
27
|
platform_editor_renderer_breakout_fix: false,
|
|
28
28
|
platform_editor_toolbar_aifc: false,
|
|
29
|
-
platform_editor_memoized_node_check: false,
|
|
30
29
|
platform_editor_media_card_vc_wrapper_attribute: false,
|
|
31
30
|
platform_editor_block_control_optimise_render: false,
|
|
32
31
|
'test-new-experiments-package': false,
|
|
@@ -51,7 +50,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
51
50
|
platform_editor_tables_table_selector: false,
|
|
52
51
|
platform_renderer_fix_analytics_memo_callback: false,
|
|
53
52
|
platform_editor_stop_width_reflows: false,
|
|
54
|
-
platform_editor_core_static_emotion_non_central: false,
|
|
55
53
|
platform_editor_no_cursor_on_edit_page_init: false,
|
|
56
54
|
'jira-work-sync-desc-comment-summary': false,
|
|
57
55
|
platform_editor_nodevisibility: false,
|
|
@@ -22,13 +22,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
22
22
|
param: 'isEnabled',
|
|
23
23
|
defaultValue: false
|
|
24
24
|
}),
|
|
25
|
-
platform_editor_memoized_node_check: (0, _experimentBuilders.createBooleanExperiment)({
|
|
26
|
-
productKeys: {
|
|
27
|
-
confluence: 'platform_editor_memoized_node_check'
|
|
28
|
-
},
|
|
29
|
-
param: 'isEnabled',
|
|
30
|
-
defaultValue: false
|
|
31
|
-
}),
|
|
32
25
|
platform_editor_media_card_vc_wrapper_attribute: (0, _experimentBuilders.createBooleanExperiment)({
|
|
33
26
|
productKeys: {
|
|
34
27
|
confluence: 'platform_editor_media_card_vc_wrapper_attribute'
|
|
@@ -78,6 +71,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
78
71
|
param: 'isEnabled',
|
|
79
72
|
defaultValue: false
|
|
80
73
|
}),
|
|
74
|
+
platform_editor_table_drag_handle_hover: (0, _experimentBuilders.createBooleanExperiment)({
|
|
75
|
+
productKeys: {
|
|
76
|
+
confluence: 'platform_editor_table_drag_handle_hover',
|
|
77
|
+
jira: 'platform_editor_table_drag_handle_hover'
|
|
78
|
+
},
|
|
79
|
+
param: 'isEnabled',
|
|
80
|
+
defaultValue: false
|
|
81
|
+
}),
|
|
81
82
|
// Added 2024-09-05
|
|
82
83
|
support_table_in_comment: (0, _experimentBuilders.createBooleanExperiment)({
|
|
83
84
|
productKeys: {
|
|
@@ -335,14 +336,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
335
336
|
param: 'isEnabled',
|
|
336
337
|
defaultValue: false
|
|
337
338
|
}),
|
|
338
|
-
// Added 2025-06-11
|
|
339
|
-
platform_editor_core_static_emotion_non_central: (0, _experimentBuilders.createBooleanExperiment)({
|
|
340
|
-
productKeys: {
|
|
341
|
-
confluence: 'platform_editor_core_static_emotion_non_central'
|
|
342
|
-
},
|
|
343
|
-
param: 'isEnabled',
|
|
344
|
-
defaultValue: false
|
|
345
|
-
}),
|
|
346
339
|
// Added 2025-06-10
|
|
347
340
|
platform_editor_no_cursor_on_edit_page_init: (0, _experimentBuilders.createBooleanExperiment)({
|
|
348
341
|
productKeys: {
|
|
@@ -592,6 +585,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
592
585
|
param: 'isEnabled',
|
|
593
586
|
defaultValue: false
|
|
594
587
|
}),
|
|
588
|
+
// Added 2025-09-16
|
|
589
|
+
platform_editor_emoji_otp: (0, _experimentBuilders.createBooleanExperiment)({
|
|
590
|
+
productKeys: {
|
|
591
|
+
confluence: 'platform_editor_emoji_otp'
|
|
592
|
+
},
|
|
593
|
+
param: 'isEnabled',
|
|
594
|
+
defaultValue: false
|
|
595
|
+
}),
|
|
595
596
|
// Added 2025-07-23
|
|
596
597
|
platform_editor_renderer_breakout_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
597
598
|
productKeys: {
|
|
@@ -1025,6 +1026,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1025
1026
|
param: 'isEnabled',
|
|
1026
1027
|
defaultValue: false
|
|
1027
1028
|
}),
|
|
1029
|
+
// Added 2025-09-16
|
|
1030
|
+
platform_editor_nested_table_refresh_width_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1031
|
+
productKeys: {
|
|
1032
|
+
confluence: 'platform_editor_nested_table_refresh_width_fix'
|
|
1033
|
+
},
|
|
1034
|
+
param: 'isEnabled',
|
|
1035
|
+
defaultValue: false
|
|
1036
|
+
}),
|
|
1028
1037
|
// Added 10-09-2025
|
|
1029
1038
|
platform_editor_toolbar_task_list_menu_item: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1030
1039
|
productKeys: {
|
|
@@ -1041,6 +1050,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1041
1050
|
param: 'isEnabled',
|
|
1042
1051
|
defaultValue: false
|
|
1043
1052
|
}),
|
|
1053
|
+
// Added 2025-09-18
|
|
1054
|
+
platform_editor_toolbar_aifc_renderer_selection: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1055
|
+
productKeys: {
|
|
1056
|
+
confluence: 'platform_editor_toolbar_aifc_renderer_selection'
|
|
1057
|
+
},
|
|
1058
|
+
param: 'isEnabled',
|
|
1059
|
+
defaultValue: false
|
|
1060
|
+
}),
|
|
1044
1061
|
// Added 2025-09-15
|
|
1045
1062
|
platform_editor_text_highlight_padding: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1046
1063
|
productKeys: {
|
|
@@ -1048,5 +1065,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1048
1065
|
},
|
|
1049
1066
|
param: 'isEnabled',
|
|
1050
1067
|
defaultValue: false
|
|
1068
|
+
}),
|
|
1069
|
+
// Added 2025-09-17
|
|
1070
|
+
cc_complexit_fe_emoji_stability: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1071
|
+
productKeys: {
|
|
1072
|
+
confluence: 'cc_complexit_fe_emoji_stability'
|
|
1073
|
+
},
|
|
1074
|
+
param: 'isEnabled',
|
|
1075
|
+
defaultValue: false
|
|
1051
1076
|
})
|
|
1052
1077
|
};
|
|
@@ -20,7 +20,6 @@ export const testBooleanOverrides = {
|
|
|
20
20
|
platform_editor_preview_panel_responsiveness: false,
|
|
21
21
|
platform_editor_renderer_breakout_fix: false,
|
|
22
22
|
platform_editor_toolbar_aifc: false,
|
|
23
|
-
platform_editor_memoized_node_check: false,
|
|
24
23
|
platform_editor_media_card_vc_wrapper_attribute: false,
|
|
25
24
|
platform_editor_block_control_optimise_render: false,
|
|
26
25
|
'test-new-experiments-package': false,
|
|
@@ -45,7 +44,6 @@ export const testBooleanOverrides = {
|
|
|
45
44
|
platform_editor_tables_table_selector: false,
|
|
46
45
|
platform_renderer_fix_analytics_memo_callback: false,
|
|
47
46
|
platform_editor_stop_width_reflows: false,
|
|
48
|
-
platform_editor_core_static_emotion_non_central: false,
|
|
49
47
|
platform_editor_no_cursor_on_edit_page_init: false,
|
|
50
48
|
'jira-work-sync-desc-comment-summary': false,
|
|
51
49
|
platform_editor_nodevisibility: false,
|
|
@@ -16,13 +16,6 @@ export const editorExperimentsConfig = {
|
|
|
16
16
|
param: 'isEnabled',
|
|
17
17
|
defaultValue: false
|
|
18
18
|
}),
|
|
19
|
-
platform_editor_memoized_node_check: createBooleanExperiment({
|
|
20
|
-
productKeys: {
|
|
21
|
-
confluence: 'platform_editor_memoized_node_check'
|
|
22
|
-
},
|
|
23
|
-
param: 'isEnabled',
|
|
24
|
-
defaultValue: false
|
|
25
|
-
}),
|
|
26
19
|
platform_editor_media_card_vc_wrapper_attribute: createBooleanExperiment({
|
|
27
20
|
productKeys: {
|
|
28
21
|
confluence: 'platform_editor_media_card_vc_wrapper_attribute'
|
|
@@ -72,6 +65,14 @@ export const editorExperimentsConfig = {
|
|
|
72
65
|
param: 'isEnabled',
|
|
73
66
|
defaultValue: false
|
|
74
67
|
}),
|
|
68
|
+
platform_editor_table_drag_handle_hover: createBooleanExperiment({
|
|
69
|
+
productKeys: {
|
|
70
|
+
confluence: 'platform_editor_table_drag_handle_hover',
|
|
71
|
+
jira: 'platform_editor_table_drag_handle_hover'
|
|
72
|
+
},
|
|
73
|
+
param: 'isEnabled',
|
|
74
|
+
defaultValue: false
|
|
75
|
+
}),
|
|
75
76
|
// Added 2024-09-05
|
|
76
77
|
support_table_in_comment: createBooleanExperiment({
|
|
77
78
|
productKeys: {
|
|
@@ -329,14 +330,6 @@ export const editorExperimentsConfig = {
|
|
|
329
330
|
param: 'isEnabled',
|
|
330
331
|
defaultValue: false
|
|
331
332
|
}),
|
|
332
|
-
// Added 2025-06-11
|
|
333
|
-
platform_editor_core_static_emotion_non_central: createBooleanExperiment({
|
|
334
|
-
productKeys: {
|
|
335
|
-
confluence: 'platform_editor_core_static_emotion_non_central'
|
|
336
|
-
},
|
|
337
|
-
param: 'isEnabled',
|
|
338
|
-
defaultValue: false
|
|
339
|
-
}),
|
|
340
333
|
// Added 2025-06-10
|
|
341
334
|
platform_editor_no_cursor_on_edit_page_init: createBooleanExperiment({
|
|
342
335
|
productKeys: {
|
|
@@ -586,6 +579,14 @@ export const editorExperimentsConfig = {
|
|
|
586
579
|
param: 'isEnabled',
|
|
587
580
|
defaultValue: false
|
|
588
581
|
}),
|
|
582
|
+
// Added 2025-09-16
|
|
583
|
+
platform_editor_emoji_otp: createBooleanExperiment({
|
|
584
|
+
productKeys: {
|
|
585
|
+
confluence: 'platform_editor_emoji_otp'
|
|
586
|
+
},
|
|
587
|
+
param: 'isEnabled',
|
|
588
|
+
defaultValue: false
|
|
589
|
+
}),
|
|
589
590
|
// Added 2025-07-23
|
|
590
591
|
platform_editor_renderer_breakout_fix: createBooleanExperiment({
|
|
591
592
|
productKeys: {
|
|
@@ -1019,6 +1020,14 @@ export const editorExperimentsConfig = {
|
|
|
1019
1020
|
param: 'isEnabled',
|
|
1020
1021
|
defaultValue: false
|
|
1021
1022
|
}),
|
|
1023
|
+
// Added 2025-09-16
|
|
1024
|
+
platform_editor_nested_table_refresh_width_fix: createBooleanExperiment({
|
|
1025
|
+
productKeys: {
|
|
1026
|
+
confluence: 'platform_editor_nested_table_refresh_width_fix'
|
|
1027
|
+
},
|
|
1028
|
+
param: 'isEnabled',
|
|
1029
|
+
defaultValue: false
|
|
1030
|
+
}),
|
|
1022
1031
|
// Added 10-09-2025
|
|
1023
1032
|
platform_editor_toolbar_task_list_menu_item: createBooleanExperiment({
|
|
1024
1033
|
productKeys: {
|
|
@@ -1035,6 +1044,14 @@ export const editorExperimentsConfig = {
|
|
|
1035
1044
|
param: 'isEnabled',
|
|
1036
1045
|
defaultValue: false
|
|
1037
1046
|
}),
|
|
1047
|
+
// Added 2025-09-18
|
|
1048
|
+
platform_editor_toolbar_aifc_renderer_selection: createBooleanExperiment({
|
|
1049
|
+
productKeys: {
|
|
1050
|
+
confluence: 'platform_editor_toolbar_aifc_renderer_selection'
|
|
1051
|
+
},
|
|
1052
|
+
param: 'isEnabled',
|
|
1053
|
+
defaultValue: false
|
|
1054
|
+
}),
|
|
1038
1055
|
// Added 2025-09-15
|
|
1039
1056
|
platform_editor_text_highlight_padding: createBooleanExperiment({
|
|
1040
1057
|
productKeys: {
|
|
@@ -1042,5 +1059,13 @@ export const editorExperimentsConfig = {
|
|
|
1042
1059
|
},
|
|
1043
1060
|
param: 'isEnabled',
|
|
1044
1061
|
defaultValue: false
|
|
1062
|
+
}),
|
|
1063
|
+
// Added 2025-09-17
|
|
1064
|
+
cc_complexit_fe_emoji_stability: createBooleanExperiment({
|
|
1065
|
+
productKeys: {
|
|
1066
|
+
confluence: 'cc_complexit_fe_emoji_stability'
|
|
1067
|
+
},
|
|
1068
|
+
param: 'isEnabled',
|
|
1069
|
+
defaultValue: false
|
|
1045
1070
|
})
|
|
1046
1071
|
};
|
|
@@ -20,7 +20,6 @@ export var testBooleanOverrides = {
|
|
|
20
20
|
platform_editor_preview_panel_responsiveness: false,
|
|
21
21
|
platform_editor_renderer_breakout_fix: false,
|
|
22
22
|
platform_editor_toolbar_aifc: false,
|
|
23
|
-
platform_editor_memoized_node_check: false,
|
|
24
23
|
platform_editor_media_card_vc_wrapper_attribute: false,
|
|
25
24
|
platform_editor_block_control_optimise_render: false,
|
|
26
25
|
'test-new-experiments-package': false,
|
|
@@ -45,7 +44,6 @@ export var testBooleanOverrides = {
|
|
|
45
44
|
platform_editor_tables_table_selector: false,
|
|
46
45
|
platform_renderer_fix_analytics_memo_callback: false,
|
|
47
46
|
platform_editor_stop_width_reflows: false,
|
|
48
|
-
platform_editor_core_static_emotion_non_central: false,
|
|
49
47
|
platform_editor_no_cursor_on_edit_page_init: false,
|
|
50
48
|
'jira-work-sync-desc-comment-summary': false,
|
|
51
49
|
platform_editor_nodevisibility: false,
|
|
@@ -16,13 +16,6 @@ export var editorExperimentsConfig = {
|
|
|
16
16
|
param: 'isEnabled',
|
|
17
17
|
defaultValue: false
|
|
18
18
|
}),
|
|
19
|
-
platform_editor_memoized_node_check: createBooleanExperiment({
|
|
20
|
-
productKeys: {
|
|
21
|
-
confluence: 'platform_editor_memoized_node_check'
|
|
22
|
-
},
|
|
23
|
-
param: 'isEnabled',
|
|
24
|
-
defaultValue: false
|
|
25
|
-
}),
|
|
26
19
|
platform_editor_media_card_vc_wrapper_attribute: createBooleanExperiment({
|
|
27
20
|
productKeys: {
|
|
28
21
|
confluence: 'platform_editor_media_card_vc_wrapper_attribute'
|
|
@@ -72,6 +65,14 @@ export var editorExperimentsConfig = {
|
|
|
72
65
|
param: 'isEnabled',
|
|
73
66
|
defaultValue: false
|
|
74
67
|
}),
|
|
68
|
+
platform_editor_table_drag_handle_hover: createBooleanExperiment({
|
|
69
|
+
productKeys: {
|
|
70
|
+
confluence: 'platform_editor_table_drag_handle_hover',
|
|
71
|
+
jira: 'platform_editor_table_drag_handle_hover'
|
|
72
|
+
},
|
|
73
|
+
param: 'isEnabled',
|
|
74
|
+
defaultValue: false
|
|
75
|
+
}),
|
|
75
76
|
// Added 2024-09-05
|
|
76
77
|
support_table_in_comment: createBooleanExperiment({
|
|
77
78
|
productKeys: {
|
|
@@ -329,14 +330,6 @@ export var editorExperimentsConfig = {
|
|
|
329
330
|
param: 'isEnabled',
|
|
330
331
|
defaultValue: false
|
|
331
332
|
}),
|
|
332
|
-
// Added 2025-06-11
|
|
333
|
-
platform_editor_core_static_emotion_non_central: createBooleanExperiment({
|
|
334
|
-
productKeys: {
|
|
335
|
-
confluence: 'platform_editor_core_static_emotion_non_central'
|
|
336
|
-
},
|
|
337
|
-
param: 'isEnabled',
|
|
338
|
-
defaultValue: false
|
|
339
|
-
}),
|
|
340
333
|
// Added 2025-06-10
|
|
341
334
|
platform_editor_no_cursor_on_edit_page_init: createBooleanExperiment({
|
|
342
335
|
productKeys: {
|
|
@@ -586,6 +579,14 @@ export var editorExperimentsConfig = {
|
|
|
586
579
|
param: 'isEnabled',
|
|
587
580
|
defaultValue: false
|
|
588
581
|
}),
|
|
582
|
+
// Added 2025-09-16
|
|
583
|
+
platform_editor_emoji_otp: createBooleanExperiment({
|
|
584
|
+
productKeys: {
|
|
585
|
+
confluence: 'platform_editor_emoji_otp'
|
|
586
|
+
},
|
|
587
|
+
param: 'isEnabled',
|
|
588
|
+
defaultValue: false
|
|
589
|
+
}),
|
|
589
590
|
// Added 2025-07-23
|
|
590
591
|
platform_editor_renderer_breakout_fix: createBooleanExperiment({
|
|
591
592
|
productKeys: {
|
|
@@ -1019,6 +1020,14 @@ export var editorExperimentsConfig = {
|
|
|
1019
1020
|
param: 'isEnabled',
|
|
1020
1021
|
defaultValue: false
|
|
1021
1022
|
}),
|
|
1023
|
+
// Added 2025-09-16
|
|
1024
|
+
platform_editor_nested_table_refresh_width_fix: createBooleanExperiment({
|
|
1025
|
+
productKeys: {
|
|
1026
|
+
confluence: 'platform_editor_nested_table_refresh_width_fix'
|
|
1027
|
+
},
|
|
1028
|
+
param: 'isEnabled',
|
|
1029
|
+
defaultValue: false
|
|
1030
|
+
}),
|
|
1022
1031
|
// Added 10-09-2025
|
|
1023
1032
|
platform_editor_toolbar_task_list_menu_item: createBooleanExperiment({
|
|
1024
1033
|
productKeys: {
|
|
@@ -1035,6 +1044,14 @@ export var editorExperimentsConfig = {
|
|
|
1035
1044
|
param: 'isEnabled',
|
|
1036
1045
|
defaultValue: false
|
|
1037
1046
|
}),
|
|
1047
|
+
// Added 2025-09-18
|
|
1048
|
+
platform_editor_toolbar_aifc_renderer_selection: createBooleanExperiment({
|
|
1049
|
+
productKeys: {
|
|
1050
|
+
confluence: 'platform_editor_toolbar_aifc_renderer_selection'
|
|
1051
|
+
},
|
|
1052
|
+
param: 'isEnabled',
|
|
1053
|
+
defaultValue: false
|
|
1054
|
+
}),
|
|
1038
1055
|
// Added 2025-09-15
|
|
1039
1056
|
platform_editor_text_highlight_padding: createBooleanExperiment({
|
|
1040
1057
|
productKeys: {
|
|
@@ -1042,5 +1059,13 @@ export var editorExperimentsConfig = {
|
|
|
1042
1059
|
},
|
|
1043
1060
|
param: 'isEnabled',
|
|
1044
1061
|
defaultValue: false
|
|
1062
|
+
}),
|
|
1063
|
+
// Added 2025-09-17
|
|
1064
|
+
cc_complexit_fe_emoji_stability: createBooleanExperiment({
|
|
1065
|
+
productKeys: {
|
|
1066
|
+
confluence: 'cc_complexit_fe_emoji_stability'
|
|
1067
|
+
},
|
|
1068
|
+
param: 'isEnabled',
|
|
1069
|
+
defaultValue: false
|
|
1045
1070
|
})
|
|
1046
1071
|
};
|
|
@@ -11,12 +11,6 @@ export declare const editorExperimentsConfig: {
|
|
|
11
11
|
param: string;
|
|
12
12
|
productKeys?: import("./types").ProductKeys;
|
|
13
13
|
};
|
|
14
|
-
platform_editor_memoized_node_check: {
|
|
15
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
16
|
-
defaultValue: boolean;
|
|
17
|
-
param: string;
|
|
18
|
-
productKeys?: import("./types").ProductKeys;
|
|
19
|
-
};
|
|
20
14
|
platform_editor_media_card_vc_wrapper_attribute: {
|
|
21
15
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
22
16
|
defaultValue: boolean;
|
|
@@ -54,6 +48,12 @@ export declare const editorExperimentsConfig: {
|
|
|
54
48
|
param: string;
|
|
55
49
|
productKeys?: import("./types").ProductKeys;
|
|
56
50
|
};
|
|
51
|
+
platform_editor_table_drag_handle_hover: {
|
|
52
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
53
|
+
defaultValue: boolean;
|
|
54
|
+
param: string;
|
|
55
|
+
productKeys?: import("./types").ProductKeys;
|
|
56
|
+
};
|
|
57
57
|
support_table_in_comment: {
|
|
58
58
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
59
59
|
defaultValue: boolean;
|
|
@@ -245,12 +245,6 @@ export declare const editorExperimentsConfig: {
|
|
|
245
245
|
param: string;
|
|
246
246
|
productKeys?: import("./types").ProductKeys;
|
|
247
247
|
};
|
|
248
|
-
platform_editor_core_static_emotion_non_central: {
|
|
249
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
250
|
-
defaultValue: boolean;
|
|
251
|
-
param: string;
|
|
252
|
-
productKeys?: import("./types").ProductKeys;
|
|
253
|
-
};
|
|
254
248
|
platform_editor_no_cursor_on_edit_page_init: {
|
|
255
249
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
256
250
|
defaultValue: boolean;
|
|
@@ -437,6 +431,12 @@ export declare const editorExperimentsConfig: {
|
|
|
437
431
|
param: string;
|
|
438
432
|
productKeys?: import("./types").ProductKeys;
|
|
439
433
|
};
|
|
434
|
+
platform_editor_emoji_otp: {
|
|
435
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
436
|
+
defaultValue: boolean;
|
|
437
|
+
param: string;
|
|
438
|
+
productKeys?: import("./types").ProductKeys;
|
|
439
|
+
};
|
|
440
440
|
platform_editor_renderer_breakout_fix: {
|
|
441
441
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
442
442
|
defaultValue: boolean;
|
|
@@ -752,6 +752,12 @@ export declare const editorExperimentsConfig: {
|
|
|
752
752
|
param: string;
|
|
753
753
|
productKeys?: import("./types").ProductKeys;
|
|
754
754
|
};
|
|
755
|
+
platform_editor_nested_table_refresh_width_fix: {
|
|
756
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
757
|
+
defaultValue: boolean;
|
|
758
|
+
param: string;
|
|
759
|
+
productKeys?: import("./types").ProductKeys;
|
|
760
|
+
};
|
|
755
761
|
platform_editor_toolbar_task_list_menu_item: {
|
|
756
762
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
757
763
|
defaultValue: boolean;
|
|
@@ -764,10 +770,22 @@ export declare const editorExperimentsConfig: {
|
|
|
764
770
|
param: string;
|
|
765
771
|
productKeys?: import("./types").ProductKeys;
|
|
766
772
|
};
|
|
773
|
+
platform_editor_toolbar_aifc_renderer_selection: {
|
|
774
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
775
|
+
defaultValue: boolean;
|
|
776
|
+
param: string;
|
|
777
|
+
productKeys?: import("./types").ProductKeys;
|
|
778
|
+
};
|
|
767
779
|
platform_editor_text_highlight_padding: {
|
|
768
780
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
769
781
|
defaultValue: boolean;
|
|
770
782
|
param: string;
|
|
771
783
|
productKeys?: import("./types").ProductKeys;
|
|
772
784
|
};
|
|
785
|
+
cc_complexit_fe_emoji_stability: {
|
|
786
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
787
|
+
defaultValue: boolean;
|
|
788
|
+
param: string;
|
|
789
|
+
productKeys?: import("./types").ProductKeys;
|
|
790
|
+
};
|
|
773
791
|
};
|
|
@@ -11,12 +11,6 @@ export declare const editorExperimentsConfig: {
|
|
|
11
11
|
param: string;
|
|
12
12
|
productKeys?: import("./types").ProductKeys;
|
|
13
13
|
};
|
|
14
|
-
platform_editor_memoized_node_check: {
|
|
15
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
16
|
-
defaultValue: boolean;
|
|
17
|
-
param: string;
|
|
18
|
-
productKeys?: import("./types").ProductKeys;
|
|
19
|
-
};
|
|
20
14
|
platform_editor_media_card_vc_wrapper_attribute: {
|
|
21
15
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
22
16
|
defaultValue: boolean;
|
|
@@ -54,6 +48,12 @@ export declare const editorExperimentsConfig: {
|
|
|
54
48
|
param: string;
|
|
55
49
|
productKeys?: import("./types").ProductKeys;
|
|
56
50
|
};
|
|
51
|
+
platform_editor_table_drag_handle_hover: {
|
|
52
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
53
|
+
defaultValue: boolean;
|
|
54
|
+
param: string;
|
|
55
|
+
productKeys?: import("./types").ProductKeys;
|
|
56
|
+
};
|
|
57
57
|
support_table_in_comment: {
|
|
58
58
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
59
59
|
defaultValue: boolean;
|
|
@@ -245,12 +245,6 @@ export declare const editorExperimentsConfig: {
|
|
|
245
245
|
param: string;
|
|
246
246
|
productKeys?: import("./types").ProductKeys;
|
|
247
247
|
};
|
|
248
|
-
platform_editor_core_static_emotion_non_central: {
|
|
249
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
250
|
-
defaultValue: boolean;
|
|
251
|
-
param: string;
|
|
252
|
-
productKeys?: import("./types").ProductKeys;
|
|
253
|
-
};
|
|
254
248
|
platform_editor_no_cursor_on_edit_page_init: {
|
|
255
249
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
256
250
|
defaultValue: boolean;
|
|
@@ -437,6 +431,12 @@ export declare const editorExperimentsConfig: {
|
|
|
437
431
|
param: string;
|
|
438
432
|
productKeys?: import("./types").ProductKeys;
|
|
439
433
|
};
|
|
434
|
+
platform_editor_emoji_otp: {
|
|
435
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
436
|
+
defaultValue: boolean;
|
|
437
|
+
param: string;
|
|
438
|
+
productKeys?: import("./types").ProductKeys;
|
|
439
|
+
};
|
|
440
440
|
platform_editor_renderer_breakout_fix: {
|
|
441
441
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
442
442
|
defaultValue: boolean;
|
|
@@ -752,6 +752,12 @@ export declare const editorExperimentsConfig: {
|
|
|
752
752
|
param: string;
|
|
753
753
|
productKeys?: import("./types").ProductKeys;
|
|
754
754
|
};
|
|
755
|
+
platform_editor_nested_table_refresh_width_fix: {
|
|
756
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
757
|
+
defaultValue: boolean;
|
|
758
|
+
param: string;
|
|
759
|
+
productKeys?: import("./types").ProductKeys;
|
|
760
|
+
};
|
|
755
761
|
platform_editor_toolbar_task_list_menu_item: {
|
|
756
762
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
757
763
|
defaultValue: boolean;
|
|
@@ -764,10 +770,22 @@ export declare const editorExperimentsConfig: {
|
|
|
764
770
|
param: string;
|
|
765
771
|
productKeys?: import("./types").ProductKeys;
|
|
766
772
|
};
|
|
773
|
+
platform_editor_toolbar_aifc_renderer_selection: {
|
|
774
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
775
|
+
defaultValue: boolean;
|
|
776
|
+
param: string;
|
|
777
|
+
productKeys?: import("./types").ProductKeys;
|
|
778
|
+
};
|
|
767
779
|
platform_editor_text_highlight_padding: {
|
|
768
780
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
769
781
|
defaultValue: boolean;
|
|
770
782
|
param: string;
|
|
771
783
|
productKeys?: import("./types").ProductKeys;
|
|
772
784
|
};
|
|
785
|
+
cc_complexit_fe_emoji_stability: {
|
|
786
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
787
|
+
defaultValue: boolean;
|
|
788
|
+
param: string;
|
|
789
|
+
productKeys?: import("./types").ProductKeys;
|
|
790
|
+
};
|
|
773
791
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/tmp-editor-statsig",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.30.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",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"atlaskit:src": "src/index.ts",
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@atlaskit/feature-gate-js-client": "^5.5.0",
|
|
36
|
-
"@atlaskit/react-ufo": "^4.
|
|
36
|
+
"@atlaskit/react-ufo": "^4.10.0",
|
|
37
37
|
"@babel/runtime": "^7.0.0"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|