@atlaskit/tmp-editor-statsig 14.1.2 → 14.2.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 +15 -0
- package/dist/cjs/exp-test-overrides.js +2 -1
- package/dist/cjs/experiments-config.js +18 -0
- package/dist/es2019/exp-test-overrides.js +2 -1
- package/dist/es2019/experiments-config.js +18 -0
- package/dist/esm/exp-test-overrides.js +2 -1
- 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,20 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 14.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`ee7dfc1442426`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ee7dfc1442426) -
|
|
8
|
+
[ux] Make 3P Unauthenticated links pasted on a new line to convert to block card
|
|
9
|
+
|
|
10
|
+
## 14.1.3
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- [`5d8ba7e59f96f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5d8ba7e59f96f) -
|
|
15
|
+
simplify the media single resizer classnames
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
|
|
3
18
|
## 14.1.2
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -24,7 +24,8 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
|
|
|
24
24
|
cc_editor_insm_outlier_events: 'test',
|
|
25
25
|
platform_editor_disable_table_overflow_shadows: 'control',
|
|
26
26
|
platform_editor_hoverlink_ui_fixes_exp: 'control',
|
|
27
|
-
platform_editor_table_sticky_header_improvements: 'control'
|
|
27
|
+
platform_editor_table_sticky_header_improvements: 'control',
|
|
28
|
+
platform_sl_3p_unauth_paste_as_block_card: 'control'
|
|
28
29
|
};
|
|
29
30
|
var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
30
31
|
platform_editor_feedback_mandatory_rating: false,
|
|
@@ -96,6 +96,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
96
96
|
values: ['control', 'variant1', 'variant2', 'variant3'],
|
|
97
97
|
defaultValue: 'control'
|
|
98
98
|
}),
|
|
99
|
+
// Added 2025-11-26
|
|
100
|
+
platform_editor_resizer_styles_cleanup: (0, _experimentBuilders.createBooleanExperiment)({
|
|
101
|
+
productKeys: {
|
|
102
|
+
confluence: 'platform_editor_resizer_styles_cleanup'
|
|
103
|
+
},
|
|
104
|
+
param: 'isEnabled',
|
|
105
|
+
defaultValue: false
|
|
106
|
+
}),
|
|
99
107
|
// Added 2025-11-12
|
|
100
108
|
platform_editor_media_vc_fixes: (0, _experimentBuilders.createBooleanExperiment)({
|
|
101
109
|
productKeys: {
|
|
@@ -1122,6 +1130,16 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1122
1130
|
param: 'isEnabled',
|
|
1123
1131
|
defaultValue: false
|
|
1124
1132
|
}),
|
|
1133
|
+
// Added 2025-11-27
|
|
1134
|
+
platform_sl_3p_unauth_paste_as_block_card: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
1135
|
+
productKeys: {
|
|
1136
|
+
confluence: 'platform_sl_3p_unauth_paste_as_block_card',
|
|
1137
|
+
jira: 'platform_sl_3p_unauth_paste_as_block_card'
|
|
1138
|
+
},
|
|
1139
|
+
values: ['control', 'card_by_default_only', 'card_by_default_and_new_design'],
|
|
1140
|
+
param: 'cohort',
|
|
1141
|
+
defaultValue: 'control'
|
|
1142
|
+
}),
|
|
1125
1143
|
// Added 2025-11-25
|
|
1126
1144
|
platform_editor_remove_ncsStepMetrics_plugin: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1127
1145
|
productKeys: {
|
|
@@ -18,7 +18,8 @@ export const testMultivariateOverrides = {
|
|
|
18
18
|
cc_editor_insm_outlier_events: 'test',
|
|
19
19
|
platform_editor_disable_table_overflow_shadows: 'control',
|
|
20
20
|
platform_editor_hoverlink_ui_fixes_exp: 'control',
|
|
21
|
-
platform_editor_table_sticky_header_improvements: 'control'
|
|
21
|
+
platform_editor_table_sticky_header_improvements: 'control',
|
|
22
|
+
platform_sl_3p_unauth_paste_as_block_card: 'control'
|
|
22
23
|
};
|
|
23
24
|
export const testBooleanOverrides = {
|
|
24
25
|
platform_editor_feedback_mandatory_rating: false,
|
|
@@ -90,6 +90,14 @@ export const editorExperimentsConfig = {
|
|
|
90
90
|
values: ['control', 'variant1', 'variant2', 'variant3'],
|
|
91
91
|
defaultValue: 'control'
|
|
92
92
|
}),
|
|
93
|
+
// Added 2025-11-26
|
|
94
|
+
platform_editor_resizer_styles_cleanup: createBooleanExperiment({
|
|
95
|
+
productKeys: {
|
|
96
|
+
confluence: 'platform_editor_resizer_styles_cleanup'
|
|
97
|
+
},
|
|
98
|
+
param: 'isEnabled',
|
|
99
|
+
defaultValue: false
|
|
100
|
+
}),
|
|
93
101
|
// Added 2025-11-12
|
|
94
102
|
platform_editor_media_vc_fixes: createBooleanExperiment({
|
|
95
103
|
productKeys: {
|
|
@@ -1116,6 +1124,16 @@ export const editorExperimentsConfig = {
|
|
|
1116
1124
|
param: 'isEnabled',
|
|
1117
1125
|
defaultValue: false
|
|
1118
1126
|
}),
|
|
1127
|
+
// Added 2025-11-27
|
|
1128
|
+
platform_sl_3p_unauth_paste_as_block_card: createMultivariateExperiment({
|
|
1129
|
+
productKeys: {
|
|
1130
|
+
confluence: 'platform_sl_3p_unauth_paste_as_block_card',
|
|
1131
|
+
jira: 'platform_sl_3p_unauth_paste_as_block_card'
|
|
1132
|
+
},
|
|
1133
|
+
values: ['control', 'card_by_default_only', 'card_by_default_and_new_design'],
|
|
1134
|
+
param: 'cohort',
|
|
1135
|
+
defaultValue: 'control'
|
|
1136
|
+
}),
|
|
1119
1137
|
// Added 2025-11-25
|
|
1120
1138
|
platform_editor_remove_ncsStepMetrics_plugin: createBooleanExperiment({
|
|
1121
1139
|
productKeys: {
|
|
@@ -18,7 +18,8 @@ export var testMultivariateOverrides = {
|
|
|
18
18
|
cc_editor_insm_outlier_events: 'test',
|
|
19
19
|
platform_editor_disable_table_overflow_shadows: 'control',
|
|
20
20
|
platform_editor_hoverlink_ui_fixes_exp: 'control',
|
|
21
|
-
platform_editor_table_sticky_header_improvements: 'control'
|
|
21
|
+
platform_editor_table_sticky_header_improvements: 'control',
|
|
22
|
+
platform_sl_3p_unauth_paste_as_block_card: 'control'
|
|
22
23
|
};
|
|
23
24
|
export var testBooleanOverrides = {
|
|
24
25
|
platform_editor_feedback_mandatory_rating: false,
|
|
@@ -90,6 +90,14 @@ export var editorExperimentsConfig = {
|
|
|
90
90
|
values: ['control', 'variant1', 'variant2', 'variant3'],
|
|
91
91
|
defaultValue: 'control'
|
|
92
92
|
}),
|
|
93
|
+
// Added 2025-11-26
|
|
94
|
+
platform_editor_resizer_styles_cleanup: createBooleanExperiment({
|
|
95
|
+
productKeys: {
|
|
96
|
+
confluence: 'platform_editor_resizer_styles_cleanup'
|
|
97
|
+
},
|
|
98
|
+
param: 'isEnabled',
|
|
99
|
+
defaultValue: false
|
|
100
|
+
}),
|
|
93
101
|
// Added 2025-11-12
|
|
94
102
|
platform_editor_media_vc_fixes: createBooleanExperiment({
|
|
95
103
|
productKeys: {
|
|
@@ -1116,6 +1124,16 @@ export var editorExperimentsConfig = {
|
|
|
1116
1124
|
param: 'isEnabled',
|
|
1117
1125
|
defaultValue: false
|
|
1118
1126
|
}),
|
|
1127
|
+
// Added 2025-11-27
|
|
1128
|
+
platform_sl_3p_unauth_paste_as_block_card: createMultivariateExperiment({
|
|
1129
|
+
productKeys: {
|
|
1130
|
+
confluence: 'platform_sl_3p_unauth_paste_as_block_card',
|
|
1131
|
+
jira: 'platform_sl_3p_unauth_paste_as_block_card'
|
|
1132
|
+
},
|
|
1133
|
+
values: ['control', 'card_by_default_only', 'card_by_default_and_new_design'],
|
|
1134
|
+
param: 'cohort',
|
|
1135
|
+
defaultValue: 'control'
|
|
1136
|
+
}),
|
|
1119
1137
|
// Added 2025-11-25
|
|
1120
1138
|
platform_editor_remove_ncsStepMetrics_plugin: createBooleanExperiment({
|
|
1121
1139
|
productKeys: {
|
|
@@ -648,6 +648,12 @@ export declare const editorExperimentsConfig: {
|
|
|
648
648
|
productKeys?: ProductKeys;
|
|
649
649
|
typeGuard: IsBooleanType;
|
|
650
650
|
};
|
|
651
|
+
platform_editor_resizer_styles_cleanup: {
|
|
652
|
+
defaultValue: boolean;
|
|
653
|
+
param: string;
|
|
654
|
+
productKeys?: ProductKeys;
|
|
655
|
+
typeGuard: IsBooleanType;
|
|
656
|
+
};
|
|
651
657
|
platform_editor_smart_card_otp: {
|
|
652
658
|
defaultValue: boolean;
|
|
653
659
|
param: string;
|
|
@@ -826,6 +832,13 @@ export declare const editorExperimentsConfig: {
|
|
|
826
832
|
productKeys?: ProductKeys;
|
|
827
833
|
typeGuard: IsBooleanType;
|
|
828
834
|
};
|
|
835
|
+
platform_sl_3p_unauth_paste_as_block_card: {
|
|
836
|
+
defaultValue: 'control' | 'card_by_default_only' | 'card_by_default_and_new_design';
|
|
837
|
+
param: string;
|
|
838
|
+
productKeys?: ProductKeys;
|
|
839
|
+
typeGuard: (value: unknown) => value is 'control' | 'card_by_default_only' | 'card_by_default_and_new_design';
|
|
840
|
+
values: ('control' | 'card_by_default_only' | 'card_by_default_and_new_design')[];
|
|
841
|
+
};
|
|
829
842
|
'test-new-experiments-package': {
|
|
830
843
|
defaultValue: boolean;
|
|
831
844
|
param: string;
|
|
@@ -648,6 +648,12 @@ export declare const editorExperimentsConfig: {
|
|
|
648
648
|
productKeys?: ProductKeys;
|
|
649
649
|
typeGuard: IsBooleanType;
|
|
650
650
|
};
|
|
651
|
+
platform_editor_resizer_styles_cleanup: {
|
|
652
|
+
defaultValue: boolean;
|
|
653
|
+
param: string;
|
|
654
|
+
productKeys?: ProductKeys;
|
|
655
|
+
typeGuard: IsBooleanType;
|
|
656
|
+
};
|
|
651
657
|
platform_editor_smart_card_otp: {
|
|
652
658
|
defaultValue: boolean;
|
|
653
659
|
param: string;
|
|
@@ -826,6 +832,13 @@ export declare const editorExperimentsConfig: {
|
|
|
826
832
|
productKeys?: ProductKeys;
|
|
827
833
|
typeGuard: IsBooleanType;
|
|
828
834
|
};
|
|
835
|
+
platform_sl_3p_unauth_paste_as_block_card: {
|
|
836
|
+
defaultValue: 'control' | 'card_by_default_only' | 'card_by_default_and_new_design';
|
|
837
|
+
param: string;
|
|
838
|
+
productKeys?: ProductKeys;
|
|
839
|
+
typeGuard: (value: unknown) => value is 'control' | 'card_by_default_only' | 'card_by_default_and_new_design';
|
|
840
|
+
values: ('control' | 'card_by_default_only' | 'card_by_default_and_new_design')[];
|
|
841
|
+
};
|
|
829
842
|
'test-new-experiments-package': {
|
|
830
843
|
defaultValue: boolean;
|
|
831
844
|
param: string;
|
package/package.json
CHANGED