@atlaskit/tmp-editor-statsig 29.6.1 → 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,20 @@
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
+
11
+ ## 29.6.2
12
+
13
+ ### Patch Changes
14
+
15
+ - [`50f96b87a6d02`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/50f96b87a6d02) -
16
+ batch/change experiment
17
+
3
18
  ## 29.6.1
4
19
 
5
20
  ### 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: {
@@ -758,13 +766,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
758
766
  param: 'isEnabled',
759
767
  defaultValue: false
760
768
  }),
761
- platform_editor_native_expand_button: (0, _experimentBuilders.createBooleanExperiment)({
762
- productKeys: {
763
- confluence: 'platform_editor_native_expand_button'
764
- },
765
- param: 'isEnabled',
766
- defaultValue: false
767
- }),
768
769
  // Added 2026-02-05
769
770
  'editor-a11y-fy26-keyboard-move-row-column': (0, _experimentBuilders.createBooleanExperiment)({
770
771
  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: {
@@ -752,13 +760,6 @@ export const editorExperimentsConfig = {
752
760
  param: 'isEnabled',
753
761
  defaultValue: false
754
762
  }),
755
- platform_editor_native_expand_button: createBooleanExperiment({
756
- productKeys: {
757
- confluence: 'platform_editor_native_expand_button'
758
- },
759
- param: 'isEnabled',
760
- defaultValue: false
761
- }),
762
763
  // Added 2026-02-05
763
764
  'editor-a11y-fy26-keyboard-move-row-column': createBooleanExperiment({
764
765
  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: {
@@ -752,13 +760,6 @@ export var editorExperimentsConfig = {
752
760
  param: 'isEnabled',
753
761
  defaultValue: false
754
762
  }),
755
- platform_editor_native_expand_button: createBooleanExperiment({
756
- productKeys: {
757
- confluence: 'platform_editor_native_expand_button'
758
- },
759
- param: 'isEnabled',
760
- defaultValue: false
761
- }),
762
763
  // Added 2026-02-05
763
764
  'editor-a11y-fy26-keyboard-move-row-column': createBooleanExperiment({
764
765
  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;
@@ -517,12 +523,6 @@ export declare const editorExperimentsConfig: {
517
523
  productKeys?: ProductKeys;
518
524
  typeGuard: IsBooleanType;
519
525
  };
520
- platform_editor_native_expand_button: {
521
- defaultValue: boolean;
522
- param: string;
523
- productKeys?: ProductKeys;
524
- typeGuard: IsBooleanType;
525
- };
526
526
  platform_editor_nested_table_refresh_width_fix: {
527
527
  defaultValue: boolean;
528
528
  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;
@@ -517,12 +523,6 @@ export declare const editorExperimentsConfig: {
517
523
  productKeys?: ProductKeys;
518
524
  typeGuard: IsBooleanType;
519
525
  };
520
- platform_editor_native_expand_button: {
521
- defaultValue: boolean;
522
- param: string;
523
- productKeys?: ProductKeys;
524
- typeGuard: IsBooleanType;
525
- };
526
526
  platform_editor_nested_table_refresh_width_fix: {
527
527
  defaultValue: boolean;
528
528
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "29.6.1",
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",