@atlaskit/tmp-editor-statsig 2.42.0 → 2.42.1

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 CHANGED
@@ -1,5 +1,14 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 2.42.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#111057](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/111057)
8
+ [`a87f76f559c65`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a87f76f559c65) -
9
+ EDF-2382 Cleaned up platform_editor_ai_change_tone_floating_toolbar, defaulted to control
10
+ behaviour.
11
+
3
12
  ## 2.42.0
4
13
 
5
14
  ### Minor Changes
@@ -193,15 +193,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
193
193
  typeGuard: _typeGuards.isBoolean,
194
194
  defaultValue: false
195
195
  },
196
- // Added 2024-11-06
197
- platform_editor_ai_change_tone_floating_toolbar: {
198
- productKeys: {
199
- confluence: 'platform_editor_ai_change_tone_floating_toolbar'
200
- },
201
- param: 'isEnabled',
202
- typeGuard: _typeGuards.isBoolean,
203
- defaultValue: false
204
- },
205
196
  // Added 2024-11-13
206
197
  issue_view_action_items: {
207
198
  productKeys: {
@@ -187,15 +187,6 @@ export const editorExperimentsConfig = {
187
187
  typeGuard: isBoolean,
188
188
  defaultValue: false
189
189
  },
190
- // Added 2024-11-06
191
- platform_editor_ai_change_tone_floating_toolbar: {
192
- productKeys: {
193
- confluence: 'platform_editor_ai_change_tone_floating_toolbar'
194
- },
195
- param: 'isEnabled',
196
- typeGuard: isBoolean,
197
- defaultValue: false
198
- },
199
190
  // Added 2024-11-13
200
191
  issue_view_action_items: {
201
192
  productKeys: {
@@ -187,15 +187,6 @@ export var editorExperimentsConfig = {
187
187
  typeGuard: isBoolean,
188
188
  defaultValue: false
189
189
  },
190
- // Added 2024-11-06
191
- platform_editor_ai_change_tone_floating_toolbar: {
192
- productKeys: {
193
- confluence: 'platform_editor_ai_change_tone_floating_toolbar'
194
- },
195
- param: 'isEnabled',
196
- typeGuard: isBoolean,
197
- defaultValue: false
198
- },
199
190
  // Added 2024-11-13
200
191
  issue_view_action_items: {
201
192
  productKeys: {
@@ -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" | "comment_on_inline_node_spotlight" | "platform_editor_ai-prompts-placeholder" | "nested-tables-in-tables" | "platform_editor_ai_change_tone_floating_toolbar" | "issue_view_action_items" | "contextual_formatting_toolbar" | "platform_editor_ai_1p_smart_link_unfurl_in_prompt" | "platform_editor_ai_unsplash_page_header" | "platform_editor_ai_advanced_prompts" | "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_ai_jira_content_read_url">(experimentName: ExperimentName, describeName: string) => {
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" | "comment_on_inline_node_spotlight" | "platform_editor_ai-prompts-placeholder" | "nested-tables-in-tables" | "issue_view_action_items" | "contextual_formatting_toolbar" | "platform_editor_ai_1p_smart_link_unfurl_in_prompt" | "platform_editor_ai_unsplash_page_header" | "platform_editor_ai_advanced_prompts" | "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_ai_jira_content_read_url">(experimentName: ExperimentName, describeName: string) => {
49
49
  variant: (value: {
50
50
  'example-boolean': {
51
51
  productKeys: {
@@ -200,14 +200,6 @@ declare namespace eeTest {
200
200
  typeGuard: typeof import("./type-guards").isBoolean;
201
201
  defaultValue: boolean;
202
202
  };
203
- platform_editor_ai_change_tone_floating_toolbar: {
204
- productKeys: {
205
- confluence: string;
206
- };
207
- param: string;
208
- typeGuard: typeof import("./type-guards").isBoolean;
209
- defaultValue: boolean;
210
- };
211
203
  issue_view_action_items: {
212
204
  productKeys: {
213
205
  jira: string;
@@ -159,14 +159,6 @@ export declare const editorExperimentsConfig: {
159
159
  typeGuard: typeof isBoolean;
160
160
  defaultValue: boolean;
161
161
  };
162
- platform_editor_ai_change_tone_floating_toolbar: {
163
- productKeys: {
164
- confluence: string;
165
- };
166
- param: string;
167
- typeGuard: typeof isBoolean;
168
- defaultValue: boolean;
169
- };
170
162
  issue_view_action_items: {
171
163
  productKeys: {
172
164
  jira: string;
@@ -27,7 +27,6 @@ export declare let _overrides: Partial<{
27
27
  comment_on_inline_node_spotlight: boolean;
28
28
  'platform_editor_ai-prompts-placeholder': "test" | "control";
29
29
  'nested-tables-in-tables': boolean;
30
- platform_editor_ai_change_tone_floating_toolbar: boolean;
31
30
  issue_view_action_items: boolean;
32
31
  contextual_formatting_toolbar: boolean;
33
32
  platform_editor_ai_1p_smart_link_unfurl_in_prompt: 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" | "comment_on_inline_node_spotlight" | "platform_editor_ai-prompts-placeholder" | "nested-tables-in-tables" | "platform_editor_ai_change_tone_floating_toolbar" | "issue_view_action_items" | "contextual_formatting_toolbar" | "platform_editor_ai_1p_smart_link_unfurl_in_prompt" | "platform_editor_ai_unsplash_page_header" | "platform_editor_ai_advanced_prompts" | "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_ai_jira_content_read_url">(experimentName: ExperimentName, describeName: string) => {
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" | "comment_on_inline_node_spotlight" | "platform_editor_ai-prompts-placeholder" | "nested-tables-in-tables" | "issue_view_action_items" | "contextual_formatting_toolbar" | "platform_editor_ai_1p_smart_link_unfurl_in_prompt" | "platform_editor_ai_unsplash_page_header" | "platform_editor_ai_advanced_prompts" | "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_ai_jira_content_read_url">(experimentName: ExperimentName, describeName: string) => {
49
49
  variant: (value: {
50
50
  'example-boolean': {
51
51
  productKeys: {
@@ -200,14 +200,6 @@ declare namespace eeTest {
200
200
  typeGuard: typeof import("./type-guards").isBoolean;
201
201
  defaultValue: boolean;
202
202
  };
203
- platform_editor_ai_change_tone_floating_toolbar: {
204
- productKeys: {
205
- confluence: string;
206
- };
207
- param: string;
208
- typeGuard: typeof import("./type-guards").isBoolean;
209
- defaultValue: boolean;
210
- };
211
203
  issue_view_action_items: {
212
204
  productKeys: {
213
205
  jira: string;
@@ -159,14 +159,6 @@ export declare const editorExperimentsConfig: {
159
159
  typeGuard: typeof isBoolean;
160
160
  defaultValue: boolean;
161
161
  };
162
- platform_editor_ai_change_tone_floating_toolbar: {
163
- productKeys: {
164
- confluence: string;
165
- };
166
- param: string;
167
- typeGuard: typeof isBoolean;
168
- defaultValue: boolean;
169
- };
170
162
  issue_view_action_items: {
171
163
  productKeys: {
172
164
  jira: string;
@@ -27,7 +27,6 @@ export declare let _overrides: Partial<{
27
27
  comment_on_inline_node_spotlight: boolean;
28
28
  'platform_editor_ai-prompts-placeholder': "test" | "control";
29
29
  'nested-tables-in-tables': boolean;
30
- platform_editor_ai_change_tone_floating_toolbar: boolean;
31
30
  issue_view_action_items: boolean;
32
31
  contextual_formatting_toolbar: boolean;
33
32
  platform_editor_ai_1p_smart_link_unfurl_in_prompt: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "2.42.0",
3
+ "version": "2.42.1",
4
4
  "description": "Temp plugin to ease use of statsig feature flags until platform feature flags are available",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",