@atlaskit/tmp-editor-statsig 17.0.0 → 17.2.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
+ ## 17.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`b17f23c9e3a68`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b17f23c9e3a68) -
8
+ Avoid rendering entire primary toolbar container when primary toolbar is not registered
9
+
10
+ ## 17.1.0
11
+
12
+ ### Minor Changes
13
+
14
+ - [`653c0c803b286`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/653c0c803b286) -
15
+ EDITOR-4620 Clean up platform_editor_toolbar_aifc_patch_6
16
+
3
17
  ## 17.0.0
4
18
 
5
19
  ### Major Changes
@@ -896,14 +896,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
896
896
  param: 'isEnabled',
897
897
  defaultValue: false
898
898
  }),
899
- // Added 2025-09-26
900
- platform_editor_toolbar_aifc_patch_6: (0, _experimentBuilders.createBooleanExperiment)({
901
- productKeys: {
902
- confluence: 'platform_editor_toolbar_aifc_patch_6'
903
- },
904
- param: 'isEnabled',
905
- defaultValue: false
906
- }),
907
899
  // Added 2025-10-01
908
900
  platform_inline_smartcard_connect_button_exp: (0, _experimentBuilders.createMultivariateExperiment)({
909
901
  productKeys: {
@@ -973,6 +965,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
973
965
  param: 'isEnabled',
974
966
  defaultValue: false
975
967
  }),
968
+ // Added 2025-28-01
969
+ platform_editor_primary_toolbar_early_exit: (0, _experimentBuilders.createBooleanExperiment)({
970
+ productKeys: {
971
+ confluence: 'platform_editor_primary_toolbar_early_exit',
972
+ jira: 'platform_editor_primary_toolbar_early_exit'
973
+ },
974
+ param: 'isEnabled',
975
+ defaultValue: false
976
+ }),
976
977
  // Added 2025-11-05
977
978
  platform_editor_lovability_emoji_scaling: (0, _experimentBuilders.createBooleanExperiment)({
978
979
  productKeys: {
@@ -890,14 +890,6 @@ export const editorExperimentsConfig = {
890
890
  param: 'isEnabled',
891
891
  defaultValue: false
892
892
  }),
893
- // Added 2025-09-26
894
- platform_editor_toolbar_aifc_patch_6: createBooleanExperiment({
895
- productKeys: {
896
- confluence: 'platform_editor_toolbar_aifc_patch_6'
897
- },
898
- param: 'isEnabled',
899
- defaultValue: false
900
- }),
901
893
  // Added 2025-10-01
902
894
  platform_inline_smartcard_connect_button_exp: createMultivariateExperiment({
903
895
  productKeys: {
@@ -967,6 +959,15 @@ export const editorExperimentsConfig = {
967
959
  param: 'isEnabled',
968
960
  defaultValue: false
969
961
  }),
962
+ // Added 2025-28-01
963
+ platform_editor_primary_toolbar_early_exit: createBooleanExperiment({
964
+ productKeys: {
965
+ confluence: 'platform_editor_primary_toolbar_early_exit',
966
+ jira: 'platform_editor_primary_toolbar_early_exit'
967
+ },
968
+ param: 'isEnabled',
969
+ defaultValue: false
970
+ }),
970
971
  // Added 2025-11-05
971
972
  platform_editor_lovability_emoji_scaling: createBooleanExperiment({
972
973
  productKeys: {
@@ -890,14 +890,6 @@ export var editorExperimentsConfig = {
890
890
  param: 'isEnabled',
891
891
  defaultValue: false
892
892
  }),
893
- // Added 2025-09-26
894
- platform_editor_toolbar_aifc_patch_6: createBooleanExperiment({
895
- productKeys: {
896
- confluence: 'platform_editor_toolbar_aifc_patch_6'
897
- },
898
- param: 'isEnabled',
899
- defaultValue: false
900
- }),
901
893
  // Added 2025-10-01
902
894
  platform_inline_smartcard_connect_button_exp: createMultivariateExperiment({
903
895
  productKeys: {
@@ -967,6 +959,15 @@ export var editorExperimentsConfig = {
967
959
  param: 'isEnabled',
968
960
  defaultValue: false
969
961
  }),
962
+ // Added 2025-28-01
963
+ platform_editor_primary_toolbar_early_exit: createBooleanExperiment({
964
+ productKeys: {
965
+ confluence: 'platform_editor_primary_toolbar_early_exit',
966
+ jira: 'platform_editor_primary_toolbar_early_exit'
967
+ },
968
+ param: 'isEnabled',
969
+ defaultValue: false
970
+ }),
970
971
  // Added 2025-11-05
971
972
  platform_editor_lovability_emoji_scaling: createBooleanExperiment({
972
973
  productKeys: {
@@ -455,6 +455,12 @@ export declare const editorExperimentsConfig: {
455
455
  productKeys?: ProductKeys;
456
456
  typeGuard: IsBooleanType;
457
457
  };
458
+ platform_editor_primary_toolbar_early_exit: {
459
+ defaultValue: boolean;
460
+ param: string;
461
+ productKeys?: ProductKeys;
462
+ typeGuard: IsBooleanType;
463
+ };
458
464
  platform_editor_lovability_navigation_fixes: {
459
465
  defaultValue: boolean;
460
466
  param: string;
@@ -636,12 +642,6 @@ export declare const editorExperimentsConfig: {
636
642
  productKeys?: ProductKeys;
637
643
  typeGuard: IsBooleanType;
638
644
  };
639
- platform_editor_toolbar_aifc_patch_6: {
640
- defaultValue: boolean;
641
- param: string;
642
- productKeys?: ProductKeys;
643
- typeGuard: IsBooleanType;
644
- };
645
645
  platform_editor_usesharedpluginstateselector: {
646
646
  defaultValue: boolean;
647
647
  param: string;
@@ -455,6 +455,12 @@ export declare const editorExperimentsConfig: {
455
455
  productKeys?: ProductKeys;
456
456
  typeGuard: IsBooleanType;
457
457
  };
458
+ platform_editor_primary_toolbar_early_exit: {
459
+ defaultValue: boolean;
460
+ param: string;
461
+ productKeys?: ProductKeys;
462
+ typeGuard: IsBooleanType;
463
+ };
458
464
  platform_editor_lovability_navigation_fixes: {
459
465
  defaultValue: boolean;
460
466
  param: string;
@@ -636,12 +642,6 @@ export declare const editorExperimentsConfig: {
636
642
  productKeys?: ProductKeys;
637
643
  typeGuard: IsBooleanType;
638
644
  };
639
- platform_editor_toolbar_aifc_patch_6: {
640
- defaultValue: boolean;
641
- param: string;
642
- productKeys?: ProductKeys;
643
- typeGuard: IsBooleanType;
644
- };
645
645
  platform_editor_usesharedpluginstateselector: {
646
646
  defaultValue: boolean;
647
647
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "17.0.0",
3
+ "version": "17.2.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",