@atlaskit/tmp-editor-statsig 35.4.0 → 35.5.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 +7 -0
- package/dist/cjs/exp-test-overrides.js +2 -1
- package/dist/cjs/experiments-config.js +8 -0
- package/dist/es2019/exp-test-overrides.js +2 -1
- package/dist/es2019/experiments-config.js +8 -0
- package/dist/esm/exp-test-overrides.js +2 -1
- package/dist/esm/experiments-config.js +8 -0
- package/dist/types/experiments-config.d.ts +6 -0
- package/dist/types-ts4.5/experiments-config.d.ts +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 35.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`9398ad3ad409c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9398ad3ad409c) -
|
|
8
|
+
[EDITOR-5376] add new `platform_editor_single_player_expand` experiment to statsig config file
|
|
9
|
+
|
|
3
10
|
## 35.4.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -51,5 +51,6 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
51
51
|
platform_editor_reduce_noisy_steps_ncs: false,
|
|
52
52
|
platform_editor_prosemirror_rendered_data: false,
|
|
53
53
|
confluence_compact_text_format: false,
|
|
54
|
-
platform_editor_paste_actions_menu: false
|
|
54
|
+
platform_editor_paste_actions_menu: false,
|
|
55
|
+
platform_editor_single_player_expand: false
|
|
55
56
|
};
|
|
@@ -1672,5 +1672,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1672
1672
|
},
|
|
1673
1673
|
param: 'isEnabled',
|
|
1674
1674
|
defaultValue: false
|
|
1675
|
+
}),
|
|
1676
|
+
// Added 2026-03-06
|
|
1677
|
+
platform_editor_single_player_expand: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1678
|
+
productKeys: {
|
|
1679
|
+
confluence: 'platform_editor_single_player_expand'
|
|
1680
|
+
},
|
|
1681
|
+
param: 'isEnabled',
|
|
1682
|
+
defaultValue: false
|
|
1675
1683
|
})
|
|
1676
1684
|
};
|
|
@@ -45,5 +45,6 @@ export const testBooleanOverrides = {
|
|
|
45
45
|
platform_editor_reduce_noisy_steps_ncs: false,
|
|
46
46
|
platform_editor_prosemirror_rendered_data: false,
|
|
47
47
|
confluence_compact_text_format: false,
|
|
48
|
-
platform_editor_paste_actions_menu: false
|
|
48
|
+
platform_editor_paste_actions_menu: false,
|
|
49
|
+
platform_editor_single_player_expand: false
|
|
49
50
|
};
|
|
@@ -1666,5 +1666,13 @@ export const editorExperimentsConfig = {
|
|
|
1666
1666
|
},
|
|
1667
1667
|
param: 'isEnabled',
|
|
1668
1668
|
defaultValue: false
|
|
1669
|
+
}),
|
|
1670
|
+
// Added 2026-03-06
|
|
1671
|
+
platform_editor_single_player_expand: createBooleanExperiment({
|
|
1672
|
+
productKeys: {
|
|
1673
|
+
confluence: 'platform_editor_single_player_expand'
|
|
1674
|
+
},
|
|
1675
|
+
param: 'isEnabled',
|
|
1676
|
+
defaultValue: false
|
|
1669
1677
|
})
|
|
1670
1678
|
};
|
|
@@ -45,5 +45,6 @@ export var testBooleanOverrides = {
|
|
|
45
45
|
platform_editor_reduce_noisy_steps_ncs: false,
|
|
46
46
|
platform_editor_prosemirror_rendered_data: false,
|
|
47
47
|
confluence_compact_text_format: false,
|
|
48
|
-
platform_editor_paste_actions_menu: false
|
|
48
|
+
platform_editor_paste_actions_menu: false,
|
|
49
|
+
platform_editor_single_player_expand: false
|
|
49
50
|
};
|
|
@@ -1666,5 +1666,13 @@ export var editorExperimentsConfig = {
|
|
|
1666
1666
|
},
|
|
1667
1667
|
param: 'isEnabled',
|
|
1668
1668
|
defaultValue: false
|
|
1669
|
+
}),
|
|
1670
|
+
// Added 2026-03-06
|
|
1671
|
+
platform_editor_single_player_expand: createBooleanExperiment({
|
|
1672
|
+
productKeys: {
|
|
1673
|
+
confluence: 'platform_editor_single_player_expand'
|
|
1674
|
+
},
|
|
1675
|
+
param: 'isEnabled',
|
|
1676
|
+
defaultValue: false
|
|
1669
1677
|
})
|
|
1670
1678
|
};
|
|
@@ -1230,5 +1230,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1230
1230
|
productKeys?: ProductKeys;
|
|
1231
1231
|
typeGuard: IsBooleanType;
|
|
1232
1232
|
};
|
|
1233
|
+
platform_editor_single_player_expand: {
|
|
1234
|
+
defaultValue: boolean;
|
|
1235
|
+
param: string;
|
|
1236
|
+
productKeys?: ProductKeys;
|
|
1237
|
+
typeGuard: IsBooleanType;
|
|
1238
|
+
};
|
|
1233
1239
|
};
|
|
1234
1240
|
export {};
|
|
@@ -1230,5 +1230,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1230
1230
|
productKeys?: ProductKeys;
|
|
1231
1231
|
typeGuard: IsBooleanType;
|
|
1232
1232
|
};
|
|
1233
|
+
platform_editor_single_player_expand: {
|
|
1234
|
+
defaultValue: boolean;
|
|
1235
|
+
param: string;
|
|
1236
|
+
productKeys?: ProductKeys;
|
|
1237
|
+
typeGuard: IsBooleanType;
|
|
1238
|
+
};
|
|
1233
1239
|
};
|
|
1234
1240
|
export {};
|
package/package.json
CHANGED