@atlaskit/tmp-editor-statsig 14.3.0 → 14.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 CHANGED
@@ -1,5 +1,27 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 14.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`bc11393275e1c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/bc11393275e1c) -
8
+ Do not use React State for storing pluginInjectionAPI reference
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies
13
+
14
+ ## 14.4.0
15
+
16
+ ### Minor Changes
17
+
18
+ - [`00c08e3995cb2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/00c08e3995cb2) -
19
+ Clean up platform_editor_block_menu_empty_line
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies
24
+
3
25
  ## 14.3.0
4
26
 
5
27
  ### Minor Changes
@@ -401,6 +401,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
401
401
  param: 'isEnabled',
402
402
  defaultValue: false
403
403
  }),
404
+ // Added 2025-12-01
405
+ platform_editor_no_state_plugin_injection_api: (0, _experimentBuilders.createBooleanExperiment)({
406
+ productKeys: {
407
+ confluence: 'platform_editor_no_state_plugin_injection_api'
408
+ },
409
+ param: 'isEnabled',
410
+ defaultValue: false
411
+ }),
404
412
  // Added 2025-06-10
405
413
  platform_editor_no_cursor_on_edit_page_init: (0, _experimentBuilders.createBooleanExperiment)({
406
414
  productKeys: {
@@ -620,14 +628,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
620
628
  param: 'isEnabled',
621
629
  defaultValue: false
622
630
  }),
623
- // Added 2025--9-17
624
- platform_editor_block_menu_empty_line: (0, _experimentBuilders.createBooleanExperiment)({
625
- productKeys: {
626
- confluence: 'platform_editor_block_menu_empty_line'
627
- },
628
- param: 'isEnabled',
629
- defaultValue: false
630
- }),
631
631
  // Added 2025-09-16
632
632
  platform_editor_emoji_otp: (0, _experimentBuilders.createBooleanExperiment)({
633
633
  productKeys: {
@@ -395,6 +395,14 @@ export const editorExperimentsConfig = {
395
395
  param: 'isEnabled',
396
396
  defaultValue: false
397
397
  }),
398
+ // Added 2025-12-01
399
+ platform_editor_no_state_plugin_injection_api: createBooleanExperiment({
400
+ productKeys: {
401
+ confluence: 'platform_editor_no_state_plugin_injection_api'
402
+ },
403
+ param: 'isEnabled',
404
+ defaultValue: false
405
+ }),
398
406
  // Added 2025-06-10
399
407
  platform_editor_no_cursor_on_edit_page_init: createBooleanExperiment({
400
408
  productKeys: {
@@ -614,14 +622,6 @@ export const editorExperimentsConfig = {
614
622
  param: 'isEnabled',
615
623
  defaultValue: false
616
624
  }),
617
- // Added 2025--9-17
618
- platform_editor_block_menu_empty_line: createBooleanExperiment({
619
- productKeys: {
620
- confluence: 'platform_editor_block_menu_empty_line'
621
- },
622
- param: 'isEnabled',
623
- defaultValue: false
624
- }),
625
625
  // Added 2025-09-16
626
626
  platform_editor_emoji_otp: createBooleanExperiment({
627
627
  productKeys: {
@@ -395,6 +395,14 @@ export var editorExperimentsConfig = {
395
395
  param: 'isEnabled',
396
396
  defaultValue: false
397
397
  }),
398
+ // Added 2025-12-01
399
+ platform_editor_no_state_plugin_injection_api: createBooleanExperiment({
400
+ productKeys: {
401
+ confluence: 'platform_editor_no_state_plugin_injection_api'
402
+ },
403
+ param: 'isEnabled',
404
+ defaultValue: false
405
+ }),
398
406
  // Added 2025-06-10
399
407
  platform_editor_no_cursor_on_edit_page_init: createBooleanExperiment({
400
408
  productKeys: {
@@ -614,14 +622,6 @@ export var editorExperimentsConfig = {
614
622
  param: 'isEnabled',
615
623
  defaultValue: false
616
624
  }),
617
- // Added 2025--9-17
618
- platform_editor_block_menu_empty_line: createBooleanExperiment({
619
- productKeys: {
620
- confluence: 'platform_editor_block_menu_empty_line'
621
- },
622
- param: 'isEnabled',
623
- defaultValue: false
624
- }),
625
625
  // Added 2025-09-16
626
626
  platform_editor_emoji_otp: createBooleanExperiment({
627
627
  productKeys: {
@@ -273,12 +273,6 @@ export declare const editorExperimentsConfig: {
273
273
  productKeys?: ProductKeys;
274
274
  typeGuard: IsBooleanType;
275
275
  };
276
- platform_editor_block_menu_empty_line: {
277
- defaultValue: boolean;
278
- param: string;
279
- productKeys?: ProductKeys;
280
- typeGuard: IsBooleanType;
281
- };
282
276
  platform_editor_blockquote_in_text_formatting_menu: {
283
277
  defaultValue: boolean;
284
278
  param: string;
@@ -564,6 +558,12 @@ export declare const editorExperimentsConfig: {
564
558
  productKeys?: ProductKeys;
565
559
  typeGuard: IsBooleanType;
566
560
  };
561
+ platform_editor_no_state_plugin_injection_api: {
562
+ defaultValue: boolean;
563
+ param: string;
564
+ productKeys?: ProductKeys;
565
+ typeGuard: IsBooleanType;
566
+ };
567
567
  platform_editor_offline_editing_web: {
568
568
  defaultValue: boolean;
569
569
  param: string;
@@ -273,12 +273,6 @@ export declare const editorExperimentsConfig: {
273
273
  productKeys?: ProductKeys;
274
274
  typeGuard: IsBooleanType;
275
275
  };
276
- platform_editor_block_menu_empty_line: {
277
- defaultValue: boolean;
278
- param: string;
279
- productKeys?: ProductKeys;
280
- typeGuard: IsBooleanType;
281
- };
282
276
  platform_editor_blockquote_in_text_formatting_menu: {
283
277
  defaultValue: boolean;
284
278
  param: string;
@@ -564,6 +558,12 @@ export declare const editorExperimentsConfig: {
564
558
  productKeys?: ProductKeys;
565
559
  typeGuard: IsBooleanType;
566
560
  };
561
+ platform_editor_no_state_plugin_injection_api: {
562
+ defaultValue: boolean;
563
+ param: string;
564
+ productKeys?: ProductKeys;
565
+ typeGuard: IsBooleanType;
566
+ };
567
567
  platform_editor_offline_editing_web: {
568
568
  defaultValue: boolean;
569
569
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "14.3.0",
3
+ "version": "14.5.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",