@atlaskit/tmp-editor-statsig 31.2.0 → 31.3.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
|
+
## 31.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`3a649003f9b55`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3a649003f9b55) -
|
|
8
|
+
[A11Y-22843] add experiment to statsig config
|
|
9
|
+
|
|
3
10
|
## 31.2.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1493,5 +1493,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1493
1493
|
},
|
|
1494
1494
|
param: 'isEnabled',
|
|
1495
1495
|
defaultValue: false
|
|
1496
|
+
}),
|
|
1497
|
+
// Added 2026-02-25
|
|
1498
|
+
platform_editor_a11y_typeahead_tab_keypress: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1499
|
+
productKeys: {
|
|
1500
|
+
confluence: 'platform_editor_a11y_typeahead_tab_keypress'
|
|
1501
|
+
},
|
|
1502
|
+
param: 'isEnabled',
|
|
1503
|
+
defaultValue: false
|
|
1496
1504
|
})
|
|
1497
1505
|
};
|
|
@@ -1487,5 +1487,13 @@ export const editorExperimentsConfig = {
|
|
|
1487
1487
|
},
|
|
1488
1488
|
param: 'isEnabled',
|
|
1489
1489
|
defaultValue: false
|
|
1490
|
+
}),
|
|
1491
|
+
// Added 2026-02-25
|
|
1492
|
+
platform_editor_a11y_typeahead_tab_keypress: createBooleanExperiment({
|
|
1493
|
+
productKeys: {
|
|
1494
|
+
confluence: 'platform_editor_a11y_typeahead_tab_keypress'
|
|
1495
|
+
},
|
|
1496
|
+
param: 'isEnabled',
|
|
1497
|
+
defaultValue: false
|
|
1490
1498
|
})
|
|
1491
1499
|
};
|
|
@@ -1487,5 +1487,13 @@ export var editorExperimentsConfig = {
|
|
|
1487
1487
|
},
|
|
1488
1488
|
param: 'isEnabled',
|
|
1489
1489
|
defaultValue: false
|
|
1490
|
+
}),
|
|
1491
|
+
// Added 2026-02-25
|
|
1492
|
+
platform_editor_a11y_typeahead_tab_keypress: createBooleanExperiment({
|
|
1493
|
+
productKeys: {
|
|
1494
|
+
confluence: 'platform_editor_a11y_typeahead_tab_keypress'
|
|
1495
|
+
},
|
|
1496
|
+
param: 'isEnabled',
|
|
1497
|
+
defaultValue: false
|
|
1490
1498
|
})
|
|
1491
1499
|
};
|
|
@@ -1104,5 +1104,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1104
1104
|
productKeys?: ProductKeys;
|
|
1105
1105
|
typeGuard: IsBooleanType;
|
|
1106
1106
|
};
|
|
1107
|
+
platform_editor_a11y_typeahead_tab_keypress: {
|
|
1108
|
+
defaultValue: boolean;
|
|
1109
|
+
param: string;
|
|
1110
|
+
productKeys?: ProductKeys;
|
|
1111
|
+
typeGuard: IsBooleanType;
|
|
1112
|
+
};
|
|
1107
1113
|
};
|
|
1108
1114
|
export {};
|
|
@@ -1104,5 +1104,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1104
1104
|
productKeys?: ProductKeys;
|
|
1105
1105
|
typeGuard: IsBooleanType;
|
|
1106
1106
|
};
|
|
1107
|
+
platform_editor_a11y_typeahead_tab_keypress: {
|
|
1108
|
+
defaultValue: boolean;
|
|
1109
|
+
param: string;
|
|
1110
|
+
productKeys?: ProductKeys;
|
|
1111
|
+
typeGuard: IsBooleanType;
|
|
1112
|
+
};
|
|
1107
1113
|
};
|
|
1108
1114
|
export {};
|
package/package.json
CHANGED