@atlaskit/tmp-editor-statsig 20.3.0 → 21.1.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 +27 -0
- package/dist/cjs/exp-test-overrides.js +0 -2
- package/dist/cjs/experiments-config.js +23 -18
- package/dist/es2019/exp-test-overrides.js +0 -2
- package/dist/es2019/experiments-config.js +23 -18
- package/dist/esm/exp-test-overrides.js +0 -2
- package/dist/esm/experiments-config.js +23 -18
- package/dist/types/experiments-config.d.ts +18 -14
- package/dist/types-ts4.5/experiments-config.d.ts +18 -14
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 21.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`985c77b3ec4c7`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/985c77b3ec4c7) -
|
|
8
|
+
[ux] [EDITOR-410] fixed rovo chat loading screen width and content message in chromeless comment
|
|
9
|
+
editor
|
|
10
|
+
- [`f55112e3afcb3`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f55112e3afcb3) -
|
|
11
|
+
Fix Rovo button viewed event multiple firing
|
|
12
|
+
- [`41941e55fa9b1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/41941e55fa9b1) -
|
|
13
|
+
[ux] Block link scroll behavior now expands collapsed parent expand/nestedExpand nodes before
|
|
14
|
+
scrolling. New feature gate `platform_editor_expand_on_scroll_to_block` controls this behavior:
|
|
15
|
+
- When enabled: Expands parent expand nodes before scrolling (new behavior with better UX)
|
|
16
|
+
- When disabled: Simple scroll without expand handling (safe fallback to original behavior)
|
|
17
|
+
|
|
18
|
+
This ensures the "Copy link to block" feature works correctly when the target block is inside a
|
|
19
|
+
collapsed expand.
|
|
20
|
+
|
|
21
|
+
## 21.0.0
|
|
22
|
+
|
|
23
|
+
### Major Changes
|
|
24
|
+
|
|
25
|
+
- [`7b679117f4605`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7b679117f4605) -
|
|
26
|
+
[ux] Productionizes `confluence-whiteboards-quick-insert-eligible` and
|
|
27
|
+
`confluence-whiteboards-quick-insert-l10n-eligible` feature gates and
|
|
28
|
+
`confluence_whiteboards_quick_insert_localised` experiment. Ship "Diagram" variant.
|
|
29
|
+
|
|
3
30
|
## 20.3.0
|
|
4
31
|
|
|
5
32
|
### Minor Changes
|
|
@@ -8,8 +8,6 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
|
|
|
8
8
|
'example-multivariate': 'one',
|
|
9
9
|
'platform_editor_ai-prompts-placeholder': 'control',
|
|
10
10
|
platform_editor_controls: 'control',
|
|
11
|
-
confluence_whiteboards_quick_insert_localised: 'control',
|
|
12
|
-
confluence_whiteboards_quick_insert_localised_aa: 'control',
|
|
13
11
|
cc_editor_ai_content_mode: 'control',
|
|
14
12
|
platform_hover_card_preview_panel: 'control',
|
|
15
13
|
smart_link_confluence_short_link_analytics: 'control',
|
|
@@ -314,6 +314,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
314
314
|
param: 'isEnabled',
|
|
315
315
|
defaultValue: false
|
|
316
316
|
}),
|
|
317
|
+
// Added 2026-02-03
|
|
318
|
+
platform_editor_aifc_fix_button_viewed_analytics: (0, _experimentBuilders.createBooleanExperiment)({
|
|
319
|
+
productKeys: {
|
|
320
|
+
confluence: 'platform_editor_aifc_fix_button_viewed_analytics'
|
|
321
|
+
},
|
|
322
|
+
param: 'isEnabled',
|
|
323
|
+
defaultValue: false
|
|
324
|
+
}),
|
|
317
325
|
// Added 2024-12-05
|
|
318
326
|
platform_editor_blockquote_in_text_formatting_menu: (0, _experimentBuilders.createBooleanExperiment)({
|
|
319
327
|
productKeys: {
|
|
@@ -633,6 +641,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
633
641
|
param: 'isEnabled',
|
|
634
642
|
defaultValue: false
|
|
635
643
|
}),
|
|
644
|
+
// Added 2026-01-30
|
|
645
|
+
platform_editor_expand_on_scroll_to_block: (0, _experimentBuilders.createBooleanExperiment)({
|
|
646
|
+
productKeys: {
|
|
647
|
+
confluence: 'platform_editor_expand_on_scroll_to_block'
|
|
648
|
+
},
|
|
649
|
+
param: 'isEnabled',
|
|
650
|
+
defaultValue: false
|
|
651
|
+
}),
|
|
636
652
|
// Added 2025-07-23
|
|
637
653
|
// Added 2025-07-24
|
|
638
654
|
editor_enghealth_hyperlink_toolbar_aria_values: (0, _experimentBuilders.createBooleanExperiment)({
|
|
@@ -895,24 +911,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
895
911
|
param: 'isEnabled',
|
|
896
912
|
defaultValue: false
|
|
897
913
|
}),
|
|
898
|
-
// Added 2025-10-20
|
|
899
|
-
confluence_whiteboards_quick_insert_localised: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
900
|
-
productKeys: {
|
|
901
|
-
confluence: 'confluence_whiteboards_quick_insert_localised'
|
|
902
|
-
},
|
|
903
|
-
param: 'cohort',
|
|
904
|
-
values: ['control', 'test_blank', 'test_diagram'],
|
|
905
|
-
defaultValue: 'control'
|
|
906
|
-
}),
|
|
907
|
-
// Added 2025-10-28
|
|
908
|
-
confluence_whiteboards_quick_insert_localised_aa: (0, _experimentBuilders.createMultivariateExperiment)({
|
|
909
|
-
productKeys: {
|
|
910
|
-
confluence: 'confluence_whiteboards_quick_insert_localised_aa'
|
|
911
|
-
},
|
|
912
|
-
param: 'cohort',
|
|
913
|
-
values: ['control', 'test_diagram'],
|
|
914
|
-
defaultValue: 'control'
|
|
915
|
-
}),
|
|
916
914
|
// Added 2025-10-22
|
|
917
915
|
platform_editor_remove_bidi_char_warning: (0, _experimentBuilders.createBooleanExperiment)({
|
|
918
916
|
productKeys: {
|
|
@@ -1271,6 +1269,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1271
1269
|
param: 'isEnabled',
|
|
1272
1270
|
defaultValue: false
|
|
1273
1271
|
}),
|
|
1272
|
+
platform_editor_comment_rovoinlinechat_improvement: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1273
|
+
productKeys: {
|
|
1274
|
+
confluence: 'platform_editor_comment_rovoinlinechat_improvement'
|
|
1275
|
+
},
|
|
1276
|
+
param: 'isEnabled',
|
|
1277
|
+
defaultValue: false
|
|
1278
|
+
}),
|
|
1274
1279
|
// Added 2026-02-02
|
|
1275
1280
|
platform_editor_fix_gapcursor_on_paste: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1276
1281
|
productKeys: {
|
|
@@ -2,8 +2,6 @@ export const testMultivariateOverrides = {
|
|
|
2
2
|
'example-multivariate': 'one',
|
|
3
3
|
'platform_editor_ai-prompts-placeholder': 'control',
|
|
4
4
|
platform_editor_controls: 'control',
|
|
5
|
-
confluence_whiteboards_quick_insert_localised: 'control',
|
|
6
|
-
confluence_whiteboards_quick_insert_localised_aa: 'control',
|
|
7
5
|
cc_editor_ai_content_mode: 'control',
|
|
8
6
|
platform_hover_card_preview_panel: 'control',
|
|
9
7
|
smart_link_confluence_short_link_analytics: 'control',
|
|
@@ -308,6 +308,14 @@ export const editorExperimentsConfig = {
|
|
|
308
308
|
param: 'isEnabled',
|
|
309
309
|
defaultValue: false
|
|
310
310
|
}),
|
|
311
|
+
// Added 2026-02-03
|
|
312
|
+
platform_editor_aifc_fix_button_viewed_analytics: createBooleanExperiment({
|
|
313
|
+
productKeys: {
|
|
314
|
+
confluence: 'platform_editor_aifc_fix_button_viewed_analytics'
|
|
315
|
+
},
|
|
316
|
+
param: 'isEnabled',
|
|
317
|
+
defaultValue: false
|
|
318
|
+
}),
|
|
311
319
|
// Added 2024-12-05
|
|
312
320
|
platform_editor_blockquote_in_text_formatting_menu: createBooleanExperiment({
|
|
313
321
|
productKeys: {
|
|
@@ -627,6 +635,14 @@ export const editorExperimentsConfig = {
|
|
|
627
635
|
param: 'isEnabled',
|
|
628
636
|
defaultValue: false
|
|
629
637
|
}),
|
|
638
|
+
// Added 2026-01-30
|
|
639
|
+
platform_editor_expand_on_scroll_to_block: createBooleanExperiment({
|
|
640
|
+
productKeys: {
|
|
641
|
+
confluence: 'platform_editor_expand_on_scroll_to_block'
|
|
642
|
+
},
|
|
643
|
+
param: 'isEnabled',
|
|
644
|
+
defaultValue: false
|
|
645
|
+
}),
|
|
630
646
|
// Added 2025-07-23
|
|
631
647
|
// Added 2025-07-24
|
|
632
648
|
editor_enghealth_hyperlink_toolbar_aria_values: createBooleanExperiment({
|
|
@@ -889,24 +905,6 @@ export const editorExperimentsConfig = {
|
|
|
889
905
|
param: 'isEnabled',
|
|
890
906
|
defaultValue: false
|
|
891
907
|
}),
|
|
892
|
-
// Added 2025-10-20
|
|
893
|
-
confluence_whiteboards_quick_insert_localised: createMultivariateExperiment({
|
|
894
|
-
productKeys: {
|
|
895
|
-
confluence: 'confluence_whiteboards_quick_insert_localised'
|
|
896
|
-
},
|
|
897
|
-
param: 'cohort',
|
|
898
|
-
values: ['control', 'test_blank', 'test_diagram'],
|
|
899
|
-
defaultValue: 'control'
|
|
900
|
-
}),
|
|
901
|
-
// Added 2025-10-28
|
|
902
|
-
confluence_whiteboards_quick_insert_localised_aa: createMultivariateExperiment({
|
|
903
|
-
productKeys: {
|
|
904
|
-
confluence: 'confluence_whiteboards_quick_insert_localised_aa'
|
|
905
|
-
},
|
|
906
|
-
param: 'cohort',
|
|
907
|
-
values: ['control', 'test_diagram'],
|
|
908
|
-
defaultValue: 'control'
|
|
909
|
-
}),
|
|
910
908
|
// Added 2025-10-22
|
|
911
909
|
platform_editor_remove_bidi_char_warning: createBooleanExperiment({
|
|
912
910
|
productKeys: {
|
|
@@ -1265,6 +1263,13 @@ export const editorExperimentsConfig = {
|
|
|
1265
1263
|
param: 'isEnabled',
|
|
1266
1264
|
defaultValue: false
|
|
1267
1265
|
}),
|
|
1266
|
+
platform_editor_comment_rovoinlinechat_improvement: createBooleanExperiment({
|
|
1267
|
+
productKeys: {
|
|
1268
|
+
confluence: 'platform_editor_comment_rovoinlinechat_improvement'
|
|
1269
|
+
},
|
|
1270
|
+
param: 'isEnabled',
|
|
1271
|
+
defaultValue: false
|
|
1272
|
+
}),
|
|
1268
1273
|
// Added 2026-02-02
|
|
1269
1274
|
platform_editor_fix_gapcursor_on_paste: createBooleanExperiment({
|
|
1270
1275
|
productKeys: {
|
|
@@ -2,8 +2,6 @@ export var testMultivariateOverrides = {
|
|
|
2
2
|
'example-multivariate': 'one',
|
|
3
3
|
'platform_editor_ai-prompts-placeholder': 'control',
|
|
4
4
|
platform_editor_controls: 'control',
|
|
5
|
-
confluence_whiteboards_quick_insert_localised: 'control',
|
|
6
|
-
confluence_whiteboards_quick_insert_localised_aa: 'control',
|
|
7
5
|
cc_editor_ai_content_mode: 'control',
|
|
8
6
|
platform_hover_card_preview_panel: 'control',
|
|
9
7
|
smart_link_confluence_short_link_analytics: 'control',
|
|
@@ -308,6 +308,14 @@ export var editorExperimentsConfig = {
|
|
|
308
308
|
param: 'isEnabled',
|
|
309
309
|
defaultValue: false
|
|
310
310
|
}),
|
|
311
|
+
// Added 2026-02-03
|
|
312
|
+
platform_editor_aifc_fix_button_viewed_analytics: createBooleanExperiment({
|
|
313
|
+
productKeys: {
|
|
314
|
+
confluence: 'platform_editor_aifc_fix_button_viewed_analytics'
|
|
315
|
+
},
|
|
316
|
+
param: 'isEnabled',
|
|
317
|
+
defaultValue: false
|
|
318
|
+
}),
|
|
311
319
|
// Added 2024-12-05
|
|
312
320
|
platform_editor_blockquote_in_text_formatting_menu: createBooleanExperiment({
|
|
313
321
|
productKeys: {
|
|
@@ -627,6 +635,14 @@ export var editorExperimentsConfig = {
|
|
|
627
635
|
param: 'isEnabled',
|
|
628
636
|
defaultValue: false
|
|
629
637
|
}),
|
|
638
|
+
// Added 2026-01-30
|
|
639
|
+
platform_editor_expand_on_scroll_to_block: createBooleanExperiment({
|
|
640
|
+
productKeys: {
|
|
641
|
+
confluence: 'platform_editor_expand_on_scroll_to_block'
|
|
642
|
+
},
|
|
643
|
+
param: 'isEnabled',
|
|
644
|
+
defaultValue: false
|
|
645
|
+
}),
|
|
630
646
|
// Added 2025-07-23
|
|
631
647
|
// Added 2025-07-24
|
|
632
648
|
editor_enghealth_hyperlink_toolbar_aria_values: createBooleanExperiment({
|
|
@@ -889,24 +905,6 @@ export var editorExperimentsConfig = {
|
|
|
889
905
|
param: 'isEnabled',
|
|
890
906
|
defaultValue: false
|
|
891
907
|
}),
|
|
892
|
-
// Added 2025-10-20
|
|
893
|
-
confluence_whiteboards_quick_insert_localised: createMultivariateExperiment({
|
|
894
|
-
productKeys: {
|
|
895
|
-
confluence: 'confluence_whiteboards_quick_insert_localised'
|
|
896
|
-
},
|
|
897
|
-
param: 'cohort',
|
|
898
|
-
values: ['control', 'test_blank', 'test_diagram'],
|
|
899
|
-
defaultValue: 'control'
|
|
900
|
-
}),
|
|
901
|
-
// Added 2025-10-28
|
|
902
|
-
confluence_whiteboards_quick_insert_localised_aa: createMultivariateExperiment({
|
|
903
|
-
productKeys: {
|
|
904
|
-
confluence: 'confluence_whiteboards_quick_insert_localised_aa'
|
|
905
|
-
},
|
|
906
|
-
param: 'cohort',
|
|
907
|
-
values: ['control', 'test_diagram'],
|
|
908
|
-
defaultValue: 'control'
|
|
909
|
-
}),
|
|
910
908
|
// Added 2025-10-22
|
|
911
909
|
platform_editor_remove_bidi_char_warning: createBooleanExperiment({
|
|
912
910
|
productKeys: {
|
|
@@ -1265,6 +1263,13 @@ export var editorExperimentsConfig = {
|
|
|
1265
1263
|
param: 'isEnabled',
|
|
1266
1264
|
defaultValue: false
|
|
1267
1265
|
}),
|
|
1266
|
+
platform_editor_comment_rovoinlinechat_improvement: createBooleanExperiment({
|
|
1267
|
+
productKeys: {
|
|
1268
|
+
confluence: 'platform_editor_comment_rovoinlinechat_improvement'
|
|
1269
|
+
},
|
|
1270
|
+
param: 'isEnabled',
|
|
1271
|
+
defaultValue: false
|
|
1272
|
+
}),
|
|
1268
1273
|
// Added 2026-02-02
|
|
1269
1274
|
platform_editor_fix_gapcursor_on_paste: createBooleanExperiment({
|
|
1270
1275
|
productKeys: {
|
|
@@ -130,20 +130,6 @@ export declare const editorExperimentsConfig: {
|
|
|
130
130
|
productKeys?: ProductKeys;
|
|
131
131
|
typeGuard: IsBooleanType;
|
|
132
132
|
};
|
|
133
|
-
confluence_whiteboards_quick_insert_localised: {
|
|
134
|
-
defaultValue: 'control' | 'test_blank' | 'test_diagram';
|
|
135
|
-
param: string;
|
|
136
|
-
productKeys?: ProductKeys;
|
|
137
|
-
typeGuard: (value: unknown) => value is 'control' | 'test_blank' | 'test_diagram';
|
|
138
|
-
values: ('control' | 'test_blank' | 'test_diagram')[];
|
|
139
|
-
};
|
|
140
|
-
confluence_whiteboards_quick_insert_localised_aa: {
|
|
141
|
-
defaultValue: 'control' | 'test_diagram';
|
|
142
|
-
param: string;
|
|
143
|
-
productKeys?: ProductKeys;
|
|
144
|
-
typeGuard: (value: unknown) => value is 'control' | 'test_diagram';
|
|
145
|
-
values: ('control' | 'test_diagram')[];
|
|
146
|
-
};
|
|
147
133
|
editor_enable_image_alignment_in_expand: {
|
|
148
134
|
defaultValue: boolean;
|
|
149
135
|
param: string;
|
|
@@ -248,6 +234,12 @@ export declare const editorExperimentsConfig: {
|
|
|
248
234
|
typeGuard: (value: unknown) => value is 'control' | 'test';
|
|
249
235
|
values: ('control' | 'test')[];
|
|
250
236
|
};
|
|
237
|
+
platform_editor_aifc_fix_button_viewed_analytics: {
|
|
238
|
+
defaultValue: boolean;
|
|
239
|
+
param: string;
|
|
240
|
+
productKeys?: ProductKeys;
|
|
241
|
+
typeGuard: IsBooleanType;
|
|
242
|
+
};
|
|
251
243
|
platform_editor_annotations_sync_on_docchange: {
|
|
252
244
|
defaultValue: boolean;
|
|
253
245
|
param: string;
|
|
@@ -284,6 +276,12 @@ export declare const editorExperimentsConfig: {
|
|
|
284
276
|
productKeys?: ProductKeys;
|
|
285
277
|
typeGuard: IsBooleanType;
|
|
286
278
|
};
|
|
279
|
+
platform_editor_expand_on_scroll_to_block: {
|
|
280
|
+
defaultValue: boolean;
|
|
281
|
+
param: string;
|
|
282
|
+
productKeys?: ProductKeys;
|
|
283
|
+
typeGuard: IsBooleanType;
|
|
284
|
+
};
|
|
287
285
|
platform_editor_blockquote_in_text_formatting_menu: {
|
|
288
286
|
defaultValue: boolean;
|
|
289
287
|
param: string;
|
|
@@ -927,6 +925,12 @@ export declare const editorExperimentsConfig: {
|
|
|
927
925
|
productKeys?: ProductKeys;
|
|
928
926
|
typeGuard: IsBooleanType;
|
|
929
927
|
};
|
|
928
|
+
platform_editor_comment_rovoinlinechat_improvement: {
|
|
929
|
+
defaultValue: boolean;
|
|
930
|
+
param: string;
|
|
931
|
+
productKeys?: ProductKeys;
|
|
932
|
+
typeGuard: IsBooleanType;
|
|
933
|
+
};
|
|
930
934
|
confluence_insert_excerpt_inline_vertical_align: {
|
|
931
935
|
defaultValue: boolean;
|
|
932
936
|
param: string;
|
|
@@ -130,20 +130,6 @@ export declare const editorExperimentsConfig: {
|
|
|
130
130
|
productKeys?: ProductKeys;
|
|
131
131
|
typeGuard: IsBooleanType;
|
|
132
132
|
};
|
|
133
|
-
confluence_whiteboards_quick_insert_localised: {
|
|
134
|
-
defaultValue: 'control' | 'test_blank' | 'test_diagram';
|
|
135
|
-
param: string;
|
|
136
|
-
productKeys?: ProductKeys;
|
|
137
|
-
typeGuard: (value: unknown) => value is 'control' | 'test_blank' | 'test_diagram';
|
|
138
|
-
values: ('control' | 'test_blank' | 'test_diagram')[];
|
|
139
|
-
};
|
|
140
|
-
confluence_whiteboards_quick_insert_localised_aa: {
|
|
141
|
-
defaultValue: 'control' | 'test_diagram';
|
|
142
|
-
param: string;
|
|
143
|
-
productKeys?: ProductKeys;
|
|
144
|
-
typeGuard: (value: unknown) => value is 'control' | 'test_diagram';
|
|
145
|
-
values: ('control' | 'test_diagram')[];
|
|
146
|
-
};
|
|
147
133
|
editor_enable_image_alignment_in_expand: {
|
|
148
134
|
defaultValue: boolean;
|
|
149
135
|
param: string;
|
|
@@ -248,6 +234,12 @@ export declare const editorExperimentsConfig: {
|
|
|
248
234
|
typeGuard: (value: unknown) => value is 'control' | 'test';
|
|
249
235
|
values: ('control' | 'test')[];
|
|
250
236
|
};
|
|
237
|
+
platform_editor_aifc_fix_button_viewed_analytics: {
|
|
238
|
+
defaultValue: boolean;
|
|
239
|
+
param: string;
|
|
240
|
+
productKeys?: ProductKeys;
|
|
241
|
+
typeGuard: IsBooleanType;
|
|
242
|
+
};
|
|
251
243
|
platform_editor_annotations_sync_on_docchange: {
|
|
252
244
|
defaultValue: boolean;
|
|
253
245
|
param: string;
|
|
@@ -284,6 +276,12 @@ export declare const editorExperimentsConfig: {
|
|
|
284
276
|
productKeys?: ProductKeys;
|
|
285
277
|
typeGuard: IsBooleanType;
|
|
286
278
|
};
|
|
279
|
+
platform_editor_expand_on_scroll_to_block: {
|
|
280
|
+
defaultValue: boolean;
|
|
281
|
+
param: string;
|
|
282
|
+
productKeys?: ProductKeys;
|
|
283
|
+
typeGuard: IsBooleanType;
|
|
284
|
+
};
|
|
287
285
|
platform_editor_blockquote_in_text_formatting_menu: {
|
|
288
286
|
defaultValue: boolean;
|
|
289
287
|
param: string;
|
|
@@ -927,6 +925,12 @@ export declare const editorExperimentsConfig: {
|
|
|
927
925
|
productKeys?: ProductKeys;
|
|
928
926
|
typeGuard: IsBooleanType;
|
|
929
927
|
};
|
|
928
|
+
platform_editor_comment_rovoinlinechat_improvement: {
|
|
929
|
+
defaultValue: boolean;
|
|
930
|
+
param: string;
|
|
931
|
+
productKeys?: ProductKeys;
|
|
932
|
+
typeGuard: IsBooleanType;
|
|
933
|
+
};
|
|
930
934
|
confluence_insert_excerpt_inline_vertical_align: {
|
|
931
935
|
defaultValue: boolean;
|
|
932
936
|
param: string;
|
package/package.json
CHANGED