@atlaskit/tmp-editor-statsig 15.1.0 → 15.2.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
|
+
## 15.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`6ecbe7ee10388`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6ecbe7ee10388) -
|
|
8
|
+
Started an experiment on image editing, added a button in the floating toolbar
|
|
9
|
+
|
|
3
10
|
## 15.1.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1173,5 +1173,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1173
1173
|
},
|
|
1174
1174
|
param: 'isEnabled',
|
|
1175
1175
|
defaultValue: false
|
|
1176
|
+
}),
|
|
1177
|
+
// Added 2025-12-08
|
|
1178
|
+
platform_editor_add_image_editing: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1179
|
+
productKeys: {
|
|
1180
|
+
confluence: 'platform_editor_add_image_editing'
|
|
1181
|
+
},
|
|
1182
|
+
param: 'isEnabled',
|
|
1183
|
+
defaultValue: false
|
|
1176
1184
|
})
|
|
1177
1185
|
};
|
|
@@ -1167,5 +1167,13 @@ export const editorExperimentsConfig = {
|
|
|
1167
1167
|
},
|
|
1168
1168
|
param: 'isEnabled',
|
|
1169
1169
|
defaultValue: false
|
|
1170
|
+
}),
|
|
1171
|
+
// Added 2025-12-08
|
|
1172
|
+
platform_editor_add_image_editing: createBooleanExperiment({
|
|
1173
|
+
productKeys: {
|
|
1174
|
+
confluence: 'platform_editor_add_image_editing'
|
|
1175
|
+
},
|
|
1176
|
+
param: 'isEnabled',
|
|
1177
|
+
defaultValue: false
|
|
1170
1178
|
})
|
|
1171
1179
|
};
|
|
@@ -1167,5 +1167,13 @@ export var editorExperimentsConfig = {
|
|
|
1167
1167
|
},
|
|
1168
1168
|
param: 'isEnabled',
|
|
1169
1169
|
defaultValue: false
|
|
1170
|
+
}),
|
|
1171
|
+
// Added 2025-12-08
|
|
1172
|
+
platform_editor_add_image_editing: createBooleanExperiment({
|
|
1173
|
+
productKeys: {
|
|
1174
|
+
confluence: 'platform_editor_add_image_editing'
|
|
1175
|
+
},
|
|
1176
|
+
param: 'isEnabled',
|
|
1177
|
+
defaultValue: false
|
|
1170
1178
|
})
|
|
1171
1179
|
};
|
|
@@ -775,6 +775,12 @@ export declare const editorExperimentsConfig: {
|
|
|
775
775
|
productKeys?: ProductKeys;
|
|
776
776
|
typeGuard: IsBooleanType;
|
|
777
777
|
};
|
|
778
|
+
platform_editor_add_image_editing: {
|
|
779
|
+
defaultValue: boolean;
|
|
780
|
+
param: string;
|
|
781
|
+
productKeys?: ProductKeys;
|
|
782
|
+
typeGuard: IsBooleanType;
|
|
783
|
+
};
|
|
778
784
|
platform_hover_card_preview_panel: {
|
|
779
785
|
defaultValue: 'control' | 'test';
|
|
780
786
|
param: string;
|
|
@@ -775,6 +775,12 @@ export declare const editorExperimentsConfig: {
|
|
|
775
775
|
productKeys?: ProductKeys;
|
|
776
776
|
typeGuard: IsBooleanType;
|
|
777
777
|
};
|
|
778
|
+
platform_editor_add_image_editing: {
|
|
779
|
+
defaultValue: boolean;
|
|
780
|
+
param: string;
|
|
781
|
+
productKeys?: ProductKeys;
|
|
782
|
+
typeGuard: IsBooleanType;
|
|
783
|
+
};
|
|
778
784
|
platform_hover_card_preview_panel: {
|
|
779
785
|
defaultValue: 'control' | 'test';
|
|
780
786
|
param: string;
|
package/package.json
CHANGED