@atlaskit/tmp-editor-statsig 13.43.0 → 14.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 +24 -0
- package/dist/cjs/editor-experiments-test-utils.js +4 -0
- package/dist/cjs/exp-test-overrides.js +0 -1
- package/dist/cjs/exp-val-equals-no-exposure.js +2 -2
- package/dist/cjs/exp-val-equals.js +2 -2
- package/dist/cjs/expVal.js +15 -17
- package/dist/cjs/experiments-config.js +25 -16
- package/dist/es2019/editor-experiments-test-utils.js +4 -0
- package/dist/es2019/exp-test-overrides.js +0 -1
- package/dist/es2019/exp-val-equals-no-exposure.js +2 -2
- package/dist/es2019/exp-val-equals.js +2 -2
- package/dist/es2019/expVal.js +17 -19
- package/dist/es2019/experiments-config.js +25 -16
- package/dist/esm/editor-experiments-test-utils.js +4 -0
- package/dist/esm/exp-test-overrides.js +0 -1
- package/dist/esm/exp-val-equals-no-exposure.js +2 -2
- package/dist/esm/exp-val-equals.js +2 -2
- package/dist/esm/expVal.js +15 -17
- package/dist/esm/experiments-config.js +25 -16
- package/dist/types/editor-experiments-test-utils.d.ts +13 -4
- package/dist/types/exp-val-equals-no-exposure.d.ts +4 -4
- package/dist/types/exp-val-equals.d.ts +4 -4
- package/dist/types/expVal.d.ts +4 -5
- package/dist/types/experiment-builders.d.ts +6 -6
- package/dist/types/experiments-config.d.ts +471 -462
- package/dist/types-ts4.5/editor-experiments-test-utils.d.ts +13 -4
- package/dist/types-ts4.5/exp-val-equals-no-exposure.d.ts +4 -4
- package/dist/types-ts4.5/exp-val-equals.d.ts +4 -4
- package/dist/types-ts4.5/expVal.d.ts +4 -5
- package/dist/types-ts4.5/experiment-builders.d.ts +7 -7
- package/dist/types-ts4.5/experiments-config.d.ts +471 -462
- package/package.json +1 -1
|
@@ -1,845 +1,854 @@
|
|
|
1
|
+
import { isBoolean } from './type-guards';
|
|
2
|
+
import type { ProductKeys } from './types';
|
|
3
|
+
type IsBooleanType = typeof isBoolean;
|
|
1
4
|
export type EditorExperimentsConfig = typeof editorExperimentsConfig;
|
|
5
|
+
/**
|
|
6
|
+
* Extract valid expected values.
|
|
7
|
+
* - For multivariate experiments: returns union of valid string values (inferred from defaultValue type)
|
|
8
|
+
* - For boolean experiments: returns only 'true' literal (cannot use 'false' as expected value)
|
|
9
|
+
*/
|
|
10
|
+
export type ExperimentExpectedValue<ExperimentName extends keyof EditorExperimentsConfig> = EditorExperimentsConfig[ExperimentName]['defaultValue'] extends boolean ? true : EditorExperimentsConfig[ExperimentName]['defaultValue'];
|
|
11
|
+
/**
|
|
12
|
+
* Extract valid default values.
|
|
13
|
+
* - For boolean experiments: returns only 'false' literal (cannot use 'true' as default value)
|
|
14
|
+
* - For multivariate experiments: returns the default value type (one of the string values)
|
|
15
|
+
*/
|
|
16
|
+
export type ExperimentDefaultValue<ExperimentName extends keyof EditorExperimentsConfig> = EditorExperimentsConfig[ExperimentName]['defaultValue'] extends boolean ? false : EditorExperimentsConfig[ExperimentName]['defaultValue'];
|
|
2
17
|
/**
|
|
3
18
|
* When adding a new experiment, you need to add it here.
|
|
4
19
|
* Please follow the pattern established in the examples and any
|
|
5
20
|
* existing experiments.
|
|
6
21
|
*/
|
|
7
22
|
export declare const editorExperimentsConfig: {
|
|
8
|
-
|
|
9
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
23
|
+
advanced_layouts: {
|
|
10
24
|
defaultValue: boolean;
|
|
11
25
|
param: string;
|
|
12
|
-
productKeys?:
|
|
26
|
+
productKeys?: ProductKeys;
|
|
27
|
+
typeGuard: IsBooleanType;
|
|
13
28
|
};
|
|
14
|
-
|
|
15
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
29
|
+
cc_complexit_fe_emoji_stability: {
|
|
16
30
|
defaultValue: boolean;
|
|
17
31
|
param: string;
|
|
18
|
-
productKeys?:
|
|
32
|
+
productKeys?: ProductKeys;
|
|
33
|
+
typeGuard: IsBooleanType;
|
|
19
34
|
};
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
defaultValue: boolean;
|
|
35
|
+
cc_editor_ai_content_mode: {
|
|
36
|
+
defaultValue: 'control' | 'test';
|
|
23
37
|
param: string;
|
|
24
|
-
productKeys?:
|
|
38
|
+
productKeys?: ProductKeys;
|
|
39
|
+
typeGuard: (value: unknown) => value is 'control' | 'test';
|
|
40
|
+
values: ('control' | 'test')[];
|
|
25
41
|
};
|
|
26
42
|
cc_editor_insm_doc_size_stats: {
|
|
27
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
28
43
|
defaultValue: boolean;
|
|
29
44
|
param: string;
|
|
30
|
-
productKeys?:
|
|
45
|
+
productKeys?: ProductKeys;
|
|
46
|
+
typeGuard: IsBooleanType;
|
|
31
47
|
};
|
|
32
48
|
cc_editor_insm_outlier_events: {
|
|
33
|
-
|
|
34
|
-
typeGuard: (value: unknown) => value is "test" | "control";
|
|
35
|
-
defaultValue: "test" | "control";
|
|
49
|
+
defaultValue: 'control' | 'test';
|
|
36
50
|
param: string;
|
|
37
|
-
productKeys?:
|
|
51
|
+
productKeys?: ProductKeys;
|
|
52
|
+
typeGuard: (value: unknown) => value is 'control' | 'test';
|
|
53
|
+
values: ('control' | 'test')[];
|
|
38
54
|
};
|
|
39
|
-
|
|
40
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
55
|
+
cc_editor_interactivity_monitoring: {
|
|
41
56
|
defaultValue: boolean;
|
|
42
57
|
param: string;
|
|
43
|
-
productKeys?:
|
|
58
|
+
productKeys?: ProductKeys;
|
|
59
|
+
typeGuard: IsBooleanType;
|
|
44
60
|
};
|
|
45
|
-
|
|
46
|
-
values: ("control" | "variant1" | "variant2" | "variant3")[];
|
|
47
|
-
typeGuard: (value: unknown) => value is "control" | "variant1" | "variant2" | "variant3";
|
|
48
|
-
defaultValue: "control" | "variant1" | "variant2" | "variant3";
|
|
49
|
-
param: string;
|
|
50
|
-
productKeys?: import("./types").ProductKeys;
|
|
51
|
-
};
|
|
52
|
-
platform_editor_media_vc_fixes: {
|
|
53
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
61
|
+
cc_editor_limited_mode: {
|
|
54
62
|
defaultValue: boolean;
|
|
55
63
|
param: string;
|
|
56
|
-
productKeys?:
|
|
64
|
+
productKeys?: ProductKeys;
|
|
65
|
+
typeGuard: IsBooleanType;
|
|
57
66
|
};
|
|
58
|
-
|
|
59
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
67
|
+
cc_editor_limited_mode_include_lcm: {
|
|
60
68
|
defaultValue: boolean;
|
|
61
69
|
param: string;
|
|
62
|
-
productKeys?:
|
|
70
|
+
productKeys?: ProductKeys;
|
|
71
|
+
typeGuard: IsBooleanType;
|
|
63
72
|
};
|
|
64
|
-
|
|
65
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
73
|
+
cc_editor_limited_mode_table_align_bttn: {
|
|
66
74
|
defaultValue: boolean;
|
|
67
75
|
param: string;
|
|
68
|
-
productKeys?:
|
|
76
|
+
productKeys?: ProductKeys;
|
|
77
|
+
typeGuard: IsBooleanType;
|
|
69
78
|
};
|
|
70
|
-
|
|
71
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
79
|
+
cc_editor_ttvc_release_bundle_one: {
|
|
72
80
|
defaultValue: boolean;
|
|
73
81
|
param: string;
|
|
74
|
-
productKeys?:
|
|
82
|
+
productKeys?: ProductKeys;
|
|
83
|
+
typeGuard: IsBooleanType;
|
|
75
84
|
};
|
|
76
|
-
|
|
77
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
85
|
+
cc_improve_writing_on_paste_v2: {
|
|
78
86
|
defaultValue: boolean;
|
|
79
87
|
param: string;
|
|
80
|
-
productKeys?:
|
|
88
|
+
productKeys?: ProductKeys;
|
|
89
|
+
typeGuard: IsBooleanType;
|
|
81
90
|
};
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
typeGuard: (value: unknown) => value is "one" | "two" | "three";
|
|
85
|
-
defaultValue: "one" | "two" | "three";
|
|
91
|
+
comment_on_bodied_extensions: {
|
|
92
|
+
defaultValue: boolean;
|
|
86
93
|
param: string;
|
|
87
|
-
productKeys?:
|
|
94
|
+
productKeys?: ProductKeys;
|
|
95
|
+
typeGuard: IsBooleanType;
|
|
88
96
|
};
|
|
89
|
-
'
|
|
90
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
97
|
+
'company-hub-config-panel-keyboard-nav': {
|
|
91
98
|
defaultValue: boolean;
|
|
92
99
|
param: string;
|
|
93
|
-
productKeys?:
|
|
100
|
+
productKeys?: ProductKeys;
|
|
101
|
+
typeGuard: IsBooleanType;
|
|
94
102
|
};
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
defaultValue: boolean;
|
|
103
|
+
confluence_content_mode_replace_dense_with_compact: {
|
|
104
|
+
defaultValue: 'control' | 'test';
|
|
98
105
|
param: string;
|
|
99
|
-
productKeys?:
|
|
106
|
+
productKeys?: ProductKeys;
|
|
107
|
+
typeGuard: (value: unknown) => value is 'control' | 'test';
|
|
108
|
+
values: ('control' | 'test')[];
|
|
100
109
|
};
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
defaultValue: boolean;
|
|
110
|
+
confluence_whiteboards_quick_insert: {
|
|
111
|
+
defaultValue: 'control' | 'test_blank' | 'test_diagram';
|
|
104
112
|
param: string;
|
|
105
|
-
productKeys?:
|
|
113
|
+
productKeys?: ProductKeys;
|
|
114
|
+
typeGuard: (value: unknown) => value is 'control' | 'test_blank' | 'test_diagram';
|
|
115
|
+
values: ('control' | 'test_blank' | 'test_diagram')[];
|
|
106
116
|
};
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
defaultValue: boolean;
|
|
117
|
+
confluence_whiteboards_quick_insert_aa: {
|
|
118
|
+
defaultValue: 'control' | 'test_blank' | 'test_diagram';
|
|
110
119
|
param: string;
|
|
111
|
-
productKeys?:
|
|
120
|
+
productKeys?: ProductKeys;
|
|
121
|
+
typeGuard: (value: unknown) => value is 'control' | 'test_blank' | 'test_diagram';
|
|
122
|
+
values: ('control' | 'test_blank' | 'test_diagram')[];
|
|
112
123
|
};
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
defaultValue: boolean;
|
|
124
|
+
confluence_whiteboards_quick_insert_localised: {
|
|
125
|
+
defaultValue: 'control' | 'test_blank' | 'test_diagram';
|
|
116
126
|
param: string;
|
|
117
|
-
productKeys?:
|
|
127
|
+
productKeys?: ProductKeys;
|
|
128
|
+
typeGuard: (value: unknown) => value is 'control' | 'test_blank' | 'test_diagram';
|
|
129
|
+
values: ('control' | 'test_blank' | 'test_diagram')[];
|
|
118
130
|
};
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
defaultValue: boolean;
|
|
131
|
+
confluence_whiteboards_quick_insert_localised_aa: {
|
|
132
|
+
defaultValue: 'control' | 'test_diagram';
|
|
122
133
|
param: string;
|
|
123
|
-
productKeys?:
|
|
134
|
+
productKeys?: ProductKeys;
|
|
135
|
+
typeGuard: (value: unknown) => value is 'control' | 'test_diagram';
|
|
136
|
+
values: ('control' | 'test_diagram')[];
|
|
124
137
|
};
|
|
125
|
-
|
|
126
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
138
|
+
editor_enable_image_alignment_in_expand: {
|
|
127
139
|
defaultValue: boolean;
|
|
128
140
|
param: string;
|
|
129
|
-
productKeys?:
|
|
141
|
+
productKeys?: ProductKeys;
|
|
142
|
+
typeGuard: IsBooleanType;
|
|
130
143
|
};
|
|
131
|
-
|
|
132
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
144
|
+
editor_enghealth_hyperlink_toolbar_aria_values: {
|
|
133
145
|
defaultValue: boolean;
|
|
134
146
|
param: string;
|
|
135
|
-
productKeys?:
|
|
147
|
+
productKeys?: ProductKeys;
|
|
148
|
+
typeGuard: IsBooleanType;
|
|
136
149
|
};
|
|
137
|
-
|
|
138
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
150
|
+
editor_prevent_numbered_column_too_big_jira_1: {
|
|
139
151
|
defaultValue: boolean;
|
|
140
152
|
param: string;
|
|
141
|
-
productKeys?:
|
|
153
|
+
productKeys?: ProductKeys;
|
|
154
|
+
typeGuard: IsBooleanType;
|
|
142
155
|
};
|
|
143
|
-
|
|
144
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
156
|
+
editor_refactor_backspace_task_and_decisions: {
|
|
145
157
|
defaultValue: boolean;
|
|
146
158
|
param: string;
|
|
147
|
-
productKeys?:
|
|
159
|
+
productKeys?: ProductKeys;
|
|
160
|
+
typeGuard: IsBooleanType;
|
|
148
161
|
};
|
|
149
|
-
|
|
150
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
162
|
+
editor_tinymce_full_width_mode: {
|
|
151
163
|
defaultValue: boolean;
|
|
152
164
|
param: string;
|
|
153
|
-
productKeys?:
|
|
165
|
+
productKeys?: ProductKeys;
|
|
166
|
+
typeGuard: IsBooleanType;
|
|
154
167
|
};
|
|
155
|
-
|
|
156
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
168
|
+
'example-boolean': {
|
|
157
169
|
defaultValue: boolean;
|
|
158
170
|
param: string;
|
|
159
|
-
productKeys?:
|
|
171
|
+
productKeys?: ProductKeys;
|
|
172
|
+
typeGuard: IsBooleanType;
|
|
160
173
|
};
|
|
161
|
-
'
|
|
162
|
-
|
|
163
|
-
typeGuard: (value: unknown) => value is "test" | "control";
|
|
164
|
-
defaultValue: "test" | "control";
|
|
174
|
+
'example-multivariate': {
|
|
175
|
+
defaultValue: 'one' | 'two' | 'three';
|
|
165
176
|
param: string;
|
|
166
|
-
productKeys?:
|
|
177
|
+
productKeys?: ProductKeys;
|
|
178
|
+
typeGuard: (value: unknown) => value is 'one' | 'two' | 'three';
|
|
179
|
+
values: ('one' | 'two' | 'three')[];
|
|
167
180
|
};
|
|
168
|
-
'
|
|
169
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
181
|
+
'jira-work-sync-desc-comment-summary': {
|
|
170
182
|
defaultValue: boolean;
|
|
171
183
|
param: string;
|
|
172
|
-
productKeys?:
|
|
184
|
+
productKeys?: ProductKeys;
|
|
185
|
+
typeGuard: IsBooleanType;
|
|
173
186
|
};
|
|
174
|
-
|
|
175
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
187
|
+
'nested-tables-in-tables': {
|
|
176
188
|
defaultValue: boolean;
|
|
177
189
|
param: string;
|
|
178
|
-
productKeys?:
|
|
190
|
+
productKeys?: ProductKeys;
|
|
191
|
+
typeGuard: IsBooleanType;
|
|
179
192
|
};
|
|
180
|
-
|
|
181
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
193
|
+
platform_editor_add_aria_checked_to_inline_img_btn: {
|
|
182
194
|
defaultValue: boolean;
|
|
183
195
|
param: string;
|
|
184
|
-
productKeys?:
|
|
196
|
+
productKeys?: ProductKeys;
|
|
197
|
+
typeGuard: IsBooleanType;
|
|
185
198
|
};
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
defaultValue: boolean;
|
|
199
|
+
platform_editor_add_orange_highlight_color: {
|
|
200
|
+
defaultValue: 'control' | 'test';
|
|
189
201
|
param: string;
|
|
190
|
-
productKeys?:
|
|
202
|
+
productKeys?: ProductKeys;
|
|
203
|
+
typeGuard: (value: unknown) => value is 'control' | 'test';
|
|
204
|
+
values: ('control' | 'test')[];
|
|
191
205
|
};
|
|
192
206
|
platform_editor_ai_edit_response_in_preview: {
|
|
193
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
194
207
|
defaultValue: boolean;
|
|
195
208
|
param: string;
|
|
196
|
-
productKeys?:
|
|
209
|
+
productKeys?: ProductKeys;
|
|
210
|
+
typeGuard: IsBooleanType;
|
|
197
211
|
};
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
typeGuard: (value: unknown) => value is "control" | "variant1";
|
|
201
|
-
defaultValue: "control" | "variant1";
|
|
212
|
+
platform_editor_ai_iw_adf_streaming: {
|
|
213
|
+
defaultValue: 'control' | 'adf_gemini25flash' | 'adf_gpt41mini';
|
|
202
214
|
param: string;
|
|
203
|
-
productKeys?:
|
|
215
|
+
productKeys?: ProductKeys;
|
|
216
|
+
typeGuard: (value: unknown) => value is 'control' | 'adf_gemini25flash' | 'adf_gpt41mini';
|
|
217
|
+
values: ('control' | 'adf_gemini25flash' | 'adf_gpt41mini')[];
|
|
204
218
|
};
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
defaultValue: boolean;
|
|
219
|
+
platform_editor_ai_non_iw_adf_streaming: {
|
|
220
|
+
defaultValue: 'control' | 'adf_gemini25flash' | 'adf_gpt41mini';
|
|
208
221
|
param: string;
|
|
209
|
-
productKeys?:
|
|
222
|
+
productKeys?: ProductKeys;
|
|
223
|
+
typeGuard: (value: unknown) => value is 'control' | 'adf_gemini25flash' | 'adf_gpt41mini';
|
|
224
|
+
values: ('control' | 'adf_gemini25flash' | 'adf_gpt41mini')[];
|
|
210
225
|
};
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
defaultValue: boolean;
|
|
226
|
+
platform_editor_ai_proactive_ai_nudge_parameters: {
|
|
227
|
+
defaultValue: 'control' | 'variant1';
|
|
214
228
|
param: string;
|
|
215
|
-
productKeys?:
|
|
229
|
+
productKeys?: ProductKeys;
|
|
230
|
+
typeGuard: (value: unknown) => value is 'control' | 'variant1';
|
|
231
|
+
values: ('control' | 'variant1')[];
|
|
216
232
|
};
|
|
217
|
-
|
|
218
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
233
|
+
platform_editor_ai_quickstart_command: {
|
|
219
234
|
defaultValue: boolean;
|
|
220
235
|
param: string;
|
|
221
|
-
productKeys?:
|
|
236
|
+
productKeys?: ProductKeys;
|
|
237
|
+
typeGuard: IsBooleanType;
|
|
222
238
|
};
|
|
223
|
-
|
|
224
|
-
values: ("control" | "variant1")[];
|
|
225
|
-
typeGuard: (value: unknown) => value is "control" | "variant1";
|
|
226
|
-
defaultValue: "control" | "variant1";
|
|
227
|
-
param: string;
|
|
228
|
-
productKeys?: import("./types").ProductKeys;
|
|
229
|
-
};
|
|
230
|
-
platform_editor_offline_editing_web: {
|
|
231
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
239
|
+
platform_editor_ai_unsplash_page_header: {
|
|
232
240
|
defaultValue: boolean;
|
|
233
241
|
param: string;
|
|
234
|
-
productKeys?:
|
|
242
|
+
productKeys?: ProductKeys;
|
|
243
|
+
typeGuard: IsBooleanType;
|
|
235
244
|
};
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
typeGuard: (value: unknown) => value is "test" | "control";
|
|
239
|
-
defaultValue: "test" | "control";
|
|
245
|
+
'platform_editor_ai-prompts-placeholder': {
|
|
246
|
+
defaultValue: 'control' | 'test';
|
|
240
247
|
param: string;
|
|
241
|
-
productKeys?:
|
|
248
|
+
productKeys?: ProductKeys;
|
|
249
|
+
typeGuard: (value: unknown) => value is 'control' | 'test';
|
|
250
|
+
values: ('control' | 'test')[];
|
|
242
251
|
};
|
|
243
|
-
|
|
244
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
252
|
+
platform_editor_august_a11y: {
|
|
245
253
|
defaultValue: boolean;
|
|
246
254
|
param: string;
|
|
247
|
-
productKeys?:
|
|
255
|
+
productKeys?: ProductKeys;
|
|
256
|
+
typeGuard: IsBooleanType;
|
|
248
257
|
};
|
|
249
|
-
|
|
250
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
258
|
+
platform_editor_block_control_optimise_render: {
|
|
251
259
|
defaultValue: boolean;
|
|
252
260
|
param: string;
|
|
253
|
-
productKeys?:
|
|
261
|
+
productKeys?: ProductKeys;
|
|
262
|
+
typeGuard: IsBooleanType;
|
|
254
263
|
};
|
|
255
|
-
|
|
256
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
264
|
+
platform_editor_block_controls_perf_optimization: {
|
|
257
265
|
defaultValue: boolean;
|
|
258
266
|
param: string;
|
|
259
|
-
productKeys?:
|
|
267
|
+
productKeys?: ProductKeys;
|
|
268
|
+
typeGuard: IsBooleanType;
|
|
260
269
|
};
|
|
261
|
-
|
|
262
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
270
|
+
platform_editor_block_menu: {
|
|
263
271
|
defaultValue: boolean;
|
|
264
272
|
param: string;
|
|
265
|
-
productKeys?:
|
|
273
|
+
productKeys?: ProductKeys;
|
|
274
|
+
typeGuard: IsBooleanType;
|
|
266
275
|
};
|
|
267
|
-
|
|
268
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
276
|
+
platform_editor_block_menu_empty_line: {
|
|
269
277
|
defaultValue: boolean;
|
|
270
278
|
param: string;
|
|
271
|
-
productKeys?:
|
|
279
|
+
productKeys?: ProductKeys;
|
|
280
|
+
typeGuard: IsBooleanType;
|
|
272
281
|
};
|
|
273
|
-
|
|
274
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
282
|
+
platform_editor_block_menu_expand_format: {
|
|
275
283
|
defaultValue: boolean;
|
|
276
284
|
param: string;
|
|
277
|
-
productKeys?:
|
|
285
|
+
productKeys?: ProductKeys;
|
|
286
|
+
typeGuard: IsBooleanType;
|
|
278
287
|
};
|
|
279
|
-
|
|
280
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
288
|
+
platform_editor_block_menu_keyboard_navigation: {
|
|
281
289
|
defaultValue: boolean;
|
|
282
290
|
param: string;
|
|
283
|
-
productKeys?:
|
|
291
|
+
productKeys?: ProductKeys;
|
|
292
|
+
typeGuard: IsBooleanType;
|
|
284
293
|
};
|
|
285
|
-
|
|
286
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
294
|
+
platform_editor_blockquote_in_text_formatting_menu: {
|
|
287
295
|
defaultValue: boolean;
|
|
288
296
|
param: string;
|
|
289
|
-
productKeys?:
|
|
297
|
+
productKeys?: ProductKeys;
|
|
298
|
+
typeGuard: IsBooleanType;
|
|
290
299
|
};
|
|
291
|
-
|
|
292
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
300
|
+
platform_editor_blocktaskitem_node_tenantid: {
|
|
293
301
|
defaultValue: boolean;
|
|
294
302
|
param: string;
|
|
295
|
-
productKeys?:
|
|
303
|
+
productKeys?: ProductKeys;
|
|
304
|
+
typeGuard: IsBooleanType;
|
|
296
305
|
};
|
|
297
|
-
|
|
298
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
306
|
+
platform_editor_blocktaskitem_patch_1: {
|
|
299
307
|
defaultValue: boolean;
|
|
300
308
|
param: string;
|
|
301
|
-
productKeys?:
|
|
309
|
+
productKeys?: ProductKeys;
|
|
310
|
+
typeGuard: IsBooleanType;
|
|
302
311
|
};
|
|
303
|
-
|
|
304
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
312
|
+
platform_editor_breakout_interaction_rerender: {
|
|
305
313
|
defaultValue: boolean;
|
|
306
314
|
param: string;
|
|
307
|
-
productKeys?:
|
|
315
|
+
productKeys?: ProductKeys;
|
|
316
|
+
typeGuard: IsBooleanType;
|
|
308
317
|
};
|
|
309
318
|
platform_editor_breakout_resizing: {
|
|
310
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
311
319
|
defaultValue: boolean;
|
|
312
320
|
param: string;
|
|
313
|
-
productKeys?:
|
|
321
|
+
productKeys?: ProductKeys;
|
|
322
|
+
typeGuard: IsBooleanType;
|
|
314
323
|
};
|
|
315
|
-
|
|
316
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
324
|
+
platform_editor_breakout_resizing_vc90_fix: {
|
|
317
325
|
defaultValue: boolean;
|
|
318
326
|
param: string;
|
|
319
|
-
productKeys?:
|
|
327
|
+
productKeys?: ProductKeys;
|
|
328
|
+
typeGuard: IsBooleanType;
|
|
320
329
|
};
|
|
321
|
-
|
|
322
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
330
|
+
platform_editor_code_block_fold_gutter: {
|
|
323
331
|
defaultValue: boolean;
|
|
324
332
|
param: string;
|
|
325
|
-
productKeys?:
|
|
333
|
+
productKeys?: ProductKeys;
|
|
334
|
+
typeGuard: IsBooleanType;
|
|
326
335
|
};
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
defaultValue: boolean;
|
|
336
|
+
platform_editor_controls: {
|
|
337
|
+
defaultValue: 'control' | 'variant1';
|
|
330
338
|
param: string;
|
|
331
|
-
productKeys?:
|
|
339
|
+
productKeys?: ProductKeys;
|
|
340
|
+
typeGuard: (value: unknown) => value is 'control' | 'variant1';
|
|
341
|
+
values: ('control' | 'variant1')[];
|
|
332
342
|
};
|
|
333
|
-
|
|
334
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
343
|
+
platform_editor_controls_block_controls_state_fix: {
|
|
335
344
|
defaultValue: boolean;
|
|
336
345
|
param: string;
|
|
337
|
-
productKeys?:
|
|
346
|
+
productKeys?: ProductKeys;
|
|
347
|
+
typeGuard: IsBooleanType;
|
|
338
348
|
};
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
typeGuard: (value: unknown) => value is "control" | "adf_gemini25flash" | "adf_gpt41mini";
|
|
342
|
-
defaultValue: "control" | "adf_gemini25flash" | "adf_gpt41mini";
|
|
343
|
-
param: string;
|
|
344
|
-
productKeys?: import("./types").ProductKeys;
|
|
345
|
-
};
|
|
346
|
-
platform_editor_ai_non_iw_adf_streaming: {
|
|
347
|
-
values: ("control" | "adf_gemini25flash" | "adf_gpt41mini")[];
|
|
348
|
-
typeGuard: (value: unknown) => value is "control" | "adf_gemini25flash" | "adf_gpt41mini";
|
|
349
|
-
defaultValue: "control" | "adf_gemini25flash" | "adf_gpt41mini";
|
|
349
|
+
platform_editor_debounce_portal_provider: {
|
|
350
|
+
defaultValue: boolean;
|
|
350
351
|
param: string;
|
|
351
|
-
productKeys?:
|
|
352
|
+
productKeys?: ProductKeys;
|
|
353
|
+
typeGuard: IsBooleanType;
|
|
352
354
|
};
|
|
353
|
-
|
|
354
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
355
|
+
platform_editor_disable_lazy_load_media: {
|
|
355
356
|
defaultValue: boolean;
|
|
356
357
|
param: string;
|
|
357
|
-
productKeys?:
|
|
358
|
+
productKeys?: ProductKeys;
|
|
359
|
+
typeGuard: IsBooleanType;
|
|
358
360
|
};
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
typeGuard: (value: unknown) => value is "control" | "test_blank" | "test_diagram";
|
|
362
|
-
defaultValue: "control" | "test_blank" | "test_diagram";
|
|
361
|
+
platform_editor_disable_table_overflow_shadows: {
|
|
362
|
+
defaultValue: 'control' | 'variant1' | 'variant2' | 'variant3';
|
|
363
363
|
param: string;
|
|
364
|
-
productKeys?:
|
|
364
|
+
productKeys?: ProductKeys;
|
|
365
|
+
typeGuard: (value: unknown) => value is 'control' | 'variant1' | 'variant2' | 'variant3';
|
|
366
|
+
values: ('control' | 'variant1' | 'variant2' | 'variant3')[];
|
|
365
367
|
};
|
|
366
|
-
|
|
367
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
368
|
+
platform_editor_drag_handle_aria_label: {
|
|
368
369
|
defaultValue: boolean;
|
|
369
370
|
param: string;
|
|
370
|
-
productKeys?:
|
|
371
|
+
productKeys?: ProductKeys;
|
|
372
|
+
typeGuard: IsBooleanType;
|
|
371
373
|
};
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
typeGuard: (value: unknown) => value is "control" | "test_blank" | "test_diagram";
|
|
375
|
-
defaultValue: "control" | "test_blank" | "test_diagram";
|
|
374
|
+
platform_editor_editor_width_analytics: {
|
|
375
|
+
defaultValue: boolean;
|
|
376
376
|
param: string;
|
|
377
|
-
productKeys?:
|
|
377
|
+
productKeys?: ProductKeys;
|
|
378
|
+
typeGuard: IsBooleanType;
|
|
378
379
|
};
|
|
379
|
-
|
|
380
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
380
|
+
platform_editor_element_drag_and_drop_multiselect: {
|
|
381
381
|
defaultValue: boolean;
|
|
382
382
|
param: string;
|
|
383
|
-
productKeys?:
|
|
383
|
+
productKeys?: ProductKeys;
|
|
384
|
+
typeGuard: IsBooleanType;
|
|
384
385
|
};
|
|
385
|
-
|
|
386
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
386
|
+
platform_editor_emoji_otp: {
|
|
387
387
|
defaultValue: boolean;
|
|
388
388
|
param: string;
|
|
389
|
-
productKeys?:
|
|
389
|
+
productKeys?: ProductKeys;
|
|
390
|
+
typeGuard: IsBooleanType;
|
|
390
391
|
};
|
|
391
|
-
|
|
392
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
392
|
+
platform_editor_enable_single_player_step_merging: {
|
|
393
393
|
defaultValue: boolean;
|
|
394
394
|
param: string;
|
|
395
|
-
productKeys?:
|
|
395
|
+
productKeys?: ProductKeys;
|
|
396
|
+
typeGuard: IsBooleanType;
|
|
396
397
|
};
|
|
397
|
-
|
|
398
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
398
|
+
platform_editor_enghealth_table_plugin_lable_rule: {
|
|
399
399
|
defaultValue: boolean;
|
|
400
400
|
param: string;
|
|
401
|
-
productKeys?:
|
|
401
|
+
productKeys?: ProductKeys;
|
|
402
|
+
typeGuard: IsBooleanType;
|
|
402
403
|
};
|
|
403
|
-
|
|
404
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
404
|
+
platform_editor_exp_lazy_node_views: {
|
|
405
405
|
defaultValue: boolean;
|
|
406
406
|
param: string;
|
|
407
|
-
productKeys?:
|
|
407
|
+
productKeys?: ProductKeys;
|
|
408
|
+
typeGuard: IsBooleanType;
|
|
408
409
|
};
|
|
409
|
-
|
|
410
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
410
|
+
platform_editor_experience_tracking: {
|
|
411
411
|
defaultValue: boolean;
|
|
412
412
|
param: string;
|
|
413
|
-
productKeys?:
|
|
413
|
+
productKeys?: ProductKeys;
|
|
414
|
+
typeGuard: IsBooleanType;
|
|
414
415
|
};
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
typeGuard: (value: unknown) => value is "control" | "css_changes_only" | "css_js_changes";
|
|
418
|
-
defaultValue: "control" | "css_changes_only" | "css_js_changes";
|
|
416
|
+
platform_editor_extension_styles: {
|
|
417
|
+
defaultValue: boolean;
|
|
419
418
|
param: string;
|
|
420
|
-
productKeys?:
|
|
419
|
+
productKeys?: ProductKeys;
|
|
420
|
+
typeGuard: IsBooleanType;
|
|
421
421
|
};
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
typeGuard: (value: unknown) => value is "test" | "control";
|
|
425
|
-
defaultValue: "test" | "control";
|
|
422
|
+
platform_editor_feedback_mandatory_rating: {
|
|
423
|
+
defaultValue: boolean;
|
|
426
424
|
param: string;
|
|
427
|
-
productKeys?:
|
|
425
|
+
productKeys?: ProductKeys;
|
|
426
|
+
typeGuard: IsBooleanType;
|
|
428
427
|
};
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
typeGuard: (value: unknown) => value is "test" | "control";
|
|
432
|
-
defaultValue: "test" | "control";
|
|
428
|
+
platform_editor_find_and_replace_improvements: {
|
|
429
|
+
defaultValue: boolean;
|
|
433
430
|
param: string;
|
|
434
|
-
productKeys?:
|
|
431
|
+
productKeys?: ProductKeys;
|
|
432
|
+
typeGuard: IsBooleanType;
|
|
435
433
|
};
|
|
436
|
-
|
|
437
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
434
|
+
platform_editor_fix_a11y_aria_posinset_0: {
|
|
438
435
|
defaultValue: boolean;
|
|
439
436
|
param: string;
|
|
440
|
-
productKeys?:
|
|
437
|
+
productKeys?: ProductKeys;
|
|
438
|
+
typeGuard: IsBooleanType;
|
|
441
439
|
};
|
|
442
|
-
|
|
443
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
440
|
+
platform_editor_fix_button_name_violation_in_table: {
|
|
444
441
|
defaultValue: boolean;
|
|
445
442
|
param: string;
|
|
446
|
-
productKeys?:
|
|
443
|
+
productKeys?: ProductKeys;
|
|
444
|
+
typeGuard: IsBooleanType;
|
|
447
445
|
};
|
|
448
|
-
|
|
449
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
446
|
+
platform_editor_fix_clone_nesting_exp: {
|
|
450
447
|
defaultValue: boolean;
|
|
451
448
|
param: string;
|
|
452
|
-
productKeys?:
|
|
449
|
+
productKeys?: ProductKeys;
|
|
450
|
+
typeGuard: IsBooleanType;
|
|
453
451
|
};
|
|
454
|
-
|
|
455
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
452
|
+
platform_editor_fix_quick_insert_consistency_exp: {
|
|
456
453
|
defaultValue: boolean;
|
|
457
454
|
param: string;
|
|
458
|
-
productKeys?:
|
|
455
|
+
productKeys?: ProductKeys;
|
|
456
|
+
typeGuard: IsBooleanType;
|
|
459
457
|
};
|
|
460
|
-
|
|
461
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
458
|
+
platform_editor_floating_toolbar_button_aria_label: {
|
|
462
459
|
defaultValue: boolean;
|
|
463
460
|
param: string;
|
|
464
|
-
productKeys?:
|
|
461
|
+
productKeys?: ProductKeys;
|
|
462
|
+
typeGuard: IsBooleanType;
|
|
465
463
|
};
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
typeGuard: (value: unknown) => value is "test" | "control";
|
|
469
|
-
defaultValue: "test" | "control";
|
|
464
|
+
platform_editor_hoverlink_ui_fixes_exp: {
|
|
465
|
+
defaultValue: 'control' | 'css_changes_only' | 'css_js_changes';
|
|
470
466
|
param: string;
|
|
471
|
-
productKeys?:
|
|
467
|
+
productKeys?: ProductKeys;
|
|
468
|
+
typeGuard: (value: unknown) => value is 'control' | 'css_changes_only' | 'css_js_changes';
|
|
469
|
+
values: ('control' | 'css_changes_only' | 'css_js_changes')[];
|
|
472
470
|
};
|
|
473
|
-
|
|
474
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
471
|
+
platform_editor_hydratable_ui: {
|
|
475
472
|
defaultValue: boolean;
|
|
476
473
|
param: string;
|
|
477
|
-
productKeys?:
|
|
474
|
+
productKeys?: ProductKeys;
|
|
475
|
+
typeGuard: IsBooleanType;
|
|
478
476
|
};
|
|
479
|
-
|
|
480
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
477
|
+
platform_editor_jira_advanced_code_blocks: {
|
|
481
478
|
defaultValue: boolean;
|
|
482
479
|
param: string;
|
|
483
|
-
productKeys?:
|
|
480
|
+
productKeys?: ProductKeys;
|
|
481
|
+
typeGuard: IsBooleanType;
|
|
484
482
|
};
|
|
485
|
-
|
|
486
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
483
|
+
platform_editor_locale_datepicker: {
|
|
487
484
|
defaultValue: boolean;
|
|
488
485
|
param: string;
|
|
489
|
-
productKeys?:
|
|
486
|
+
productKeys?: ProductKeys;
|
|
487
|
+
typeGuard: IsBooleanType;
|
|
490
488
|
};
|
|
491
|
-
|
|
492
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
489
|
+
platform_editor_lovability_emoji_scaling: {
|
|
493
490
|
defaultValue: boolean;
|
|
494
491
|
param: string;
|
|
495
|
-
productKeys?:
|
|
492
|
+
productKeys?: ProductKeys;
|
|
493
|
+
typeGuard: IsBooleanType;
|
|
496
494
|
};
|
|
497
|
-
|
|
498
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
495
|
+
platform_editor_lovability_inline_code: {
|
|
499
496
|
defaultValue: boolean;
|
|
500
497
|
param: string;
|
|
501
|
-
productKeys?:
|
|
498
|
+
productKeys?: ProductKeys;
|
|
499
|
+
typeGuard: IsBooleanType;
|
|
502
500
|
};
|
|
503
|
-
|
|
504
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
501
|
+
platform_editor_lovability_navigation_fixes: {
|
|
505
502
|
defaultValue: boolean;
|
|
506
503
|
param: string;
|
|
507
|
-
productKeys?:
|
|
504
|
+
productKeys?: ProductKeys;
|
|
505
|
+
typeGuard: IsBooleanType;
|
|
508
506
|
};
|
|
509
|
-
|
|
510
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
507
|
+
platform_editor_lovability_suppress_toolbar_event: {
|
|
511
508
|
defaultValue: boolean;
|
|
512
509
|
param: string;
|
|
513
|
-
productKeys?:
|
|
510
|
+
productKeys?: ProductKeys;
|
|
511
|
+
typeGuard: IsBooleanType;
|
|
514
512
|
};
|
|
515
|
-
|
|
516
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
513
|
+
platform_editor_lovability_user_intent: {
|
|
517
514
|
defaultValue: boolean;
|
|
518
515
|
param: string;
|
|
519
|
-
productKeys?:
|
|
516
|
+
productKeys?: ProductKeys;
|
|
517
|
+
typeGuard: IsBooleanType;
|
|
520
518
|
};
|
|
521
|
-
|
|
522
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
519
|
+
platform_editor_media_error_analytics: {
|
|
523
520
|
defaultValue: boolean;
|
|
524
521
|
param: string;
|
|
525
|
-
productKeys?:
|
|
522
|
+
productKeys?: ProductKeys;
|
|
523
|
+
typeGuard: IsBooleanType;
|
|
526
524
|
};
|
|
527
|
-
|
|
528
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
525
|
+
platform_editor_media_vc_fixes: {
|
|
529
526
|
defaultValue: boolean;
|
|
530
527
|
param: string;
|
|
531
|
-
productKeys?:
|
|
528
|
+
productKeys?: ProductKeys;
|
|
529
|
+
typeGuard: IsBooleanType;
|
|
532
530
|
};
|
|
533
|
-
|
|
534
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
531
|
+
platform_editor_native_anchor_with_dnd: {
|
|
535
532
|
defaultValue: boolean;
|
|
536
533
|
param: string;
|
|
537
|
-
productKeys?:
|
|
534
|
+
productKeys?: ProductKeys;
|
|
535
|
+
typeGuard: IsBooleanType;
|
|
538
536
|
};
|
|
539
|
-
|
|
540
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
537
|
+
platform_editor_native_expand_button: {
|
|
541
538
|
defaultValue: boolean;
|
|
542
539
|
param: string;
|
|
543
|
-
productKeys?:
|
|
540
|
+
productKeys?: ProductKeys;
|
|
541
|
+
typeGuard: IsBooleanType;
|
|
544
542
|
};
|
|
545
|
-
|
|
546
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
543
|
+
platform_editor_nested_table_detection: {
|
|
547
544
|
defaultValue: boolean;
|
|
548
545
|
param: string;
|
|
549
|
-
productKeys?:
|
|
546
|
+
productKeys?: ProductKeys;
|
|
547
|
+
typeGuard: IsBooleanType;
|
|
550
548
|
};
|
|
551
|
-
|
|
552
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
549
|
+
platform_editor_nested_table_refresh_width_fix: {
|
|
553
550
|
defaultValue: boolean;
|
|
554
551
|
param: string;
|
|
555
|
-
productKeys?:
|
|
552
|
+
productKeys?: ProductKeys;
|
|
553
|
+
typeGuard: IsBooleanType;
|
|
556
554
|
};
|
|
557
|
-
|
|
558
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
555
|
+
platform_editor_new_list_decorations_logic: {
|
|
559
556
|
defaultValue: boolean;
|
|
560
557
|
param: string;
|
|
561
|
-
productKeys?:
|
|
558
|
+
productKeys?: ProductKeys;
|
|
559
|
+
typeGuard: IsBooleanType;
|
|
562
560
|
};
|
|
563
|
-
|
|
564
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
561
|
+
platform_editor_new_mentions_detection_logic: {
|
|
565
562
|
defaultValue: boolean;
|
|
566
563
|
param: string;
|
|
567
|
-
productKeys?:
|
|
564
|
+
productKeys?: ProductKeys;
|
|
565
|
+
typeGuard: IsBooleanType;
|
|
568
566
|
};
|
|
569
|
-
|
|
570
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
567
|
+
platform_editor_no_cursor_on_edit_page_init: {
|
|
571
568
|
defaultValue: boolean;
|
|
572
569
|
param: string;
|
|
573
|
-
productKeys?:
|
|
570
|
+
productKeys?: ProductKeys;
|
|
571
|
+
typeGuard: IsBooleanType;
|
|
574
572
|
};
|
|
575
|
-
|
|
576
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
573
|
+
platform_editor_no_ssr: {
|
|
577
574
|
defaultValue: boolean;
|
|
578
575
|
param: string;
|
|
579
|
-
productKeys?:
|
|
576
|
+
productKeys?: ProductKeys;
|
|
577
|
+
typeGuard: IsBooleanType;
|
|
580
578
|
};
|
|
581
|
-
|
|
582
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
579
|
+
platform_editor_offline_editing_web: {
|
|
583
580
|
defaultValue: boolean;
|
|
584
581
|
param: string;
|
|
585
|
-
productKeys?:
|
|
582
|
+
productKeys?: ProductKeys;
|
|
583
|
+
typeGuard: IsBooleanType;
|
|
586
584
|
};
|
|
587
|
-
|
|
588
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
585
|
+
platform_editor_pasting_nested_table_fix: {
|
|
589
586
|
defaultValue: boolean;
|
|
590
587
|
param: string;
|
|
591
|
-
productKeys?:
|
|
588
|
+
productKeys?: ProductKeys;
|
|
589
|
+
typeGuard: IsBooleanType;
|
|
592
590
|
};
|
|
593
|
-
|
|
594
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
591
|
+
platform_editor_pasting_text_in_panel: {
|
|
595
592
|
defaultValue: boolean;
|
|
596
593
|
param: string;
|
|
597
|
-
productKeys?:
|
|
594
|
+
productKeys?: ProductKeys;
|
|
595
|
+
typeGuard: IsBooleanType;
|
|
598
596
|
};
|
|
599
|
-
|
|
600
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
597
|
+
platform_editor_plain_text_support: {
|
|
601
598
|
defaultValue: boolean;
|
|
602
599
|
param: string;
|
|
603
|
-
productKeys?:
|
|
600
|
+
productKeys?: ProductKeys;
|
|
601
|
+
typeGuard: IsBooleanType;
|
|
604
602
|
};
|
|
605
|
-
|
|
606
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
603
|
+
platform_editor_prevent_taskitem_remount: {
|
|
607
604
|
defaultValue: boolean;
|
|
608
605
|
param: string;
|
|
609
|
-
productKeys?:
|
|
606
|
+
productKeys?: ProductKeys;
|
|
607
|
+
typeGuard: IsBooleanType;
|
|
610
608
|
};
|
|
611
|
-
|
|
612
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
609
|
+
platform_editor_prevent_toolbar_layout_shifts: {
|
|
613
610
|
defaultValue: boolean;
|
|
614
611
|
param: string;
|
|
615
|
-
productKeys?:
|
|
612
|
+
productKeys?: ProductKeys;
|
|
613
|
+
typeGuard: IsBooleanType;
|
|
616
614
|
};
|
|
617
|
-
|
|
618
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
615
|
+
platform_editor_preview_panel_linking_exp: {
|
|
619
616
|
defaultValue: boolean;
|
|
620
617
|
param: string;
|
|
621
|
-
productKeys?:
|
|
618
|
+
productKeys?: ProductKeys;
|
|
619
|
+
typeGuard: IsBooleanType;
|
|
622
620
|
};
|
|
623
|
-
|
|
624
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
621
|
+
platform_editor_preview_panel_responsiveness: {
|
|
625
622
|
defaultValue: boolean;
|
|
626
623
|
param: string;
|
|
627
|
-
productKeys?:
|
|
624
|
+
productKeys?: ProductKeys;
|
|
625
|
+
typeGuard: IsBooleanType;
|
|
628
626
|
};
|
|
629
|
-
|
|
630
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
627
|
+
platform_editor_quick_insert_image_wrap_right_fix: {
|
|
631
628
|
defaultValue: boolean;
|
|
632
629
|
param: string;
|
|
633
|
-
productKeys?:
|
|
630
|
+
productKeys?: ProductKeys;
|
|
631
|
+
typeGuard: IsBooleanType;
|
|
634
632
|
};
|
|
635
|
-
|
|
636
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
633
|
+
platform_editor_reduce_noisy_steps_ncs: {
|
|
637
634
|
defaultValue: boolean;
|
|
638
635
|
param: string;
|
|
639
|
-
productKeys?:
|
|
636
|
+
productKeys?: ProductKeys;
|
|
637
|
+
typeGuard: IsBooleanType;
|
|
640
638
|
};
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
typeGuard: (value: unknown) => value is "test" | "control";
|
|
644
|
-
defaultValue: "test" | "control";
|
|
639
|
+
platform_editor_remove_bidi_char_warning: {
|
|
640
|
+
defaultValue: boolean;
|
|
645
641
|
param: string;
|
|
646
|
-
productKeys?:
|
|
642
|
+
productKeys?: ProductKeys;
|
|
643
|
+
typeGuard: IsBooleanType;
|
|
647
644
|
};
|
|
648
|
-
|
|
649
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
645
|
+
platform_editor_remove_ncsStepMetrics_plugin: {
|
|
650
646
|
defaultValue: boolean;
|
|
651
647
|
param: string;
|
|
652
|
-
productKeys?:
|
|
648
|
+
productKeys?: ProductKeys;
|
|
649
|
+
typeGuard: IsBooleanType;
|
|
653
650
|
};
|
|
654
|
-
|
|
655
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
651
|
+
platform_editor_renderer_breakout_fix: {
|
|
656
652
|
defaultValue: boolean;
|
|
657
653
|
param: string;
|
|
658
|
-
productKeys?:
|
|
654
|
+
productKeys?: ProductKeys;
|
|
655
|
+
typeGuard: IsBooleanType;
|
|
659
656
|
};
|
|
660
|
-
|
|
661
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
657
|
+
platform_editor_renderer_extension_width_fix: {
|
|
662
658
|
defaultValue: boolean;
|
|
663
659
|
param: string;
|
|
664
|
-
productKeys?:
|
|
660
|
+
productKeys?: ProductKeys;
|
|
661
|
+
typeGuard: IsBooleanType;
|
|
665
662
|
};
|
|
666
|
-
|
|
667
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
663
|
+
platform_editor_resizer_cls_fix: {
|
|
668
664
|
defaultValue: boolean;
|
|
669
665
|
param: string;
|
|
670
|
-
productKeys?:
|
|
666
|
+
productKeys?: ProductKeys;
|
|
667
|
+
typeGuard: IsBooleanType;
|
|
671
668
|
};
|
|
672
|
-
|
|
673
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
669
|
+
platform_editor_smart_card_otp: {
|
|
674
670
|
defaultValue: boolean;
|
|
675
671
|
param: string;
|
|
676
|
-
productKeys?:
|
|
672
|
+
productKeys?: ProductKeys;
|
|
673
|
+
typeGuard: IsBooleanType;
|
|
677
674
|
};
|
|
678
|
-
|
|
679
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
675
|
+
platform_editor_stop_width_reflows: {
|
|
680
676
|
defaultValue: boolean;
|
|
681
677
|
param: string;
|
|
682
|
-
productKeys?:
|
|
678
|
+
productKeys?: ProductKeys;
|
|
679
|
+
typeGuard: IsBooleanType;
|
|
683
680
|
};
|
|
684
|
-
|
|
685
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
681
|
+
platform_editor_table_drag_handle_hover: {
|
|
686
682
|
defaultValue: boolean;
|
|
687
683
|
param: string;
|
|
688
|
-
productKeys?:
|
|
684
|
+
productKeys?: ProductKeys;
|
|
685
|
+
typeGuard: IsBooleanType;
|
|
689
686
|
};
|
|
690
|
-
|
|
691
|
-
|
|
687
|
+
platform_editor_table_sticky_header_improvements: {
|
|
688
|
+
defaultValue: 'control' | 'test_with_overflow' | 'test_without_overflow';
|
|
689
|
+
param: string;
|
|
690
|
+
productKeys?: ProductKeys;
|
|
691
|
+
typeGuard: (value: unknown) => value is 'control' | 'test_with_overflow' | 'test_without_overflow';
|
|
692
|
+
values: ('control' | 'test_with_overflow' | 'test_without_overflow')[];
|
|
693
|
+
};
|
|
694
|
+
platform_editor_tables_drag_and_drop: {
|
|
692
695
|
defaultValue: boolean;
|
|
693
696
|
param: string;
|
|
694
|
-
productKeys?:
|
|
697
|
+
productKeys?: ProductKeys;
|
|
698
|
+
typeGuard: IsBooleanType;
|
|
695
699
|
};
|
|
696
|
-
|
|
697
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
700
|
+
platform_editor_tables_table_selector: {
|
|
698
701
|
defaultValue: boolean;
|
|
699
702
|
param: string;
|
|
700
|
-
productKeys?:
|
|
703
|
+
productKeys?: ProductKeys;
|
|
704
|
+
typeGuard: IsBooleanType;
|
|
701
705
|
};
|
|
702
706
|
platform_editor_text_highlight_padding: {
|
|
703
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
704
707
|
defaultValue: boolean;
|
|
705
708
|
param: string;
|
|
706
|
-
productKeys?:
|
|
709
|
+
productKeys?: ProductKeys;
|
|
710
|
+
typeGuard: IsBooleanType;
|
|
707
711
|
};
|
|
708
|
-
|
|
709
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
712
|
+
platform_editor_toggle_expand_on_match_found: {
|
|
710
713
|
defaultValue: boolean;
|
|
711
714
|
param: string;
|
|
712
|
-
productKeys?:
|
|
715
|
+
productKeys?: ProductKeys;
|
|
716
|
+
typeGuard: IsBooleanType;
|
|
713
717
|
};
|
|
714
|
-
|
|
715
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
718
|
+
platform_editor_toolbar_aifc: {
|
|
716
719
|
defaultValue: boolean;
|
|
717
720
|
param: string;
|
|
718
|
-
productKeys?:
|
|
721
|
+
productKeys?: ProductKeys;
|
|
722
|
+
typeGuard: IsBooleanType;
|
|
719
723
|
};
|
|
720
|
-
|
|
721
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
724
|
+
platform_editor_toolbar_aifc_patch_3: {
|
|
722
725
|
defaultValue: boolean;
|
|
723
726
|
param: string;
|
|
724
|
-
productKeys?:
|
|
727
|
+
productKeys?: ProductKeys;
|
|
728
|
+
typeGuard: IsBooleanType;
|
|
725
729
|
};
|
|
726
|
-
|
|
727
|
-
|
|
730
|
+
platform_editor_toolbar_aifc_patch_4: {
|
|
731
|
+
defaultValue: boolean;
|
|
732
|
+
param: string;
|
|
733
|
+
productKeys?: ProductKeys;
|
|
734
|
+
typeGuard: IsBooleanType;
|
|
735
|
+
};
|
|
736
|
+
platform_editor_toolbar_aifc_patch_5: {
|
|
728
737
|
defaultValue: boolean;
|
|
729
738
|
param: string;
|
|
730
|
-
productKeys?:
|
|
739
|
+
productKeys?: ProductKeys;
|
|
740
|
+
typeGuard: IsBooleanType;
|
|
731
741
|
};
|
|
732
742
|
platform_editor_toolbar_aifc_patch_6: {
|
|
733
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
734
743
|
defaultValue: boolean;
|
|
735
744
|
param: string;
|
|
736
|
-
productKeys?:
|
|
745
|
+
productKeys?: ProductKeys;
|
|
746
|
+
typeGuard: IsBooleanType;
|
|
737
747
|
};
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
typeGuard: (value: unknown) => value is "test" | "control";
|
|
741
|
-
defaultValue: "test" | "control";
|
|
748
|
+
platform_editor_toolbar_aifc_responsive: {
|
|
749
|
+
defaultValue: boolean;
|
|
742
750
|
param: string;
|
|
743
|
-
productKeys?:
|
|
751
|
+
productKeys?: ProductKeys;
|
|
752
|
+
typeGuard: IsBooleanType;
|
|
744
753
|
};
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
typeGuard: (value: unknown) => value is "control" | "test1" | "test2";
|
|
748
|
-
defaultValue: "control" | "test1" | "test2";
|
|
754
|
+
platform_editor_toolbar_aifc_selection_extension: {
|
|
755
|
+
defaultValue: boolean;
|
|
749
756
|
param: string;
|
|
750
|
-
productKeys?:
|
|
757
|
+
productKeys?: ProductKeys;
|
|
758
|
+
typeGuard: IsBooleanType;
|
|
751
759
|
};
|
|
752
|
-
|
|
753
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
760
|
+
platform_editor_toolbar_aifc_template_editor: {
|
|
754
761
|
defaultValue: boolean;
|
|
755
762
|
param: string;
|
|
756
|
-
productKeys?:
|
|
763
|
+
productKeys?: ProductKeys;
|
|
764
|
+
typeGuard: IsBooleanType;
|
|
757
765
|
};
|
|
758
|
-
|
|
759
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
766
|
+
platform_editor_toolbar_migrate_loom: {
|
|
760
767
|
defaultValue: boolean;
|
|
761
768
|
param: string;
|
|
762
|
-
productKeys?:
|
|
769
|
+
productKeys?: ProductKeys;
|
|
770
|
+
typeGuard: IsBooleanType;
|
|
763
771
|
};
|
|
764
|
-
|
|
765
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
772
|
+
platform_editor_toolbar_support_custom_components: {
|
|
766
773
|
defaultValue: boolean;
|
|
767
774
|
param: string;
|
|
768
|
-
productKeys?:
|
|
775
|
+
productKeys?: ProductKeys;
|
|
776
|
+
typeGuard: IsBooleanType;
|
|
769
777
|
};
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
typeGuard: (value: unknown) => value is "control" | "test_blank" | "test_diagram";
|
|
773
|
-
defaultValue: "control" | "test_blank" | "test_diagram";
|
|
778
|
+
platform_editor_usesharedpluginstateselector: {
|
|
779
|
+
defaultValue: boolean;
|
|
774
780
|
param: string;
|
|
775
|
-
productKeys?:
|
|
781
|
+
productKeys?: ProductKeys;
|
|
782
|
+
typeGuard: IsBooleanType;
|
|
776
783
|
};
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
typeGuard: (value: unknown) => value is "control" | "test_diagram";
|
|
780
|
-
defaultValue: "control" | "test_diagram";
|
|
784
|
+
platform_hover_card_preview_panel: {
|
|
785
|
+
defaultValue: 'control' | 'test';
|
|
781
786
|
param: string;
|
|
782
|
-
productKeys?:
|
|
787
|
+
productKeys?: ProductKeys;
|
|
788
|
+
typeGuard: (value: unknown) => value is 'control' | 'test';
|
|
789
|
+
values: ('control' | 'test')[];
|
|
783
790
|
};
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
defaultValue: boolean;
|
|
791
|
+
platform_hover_card_preview_panel_modal: {
|
|
792
|
+
defaultValue: 'control' | 'test';
|
|
787
793
|
param: string;
|
|
788
|
-
productKeys?:
|
|
794
|
+
productKeys?: ProductKeys;
|
|
795
|
+
typeGuard: (value: unknown) => value is 'control' | 'test';
|
|
796
|
+
values: ('control' | 'test')[];
|
|
789
797
|
};
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
defaultValue: boolean;
|
|
798
|
+
platform_inline_smartcard_connect_button_exp: {
|
|
799
|
+
defaultValue: 'control' | 'test1' | 'test2';
|
|
793
800
|
param: string;
|
|
794
|
-
productKeys?:
|
|
801
|
+
productKeys?: ProductKeys;
|
|
802
|
+
typeGuard: (value: unknown) => value is 'control' | 'test1' | 'test2';
|
|
803
|
+
values: ('control' | 'test1' | 'test2')[];
|
|
795
804
|
};
|
|
796
|
-
|
|
797
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
805
|
+
platform_renderer_fix_analytics_memo_callback: {
|
|
798
806
|
defaultValue: boolean;
|
|
799
807
|
param: string;
|
|
800
|
-
productKeys?:
|
|
808
|
+
productKeys?: ProductKeys;
|
|
809
|
+
typeGuard: IsBooleanType;
|
|
801
810
|
};
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
typeGuard: (value: unknown) => value is "control" | "test_with_overflow" | "test_without_overflow";
|
|
805
|
-
defaultValue: "control" | "test_with_overflow" | "test_without_overflow";
|
|
811
|
+
platform_renderer_table_sticky_scrollbar: {
|
|
812
|
+
defaultValue: boolean;
|
|
806
813
|
param: string;
|
|
807
|
-
productKeys?:
|
|
814
|
+
productKeys?: ProductKeys;
|
|
815
|
+
typeGuard: IsBooleanType;
|
|
808
816
|
};
|
|
809
|
-
|
|
810
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
817
|
+
platform_synced_block: {
|
|
811
818
|
defaultValue: boolean;
|
|
812
819
|
param: string;
|
|
813
|
-
productKeys?:
|
|
820
|
+
productKeys?: ProductKeys;
|
|
821
|
+
typeGuard: IsBooleanType;
|
|
814
822
|
};
|
|
815
|
-
|
|
816
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
823
|
+
platform_use_llm_space_recommendations: {
|
|
817
824
|
defaultValue: boolean;
|
|
818
825
|
param: string;
|
|
819
|
-
productKeys?:
|
|
826
|
+
productKeys?: ProductKeys;
|
|
827
|
+
typeGuard: IsBooleanType;
|
|
820
828
|
};
|
|
821
|
-
|
|
822
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
829
|
+
single_column_layouts: {
|
|
823
830
|
defaultValue: boolean;
|
|
824
831
|
param: string;
|
|
825
|
-
productKeys?:
|
|
832
|
+
productKeys?: ProductKeys;
|
|
833
|
+
typeGuard: IsBooleanType;
|
|
826
834
|
};
|
|
827
|
-
|
|
828
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
835
|
+
support_table_in_comment: {
|
|
829
836
|
defaultValue: boolean;
|
|
830
837
|
param: string;
|
|
831
|
-
productKeys?:
|
|
838
|
+
productKeys?: ProductKeys;
|
|
839
|
+
typeGuard: IsBooleanType;
|
|
832
840
|
};
|
|
833
|
-
|
|
834
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
841
|
+
support_table_in_comment_jira: {
|
|
835
842
|
defaultValue: boolean;
|
|
836
843
|
param: string;
|
|
837
|
-
productKeys?:
|
|
844
|
+
productKeys?: ProductKeys;
|
|
845
|
+
typeGuard: IsBooleanType;
|
|
838
846
|
};
|
|
839
|
-
|
|
840
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
847
|
+
'test-new-experiments-package': {
|
|
841
848
|
defaultValue: boolean;
|
|
842
849
|
param: string;
|
|
843
|
-
productKeys?:
|
|
850
|
+
productKeys?: ProductKeys;
|
|
851
|
+
typeGuard: IsBooleanType;
|
|
844
852
|
};
|
|
845
853
|
};
|
|
854
|
+
export {};
|