@atlaskit/tmp-editor-statsig 71.0.1 → 71.1.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
|
+
## 71.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`251c0e140edf6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/251c0e140edf6) -
|
|
8
|
+
[EDITOR-6540] AI-mate error screen dismissal incorrectly triggers discard confirmation, bug fix.
|
|
9
|
+
|
|
3
10
|
## 71.0.1
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -2041,5 +2041,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
2041
2041
|
},
|
|
2042
2042
|
param: 'isEnabled',
|
|
2043
2043
|
defaultValue: false
|
|
2044
|
+
}),
|
|
2045
|
+
// Added 2026-04-24
|
|
2046
|
+
platform_editor_ai_fix_error_discard_screen: (0, _experimentBuilders.createBooleanExperiment)({
|
|
2047
|
+
productKeys: {
|
|
2048
|
+
confluence: 'platform_editor_ai_fix_error_discard_screen'
|
|
2049
|
+
},
|
|
2050
|
+
param: 'isEnabled',
|
|
2051
|
+
defaultValue: false
|
|
2044
2052
|
})
|
|
2045
2053
|
};
|
|
@@ -2035,5 +2035,13 @@ export const editorExperimentsConfig = {
|
|
|
2035
2035
|
},
|
|
2036
2036
|
param: 'isEnabled',
|
|
2037
2037
|
defaultValue: false
|
|
2038
|
+
}),
|
|
2039
|
+
// Added 2026-04-24
|
|
2040
|
+
platform_editor_ai_fix_error_discard_screen: createBooleanExperiment({
|
|
2041
|
+
productKeys: {
|
|
2042
|
+
confluence: 'platform_editor_ai_fix_error_discard_screen'
|
|
2043
|
+
},
|
|
2044
|
+
param: 'isEnabled',
|
|
2045
|
+
defaultValue: false
|
|
2038
2046
|
})
|
|
2039
2047
|
};
|
|
@@ -2035,5 +2035,13 @@ export var editorExperimentsConfig = {
|
|
|
2035
2035
|
},
|
|
2036
2036
|
param: 'isEnabled',
|
|
2037
2037
|
defaultValue: false
|
|
2038
|
+
}),
|
|
2039
|
+
// Added 2026-04-24
|
|
2040
|
+
platform_editor_ai_fix_error_discard_screen: createBooleanExperiment({
|
|
2041
|
+
productKeys: {
|
|
2042
|
+
confluence: 'platform_editor_ai_fix_error_discard_screen'
|
|
2043
|
+
},
|
|
2044
|
+
param: 'isEnabled',
|
|
2045
|
+
defaultValue: false
|
|
2038
2046
|
})
|
|
2039
2047
|
};
|
|
@@ -1500,5 +1500,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1500
1500
|
productKeys?: ProductKeys;
|
|
1501
1501
|
typeGuard: IsBooleanType;
|
|
1502
1502
|
};
|
|
1503
|
+
platform_editor_ai_fix_error_discard_screen: {
|
|
1504
|
+
defaultValue: boolean;
|
|
1505
|
+
param: string;
|
|
1506
|
+
productKeys?: ProductKeys;
|
|
1507
|
+
typeGuard: IsBooleanType;
|
|
1508
|
+
};
|
|
1503
1509
|
};
|
|
1504
1510
|
export {};
|
|
@@ -1500,5 +1500,11 @@ export declare const editorExperimentsConfig: {
|
|
|
1500
1500
|
productKeys?: ProductKeys;
|
|
1501
1501
|
typeGuard: IsBooleanType;
|
|
1502
1502
|
};
|
|
1503
|
+
platform_editor_ai_fix_error_discard_screen: {
|
|
1504
|
+
defaultValue: boolean;
|
|
1505
|
+
param: string;
|
|
1506
|
+
productKeys?: ProductKeys;
|
|
1507
|
+
typeGuard: IsBooleanType;
|
|
1508
|
+
};
|
|
1503
1509
|
};
|
|
1504
1510
|
export {};
|
package/package.json
CHANGED