@atlaskit/tmp-editor-statsig 12.17.0 → 12.18.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
|
+
## 12.18.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`cebd8f9171426`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cebd8f9171426) -
|
|
8
|
+
[ux] ED-29159 Implement transform task inside lists - handle logic
|
|
9
|
+
|
|
3
10
|
## 12.17.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -957,5 +957,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
957
957
|
},
|
|
958
958
|
param: 'isEnabled',
|
|
959
959
|
defaultValue: false
|
|
960
|
+
}),
|
|
961
|
+
// Added 10-09-2025
|
|
962
|
+
platform_editor_toolbar_task_list_menu_item: (0, _experimentBuilders.createBooleanExperiment)({
|
|
963
|
+
productKeys: {
|
|
964
|
+
confluence: 'platform_editor_toolbar_task_list_menu_item'
|
|
965
|
+
},
|
|
966
|
+
param: 'isEnabled',
|
|
967
|
+
defaultValue: false
|
|
960
968
|
})
|
|
961
969
|
};
|
|
@@ -951,5 +951,13 @@ export const editorExperimentsConfig = {
|
|
|
951
951
|
},
|
|
952
952
|
param: 'isEnabled',
|
|
953
953
|
defaultValue: false
|
|
954
|
+
}),
|
|
955
|
+
// Added 10-09-2025
|
|
956
|
+
platform_editor_toolbar_task_list_menu_item: createBooleanExperiment({
|
|
957
|
+
productKeys: {
|
|
958
|
+
confluence: 'platform_editor_toolbar_task_list_menu_item'
|
|
959
|
+
},
|
|
960
|
+
param: 'isEnabled',
|
|
961
|
+
defaultValue: false
|
|
954
962
|
})
|
|
955
963
|
};
|
|
@@ -951,5 +951,13 @@ export var editorExperimentsConfig = {
|
|
|
951
951
|
},
|
|
952
952
|
param: 'isEnabled',
|
|
953
953
|
defaultValue: false
|
|
954
|
+
}),
|
|
955
|
+
// Added 10-09-2025
|
|
956
|
+
platform_editor_toolbar_task_list_menu_item: createBooleanExperiment({
|
|
957
|
+
productKeys: {
|
|
958
|
+
confluence: 'platform_editor_toolbar_task_list_menu_item'
|
|
959
|
+
},
|
|
960
|
+
param: 'isEnabled',
|
|
961
|
+
defaultValue: false
|
|
954
962
|
})
|
|
955
963
|
};
|
|
@@ -702,4 +702,10 @@ export declare const editorExperimentsConfig: {
|
|
|
702
702
|
param: string;
|
|
703
703
|
productKeys?: import("./types").ProductKeys;
|
|
704
704
|
};
|
|
705
|
+
platform_editor_toolbar_task_list_menu_item: {
|
|
706
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
707
|
+
defaultValue: boolean;
|
|
708
|
+
param: string;
|
|
709
|
+
productKeys?: import("./types").ProductKeys;
|
|
710
|
+
};
|
|
705
711
|
};
|
|
@@ -702,4 +702,10 @@ export declare const editorExperimentsConfig: {
|
|
|
702
702
|
param: string;
|
|
703
703
|
productKeys?: import("./types").ProductKeys;
|
|
704
704
|
};
|
|
705
|
+
platform_editor_toolbar_task_list_menu_item: {
|
|
706
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
707
|
+
defaultValue: boolean;
|
|
708
|
+
param: string;
|
|
709
|
+
productKeys?: import("./types").ProductKeys;
|
|
710
|
+
};
|
|
705
711
|
};
|
package/package.json
CHANGED