@atlaskit/tmp-editor-statsig 114.6.0 → 115.0.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,14 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 115.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`2df690b75a773`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2df690b75a773) -
|
|
8
|
+
Cleanup experiment `confluence_toc_nav_a11y`. Renderer headings now always set `tabIndex={-1}` for
|
|
9
|
+
table-of-contents keyboard focus accessibility, and the experiment definition has been removed
|
|
10
|
+
from the editor statsig config.
|
|
11
|
+
|
|
3
12
|
## 114.6.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
|
@@ -1741,14 +1741,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1741
1741
|
param: 'isEnabled',
|
|
1742
1742
|
defaultValue: false
|
|
1743
1743
|
}),
|
|
1744
|
-
// Added 2026-03-23
|
|
1745
|
-
confluence_toc_nav_a11y: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1746
|
-
productKeys: {
|
|
1747
|
-
confluence: 'confluence_toc_nav_a11y'
|
|
1748
|
-
},
|
|
1749
|
-
param: 'isEnabled',
|
|
1750
|
-
defaultValue: false
|
|
1751
|
-
}),
|
|
1752
1744
|
// Added 2026-03-25
|
|
1753
1745
|
platform_editor_improve_preset_builder_logging: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1754
1746
|
productKeys: {
|
|
@@ -1735,14 +1735,6 @@ export const editorExperimentsConfig = {
|
|
|
1735
1735
|
param: 'isEnabled',
|
|
1736
1736
|
defaultValue: false
|
|
1737
1737
|
}),
|
|
1738
|
-
// Added 2026-03-23
|
|
1739
|
-
confluence_toc_nav_a11y: createBooleanExperiment({
|
|
1740
|
-
productKeys: {
|
|
1741
|
-
confluence: 'confluence_toc_nav_a11y'
|
|
1742
|
-
},
|
|
1743
|
-
param: 'isEnabled',
|
|
1744
|
-
defaultValue: false
|
|
1745
|
-
}),
|
|
1746
1738
|
// Added 2026-03-25
|
|
1747
1739
|
platform_editor_improve_preset_builder_logging: createBooleanExperiment({
|
|
1748
1740
|
productKeys: {
|
|
@@ -1735,14 +1735,6 @@ export var editorExperimentsConfig = {
|
|
|
1735
1735
|
param: 'isEnabled',
|
|
1736
1736
|
defaultValue: false
|
|
1737
1737
|
}),
|
|
1738
|
-
// Added 2026-03-23
|
|
1739
|
-
confluence_toc_nav_a11y: createBooleanExperiment({
|
|
1740
|
-
productKeys: {
|
|
1741
|
-
confluence: 'confluence_toc_nav_a11y'
|
|
1742
|
-
},
|
|
1743
|
-
param: 'isEnabled',
|
|
1744
|
-
defaultValue: false
|
|
1745
|
-
}),
|
|
1746
1738
|
// Added 2026-03-25
|
|
1747
1739
|
platform_editor_improve_preset_builder_logging: createBooleanExperiment({
|
|
1748
1740
|
productKeys: {
|
|
@@ -1340,12 +1340,6 @@ export declare const editorExperimentsConfig: {
|
|
|
1340
1340
|
productKeys?: ProductKeys;
|
|
1341
1341
|
typeGuard: IsBooleanType;
|
|
1342
1342
|
};
|
|
1343
|
-
confluence_toc_nav_a11y: {
|
|
1344
|
-
defaultValue: boolean;
|
|
1345
|
-
param: string;
|
|
1346
|
-
productKeys?: ProductKeys;
|
|
1347
|
-
typeGuard: IsBooleanType;
|
|
1348
|
-
};
|
|
1349
1343
|
platform_editor_ai_xstate_migration: {
|
|
1350
1344
|
defaultValue: boolean;
|
|
1351
1345
|
param: string;
|
package/package.json
CHANGED