@atlaskit/tmp-editor-statsig 40.6.0 → 40.7.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
|
+
## 40.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`1f132a3204f7b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1f132a3204f7b) -
|
|
8
|
+
Fix Safari cursor jumping to start when hovering over typeahead menu items
|
|
9
|
+
|
|
3
10
|
## 40.6.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1414,6 +1414,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1414
1414
|
param: 'isEnabled',
|
|
1415
1415
|
defaultValue: false
|
|
1416
1416
|
}),
|
|
1417
|
+
// Added 2026-03-16
|
|
1418
|
+
platform_safari_cursor_typeahead_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1419
|
+
productKeys: {
|
|
1420
|
+
confluence: 'platform_safari_cursor_typeahead_fix'
|
|
1421
|
+
},
|
|
1422
|
+
param: 'isEnabled',
|
|
1423
|
+
defaultValue: false
|
|
1424
|
+
}),
|
|
1417
1425
|
// Added 2026-02-17
|
|
1418
1426
|
confluence_frontend_fix_date_hydration_error: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1419
1427
|
productKeys: {
|
|
@@ -1408,6 +1408,14 @@ export const editorExperimentsConfig = {
|
|
|
1408
1408
|
param: 'isEnabled',
|
|
1409
1409
|
defaultValue: false
|
|
1410
1410
|
}),
|
|
1411
|
+
// Added 2026-03-16
|
|
1412
|
+
platform_safari_cursor_typeahead_fix: createBooleanExperiment({
|
|
1413
|
+
productKeys: {
|
|
1414
|
+
confluence: 'platform_safari_cursor_typeahead_fix'
|
|
1415
|
+
},
|
|
1416
|
+
param: 'isEnabled',
|
|
1417
|
+
defaultValue: false
|
|
1418
|
+
}),
|
|
1411
1419
|
// Added 2026-02-17
|
|
1412
1420
|
confluence_frontend_fix_date_hydration_error: createBooleanExperiment({
|
|
1413
1421
|
productKeys: {
|
|
@@ -1408,6 +1408,14 @@ export var editorExperimentsConfig = {
|
|
|
1408
1408
|
param: 'isEnabled',
|
|
1409
1409
|
defaultValue: false
|
|
1410
1410
|
}),
|
|
1411
|
+
// Added 2026-03-16
|
|
1412
|
+
platform_safari_cursor_typeahead_fix: createBooleanExperiment({
|
|
1413
|
+
productKeys: {
|
|
1414
|
+
confluence: 'platform_safari_cursor_typeahead_fix'
|
|
1415
|
+
},
|
|
1416
|
+
param: 'isEnabled',
|
|
1417
|
+
defaultValue: false
|
|
1418
|
+
}),
|
|
1411
1419
|
// Added 2026-02-17
|
|
1412
1420
|
confluence_frontend_fix_date_hydration_error: createBooleanExperiment({
|
|
1413
1421
|
productKeys: {
|
|
@@ -1038,6 +1038,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1038
1038
|
productKeys?: ProductKeys;
|
|
1039
1039
|
typeGuard: IsBooleanType;
|
|
1040
1040
|
};
|
|
1041
|
+
platform_safari_cursor_typeahead_fix: {
|
|
1042
|
+
defaultValue: boolean;
|
|
1043
|
+
param: string;
|
|
1044
|
+
productKeys?: ProductKeys;
|
|
1045
|
+
typeGuard: IsBooleanType;
|
|
1046
|
+
};
|
|
1041
1047
|
platform_editor_comment_editor_border_radius: {
|
|
1042
1048
|
defaultValue: boolean;
|
|
1043
1049
|
param: string;
|
|
@@ -1038,6 +1038,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1038
1038
|
productKeys?: ProductKeys;
|
|
1039
1039
|
typeGuard: IsBooleanType;
|
|
1040
1040
|
};
|
|
1041
|
+
platform_safari_cursor_typeahead_fix: {
|
|
1042
|
+
defaultValue: boolean;
|
|
1043
|
+
param: string;
|
|
1044
|
+
productKeys?: ProductKeys;
|
|
1045
|
+
typeGuard: IsBooleanType;
|
|
1046
|
+
};
|
|
1041
1047
|
platform_editor_comment_editor_border_radius: {
|
|
1042
1048
|
defaultValue: boolean;
|
|
1043
1049
|
param: string;
|
package/package.json
CHANGED