@atlaskit/tmp-editor-statsig 3.6.1 → 4.1.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 +23 -0
- package/dist/cjs/experiments-config.js +10 -18
- package/dist/es2019/experiments-config.js +10 -18
- package/dist/esm/experiments-config.js +10 -18
- package/dist/types/editor-experiments-test-utils.d.ts +9 -17
- package/dist/types/experiments-config.d.ts +8 -16
- package/dist/types/setup.d.ts +1 -2
- package/dist/types-ts4.5/editor-experiments-test-utils.d.ts +9 -17
- package/dist/types-ts4.5/experiments-config.d.ts +8 -16
- package/dist/types-ts4.5/setup.d.ts +1 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 4.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#125372](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/125372)
|
|
8
|
+
[`333d2a5c64229`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/333d2a5c64229) -
|
|
9
|
+
[EDF-2225] Cleanup platform_editor_ai_advanced_prompts Statsig experiment
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#115815](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/115815)
|
|
14
|
+
[`ad7c517ed3b47`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ad7c517ed3b47) -
|
|
15
|
+
ED-26661 added experiement enables single column layout
|
|
16
|
+
|
|
17
|
+
## 4.0.0
|
|
18
|
+
|
|
19
|
+
### Major Changes
|
|
20
|
+
|
|
21
|
+
- [#126060](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/126060)
|
|
22
|
+
[`fe137e1387076`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/fe137e1387076) -
|
|
23
|
+
Clean up Action Items experiment in Editor. Overriding the Quick Insert Action description and
|
|
24
|
+
Task Item placeholder will now always take effect.
|
|
25
|
+
|
|
3
26
|
## 3.6.1
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
|
@@ -156,6 +156,16 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
156
156
|
typeGuard: _typeGuards.isBoolean,
|
|
157
157
|
defaultValue: false
|
|
158
158
|
},
|
|
159
|
+
// Added 2025-3-15
|
|
160
|
+
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_single_column_layout/setup
|
|
161
|
+
single_column_layouts: {
|
|
162
|
+
productKeys: {
|
|
163
|
+
confluence: 'platform_editor_single_column_layout'
|
|
164
|
+
},
|
|
165
|
+
param: 'isEnabled',
|
|
166
|
+
typeGuard: _typeGuards.isBoolean,
|
|
167
|
+
defaultValue: false
|
|
168
|
+
},
|
|
159
169
|
// Added 2024-10-08
|
|
160
170
|
support_table_in_comment_jira: {
|
|
161
171
|
productKeys: {
|
|
@@ -183,15 +193,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
183
193
|
typeGuard: _typeGuards.isBoolean,
|
|
184
194
|
defaultValue: false
|
|
185
195
|
},
|
|
186
|
-
// Added 2024-11-13
|
|
187
|
-
issue_view_action_items: {
|
|
188
|
-
productKeys: {
|
|
189
|
-
jira: 'issue_view_action_items'
|
|
190
|
-
},
|
|
191
|
-
param: 'isActionItemsEnabled',
|
|
192
|
-
typeGuard: _typeGuards.isBoolean,
|
|
193
|
-
defaultValue: false
|
|
194
|
-
},
|
|
195
196
|
// Added 2024-11-18
|
|
196
197
|
contextual_formatting_toolbar: {
|
|
197
198
|
productKeys: {
|
|
@@ -210,15 +211,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
210
211
|
typeGuard: _typeGuards.isBoolean,
|
|
211
212
|
defaultValue: false
|
|
212
213
|
},
|
|
213
|
-
// Added 2025-01-15
|
|
214
|
-
platform_editor_ai_advanced_prompts: {
|
|
215
|
-
productKeys: {
|
|
216
|
-
confluence: 'platform_editor_ai_advanced_prompts'
|
|
217
|
-
},
|
|
218
|
-
param: 'isEnabled',
|
|
219
|
-
typeGuard: _typeGuards.isBoolean,
|
|
220
|
-
defaultValue: false
|
|
221
|
-
},
|
|
222
214
|
expand_selection_range_to_include_inline_node: {
|
|
223
215
|
productKeys: {
|
|
224
216
|
confluence: 'expand_selection_range_to_include_inline_node'
|
|
@@ -150,6 +150,16 @@ export const editorExperimentsConfig = {
|
|
|
150
150
|
typeGuard: isBoolean,
|
|
151
151
|
defaultValue: false
|
|
152
152
|
},
|
|
153
|
+
// Added 2025-3-15
|
|
154
|
+
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_single_column_layout/setup
|
|
155
|
+
single_column_layouts: {
|
|
156
|
+
productKeys: {
|
|
157
|
+
confluence: 'platform_editor_single_column_layout'
|
|
158
|
+
},
|
|
159
|
+
param: 'isEnabled',
|
|
160
|
+
typeGuard: isBoolean,
|
|
161
|
+
defaultValue: false
|
|
162
|
+
},
|
|
153
163
|
// Added 2024-10-08
|
|
154
164
|
support_table_in_comment_jira: {
|
|
155
165
|
productKeys: {
|
|
@@ -177,15 +187,6 @@ export const editorExperimentsConfig = {
|
|
|
177
187
|
typeGuard: isBoolean,
|
|
178
188
|
defaultValue: false
|
|
179
189
|
},
|
|
180
|
-
// Added 2024-11-13
|
|
181
|
-
issue_view_action_items: {
|
|
182
|
-
productKeys: {
|
|
183
|
-
jira: 'issue_view_action_items'
|
|
184
|
-
},
|
|
185
|
-
param: 'isActionItemsEnabled',
|
|
186
|
-
typeGuard: isBoolean,
|
|
187
|
-
defaultValue: false
|
|
188
|
-
},
|
|
189
190
|
// Added 2024-11-18
|
|
190
191
|
contextual_formatting_toolbar: {
|
|
191
192
|
productKeys: {
|
|
@@ -204,15 +205,6 @@ export const editorExperimentsConfig = {
|
|
|
204
205
|
typeGuard: isBoolean,
|
|
205
206
|
defaultValue: false
|
|
206
207
|
},
|
|
207
|
-
// Added 2025-01-15
|
|
208
|
-
platform_editor_ai_advanced_prompts: {
|
|
209
|
-
productKeys: {
|
|
210
|
-
confluence: 'platform_editor_ai_advanced_prompts'
|
|
211
|
-
},
|
|
212
|
-
param: 'isEnabled',
|
|
213
|
-
typeGuard: isBoolean,
|
|
214
|
-
defaultValue: false
|
|
215
|
-
},
|
|
216
208
|
expand_selection_range_to_include_inline_node: {
|
|
217
209
|
productKeys: {
|
|
218
210
|
confluence: 'expand_selection_range_to_include_inline_node'
|
|
@@ -150,6 +150,16 @@ export var editorExperimentsConfig = {
|
|
|
150
150
|
typeGuard: isBoolean,
|
|
151
151
|
defaultValue: false
|
|
152
152
|
},
|
|
153
|
+
// Added 2025-3-15
|
|
154
|
+
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_single_column_layout/setup
|
|
155
|
+
single_column_layouts: {
|
|
156
|
+
productKeys: {
|
|
157
|
+
confluence: 'platform_editor_single_column_layout'
|
|
158
|
+
},
|
|
159
|
+
param: 'isEnabled',
|
|
160
|
+
typeGuard: isBoolean,
|
|
161
|
+
defaultValue: false
|
|
162
|
+
},
|
|
153
163
|
// Added 2024-10-08
|
|
154
164
|
support_table_in_comment_jira: {
|
|
155
165
|
productKeys: {
|
|
@@ -177,15 +187,6 @@ export var editorExperimentsConfig = {
|
|
|
177
187
|
typeGuard: isBoolean,
|
|
178
188
|
defaultValue: false
|
|
179
189
|
},
|
|
180
|
-
// Added 2024-11-13
|
|
181
|
-
issue_view_action_items: {
|
|
182
|
-
productKeys: {
|
|
183
|
-
jira: 'issue_view_action_items'
|
|
184
|
-
},
|
|
185
|
-
param: 'isActionItemsEnabled',
|
|
186
|
-
typeGuard: isBoolean,
|
|
187
|
-
defaultValue: false
|
|
188
|
-
},
|
|
189
190
|
// Added 2024-11-18
|
|
190
191
|
contextual_formatting_toolbar: {
|
|
191
192
|
productKeys: {
|
|
@@ -204,15 +205,6 @@ export var editorExperimentsConfig = {
|
|
|
204
205
|
typeGuard: isBoolean,
|
|
205
206
|
defaultValue: false
|
|
206
207
|
},
|
|
207
|
-
// Added 2025-01-15
|
|
208
|
-
platform_editor_ai_advanced_prompts: {
|
|
209
|
-
productKeys: {
|
|
210
|
-
confluence: 'platform_editor_ai_advanced_prompts'
|
|
211
|
-
},
|
|
212
|
-
param: 'isEnabled',
|
|
213
|
-
typeGuard: isBoolean,
|
|
214
|
-
defaultValue: false
|
|
215
|
-
},
|
|
216
208
|
expand_selection_range_to_include_inline_node: {
|
|
217
209
|
productKeys: {
|
|
218
210
|
confluence: 'expand_selection_range_to_include_inline_node'
|
|
@@ -45,7 +45,7 @@ declare function eeTest<ExperimentName extends keyof EditorExperimentsConfig>(ex
|
|
|
45
45
|
false: DescribeBody;
|
|
46
46
|
}, otherExperiments?: EditorExperimentOverrides): void;
|
|
47
47
|
declare namespace eeTest {
|
|
48
|
-
var describe: <ExperimentName extends "example-boolean" | "example-multivariate" | "test-new-experiments-package" | "basic-text-transformations" | "element-level-templates" | "add-media-from-url" | "nested-dnd" | "insert-menu-in-right-rail" | "support_table_in_comment" | "platform_editor_exp_lazy_node_views" | "platform_renderer_table_sticky_scrollbar" | "nested-expand-in-expand" | "editor_ai_-_multi_prompts" | "comment_on_bodied_extensions" | "advanced_layouts" | "support_table_in_comment_jira" | "platform_editor_ai-prompts-placeholder" | "nested-tables-in-tables" | "
|
|
48
|
+
var describe: <ExperimentName extends "example-boolean" | "example-multivariate" | "test-new-experiments-package" | "basic-text-transformations" | "element-level-templates" | "add-media-from-url" | "nested-dnd" | "insert-menu-in-right-rail" | "support_table_in_comment" | "platform_editor_exp_lazy_node_views" | "platform_renderer_table_sticky_scrollbar" | "nested-expand-in-expand" | "editor_ai_-_multi_prompts" | "comment_on_bodied_extensions" | "advanced_layouts" | "single_column_layouts" | "support_table_in_comment_jira" | "platform_editor_ai-prompts-placeholder" | "nested-tables-in-tables" | "contextual_formatting_toolbar" | "platform_editor_ai_unsplash_page_header" | "expand_selection_range_to_include_inline_node" | "platform_editor_blockquote_in_text_formatting_menu" | "platform_editor_advanced_code_blocks" | "platform_editor_element_drag_and_drop_multiselect" | "live_pages_graceful_edit" | "platform_editor_contextual_formatting_toolbar_v2" | "platform_editor_ai_edit_response_in_preview" | "platform_editor_controls" | "platform_editor_nested_non_bodied_macros" | "editor_ai_inline_suggestion_date" | "platform_editor_insertion" | "platform_editor_inline_node_virtualization" | "platform_editor_cmd_a_progressively_select_nodes" | "editor_text_highlight_orange_to_yellow">(experimentName: ExperimentName, describeName: string) => {
|
|
49
49
|
variant: (value: {
|
|
50
50
|
'example-boolean': {
|
|
51
51
|
productKeys: {
|
|
@@ -168,6 +168,14 @@ declare namespace eeTest {
|
|
|
168
168
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
169
169
|
defaultValue: boolean;
|
|
170
170
|
};
|
|
171
|
+
single_column_layouts: {
|
|
172
|
+
productKeys: {
|
|
173
|
+
confluence: string;
|
|
174
|
+
};
|
|
175
|
+
param: string;
|
|
176
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
177
|
+
defaultValue: boolean;
|
|
178
|
+
};
|
|
171
179
|
support_table_in_comment_jira: {
|
|
172
180
|
productKeys: {
|
|
173
181
|
jira: string;
|
|
@@ -192,14 +200,6 @@ declare namespace eeTest {
|
|
|
192
200
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
193
201
|
defaultValue: boolean;
|
|
194
202
|
};
|
|
195
|
-
issue_view_action_items: {
|
|
196
|
-
productKeys: {
|
|
197
|
-
jira: string;
|
|
198
|
-
};
|
|
199
|
-
param: string;
|
|
200
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
201
|
-
defaultValue: boolean;
|
|
202
|
-
};
|
|
203
203
|
contextual_formatting_toolbar: {
|
|
204
204
|
productKeys: {
|
|
205
205
|
confluence: string;
|
|
@@ -216,14 +216,6 @@ declare namespace eeTest {
|
|
|
216
216
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
217
217
|
defaultValue: boolean;
|
|
218
218
|
};
|
|
219
|
-
platform_editor_ai_advanced_prompts: {
|
|
220
|
-
productKeys: {
|
|
221
|
-
confluence: string;
|
|
222
|
-
};
|
|
223
|
-
param: string;
|
|
224
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
225
|
-
defaultValue: boolean;
|
|
226
|
-
};
|
|
227
219
|
expand_selection_range_to_include_inline_node: {
|
|
228
220
|
productKeys: {
|
|
229
221
|
confluence: string;
|
|
@@ -127,6 +127,14 @@ export declare const editorExperimentsConfig: {
|
|
|
127
127
|
typeGuard: typeof isBoolean;
|
|
128
128
|
defaultValue: boolean;
|
|
129
129
|
};
|
|
130
|
+
single_column_layouts: {
|
|
131
|
+
productKeys: {
|
|
132
|
+
confluence: string;
|
|
133
|
+
};
|
|
134
|
+
param: string;
|
|
135
|
+
typeGuard: typeof isBoolean;
|
|
136
|
+
defaultValue: boolean;
|
|
137
|
+
};
|
|
130
138
|
support_table_in_comment_jira: {
|
|
131
139
|
productKeys: {
|
|
132
140
|
jira: string;
|
|
@@ -151,14 +159,6 @@ export declare const editorExperimentsConfig: {
|
|
|
151
159
|
typeGuard: typeof isBoolean;
|
|
152
160
|
defaultValue: boolean;
|
|
153
161
|
};
|
|
154
|
-
issue_view_action_items: {
|
|
155
|
-
productKeys: {
|
|
156
|
-
jira: string;
|
|
157
|
-
};
|
|
158
|
-
param: string;
|
|
159
|
-
typeGuard: typeof isBoolean;
|
|
160
|
-
defaultValue: boolean;
|
|
161
|
-
};
|
|
162
162
|
contextual_formatting_toolbar: {
|
|
163
163
|
productKeys: {
|
|
164
164
|
confluence: string;
|
|
@@ -175,14 +175,6 @@ export declare const editorExperimentsConfig: {
|
|
|
175
175
|
typeGuard: typeof isBoolean;
|
|
176
176
|
defaultValue: boolean;
|
|
177
177
|
};
|
|
178
|
-
platform_editor_ai_advanced_prompts: {
|
|
179
|
-
productKeys: {
|
|
180
|
-
confluence: string;
|
|
181
|
-
};
|
|
182
|
-
param: string;
|
|
183
|
-
typeGuard: typeof isBoolean;
|
|
184
|
-
defaultValue: boolean;
|
|
185
|
-
};
|
|
186
178
|
expand_selection_range_to_include_inline_node: {
|
|
187
179
|
productKeys: {
|
|
188
180
|
confluence: string;
|
package/dist/types/setup.d.ts
CHANGED
|
@@ -23,13 +23,12 @@ export declare let _overrides: Partial<{
|
|
|
23
23
|
'editor_ai_-_multi_prompts': "test" | "control";
|
|
24
24
|
comment_on_bodied_extensions: boolean;
|
|
25
25
|
advanced_layouts: boolean;
|
|
26
|
+
single_column_layouts: boolean;
|
|
26
27
|
support_table_in_comment_jira: boolean;
|
|
27
28
|
'platform_editor_ai-prompts-placeholder': "test" | "control";
|
|
28
29
|
'nested-tables-in-tables': boolean;
|
|
29
|
-
issue_view_action_items: boolean;
|
|
30
30
|
contextual_formatting_toolbar: boolean;
|
|
31
31
|
platform_editor_ai_unsplash_page_header: boolean;
|
|
32
|
-
platform_editor_ai_advanced_prompts: boolean;
|
|
33
32
|
expand_selection_range_to_include_inline_node: boolean;
|
|
34
33
|
platform_editor_blockquote_in_text_formatting_menu: boolean;
|
|
35
34
|
platform_editor_advanced_code_blocks: boolean;
|
|
@@ -45,7 +45,7 @@ declare function eeTest<ExperimentName extends keyof EditorExperimentsConfig>(ex
|
|
|
45
45
|
false: DescribeBody;
|
|
46
46
|
}, otherExperiments?: EditorExperimentOverrides): void;
|
|
47
47
|
declare namespace eeTest {
|
|
48
|
-
var describe: <ExperimentName extends "example-boolean" | "example-multivariate" | "test-new-experiments-package" | "basic-text-transformations" | "element-level-templates" | "add-media-from-url" | "nested-dnd" | "insert-menu-in-right-rail" | "support_table_in_comment" | "platform_editor_exp_lazy_node_views" | "platform_renderer_table_sticky_scrollbar" | "nested-expand-in-expand" | "editor_ai_-_multi_prompts" | "comment_on_bodied_extensions" | "advanced_layouts" | "support_table_in_comment_jira" | "platform_editor_ai-prompts-placeholder" | "nested-tables-in-tables" | "
|
|
48
|
+
var describe: <ExperimentName extends "example-boolean" | "example-multivariate" | "test-new-experiments-package" | "basic-text-transformations" | "element-level-templates" | "add-media-from-url" | "nested-dnd" | "insert-menu-in-right-rail" | "support_table_in_comment" | "platform_editor_exp_lazy_node_views" | "platform_renderer_table_sticky_scrollbar" | "nested-expand-in-expand" | "editor_ai_-_multi_prompts" | "comment_on_bodied_extensions" | "advanced_layouts" | "single_column_layouts" | "support_table_in_comment_jira" | "platform_editor_ai-prompts-placeholder" | "nested-tables-in-tables" | "contextual_formatting_toolbar" | "platform_editor_ai_unsplash_page_header" | "expand_selection_range_to_include_inline_node" | "platform_editor_blockquote_in_text_formatting_menu" | "platform_editor_advanced_code_blocks" | "platform_editor_element_drag_and_drop_multiselect" | "live_pages_graceful_edit" | "platform_editor_contextual_formatting_toolbar_v2" | "platform_editor_ai_edit_response_in_preview" | "platform_editor_controls" | "platform_editor_nested_non_bodied_macros" | "editor_ai_inline_suggestion_date" | "platform_editor_insertion" | "platform_editor_inline_node_virtualization" | "platform_editor_cmd_a_progressively_select_nodes" | "editor_text_highlight_orange_to_yellow">(experimentName: ExperimentName, describeName: string) => {
|
|
49
49
|
variant: (value: {
|
|
50
50
|
'example-boolean': {
|
|
51
51
|
productKeys: {
|
|
@@ -168,6 +168,14 @@ declare namespace eeTest {
|
|
|
168
168
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
169
169
|
defaultValue: boolean;
|
|
170
170
|
};
|
|
171
|
+
single_column_layouts: {
|
|
172
|
+
productKeys: {
|
|
173
|
+
confluence: string;
|
|
174
|
+
};
|
|
175
|
+
param: string;
|
|
176
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
177
|
+
defaultValue: boolean;
|
|
178
|
+
};
|
|
171
179
|
support_table_in_comment_jira: {
|
|
172
180
|
productKeys: {
|
|
173
181
|
jira: string;
|
|
@@ -192,14 +200,6 @@ declare namespace eeTest {
|
|
|
192
200
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
193
201
|
defaultValue: boolean;
|
|
194
202
|
};
|
|
195
|
-
issue_view_action_items: {
|
|
196
|
-
productKeys: {
|
|
197
|
-
jira: string;
|
|
198
|
-
};
|
|
199
|
-
param: string;
|
|
200
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
201
|
-
defaultValue: boolean;
|
|
202
|
-
};
|
|
203
203
|
contextual_formatting_toolbar: {
|
|
204
204
|
productKeys: {
|
|
205
205
|
confluence: string;
|
|
@@ -216,14 +216,6 @@ declare namespace eeTest {
|
|
|
216
216
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
217
217
|
defaultValue: boolean;
|
|
218
218
|
};
|
|
219
|
-
platform_editor_ai_advanced_prompts: {
|
|
220
|
-
productKeys: {
|
|
221
|
-
confluence: string;
|
|
222
|
-
};
|
|
223
|
-
param: string;
|
|
224
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
225
|
-
defaultValue: boolean;
|
|
226
|
-
};
|
|
227
219
|
expand_selection_range_to_include_inline_node: {
|
|
228
220
|
productKeys: {
|
|
229
221
|
confluence: string;
|
|
@@ -127,6 +127,14 @@ export declare const editorExperimentsConfig: {
|
|
|
127
127
|
typeGuard: typeof isBoolean;
|
|
128
128
|
defaultValue: boolean;
|
|
129
129
|
};
|
|
130
|
+
single_column_layouts: {
|
|
131
|
+
productKeys: {
|
|
132
|
+
confluence: string;
|
|
133
|
+
};
|
|
134
|
+
param: string;
|
|
135
|
+
typeGuard: typeof isBoolean;
|
|
136
|
+
defaultValue: boolean;
|
|
137
|
+
};
|
|
130
138
|
support_table_in_comment_jira: {
|
|
131
139
|
productKeys: {
|
|
132
140
|
jira: string;
|
|
@@ -151,14 +159,6 @@ export declare const editorExperimentsConfig: {
|
|
|
151
159
|
typeGuard: typeof isBoolean;
|
|
152
160
|
defaultValue: boolean;
|
|
153
161
|
};
|
|
154
|
-
issue_view_action_items: {
|
|
155
|
-
productKeys: {
|
|
156
|
-
jira: string;
|
|
157
|
-
};
|
|
158
|
-
param: string;
|
|
159
|
-
typeGuard: typeof isBoolean;
|
|
160
|
-
defaultValue: boolean;
|
|
161
|
-
};
|
|
162
162
|
contextual_formatting_toolbar: {
|
|
163
163
|
productKeys: {
|
|
164
164
|
confluence: string;
|
|
@@ -175,14 +175,6 @@ export declare const editorExperimentsConfig: {
|
|
|
175
175
|
typeGuard: typeof isBoolean;
|
|
176
176
|
defaultValue: boolean;
|
|
177
177
|
};
|
|
178
|
-
platform_editor_ai_advanced_prompts: {
|
|
179
|
-
productKeys: {
|
|
180
|
-
confluence: string;
|
|
181
|
-
};
|
|
182
|
-
param: string;
|
|
183
|
-
typeGuard: typeof isBoolean;
|
|
184
|
-
defaultValue: boolean;
|
|
185
|
-
};
|
|
186
178
|
expand_selection_range_to_include_inline_node: {
|
|
187
179
|
productKeys: {
|
|
188
180
|
confluence: string;
|
|
@@ -23,13 +23,12 @@ export declare let _overrides: Partial<{
|
|
|
23
23
|
'editor_ai_-_multi_prompts': "test" | "control";
|
|
24
24
|
comment_on_bodied_extensions: boolean;
|
|
25
25
|
advanced_layouts: boolean;
|
|
26
|
+
single_column_layouts: boolean;
|
|
26
27
|
support_table_in_comment_jira: boolean;
|
|
27
28
|
'platform_editor_ai-prompts-placeholder': "test" | "control";
|
|
28
29
|
'nested-tables-in-tables': boolean;
|
|
29
|
-
issue_view_action_items: boolean;
|
|
30
30
|
contextual_formatting_toolbar: boolean;
|
|
31
31
|
platform_editor_ai_unsplash_page_header: boolean;
|
|
32
|
-
platform_editor_ai_advanced_prompts: boolean;
|
|
33
32
|
expand_selection_range_to_include_inline_node: boolean;
|
|
34
33
|
platform_editor_blockquote_in_text_formatting_menu: boolean;
|
|
35
34
|
platform_editor_advanced_code_blocks: boolean;
|
package/package.json
CHANGED