@atlaskit/tmp-editor-statsig 2.27.1 → 2.29.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 +17 -0
- package/dist/cjs/experiments-config.js +9 -9
- package/dist/es2019/experiments-config.js +9 -9
- package/dist/esm/experiments-config.js +9 -9
- package/dist/types/editor-experiments-test-utils.d.ts +9 -9
- package/dist/types/experiments-config.d.ts +8 -8
- package/dist/types/setup.d.ts +1 -1
- package/dist/types-ts4.5/editor-experiments-test-utils.d.ts +9 -9
- package/dist/types-ts4.5/experiments-config.d.ts +8 -8
- package/dist/types-ts4.5/setup.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 2.29.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#180231](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/180231)
|
|
8
|
+
[`4dbcc3d03b632`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4dbcc3d03b632) -
|
|
9
|
+
[https://product-fabric.atlassian.net/browse/EDF-1844](EDF-1844) - cleanup
|
|
10
|
+
platform_editor_ai_facepile Statsig experiment
|
|
11
|
+
|
|
12
|
+
## 2.28.0
|
|
13
|
+
|
|
14
|
+
### Minor Changes
|
|
15
|
+
|
|
16
|
+
- [#180067](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/180067)
|
|
17
|
+
[`fdee6c449ca83`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fdee6c449ca83) -
|
|
18
|
+
[ux] Adding block quote as an option to the text formatting menu for full page editors
|
|
19
|
+
|
|
3
20
|
## 2.27.1
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -265,15 +265,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
265
265
|
typeGuard: (0, _typeGuards.oneOf)(['control', 'einstein']),
|
|
266
266
|
defaultValue: 'control'
|
|
267
267
|
},
|
|
268
|
-
// Added 2024-11-06
|
|
269
|
-
platform_editor_ai_facepile: {
|
|
270
|
-
productKeys: {
|
|
271
|
-
confluence: 'platform_editor_ai_facepile'
|
|
272
|
-
},
|
|
273
|
-
param: 'isEnabled',
|
|
274
|
-
typeGuard: _typeGuards.isBoolean,
|
|
275
|
-
defaultValue: false
|
|
276
|
-
},
|
|
277
268
|
// added 2024-11-06
|
|
278
269
|
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_nested_tables/setup
|
|
279
270
|
'nested-tables-in-tables': {
|
|
@@ -373,5 +364,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
373
364
|
param: 'isEnabled',
|
|
374
365
|
typeGuard: _typeGuards.isBoolean,
|
|
375
366
|
defaultValue: false
|
|
367
|
+
},
|
|
368
|
+
// Added 2024-12-05
|
|
369
|
+
platform_editor_blockquote_in_text_formatting_menu: {
|
|
370
|
+
productKeys: {
|
|
371
|
+
confluence: 'platform_editor_blockquote_in_text_formatting_menu'
|
|
372
|
+
},
|
|
373
|
+
param: 'isEnabled',
|
|
374
|
+
typeGuard: _typeGuards.isBoolean,
|
|
375
|
+
defaultValue: false
|
|
376
376
|
}
|
|
377
377
|
};
|
|
@@ -259,15 +259,6 @@ export const editorExperimentsConfig = {
|
|
|
259
259
|
typeGuard: oneOf(['control', 'einstein']),
|
|
260
260
|
defaultValue: 'control'
|
|
261
261
|
},
|
|
262
|
-
// Added 2024-11-06
|
|
263
|
-
platform_editor_ai_facepile: {
|
|
264
|
-
productKeys: {
|
|
265
|
-
confluence: 'platform_editor_ai_facepile'
|
|
266
|
-
},
|
|
267
|
-
param: 'isEnabled',
|
|
268
|
-
typeGuard: isBoolean,
|
|
269
|
-
defaultValue: false
|
|
270
|
-
},
|
|
271
262
|
// added 2024-11-06
|
|
272
263
|
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_nested_tables/setup
|
|
273
264
|
'nested-tables-in-tables': {
|
|
@@ -367,5 +358,14 @@ export const editorExperimentsConfig = {
|
|
|
367
358
|
param: 'isEnabled',
|
|
368
359
|
typeGuard: isBoolean,
|
|
369
360
|
defaultValue: false
|
|
361
|
+
},
|
|
362
|
+
// Added 2024-12-05
|
|
363
|
+
platform_editor_blockquote_in_text_formatting_menu: {
|
|
364
|
+
productKeys: {
|
|
365
|
+
confluence: 'platform_editor_blockquote_in_text_formatting_menu'
|
|
366
|
+
},
|
|
367
|
+
param: 'isEnabled',
|
|
368
|
+
typeGuard: isBoolean,
|
|
369
|
+
defaultValue: false
|
|
370
370
|
}
|
|
371
371
|
};
|
|
@@ -259,15 +259,6 @@ export var editorExperimentsConfig = {
|
|
|
259
259
|
typeGuard: oneOf(['control', 'einstein']),
|
|
260
260
|
defaultValue: 'control'
|
|
261
261
|
},
|
|
262
|
-
// Added 2024-11-06
|
|
263
|
-
platform_editor_ai_facepile: {
|
|
264
|
-
productKeys: {
|
|
265
|
-
confluence: 'platform_editor_ai_facepile'
|
|
266
|
-
},
|
|
267
|
-
param: 'isEnabled',
|
|
268
|
-
typeGuard: isBoolean,
|
|
269
|
-
defaultValue: false
|
|
270
|
-
},
|
|
271
262
|
// added 2024-11-06
|
|
272
263
|
// https://console.statsig.com/LqivKg6ADZZaGczRfBKfX/experiments/platform_editor_nested_tables/setup
|
|
273
264
|
'nested-tables-in-tables': {
|
|
@@ -367,5 +358,14 @@ export var editorExperimentsConfig = {
|
|
|
367
358
|
param: 'isEnabled',
|
|
368
359
|
typeGuard: isBoolean,
|
|
369
360
|
defaultValue: false
|
|
361
|
+
},
|
|
362
|
+
// Added 2024-12-05
|
|
363
|
+
platform_editor_blockquote_in_text_formatting_menu: {
|
|
364
|
+
productKeys: {
|
|
365
|
+
confluence: 'platform_editor_blockquote_in_text_formatting_menu'
|
|
366
|
+
},
|
|
367
|
+
param: 'isEnabled',
|
|
368
|
+
typeGuard: isBoolean,
|
|
369
|
+
defaultValue: false
|
|
370
370
|
}
|
|
371
371
|
};
|
|
@@ -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" | "dnd-input-performance-optimisation" | "element-level-templates" | "add-media-from-url" | "nested-dnd" | "table-nested-dnd" | "insert-menu-in-right-rail" | "support_table_in_comment" | "platform_editor_exp_lazy_node_views" | "platform_editor_ai_ai_button_block_elements" | "platform_renderer_table_sticky_scrollbar" | "nest-media-and-codeblock-in-quote" | "nested-expand-in-expand" | "platform_editor_table_use_shared_state_hook" | "editor_ai_-_multi_prompts" | "comment_on_bodied_extensions" | "advanced_layouts" | "support_table_in_comment_jira" | "comment_on_inline_node_spotlight" | "editor_ai_-_proactive_ai_model_variations" | "platform_editor_ai_refine_response_button" | "platform_editor_ai_prompt_link_picker" | "platform_editor_ai-prompts-placeholder" | "editor_ai_-_gpt4_experiment" | "
|
|
48
|
+
var describe: <ExperimentName extends "example-boolean" | "example-multivariate" | "test-new-experiments-package" | "basic-text-transformations" | "dnd-input-performance-optimisation" | "element-level-templates" | "add-media-from-url" | "nested-dnd" | "table-nested-dnd" | "insert-menu-in-right-rail" | "support_table_in_comment" | "platform_editor_exp_lazy_node_views" | "platform_editor_ai_ai_button_block_elements" | "platform_renderer_table_sticky_scrollbar" | "nest-media-and-codeblock-in-quote" | "nested-expand-in-expand" | "platform_editor_table_use_shared_state_hook" | "editor_ai_-_multi_prompts" | "comment_on_bodied_extensions" | "advanced_layouts" | "support_table_in_comment_jira" | "comment_on_inline_node_spotlight" | "editor_ai_-_proactive_ai_model_variations" | "platform_editor_ai_refine_response_button" | "platform_editor_ai_prompt_link_picker" | "platform_editor_ai-prompts-placeholder" | "editor_ai_-_gpt4_experiment" | "nested-tables-in-tables" | "platform_editor_ai_mentions_support" | "platform_editor_ai_change_tone_floating_toolbar" | "platform_editor_ai_response_history" | "issue_view_action_items" | "contextual_formatting_toolbar" | "platform_editor_ai_1p_smart_link_unfurl_in_prompt" | "platform_editor_ai_draft_with_ai" | "platform_editor_ai_unsplash_page_header" | "expand_selection_range_to_include_inline_node" | "platform_editor_ai_knowledge_from_current_page" | "platform_editor_blockquote_in_text_formatting_menu">(experimentName: ExperimentName, describeName: string) => {
|
|
49
49
|
variant: (value: {
|
|
50
50
|
'example-boolean': {
|
|
51
51
|
productKeys: {
|
|
@@ -264,14 +264,6 @@ declare namespace eeTest {
|
|
|
264
264
|
typeGuard: (value: unknown) => value is "control" | "einstein";
|
|
265
265
|
defaultValue: "control" | "einstein";
|
|
266
266
|
};
|
|
267
|
-
platform_editor_ai_facepile: {
|
|
268
|
-
productKeys: {
|
|
269
|
-
confluence: string;
|
|
270
|
-
};
|
|
271
|
-
param: string;
|
|
272
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
273
|
-
defaultValue: boolean;
|
|
274
|
-
};
|
|
275
267
|
'nested-tables-in-tables': {
|
|
276
268
|
productKeys: {
|
|
277
269
|
confluence: string;
|
|
@@ -360,6 +352,14 @@ declare namespace eeTest {
|
|
|
360
352
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
361
353
|
defaultValue: boolean;
|
|
362
354
|
};
|
|
355
|
+
platform_editor_blockquote_in_text_formatting_menu: {
|
|
356
|
+
productKeys: {
|
|
357
|
+
confluence: string;
|
|
358
|
+
};
|
|
359
|
+
param: string;
|
|
360
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
361
|
+
defaultValue: boolean;
|
|
362
|
+
};
|
|
363
363
|
}[ExperimentName]["defaultValue"], describeBody: jest.EmptyFunction) => void;
|
|
364
364
|
each: (describeBody: jest.EmptyFunction) => void;
|
|
365
365
|
};
|
|
@@ -223,14 +223,6 @@ export declare const editorExperimentsConfig: {
|
|
|
223
223
|
typeGuard: (value: unknown) => value is "control" | "einstein";
|
|
224
224
|
defaultValue: "control" | "einstein";
|
|
225
225
|
};
|
|
226
|
-
platform_editor_ai_facepile: {
|
|
227
|
-
productKeys: {
|
|
228
|
-
confluence: string;
|
|
229
|
-
};
|
|
230
|
-
param: string;
|
|
231
|
-
typeGuard: typeof isBoolean;
|
|
232
|
-
defaultValue: boolean;
|
|
233
|
-
};
|
|
234
226
|
'nested-tables-in-tables': {
|
|
235
227
|
productKeys: {
|
|
236
228
|
confluence: string;
|
|
@@ -319,4 +311,12 @@ export declare const editorExperimentsConfig: {
|
|
|
319
311
|
typeGuard: typeof isBoolean;
|
|
320
312
|
defaultValue: boolean;
|
|
321
313
|
};
|
|
314
|
+
platform_editor_blockquote_in_text_formatting_menu: {
|
|
315
|
+
productKeys: {
|
|
316
|
+
confluence: string;
|
|
317
|
+
};
|
|
318
|
+
param: string;
|
|
319
|
+
typeGuard: typeof isBoolean;
|
|
320
|
+
defaultValue: boolean;
|
|
321
|
+
};
|
|
322
322
|
};
|
package/dist/types/setup.d.ts
CHANGED
|
@@ -30,7 +30,6 @@ export declare let _overrides: Partial<{
|
|
|
30
30
|
platform_editor_ai_prompt_link_picker: boolean;
|
|
31
31
|
'platform_editor_ai-prompts-placeholder': "test" | "control";
|
|
32
32
|
'editor_ai_-_gpt4_experiment': "control" | "einstein";
|
|
33
|
-
platform_editor_ai_facepile: boolean;
|
|
34
33
|
'nested-tables-in-tables': boolean;
|
|
35
34
|
platform_editor_ai_mentions_support: boolean;
|
|
36
35
|
platform_editor_ai_change_tone_floating_toolbar: boolean;
|
|
@@ -42,6 +41,7 @@ export declare let _overrides: Partial<{
|
|
|
42
41
|
platform_editor_ai_unsplash_page_header: boolean;
|
|
43
42
|
expand_selection_range_to_include_inline_node: boolean;
|
|
44
43
|
platform_editor_ai_knowledge_from_current_page: boolean;
|
|
44
|
+
platform_editor_blockquote_in_text_formatting_menu: boolean;
|
|
45
45
|
}>;
|
|
46
46
|
export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
|
|
47
47
|
/**
|
|
@@ -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" | "dnd-input-performance-optimisation" | "element-level-templates" | "add-media-from-url" | "nested-dnd" | "table-nested-dnd" | "insert-menu-in-right-rail" | "support_table_in_comment" | "platform_editor_exp_lazy_node_views" | "platform_editor_ai_ai_button_block_elements" | "platform_renderer_table_sticky_scrollbar" | "nest-media-and-codeblock-in-quote" | "nested-expand-in-expand" | "platform_editor_table_use_shared_state_hook" | "editor_ai_-_multi_prompts" | "comment_on_bodied_extensions" | "advanced_layouts" | "support_table_in_comment_jira" | "comment_on_inline_node_spotlight" | "editor_ai_-_proactive_ai_model_variations" | "platform_editor_ai_refine_response_button" | "platform_editor_ai_prompt_link_picker" | "platform_editor_ai-prompts-placeholder" | "editor_ai_-_gpt4_experiment" | "
|
|
48
|
+
var describe: <ExperimentName extends "example-boolean" | "example-multivariate" | "test-new-experiments-package" | "basic-text-transformations" | "dnd-input-performance-optimisation" | "element-level-templates" | "add-media-from-url" | "nested-dnd" | "table-nested-dnd" | "insert-menu-in-right-rail" | "support_table_in_comment" | "platform_editor_exp_lazy_node_views" | "platform_editor_ai_ai_button_block_elements" | "platform_renderer_table_sticky_scrollbar" | "nest-media-and-codeblock-in-quote" | "nested-expand-in-expand" | "platform_editor_table_use_shared_state_hook" | "editor_ai_-_multi_prompts" | "comment_on_bodied_extensions" | "advanced_layouts" | "support_table_in_comment_jira" | "comment_on_inline_node_spotlight" | "editor_ai_-_proactive_ai_model_variations" | "platform_editor_ai_refine_response_button" | "platform_editor_ai_prompt_link_picker" | "platform_editor_ai-prompts-placeholder" | "editor_ai_-_gpt4_experiment" | "nested-tables-in-tables" | "platform_editor_ai_mentions_support" | "platform_editor_ai_change_tone_floating_toolbar" | "platform_editor_ai_response_history" | "issue_view_action_items" | "contextual_formatting_toolbar" | "platform_editor_ai_1p_smart_link_unfurl_in_prompt" | "platform_editor_ai_draft_with_ai" | "platform_editor_ai_unsplash_page_header" | "expand_selection_range_to_include_inline_node" | "platform_editor_ai_knowledge_from_current_page" | "platform_editor_blockquote_in_text_formatting_menu">(experimentName: ExperimentName, describeName: string) => {
|
|
49
49
|
variant: (value: {
|
|
50
50
|
'example-boolean': {
|
|
51
51
|
productKeys: {
|
|
@@ -264,14 +264,6 @@ declare namespace eeTest {
|
|
|
264
264
|
typeGuard: (value: unknown) => value is "control" | "einstein";
|
|
265
265
|
defaultValue: "control" | "einstein";
|
|
266
266
|
};
|
|
267
|
-
platform_editor_ai_facepile: {
|
|
268
|
-
productKeys: {
|
|
269
|
-
confluence: string;
|
|
270
|
-
};
|
|
271
|
-
param: string;
|
|
272
|
-
typeGuard: typeof import("./type-guards").isBoolean;
|
|
273
|
-
defaultValue: boolean;
|
|
274
|
-
};
|
|
275
267
|
'nested-tables-in-tables': {
|
|
276
268
|
productKeys: {
|
|
277
269
|
confluence: string;
|
|
@@ -360,6 +352,14 @@ declare namespace eeTest {
|
|
|
360
352
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
361
353
|
defaultValue: boolean;
|
|
362
354
|
};
|
|
355
|
+
platform_editor_blockquote_in_text_formatting_menu: {
|
|
356
|
+
productKeys: {
|
|
357
|
+
confluence: string;
|
|
358
|
+
};
|
|
359
|
+
param: string;
|
|
360
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
361
|
+
defaultValue: boolean;
|
|
362
|
+
};
|
|
363
363
|
}[ExperimentName]["defaultValue"], describeBody: jest.EmptyFunction) => void;
|
|
364
364
|
each: (describeBody: jest.EmptyFunction) => void;
|
|
365
365
|
};
|
|
@@ -223,14 +223,6 @@ export declare const editorExperimentsConfig: {
|
|
|
223
223
|
typeGuard: (value: unknown) => value is "control" | "einstein";
|
|
224
224
|
defaultValue: "control" | "einstein";
|
|
225
225
|
};
|
|
226
|
-
platform_editor_ai_facepile: {
|
|
227
|
-
productKeys: {
|
|
228
|
-
confluence: string;
|
|
229
|
-
};
|
|
230
|
-
param: string;
|
|
231
|
-
typeGuard: typeof isBoolean;
|
|
232
|
-
defaultValue: boolean;
|
|
233
|
-
};
|
|
234
226
|
'nested-tables-in-tables': {
|
|
235
227
|
productKeys: {
|
|
236
228
|
confluence: string;
|
|
@@ -319,4 +311,12 @@ export declare const editorExperimentsConfig: {
|
|
|
319
311
|
typeGuard: typeof isBoolean;
|
|
320
312
|
defaultValue: boolean;
|
|
321
313
|
};
|
|
314
|
+
platform_editor_blockquote_in_text_formatting_menu: {
|
|
315
|
+
productKeys: {
|
|
316
|
+
confluence: string;
|
|
317
|
+
};
|
|
318
|
+
param: string;
|
|
319
|
+
typeGuard: typeof isBoolean;
|
|
320
|
+
defaultValue: boolean;
|
|
321
|
+
};
|
|
322
322
|
};
|
|
@@ -30,7 +30,6 @@ export declare let _overrides: Partial<{
|
|
|
30
30
|
platform_editor_ai_prompt_link_picker: boolean;
|
|
31
31
|
'platform_editor_ai-prompts-placeholder': "test" | "control";
|
|
32
32
|
'editor_ai_-_gpt4_experiment': "control" | "einstein";
|
|
33
|
-
platform_editor_ai_facepile: boolean;
|
|
34
33
|
'nested-tables-in-tables': boolean;
|
|
35
34
|
platform_editor_ai_mentions_support: boolean;
|
|
36
35
|
platform_editor_ai_change_tone_floating_toolbar: boolean;
|
|
@@ -42,6 +41,7 @@ export declare let _overrides: Partial<{
|
|
|
42
41
|
platform_editor_ai_unsplash_page_header: boolean;
|
|
43
42
|
expand_selection_range_to_include_inline_node: boolean;
|
|
44
43
|
platform_editor_ai_knowledge_from_current_page: boolean;
|
|
44
|
+
platform_editor_blockquote_in_text_formatting_menu: boolean;
|
|
45
45
|
}>;
|
|
46
46
|
export declare let _product: 'confluence' | 'jira' | 'test' | undefined;
|
|
47
47
|
/**
|
package/package.json
CHANGED