@atlaskit/tmp-editor-statsig 13.26.0 → 13.28.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,20 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 13.28.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`0f988dbb4b54b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0f988dbb4b54b) -
8
+ Added an experiment and implemented changes to disable lazy loading of internal images found
9
+ within Confluence PDF export pages
10
+
11
+ ## 13.27.0
12
+
13
+ ### Minor Changes
14
+
15
+ - [`3c501a06f7c8b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3c501a06f7c8b) -
16
+ [EDITOR-2460] add new experiment to config file
17
+
3
18
  ## 13.26.0
4
19
 
5
20
  ### Minor Changes
@@ -1098,5 +1098,21 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1098
1098
  param: 'cohort',
1099
1099
  values: ['control', 'test_with_overflow', 'test_without_overflow'],
1100
1100
  defaultValue: 'control'
1101
+ }),
1102
+ // Added 2025-11-04
1103
+ platform_editor_disable_lazy_load_media: (0, _experimentBuilders.createBooleanExperiment)({
1104
+ productKeys: {
1105
+ confluence: 'platform_editor_disable_lazy_load_media'
1106
+ },
1107
+ param: 'isEnabled',
1108
+ defaultValue: false
1109
+ }),
1110
+ // Added 2025-10-29
1111
+ platform_editor_lovability_inline_code: (0, _experimentBuilders.createBooleanExperiment)({
1112
+ productKeys: {
1113
+ confluence: 'platform_editor_lovability_inline_code'
1114
+ },
1115
+ param: 'isEnabled',
1116
+ defaultValue: false
1101
1117
  })
1102
1118
  };
@@ -1092,5 +1092,21 @@ export const editorExperimentsConfig = {
1092
1092
  param: 'cohort',
1093
1093
  values: ['control', 'test_with_overflow', 'test_without_overflow'],
1094
1094
  defaultValue: 'control'
1095
+ }),
1096
+ // Added 2025-11-04
1097
+ platform_editor_disable_lazy_load_media: createBooleanExperiment({
1098
+ productKeys: {
1099
+ confluence: 'platform_editor_disable_lazy_load_media'
1100
+ },
1101
+ param: 'isEnabled',
1102
+ defaultValue: false
1103
+ }),
1104
+ // Added 2025-10-29
1105
+ platform_editor_lovability_inline_code: createBooleanExperiment({
1106
+ productKeys: {
1107
+ confluence: 'platform_editor_lovability_inline_code'
1108
+ },
1109
+ param: 'isEnabled',
1110
+ defaultValue: false
1095
1111
  })
1096
1112
  };
@@ -1092,5 +1092,21 @@ export var editorExperimentsConfig = {
1092
1092
  param: 'cohort',
1093
1093
  values: ['control', 'test_with_overflow', 'test_without_overflow'],
1094
1094
  defaultValue: 'control'
1095
+ }),
1096
+ // Added 2025-11-04
1097
+ platform_editor_disable_lazy_load_media: createBooleanExperiment({
1098
+ productKeys: {
1099
+ confluence: 'platform_editor_disable_lazy_load_media'
1100
+ },
1101
+ param: 'isEnabled',
1102
+ defaultValue: false
1103
+ }),
1104
+ // Added 2025-10-29
1105
+ platform_editor_lovability_inline_code: createBooleanExperiment({
1106
+ productKeys: {
1107
+ confluence: 'platform_editor_lovability_inline_code'
1108
+ },
1109
+ param: 'isEnabled',
1110
+ defaultValue: false
1095
1111
  })
1096
1112
  };
@@ -807,4 +807,16 @@ export declare const editorExperimentsConfig: {
807
807
  param: string;
808
808
  productKeys?: import("./types").ProductKeys;
809
809
  };
810
+ platform_editor_disable_lazy_load_media: {
811
+ typeGuard: typeof import("./type-guards").isBoolean;
812
+ defaultValue: boolean;
813
+ param: string;
814
+ productKeys?: import("./types").ProductKeys;
815
+ };
816
+ platform_editor_lovability_inline_code: {
817
+ typeGuard: typeof import("./type-guards").isBoolean;
818
+ defaultValue: boolean;
819
+ param: string;
820
+ productKeys?: import("./types").ProductKeys;
821
+ };
810
822
  };
@@ -807,4 +807,16 @@ export declare const editorExperimentsConfig: {
807
807
  param: string;
808
808
  productKeys?: import("./types").ProductKeys;
809
809
  };
810
+ platform_editor_disable_lazy_load_media: {
811
+ typeGuard: typeof import("./type-guards").isBoolean;
812
+ defaultValue: boolean;
813
+ param: string;
814
+ productKeys?: import("./types").ProductKeys;
815
+ };
816
+ platform_editor_lovability_inline_code: {
817
+ typeGuard: typeof import("./type-guards").isBoolean;
818
+ defaultValue: boolean;
819
+ param: string;
820
+ productKeys?: import("./types").ProductKeys;
821
+ };
810
822
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "13.26.0",
3
+ "version": "13.28.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",