@atlaskit/tmp-editor-statsig 12.9.1 → 12.10.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,17 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 12.10.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`73bece405a55b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/73bece405a55b) -
8
+ [EDITOR-1433] Add editor_refactor_backspace_task_and_decisions experiment
9
+
10
+ ### Patch Changes
11
+
12
+ - [`c0656bad0f992`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c0656bad0f992) -
13
+ EDITOR-1389 fix table container width behind platform_editor_table_container_width_fix
14
+
3
15
  ## 12.9.1
4
16
 
5
17
  ### Patch Changes
@@ -601,6 +601,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
601
601
  param: 'isEnabled',
602
602
  defaultValue: false
603
603
  }),
604
+ // Added 2025-09-04
605
+ editor_refactor_backspace_task_and_decisions: (0, _experimentBuilders.createBooleanExperiment)({
606
+ productKeys: {
607
+ confluence: 'editor_refactor_backspace_task_and_decisions'
608
+ },
609
+ param: 'isEnabled',
610
+ defaultValue: false
611
+ }),
604
612
  //Added 2025-07-16
605
613
  platform_editor_toolbar_aifc_patch_3: (0, _experimentBuilders.createBooleanExperiment)({
606
614
  productKeys: {
@@ -841,6 +849,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
841
849
  param: 'isEnabled',
842
850
  defaultValue: false
843
851
  }),
852
+ // Added 2025-09-08
853
+ platform_editor_table_container_width_fix: (0, _experimentBuilders.createBooleanExperiment)({
854
+ productKeys: {
855
+ confluence: 'platform_editor_table_container_width_fix',
856
+ jira: 'platform_editor_table_container_width_fix'
857
+ },
858
+ param: 'isEnabled',
859
+ defaultValue: false
860
+ }),
844
861
  // Added 2025-09-01
845
862
  platform_editor_toolbar_aifc_patch_2: (0, _experimentBuilders.createBooleanExperiment)({
846
863
  productKeys: {
@@ -595,6 +595,14 @@ export const editorExperimentsConfig = {
595
595
  param: 'isEnabled',
596
596
  defaultValue: false
597
597
  }),
598
+ // Added 2025-09-04
599
+ editor_refactor_backspace_task_and_decisions: createBooleanExperiment({
600
+ productKeys: {
601
+ confluence: 'editor_refactor_backspace_task_and_decisions'
602
+ },
603
+ param: 'isEnabled',
604
+ defaultValue: false
605
+ }),
598
606
  //Added 2025-07-16
599
607
  platform_editor_toolbar_aifc_patch_3: createBooleanExperiment({
600
608
  productKeys: {
@@ -835,6 +843,15 @@ export const editorExperimentsConfig = {
835
843
  param: 'isEnabled',
836
844
  defaultValue: false
837
845
  }),
846
+ // Added 2025-09-08
847
+ platform_editor_table_container_width_fix: createBooleanExperiment({
848
+ productKeys: {
849
+ confluence: 'platform_editor_table_container_width_fix',
850
+ jira: 'platform_editor_table_container_width_fix'
851
+ },
852
+ param: 'isEnabled',
853
+ defaultValue: false
854
+ }),
838
855
  // Added 2025-09-01
839
856
  platform_editor_toolbar_aifc_patch_2: createBooleanExperiment({
840
857
  productKeys: {
@@ -595,6 +595,14 @@ export var editorExperimentsConfig = {
595
595
  param: 'isEnabled',
596
596
  defaultValue: false
597
597
  }),
598
+ // Added 2025-09-04
599
+ editor_refactor_backspace_task_and_decisions: createBooleanExperiment({
600
+ productKeys: {
601
+ confluence: 'editor_refactor_backspace_task_and_decisions'
602
+ },
603
+ param: 'isEnabled',
604
+ defaultValue: false
605
+ }),
598
606
  //Added 2025-07-16
599
607
  platform_editor_toolbar_aifc_patch_3: createBooleanExperiment({
600
608
  productKeys: {
@@ -835,6 +843,15 @@ export var editorExperimentsConfig = {
835
843
  param: 'isEnabled',
836
844
  defaultValue: false
837
845
  }),
846
+ // Added 2025-09-08
847
+ platform_editor_table_container_width_fix: createBooleanExperiment({
848
+ productKeys: {
849
+ confluence: 'platform_editor_table_container_width_fix',
850
+ jira: 'platform_editor_table_container_width_fix'
851
+ },
852
+ param: 'isEnabled',
853
+ defaultValue: false
854
+ }),
838
855
  // Added 2025-09-01
839
856
  platform_editor_toolbar_aifc_patch_2: createBooleanExperiment({
840
857
  productKeys: {
@@ -444,6 +444,12 @@ export declare const editorExperimentsConfig: {
444
444
  param: string;
445
445
  productKeys?: import("./types").ProductKeys;
446
446
  };
447
+ editor_refactor_backspace_task_and_decisions: {
448
+ typeGuard: typeof import("./type-guards").isBoolean;
449
+ defaultValue: boolean;
450
+ param: string;
451
+ productKeys?: import("./types").ProductKeys;
452
+ };
447
453
  platform_editor_toolbar_aifc_patch_3: {
448
454
  typeGuard: typeof import("./type-guards").isBoolean;
449
455
  defaultValue: boolean;
@@ -618,6 +624,12 @@ export declare const editorExperimentsConfig: {
618
624
  param: string;
619
625
  productKeys?: import("./types").ProductKeys;
620
626
  };
627
+ platform_editor_table_container_width_fix: {
628
+ typeGuard: typeof import("./type-guards").isBoolean;
629
+ defaultValue: boolean;
630
+ param: string;
631
+ productKeys?: import("./types").ProductKeys;
632
+ };
621
633
  platform_editor_toolbar_aifc_patch_2: {
622
634
  typeGuard: typeof import("./type-guards").isBoolean;
623
635
  defaultValue: boolean;
@@ -444,6 +444,12 @@ export declare const editorExperimentsConfig: {
444
444
  param: string;
445
445
  productKeys?: import("./types").ProductKeys;
446
446
  };
447
+ editor_refactor_backspace_task_and_decisions: {
448
+ typeGuard: typeof import("./type-guards").isBoolean;
449
+ defaultValue: boolean;
450
+ param: string;
451
+ productKeys?: import("./types").ProductKeys;
452
+ };
447
453
  platform_editor_toolbar_aifc_patch_3: {
448
454
  typeGuard: typeof import("./type-guards").isBoolean;
449
455
  defaultValue: boolean;
@@ -618,6 +624,12 @@ export declare const editorExperimentsConfig: {
618
624
  param: string;
619
625
  productKeys?: import("./types").ProductKeys;
620
626
  };
627
+ platform_editor_table_container_width_fix: {
628
+ typeGuard: typeof import("./type-guards").isBoolean;
629
+ defaultValue: boolean;
630
+ param: string;
631
+ productKeys?: import("./types").ProductKeys;
632
+ };
621
633
  platform_editor_toolbar_aifc_patch_2: {
622
634
  typeGuard: typeof import("./type-guards").isBoolean;
623
635
  defaultValue: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "12.9.1",
3
+ "version": "12.10.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",