@atlaskit/tmp-editor-statsig 13.27.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,13 @@
|
|
|
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
|
+
|
|
3
11
|
## 13.27.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -1099,6 +1099,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1099
1099
|
values: ['control', 'test_with_overflow', 'test_without_overflow'],
|
|
1100
1100
|
defaultValue: 'control'
|
|
1101
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
|
+
}),
|
|
1102
1110
|
// Added 2025-10-29
|
|
1103
1111
|
platform_editor_lovability_inline_code: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1104
1112
|
productKeys: {
|
|
@@ -1093,6 +1093,14 @@ export const editorExperimentsConfig = {
|
|
|
1093
1093
|
values: ['control', 'test_with_overflow', 'test_without_overflow'],
|
|
1094
1094
|
defaultValue: 'control'
|
|
1095
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
|
+
}),
|
|
1096
1104
|
// Added 2025-10-29
|
|
1097
1105
|
platform_editor_lovability_inline_code: createBooleanExperiment({
|
|
1098
1106
|
productKeys: {
|
|
@@ -1093,6 +1093,14 @@ export var editorExperimentsConfig = {
|
|
|
1093
1093
|
values: ['control', 'test_with_overflow', 'test_without_overflow'],
|
|
1094
1094
|
defaultValue: 'control'
|
|
1095
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
|
+
}),
|
|
1096
1104
|
// Added 2025-10-29
|
|
1097
1105
|
platform_editor_lovability_inline_code: createBooleanExperiment({
|
|
1098
1106
|
productKeys: {
|
|
@@ -807,6 +807,12 @@ 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
|
+
};
|
|
810
816
|
platform_editor_lovability_inline_code: {
|
|
811
817
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
812
818
|
defaultValue: boolean;
|
|
@@ -807,6 +807,12 @@ 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
|
+
};
|
|
810
816
|
platform_editor_lovability_inline_code: {
|
|
811
817
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
812
818
|
defaultValue: boolean;
|
package/package.json
CHANGED