@atlaskit/tmp-editor-statsig 149.0.0 → 150.0.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
|
+
## 150.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`4d7433f9c93d8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4d7433f9c93d8) -
|
|
8
|
+
Clean up the enabled `platform_editor_code_block_fold_gutter` experiment for Confluence.
|
|
9
|
+
|
|
3
10
|
## 149.0.0
|
|
4
11
|
|
|
5
12
|
### Major Changes
|
|
@@ -713,14 +713,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
713
713
|
param: 'isEnabled',
|
|
714
714
|
defaultValue: false
|
|
715
715
|
}),
|
|
716
|
-
// Added 2025-07-02
|
|
717
|
-
platform_editor_code_block_fold_gutter: (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
718
|
-
productKeys: {
|
|
719
|
-
confluence: 'platform_editor_code_block_fold_gutter'
|
|
720
|
-
},
|
|
721
|
-
param: 'isEnabled',
|
|
722
|
-
defaultValue: false
|
|
723
|
-
}),
|
|
724
716
|
// Added 2025-07-15
|
|
725
717
|
platform_editor_preview_panel_responsiveness: (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
726
718
|
productKeys: {
|
|
@@ -707,14 +707,6 @@ export const editorExperimentsConfig = {
|
|
|
707
707
|
param: 'isEnabled',
|
|
708
708
|
defaultValue: false
|
|
709
709
|
}),
|
|
710
|
-
// Added 2025-07-02
|
|
711
|
-
platform_editor_code_block_fold_gutter: createBooleanExperiment({
|
|
712
|
-
productKeys: {
|
|
713
|
-
confluence: 'platform_editor_code_block_fold_gutter'
|
|
714
|
-
},
|
|
715
|
-
param: 'isEnabled',
|
|
716
|
-
defaultValue: false
|
|
717
|
-
}),
|
|
718
710
|
// Added 2025-07-15
|
|
719
711
|
platform_editor_preview_panel_responsiveness: createBooleanExperiment({
|
|
720
712
|
productKeys: {
|
|
@@ -707,14 +707,6 @@ export var editorExperimentsConfig = {
|
|
|
707
707
|
param: 'isEnabled',
|
|
708
708
|
defaultValue: false
|
|
709
709
|
}),
|
|
710
|
-
// Added 2025-07-02
|
|
711
|
-
platform_editor_code_block_fold_gutter: createBooleanExperiment({
|
|
712
|
-
productKeys: {
|
|
713
|
-
confluence: 'platform_editor_code_block_fold_gutter'
|
|
714
|
-
},
|
|
715
|
-
param: 'isEnabled',
|
|
716
|
-
defaultValue: false
|
|
717
|
-
}),
|
|
718
710
|
// Added 2025-07-15
|
|
719
711
|
platform_editor_preview_panel_responsiveness: createBooleanExperiment({
|
|
720
712
|
productKeys: {
|
|
@@ -429,12 +429,6 @@ export declare const editorExperimentsConfig: {
|
|
|
429
429
|
productKeys?: ProductKeys;
|
|
430
430
|
typeGuard: IsBooleanType;
|
|
431
431
|
};
|
|
432
|
-
platform_editor_code_block_fold_gutter: {
|
|
433
|
-
defaultValue: boolean;
|
|
434
|
-
param: string;
|
|
435
|
-
productKeys?: ProductKeys;
|
|
436
|
-
typeGuard: IsBooleanType;
|
|
437
|
-
};
|
|
438
432
|
platform_editor_controls: {
|
|
439
433
|
defaultValue: 'control' | 'variant1';
|
|
440
434
|
param: string;
|
package/package.json
CHANGED