@atlaskit/tmp-editor-statsig 32.4.0 → 32.5.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
|
+
## 32.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`ab3866dd7f659`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ab3866dd7f659) -
|
|
8
|
+
Add editor_a11y_7152_profile_card_tab_order experiment to package
|
|
9
|
+
|
|
3
10
|
## 32.4.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -998,6 +998,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
998
998
|
param: 'isEnabled',
|
|
999
999
|
defaultValue: false
|
|
1000
1000
|
}),
|
|
1001
|
+
// Added 2026-02-18
|
|
1002
|
+
editor_a11y_7152_profile_card_tab_order: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1003
|
+
productKeys: {
|
|
1004
|
+
confluence: 'editor_a11y_7152_profile_card_tab_order'
|
|
1005
|
+
},
|
|
1006
|
+
param: 'isEnabled',
|
|
1007
|
+
defaultValue: false
|
|
1008
|
+
}),
|
|
1001
1009
|
// Added 2025-11-19
|
|
1002
1010
|
platform_editor_lovability_navigation_fixes: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1003
1011
|
productKeys: {
|
|
@@ -992,6 +992,14 @@ export const editorExperimentsConfig = {
|
|
|
992
992
|
param: 'isEnabled',
|
|
993
993
|
defaultValue: false
|
|
994
994
|
}),
|
|
995
|
+
// Added 2026-02-18
|
|
996
|
+
editor_a11y_7152_profile_card_tab_order: createBooleanExperiment({
|
|
997
|
+
productKeys: {
|
|
998
|
+
confluence: 'editor_a11y_7152_profile_card_tab_order'
|
|
999
|
+
},
|
|
1000
|
+
param: 'isEnabled',
|
|
1001
|
+
defaultValue: false
|
|
1002
|
+
}),
|
|
995
1003
|
// Added 2025-11-19
|
|
996
1004
|
platform_editor_lovability_navigation_fixes: createBooleanExperiment({
|
|
997
1005
|
productKeys: {
|
|
@@ -992,6 +992,14 @@ export var editorExperimentsConfig = {
|
|
|
992
992
|
param: 'isEnabled',
|
|
993
993
|
defaultValue: false
|
|
994
994
|
}),
|
|
995
|
+
// Added 2026-02-18
|
|
996
|
+
editor_a11y_7152_profile_card_tab_order: createBooleanExperiment({
|
|
997
|
+
productKeys: {
|
|
998
|
+
confluence: 'editor_a11y_7152_profile_card_tab_order'
|
|
999
|
+
},
|
|
1000
|
+
param: 'isEnabled',
|
|
1001
|
+
defaultValue: false
|
|
1002
|
+
}),
|
|
995
1003
|
// Added 2025-11-19
|
|
996
1004
|
platform_editor_lovability_navigation_fixes: createBooleanExperiment({
|
|
997
1005
|
productKeys: {
|
|
@@ -51,6 +51,12 @@ export declare const editorExperimentsConfig: {
|
|
|
51
51
|
productKeys?: ProductKeys;
|
|
52
52
|
typeGuard: IsBooleanType;
|
|
53
53
|
};
|
|
54
|
+
editor_a11y_7152_profile_card_tab_order: {
|
|
55
|
+
defaultValue: boolean;
|
|
56
|
+
param: string;
|
|
57
|
+
productKeys?: ProductKeys;
|
|
58
|
+
typeGuard: IsBooleanType;
|
|
59
|
+
};
|
|
54
60
|
cc_editor_insm_outlier_events: {
|
|
55
61
|
defaultValue: 'control' | 'test';
|
|
56
62
|
param: string;
|
|
@@ -51,6 +51,12 @@ export declare const editorExperimentsConfig: {
|
|
|
51
51
|
productKeys?: ProductKeys;
|
|
52
52
|
typeGuard: IsBooleanType;
|
|
53
53
|
};
|
|
54
|
+
editor_a11y_7152_profile_card_tab_order: {
|
|
55
|
+
defaultValue: boolean;
|
|
56
|
+
param: string;
|
|
57
|
+
productKeys?: ProductKeys;
|
|
58
|
+
typeGuard: IsBooleanType;
|
|
59
|
+
};
|
|
54
60
|
cc_editor_insm_outlier_events: {
|
|
55
61
|
defaultValue: 'control' | 'test';
|
|
56
62
|
param: string;
|
package/package.json
CHANGED