@atlaskit/tmp-editor-statsig 114.3.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
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
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
|
+
|
|
3
10
|
## 114.3.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -701,6 +701,15 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
701
701
|
values: ['control', 'test'],
|
|
702
702
|
defaultValue: 'control'
|
|
703
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
|
+
}),
|
|
704
713
|
// Added 2026-04-30 (QS-9895)
|
|
705
714
|
linking_platform_track_non_primary_3p_clicks: (0, _experimentBuilders.createBooleanExperiment)({
|
|
706
715
|
productKeys: {
|
|
@@ -695,6 +695,15 @@ export const editorExperimentsConfig = {
|
|
|
695
695
|
values: ['control', 'test'],
|
|
696
696
|
defaultValue: 'control'
|
|
697
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
|
+
}),
|
|
698
707
|
// Added 2026-04-30 (QS-9895)
|
|
699
708
|
linking_platform_track_non_primary_3p_clicks: createBooleanExperiment({
|
|
700
709
|
productKeys: {
|
|
@@ -695,6 +695,15 @@ export var editorExperimentsConfig = {
|
|
|
695
695
|
values: ['control', 'test'],
|
|
696
696
|
defaultValue: 'control'
|
|
697
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
|
+
}),
|
|
698
707
|
// Added 2026-04-30 (QS-9895)
|
|
699
708
|
linking_platform_track_non_primary_3p_clicks: createBooleanExperiment({
|
|
700
709
|
productKeys: {
|
|
@@ -459,6 +459,12 @@ export declare const editorExperimentsConfig: {
|
|
|
459
459
|
productKeys?: ProductKeys;
|
|
460
460
|
typeGuard: IsBooleanType;
|
|
461
461
|
};
|
|
462
|
+
jira_editor_a11y_toolbar_fixes: {
|
|
463
|
+
defaultValue: boolean;
|
|
464
|
+
param: string;
|
|
465
|
+
productKeys?: ProductKeys;
|
|
466
|
+
typeGuard: IsBooleanType;
|
|
467
|
+
};
|
|
462
468
|
platform_editor_find_and_replace_improvements: {
|
|
463
469
|
defaultValue: boolean;
|
|
464
470
|
param: string;
|
package/package.json
CHANGED