@atlaskit/tmp-editor-statsig 13.6.0 → 13.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,19 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 13.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`a4db0a2351f7d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a4db0a2351f7d) -
8
+ [ux] ED-29502 Add plain text quick insert option to codeBlockPlugin
9
+
10
+ ## 13.6.1
11
+
12
+ ### Patch Changes
13
+
14
+ - [`925eb6478e9a5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/925eb6478e9a5) -
15
+ Remove overflowY on tables to prevent Y axis scroll bar showing on Windows.
16
+
3
17
  ## 13.6.0
4
18
 
5
19
  ### Minor Changes
@@ -863,15 +863,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
863
863
  param: 'isEnabled',
864
864
  defaultValue: false
865
865
  }),
866
- // Added 2025-09-08
867
- platform_editor_table_container_width_fix: (0, _experimentBuilders.createBooleanExperiment)({
868
- productKeys: {
869
- confluence: 'platform_editor_table_container_width_fix',
870
- jira: 'platform_editor_table_container_width_fix'
871
- },
872
- param: 'isEnabled',
873
- defaultValue: false
874
- }),
875
866
  // Added 2025-09-01
876
867
  cc_editor_ai_content_mode: (0, _experimentBuilders.createMultivariateExperiment)({
877
868
  productKeys: {
@@ -1018,6 +1009,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1018
1009
  param: 'isEnabled',
1019
1010
  defaultValue: false
1020
1011
  }),
1012
+ // Added 2025-10-07
1013
+ platform_editor_plain_text_support: (0, _experimentBuilders.createBooleanExperiment)({
1014
+ productKeys: {
1015
+ jira: 'platform_editor_plain_text_support',
1016
+ confluence: 'platform_editor_plain_text_support'
1017
+ },
1018
+ param: 'isEnabled',
1019
+ defaultValue: false
1020
+ }),
1021
1021
  // Added 2025-09-26
1022
1022
  platform_editor_toolbar_aifc_patch_6: (0, _experimentBuilders.createBooleanExperiment)({
1023
1023
  productKeys: {
@@ -857,15 +857,6 @@ export const editorExperimentsConfig = {
857
857
  param: 'isEnabled',
858
858
  defaultValue: false
859
859
  }),
860
- // Added 2025-09-08
861
- platform_editor_table_container_width_fix: createBooleanExperiment({
862
- productKeys: {
863
- confluence: 'platform_editor_table_container_width_fix',
864
- jira: 'platform_editor_table_container_width_fix'
865
- },
866
- param: 'isEnabled',
867
- defaultValue: false
868
- }),
869
860
  // Added 2025-09-01
870
861
  cc_editor_ai_content_mode: createMultivariateExperiment({
871
862
  productKeys: {
@@ -1012,6 +1003,15 @@ export const editorExperimentsConfig = {
1012
1003
  param: 'isEnabled',
1013
1004
  defaultValue: false
1014
1005
  }),
1006
+ // Added 2025-10-07
1007
+ platform_editor_plain_text_support: createBooleanExperiment({
1008
+ productKeys: {
1009
+ jira: 'platform_editor_plain_text_support',
1010
+ confluence: 'platform_editor_plain_text_support'
1011
+ },
1012
+ param: 'isEnabled',
1013
+ defaultValue: false
1014
+ }),
1015
1015
  // Added 2025-09-26
1016
1016
  platform_editor_toolbar_aifc_patch_6: createBooleanExperiment({
1017
1017
  productKeys: {
@@ -857,15 +857,6 @@ export var editorExperimentsConfig = {
857
857
  param: 'isEnabled',
858
858
  defaultValue: false
859
859
  }),
860
- // Added 2025-09-08
861
- platform_editor_table_container_width_fix: createBooleanExperiment({
862
- productKeys: {
863
- confluence: 'platform_editor_table_container_width_fix',
864
- jira: 'platform_editor_table_container_width_fix'
865
- },
866
- param: 'isEnabled',
867
- defaultValue: false
868
- }),
869
860
  // Added 2025-09-01
870
861
  cc_editor_ai_content_mode: createMultivariateExperiment({
871
862
  productKeys: {
@@ -1012,6 +1003,15 @@ export var editorExperimentsConfig = {
1012
1003
  param: 'isEnabled',
1013
1004
  defaultValue: false
1014
1005
  }),
1006
+ // Added 2025-10-07
1007
+ platform_editor_plain_text_support: createBooleanExperiment({
1008
+ productKeys: {
1009
+ jira: 'platform_editor_plain_text_support',
1010
+ confluence: 'platform_editor_plain_text_support'
1011
+ },
1012
+ param: 'isEnabled',
1013
+ defaultValue: false
1014
+ }),
1015
1015
  // Added 2025-09-26
1016
1016
  platform_editor_toolbar_aifc_patch_6: createBooleanExperiment({
1017
1017
  productKeys: {
@@ -631,12 +631,6 @@ export declare const editorExperimentsConfig: {
631
631
  param: string;
632
632
  productKeys?: import("./types").ProductKeys;
633
633
  };
634
- platform_editor_table_container_width_fix: {
635
- typeGuard: typeof import("./type-guards").isBoolean;
636
- defaultValue: boolean;
637
- param: string;
638
- productKeys?: import("./types").ProductKeys;
639
- };
640
634
  cc_editor_ai_content_mode: {
641
635
  values: ("test" | "control")[];
642
636
  typeGuard: (value: unknown) => value is "test" | "control";
@@ -746,6 +740,12 @@ export declare const editorExperimentsConfig: {
746
740
  param: string;
747
741
  productKeys?: import("./types").ProductKeys;
748
742
  };
743
+ platform_editor_plain_text_support: {
744
+ typeGuard: typeof import("./type-guards").isBoolean;
745
+ defaultValue: boolean;
746
+ param: string;
747
+ productKeys?: import("./types").ProductKeys;
748
+ };
749
749
  platform_editor_toolbar_aifc_patch_6: {
750
750
  typeGuard: typeof import("./type-guards").isBoolean;
751
751
  defaultValue: boolean;
@@ -631,12 +631,6 @@ export declare const editorExperimentsConfig: {
631
631
  param: string;
632
632
  productKeys?: import("./types").ProductKeys;
633
633
  };
634
- platform_editor_table_container_width_fix: {
635
- typeGuard: typeof import("./type-guards").isBoolean;
636
- defaultValue: boolean;
637
- param: string;
638
- productKeys?: import("./types").ProductKeys;
639
- };
640
634
  cc_editor_ai_content_mode: {
641
635
  values: ("test" | "control")[];
642
636
  typeGuard: (value: unknown) => value is "test" | "control";
@@ -746,6 +740,12 @@ export declare const editorExperimentsConfig: {
746
740
  param: string;
747
741
  productKeys?: import("./types").ProductKeys;
748
742
  };
743
+ platform_editor_plain_text_support: {
744
+ typeGuard: typeof import("./type-guards").isBoolean;
745
+ defaultValue: boolean;
746
+ param: string;
747
+ productKeys?: import("./types").ProductKeys;
748
+ };
749
749
  platform_editor_toolbar_aifc_patch_6: {
750
750
  typeGuard: typeof import("./type-guards").isBoolean;
751
751
  defaultValue: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "13.6.0",
3
+ "version": "13.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",