@atlaskit/tmp-editor-statsig 4.4.2 → 4.5.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 +16 -0
- package/dist/cjs/experiments-config.js +9 -19
- package/dist/es2019/experiments-config.js +9 -19
- package/dist/esm/experiments-config.js +9 -19
- 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,21 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 4.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#127912](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/127912)
|
|
8
|
+
[`d3364031ea983`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d3364031ea983) -
|
|
9
|
+
[NO-ISSUE] Cleaning up remaining pass experiments + follow ups
|
|
10
|
+
|
|
11
|
+
## 4.4.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#132261](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/132261)
|
|
16
|
+
[`a8fe96525eb2c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a8fe96525eb2c) -
|
|
17
|
+
ED-24801 Clean up platform_editor_insert_menu_in_right_rail
|
|
18
|
+
|
|
3
19
|
## 4.4.2
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -54,15 +54,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
54
54
|
typeGuard: _typeGuards.isBoolean,
|
|
55
55
|
defaultValue: false
|
|
56
56
|
},
|
|
57
|
-
// Added 2024-08-29
|
|
58
|
-
'insert-menu-in-right-rail': {
|
|
59
|
-
productKeys: {
|
|
60
|
-
confluence: 'platform_editor_insert_menu_in_right_rail'
|
|
61
|
-
},
|
|
62
|
-
param: 'isEnabled',
|
|
63
|
-
typeGuard: _typeGuards.isBoolean,
|
|
64
|
-
defaultValue: false
|
|
65
|
-
},
|
|
66
57
|
// Added 2024-09-05
|
|
67
58
|
support_table_in_comment: {
|
|
68
59
|
productKeys: {
|
|
@@ -100,16 +91,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
100
91
|
typeGuard: _typeGuards.isBoolean,
|
|
101
92
|
defaultValue: false
|
|
102
93
|
},
|
|
103
|
-
// Added 2024-09-23
|
|
104
|
-
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/editor_ai_-_multi_prompts/setup
|
|
105
|
-
'editor_ai_-_multi_prompts': {
|
|
106
|
-
productKeys: {
|
|
107
|
-
confluence: 'editor_ai_-_multi_prompts'
|
|
108
|
-
},
|
|
109
|
-
param: 'cohort',
|
|
110
|
-
typeGuard: (0, _typeGuards.oneOf)(['control', 'test']),
|
|
111
|
-
defaultValue: 'control'
|
|
112
|
-
},
|
|
113
94
|
// Added 2024-10-01
|
|
114
95
|
comment_on_bodied_extensions: {
|
|
115
96
|
productKeys: {
|
|
@@ -291,5 +272,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
291
272
|
param: 'cohort',
|
|
292
273
|
typeGuard: (0, _typeGuards.oneOf)(['control', 'test']),
|
|
293
274
|
defaultValue: 'control'
|
|
275
|
+
},
|
|
276
|
+
// Added 2025-03-26
|
|
277
|
+
platform_editor_markdown_next_media_plugin_exp: {
|
|
278
|
+
productKeys: {
|
|
279
|
+
confluence: 'platform_editor_markdown_next_media_plugin_exp'
|
|
280
|
+
},
|
|
281
|
+
param: 'isEnabled',
|
|
282
|
+
typeGuard: _typeGuards.isBoolean,
|
|
283
|
+
defaultValue: false
|
|
294
284
|
}
|
|
295
285
|
};
|
|
@@ -48,15 +48,6 @@ export const editorExperimentsConfig = {
|
|
|
48
48
|
typeGuard: isBoolean,
|
|
49
49
|
defaultValue: false
|
|
50
50
|
},
|
|
51
|
-
// Added 2024-08-29
|
|
52
|
-
'insert-menu-in-right-rail': {
|
|
53
|
-
productKeys: {
|
|
54
|
-
confluence: 'platform_editor_insert_menu_in_right_rail'
|
|
55
|
-
},
|
|
56
|
-
param: 'isEnabled',
|
|
57
|
-
typeGuard: isBoolean,
|
|
58
|
-
defaultValue: false
|
|
59
|
-
},
|
|
60
51
|
// Added 2024-09-05
|
|
61
52
|
support_table_in_comment: {
|
|
62
53
|
productKeys: {
|
|
@@ -94,16 +85,6 @@ export const editorExperimentsConfig = {
|
|
|
94
85
|
typeGuard: isBoolean,
|
|
95
86
|
defaultValue: false
|
|
96
87
|
},
|
|
97
|
-
// Added 2024-09-23
|
|
98
|
-
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/editor_ai_-_multi_prompts/setup
|
|
99
|
-
'editor_ai_-_multi_prompts': {
|
|
100
|
-
productKeys: {
|
|
101
|
-
confluence: 'editor_ai_-_multi_prompts'
|
|
102
|
-
},
|
|
103
|
-
param: 'cohort',
|
|
104
|
-
typeGuard: oneOf(['control', 'test']),
|
|
105
|
-
defaultValue: 'control'
|
|
106
|
-
},
|
|
107
88
|
// Added 2024-10-01
|
|
108
89
|
comment_on_bodied_extensions: {
|
|
109
90
|
productKeys: {
|
|
@@ -285,5 +266,14 @@ export const editorExperimentsConfig = {
|
|
|
285
266
|
param: 'cohort',
|
|
286
267
|
typeGuard: oneOf(['control', 'test']),
|
|
287
268
|
defaultValue: 'control'
|
|
269
|
+
},
|
|
270
|
+
// Added 2025-03-26
|
|
271
|
+
platform_editor_markdown_next_media_plugin_exp: {
|
|
272
|
+
productKeys: {
|
|
273
|
+
confluence: 'platform_editor_markdown_next_media_plugin_exp'
|
|
274
|
+
},
|
|
275
|
+
param: 'isEnabled',
|
|
276
|
+
typeGuard: isBoolean,
|
|
277
|
+
defaultValue: false
|
|
288
278
|
}
|
|
289
279
|
};
|
|
@@ -48,15 +48,6 @@ export var editorExperimentsConfig = {
|
|
|
48
48
|
typeGuard: isBoolean,
|
|
49
49
|
defaultValue: false
|
|
50
50
|
},
|
|
51
|
-
// Added 2024-08-29
|
|
52
|
-
'insert-menu-in-right-rail': {
|
|
53
|
-
productKeys: {
|
|
54
|
-
confluence: 'platform_editor_insert_menu_in_right_rail'
|
|
55
|
-
},
|
|
56
|
-
param: 'isEnabled',
|
|
57
|
-
typeGuard: isBoolean,
|
|
58
|
-
defaultValue: false
|
|
59
|
-
},
|
|
60
51
|
// Added 2024-09-05
|
|
61
52
|
support_table_in_comment: {
|
|
62
53
|
productKeys: {
|
|
@@ -94,16 +85,6 @@ export var editorExperimentsConfig = {
|
|
|
94
85
|
typeGuard: isBoolean,
|
|
95
86
|
defaultValue: false
|
|
96
87
|
},
|
|
97
|
-
// Added 2024-09-23
|
|
98
|
-
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/editor_ai_-_multi_prompts/setup
|
|
99
|
-
'editor_ai_-_multi_prompts': {
|
|
100
|
-
productKeys: {
|
|
101
|
-
confluence: 'editor_ai_-_multi_prompts'
|
|
102
|
-
},
|
|
103
|
-
param: 'cohort',
|
|
104
|
-
typeGuard: oneOf(['control', 'test']),
|
|
105
|
-
defaultValue: 'control'
|
|
106
|
-
},
|
|
107
88
|
// Added 2024-10-01
|
|
108
89
|
comment_on_bodied_extensions: {
|
|
109
90
|
productKeys: {
|
|
@@ -285,5 +266,14 @@ export var editorExperimentsConfig = {
|
|
|
285
266
|
param: 'cohort',
|
|
286
267
|
typeGuard: oneOf(['control', 'test']),
|
|
287
268
|
defaultValue: 'control'
|
|
269
|
+
},
|
|
270
|
+
// Added 2025-03-26
|
|
271
|
+
platform_editor_markdown_next_media_plugin_exp: {
|
|
272
|
+
productKeys: {
|
|
273
|
+
confluence: 'platform_editor_markdown_next_media_plugin_exp'
|
|
274
|
+
},
|
|
275
|
+
param: 'isEnabled',
|
|
276
|
+
typeGuard: isBoolean,
|
|
277
|
+
defaultValue: false
|
|
288
278
|
}
|
|
289
279
|
};
|
|
@@ -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" | "nested-dnd" | "
|
|
48
|
+
var describe: <ExperimentName extends "example-boolean" | "example-multivariate" | "test-new-experiments-package" | "nested-dnd" | "support_table_in_comment" | "platform_editor_exp_lazy_node_views" | "platform_renderer_table_sticky_scrollbar" | "nested-expand-in-expand" | "comment_on_bodied_extensions" | "advanced_layouts" | "single_column_layouts" | "support_table_in_comment_jira" | "platform_editor_ai-prompts-placeholder" | "nested-tables-in-tables" | "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_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" | "platform_editor_markdown_next_media_plugin_exp">(experimentName: ExperimentName, describeName: string) => {
|
|
49
49
|
variant: (value: {
|
|
50
50
|
'example-boolean': {
|
|
51
51
|
productKeys: {
|
|
@@ -80,14 +80,6 @@ declare namespace eeTest {
|
|
|
80
80
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
81
81
|
defaultValue: boolean;
|
|
82
82
|
};
|
|
83
|
-
'insert-menu-in-right-rail': {
|
|
84
|
-
productKeys: {
|
|
85
|
-
confluence: string;
|
|
86
|
-
};
|
|
87
|
-
param: string;
|
|
88
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
89
|
-
defaultValue: boolean;
|
|
90
|
-
};
|
|
91
83
|
support_table_in_comment: {
|
|
92
84
|
productKeys: {
|
|
93
85
|
confluence: string;
|
|
@@ -120,14 +112,6 @@ declare namespace eeTest {
|
|
|
120
112
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
121
113
|
defaultValue: boolean;
|
|
122
114
|
};
|
|
123
|
-
'editor_ai_-_multi_prompts': {
|
|
124
|
-
productKeys: {
|
|
125
|
-
confluence: string;
|
|
126
|
-
};
|
|
127
|
-
param: string;
|
|
128
|
-
typeGuard: (value: unknown) => value is "test" | "control";
|
|
129
|
-
defaultValue: "test" | "control";
|
|
130
|
-
};
|
|
131
115
|
comment_on_bodied_extensions: {
|
|
132
116
|
productKeys: {
|
|
133
117
|
confluence: string;
|
|
@@ -288,6 +272,14 @@ declare namespace eeTest {
|
|
|
288
272
|
typeGuard: (value: unknown) => value is "test" | "control";
|
|
289
273
|
defaultValue: "test" | "control";
|
|
290
274
|
};
|
|
275
|
+
platform_editor_markdown_next_media_plugin_exp: {
|
|
276
|
+
productKeys: {
|
|
277
|
+
confluence: string;
|
|
278
|
+
};
|
|
279
|
+
param: string;
|
|
280
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
281
|
+
defaultValue: boolean;
|
|
282
|
+
};
|
|
291
283
|
}[ExperimentName]["defaultValue"], describeBody: jest.EmptyFunction) => void;
|
|
292
284
|
each: (describeBody: jest.EmptyFunction) => void;
|
|
293
285
|
};
|
|
@@ -39,14 +39,6 @@ export declare const editorExperimentsConfig: {
|
|
|
39
39
|
typeGuard: typeof isBoolean;
|
|
40
40
|
defaultValue: boolean;
|
|
41
41
|
};
|
|
42
|
-
'insert-menu-in-right-rail': {
|
|
43
|
-
productKeys: {
|
|
44
|
-
confluence: string;
|
|
45
|
-
};
|
|
46
|
-
param: string;
|
|
47
|
-
typeGuard: typeof isBoolean;
|
|
48
|
-
defaultValue: boolean;
|
|
49
|
-
};
|
|
50
42
|
support_table_in_comment: {
|
|
51
43
|
productKeys: {
|
|
52
44
|
confluence: string;
|
|
@@ -79,14 +71,6 @@ export declare const editorExperimentsConfig: {
|
|
|
79
71
|
typeGuard: typeof isBoolean;
|
|
80
72
|
defaultValue: boolean;
|
|
81
73
|
};
|
|
82
|
-
'editor_ai_-_multi_prompts': {
|
|
83
|
-
productKeys: {
|
|
84
|
-
confluence: string;
|
|
85
|
-
};
|
|
86
|
-
param: string;
|
|
87
|
-
typeGuard: (value: unknown) => value is "test" | "control";
|
|
88
|
-
defaultValue: "test" | "control";
|
|
89
|
-
};
|
|
90
74
|
comment_on_bodied_extensions: {
|
|
91
75
|
productKeys: {
|
|
92
76
|
confluence: string;
|
|
@@ -247,4 +231,12 @@ export declare const editorExperimentsConfig: {
|
|
|
247
231
|
typeGuard: (value: unknown) => value is "test" | "control";
|
|
248
232
|
defaultValue: "test" | "control";
|
|
249
233
|
};
|
|
234
|
+
platform_editor_markdown_next_media_plugin_exp: {
|
|
235
|
+
productKeys: {
|
|
236
|
+
confluence: string;
|
|
237
|
+
};
|
|
238
|
+
param: string;
|
|
239
|
+
typeGuard: typeof isBoolean;
|
|
240
|
+
defaultValue: boolean;
|
|
241
|
+
};
|
|
250
242
|
};
|
package/dist/types/setup.d.ts
CHANGED
|
@@ -12,12 +12,10 @@ export declare let _overrides: Partial<{
|
|
|
12
12
|
'example-multivariate': "one" | "two" | "three";
|
|
13
13
|
'test-new-experiments-package': boolean;
|
|
14
14
|
'nested-dnd': boolean;
|
|
15
|
-
'insert-menu-in-right-rail': boolean;
|
|
16
15
|
support_table_in_comment: boolean;
|
|
17
16
|
platform_editor_exp_lazy_node_views: boolean;
|
|
18
17
|
platform_renderer_table_sticky_scrollbar: boolean;
|
|
19
18
|
'nested-expand-in-expand': boolean;
|
|
20
|
-
'editor_ai_-_multi_prompts': "test" | "control";
|
|
21
19
|
comment_on_bodied_extensions: boolean;
|
|
22
20
|
advanced_layouts: boolean;
|
|
23
21
|
single_column_layouts: boolean;
|
|
@@ -38,6 +36,7 @@ export declare let _overrides: Partial<{
|
|
|
38
36
|
platform_editor_inline_node_virtualization: "off" | "fallback-small" | "fallback-large";
|
|
39
37
|
platform_editor_cmd_a_progressively_select_nodes: boolean;
|
|
40
38
|
editor_text_highlight_orange_to_yellow: "test" | "control";
|
|
39
|
+
platform_editor_markdown_next_media_plugin_exp: boolean;
|
|
41
40
|
}>;
|
|
42
41
|
export declare let _paramOverrides: EditorExperimentParamOverrides;
|
|
43
42
|
export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
|
|
@@ -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" | "nested-dnd" | "
|
|
48
|
+
var describe: <ExperimentName extends "example-boolean" | "example-multivariate" | "test-new-experiments-package" | "nested-dnd" | "support_table_in_comment" | "platform_editor_exp_lazy_node_views" | "platform_renderer_table_sticky_scrollbar" | "nested-expand-in-expand" | "comment_on_bodied_extensions" | "advanced_layouts" | "single_column_layouts" | "support_table_in_comment_jira" | "platform_editor_ai-prompts-placeholder" | "nested-tables-in-tables" | "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_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" | "platform_editor_markdown_next_media_plugin_exp">(experimentName: ExperimentName, describeName: string) => {
|
|
49
49
|
variant: (value: {
|
|
50
50
|
'example-boolean': {
|
|
51
51
|
productKeys: {
|
|
@@ -80,14 +80,6 @@ declare namespace eeTest {
|
|
|
80
80
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
81
81
|
defaultValue: boolean;
|
|
82
82
|
};
|
|
83
|
-
'insert-menu-in-right-rail': {
|
|
84
|
-
productKeys: {
|
|
85
|
-
confluence: string;
|
|
86
|
-
};
|
|
87
|
-
param: string;
|
|
88
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
89
|
-
defaultValue: boolean;
|
|
90
|
-
};
|
|
91
83
|
support_table_in_comment: {
|
|
92
84
|
productKeys: {
|
|
93
85
|
confluence: string;
|
|
@@ -120,14 +112,6 @@ declare namespace eeTest {
|
|
|
120
112
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
121
113
|
defaultValue: boolean;
|
|
122
114
|
};
|
|
123
|
-
'editor_ai_-_multi_prompts': {
|
|
124
|
-
productKeys: {
|
|
125
|
-
confluence: string;
|
|
126
|
-
};
|
|
127
|
-
param: string;
|
|
128
|
-
typeGuard: (value: unknown) => value is "test" | "control";
|
|
129
|
-
defaultValue: "test" | "control";
|
|
130
|
-
};
|
|
131
115
|
comment_on_bodied_extensions: {
|
|
132
116
|
productKeys: {
|
|
133
117
|
confluence: string;
|
|
@@ -288,6 +272,14 @@ declare namespace eeTest {
|
|
|
288
272
|
typeGuard: (value: unknown) => value is "test" | "control";
|
|
289
273
|
defaultValue: "test" | "control";
|
|
290
274
|
};
|
|
275
|
+
platform_editor_markdown_next_media_plugin_exp: {
|
|
276
|
+
productKeys: {
|
|
277
|
+
confluence: string;
|
|
278
|
+
};
|
|
279
|
+
param: string;
|
|
280
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
281
|
+
defaultValue: boolean;
|
|
282
|
+
};
|
|
291
283
|
}[ExperimentName]["defaultValue"], describeBody: jest.EmptyFunction) => void;
|
|
292
284
|
each: (describeBody: jest.EmptyFunction) => void;
|
|
293
285
|
};
|
|
@@ -39,14 +39,6 @@ export declare const editorExperimentsConfig: {
|
|
|
39
39
|
typeGuard: typeof isBoolean;
|
|
40
40
|
defaultValue: boolean;
|
|
41
41
|
};
|
|
42
|
-
'insert-menu-in-right-rail': {
|
|
43
|
-
productKeys: {
|
|
44
|
-
confluence: string;
|
|
45
|
-
};
|
|
46
|
-
param: string;
|
|
47
|
-
typeGuard: typeof isBoolean;
|
|
48
|
-
defaultValue: boolean;
|
|
49
|
-
};
|
|
50
42
|
support_table_in_comment: {
|
|
51
43
|
productKeys: {
|
|
52
44
|
confluence: string;
|
|
@@ -79,14 +71,6 @@ export declare const editorExperimentsConfig: {
|
|
|
79
71
|
typeGuard: typeof isBoolean;
|
|
80
72
|
defaultValue: boolean;
|
|
81
73
|
};
|
|
82
|
-
'editor_ai_-_multi_prompts': {
|
|
83
|
-
productKeys: {
|
|
84
|
-
confluence: string;
|
|
85
|
-
};
|
|
86
|
-
param: string;
|
|
87
|
-
typeGuard: (value: unknown) => value is "test" | "control";
|
|
88
|
-
defaultValue: "test" | "control";
|
|
89
|
-
};
|
|
90
74
|
comment_on_bodied_extensions: {
|
|
91
75
|
productKeys: {
|
|
92
76
|
confluence: string;
|
|
@@ -247,4 +231,12 @@ export declare const editorExperimentsConfig: {
|
|
|
247
231
|
typeGuard: (value: unknown) => value is "test" | "control";
|
|
248
232
|
defaultValue: "test" | "control";
|
|
249
233
|
};
|
|
234
|
+
platform_editor_markdown_next_media_plugin_exp: {
|
|
235
|
+
productKeys: {
|
|
236
|
+
confluence: string;
|
|
237
|
+
};
|
|
238
|
+
param: string;
|
|
239
|
+
typeGuard: typeof isBoolean;
|
|
240
|
+
defaultValue: boolean;
|
|
241
|
+
};
|
|
250
242
|
};
|
|
@@ -12,12 +12,10 @@ export declare let _overrides: Partial<{
|
|
|
12
12
|
'example-multivariate': "one" | "two" | "three";
|
|
13
13
|
'test-new-experiments-package': boolean;
|
|
14
14
|
'nested-dnd': boolean;
|
|
15
|
-
'insert-menu-in-right-rail': boolean;
|
|
16
15
|
support_table_in_comment: boolean;
|
|
17
16
|
platform_editor_exp_lazy_node_views: boolean;
|
|
18
17
|
platform_renderer_table_sticky_scrollbar: boolean;
|
|
19
18
|
'nested-expand-in-expand': boolean;
|
|
20
|
-
'editor_ai_-_multi_prompts': "test" | "control";
|
|
21
19
|
comment_on_bodied_extensions: boolean;
|
|
22
20
|
advanced_layouts: boolean;
|
|
23
21
|
single_column_layouts: boolean;
|
|
@@ -38,6 +36,7 @@ export declare let _overrides: Partial<{
|
|
|
38
36
|
platform_editor_inline_node_virtualization: "off" | "fallback-small" | "fallback-large";
|
|
39
37
|
platform_editor_cmd_a_progressively_select_nodes: boolean;
|
|
40
38
|
editor_text_highlight_orange_to_yellow: "test" | "control";
|
|
39
|
+
platform_editor_markdown_next_media_plugin_exp: boolean;
|
|
41
40
|
}>;
|
|
42
41
|
export declare let _paramOverrides: EditorExperimentParamOverrides;
|
|
43
42
|
export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
|
package/package.json
CHANGED