@atlaskit/tmp-editor-statsig 8.8.0 → 9.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 +8 -0
- package/dist/cjs/experiments-config.js +0 -9
- package/dist/es2019/experiments-config.js +0 -9
- package/dist/esm/experiments-config.js +0 -9
- package/dist/types/editor-experiments-test-utils.d.ts +320 -3
- package/dist/types/experiment-builders.d.ts +2 -2
- package/dist/types/experiments-config.d.ts +51 -58
- package/dist/types/setup.d.ts +53 -1
- package/dist/types-ts4.5/editor-experiments-test-utils.d.ts +320 -3
- package/dist/types-ts4.5/experiment-builders.d.ts +2 -2
- package/dist/types-ts4.5/experiments-config.d.ts +51 -58
- package/dist/types-ts4.5/setup.d.ts +53 -1
- package/package.json +1 -1
|
@@ -8,323 +8,316 @@ export declare const editorExperimentsConfig: {
|
|
|
8
8
|
platform_editor_reduce_noisy_steps_ncs: {
|
|
9
9
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
10
10
|
defaultValue: boolean;
|
|
11
|
-
productKeys?: import("./types").ProductKeys;
|
|
11
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
12
12
|
param: string;
|
|
13
13
|
};
|
|
14
14
|
platform_editor_memoized_node_check: {
|
|
15
15
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
16
16
|
defaultValue: boolean;
|
|
17
|
-
productKeys?: import("./types").ProductKeys;
|
|
17
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
18
18
|
param: string;
|
|
19
19
|
};
|
|
20
20
|
platform_editor_media_card_vc_wrapper_attribute: {
|
|
21
21
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
22
22
|
defaultValue: boolean;
|
|
23
|
-
productKeys?: import("./types").ProductKeys;
|
|
23
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
24
24
|
param: string;
|
|
25
25
|
};
|
|
26
26
|
platform_editor_block_control_optimise_render: {
|
|
27
27
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
28
28
|
defaultValue: boolean;
|
|
29
|
-
productKeys?: import("./types").ProductKeys;
|
|
29
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
30
30
|
param: string;
|
|
31
31
|
};
|
|
32
32
|
'example-boolean': {
|
|
33
33
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
34
34
|
defaultValue: boolean;
|
|
35
|
-
productKeys?: import("./types").ProductKeys;
|
|
35
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
36
36
|
param: string;
|
|
37
37
|
};
|
|
38
38
|
'example-multivariate': {
|
|
39
39
|
values: ("one" | "two" | "three")[];
|
|
40
40
|
typeGuard: (value: unknown) => value is "one" | "two" | "three";
|
|
41
41
|
defaultValue: "one" | "two" | "three";
|
|
42
|
-
productKeys?: import("./types").ProductKeys;
|
|
42
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
43
43
|
param: string;
|
|
44
44
|
};
|
|
45
45
|
'test-new-experiments-package': {
|
|
46
46
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
47
47
|
defaultValue: boolean;
|
|
48
|
-
productKeys?: import("./types").ProductKeys;
|
|
48
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
49
49
|
param: string;
|
|
50
50
|
};
|
|
51
51
|
support_table_in_comment: {
|
|
52
52
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
53
53
|
defaultValue: boolean;
|
|
54
|
-
productKeys?: import("./types").ProductKeys;
|
|
54
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
55
55
|
param: string;
|
|
56
56
|
};
|
|
57
57
|
platform_editor_exp_lazy_node_views: {
|
|
58
58
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
59
59
|
defaultValue: boolean;
|
|
60
|
-
productKeys?: import("./types").ProductKeys;
|
|
60
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
61
61
|
param: string;
|
|
62
62
|
};
|
|
63
63
|
platform_renderer_table_sticky_scrollbar: {
|
|
64
64
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
65
65
|
defaultValue: boolean;
|
|
66
|
-
productKeys?: import("./types").ProductKeys;
|
|
66
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
67
67
|
param: string;
|
|
68
68
|
};
|
|
69
69
|
platform_editor_controls_performance_fixes: {
|
|
70
70
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
71
71
|
defaultValue: boolean;
|
|
72
|
-
productKeys?: import("./types").ProductKeys;
|
|
72
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
73
73
|
param: string;
|
|
74
74
|
};
|
|
75
75
|
platform_editor_prevent_toolbar_layout_shifts: {
|
|
76
76
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
77
77
|
defaultValue: boolean;
|
|
78
|
-
productKeys?: import("./types").ProductKeys;
|
|
78
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
79
79
|
param: string;
|
|
80
80
|
};
|
|
81
81
|
comment_on_bodied_extensions: {
|
|
82
82
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
83
83
|
defaultValue: boolean;
|
|
84
|
-
productKeys?: import("./types").ProductKeys;
|
|
84
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
85
85
|
param: string;
|
|
86
86
|
};
|
|
87
87
|
advanced_layouts: {
|
|
88
88
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
89
89
|
defaultValue: boolean;
|
|
90
|
-
productKeys?: import("./types").ProductKeys;
|
|
90
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
91
91
|
param: string;
|
|
92
92
|
};
|
|
93
93
|
single_column_layouts: {
|
|
94
94
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
95
95
|
defaultValue: boolean;
|
|
96
|
-
productKeys?: import("./types").ProductKeys;
|
|
96
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
97
97
|
param: string;
|
|
98
98
|
};
|
|
99
99
|
support_table_in_comment_jira: {
|
|
100
100
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
101
101
|
defaultValue: boolean;
|
|
102
|
-
productKeys?: import("./types").ProductKeys;
|
|
102
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
103
103
|
param: string;
|
|
104
104
|
};
|
|
105
105
|
'platform_editor_ai-prompts-placeholder': {
|
|
106
106
|
values: ("test" | "control")[];
|
|
107
107
|
typeGuard: (value: unknown) => value is "test" | "control";
|
|
108
108
|
defaultValue: "test" | "control";
|
|
109
|
-
productKeys?: import("./types").ProductKeys;
|
|
109
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
110
110
|
param: string;
|
|
111
111
|
};
|
|
112
112
|
'nested-tables-in-tables': {
|
|
113
113
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
114
114
|
defaultValue: boolean;
|
|
115
|
-
productKeys?: import("./types").ProductKeys;
|
|
115
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
116
116
|
param: string;
|
|
117
117
|
};
|
|
118
118
|
platform_editor_ai_unsplash_page_header: {
|
|
119
119
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
120
120
|
defaultValue: boolean;
|
|
121
|
-
productKeys?: import("./types").ProductKeys;
|
|
121
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
122
122
|
param: string;
|
|
123
123
|
};
|
|
124
124
|
platform_editor_blockquote_in_text_formatting_menu: {
|
|
125
125
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
126
126
|
defaultValue: boolean;
|
|
127
|
-
productKeys?: import("./types").ProductKeys;
|
|
127
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
128
128
|
param: string;
|
|
129
129
|
};
|
|
130
130
|
platform_editor_advanced_code_blocks: {
|
|
131
131
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
132
132
|
defaultValue: boolean;
|
|
133
|
-
productKeys?: import("./types").ProductKeys;
|
|
133
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
134
134
|
param: string;
|
|
135
135
|
};
|
|
136
136
|
platform_editor_element_drag_and_drop_multiselect: {
|
|
137
137
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
138
138
|
defaultValue: boolean;
|
|
139
|
-
productKeys?: import("./types").ProductKeys;
|
|
139
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
140
140
|
param: string;
|
|
141
141
|
};
|
|
142
142
|
platform_editor_ai_edit_response_in_preview: {
|
|
143
143
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
144
144
|
defaultValue: boolean;
|
|
145
|
-
productKeys?: import("./types").ProductKeys;
|
|
145
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
146
146
|
param: string;
|
|
147
147
|
};
|
|
148
148
|
platform_editor_controls: {
|
|
149
149
|
values: ("control" | "variant1")[];
|
|
150
150
|
typeGuard: (value: unknown) => value is "control" | "variant1";
|
|
151
151
|
defaultValue: "control" | "variant1";
|
|
152
|
-
productKeys?: import("./types").ProductKeys;
|
|
152
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
153
153
|
param: string;
|
|
154
154
|
};
|
|
155
155
|
platform_editor_smart_link_cmd_ctrl_click: {
|
|
156
156
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
157
157
|
defaultValue: boolean;
|
|
158
|
-
productKeys?: import("./types").ProductKeys;
|
|
158
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
159
159
|
param: string;
|
|
160
160
|
};
|
|
161
161
|
platform_editor_insertion: {
|
|
162
162
|
values: ("control" | "variant1")[];
|
|
163
163
|
typeGuard: (value: unknown) => value is "control" | "variant1";
|
|
164
164
|
defaultValue: "control" | "variant1";
|
|
165
|
-
productKeys?: import("./types").ProductKeys;
|
|
165
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
166
166
|
param: string;
|
|
167
167
|
};
|
|
168
168
|
platform_editor_vanilla_dom: {
|
|
169
169
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
170
170
|
defaultValue: boolean;
|
|
171
|
-
productKeys?: import("./types").ProductKeys;
|
|
171
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
172
172
|
param: string;
|
|
173
173
|
};
|
|
174
174
|
editor_text_highlight_orange_to_yellow: {
|
|
175
175
|
values: ("test" | "control")[];
|
|
176
176
|
typeGuard: (value: unknown) => value is "test" | "control";
|
|
177
177
|
defaultValue: "test" | "control";
|
|
178
|
-
productKeys?: import("./types").ProductKeys;
|
|
178
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
179
179
|
param: string;
|
|
180
180
|
};
|
|
181
181
|
platform_editor_ai_proactive_ai_nudge_parameters: {
|
|
182
182
|
values: ("control" | "variant1")[];
|
|
183
183
|
typeGuard: (value: unknown) => value is "control" | "variant1";
|
|
184
184
|
defaultValue: "control" | "variant1";
|
|
185
|
-
productKeys?: import("./types").ProductKeys;
|
|
185
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
186
186
|
param: string;
|
|
187
187
|
};
|
|
188
188
|
platform_editor_offline_editing_web: {
|
|
189
189
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
190
190
|
defaultValue: boolean;
|
|
191
|
-
productKeys?: import("./types").ProductKeys;
|
|
191
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
192
192
|
param: string;
|
|
193
193
|
};
|
|
194
194
|
editor_ai_inline_suggestion_date_v2: {
|
|
195
195
|
values: ("test" | "control")[];
|
|
196
196
|
typeGuard: (value: unknown) => value is "test" | "control";
|
|
197
197
|
defaultValue: "test" | "control";
|
|
198
|
-
productKeys?: import("./types").ProductKeys;
|
|
198
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
199
199
|
param: string;
|
|
200
200
|
};
|
|
201
201
|
platform_editor_tables_drag_and_drop: {
|
|
202
202
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
203
203
|
defaultValue: boolean;
|
|
204
|
-
productKeys?: import("./types").ProductKeys;
|
|
204
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
205
205
|
param: string;
|
|
206
206
|
};
|
|
207
207
|
platform_editor_tables_table_selector: {
|
|
208
208
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
209
209
|
defaultValue: boolean;
|
|
210
|
-
productKeys?: import("./types").ProductKeys;
|
|
210
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
211
211
|
param: string;
|
|
212
212
|
};
|
|
213
213
|
platform_editor_usesharedpluginstateselector: {
|
|
214
214
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
215
215
|
defaultValue: boolean;
|
|
216
|
-
productKeys?: import("./types").ProductKeys;
|
|
216
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
217
217
|
param: string;
|
|
218
218
|
};
|
|
219
219
|
platform_renderer_fix_analytics_memo_callback: {
|
|
220
220
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
221
221
|
defaultValue: boolean;
|
|
222
|
-
productKeys?: import("./types").ProductKeys;
|
|
223
|
-
param: string;
|
|
224
|
-
};
|
|
225
|
-
editor_ai_contextual_selection_toolbar_button: {
|
|
226
|
-
values: ("test" | "control")[];
|
|
227
|
-
typeGuard: (value: unknown) => value is "test" | "control";
|
|
228
|
-
defaultValue: "test" | "control";
|
|
229
|
-
productKeys?: import("./types").ProductKeys;
|
|
222
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
230
223
|
param: string;
|
|
231
224
|
};
|
|
232
225
|
editor_ai_converge_free_gen_on_rovo: {
|
|
233
226
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
234
227
|
defaultValue: boolean;
|
|
235
|
-
productKeys?: import("./types").ProductKeys;
|
|
228
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
236
229
|
param: string;
|
|
237
230
|
};
|
|
238
231
|
platform_editor_stop_width_reflows: {
|
|
239
232
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
240
233
|
defaultValue: boolean;
|
|
241
|
-
productKeys?: import("./types").ProductKeys;
|
|
234
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
242
235
|
param: string;
|
|
243
236
|
};
|
|
244
237
|
platform_editor_core_static_emotion: {
|
|
245
238
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
246
239
|
defaultValue: boolean;
|
|
247
|
-
productKeys?: import("./types").ProductKeys;
|
|
240
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
248
241
|
param: string;
|
|
249
242
|
};
|
|
250
243
|
platform_editor_core_static_emotion_non_central: {
|
|
251
244
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
252
245
|
defaultValue: boolean;
|
|
253
|
-
productKeys?: import("./types").ProductKeys;
|
|
246
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
254
247
|
param: string;
|
|
255
248
|
};
|
|
256
249
|
platform_editor_no_cursor_on_edit_page_init: {
|
|
257
250
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
258
251
|
defaultValue: boolean;
|
|
259
|
-
productKeys?: import("./types").ProductKeys;
|
|
252
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
260
253
|
param: string;
|
|
261
254
|
};
|
|
262
255
|
platform_editor_breakout_resizing: {
|
|
263
256
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
264
257
|
defaultValue: boolean;
|
|
265
|
-
productKeys?: import("./types").ProductKeys;
|
|
258
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
266
259
|
param: string;
|
|
267
260
|
};
|
|
268
261
|
platform_editor_ai_quickstart_command: {
|
|
269
262
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
270
263
|
defaultValue: boolean;
|
|
271
|
-
productKeys?: import("./types").ProductKeys;
|
|
264
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
272
265
|
param: string;
|
|
273
266
|
};
|
|
274
267
|
platform_editor_toolbar_rerender_optimization_exp: {
|
|
275
268
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
276
269
|
defaultValue: boolean;
|
|
277
|
-
productKeys?: import("./types").ProductKeys;
|
|
270
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
278
271
|
param: string;
|
|
279
272
|
};
|
|
280
273
|
platform_editor_controls_toolbar_pinning_exp: {
|
|
281
274
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
282
275
|
defaultValue: boolean;
|
|
283
|
-
productKeys?: import("./types").ProductKeys;
|
|
276
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
284
277
|
param: string;
|
|
285
278
|
};
|
|
286
279
|
platform_editor_block_controls_perf_optimization: {
|
|
287
280
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
288
281
|
defaultValue: boolean;
|
|
289
|
-
productKeys?: import("./types").ProductKeys;
|
|
282
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
290
283
|
param: string;
|
|
291
284
|
};
|
|
292
285
|
platform_editor_enable_single_player_step_merging: {
|
|
293
286
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
294
287
|
defaultValue: boolean;
|
|
295
|
-
productKeys?: import("./types").ProductKeys;
|
|
288
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
296
289
|
param: string;
|
|
297
290
|
};
|
|
298
291
|
platform_editor_ai_iw_adf_streaming: {
|
|
299
292
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
300
293
|
defaultValue: boolean;
|
|
301
|
-
productKeys?: import("./types").ProductKeys;
|
|
294
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
302
295
|
param: string;
|
|
303
296
|
};
|
|
304
297
|
platform_editor_ai_remove_trivial_prompts_cc: {
|
|
305
298
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
306
299
|
defaultValue: boolean;
|
|
307
|
-
productKeys?: import("./types").ProductKeys;
|
|
300
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
308
301
|
param: string;
|
|
309
302
|
};
|
|
310
303
|
confluence_whiteboards_quick_insert_aa: {
|
|
311
304
|
values: ("control" | "test_blank" | "test_diagram")[];
|
|
312
305
|
typeGuard: (value: unknown) => value is "control" | "test_blank" | "test_diagram";
|
|
313
306
|
defaultValue: "control" | "test_blank" | "test_diagram";
|
|
314
|
-
productKeys?: import("./types").ProductKeys;
|
|
307
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
315
308
|
param: string;
|
|
316
309
|
};
|
|
317
310
|
platform_editor_find_and_replace_improvements: {
|
|
318
311
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
319
312
|
defaultValue: boolean;
|
|
320
|
-
productKeys?: import("./types").ProductKeys;
|
|
313
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
321
314
|
param: string;
|
|
322
315
|
};
|
|
323
316
|
confluence_whiteboards_quick_insert: {
|
|
324
317
|
values: ("control" | "test_blank" | "test_diagram")[];
|
|
325
318
|
typeGuard: (value: unknown) => value is "control" | "test_blank" | "test_diagram";
|
|
326
319
|
defaultValue: "control" | "test_blank" | "test_diagram";
|
|
327
|
-
productKeys?: import("./types").ProductKeys;
|
|
320
|
+
productKeys?: import("./types").ProductKeys | undefined;
|
|
328
321
|
param: string;
|
|
329
322
|
};
|
|
330
323
|
};
|
package/dist/types/setup.d.ts
CHANGED
|
@@ -7,7 +7,59 @@ export type EditorExperimentParamOverrides = {
|
|
|
7
7
|
[paramName: string]: any;
|
|
8
8
|
};
|
|
9
9
|
};
|
|
10
|
-
export declare let _overrides:
|
|
10
|
+
export declare let _overrides: Partial<{
|
|
11
|
+
platform_editor_reduce_noisy_steps_ncs: boolean;
|
|
12
|
+
platform_editor_memoized_node_check: boolean;
|
|
13
|
+
platform_editor_media_card_vc_wrapper_attribute: boolean;
|
|
14
|
+
platform_editor_block_control_optimise_render: boolean;
|
|
15
|
+
'example-boolean': boolean;
|
|
16
|
+
'example-multivariate': "one" | "two" | "three";
|
|
17
|
+
'test-new-experiments-package': boolean;
|
|
18
|
+
support_table_in_comment: boolean;
|
|
19
|
+
platform_editor_exp_lazy_node_views: boolean;
|
|
20
|
+
platform_renderer_table_sticky_scrollbar: boolean;
|
|
21
|
+
platform_editor_controls_performance_fixes: boolean;
|
|
22
|
+
platform_editor_prevent_toolbar_layout_shifts: boolean;
|
|
23
|
+
comment_on_bodied_extensions: boolean;
|
|
24
|
+
advanced_layouts: boolean;
|
|
25
|
+
single_column_layouts: boolean;
|
|
26
|
+
support_table_in_comment_jira: boolean;
|
|
27
|
+
'platform_editor_ai-prompts-placeholder': "test" | "control";
|
|
28
|
+
'nested-tables-in-tables': boolean;
|
|
29
|
+
platform_editor_ai_unsplash_page_header: boolean;
|
|
30
|
+
platform_editor_blockquote_in_text_formatting_menu: boolean;
|
|
31
|
+
platform_editor_advanced_code_blocks: boolean;
|
|
32
|
+
platform_editor_element_drag_and_drop_multiselect: boolean;
|
|
33
|
+
platform_editor_ai_edit_response_in_preview: boolean;
|
|
34
|
+
platform_editor_controls: "control" | "variant1";
|
|
35
|
+
platform_editor_smart_link_cmd_ctrl_click: boolean;
|
|
36
|
+
platform_editor_insertion: "control" | "variant1";
|
|
37
|
+
platform_editor_vanilla_dom: boolean;
|
|
38
|
+
editor_text_highlight_orange_to_yellow: "test" | "control";
|
|
39
|
+
platform_editor_ai_proactive_ai_nudge_parameters: "control" | "variant1";
|
|
40
|
+
platform_editor_offline_editing_web: boolean;
|
|
41
|
+
editor_ai_inline_suggestion_date_v2: "test" | "control";
|
|
42
|
+
platform_editor_tables_drag_and_drop: boolean;
|
|
43
|
+
platform_editor_tables_table_selector: boolean;
|
|
44
|
+
platform_editor_usesharedpluginstateselector: boolean;
|
|
45
|
+
platform_renderer_fix_analytics_memo_callback: boolean;
|
|
46
|
+
editor_ai_converge_free_gen_on_rovo: boolean;
|
|
47
|
+
platform_editor_stop_width_reflows: boolean;
|
|
48
|
+
platform_editor_core_static_emotion: boolean;
|
|
49
|
+
platform_editor_core_static_emotion_non_central: boolean;
|
|
50
|
+
platform_editor_no_cursor_on_edit_page_init: boolean;
|
|
51
|
+
platform_editor_breakout_resizing: boolean;
|
|
52
|
+
platform_editor_ai_quickstart_command: boolean;
|
|
53
|
+
platform_editor_toolbar_rerender_optimization_exp: boolean;
|
|
54
|
+
platform_editor_controls_toolbar_pinning_exp: boolean;
|
|
55
|
+
platform_editor_block_controls_perf_optimization: boolean;
|
|
56
|
+
platform_editor_enable_single_player_step_merging: boolean;
|
|
57
|
+
platform_editor_ai_iw_adf_streaming: boolean;
|
|
58
|
+
platform_editor_ai_remove_trivial_prompts_cc: boolean;
|
|
59
|
+
confluence_whiteboards_quick_insert_aa: "control" | "test_blank" | "test_diagram";
|
|
60
|
+
platform_editor_find_and_replace_improvements: boolean;
|
|
61
|
+
confluence_whiteboards_quick_insert: "control" | "test_blank" | "test_diagram";
|
|
62
|
+
}>;
|
|
11
63
|
export declare let _paramOverrides: EditorExperimentParamOverrides;
|
|
12
64
|
export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
|
|
13
65
|
/**
|