@atlaskit/tmp-editor-statsig 74.4.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 +18 -0
- package/dist/cjs/experiments-config.js +16 -0
- package/dist/es2019/experiments-config.js +16 -0
- package/dist/esm/experiments-config.js +16 -0
- package/dist/types/experiments-config.d.ts +12 -0
- package/dist/types-ts4.5/experiments-config.d.ts +12 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
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
|
+
|
|
13
|
+
## 74.5.0
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- [`d5eb28ba8a0f8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d5eb28ba8a0f8) -
|
|
18
|
+
EDITOR-6724: Fix object assignment issue in attrs comparison util to avoid attrs being dropped in
|
|
19
|
+
ProseMirror when they're being compared.
|
|
20
|
+
|
|
3
21
|
## 74.4.0
|
|
4
22
|
|
|
5
23
|
### 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: {
|
|
@@ -2079,5 +2087,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2079
2087
|
},
|
|
2080
2088
|
param: 'isEnabled',
|
|
2081
2089
|
defaultValue: false
|
|
2090
|
+
}),
|
|
2091
|
+
// Added 2026-05-04
|
|
2092
|
+
platform_editor_show_diff_fix_missing_attrs: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2093
|
+
productKeys: {
|
|
2094
|
+
confluence: 'platform_editor_show_diff_fix_missing_attrs'
|
|
2095
|
+
},
|
|
2096
|
+
param: 'isEnabled',
|
|
2097
|
+
defaultValue: false
|
|
2082
2098
|
})
|
|
2083
2099
|
};
|
|
@@ -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: {
|
|
@@ -2073,5 +2081,13 @@ export const editorExperimentsConfig = {
|
|
|
2073
2081
|
},
|
|
2074
2082
|
param: 'isEnabled',
|
|
2075
2083
|
defaultValue: false
|
|
2084
|
+
}),
|
|
2085
|
+
// Added 2026-05-04
|
|
2086
|
+
platform_editor_show_diff_fix_missing_attrs: createBooleanExperiment({
|
|
2087
|
+
productKeys: {
|
|
2088
|
+
confluence: 'platform_editor_show_diff_fix_missing_attrs'
|
|
2089
|
+
},
|
|
2090
|
+
param: 'isEnabled',
|
|
2091
|
+
defaultValue: false
|
|
2076
2092
|
})
|
|
2077
2093
|
};
|
|
@@ -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: {
|
|
@@ -2073,5 +2081,13 @@ export var editorExperimentsConfig = {
|
|
|
2073
2081
|
},
|
|
2074
2082
|
param: 'isEnabled',
|
|
2075
2083
|
defaultValue: false
|
|
2084
|
+
}),
|
|
2085
|
+
// Added 2026-05-04
|
|
2086
|
+
platform_editor_show_diff_fix_missing_attrs: createBooleanExperiment({
|
|
2087
|
+
productKeys: {
|
|
2088
|
+
confluence: 'platform_editor_show_diff_fix_missing_attrs'
|
|
2089
|
+
},
|
|
2090
|
+
param: 'isEnabled',
|
|
2091
|
+
defaultValue: false
|
|
2076
2092
|
})
|
|
2077
2093
|
};
|
|
@@ -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;
|
|
@@ -1530,5 +1536,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1530
1536
|
productKeys?: ProductKeys;
|
|
1531
1537
|
typeGuard: IsBooleanType;
|
|
1532
1538
|
};
|
|
1539
|
+
platform_editor_show_diff_fix_missing_attrs: {
|
|
1540
|
+
defaultValue: boolean;
|
|
1541
|
+
param: string;
|
|
1542
|
+
productKeys?: ProductKeys;
|
|
1543
|
+
typeGuard: IsBooleanType;
|
|
1544
|
+
};
|
|
1533
1545
|
};
|
|
1534
1546
|
export {};
|
|
@@ -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;
|
|
@@ -1530,5 +1536,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1530
1536
|
productKeys?: ProductKeys;
|
|
1531
1537
|
typeGuard: IsBooleanType;
|
|
1532
1538
|
};
|
|
1539
|
+
platform_editor_show_diff_fix_missing_attrs: {
|
|
1540
|
+
defaultValue: boolean;
|
|
1541
|
+
param: string;
|
|
1542
|
+
productKeys?: ProductKeys;
|
|
1543
|
+
typeGuard: IsBooleanType;
|
|
1544
|
+
};
|
|
1533
1545
|
};
|
|
1534
1546
|
export {};
|
package/package.json
CHANGED