@atlaskit/tmp-editor-statsig 114.2.0 → 114.4.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 +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 +12 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 114.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`8465ec8b9145c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/8465ec8b9145c) -
|
|
8
|
+
Fix decorative AI toolbar menu icons being announced by screen readers
|
|
9
|
+
|
|
10
|
+
## 114.3.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [`5d42cea730a1b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5d42cea730a1b) -
|
|
15
|
+
[ENGHEALTH-53346] Gate the inline extension width-context memoization fix behind a Jira
|
|
16
|
+
experiment.
|
|
17
|
+
|
|
3
18
|
## 114.2.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
|
@@ -27,6 +27,7 @@ var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
|
27
27
|
cwr_blank_object_experiment: false,
|
|
28
28
|
platform_editor_feedback_mandatory_rating: false,
|
|
29
29
|
platform_editor_preview_panel_responsiveness: false,
|
|
30
|
+
'enghealth-53346_fix_redaction_marker_editor': false,
|
|
30
31
|
platform_editor_toolbar_aifc: false,
|
|
31
32
|
'test-new-experiments-package': false,
|
|
32
33
|
platform_editor_exp_lazy_node_views: false,
|
|
@@ -82,6 +82,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
82
82
|
param: 'isEnabled',
|
|
83
83
|
defaultValue: false
|
|
84
84
|
}),
|
|
85
|
+
// Added 2026-06-19
|
|
86
|
+
'enghealth-53346_fix_redaction_marker_editor': (0, _experimentBuilders.createBooleanExperiment)({
|
|
87
|
+
productKeys: {
|
|
88
|
+
jira: 'enghealth-53346_fix_redaction_marker_editor'
|
|
89
|
+
},
|
|
90
|
+
param: 'isEnabled',
|
|
91
|
+
defaultValue: false
|
|
92
|
+
}),
|
|
85
93
|
// Added 03-09-2025
|
|
86
94
|
cc_editor_interactivity_monitoring: (0, _experimentBuilders.createBooleanExperiment)({
|
|
87
95
|
productKeys: {
|
|
@@ -693,6 +701,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
693
701
|
values: ['control', 'test'],
|
|
694
702
|
defaultValue: 'control'
|
|
695
703
|
}),
|
|
704
|
+
// Added 2026-06-25
|
|
705
|
+
jira_editor_a11y_toolbar_fixes: (0, _experimentBuilders.createBooleanExperiment)({
|
|
706
|
+
productKeys: {
|
|
707
|
+
confluence: 'jira_editor_a11y_toolbar_fixes',
|
|
708
|
+
jira: 'jira_editor_a11y_toolbar_fixes'
|
|
709
|
+
},
|
|
710
|
+
param: 'isEnabled',
|
|
711
|
+
defaultValue: false
|
|
712
|
+
}),
|
|
696
713
|
// Added 2026-04-30 (QS-9895)
|
|
697
714
|
linking_platform_track_non_primary_3p_clicks: (0, _experimentBuilders.createBooleanExperiment)({
|
|
698
715
|
productKeys: {
|
|
@@ -21,6 +21,7 @@ export const testBooleanOverrides = {
|
|
|
21
21
|
cwr_blank_object_experiment: false,
|
|
22
22
|
platform_editor_feedback_mandatory_rating: false,
|
|
23
23
|
platform_editor_preview_panel_responsiveness: false,
|
|
24
|
+
'enghealth-53346_fix_redaction_marker_editor': false,
|
|
24
25
|
platform_editor_toolbar_aifc: false,
|
|
25
26
|
'test-new-experiments-package': false,
|
|
26
27
|
platform_editor_exp_lazy_node_views: false,
|
|
@@ -76,6 +76,14 @@ export const editorExperimentsConfig = {
|
|
|
76
76
|
param: 'isEnabled',
|
|
77
77
|
defaultValue: false
|
|
78
78
|
}),
|
|
79
|
+
// Added 2026-06-19
|
|
80
|
+
'enghealth-53346_fix_redaction_marker_editor': createBooleanExperiment({
|
|
81
|
+
productKeys: {
|
|
82
|
+
jira: 'enghealth-53346_fix_redaction_marker_editor'
|
|
83
|
+
},
|
|
84
|
+
param: 'isEnabled',
|
|
85
|
+
defaultValue: false
|
|
86
|
+
}),
|
|
79
87
|
// Added 03-09-2025
|
|
80
88
|
cc_editor_interactivity_monitoring: createBooleanExperiment({
|
|
81
89
|
productKeys: {
|
|
@@ -687,6 +695,15 @@ export const editorExperimentsConfig = {
|
|
|
687
695
|
values: ['control', 'test'],
|
|
688
696
|
defaultValue: 'control'
|
|
689
697
|
}),
|
|
698
|
+
// Added 2026-06-25
|
|
699
|
+
jira_editor_a11y_toolbar_fixes: createBooleanExperiment({
|
|
700
|
+
productKeys: {
|
|
701
|
+
confluence: 'jira_editor_a11y_toolbar_fixes',
|
|
702
|
+
jira: 'jira_editor_a11y_toolbar_fixes'
|
|
703
|
+
},
|
|
704
|
+
param: 'isEnabled',
|
|
705
|
+
defaultValue: false
|
|
706
|
+
}),
|
|
690
707
|
// Added 2026-04-30 (QS-9895)
|
|
691
708
|
linking_platform_track_non_primary_3p_clicks: createBooleanExperiment({
|
|
692
709
|
productKeys: {
|
|
@@ -21,6 +21,7 @@ export var testBooleanOverrides = {
|
|
|
21
21
|
cwr_blank_object_experiment: false,
|
|
22
22
|
platform_editor_feedback_mandatory_rating: false,
|
|
23
23
|
platform_editor_preview_panel_responsiveness: false,
|
|
24
|
+
'enghealth-53346_fix_redaction_marker_editor': false,
|
|
24
25
|
platform_editor_toolbar_aifc: false,
|
|
25
26
|
'test-new-experiments-package': false,
|
|
26
27
|
platform_editor_exp_lazy_node_views: false,
|
|
@@ -76,6 +76,14 @@ export var editorExperimentsConfig = {
|
|
|
76
76
|
param: 'isEnabled',
|
|
77
77
|
defaultValue: false
|
|
78
78
|
}),
|
|
79
|
+
// Added 2026-06-19
|
|
80
|
+
'enghealth-53346_fix_redaction_marker_editor': createBooleanExperiment({
|
|
81
|
+
productKeys: {
|
|
82
|
+
jira: 'enghealth-53346_fix_redaction_marker_editor'
|
|
83
|
+
},
|
|
84
|
+
param: 'isEnabled',
|
|
85
|
+
defaultValue: false
|
|
86
|
+
}),
|
|
79
87
|
// Added 03-09-2025
|
|
80
88
|
cc_editor_interactivity_monitoring: createBooleanExperiment({
|
|
81
89
|
productKeys: {
|
|
@@ -687,6 +695,15 @@ export var editorExperimentsConfig = {
|
|
|
687
695
|
values: ['control', 'test'],
|
|
688
696
|
defaultValue: 'control'
|
|
689
697
|
}),
|
|
698
|
+
// Added 2026-06-25
|
|
699
|
+
jira_editor_a11y_toolbar_fixes: createBooleanExperiment({
|
|
700
|
+
productKeys: {
|
|
701
|
+
confluence: 'jira_editor_a11y_toolbar_fixes',
|
|
702
|
+
jira: 'jira_editor_a11y_toolbar_fixes'
|
|
703
|
+
},
|
|
704
|
+
param: 'isEnabled',
|
|
705
|
+
defaultValue: false
|
|
706
|
+
}),
|
|
690
707
|
// Added 2026-04-30 (QS-9895)
|
|
691
708
|
linking_platform_track_non_primary_3p_clicks: createBooleanExperiment({
|
|
692
709
|
productKeys: {
|
|
@@ -101,6 +101,12 @@ export declare const editorExperimentsConfig: {
|
|
|
101
101
|
productKeys?: ProductKeys;
|
|
102
102
|
typeGuard: IsBooleanType;
|
|
103
103
|
};
|
|
104
|
+
'enghealth-53346_fix_redaction_marker_editor': {
|
|
105
|
+
defaultValue: boolean;
|
|
106
|
+
param: string;
|
|
107
|
+
productKeys?: ProductKeys;
|
|
108
|
+
typeGuard: IsBooleanType;
|
|
109
|
+
};
|
|
104
110
|
platform_editor_ai_normalized_telemetry: {
|
|
105
111
|
defaultValue: boolean;
|
|
106
112
|
param: string;
|
|
@@ -453,6 +459,12 @@ export declare const editorExperimentsConfig: {
|
|
|
453
459
|
productKeys?: ProductKeys;
|
|
454
460
|
typeGuard: IsBooleanType;
|
|
455
461
|
};
|
|
462
|
+
jira_editor_a11y_toolbar_fixes: {
|
|
463
|
+
defaultValue: boolean;
|
|
464
|
+
param: string;
|
|
465
|
+
productKeys?: ProductKeys;
|
|
466
|
+
typeGuard: IsBooleanType;
|
|
467
|
+
};
|
|
456
468
|
platform_editor_find_and_replace_improvements: {
|
|
457
469
|
defaultValue: boolean;
|
|
458
470
|
param: string;
|
package/package.json
CHANGED