@atlaskit/tmp-editor-statsig 167.0.0 → 168.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,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 168.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`c4385174a8662`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c4385174a8662) -
|
|
8
|
+
Clean up experiment `editor_a11y_role_textbox`.
|
|
9
|
+
|
|
3
10
|
## 167.0.0
|
|
4
11
|
|
|
5
12
|
### Major Changes
|
|
@@ -1044,14 +1044,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1044
1044
|
values: ['control', 'new-description', 'orig-description'],
|
|
1045
1045
|
defaultValue: 'control'
|
|
1046
1046
|
}),
|
|
1047
|
-
// Added 2026-02-05 - A11Y-10416
|
|
1048
|
-
editor_a11y_role_textbox: (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
1049
|
-
productKeys: {
|
|
1050
|
-
confluence: 'editor_a11y_role_textbox'
|
|
1051
|
-
},
|
|
1052
|
-
param: 'isEnabled',
|
|
1053
|
-
defaultValue: false
|
|
1054
|
-
}),
|
|
1055
1047
|
// Added 2026-01-28
|
|
1056
1048
|
platform_editor_smartlink_local_cache: (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
1057
1049
|
productKeys: {
|
|
@@ -1038,14 +1038,6 @@ export const editorExperimentsConfig = {
|
|
|
1038
1038
|
values: ['control', 'new-description', 'orig-description'],
|
|
1039
1039
|
defaultValue: 'control'
|
|
1040
1040
|
}),
|
|
1041
|
-
// Added 2026-02-05 - A11Y-10416
|
|
1042
|
-
editor_a11y_role_textbox: createBooleanExperiment({
|
|
1043
|
-
productKeys: {
|
|
1044
|
-
confluence: 'editor_a11y_role_textbox'
|
|
1045
|
-
},
|
|
1046
|
-
param: 'isEnabled',
|
|
1047
|
-
defaultValue: false
|
|
1048
|
-
}),
|
|
1049
1041
|
// Added 2026-01-28
|
|
1050
1042
|
platform_editor_smartlink_local_cache: createBooleanExperiment({
|
|
1051
1043
|
productKeys: {
|
|
@@ -1038,14 +1038,6 @@ export var editorExperimentsConfig = {
|
|
|
1038
1038
|
values: ['control', 'new-description', 'orig-description'],
|
|
1039
1039
|
defaultValue: 'control'
|
|
1040
1040
|
}),
|
|
1041
|
-
// Added 2026-02-05 - A11Y-10416
|
|
1042
|
-
editor_a11y_role_textbox: createBooleanExperiment({
|
|
1043
|
-
productKeys: {
|
|
1044
|
-
confluence: 'editor_a11y_role_textbox'
|
|
1045
|
-
},
|
|
1046
|
-
param: 'isEnabled',
|
|
1047
|
-
defaultValue: false
|
|
1048
|
-
}),
|
|
1049
1041
|
// Added 2026-01-28
|
|
1050
1042
|
platform_editor_smartlink_local_cache: createBooleanExperiment({
|
|
1051
1043
|
productKeys: {
|
|
@@ -775,12 +775,6 @@ export declare const editorExperimentsConfig: {
|
|
|
775
775
|
productKeys?: ProductKeys;
|
|
776
776
|
typeGuard: IsBooleanType;
|
|
777
777
|
};
|
|
778
|
-
editor_a11y_role_textbox: {
|
|
779
|
-
defaultValue: boolean;
|
|
780
|
-
param: string;
|
|
781
|
-
productKeys?: ProductKeys;
|
|
782
|
-
typeGuard: IsBooleanType;
|
|
783
|
-
};
|
|
784
778
|
platform_editor_smartlink_local_cache: {
|
|
785
779
|
defaultValue: boolean;
|
|
786
780
|
param: string;
|
package/package.json
CHANGED