@atlaskit/tmp-editor-statsig 29.6.2 → 29.7.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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 29.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`a0aa8f73bbd02`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a0aa8f73bbd02) -
8
+ [ux] EDITOR-5466 Introduce new popup menu for paste actions which includes existing functionality
9
+ used by the existing floatingToolbar implementation
10
+
3
11
  ## 29.6.2
4
12
 
5
13
  ### Patch Changes
@@ -50,5 +50,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
50
50
  platform_editor_toggle_expand_on_match_found: false,
51
51
  platform_editor_reduce_noisy_steps_ncs: false,
52
52
  platform_editor_prosemirror_rendered_data: false,
53
- confluence_compact_text_format: false
53
+ confluence_compact_text_format: false,
54
+ platform_editor_paste_actions_menu: false
54
55
  };
@@ -320,6 +320,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
320
320
  param: 'isEnabled',
321
321
  defaultValue: false
322
322
  }),
323
+ // Added 2026-02-24
324
+ platform_editor_paste_actions_menu: (0, _experimentBuilders.createBooleanExperiment)({
325
+ productKeys: {
326
+ confluence: 'platform_editor_paste_actions_menu'
327
+ },
328
+ param: 'isEnabled',
329
+ defaultValue: false
330
+ }),
323
331
  // Added 2026-02-03
324
332
  platform_editor_aifc_fix_button_viewed_analytics: (0, _experimentBuilders.createBooleanExperiment)({
325
333
  productKeys: {
@@ -44,5 +44,6 @@ export const testBooleanOverrides = {
44
44
  platform_editor_toggle_expand_on_match_found: false,
45
45
  platform_editor_reduce_noisy_steps_ncs: false,
46
46
  platform_editor_prosemirror_rendered_data: false,
47
- confluence_compact_text_format: false
47
+ confluence_compact_text_format: false,
48
+ platform_editor_paste_actions_menu: false
48
49
  };
@@ -314,6 +314,14 @@ export const editorExperimentsConfig = {
314
314
  param: 'isEnabled',
315
315
  defaultValue: false
316
316
  }),
317
+ // Added 2026-02-24
318
+ platform_editor_paste_actions_menu: createBooleanExperiment({
319
+ productKeys: {
320
+ confluence: 'platform_editor_paste_actions_menu'
321
+ },
322
+ param: 'isEnabled',
323
+ defaultValue: false
324
+ }),
317
325
  // Added 2026-02-03
318
326
  platform_editor_aifc_fix_button_viewed_analytics: createBooleanExperiment({
319
327
  productKeys: {
@@ -44,5 +44,6 @@ export var testBooleanOverrides = {
44
44
  platform_editor_toggle_expand_on_match_found: false,
45
45
  platform_editor_reduce_noisy_steps_ncs: false,
46
46
  platform_editor_prosemirror_rendered_data: false,
47
- confluence_compact_text_format: false
47
+ confluence_compact_text_format: false,
48
+ platform_editor_paste_actions_menu: false
48
49
  };
@@ -314,6 +314,14 @@ export var editorExperimentsConfig = {
314
314
  param: 'isEnabled',
315
315
  defaultValue: false
316
316
  }),
317
+ // Added 2026-02-24
318
+ platform_editor_paste_actions_menu: createBooleanExperiment({
319
+ productKeys: {
320
+ confluence: 'platform_editor_paste_actions_menu'
321
+ },
322
+ param: 'isEnabled',
323
+ defaultValue: false
324
+ }),
317
325
  // Added 2026-02-03
318
326
  platform_editor_aifc_fix_button_viewed_analytics: createBooleanExperiment({
319
327
  productKeys: {
@@ -172,6 +172,12 @@ export declare const editorExperimentsConfig: {
172
172
  productKeys?: ProductKeys;
173
173
  typeGuard: IsBooleanType;
174
174
  };
175
+ platform_editor_paste_actions_menu: {
176
+ defaultValue: boolean;
177
+ param: string;
178
+ productKeys?: ProductKeys;
179
+ typeGuard: IsBooleanType;
180
+ };
175
181
  editor_tinymce_full_width_mode: {
176
182
  defaultValue: boolean;
177
183
  param: string;
@@ -172,6 +172,12 @@ export declare const editorExperimentsConfig: {
172
172
  productKeys?: ProductKeys;
173
173
  typeGuard: IsBooleanType;
174
174
  };
175
+ platform_editor_paste_actions_menu: {
176
+ defaultValue: boolean;
177
+ param: string;
178
+ productKeys?: ProductKeys;
179
+ typeGuard: IsBooleanType;
180
+ };
175
181
  editor_tinymce_full_width_mode: {
176
182
  defaultValue: boolean;
177
183
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "29.6.2",
3
+ "version": "29.7.0",
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",