@atlaskit/tmp-editor-statsig 12.10.0 → 12.12.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,19 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 12.12.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`5de213b733131`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5de213b733131) -
|
|
8
|
+
[ux] ED-29123 fix paragraph shifting on hover when next to image with wrap-right/left
|
|
9
|
+
|
|
10
|
+
## 12.11.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`52c2f0aa06497`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/52c2f0aa06497) -
|
|
15
|
+
[EDITOR-1433] Add editor_refactor_backspace_task_and_decisions experiment
|
|
16
|
+
|
|
3
17
|
## 12.10.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
|
@@ -875,6 +875,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
875
875
|
param: 'isEnabled',
|
|
876
876
|
defaultValue: false
|
|
877
877
|
}),
|
|
878
|
+
// Added 2025-09-11
|
|
879
|
+
platform_editor_quick_insert_image_wrap_right_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
880
|
+
productKeys: {
|
|
881
|
+
confluence: 'platform_editor_quick_insert_image_wrap_right_fix'
|
|
882
|
+
},
|
|
883
|
+
param: 'isEnabled',
|
|
884
|
+
defaultValue: false
|
|
885
|
+
}),
|
|
878
886
|
// Added 03-09-2025
|
|
879
887
|
cc_editor_interactivity_monitoring: (0, _experimentBuilders.createBooleanExperiment)({
|
|
880
888
|
productKeys: {
|
|
@@ -869,6 +869,14 @@ export const editorExperimentsConfig = {
|
|
|
869
869
|
param: 'isEnabled',
|
|
870
870
|
defaultValue: false
|
|
871
871
|
}),
|
|
872
|
+
// Added 2025-09-11
|
|
873
|
+
platform_editor_quick_insert_image_wrap_right_fix: createBooleanExperiment({
|
|
874
|
+
productKeys: {
|
|
875
|
+
confluence: 'platform_editor_quick_insert_image_wrap_right_fix'
|
|
876
|
+
},
|
|
877
|
+
param: 'isEnabled',
|
|
878
|
+
defaultValue: false
|
|
879
|
+
}),
|
|
872
880
|
// Added 03-09-2025
|
|
873
881
|
cc_editor_interactivity_monitoring: createBooleanExperiment({
|
|
874
882
|
productKeys: {
|
|
@@ -869,6 +869,14 @@ export var editorExperimentsConfig = {
|
|
|
869
869
|
param: 'isEnabled',
|
|
870
870
|
defaultValue: false
|
|
871
871
|
}),
|
|
872
|
+
// Added 2025-09-11
|
|
873
|
+
platform_editor_quick_insert_image_wrap_right_fix: createBooleanExperiment({
|
|
874
|
+
productKeys: {
|
|
875
|
+
confluence: 'platform_editor_quick_insert_image_wrap_right_fix'
|
|
876
|
+
},
|
|
877
|
+
param: 'isEnabled',
|
|
878
|
+
defaultValue: false
|
|
879
|
+
}),
|
|
872
880
|
// Added 03-09-2025
|
|
873
881
|
cc_editor_interactivity_monitoring: createBooleanExperiment({
|
|
874
882
|
productKeys: {
|
|
@@ -642,6 +642,12 @@ export declare const editorExperimentsConfig: {
|
|
|
642
642
|
param: string;
|
|
643
643
|
productKeys?: import("./types").ProductKeys;
|
|
644
644
|
};
|
|
645
|
+
platform_editor_quick_insert_image_wrap_right_fix: {
|
|
646
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
647
|
+
defaultValue: boolean;
|
|
648
|
+
param: string;
|
|
649
|
+
productKeys?: import("./types").ProductKeys;
|
|
650
|
+
};
|
|
645
651
|
cc_editor_interactivity_monitoring: {
|
|
646
652
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
647
653
|
defaultValue: boolean;
|
|
@@ -642,6 +642,12 @@ export declare const editorExperimentsConfig: {
|
|
|
642
642
|
param: string;
|
|
643
643
|
productKeys?: import("./types").ProductKeys;
|
|
644
644
|
};
|
|
645
|
+
platform_editor_quick_insert_image_wrap_right_fix: {
|
|
646
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
647
|
+
defaultValue: boolean;
|
|
648
|
+
param: string;
|
|
649
|
+
productKeys?: import("./types").ProductKeys;
|
|
650
|
+
};
|
|
645
651
|
cc_editor_interactivity_monitoring: {
|
|
646
652
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
647
653
|
defaultValue: boolean;
|
package/package.json
CHANGED