@atlaskit/tmp-editor-statsig 11.1.0 → 11.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,12 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 11.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`3d41d42ada6d5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3d41d42ada6d5) -
|
|
8
|
+
[ED-28600] add new experiment for A11Y violation fixes
|
|
9
|
+
|
|
3
10
|
## 11.1.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -710,5 +710,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
710
710
|
},
|
|
711
711
|
param: 'isEnabled',
|
|
712
712
|
defaultValue: false
|
|
713
|
+
}),
|
|
714
|
+
// Added 2025-08-18
|
|
715
|
+
platform_editor_find_replace_a11y_fixes: (0, _experimentBuilders.createBooleanExperiment)({
|
|
716
|
+
productKeys: {
|
|
717
|
+
confluence: 'platform_editor_find_replace_a11y_fixes'
|
|
718
|
+
},
|
|
719
|
+
param: 'isEnabled',
|
|
720
|
+
defaultValue: false
|
|
713
721
|
})
|
|
714
722
|
};
|
|
@@ -704,5 +704,13 @@ export const editorExperimentsConfig = {
|
|
|
704
704
|
},
|
|
705
705
|
param: 'isEnabled',
|
|
706
706
|
defaultValue: false
|
|
707
|
+
}),
|
|
708
|
+
// Added 2025-08-18
|
|
709
|
+
platform_editor_find_replace_a11y_fixes: createBooleanExperiment({
|
|
710
|
+
productKeys: {
|
|
711
|
+
confluence: 'platform_editor_find_replace_a11y_fixes'
|
|
712
|
+
},
|
|
713
|
+
param: 'isEnabled',
|
|
714
|
+
defaultValue: false
|
|
707
715
|
})
|
|
708
716
|
};
|
|
@@ -704,5 +704,13 @@ export var editorExperimentsConfig = {
|
|
|
704
704
|
},
|
|
705
705
|
param: 'isEnabled',
|
|
706
706
|
defaultValue: false
|
|
707
|
+
}),
|
|
708
|
+
// Added 2025-08-18
|
|
709
|
+
platform_editor_find_replace_a11y_fixes: createBooleanExperiment({
|
|
710
|
+
productKeys: {
|
|
711
|
+
confluence: 'platform_editor_find_replace_a11y_fixes'
|
|
712
|
+
},
|
|
713
|
+
param: 'isEnabled',
|
|
714
|
+
defaultValue: false
|
|
707
715
|
})
|
|
708
716
|
};
|
|
@@ -526,4 +526,10 @@ export declare const editorExperimentsConfig: {
|
|
|
526
526
|
productKeys?: import("./types").ProductKeys;
|
|
527
527
|
param: string;
|
|
528
528
|
};
|
|
529
|
+
platform_editor_find_replace_a11y_fixes: {
|
|
530
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
531
|
+
defaultValue: boolean;
|
|
532
|
+
productKeys?: import("./types").ProductKeys;
|
|
533
|
+
param: string;
|
|
534
|
+
};
|
|
529
535
|
};
|
|
@@ -526,4 +526,10 @@ export declare const editorExperimentsConfig: {
|
|
|
526
526
|
productKeys?: import("./types").ProductKeys;
|
|
527
527
|
param: string;
|
|
528
528
|
};
|
|
529
|
+
platform_editor_find_replace_a11y_fixes: {
|
|
530
|
+
typeGuard: typeof import("./type-guards").isBoolean;
|
|
531
|
+
defaultValue: boolean;
|
|
532
|
+
productKeys?: import("./types").ProductKeys;
|
|
533
|
+
param: string;
|
|
534
|
+
};
|
|
529
535
|
};
|
package/package.json
CHANGED