@atlaskit/tmp-editor-statsig 12.29.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 +19 -0
- package/dist/cjs/exp-test-overrides.js +0 -2
- package/dist/cjs/experiments-config.js +24 -15
- package/dist/es2019/exp-test-overrides.js +0 -2
- package/dist/es2019/experiments-config.js +24 -15
- package/dist/esm/exp-test-overrides.js +0 -2
- package/dist/esm/experiments-config.js +24 -15
- package/dist/types/experiments-config.d.ts +18 -12
- package/dist/types-ts4.5/experiments-config.d.ts +18 -12
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
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
|
+
|
|
3
22
|
## 12.29.0
|
|
4
23
|
|
|
5
24
|
### 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: {
|
|
@@ -1057,6 +1050,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1057
1050
|
param: 'isEnabled',
|
|
1058
1051
|
defaultValue: false
|
|
1059
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
|
+
}),
|
|
1060
1061
|
// Added 2025-09-15
|
|
1061
1062
|
platform_editor_text_highlight_padding: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1062
1063
|
productKeys: {
|
|
@@ -1064,5 +1065,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1064
1065
|
},
|
|
1065
1066
|
param: 'isEnabled',
|
|
1066
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
|
|
1067
1076
|
})
|
|
1068
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: {
|
|
@@ -1051,6 +1044,14 @@ export const editorExperimentsConfig = {
|
|
|
1051
1044
|
param: 'isEnabled',
|
|
1052
1045
|
defaultValue: false
|
|
1053
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
|
+
}),
|
|
1054
1055
|
// Added 2025-09-15
|
|
1055
1056
|
platform_editor_text_highlight_padding: createBooleanExperiment({
|
|
1056
1057
|
productKeys: {
|
|
@@ -1058,5 +1059,13 @@ export const editorExperimentsConfig = {
|
|
|
1058
1059
|
},
|
|
1059
1060
|
param: 'isEnabled',
|
|
1060
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
|
|
1061
1070
|
})
|
|
1062
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: {
|
|
@@ -1051,6 +1044,14 @@ export var editorExperimentsConfig = {
|
|
|
1051
1044
|
param: 'isEnabled',
|
|
1052
1045
|
defaultValue: false
|
|
1053
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
|
+
}),
|
|
1054
1055
|
// Added 2025-09-15
|
|
1055
1056
|
platform_editor_text_highlight_padding: createBooleanExperiment({
|
|
1056
1057
|
productKeys: {
|
|
@@ -1058,5 +1059,13 @@ export var editorExperimentsConfig = {
|
|
|
1058
1059
|
},
|
|
1059
1060
|
param: 'isEnabled',
|
|
1060
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
|
|
1061
1070
|
})
|
|
1062
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;
|
|
@@ -776,10 +770,22 @@ export declare const editorExperimentsConfig: {
|
|
|
776
770
|
param: string;
|
|
777
771
|
productKeys?: import("./types").ProductKeys;
|
|
778
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
|
+
};
|
|
779
779
|
platform_editor_text_highlight_padding: {
|
|
780
780
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
781
781
|
defaultValue: boolean;
|
|
782
782
|
param: string;
|
|
783
783
|
productKeys?: import("./types").ProductKeys;
|
|
784
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
|
+
};
|
|
785
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;
|
|
@@ -776,10 +770,22 @@ export declare const editorExperimentsConfig: {
|
|
|
776
770
|
param: string;
|
|
777
771
|
productKeys?: import("./types").ProductKeys;
|
|
778
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
|
+
};
|
|
779
779
|
platform_editor_text_highlight_padding: {
|
|
780
780
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
781
781
|
defaultValue: boolean;
|
|
782
782
|
param: string;
|
|
783
783
|
productKeys?: import("./types").ProductKeys;
|
|
784
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
|
+
};
|
|
785
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": {
|