@atlaskit/tmp-editor-statsig 25.6.0 → 25.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,16 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 25.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`954a1eed1f43b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/954a1eed1f43b) -
|
|
8
|
+
[A11Y-35924] wrap LinkPicker in focus lock to return focus to trigger after escaping Link dialog
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
3
14
|
## 25.6.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
|
@@ -1421,5 +1421,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1421
1421
|
},
|
|
1422
1422
|
param: 'isEnabled',
|
|
1423
1423
|
defaultValue: false
|
|
1424
|
+
}),
|
|
1425
|
+
// Added 2026-02-12
|
|
1426
|
+
platform_editor_a11y_escape_link_dialog: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1427
|
+
productKeys: {
|
|
1428
|
+
confluence: 'platform_editor_a11y_escape_link_dialog',
|
|
1429
|
+
jira: 'platform_editor_a11y_escape_link_dialog'
|
|
1430
|
+
},
|
|
1431
|
+
param: 'isEnabled',
|
|
1432
|
+
defaultValue: false
|
|
1424
1433
|
})
|
|
1425
1434
|
};
|
|
@@ -1415,5 +1415,14 @@ export const editorExperimentsConfig = {
|
|
|
1415
1415
|
},
|
|
1416
1416
|
param: 'isEnabled',
|
|
1417
1417
|
defaultValue: false
|
|
1418
|
+
}),
|
|
1419
|
+
// Added 2026-02-12
|
|
1420
|
+
platform_editor_a11y_escape_link_dialog: createBooleanExperiment({
|
|
1421
|
+
productKeys: {
|
|
1422
|
+
confluence: 'platform_editor_a11y_escape_link_dialog',
|
|
1423
|
+
jira: 'platform_editor_a11y_escape_link_dialog'
|
|
1424
|
+
},
|
|
1425
|
+
param: 'isEnabled',
|
|
1426
|
+
defaultValue: false
|
|
1418
1427
|
})
|
|
1419
1428
|
};
|
|
@@ -1415,5 +1415,14 @@ export var editorExperimentsConfig = {
|
|
|
1415
1415
|
},
|
|
1416
1416
|
param: 'isEnabled',
|
|
1417
1417
|
defaultValue: false
|
|
1418
|
+
}),
|
|
1419
|
+
// Added 2026-02-12
|
|
1420
|
+
platform_editor_a11y_escape_link_dialog: createBooleanExperiment({
|
|
1421
|
+
productKeys: {
|
|
1422
|
+
confluence: 'platform_editor_a11y_escape_link_dialog',
|
|
1423
|
+
jira: 'platform_editor_a11y_escape_link_dialog'
|
|
1424
|
+
},
|
|
1425
|
+
param: 'isEnabled',
|
|
1426
|
+
defaultValue: false
|
|
1418
1427
|
})
|
|
1419
1428
|
};
|
|
@@ -1051,5 +1051,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1051
1051
|
productKeys?: ProductKeys;
|
|
1052
1052
|
typeGuard: IsBooleanType;
|
|
1053
1053
|
};
|
|
1054
|
+
platform_editor_a11y_escape_link_dialog: {
|
|
1055
|
+
defaultValue: boolean;
|
|
1056
|
+
param: string;
|
|
1057
|
+
productKeys?: ProductKeys;
|
|
1058
|
+
typeGuard: IsBooleanType;
|
|
1059
|
+
};
|
|
1054
1060
|
};
|
|
1055
1061
|
export {};
|
|
@@ -1051,5 +1051,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1051
1051
|
productKeys?: ProductKeys;
|
|
1052
1052
|
typeGuard: IsBooleanType;
|
|
1053
1053
|
};
|
|
1054
|
+
platform_editor_a11y_escape_link_dialog: {
|
|
1055
|
+
defaultValue: boolean;
|
|
1056
|
+
param: string;
|
|
1057
|
+
productKeys?: ProductKeys;
|
|
1058
|
+
typeGuard: IsBooleanType;
|
|
1059
|
+
};
|
|
1054
1060
|
};
|
|
1055
1061
|
export {};
|
package/package.json
CHANGED