@atlaskit/tmp-editor-statsig 148.1.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,34 @@
|
|
|
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
|
+
|
|
10
|
+
## 149.0.0
|
|
11
|
+
|
|
12
|
+
### Major Changes
|
|
13
|
+
|
|
14
|
+
- [`76e9f6152bf16`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/76e9f6152bf16) -
|
|
15
|
+
Enable launched synced block integrations and remove obsolete experiment scaffolding.
|
|
16
|
+
|
|
17
|
+
BREAKING: `@atlaskit/tmp-editor-statsig` no longer defines the `platform_synced_block` editor
|
|
18
|
+
experiment. Consumers that use `editorExperiment('platform_synced_block', ...)` to conditionally
|
|
19
|
+
enable synced-block integrations will no longer be able to look up that experiment; synced-block
|
|
20
|
+
integrations are now enabled by default. Remove each lookup and its conditional branch:
|
|
21
|
+
|
|
22
|
+
```ts
|
|
23
|
+
// Before
|
|
24
|
+
if (editorExperiment('platform_synced_block', true)) {
|
|
25
|
+
enableSyncedBlocks();
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
// After
|
|
29
|
+
enableSyncedBlocks();
|
|
30
|
+
```
|
|
31
|
+
|
|
3
32
|
## 148.1.0
|
|
4
33
|
|
|
5
34
|
### Minor Changes
|
|
@@ -14,7 +14,7 @@ var _createMultivariateExperiment = require("./create-multivariate-experiment");
|
|
|
14
14
|
|
|
15
15
|
// These experiments have a jira-specific key that differs from the experiment name,
|
|
16
16
|
// so they must opt out of product-key routing to avoid sending the wrong key on jira.
|
|
17
|
-
var disallowsProductKeys = exports.disallowsProductKeys = ['platform_editor_block_menu', 'platform_editor_blocks', 'platform_editor_controls', 'platform_editor_preview_panel_linking_exp', '
|
|
17
|
+
var disallowsProductKeys = exports.disallowsProductKeys = ['platform_editor_block_menu', 'platform_editor_blocks', 'platform_editor_controls', 'platform_editor_preview_panel_linking_exp', 'platform_editor_static_css', 'advanced_layouts', 'single_column_layouts', 'platform_editor_preview_panel_responsiveness', 'platform_editor_toolbar_aifc', 'comment_on_bodied_extensions'];
|
|
18
18
|
|
|
19
19
|
/**
|
|
20
20
|
* Extract valid expected values.
|
|
@@ -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: {
|
|
@@ -873,15 +865,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
873
865
|
param: 'isEnabled',
|
|
874
866
|
defaultValue: false
|
|
875
867
|
}),
|
|
876
|
-
// Added 2025-08-10
|
|
877
|
-
platform_synced_block: (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
878
|
-
productKeys: {
|
|
879
|
-
confluence: 'platform_synced_block',
|
|
880
|
-
jira: 'platform_synced_block_jira'
|
|
881
|
-
},
|
|
882
|
-
param: 'isEnabled',
|
|
883
|
-
defaultValue: false
|
|
884
|
-
}),
|
|
885
868
|
// Added 2025-08-18
|
|
886
869
|
platform_editor_locale_datepicker: (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
887
870
|
productKeys: {
|
|
@@ -8,7 +8,7 @@ import { createMultivariateExperiment } from './create-multivariate-experiment';
|
|
|
8
8
|
|
|
9
9
|
// These experiments have a jira-specific key that differs from the experiment name,
|
|
10
10
|
// so they must opt out of product-key routing to avoid sending the wrong key on jira.
|
|
11
|
-
export const disallowsProductKeys = ['platform_editor_block_menu', 'platform_editor_blocks', 'platform_editor_controls', 'platform_editor_preview_panel_linking_exp', '
|
|
11
|
+
export const disallowsProductKeys = ['platform_editor_block_menu', 'platform_editor_blocks', 'platform_editor_controls', 'platform_editor_preview_panel_linking_exp', 'platform_editor_static_css', 'advanced_layouts', 'single_column_layouts', 'platform_editor_preview_panel_responsiveness', 'platform_editor_toolbar_aifc', 'comment_on_bodied_extensions'];
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* Extract valid expected values.
|
|
@@ -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: {
|
|
@@ -867,15 +859,6 @@ export const editorExperimentsConfig = {
|
|
|
867
859
|
param: 'isEnabled',
|
|
868
860
|
defaultValue: false
|
|
869
861
|
}),
|
|
870
|
-
// Added 2025-08-10
|
|
871
|
-
platform_synced_block: createBooleanExperiment({
|
|
872
|
-
productKeys: {
|
|
873
|
-
confluence: 'platform_synced_block',
|
|
874
|
-
jira: 'platform_synced_block_jira'
|
|
875
|
-
},
|
|
876
|
-
param: 'isEnabled',
|
|
877
|
-
defaultValue: false
|
|
878
|
-
}),
|
|
879
862
|
// Added 2025-08-18
|
|
880
863
|
platform_editor_locale_datepicker: createBooleanExperiment({
|
|
881
864
|
productKeys: {
|
|
@@ -8,7 +8,7 @@ import { createMultivariateExperiment } from './create-multivariate-experiment';
|
|
|
8
8
|
|
|
9
9
|
// These experiments have a jira-specific key that differs from the experiment name,
|
|
10
10
|
// so they must opt out of product-key routing to avoid sending the wrong key on jira.
|
|
11
|
-
export var disallowsProductKeys = ['platform_editor_block_menu', 'platform_editor_blocks', 'platform_editor_controls', 'platform_editor_preview_panel_linking_exp', '
|
|
11
|
+
export var disallowsProductKeys = ['platform_editor_block_menu', 'platform_editor_blocks', 'platform_editor_controls', 'platform_editor_preview_panel_linking_exp', 'platform_editor_static_css', 'advanced_layouts', 'single_column_layouts', 'platform_editor_preview_panel_responsiveness', 'platform_editor_toolbar_aifc', 'comment_on_bodied_extensions'];
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* Extract valid expected values.
|
|
@@ -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: {
|
|
@@ -867,15 +859,6 @@ export var editorExperimentsConfig = {
|
|
|
867
859
|
param: 'isEnabled',
|
|
868
860
|
defaultValue: false
|
|
869
861
|
}),
|
|
870
|
-
// Added 2025-08-10
|
|
871
|
-
platform_synced_block: createBooleanExperiment({
|
|
872
|
-
productKeys: {
|
|
873
|
-
confluence: 'platform_synced_block',
|
|
874
|
-
jira: 'platform_synced_block_jira'
|
|
875
|
-
},
|
|
876
|
-
param: 'isEnabled',
|
|
877
|
-
defaultValue: false
|
|
878
|
-
}),
|
|
879
862
|
// Added 2025-08-18
|
|
880
863
|
platform_editor_locale_datepicker: createBooleanExperiment({
|
|
881
864
|
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;
|
|
@@ -792,12 +786,6 @@ export declare const editorExperimentsConfig: {
|
|
|
792
786
|
productKeys?: ProductKeys;
|
|
793
787
|
typeGuard: IsBooleanType;
|
|
794
788
|
};
|
|
795
|
-
platform_synced_block: {
|
|
796
|
-
defaultValue: boolean;
|
|
797
|
-
param: string;
|
|
798
|
-
productKeys?: ProductKeys;
|
|
799
|
-
typeGuard: IsBooleanType;
|
|
800
|
-
};
|
|
801
789
|
platform_editor_sync_block_activation: {
|
|
802
790
|
defaultValue: boolean;
|
|
803
791
|
param: string;
|
package/package.json
CHANGED