@atlaskit/tmp-editor-statsig 55.1.0 → 55.2.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
|
+
## 55.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`c82f7b4cbe1fd`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c82f7b4cbe1fd) -
|
|
8
|
+
Fix drag handle keyboard accessibility: Shift+Ctrl+H now correctly shows and focuses the drag
|
|
9
|
+
handle for keyboard users when mouse is outside the editor. Gated behind
|
|
10
|
+
platform_editor_drag_handle_keyboard_a11y experiment.
|
|
11
|
+
|
|
3
12
|
## 55.1.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
|
@@ -1977,5 +1977,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1977
1977
|
},
|
|
1978
1978
|
param: 'isEnabled',
|
|
1979
1979
|
defaultValue: false
|
|
1980
|
+
}),
|
|
1981
|
+
// Added 2026-04-08
|
|
1982
|
+
platform_editor_drag_handle_keyboard_a11y: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1983
|
+
productKeys: {
|
|
1984
|
+
confluence: 'platform_editor_drag_handle_keyboard_a11y'
|
|
1985
|
+
},
|
|
1986
|
+
param: 'isEnabled',
|
|
1987
|
+
defaultValue: false
|
|
1980
1988
|
})
|
|
1981
1989
|
};
|
|
@@ -1971,5 +1971,13 @@ export const editorExperimentsConfig = {
|
|
|
1971
1971
|
},
|
|
1972
1972
|
param: 'isEnabled',
|
|
1973
1973
|
defaultValue: false
|
|
1974
|
+
}),
|
|
1975
|
+
// Added 2026-04-08
|
|
1976
|
+
platform_editor_drag_handle_keyboard_a11y: createBooleanExperiment({
|
|
1977
|
+
productKeys: {
|
|
1978
|
+
confluence: 'platform_editor_drag_handle_keyboard_a11y'
|
|
1979
|
+
},
|
|
1980
|
+
param: 'isEnabled',
|
|
1981
|
+
defaultValue: false
|
|
1974
1982
|
})
|
|
1975
1983
|
};
|
|
@@ -1971,5 +1971,13 @@ export var editorExperimentsConfig = {
|
|
|
1971
1971
|
},
|
|
1972
1972
|
param: 'isEnabled',
|
|
1973
1973
|
defaultValue: false
|
|
1974
|
+
}),
|
|
1975
|
+
// Added 2026-04-08
|
|
1976
|
+
platform_editor_drag_handle_keyboard_a11y: createBooleanExperiment({
|
|
1977
|
+
productKeys: {
|
|
1978
|
+
confluence: 'platform_editor_drag_handle_keyboard_a11y'
|
|
1979
|
+
},
|
|
1980
|
+
param: 'isEnabled',
|
|
1981
|
+
defaultValue: false
|
|
1974
1982
|
})
|
|
1975
1983
|
};
|
|
@@ -1453,5 +1453,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1453
1453
|
productKeys?: ProductKeys;
|
|
1454
1454
|
typeGuard: IsBooleanType;
|
|
1455
1455
|
};
|
|
1456
|
+
platform_editor_drag_handle_keyboard_a11y: {
|
|
1457
|
+
defaultValue: boolean;
|
|
1458
|
+
param: string;
|
|
1459
|
+
productKeys?: ProductKeys;
|
|
1460
|
+
typeGuard: IsBooleanType;
|
|
1461
|
+
};
|
|
1456
1462
|
};
|
|
1457
1463
|
export {};
|
|
@@ -1453,5 +1453,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1453
1453
|
productKeys?: ProductKeys;
|
|
1454
1454
|
typeGuard: IsBooleanType;
|
|
1455
1455
|
};
|
|
1456
|
+
platform_editor_drag_handle_keyboard_a11y: {
|
|
1457
|
+
defaultValue: boolean;
|
|
1458
|
+
param: string;
|
|
1459
|
+
productKeys?: ProductKeys;
|
|
1460
|
+
typeGuard: IsBooleanType;
|
|
1461
|
+
};
|
|
1456
1462
|
};
|
|
1457
1463
|
export {};
|
package/package.json
CHANGED