@atlaskit/tmp-editor-statsig 13.27.0 → 13.29.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 +15 -0
- package/dist/cjs/experiments-config.js +16 -0
- package/dist/es2019/experiments-config.js +16 -0
- package/dist/esm/experiments-config.js +16 -0
- package/dist/types/experiments-config.d.ts +12 -0
- package/dist/types-ts4.5/experiments-config.d.ts +12 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 13.29.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`851ebf59a82a8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/851ebf59a82a8) -
|
|
8
|
+
[EDITOR-2459] add new experiment to config file
|
|
9
|
+
|
|
10
|
+
## 13.28.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`0f988dbb4b54b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0f988dbb4b54b) -
|
|
15
|
+
Added an experiment and implemented changes to disable lazy loading of internal images found
|
|
16
|
+
within Confluence PDF export pages
|
|
17
|
+
|
|
3
18
|
## 13.27.0
|
|
4
19
|
|
|
5
20
|
### 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: {
|
|
@@ -1106,5 +1114,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1106
1114
|
},
|
|
1107
1115
|
param: 'isEnabled',
|
|
1108
1116
|
defaultValue: false
|
|
1117
|
+
}),
|
|
1118
|
+
// Added 2025-11-05
|
|
1119
|
+
platform_editor_lovability_emoji_scaling: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1120
|
+
productKeys: {
|
|
1121
|
+
confluence: 'platform_editor_lovability_emoji_scaling'
|
|
1122
|
+
},
|
|
1123
|
+
param: 'isEnabled',
|
|
1124
|
+
defaultValue: false
|
|
1109
1125
|
})
|
|
1110
1126
|
};
|
|
@@ -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: {
|
|
@@ -1100,5 +1108,13 @@ export const editorExperimentsConfig = {
|
|
|
1100
1108
|
},
|
|
1101
1109
|
param: 'isEnabled',
|
|
1102
1110
|
defaultValue: false
|
|
1111
|
+
}),
|
|
1112
|
+
// Added 2025-11-05
|
|
1113
|
+
platform_editor_lovability_emoji_scaling: createBooleanExperiment({
|
|
1114
|
+
productKeys: {
|
|
1115
|
+
confluence: 'platform_editor_lovability_emoji_scaling'
|
|
1116
|
+
},
|
|
1117
|
+
param: 'isEnabled',
|
|
1118
|
+
defaultValue: false
|
|
1103
1119
|
})
|
|
1104
1120
|
};
|
|
@@ -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: {
|
|
@@ -1100,5 +1108,13 @@ export var editorExperimentsConfig = {
|
|
|
1100
1108
|
},
|
|
1101
1109
|
param: 'isEnabled',
|
|
1102
1110
|
defaultValue: false
|
|
1111
|
+
}),
|
|
1112
|
+
// Added 2025-11-05
|
|
1113
|
+
platform_editor_lovability_emoji_scaling: createBooleanExperiment({
|
|
1114
|
+
productKeys: {
|
|
1115
|
+
confluence: 'platform_editor_lovability_emoji_scaling'
|
|
1116
|
+
},
|
|
1117
|
+
param: 'isEnabled',
|
|
1118
|
+
defaultValue: false
|
|
1103
1119
|
})
|
|
1104
1120
|
};
|
|
@@ -807,10 +807,22 @@ 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;
|
|
813
819
|
param: string;
|
|
814
820
|
productKeys?: import("./types").ProductKeys;
|
|
815
821
|
};
|
|
822
|
+
platform_editor_lovability_emoji_scaling: {
|
|
823
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
824
|
+
defaultValue: boolean;
|
|
825
|
+
param: string;
|
|
826
|
+
productKeys?: import("./types").ProductKeys;
|
|
827
|
+
};
|
|
816
828
|
};
|
|
@@ -807,10 +807,22 @@ 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;
|
|
813
819
|
param: string;
|
|
814
820
|
productKeys?: import("./types").ProductKeys;
|
|
815
821
|
};
|
|
822
|
+
platform_editor_lovability_emoji_scaling: {
|
|
823
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
824
|
+
defaultValue: boolean;
|
|
825
|
+
param: string;
|
|
826
|
+
productKeys?: import("./types").ProductKeys;
|
|
827
|
+
};
|
|
816
828
|
};
|
package/package.json
CHANGED