@atlaskit/tmp-editor-statsig 17.1.0 → 17.3.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,23 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 17.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`e170ad8b5a383`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e170ad8b5a383) -
8
+ [EDITOR-4501] add new experiment to statsig config
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies
13
+
14
+ ## 17.2.0
15
+
16
+ ### Minor Changes
17
+
18
+ - [`b17f23c9e3a68`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b17f23c9e3a68) -
19
+ Avoid rendering entire primary toolbar container when primary toolbar is not registered
20
+
3
21
  ## 17.1.0
4
22
 
5
23
  ### Minor Changes
@@ -965,6 +965,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
965
965
  param: 'isEnabled',
966
966
  defaultValue: false
967
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
+ }),
968
977
  // Added 2025-11-05
969
978
  platform_editor_lovability_emoji_scaling: (0, _experimentBuilders.createBooleanExperiment)({
970
979
  productKeys: {
@@ -1225,5 +1234,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1225
1234
  },
1226
1235
  param: 'isEnabled',
1227
1236
  defaultValue: false
1237
+ }),
1238
+ // Added 2026-01-29
1239
+ platform_editor_renderer_toolbar_updates: (0, _experimentBuilders.createBooleanExperiment)({
1240
+ productKeys: {
1241
+ confluence: 'platform_editor_renderer_toolbar_updates'
1242
+ },
1243
+ param: 'isEnabled',
1244
+ defaultValue: false
1228
1245
  })
1229
1246
  };
@@ -959,6 +959,15 @@ export const editorExperimentsConfig = {
959
959
  param: 'isEnabled',
960
960
  defaultValue: false
961
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
+ }),
962
971
  // Added 2025-11-05
963
972
  platform_editor_lovability_emoji_scaling: createBooleanExperiment({
964
973
  productKeys: {
@@ -1219,5 +1228,13 @@ export const editorExperimentsConfig = {
1219
1228
  },
1220
1229
  param: 'isEnabled',
1221
1230
  defaultValue: false
1231
+ }),
1232
+ // Added 2026-01-29
1233
+ platform_editor_renderer_toolbar_updates: createBooleanExperiment({
1234
+ productKeys: {
1235
+ confluence: 'platform_editor_renderer_toolbar_updates'
1236
+ },
1237
+ param: 'isEnabled',
1238
+ defaultValue: false
1222
1239
  })
1223
1240
  };
@@ -959,6 +959,15 @@ export var editorExperimentsConfig = {
959
959
  param: 'isEnabled',
960
960
  defaultValue: false
961
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
+ }),
962
971
  // Added 2025-11-05
963
972
  platform_editor_lovability_emoji_scaling: createBooleanExperiment({
964
973
  productKeys: {
@@ -1219,5 +1228,13 @@ export var editorExperimentsConfig = {
1219
1228
  },
1220
1229
  param: 'isEnabled',
1221
1230
  defaultValue: false
1231
+ }),
1232
+ // Added 2026-01-29
1233
+ platform_editor_renderer_toolbar_updates: createBooleanExperiment({
1234
+ productKeys: {
1235
+ confluence: 'platform_editor_renderer_toolbar_updates'
1236
+ },
1237
+ param: 'isEnabled',
1238
+ defaultValue: false
1222
1239
  })
1223
1240
  };
@@ -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;
@@ -905,5 +911,11 @@ export declare const editorExperimentsConfig: {
905
911
  productKeys?: ProductKeys;
906
912
  typeGuard: IsBooleanType;
907
913
  };
914
+ platform_editor_renderer_toolbar_updates: {
915
+ defaultValue: boolean;
916
+ param: string;
917
+ productKeys?: ProductKeys;
918
+ typeGuard: IsBooleanType;
919
+ };
908
920
  };
909
921
  export {};
@@ -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;
@@ -905,5 +911,11 @@ export declare const editorExperimentsConfig: {
905
911
  productKeys?: ProductKeys;
906
912
  typeGuard: IsBooleanType;
907
913
  };
914
+ platform_editor_renderer_toolbar_updates: {
915
+ defaultValue: boolean;
916
+ param: string;
917
+ productKeys?: ProductKeys;
918
+ typeGuard: IsBooleanType;
919
+ };
908
920
  };
909
921
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "17.1.0",
3
+ "version": "17.3.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",