@atlaskit/tmp-editor-statsig 196.0.0 → 197.0.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,24 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 197.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- [`cd25a56e957e5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cd25a56e957e5) -
|
|
8
|
+
Clean up experiment `cc-maui-overlay-by-localid`. The enabled behaviour is now permanent: the
|
|
9
|
+
inline-Rovo streaming target for a media node is always the node's `localId`, so the AI-generating
|
|
10
|
+
overlay only lights up the node the user acted on instead of every copy/pasted duplicate sharing
|
|
11
|
+
the same media file id.
|
|
12
|
+
|
|
13
|
+
`@atlaskit/tmp-editor-statsig` removes the `cc-maui-overlay-by-localid` key from
|
|
14
|
+
`editorExperimentsConfig`, so reading it via `expValEquals`/`expValEqualsNoExposure` is now a type
|
|
15
|
+
error - remove those call sites.
|
|
16
|
+
|
|
17
|
+
`@atlassian/editor-rovo-bridge` removes `onPrepareImageUpdate` and `onClearAIGenerating` from the
|
|
18
|
+
`PassThroughCommandProps` type. The ACTION_PREPARE overlay path they drove is dead now that the
|
|
19
|
+
overlay is keyed on `localId`, and the payload only ever carried a media file id. Consumers
|
|
20
|
+
passing either callback should drop it; no replacement is needed.
|
|
21
|
+
|
|
3
22
|
## 196.0.0
|
|
4
23
|
|
|
5
24
|
### Major Changes
|
|
@@ -880,14 +880,6 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
880
880
|
param: 'isEnabled',
|
|
881
881
|
defaultValue: false
|
|
882
882
|
}),
|
|
883
|
-
// Added 2026-07-07
|
|
884
|
-
'cc-maui-overlay-by-localid': (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
885
|
-
productKeys: {
|
|
886
|
-
confluence: 'cc-maui-overlay-by-localid'
|
|
887
|
-
},
|
|
888
|
-
param: 'isEnabled',
|
|
889
|
-
defaultValue: false
|
|
890
|
-
}),
|
|
891
883
|
// Added 2026-07-29
|
|
892
884
|
cc_maui_polish_changes_batch_4: (0, _createBooleanExperiment.createBooleanExperiment)({
|
|
893
885
|
productKeys: {
|
|
@@ -874,14 +874,6 @@ export const editorExperimentsConfig = {
|
|
|
874
874
|
param: 'isEnabled',
|
|
875
875
|
defaultValue: false
|
|
876
876
|
}),
|
|
877
|
-
// Added 2026-07-07
|
|
878
|
-
'cc-maui-overlay-by-localid': createBooleanExperiment({
|
|
879
|
-
productKeys: {
|
|
880
|
-
confluence: 'cc-maui-overlay-by-localid'
|
|
881
|
-
},
|
|
882
|
-
param: 'isEnabled',
|
|
883
|
-
defaultValue: false
|
|
884
|
-
}),
|
|
885
877
|
// Added 2026-07-29
|
|
886
878
|
cc_maui_polish_changes_batch_4: createBooleanExperiment({
|
|
887
879
|
productKeys: {
|
|
@@ -874,14 +874,6 @@ export var editorExperimentsConfig = {
|
|
|
874
874
|
param: 'isEnabled',
|
|
875
875
|
defaultValue: false
|
|
876
876
|
}),
|
|
877
|
-
// Added 2026-07-07
|
|
878
|
-
'cc-maui-overlay-by-localid': createBooleanExperiment({
|
|
879
|
-
productKeys: {
|
|
880
|
-
confluence: 'cc-maui-overlay-by-localid'
|
|
881
|
-
},
|
|
882
|
-
param: 'isEnabled',
|
|
883
|
-
defaultValue: false
|
|
884
|
-
}),
|
|
885
877
|
// Added 2026-07-29
|
|
886
878
|
cc_maui_polish_changes_batch_4: createBooleanExperiment({
|
|
887
879
|
productKeys: {
|
|
@@ -685,12 +685,6 @@ export declare const editorExperimentsConfig: {
|
|
|
685
685
|
productKeys?: ProductKeys;
|
|
686
686
|
typeGuard: IsBooleanType;
|
|
687
687
|
};
|
|
688
|
-
'cc-maui-overlay-by-localid': {
|
|
689
|
-
defaultValue: boolean;
|
|
690
|
-
param: string;
|
|
691
|
-
productKeys?: ProductKeys;
|
|
692
|
-
typeGuard: IsBooleanType;
|
|
693
|
-
};
|
|
694
688
|
cc_maui_polish_changes_batch_4: {
|
|
695
689
|
defaultValue: boolean;
|
|
696
690
|
param: string;
|
package/package.json
CHANGED