@atlaskit/tmp-editor-statsig 13.10.1 → 13.11.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,12 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 13.11.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`81a75afebab41`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/81a75afebab41) -
8
+ Update api for smarter suggested space recommendations.
9
+
3
10
  ## 13.10.1
4
11
 
5
12
  ### Patch Changes
@@ -355,7 +362,6 @@
355
362
 
356
363
  - [`0d0fe7a300841`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0d0fe7a300841) -
357
364
  Cleanup platform_editor_usesharedpluginstatewithselector experiment
358
-
359
365
  - BREAKING CHANGE: sharedPluginStateHookMigratorFactory is deleted from @atlaskit/editor-common
360
366
 
361
367
  ## 12.8.0
@@ -1157,7 +1163,6 @@
1157
1163
 
1158
1164
  This experiment was only enabled for Confluence and should not have been enabled in other places.
1159
1165
  If for some reason any of the following props/state/methdos were used please remove them:
1160
-
1161
1166
  - isConsumption
1162
1167
  - contentMode
1163
1168
  - initialContentMode
@@ -2094,12 +2099,10 @@
2094
2099
  [ux] [ED-25085] Migrate typography \
2095
2100
 
2096
2101
  editor-plugin-media:
2097
-
2098
2102
  - replace caption placeholder span with button
2099
2103
  - replace x between width and height pixel entry with symbol × \
2100
2104
 
2101
2105
  tmp-editor-statsig:
2102
-
2103
2106
  - Add experiment `platform_editor_typography_migration_ugc`
2104
2107
 
2105
2108
  ## 2.2.1
@@ -2328,7 +2331,6 @@
2328
2331
  [`705fe39cae267`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/705fe39cae267) -
2329
2332
  [ED-24597] Update to log `platform_editor_basic_text_transformations` exposure event only for
2330
2333
  users meet all of 3 checks:
2331
-
2332
2334
  - Are enrolled to the experiment
2333
2335
  - Have AI disabled
2334
2336
  - Make top level text selection
@@ -980,6 +980,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
980
980
  param: 'isEnabled',
981
981
  defaultValue: false
982
982
  }),
983
+ // Added 2025-10-10
984
+ platform_use_llm_space_recommendations: (0, _experimentBuilders.createBooleanExperiment)({
985
+ productKeys: {
986
+ confluence: 'platform_use_llm_space_recommendations'
987
+ },
988
+ param: 'isEnabled',
989
+ defaultValue: false
990
+ }),
983
991
  // Added 2025-09-15
984
992
  platform_editor_text_highlight_padding: (0, _experimentBuilders.createBooleanExperiment)({
985
993
  productKeys: {
@@ -974,6 +974,14 @@ export const editorExperimentsConfig = {
974
974
  param: 'isEnabled',
975
975
  defaultValue: false
976
976
  }),
977
+ // Added 2025-10-10
978
+ platform_use_llm_space_recommendations: createBooleanExperiment({
979
+ productKeys: {
980
+ confluence: 'platform_use_llm_space_recommendations'
981
+ },
982
+ param: 'isEnabled',
983
+ defaultValue: false
984
+ }),
977
985
  // Added 2025-09-15
978
986
  platform_editor_text_highlight_padding: createBooleanExperiment({
979
987
  productKeys: {
@@ -974,6 +974,14 @@ export var editorExperimentsConfig = {
974
974
  param: 'isEnabled',
975
975
  defaultValue: false
976
976
  }),
977
+ // Added 2025-10-10
978
+ platform_use_llm_space_recommendations: createBooleanExperiment({
979
+ productKeys: {
980
+ confluence: 'platform_use_llm_space_recommendations'
981
+ },
982
+ param: 'isEnabled',
983
+ defaultValue: false
984
+ }),
977
985
  // Added 2025-09-15
978
986
  platform_editor_text_highlight_padding: createBooleanExperiment({
979
987
  productKeys: {
@@ -717,6 +717,12 @@ export declare const editorExperimentsConfig: {
717
717
  param: string;
718
718
  productKeys?: import("./types").ProductKeys;
719
719
  };
720
+ platform_use_llm_space_recommendations: {
721
+ typeGuard: typeof import("./type-guards").isBoolean;
722
+ defaultValue: boolean;
723
+ param: string;
724
+ productKeys?: import("./types").ProductKeys;
725
+ };
720
726
  platform_editor_text_highlight_padding: {
721
727
  typeGuard: typeof import("./type-guards").isBoolean;
722
728
  defaultValue: boolean;
@@ -717,6 +717,12 @@ export declare const editorExperimentsConfig: {
717
717
  param: string;
718
718
  productKeys?: import("./types").ProductKeys;
719
719
  };
720
+ platform_use_llm_space_recommendations: {
721
+ typeGuard: typeof import("./type-guards").isBoolean;
722
+ defaultValue: boolean;
723
+ param: string;
724
+ productKeys?: import("./types").ProductKeys;
725
+ };
720
726
  platform_editor_text_highlight_padding: {
721
727
  typeGuard: typeof import("./type-guards").isBoolean;
722
728
  defaultValue: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "13.10.1",
3
+ "version": "13.11.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",
@@ -33,7 +33,7 @@
33
33
  "atlaskit:src": "src/index.ts",
34
34
  "dependencies": {
35
35
  "@atlaskit/feature-gate-js-client": "^5.5.0",
36
- "@atlaskit/react-ufo": "^4.11.0",
36
+ "@atlaskit/react-ufo": "^4.12.0",
37
37
  "@babel/runtime": "^7.0.0"
38
38
  },
39
39
  "peerDependencies": {