@atlaskit/tmp-editor-statsig 9.26.0 → 9.27.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 +8 -0
- package/dist/es2019/experiments-config.js +8 -0
- package/dist/esm/experiments-config.js +8 -0
- package/dist/types/editor-experiments-test-utils.d.ts +3 -489
- package/dist/types/experiment-builders.d.ts +2 -2
- package/dist/types/experiments-config.d.ts +85 -79
- package/dist/types/setup.d.ts +1 -81
- package/dist/types-ts4.5/editor-experiments-test-utils.d.ts +3 -489
- package/dist/types-ts4.5/experiment-builders.d.ts +2 -2
- package/dist/types-ts4.5/experiments-config.d.ts +85 -79
- package/dist/types-ts4.5/setup.d.ts +1 -81
- package/package.json +1 -1
|
@@ -8,485 +8,491 @@ 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;
|
|
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;
|
|
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;
|
|
24
24
|
param: string;
|
|
25
25
|
};
|
|
26
26
|
editor_prevent_numbered_column_too_big_jira_1: {
|
|
27
27
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
28
28
|
defaultValue: boolean;
|
|
29
|
-
productKeys?: import("./types").ProductKeys
|
|
29
|
+
productKeys?: import("./types").ProductKeys;
|
|
30
30
|
param: string;
|
|
31
31
|
};
|
|
32
32
|
platform_editor_block_control_optimise_render: {
|
|
33
33
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
34
34
|
defaultValue: boolean;
|
|
35
|
-
productKeys?: import("./types").ProductKeys
|
|
35
|
+
productKeys?: import("./types").ProductKeys;
|
|
36
36
|
param: string;
|
|
37
37
|
};
|
|
38
38
|
'example-boolean': {
|
|
39
39
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
40
40
|
defaultValue: boolean;
|
|
41
|
-
productKeys?: import("./types").ProductKeys
|
|
41
|
+
productKeys?: import("./types").ProductKeys;
|
|
42
42
|
param: string;
|
|
43
43
|
};
|
|
44
44
|
'example-multivariate': {
|
|
45
45
|
values: ("one" | "two" | "three")[];
|
|
46
46
|
typeGuard: (value: unknown) => value is "one" | "two" | "three";
|
|
47
47
|
defaultValue: "one" | "two" | "three";
|
|
48
|
-
productKeys?: import("./types").ProductKeys
|
|
48
|
+
productKeys?: import("./types").ProductKeys;
|
|
49
49
|
param: string;
|
|
50
50
|
};
|
|
51
51
|
'test-new-experiments-package': {
|
|
52
52
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
53
53
|
defaultValue: boolean;
|
|
54
|
-
productKeys?: import("./types").ProductKeys
|
|
54
|
+
productKeys?: import("./types").ProductKeys;
|
|
55
55
|
param: string;
|
|
56
56
|
};
|
|
57
57
|
support_table_in_comment: {
|
|
58
58
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
59
59
|
defaultValue: boolean;
|
|
60
|
-
productKeys?: import("./types").ProductKeys
|
|
60
|
+
productKeys?: import("./types").ProductKeys;
|
|
61
61
|
param: string;
|
|
62
62
|
};
|
|
63
63
|
platform_editor_exp_lazy_node_views: {
|
|
64
64
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
65
65
|
defaultValue: boolean;
|
|
66
|
-
productKeys?: import("./types").ProductKeys
|
|
66
|
+
productKeys?: import("./types").ProductKeys;
|
|
67
67
|
param: string;
|
|
68
68
|
};
|
|
69
69
|
platform_renderer_table_sticky_scrollbar: {
|
|
70
70
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
71
71
|
defaultValue: boolean;
|
|
72
|
-
productKeys?: import("./types").ProductKeys
|
|
72
|
+
productKeys?: import("./types").ProductKeys;
|
|
73
73
|
param: string;
|
|
74
74
|
};
|
|
75
75
|
platform_editor_controls_performance_fixes: {
|
|
76
76
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
77
77
|
defaultValue: boolean;
|
|
78
|
-
productKeys?: import("./types").ProductKeys
|
|
78
|
+
productKeys?: import("./types").ProductKeys;
|
|
79
79
|
param: string;
|
|
80
80
|
};
|
|
81
81
|
platform_editor_prevent_toolbar_layout_shifts: {
|
|
82
82
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
83
83
|
defaultValue: boolean;
|
|
84
|
-
productKeys?: import("./types").ProductKeys
|
|
84
|
+
productKeys?: import("./types").ProductKeys;
|
|
85
85
|
param: string;
|
|
86
86
|
};
|
|
87
87
|
comment_on_bodied_extensions: {
|
|
88
88
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
89
89
|
defaultValue: boolean;
|
|
90
|
-
productKeys?: import("./types").ProductKeys
|
|
90
|
+
productKeys?: import("./types").ProductKeys;
|
|
91
91
|
param: string;
|
|
92
92
|
};
|
|
93
93
|
advanced_layouts: {
|
|
94
94
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
95
95
|
defaultValue: boolean;
|
|
96
|
-
productKeys?: import("./types").ProductKeys
|
|
96
|
+
productKeys?: import("./types").ProductKeys;
|
|
97
97
|
param: string;
|
|
98
98
|
};
|
|
99
99
|
single_column_layouts: {
|
|
100
100
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
101
101
|
defaultValue: boolean;
|
|
102
|
-
productKeys?: import("./types").ProductKeys
|
|
102
|
+
productKeys?: import("./types").ProductKeys;
|
|
103
103
|
param: string;
|
|
104
104
|
};
|
|
105
105
|
support_table_in_comment_jira: {
|
|
106
106
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
107
107
|
defaultValue: boolean;
|
|
108
|
-
productKeys?: import("./types").ProductKeys
|
|
108
|
+
productKeys?: import("./types").ProductKeys;
|
|
109
109
|
param: string;
|
|
110
110
|
};
|
|
111
111
|
'platform_editor_ai-prompts-placeholder': {
|
|
112
112
|
values: ("test" | "control")[];
|
|
113
113
|
typeGuard: (value: unknown) => value is "test" | "control";
|
|
114
114
|
defaultValue: "test" | "control";
|
|
115
|
-
productKeys?: import("./types").ProductKeys
|
|
115
|
+
productKeys?: import("./types").ProductKeys;
|
|
116
116
|
param: string;
|
|
117
117
|
};
|
|
118
118
|
'nested-tables-in-tables': {
|
|
119
119
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
120
120
|
defaultValue: boolean;
|
|
121
|
-
productKeys?: import("./types").ProductKeys
|
|
121
|
+
productKeys?: import("./types").ProductKeys;
|
|
122
122
|
param: string;
|
|
123
123
|
};
|
|
124
124
|
platform_editor_ai_unsplash_page_header: {
|
|
125
125
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
126
126
|
defaultValue: boolean;
|
|
127
|
-
productKeys?: import("./types").ProductKeys
|
|
127
|
+
productKeys?: import("./types").ProductKeys;
|
|
128
128
|
param: string;
|
|
129
129
|
};
|
|
130
130
|
platform_editor_blockquote_in_text_formatting_menu: {
|
|
131
131
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
132
132
|
defaultValue: boolean;
|
|
133
|
-
productKeys?: import("./types").ProductKeys
|
|
133
|
+
productKeys?: import("./types").ProductKeys;
|
|
134
134
|
param: string;
|
|
135
135
|
};
|
|
136
136
|
platform_editor_advanced_code_blocks: {
|
|
137
137
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
138
138
|
defaultValue: boolean;
|
|
139
|
-
productKeys?: import("./types").ProductKeys
|
|
139
|
+
productKeys?: import("./types").ProductKeys;
|
|
140
140
|
param: string;
|
|
141
141
|
};
|
|
142
142
|
platform_editor_element_drag_and_drop_multiselect: {
|
|
143
143
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
144
144
|
defaultValue: boolean;
|
|
145
|
-
productKeys?: import("./types").ProductKeys
|
|
145
|
+
productKeys?: import("./types").ProductKeys;
|
|
146
146
|
param: string;
|
|
147
147
|
};
|
|
148
148
|
platform_editor_ai_edit_response_in_preview: {
|
|
149
149
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
150
150
|
defaultValue: boolean;
|
|
151
|
-
productKeys?: import("./types").ProductKeys
|
|
151
|
+
productKeys?: import("./types").ProductKeys;
|
|
152
152
|
param: string;
|
|
153
153
|
};
|
|
154
154
|
platform_editor_controls: {
|
|
155
155
|
values: ("control" | "variant1")[];
|
|
156
156
|
typeGuard: (value: unknown) => value is "control" | "variant1";
|
|
157
157
|
defaultValue: "control" | "variant1";
|
|
158
|
-
productKeys?: import("./types").ProductKeys
|
|
158
|
+
productKeys?: import("./types").ProductKeys;
|
|
159
159
|
param: string;
|
|
160
160
|
};
|
|
161
161
|
platform_editor_controls_block_controls_state_fix: {
|
|
162
162
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
163
163
|
defaultValue: boolean;
|
|
164
|
-
productKeys?: import("./types").ProductKeys
|
|
164
|
+
productKeys?: import("./types").ProductKeys;
|
|
165
165
|
param: string;
|
|
166
166
|
};
|
|
167
167
|
platform_editor_smart_link_cmd_ctrl_click: {
|
|
168
168
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
169
169
|
defaultValue: boolean;
|
|
170
|
-
productKeys?: import("./types").ProductKeys
|
|
170
|
+
productKeys?: import("./types").ProductKeys;
|
|
171
171
|
param: string;
|
|
172
172
|
};
|
|
173
173
|
platform_editor_insertion: {
|
|
174
174
|
values: ("control" | "variant1")[];
|
|
175
175
|
typeGuard: (value: unknown) => value is "control" | "variant1";
|
|
176
176
|
defaultValue: "control" | "variant1";
|
|
177
|
-
productKeys?: import("./types").ProductKeys
|
|
177
|
+
productKeys?: import("./types").ProductKeys;
|
|
178
178
|
param: string;
|
|
179
179
|
};
|
|
180
180
|
platform_editor_vanilla_dom: {
|
|
181
181
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
182
182
|
defaultValue: boolean;
|
|
183
|
-
productKeys?: import("./types").ProductKeys
|
|
183
|
+
productKeys?: import("./types").ProductKeys;
|
|
184
184
|
param: string;
|
|
185
185
|
};
|
|
186
186
|
platform_editor_ai_proactive_ai_nudge_parameters: {
|
|
187
187
|
values: ("control" | "variant1")[];
|
|
188
188
|
typeGuard: (value: unknown) => value is "control" | "variant1";
|
|
189
189
|
defaultValue: "control" | "variant1";
|
|
190
|
-
productKeys?: import("./types").ProductKeys
|
|
190
|
+
productKeys?: import("./types").ProductKeys;
|
|
191
191
|
param: string;
|
|
192
192
|
};
|
|
193
193
|
platform_editor_offline_editing_web: {
|
|
194
194
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
195
195
|
defaultValue: boolean;
|
|
196
|
-
productKeys?: import("./types").ProductKeys
|
|
196
|
+
productKeys?: import("./types").ProductKeys;
|
|
197
197
|
param: string;
|
|
198
198
|
};
|
|
199
199
|
editor_ai_inline_suggestion_date_v2: {
|
|
200
200
|
values: ("test" | "control")[];
|
|
201
201
|
typeGuard: (value: unknown) => value is "test" | "control";
|
|
202
202
|
defaultValue: "test" | "control";
|
|
203
|
-
productKeys?: import("./types").ProductKeys
|
|
203
|
+
productKeys?: import("./types").ProductKeys;
|
|
204
204
|
param: string;
|
|
205
205
|
};
|
|
206
206
|
platform_editor_tables_drag_and_drop: {
|
|
207
207
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
208
208
|
defaultValue: boolean;
|
|
209
|
-
productKeys?: import("./types").ProductKeys
|
|
209
|
+
productKeys?: import("./types").ProductKeys;
|
|
210
210
|
param: string;
|
|
211
211
|
};
|
|
212
212
|
platform_editor_tables_table_selector: {
|
|
213
213
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
214
214
|
defaultValue: boolean;
|
|
215
|
-
productKeys?: import("./types").ProductKeys
|
|
215
|
+
productKeys?: import("./types").ProductKeys;
|
|
216
216
|
param: string;
|
|
217
217
|
};
|
|
218
218
|
platform_editor_usesharedpluginstateselector: {
|
|
219
219
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
220
220
|
defaultValue: boolean;
|
|
221
|
-
productKeys?: import("./types").ProductKeys
|
|
221
|
+
productKeys?: import("./types").ProductKeys;
|
|
222
222
|
param: string;
|
|
223
223
|
};
|
|
224
224
|
platform_editor_usesharedpluginstatewithselector: {
|
|
225
225
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
226
226
|
defaultValue: boolean;
|
|
227
|
-
productKeys?: import("./types").ProductKeys
|
|
227
|
+
productKeys?: import("./types").ProductKeys;
|
|
228
228
|
param: string;
|
|
229
229
|
};
|
|
230
230
|
platform_editor_media_floating_toolbar_early_exit: {
|
|
231
231
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
232
232
|
defaultValue: boolean;
|
|
233
|
-
productKeys?: import("./types").ProductKeys
|
|
233
|
+
productKeys?: import("./types").ProductKeys;
|
|
234
234
|
param: string;
|
|
235
235
|
};
|
|
236
236
|
platform_renderer_fix_analytics_memo_callback: {
|
|
237
237
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
238
238
|
defaultValue: boolean;
|
|
239
|
-
productKeys?: import("./types").ProductKeys
|
|
239
|
+
productKeys?: import("./types").ProductKeys;
|
|
240
240
|
param: string;
|
|
241
241
|
};
|
|
242
242
|
platform_editor_stop_width_reflows: {
|
|
243
243
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
244
244
|
defaultValue: boolean;
|
|
245
|
-
productKeys?: import("./types").ProductKeys
|
|
245
|
+
productKeys?: import("./types").ProductKeys;
|
|
246
246
|
param: string;
|
|
247
247
|
};
|
|
248
248
|
platform_editor_core_static_emotion: {
|
|
249
249
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
250
250
|
defaultValue: boolean;
|
|
251
|
-
productKeys?: import("./types").ProductKeys
|
|
251
|
+
productKeys?: import("./types").ProductKeys;
|
|
252
252
|
param: string;
|
|
253
253
|
};
|
|
254
254
|
platform_editor_core_static_emotion_non_central: {
|
|
255
255
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
256
256
|
defaultValue: boolean;
|
|
257
|
-
productKeys?: import("./types").ProductKeys
|
|
257
|
+
productKeys?: import("./types").ProductKeys;
|
|
258
258
|
param: string;
|
|
259
259
|
};
|
|
260
260
|
platform_editor_no_cursor_on_edit_page_init: {
|
|
261
261
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
262
262
|
defaultValue: boolean;
|
|
263
|
-
productKeys?: import("./types").ProductKeys
|
|
263
|
+
productKeys?: import("./types").ProductKeys;
|
|
264
264
|
param: string;
|
|
265
265
|
};
|
|
266
266
|
'jira-work-sync-desc-comment-summary': {
|
|
267
267
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
268
268
|
defaultValue: boolean;
|
|
269
|
-
productKeys?: import("./types").ProductKeys
|
|
269
|
+
productKeys?: import("./types").ProductKeys;
|
|
270
270
|
param: string;
|
|
271
271
|
};
|
|
272
272
|
platform_editor_nodevisibility: {
|
|
273
273
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
274
274
|
defaultValue: boolean;
|
|
275
|
-
productKeys?: import("./types").ProductKeys
|
|
275
|
+
productKeys?: import("./types").ProductKeys;
|
|
276
276
|
param: string;
|
|
277
277
|
};
|
|
278
278
|
platform_editor_breakout_resizing: {
|
|
279
279
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
280
280
|
defaultValue: boolean;
|
|
281
|
-
productKeys?: import("./types").ProductKeys
|
|
281
|
+
productKeys?: import("./types").ProductKeys;
|
|
282
282
|
param: string;
|
|
283
283
|
};
|
|
284
284
|
platform_editor_ai_quickstart_command: {
|
|
285
285
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
286
286
|
defaultValue: boolean;
|
|
287
|
-
productKeys?: import("./types").ProductKeys
|
|
287
|
+
productKeys?: import("./types").ProductKeys;
|
|
288
288
|
param: string;
|
|
289
289
|
};
|
|
290
290
|
platform_editor_toolbar_rerender_optimization_exp: {
|
|
291
291
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
292
292
|
defaultValue: boolean;
|
|
293
|
-
productKeys?: import("./types").ProductKeys
|
|
293
|
+
productKeys?: import("./types").ProductKeys;
|
|
294
294
|
param: string;
|
|
295
295
|
};
|
|
296
296
|
platform_editor_block_controls_perf_optimization: {
|
|
297
297
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
298
298
|
defaultValue: boolean;
|
|
299
|
-
productKeys?: import("./types").ProductKeys
|
|
299
|
+
productKeys?: import("./types").ProductKeys;
|
|
300
300
|
param: string;
|
|
301
301
|
};
|
|
302
302
|
platform_editor_enable_single_player_step_merging: {
|
|
303
303
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
304
304
|
defaultValue: boolean;
|
|
305
|
-
productKeys?: import("./types").ProductKeys
|
|
305
|
+
productKeys?: import("./types").ProductKeys;
|
|
306
|
+
param: string;
|
|
307
|
+
};
|
|
308
|
+
platform_editor_code_block_fold_gutter: {
|
|
309
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
310
|
+
defaultValue: boolean;
|
|
311
|
+
productKeys?: import("./types").ProductKeys;
|
|
306
312
|
param: string;
|
|
307
313
|
};
|
|
308
314
|
platform_editor_ai_iw_adf_streaming: {
|
|
309
315
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
310
316
|
defaultValue: boolean;
|
|
311
|
-
productKeys?: import("./types").ProductKeys
|
|
317
|
+
productKeys?: import("./types").ProductKeys;
|
|
312
318
|
param: string;
|
|
313
319
|
};
|
|
314
320
|
platform_editor_ai_ct_sg_adf_streaming: {
|
|
315
321
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
316
322
|
defaultValue: boolean;
|
|
317
|
-
productKeys?: import("./types").ProductKeys
|
|
323
|
+
productKeys?: import("./types").ProductKeys;
|
|
318
324
|
param: string;
|
|
319
325
|
};
|
|
320
326
|
platform_editor_ai_remove_trivial_prompts_cc: {
|
|
321
327
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
322
328
|
defaultValue: boolean;
|
|
323
|
-
productKeys?: import("./types").ProductKeys
|
|
329
|
+
productKeys?: import("./types").ProductKeys;
|
|
324
330
|
param: string;
|
|
325
331
|
};
|
|
326
332
|
platform_editor_extension_styles: {
|
|
327
333
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
328
334
|
defaultValue: boolean;
|
|
329
|
-
productKeys?: import("./types").ProductKeys
|
|
335
|
+
productKeys?: import("./types").ProductKeys;
|
|
330
336
|
param: string;
|
|
331
337
|
};
|
|
332
338
|
confluence_whiteboards_quick_insert_aa: {
|
|
333
339
|
values: ("control" | "test_blank" | "test_diagram")[];
|
|
334
340
|
typeGuard: (value: unknown) => value is "control" | "test_blank" | "test_diagram";
|
|
335
341
|
defaultValue: "control" | "test_blank" | "test_diagram";
|
|
336
|
-
productKeys?: import("./types").ProductKeys
|
|
342
|
+
productKeys?: import("./types").ProductKeys;
|
|
337
343
|
param: string;
|
|
338
344
|
};
|
|
339
345
|
platform_editor_find_and_replace_improvements: {
|
|
340
346
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
341
347
|
defaultValue: boolean;
|
|
342
|
-
productKeys?: import("./types").ProductKeys
|
|
348
|
+
productKeys?: import("./types").ProductKeys;
|
|
343
349
|
param: string;
|
|
344
350
|
};
|
|
345
351
|
confluence_whiteboards_quick_insert: {
|
|
346
352
|
values: ("control" | "test_blank" | "test_diagram")[];
|
|
347
353
|
typeGuard: (value: unknown) => value is "control" | "test_blank" | "test_diagram";
|
|
348
354
|
defaultValue: "control" | "test_blank" | "test_diagram";
|
|
349
|
-
productKeys?: import("./types").ProductKeys
|
|
355
|
+
productKeys?: import("./types").ProductKeys;
|
|
350
356
|
param: string;
|
|
351
357
|
};
|
|
352
358
|
cc_editor_ufo_hold_table_till_resize_complete: {
|
|
353
359
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
354
360
|
defaultValue: boolean;
|
|
355
|
-
productKeys?: import("./types").ProductKeys
|
|
361
|
+
productKeys?: import("./types").ProductKeys;
|
|
356
362
|
param: string;
|
|
357
363
|
};
|
|
358
364
|
platform_editor_feedback_mandatory_rating: {
|
|
359
365
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
360
366
|
defaultValue: boolean;
|
|
361
|
-
productKeys?: import("./types").ProductKeys
|
|
367
|
+
productKeys?: import("./types").ProductKeys;
|
|
362
368
|
param: string;
|
|
363
369
|
};
|
|
364
370
|
platform_editor_drag_handle_aria_label: {
|
|
365
371
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
366
372
|
defaultValue: boolean;
|
|
367
|
-
productKeys?: import("./types").ProductKeys
|
|
373
|
+
productKeys?: import("./types").ProductKeys;
|
|
368
374
|
param: string;
|
|
369
375
|
};
|
|
370
376
|
platform_editor_toggle_expand_on_match_found: {
|
|
371
377
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
372
378
|
defaultValue: boolean;
|
|
373
|
-
productKeys?: import("./types").ProductKeys
|
|
379
|
+
productKeys?: import("./types").ProductKeys;
|
|
374
380
|
param: string;
|
|
375
381
|
};
|
|
376
382
|
platform_editor_smart_card_otp: {
|
|
377
383
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
378
384
|
defaultValue: boolean;
|
|
379
|
-
productKeys?: import("./types").ProductKeys
|
|
385
|
+
productKeys?: import("./types").ProductKeys;
|
|
380
386
|
param: string;
|
|
381
387
|
};
|
|
382
388
|
platform_editor_preview_panel_responsiveness: {
|
|
383
389
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
384
390
|
defaultValue: boolean;
|
|
385
|
-
productKeys?: import("./types").ProductKeys
|
|
391
|
+
productKeys?: import("./types").ProductKeys;
|
|
386
392
|
param: string;
|
|
387
393
|
};
|
|
388
394
|
platform_editor_block_menu: {
|
|
389
395
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
390
396
|
defaultValue: boolean;
|
|
391
|
-
productKeys?: import("./types").ProductKeys
|
|
397
|
+
productKeys?: import("./types").ProductKeys;
|
|
392
398
|
param: string;
|
|
393
399
|
};
|
|
394
400
|
platform_editor_renderer_breakout_fix: {
|
|
395
401
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
396
402
|
defaultValue: boolean;
|
|
397
|
-
productKeys?: import("./types").ProductKeys
|
|
403
|
+
productKeys?: import("./types").ProductKeys;
|
|
398
404
|
param: string;
|
|
399
405
|
};
|
|
400
406
|
editor_enghealth_hyperlink_toolbar_aria_values: {
|
|
401
407
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
402
408
|
defaultValue: boolean;
|
|
403
|
-
productKeys?: import("./types").ProductKeys
|
|
409
|
+
productKeys?: import("./types").ProductKeys;
|
|
404
410
|
param: string;
|
|
405
411
|
};
|
|
406
412
|
cc_editor_interactions_trigger_traceufointeraction: {
|
|
407
413
|
values: ("control" | "all_events" | "only_mousedown_event")[];
|
|
408
414
|
typeGuard: (value: unknown) => value is "control" | "all_events" | "only_mousedown_event";
|
|
409
415
|
defaultValue: "control" | "all_events" | "only_mousedown_event";
|
|
410
|
-
productKeys?: import("./types").ProductKeys
|
|
416
|
+
productKeys?: import("./types").ProductKeys;
|
|
411
417
|
param: string;
|
|
412
418
|
};
|
|
413
419
|
platform_editor_add_orange_highlight_color: {
|
|
414
420
|
values: ("test" | "control")[];
|
|
415
421
|
typeGuard: (value: unknown) => value is "test" | "control";
|
|
416
422
|
defaultValue: "test" | "control";
|
|
417
|
-
productKeys?: import("./types").ProductKeys
|
|
423
|
+
productKeys?: import("./types").ProductKeys;
|
|
418
424
|
param: string;
|
|
419
425
|
};
|
|
420
426
|
platform_editor_toolbar_aifc: {
|
|
421
427
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
422
428
|
defaultValue: boolean;
|
|
423
|
-
productKeys?: import("./types").ProductKeys
|
|
429
|
+
productKeys?: import("./types").ProductKeys;
|
|
424
430
|
param: string;
|
|
425
431
|
};
|
|
426
432
|
platform_editor_floating_toolbar_button_aria_label: {
|
|
427
433
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
428
434
|
defaultValue: boolean;
|
|
429
|
-
productKeys?: import("./types").ProductKeys
|
|
435
|
+
productKeys?: import("./types").ProductKeys;
|
|
430
436
|
param: string;
|
|
431
437
|
};
|
|
432
438
|
platform_editor_enghealth_table_plugin_lable_rule: {
|
|
433
439
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
434
440
|
defaultValue: boolean;
|
|
435
|
-
productKeys?: import("./types").ProductKeys
|
|
441
|
+
productKeys?: import("./types").ProductKeys;
|
|
436
442
|
param: string;
|
|
437
443
|
};
|
|
438
444
|
platform_editor_create_link_on_blur: {
|
|
439
445
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
440
446
|
defaultValue: boolean;
|
|
441
|
-
productKeys?: import("./types").ProductKeys
|
|
447
|
+
productKeys?: import("./types").ProductKeys;
|
|
442
448
|
param: string;
|
|
443
449
|
};
|
|
444
450
|
cc_comments_include_path_for_renderer_emojis: {
|
|
445
451
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
446
452
|
defaultValue: boolean;
|
|
447
|
-
productKeys?: import("./types").ProductKeys
|
|
453
|
+
productKeys?: import("./types").ProductKeys;
|
|
448
454
|
param: string;
|
|
449
455
|
};
|
|
450
456
|
platform_editor_breakout_interaction_rerender: {
|
|
451
457
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
452
458
|
defaultValue: boolean;
|
|
453
|
-
productKeys?: import("./types").ProductKeys
|
|
459
|
+
productKeys?: import("./types").ProductKeys;
|
|
454
460
|
param: string;
|
|
455
461
|
};
|
|
456
462
|
platform_editor_pasting_nested_table_fix: {
|
|
457
463
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
458
464
|
defaultValue: boolean;
|
|
459
|
-
productKeys?: import("./types").ProductKeys
|
|
465
|
+
productKeys?: import("./types").ProductKeys;
|
|
460
466
|
param: string;
|
|
461
467
|
};
|
|
462
468
|
platform_editor_fix_quick_insert_consistency_exp: {
|
|
463
469
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
464
470
|
defaultValue: boolean;
|
|
465
|
-
productKeys?: import("./types").ProductKeys
|
|
471
|
+
productKeys?: import("./types").ProductKeys;
|
|
466
472
|
param: string;
|
|
467
473
|
};
|
|
468
474
|
platform_editor_fix_a11y_aria_posinset_0: {
|
|
469
475
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
470
476
|
defaultValue: boolean;
|
|
471
|
-
productKeys?: import("./types").ProductKeys
|
|
477
|
+
productKeys?: import("./types").ProductKeys;
|
|
472
478
|
param: string;
|
|
473
479
|
};
|
|
474
480
|
platform_editor_blocktaskitem_node: {
|
|
475
481
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
476
482
|
defaultValue: boolean;
|
|
477
|
-
productKeys?: import("./types").ProductKeys
|
|
483
|
+
productKeys?: import("./types").ProductKeys;
|
|
478
484
|
param: string;
|
|
479
485
|
};
|
|
480
486
|
platform_editor_tables_scaling_css: {
|
|
481
487
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
482
488
|
defaultValue: boolean;
|
|
483
|
-
productKeys?: import("./types").ProductKeys
|
|
489
|
+
productKeys?: import("./types").ProductKeys;
|
|
484
490
|
param: string;
|
|
485
491
|
};
|
|
486
492
|
platform_editor_august_a11y: {
|
|
487
493
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
488
494
|
defaultValue: boolean;
|
|
489
|
-
productKeys?: import("./types").ProductKeys
|
|
495
|
+
productKeys?: import("./types").ProductKeys;
|
|
490
496
|
param: string;
|
|
491
497
|
};
|
|
492
498
|
};
|
package/dist/types/setup.d.ts
CHANGED
|
@@ -7,87 +7,7 @@ export type EditorExperimentParamOverrides = {
|
|
|
7
7
|
[paramName: string]: any;
|
|
8
8
|
};
|
|
9
9
|
};
|
|
10
|
-
export declare let _overrides:
|
|
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
|
-
editor_prevent_numbered_column_too_big_jira_1: boolean;
|
|
15
|
-
platform_editor_block_control_optimise_render: boolean;
|
|
16
|
-
'example-boolean': boolean;
|
|
17
|
-
'example-multivariate': "one" | "two" | "three";
|
|
18
|
-
'test-new-experiments-package': boolean;
|
|
19
|
-
support_table_in_comment: boolean;
|
|
20
|
-
platform_editor_exp_lazy_node_views: boolean;
|
|
21
|
-
platform_renderer_table_sticky_scrollbar: boolean;
|
|
22
|
-
platform_editor_controls_performance_fixes: boolean;
|
|
23
|
-
platform_editor_prevent_toolbar_layout_shifts: boolean;
|
|
24
|
-
comment_on_bodied_extensions: boolean;
|
|
25
|
-
advanced_layouts: boolean;
|
|
26
|
-
single_column_layouts: boolean;
|
|
27
|
-
support_table_in_comment_jira: boolean;
|
|
28
|
-
'platform_editor_ai-prompts-placeholder': "test" | "control";
|
|
29
|
-
'nested-tables-in-tables': boolean;
|
|
30
|
-
platform_editor_ai_unsplash_page_header: boolean;
|
|
31
|
-
platform_editor_blockquote_in_text_formatting_menu: boolean;
|
|
32
|
-
platform_editor_advanced_code_blocks: boolean;
|
|
33
|
-
platform_editor_element_drag_and_drop_multiselect: boolean;
|
|
34
|
-
platform_editor_ai_edit_response_in_preview: boolean;
|
|
35
|
-
platform_editor_controls: "control" | "variant1";
|
|
36
|
-
platform_editor_controls_block_controls_state_fix: boolean;
|
|
37
|
-
platform_editor_smart_link_cmd_ctrl_click: boolean;
|
|
38
|
-
platform_editor_insertion: "control" | "variant1";
|
|
39
|
-
platform_editor_vanilla_dom: boolean;
|
|
40
|
-
platform_editor_ai_proactive_ai_nudge_parameters: "control" | "variant1";
|
|
41
|
-
platform_editor_offline_editing_web: boolean;
|
|
42
|
-
editor_ai_inline_suggestion_date_v2: "test" | "control";
|
|
43
|
-
platform_editor_tables_drag_and_drop: boolean;
|
|
44
|
-
platform_editor_tables_table_selector: boolean;
|
|
45
|
-
platform_editor_usesharedpluginstateselector: boolean;
|
|
46
|
-
platform_editor_usesharedpluginstatewithselector: boolean;
|
|
47
|
-
platform_editor_media_floating_toolbar_early_exit: boolean;
|
|
48
|
-
platform_renderer_fix_analytics_memo_callback: boolean;
|
|
49
|
-
platform_editor_stop_width_reflows: boolean;
|
|
50
|
-
platform_editor_core_static_emotion: boolean;
|
|
51
|
-
platform_editor_core_static_emotion_non_central: boolean;
|
|
52
|
-
platform_editor_no_cursor_on_edit_page_init: boolean;
|
|
53
|
-
'jira-work-sync-desc-comment-summary': boolean;
|
|
54
|
-
platform_editor_nodevisibility: boolean;
|
|
55
|
-
platform_editor_breakout_resizing: boolean;
|
|
56
|
-
platform_editor_ai_quickstart_command: boolean;
|
|
57
|
-
platform_editor_toolbar_rerender_optimization_exp: boolean;
|
|
58
|
-
platform_editor_block_controls_perf_optimization: boolean;
|
|
59
|
-
platform_editor_enable_single_player_step_merging: boolean;
|
|
60
|
-
platform_editor_ai_iw_adf_streaming: boolean;
|
|
61
|
-
platform_editor_ai_ct_sg_adf_streaming: boolean;
|
|
62
|
-
platform_editor_ai_remove_trivial_prompts_cc: boolean;
|
|
63
|
-
platform_editor_extension_styles: boolean;
|
|
64
|
-
confluence_whiteboards_quick_insert_aa: "control" | "test_blank" | "test_diagram";
|
|
65
|
-
platform_editor_find_and_replace_improvements: boolean;
|
|
66
|
-
confluence_whiteboards_quick_insert: "control" | "test_blank" | "test_diagram";
|
|
67
|
-
cc_editor_ufo_hold_table_till_resize_complete: boolean;
|
|
68
|
-
platform_editor_feedback_mandatory_rating: boolean;
|
|
69
|
-
platform_editor_drag_handle_aria_label: boolean;
|
|
70
|
-
platform_editor_toggle_expand_on_match_found: boolean;
|
|
71
|
-
platform_editor_smart_card_otp: boolean;
|
|
72
|
-
platform_editor_preview_panel_responsiveness: boolean;
|
|
73
|
-
platform_editor_block_menu: boolean;
|
|
74
|
-
platform_editor_renderer_breakout_fix: boolean;
|
|
75
|
-
editor_enghealth_hyperlink_toolbar_aria_values: boolean;
|
|
76
|
-
cc_editor_interactions_trigger_traceufointeraction: "control" | "all_events" | "only_mousedown_event";
|
|
77
|
-
platform_editor_add_orange_highlight_color: "test" | "control";
|
|
78
|
-
platform_editor_toolbar_aifc: boolean;
|
|
79
|
-
platform_editor_floating_toolbar_button_aria_label: boolean;
|
|
80
|
-
platform_editor_enghealth_table_plugin_lable_rule: boolean;
|
|
81
|
-
platform_editor_create_link_on_blur: boolean;
|
|
82
|
-
cc_comments_include_path_for_renderer_emojis: boolean;
|
|
83
|
-
platform_editor_breakout_interaction_rerender: boolean;
|
|
84
|
-
platform_editor_pasting_nested_table_fix: boolean;
|
|
85
|
-
platform_editor_fix_quick_insert_consistency_exp: boolean;
|
|
86
|
-
platform_editor_fix_a11y_aria_posinset_0: boolean;
|
|
87
|
-
platform_editor_blocktaskitem_node: boolean;
|
|
88
|
-
platform_editor_tables_scaling_css: boolean;
|
|
89
|
-
platform_editor_august_a11y: boolean;
|
|
90
|
-
}>;
|
|
10
|
+
export declare let _overrides: EditorExperimentOverrides;
|
|
91
11
|
export declare let _paramOverrides: EditorExperimentParamOverrides;
|
|
92
12
|
export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
|
|
93
13
|
/**
|