@atlaskit/tmp-editor-statsig 52.1.0 → 52.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
|
+
## 52.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`89c9f0b61cb49`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/89c9f0b61cb49) -
|
|
8
|
+
ENGHEALTH-49654 add aria label to rovo inline chat dialog
|
|
9
|
+
|
|
3
10
|
## 52.1.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1714,6 +1714,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1714
1714
|
param: 'isEnabled',
|
|
1715
1715
|
defaultValue: false
|
|
1716
1716
|
}),
|
|
1717
|
+
// Added 2026-04-01
|
|
1718
|
+
platform_editor_rovo_inline_chat_aria_label: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1719
|
+
productKeys: {
|
|
1720
|
+
confluence: 'platform_editor_rovo_inline_chat_aria_label'
|
|
1721
|
+
},
|
|
1722
|
+
param: 'isEnabled',
|
|
1723
|
+
defaultValue: false
|
|
1724
|
+
}),
|
|
1717
1725
|
// Added 2026-03-11
|
|
1718
1726
|
platform_editor_are_nodes_equal_ignore_mark_order: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1719
1727
|
productKeys: {
|
|
@@ -1708,6 +1708,14 @@ export const editorExperimentsConfig = {
|
|
|
1708
1708
|
param: 'isEnabled',
|
|
1709
1709
|
defaultValue: false
|
|
1710
1710
|
}),
|
|
1711
|
+
// Added 2026-04-01
|
|
1712
|
+
platform_editor_rovo_inline_chat_aria_label: createBooleanExperiment({
|
|
1713
|
+
productKeys: {
|
|
1714
|
+
confluence: 'platform_editor_rovo_inline_chat_aria_label'
|
|
1715
|
+
},
|
|
1716
|
+
param: 'isEnabled',
|
|
1717
|
+
defaultValue: false
|
|
1718
|
+
}),
|
|
1711
1719
|
// Added 2026-03-11
|
|
1712
1720
|
platform_editor_are_nodes_equal_ignore_mark_order: createBooleanExperiment({
|
|
1713
1721
|
productKeys: {
|
|
@@ -1708,6 +1708,14 @@ export var editorExperimentsConfig = {
|
|
|
1708
1708
|
param: 'isEnabled',
|
|
1709
1709
|
defaultValue: false
|
|
1710
1710
|
}),
|
|
1711
|
+
// Added 2026-04-01
|
|
1712
|
+
platform_editor_rovo_inline_chat_aria_label: createBooleanExperiment({
|
|
1713
|
+
productKeys: {
|
|
1714
|
+
confluence: 'platform_editor_rovo_inline_chat_aria_label'
|
|
1715
|
+
},
|
|
1716
|
+
param: 'isEnabled',
|
|
1717
|
+
defaultValue: false
|
|
1718
|
+
}),
|
|
1711
1719
|
// Added 2026-03-11
|
|
1712
1720
|
platform_editor_are_nodes_equal_ignore_mark_order: createBooleanExperiment({
|
|
1713
1721
|
productKeys: {
|
|
@@ -1278,6 +1278,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1278
1278
|
productKeys?: ProductKeys;
|
|
1279
1279
|
typeGuard: IsBooleanType;
|
|
1280
1280
|
};
|
|
1281
|
+
platform_editor_rovo_inline_chat_aria_label: {
|
|
1282
|
+
defaultValue: boolean;
|
|
1283
|
+
param: string;
|
|
1284
|
+
productKeys?: ProductKeys;
|
|
1285
|
+
typeGuard: IsBooleanType;
|
|
1286
|
+
};
|
|
1281
1287
|
platform_editor_are_nodes_equal_ignore_mark_order: {
|
|
1282
1288
|
defaultValue: boolean;
|
|
1283
1289
|
param: string;
|
|
@@ -1278,6 +1278,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1278
1278
|
productKeys?: ProductKeys;
|
|
1279
1279
|
typeGuard: IsBooleanType;
|
|
1280
1280
|
};
|
|
1281
|
+
platform_editor_rovo_inline_chat_aria_label: {
|
|
1282
|
+
defaultValue: boolean;
|
|
1283
|
+
param: string;
|
|
1284
|
+
productKeys?: ProductKeys;
|
|
1285
|
+
typeGuard: IsBooleanType;
|
|
1286
|
+
};
|
|
1281
1287
|
platform_editor_are_nodes_equal_ignore_mark_order: {
|
|
1282
1288
|
defaultValue: boolean;
|
|
1283
1289
|
param: string;
|
package/package.json
CHANGED