@atlaskit/tmp-editor-statsig 13.13.0 → 13.14.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 +14 -0
- package/dist/cjs/exp-test-overrides.js +1 -0
- package/dist/cjs/experiments-config.js +17 -0
- package/dist/es2019/exp-test-overrides.js +1 -0
- package/dist/es2019/experiments-config.js +17 -0
- package/dist/esm/exp-test-overrides.js +1 -0
- package/dist/esm/experiments-config.js +17 -0
- package/dist/types/experiments-config.d.ts +13 -0
- package/dist/types-ts4.5/experiments-config.d.ts +13 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 13.14.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`18aec70029328`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/18aec70029328) -
|
|
8
|
+
EDITOR-2420 Rename parameter values of `dense` contentMode to `compact`
|
|
9
|
+
|
|
10
|
+
## 13.13.1
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- [`03153a278b044`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/03153a278b044) -
|
|
15
|
+
Add new mentions detection logic
|
|
16
|
+
|
|
3
17
|
## 13.13.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
|
@@ -20,6 +20,7 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
|
|
|
20
20
|
platform_hover_card_preview_panel: 'control',
|
|
21
21
|
platform_hover_card_preview_panel_modal: 'control',
|
|
22
22
|
platform_inline_smartcard_connect_button_exp: 'control',
|
|
23
|
+
confluence_content_mode_replace_dense_with_compact: 'control',
|
|
23
24
|
cc_editor_insm_outlier_events: 'test',
|
|
24
25
|
platform_editor_disable_table_overflow_shadows: 'control'
|
|
25
26
|
};
|
|
@@ -1037,6 +1037,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1037
1037
|
param: 'isEnabled',
|
|
1038
1038
|
defaultValue: false
|
|
1039
1039
|
}),
|
|
1040
|
+
// Added 2025-10-17
|
|
1041
|
+
confluence_content_mode_replace_dense_with_compact: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
1042
|
+
productKeys: {
|
|
1043
|
+
confluence: 'confluence_content_mode_replace_dense_with_compact'
|
|
1044
|
+
},
|
|
1045
|
+
param: 'cohort',
|
|
1046
|
+
values: ['control', 'test'],
|
|
1047
|
+
defaultValue: 'control'
|
|
1048
|
+
}),
|
|
1040
1049
|
// Added 2025-10-01
|
|
1041
1050
|
platform_inline_smartcard_connect_button_exp: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
1042
1051
|
productKeys: {
|
|
@@ -1054,5 +1063,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1054
1063
|
},
|
|
1055
1064
|
param: 'isEnabled',
|
|
1056
1065
|
defaultValue: false
|
|
1066
|
+
}),
|
|
1067
|
+
// Added 2025-10-15
|
|
1068
|
+
platform_editor_new_mentions_detection_logic: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1069
|
+
productKeys: {
|
|
1070
|
+
confluence: 'platform_editor_new_mentions_detection_logic'
|
|
1071
|
+
},
|
|
1072
|
+
param: 'isEnabled',
|
|
1073
|
+
defaultValue: false
|
|
1057
1074
|
})
|
|
1058
1075
|
};
|
|
@@ -14,6 +14,7 @@ export const testMultivariateOverrides = {
|
|
|
14
14
|
platform_hover_card_preview_panel: 'control',
|
|
15
15
|
platform_hover_card_preview_panel_modal: 'control',
|
|
16
16
|
platform_inline_smartcard_connect_button_exp: 'control',
|
|
17
|
+
confluence_content_mode_replace_dense_with_compact: 'control',
|
|
17
18
|
cc_editor_insm_outlier_events: 'test',
|
|
18
19
|
platform_editor_disable_table_overflow_shadows: 'control'
|
|
19
20
|
};
|
|
@@ -1031,6 +1031,15 @@ export const editorExperimentsConfig = {
|
|
|
1031
1031
|
param: 'isEnabled',
|
|
1032
1032
|
defaultValue: false
|
|
1033
1033
|
}),
|
|
1034
|
+
// Added 2025-10-17
|
|
1035
|
+
confluence_content_mode_replace_dense_with_compact: createMultivariateExperiment({
|
|
1036
|
+
productKeys: {
|
|
1037
|
+
confluence: 'confluence_content_mode_replace_dense_with_compact'
|
|
1038
|
+
},
|
|
1039
|
+
param: 'cohort',
|
|
1040
|
+
values: ['control', 'test'],
|
|
1041
|
+
defaultValue: 'control'
|
|
1042
|
+
}),
|
|
1034
1043
|
// Added 2025-10-01
|
|
1035
1044
|
platform_inline_smartcard_connect_button_exp: createMultivariateExperiment({
|
|
1036
1045
|
productKeys: {
|
|
@@ -1048,5 +1057,13 @@ export const editorExperimentsConfig = {
|
|
|
1048
1057
|
},
|
|
1049
1058
|
param: 'isEnabled',
|
|
1050
1059
|
defaultValue: false
|
|
1060
|
+
}),
|
|
1061
|
+
// Added 2025-10-15
|
|
1062
|
+
platform_editor_new_mentions_detection_logic: createBooleanExperiment({
|
|
1063
|
+
productKeys: {
|
|
1064
|
+
confluence: 'platform_editor_new_mentions_detection_logic'
|
|
1065
|
+
},
|
|
1066
|
+
param: 'isEnabled',
|
|
1067
|
+
defaultValue: false
|
|
1051
1068
|
})
|
|
1052
1069
|
};
|
|
@@ -14,6 +14,7 @@ export var testMultivariateOverrides = {
|
|
|
14
14
|
platform_hover_card_preview_panel: 'control',
|
|
15
15
|
platform_hover_card_preview_panel_modal: 'control',
|
|
16
16
|
platform_inline_smartcard_connect_button_exp: 'control',
|
|
17
|
+
confluence_content_mode_replace_dense_with_compact: 'control',
|
|
17
18
|
cc_editor_insm_outlier_events: 'test',
|
|
18
19
|
platform_editor_disable_table_overflow_shadows: 'control'
|
|
19
20
|
};
|
|
@@ -1031,6 +1031,15 @@ export var editorExperimentsConfig = {
|
|
|
1031
1031
|
param: 'isEnabled',
|
|
1032
1032
|
defaultValue: false
|
|
1033
1033
|
}),
|
|
1034
|
+
// Added 2025-10-17
|
|
1035
|
+
confluence_content_mode_replace_dense_with_compact: createMultivariateExperiment({
|
|
1036
|
+
productKeys: {
|
|
1037
|
+
confluence: 'confluence_content_mode_replace_dense_with_compact'
|
|
1038
|
+
},
|
|
1039
|
+
param: 'cohort',
|
|
1040
|
+
values: ['control', 'test'],
|
|
1041
|
+
defaultValue: 'control'
|
|
1042
|
+
}),
|
|
1034
1043
|
// Added 2025-10-01
|
|
1035
1044
|
platform_inline_smartcard_connect_button_exp: createMultivariateExperiment({
|
|
1036
1045
|
productKeys: {
|
|
@@ -1048,5 +1057,13 @@ export var editorExperimentsConfig = {
|
|
|
1048
1057
|
},
|
|
1049
1058
|
param: 'isEnabled',
|
|
1050
1059
|
defaultValue: false
|
|
1060
|
+
}),
|
|
1061
|
+
// Added 2025-10-15
|
|
1062
|
+
platform_editor_new_mentions_detection_logic: createBooleanExperiment({
|
|
1063
|
+
productKeys: {
|
|
1064
|
+
confluence: 'platform_editor_new_mentions_detection_logic'
|
|
1065
|
+
},
|
|
1066
|
+
param: 'isEnabled',
|
|
1067
|
+
defaultValue: false
|
|
1051
1068
|
})
|
|
1052
1069
|
};
|
|
@@ -759,6 +759,13 @@ export declare const editorExperimentsConfig: {
|
|
|
759
759
|
param: string;
|
|
760
760
|
productKeys?: import("./types").ProductKeys;
|
|
761
761
|
};
|
|
762
|
+
confluence_content_mode_replace_dense_with_compact: {
|
|
763
|
+
values: ("test" | "control")[];
|
|
764
|
+
typeGuard: (value: unknown) => value is "test" | "control";
|
|
765
|
+
defaultValue: "test" | "control";
|
|
766
|
+
param: string;
|
|
767
|
+
productKeys?: import("./types").ProductKeys;
|
|
768
|
+
};
|
|
762
769
|
platform_inline_smartcard_connect_button_exp: {
|
|
763
770
|
values: ("control" | "test1" | "test2")[];
|
|
764
771
|
typeGuard: (value: unknown) => value is "control" | "test1" | "test2";
|
|
@@ -772,4 +779,10 @@ export declare const editorExperimentsConfig: {
|
|
|
772
779
|
param: string;
|
|
773
780
|
productKeys?: import("./types").ProductKeys;
|
|
774
781
|
};
|
|
782
|
+
platform_editor_new_mentions_detection_logic: {
|
|
783
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
784
|
+
defaultValue: boolean;
|
|
785
|
+
param: string;
|
|
786
|
+
productKeys?: import("./types").ProductKeys;
|
|
787
|
+
};
|
|
775
788
|
};
|
|
@@ -759,6 +759,13 @@ export declare const editorExperimentsConfig: {
|
|
|
759
759
|
param: string;
|
|
760
760
|
productKeys?: import("./types").ProductKeys;
|
|
761
761
|
};
|
|
762
|
+
confluence_content_mode_replace_dense_with_compact: {
|
|
763
|
+
values: ("test" | "control")[];
|
|
764
|
+
typeGuard: (value: unknown) => value is "test" | "control";
|
|
765
|
+
defaultValue: "test" | "control";
|
|
766
|
+
param: string;
|
|
767
|
+
productKeys?: import("./types").ProductKeys;
|
|
768
|
+
};
|
|
762
769
|
platform_inline_smartcard_connect_button_exp: {
|
|
763
770
|
values: ("control" | "test1" | "test2")[];
|
|
764
771
|
typeGuard: (value: unknown) => value is "control" | "test1" | "test2";
|
|
@@ -772,4 +779,10 @@ export declare const editorExperimentsConfig: {
|
|
|
772
779
|
param: string;
|
|
773
780
|
productKeys?: import("./types").ProductKeys;
|
|
774
781
|
};
|
|
782
|
+
platform_editor_new_mentions_detection_logic: {
|
|
783
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
784
|
+
defaultValue: boolean;
|
|
785
|
+
param: string;
|
|
786
|
+
productKeys?: import("./types").ProductKeys;
|
|
787
|
+
};
|
|
775
788
|
};
|
package/package.json
CHANGED