@atlaskit/tmp-editor-statsig 74.5.0 → 74.6.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,15 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 74.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`2bc197b19a9da`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2bc197b19a9da) -
|
|
8
|
+
[ux] Auto-finalize only when the default space supports the content type being created. When space
|
|
9
|
+
does not support said content type, defaultSpaceOption will be { label: undefined, value:
|
|
10
|
+
undefined }, so we explicitly check for its value before determining whether auto finalize should
|
|
11
|
+
be allowed
|
|
12
|
+
|
|
3
13
|
## 74.5.0
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|
|
@@ -46,6 +46,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
46
46
|
param: 'isEnabled',
|
|
47
47
|
defaultValue: false
|
|
48
48
|
}),
|
|
49
|
+
// Added 2026-04-21
|
|
50
|
+
cwr_page_tree_auto_finalize: (0, _experimentBuilders.createBooleanExperiment)({
|
|
51
|
+
productKeys: {
|
|
52
|
+
confluence: 'cwr_page_tree_auto_finalize'
|
|
53
|
+
},
|
|
54
|
+
param: 'isEnabled',
|
|
55
|
+
defaultValue: false
|
|
56
|
+
}),
|
|
49
57
|
// Added 22-12-2025
|
|
50
58
|
confluence_load_editor_title_on_transition: (0, _experimentBuilders.createBooleanExperiment)({
|
|
51
59
|
productKeys: {
|
|
@@ -40,6 +40,14 @@ export const editorExperimentsConfig = {
|
|
|
40
40
|
param: 'isEnabled',
|
|
41
41
|
defaultValue: false
|
|
42
42
|
}),
|
|
43
|
+
// Added 2026-04-21
|
|
44
|
+
cwr_page_tree_auto_finalize: createBooleanExperiment({
|
|
45
|
+
productKeys: {
|
|
46
|
+
confluence: 'cwr_page_tree_auto_finalize'
|
|
47
|
+
},
|
|
48
|
+
param: 'isEnabled',
|
|
49
|
+
defaultValue: false
|
|
50
|
+
}),
|
|
43
51
|
// Added 22-12-2025
|
|
44
52
|
confluence_load_editor_title_on_transition: createBooleanExperiment({
|
|
45
53
|
productKeys: {
|
|
@@ -40,6 +40,14 @@ export var editorExperimentsConfig = {
|
|
|
40
40
|
param: 'isEnabled',
|
|
41
41
|
defaultValue: false
|
|
42
42
|
}),
|
|
43
|
+
// Added 2026-04-21
|
|
44
|
+
cwr_page_tree_auto_finalize: createBooleanExperiment({
|
|
45
|
+
productKeys: {
|
|
46
|
+
confluence: 'cwr_page_tree_auto_finalize'
|
|
47
|
+
},
|
|
48
|
+
param: 'isEnabled',
|
|
49
|
+
defaultValue: false
|
|
50
|
+
}),
|
|
43
51
|
// Added 22-12-2025
|
|
44
52
|
confluence_load_editor_title_on_transition: createBooleanExperiment({
|
|
45
53
|
productKeys: {
|
|
@@ -32,6 +32,12 @@ export declare const editorExperimentsConfig: {
|
|
|
32
32
|
productKeys?: ProductKeys;
|
|
33
33
|
typeGuard: IsBooleanType;
|
|
34
34
|
};
|
|
35
|
+
cwr_page_tree_auto_finalize: {
|
|
36
|
+
defaultValue: boolean;
|
|
37
|
+
param: string;
|
|
38
|
+
productKeys?: ProductKeys;
|
|
39
|
+
typeGuard: IsBooleanType;
|
|
40
|
+
};
|
|
35
41
|
cc_editor_ai_content_mode: {
|
|
36
42
|
defaultValue: 'control' | 'test';
|
|
37
43
|
param: string;
|
|
@@ -32,6 +32,12 @@ export declare const editorExperimentsConfig: {
|
|
|
32
32
|
productKeys?: ProductKeys;
|
|
33
33
|
typeGuard: IsBooleanType;
|
|
34
34
|
};
|
|
35
|
+
cwr_page_tree_auto_finalize: {
|
|
36
|
+
defaultValue: boolean;
|
|
37
|
+
param: string;
|
|
38
|
+
productKeys?: ProductKeys;
|
|
39
|
+
typeGuard: IsBooleanType;
|
|
40
|
+
};
|
|
35
41
|
cc_editor_ai_content_mode: {
|
|
36
42
|
defaultValue: 'control' | 'test';
|
|
37
43
|
param: string;
|
package/package.json
CHANGED