@atlaskit/tmp-editor-statsig 13.34.0 → 13.35.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
|
+
## 13.35.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`f79abec64be13`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f79abec64be13) -
|
|
8
|
+
[EDITOR-2624] Add max width mode for ultra wide monitors to the Editor and Renderer
|
|
9
|
+
|
|
3
10
|
## 13.34.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -34,6 +34,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
34
34
|
param: 'isEnabled',
|
|
35
35
|
defaultValue: false
|
|
36
36
|
}),
|
|
37
|
+
// Added 2025-11-03
|
|
38
|
+
editor_tinymce_full_width_mode: (0, _experimentBuilders.createBooleanExperiment)({
|
|
39
|
+
productKeys: {
|
|
40
|
+
confluence: 'editor_tinymce_full_width_mode'
|
|
41
|
+
},
|
|
42
|
+
param: 'isEnabled',
|
|
43
|
+
defaultValue: false
|
|
44
|
+
}),
|
|
37
45
|
cc_editor_insm_doc_size_stats: (0, _experimentBuilders.createBooleanExperiment)({
|
|
38
46
|
productKeys: {
|
|
39
47
|
confluence: 'cc_editor_insm_doc_size_stats'
|
|
@@ -28,6 +28,14 @@ export const editorExperimentsConfig = {
|
|
|
28
28
|
param: 'isEnabled',
|
|
29
29
|
defaultValue: false
|
|
30
30
|
}),
|
|
31
|
+
// Added 2025-11-03
|
|
32
|
+
editor_tinymce_full_width_mode: createBooleanExperiment({
|
|
33
|
+
productKeys: {
|
|
34
|
+
confluence: 'editor_tinymce_full_width_mode'
|
|
35
|
+
},
|
|
36
|
+
param: 'isEnabled',
|
|
37
|
+
defaultValue: false
|
|
38
|
+
}),
|
|
31
39
|
cc_editor_insm_doc_size_stats: createBooleanExperiment({
|
|
32
40
|
productKeys: {
|
|
33
41
|
confluence: 'cc_editor_insm_doc_size_stats'
|
|
@@ -28,6 +28,14 @@ export var editorExperimentsConfig = {
|
|
|
28
28
|
param: 'isEnabled',
|
|
29
29
|
defaultValue: false
|
|
30
30
|
}),
|
|
31
|
+
// Added 2025-11-03
|
|
32
|
+
editor_tinymce_full_width_mode: createBooleanExperiment({
|
|
33
|
+
productKeys: {
|
|
34
|
+
confluence: 'editor_tinymce_full_width_mode'
|
|
35
|
+
},
|
|
36
|
+
param: 'isEnabled',
|
|
37
|
+
defaultValue: false
|
|
38
|
+
}),
|
|
31
39
|
cc_editor_insm_doc_size_stats: createBooleanExperiment({
|
|
32
40
|
productKeys: {
|
|
33
41
|
confluence: 'cc_editor_insm_doc_size_stats'
|
|
@@ -17,6 +17,12 @@ export declare const editorExperimentsConfig: {
|
|
|
17
17
|
param: string;
|
|
18
18
|
productKeys?: import("./types").ProductKeys;
|
|
19
19
|
};
|
|
20
|
+
editor_tinymce_full_width_mode: {
|
|
21
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
22
|
+
defaultValue: boolean;
|
|
23
|
+
param: string;
|
|
24
|
+
productKeys?: import("./types").ProductKeys;
|
|
25
|
+
};
|
|
20
26
|
cc_editor_insm_doc_size_stats: {
|
|
21
27
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
22
28
|
defaultValue: boolean;
|
|
@@ -17,6 +17,12 @@ export declare const editorExperimentsConfig: {
|
|
|
17
17
|
param: string;
|
|
18
18
|
productKeys?: import("./types").ProductKeys;
|
|
19
19
|
};
|
|
20
|
+
editor_tinymce_full_width_mode: {
|
|
21
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
22
|
+
defaultValue: boolean;
|
|
23
|
+
param: string;
|
|
24
|
+
productKeys?: import("./types").ProductKeys;
|
|
25
|
+
};
|
|
20
26
|
cc_editor_insm_doc_size_stats: {
|
|
21
27
|
typeGuard: typeof import("./type-guards").isBoolean;
|
|
22
28
|
defaultValue: boolean;
|
package/package.json
CHANGED