@atlaskit/tmp-editor-statsig 126.1.0 → 126.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
|
+
## 126.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`f4f1a7be76c2c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f4f1a7be76c2c) -
|
|
8
|
+
Add reusable status suggestions to the editor status picker
|
|
9
|
+
|
|
3
10
|
## 126.1.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -39,6 +39,14 @@ var disallowsProductKeys = exports.disallowsProductKeys = ['platform_editor_bloc
|
|
|
39
39
|
var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
40
40
|
// new format to avoid collisions with other users when updating the file
|
|
41
41
|
|
|
42
|
+
// Added 2026-07-17
|
|
43
|
+
platform_editor_status_popup_suggestions: (0, _experimentBuilders.createBooleanExperiment)({
|
|
44
|
+
productKeys: {
|
|
45
|
+
confluence: 'platform_editor_status_popup_suggestions'
|
|
46
|
+
},
|
|
47
|
+
param: 'isEnabled',
|
|
48
|
+
defaultValue: false
|
|
49
|
+
}),
|
|
42
50
|
// Added 2026-06-25
|
|
43
51
|
platform_editor_first_node_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
44
52
|
productKeys: {
|
|
@@ -33,6 +33,14 @@ export const disallowsProductKeys = ['platform_editor_block_menu', 'platform_edi
|
|
|
33
33
|
export const editorExperimentsConfig = {
|
|
34
34
|
// new format to avoid collisions with other users when updating the file
|
|
35
35
|
|
|
36
|
+
// Added 2026-07-17
|
|
37
|
+
platform_editor_status_popup_suggestions: createBooleanExperiment({
|
|
38
|
+
productKeys: {
|
|
39
|
+
confluence: 'platform_editor_status_popup_suggestions'
|
|
40
|
+
},
|
|
41
|
+
param: 'isEnabled',
|
|
42
|
+
defaultValue: false
|
|
43
|
+
}),
|
|
36
44
|
// Added 2026-06-25
|
|
37
45
|
platform_editor_first_node_fix: createBooleanExperiment({
|
|
38
46
|
productKeys: {
|
|
@@ -33,6 +33,14 @@ export var disallowsProductKeys = ['platform_editor_block_menu', 'platform_edito
|
|
|
33
33
|
export var editorExperimentsConfig = {
|
|
34
34
|
// new format to avoid collisions with other users when updating the file
|
|
35
35
|
|
|
36
|
+
// Added 2026-07-17
|
|
37
|
+
platform_editor_status_popup_suggestions: createBooleanExperiment({
|
|
38
|
+
productKeys: {
|
|
39
|
+
confluence: 'platform_editor_status_popup_suggestions'
|
|
40
|
+
},
|
|
41
|
+
param: 'isEnabled',
|
|
42
|
+
defaultValue: false
|
|
43
|
+
}),
|
|
36
44
|
// Added 2026-06-25
|
|
37
45
|
platform_editor_first_node_fix: createBooleanExperiment({
|
|
38
46
|
productKeys: {
|
|
@@ -21,6 +21,12 @@ export type ExperimentDefaultValue<ExperimentName extends keyof EditorExperiment
|
|
|
21
21
|
* existing experiments.
|
|
22
22
|
*/
|
|
23
23
|
export declare const editorExperimentsConfig: {
|
|
24
|
+
platform_editor_status_popup_suggestions: {
|
|
25
|
+
defaultValue: boolean;
|
|
26
|
+
param: string;
|
|
27
|
+
productKeys?: ProductKeys;
|
|
28
|
+
typeGuard: IsBooleanType;
|
|
29
|
+
};
|
|
24
30
|
confluence_inline_comments_fix_stale_selection: {
|
|
25
31
|
defaultValue: boolean;
|
|
26
32
|
param: string;
|
package/package.json
CHANGED