@atlaskit/tmp-editor-statsig 14.2.0 → 14.3.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 +13 -0
- package/dist/cjs/exp-test-overrides.js +1 -0
- package/dist/cjs/experiments-config.js +18 -0
- package/dist/es2019/exp-test-overrides.js +1 -0
- package/dist/es2019/experiments-config.js +18 -0
- package/dist/esm/exp-test-overrides.js +1 -0
- package/dist/esm/experiments-config.js +18 -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,18 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 14.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`ada8445a9624f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ada8445a9624f) -
|
|
8
|
+
Add experiment to fix ascii emoji replacement behaviour
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- [`62db1dbb5e93b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/62db1dbb5e93b) -
|
|
13
|
+
Add shortlinks to link clicked events. Only for updating metrics. Experiment here -
|
|
14
|
+
smart_link_confluence_short_link_analytics.
|
|
15
|
+
|
|
3
16
|
## 14.2.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
|
@@ -19,6 +19,7 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
|
|
|
19
19
|
platform_editor_ai_non_iw_adf_streaming: 'control',
|
|
20
20
|
platform_hover_card_preview_panel: 'control',
|
|
21
21
|
platform_hover_card_preview_panel_modal: 'control',
|
|
22
|
+
smart_link_confluence_short_link_analytics: 'control',
|
|
22
23
|
platform_inline_smartcard_connect_button_exp: 'control',
|
|
23
24
|
confluence_content_mode_replace_dense_with_compact: 'control',
|
|
24
25
|
cc_editor_insm_outlier_events: 'test',
|
|
@@ -602,6 +602,16 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
602
602
|
values: ['control', 'test'],
|
|
603
603
|
defaultValue: 'control'
|
|
604
604
|
}),
|
|
605
|
+
// Added 2025-11-25
|
|
606
|
+
smart_link_confluence_short_link_analytics: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
607
|
+
productKeys: {
|
|
608
|
+
confluence: 'smart-link-confluence-short-link-analytics',
|
|
609
|
+
jira: 'smart-link-confluence-short-link-analytics'
|
|
610
|
+
},
|
|
611
|
+
param: 'cohort',
|
|
612
|
+
values: ['control', 'test'],
|
|
613
|
+
defaultValue: 'control'
|
|
614
|
+
}),
|
|
605
615
|
// Added 2025--8-05
|
|
606
616
|
platform_editor_block_menu: (0, _experimentBuilders.createBooleanExperiment)({
|
|
607
617
|
productKeys: {
|
|
@@ -1147,5 +1157,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1147
1157
|
},
|
|
1148
1158
|
param: 'isEnabled',
|
|
1149
1159
|
defaultValue: false
|
|
1160
|
+
}),
|
|
1161
|
+
// Added 2025-11-18
|
|
1162
|
+
platform_editor_wait_for_space_after_ascii_emoji: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1163
|
+
productKeys: {
|
|
1164
|
+
confluence: 'platform_editor_wait_for_space_after_ascii_emoji'
|
|
1165
|
+
},
|
|
1166
|
+
param: 'isEnabled',
|
|
1167
|
+
defaultValue: false
|
|
1150
1168
|
})
|
|
1151
1169
|
};
|
|
@@ -13,6 +13,7 @@ export const testMultivariateOverrides = {
|
|
|
13
13
|
platform_editor_ai_non_iw_adf_streaming: 'control',
|
|
14
14
|
platform_hover_card_preview_panel: 'control',
|
|
15
15
|
platform_hover_card_preview_panel_modal: 'control',
|
|
16
|
+
smart_link_confluence_short_link_analytics: 'control',
|
|
16
17
|
platform_inline_smartcard_connect_button_exp: 'control',
|
|
17
18
|
confluence_content_mode_replace_dense_with_compact: 'control',
|
|
18
19
|
cc_editor_insm_outlier_events: 'test',
|
|
@@ -596,6 +596,16 @@ export const editorExperimentsConfig = {
|
|
|
596
596
|
values: ['control', 'test'],
|
|
597
597
|
defaultValue: 'control'
|
|
598
598
|
}),
|
|
599
|
+
// Added 2025-11-25
|
|
600
|
+
smart_link_confluence_short_link_analytics: createMultivariateExperiment({
|
|
601
|
+
productKeys: {
|
|
602
|
+
confluence: 'smart-link-confluence-short-link-analytics',
|
|
603
|
+
jira: 'smart-link-confluence-short-link-analytics'
|
|
604
|
+
},
|
|
605
|
+
param: 'cohort',
|
|
606
|
+
values: ['control', 'test'],
|
|
607
|
+
defaultValue: 'control'
|
|
608
|
+
}),
|
|
599
609
|
// Added 2025--8-05
|
|
600
610
|
platform_editor_block_menu: createBooleanExperiment({
|
|
601
611
|
productKeys: {
|
|
@@ -1141,5 +1151,13 @@ export const editorExperimentsConfig = {
|
|
|
1141
1151
|
},
|
|
1142
1152
|
param: 'isEnabled',
|
|
1143
1153
|
defaultValue: false
|
|
1154
|
+
}),
|
|
1155
|
+
// Added 2025-11-18
|
|
1156
|
+
platform_editor_wait_for_space_after_ascii_emoji: createBooleanExperiment({
|
|
1157
|
+
productKeys: {
|
|
1158
|
+
confluence: 'platform_editor_wait_for_space_after_ascii_emoji'
|
|
1159
|
+
},
|
|
1160
|
+
param: 'isEnabled',
|
|
1161
|
+
defaultValue: false
|
|
1144
1162
|
})
|
|
1145
1163
|
};
|
|
@@ -13,6 +13,7 @@ export var testMultivariateOverrides = {
|
|
|
13
13
|
platform_editor_ai_non_iw_adf_streaming: 'control',
|
|
14
14
|
platform_hover_card_preview_panel: 'control',
|
|
15
15
|
platform_hover_card_preview_panel_modal: 'control',
|
|
16
|
+
smart_link_confluence_short_link_analytics: 'control',
|
|
16
17
|
platform_inline_smartcard_connect_button_exp: 'control',
|
|
17
18
|
confluence_content_mode_replace_dense_with_compact: 'control',
|
|
18
19
|
cc_editor_insm_outlier_events: 'test',
|
|
@@ -596,6 +596,16 @@ export var editorExperimentsConfig = {
|
|
|
596
596
|
values: ['control', 'test'],
|
|
597
597
|
defaultValue: 'control'
|
|
598
598
|
}),
|
|
599
|
+
// Added 2025-11-25
|
|
600
|
+
smart_link_confluence_short_link_analytics: createMultivariateExperiment({
|
|
601
|
+
productKeys: {
|
|
602
|
+
confluence: 'smart-link-confluence-short-link-analytics',
|
|
603
|
+
jira: 'smart-link-confluence-short-link-analytics'
|
|
604
|
+
},
|
|
605
|
+
param: 'cohort',
|
|
606
|
+
values: ['control', 'test'],
|
|
607
|
+
defaultValue: 'control'
|
|
608
|
+
}),
|
|
599
609
|
// Added 2025--8-05
|
|
600
610
|
platform_editor_block_menu: createBooleanExperiment({
|
|
601
611
|
productKeys: {
|
|
@@ -1141,5 +1151,13 @@ export var editorExperimentsConfig = {
|
|
|
1141
1151
|
},
|
|
1142
1152
|
param: 'isEnabled',
|
|
1143
1153
|
defaultValue: false
|
|
1154
|
+
}),
|
|
1155
|
+
// Added 2025-11-18
|
|
1156
|
+
platform_editor_wait_for_space_after_ascii_emoji: createBooleanExperiment({
|
|
1157
|
+
productKeys: {
|
|
1158
|
+
confluence: 'platform_editor_wait_for_space_after_ascii_emoji'
|
|
1159
|
+
},
|
|
1160
|
+
param: 'isEnabled',
|
|
1161
|
+
defaultValue: false
|
|
1144
1162
|
})
|
|
1145
1163
|
};
|
|
@@ -769,6 +769,12 @@ export declare const editorExperimentsConfig: {
|
|
|
769
769
|
productKeys?: ProductKeys;
|
|
770
770
|
typeGuard: IsBooleanType;
|
|
771
771
|
};
|
|
772
|
+
platform_editor_wait_for_space_after_ascii_emoji: {
|
|
773
|
+
defaultValue: boolean;
|
|
774
|
+
param: string;
|
|
775
|
+
productKeys?: ProductKeys;
|
|
776
|
+
typeGuard: IsBooleanType;
|
|
777
|
+
};
|
|
772
778
|
platform_hover_card_preview_panel: {
|
|
773
779
|
defaultValue: 'control' | 'test';
|
|
774
780
|
param: string;
|
|
@@ -820,6 +826,13 @@ export declare const editorExperimentsConfig: {
|
|
|
820
826
|
productKeys?: ProductKeys;
|
|
821
827
|
typeGuard: IsBooleanType;
|
|
822
828
|
};
|
|
829
|
+
smart_link_confluence_short_link_analytics: {
|
|
830
|
+
defaultValue: 'control' | 'test';
|
|
831
|
+
param: string;
|
|
832
|
+
productKeys?: ProductKeys;
|
|
833
|
+
typeGuard: (value: unknown) => value is 'control' | 'test';
|
|
834
|
+
values: ('control' | 'test')[];
|
|
835
|
+
};
|
|
823
836
|
support_table_in_comment: {
|
|
824
837
|
defaultValue: boolean;
|
|
825
838
|
param: string;
|
|
@@ -769,6 +769,12 @@ export declare const editorExperimentsConfig: {
|
|
|
769
769
|
productKeys?: ProductKeys;
|
|
770
770
|
typeGuard: IsBooleanType;
|
|
771
771
|
};
|
|
772
|
+
platform_editor_wait_for_space_after_ascii_emoji: {
|
|
773
|
+
defaultValue: boolean;
|
|
774
|
+
param: string;
|
|
775
|
+
productKeys?: ProductKeys;
|
|
776
|
+
typeGuard: IsBooleanType;
|
|
777
|
+
};
|
|
772
778
|
platform_hover_card_preview_panel: {
|
|
773
779
|
defaultValue: 'control' | 'test';
|
|
774
780
|
param: string;
|
|
@@ -820,6 +826,13 @@ export declare const editorExperimentsConfig: {
|
|
|
820
826
|
productKeys?: ProductKeys;
|
|
821
827
|
typeGuard: IsBooleanType;
|
|
822
828
|
};
|
|
829
|
+
smart_link_confluence_short_link_analytics: {
|
|
830
|
+
defaultValue: 'control' | 'test';
|
|
831
|
+
param: string;
|
|
832
|
+
productKeys?: ProductKeys;
|
|
833
|
+
typeGuard: (value: unknown) => value is 'control' | 'test';
|
|
834
|
+
values: ('control' | 'test')[];
|
|
835
|
+
};
|
|
823
836
|
support_table_in_comment: {
|
|
824
837
|
defaultValue: boolean;
|
|
825
838
|
param: string;
|
package/package.json
CHANGED