@atlaskit/tmp-editor-statsig 46.1.0 → 46.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
|
+
## 46.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`b512cc17bab98`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/b512cc17bab98) -
|
|
8
|
+
Added change to avoid adding ufo hold if the the cardpreview is not available
|
|
9
|
+
|
|
3
10
|
## 46.1.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|
|
@@ -1756,6 +1756,13 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
|
1756
1756
|
param: 'isEnabled',
|
|
1757
1757
|
defaultValue: false
|
|
1758
1758
|
}),
|
|
1759
|
+
cc_editor_ttvc_media_hold_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1760
|
+
productKeys: {
|
|
1761
|
+
confluence: 'cc_editor_ttvc_media_hold_fix'
|
|
1762
|
+
},
|
|
1763
|
+
param: 'isEnabled',
|
|
1764
|
+
defaultValue: false
|
|
1765
|
+
}),
|
|
1759
1766
|
// Added 2026-03-06
|
|
1760
1767
|
platform_editor_single_player_expand: (0, _experimentBuilders.createBooleanExperiment)({
|
|
1761
1768
|
productKeys: {
|
|
@@ -1750,6 +1750,13 @@ export const editorExperimentsConfig = {
|
|
|
1750
1750
|
param: 'isEnabled',
|
|
1751
1751
|
defaultValue: false
|
|
1752
1752
|
}),
|
|
1753
|
+
cc_editor_ttvc_media_hold_fix: createBooleanExperiment({
|
|
1754
|
+
productKeys: {
|
|
1755
|
+
confluence: 'cc_editor_ttvc_media_hold_fix'
|
|
1756
|
+
},
|
|
1757
|
+
param: 'isEnabled',
|
|
1758
|
+
defaultValue: false
|
|
1759
|
+
}),
|
|
1753
1760
|
// Added 2026-03-06
|
|
1754
1761
|
platform_editor_single_player_expand: createBooleanExperiment({
|
|
1755
1762
|
productKeys: {
|
|
@@ -1750,6 +1750,13 @@ export var editorExperimentsConfig = {
|
|
|
1750
1750
|
param: 'isEnabled',
|
|
1751
1751
|
defaultValue: false
|
|
1752
1752
|
}),
|
|
1753
|
+
cc_editor_ttvc_media_hold_fix: createBooleanExperiment({
|
|
1754
|
+
productKeys: {
|
|
1755
|
+
confluence: 'cc_editor_ttvc_media_hold_fix'
|
|
1756
|
+
},
|
|
1757
|
+
param: 'isEnabled',
|
|
1758
|
+
defaultValue: false
|
|
1759
|
+
}),
|
|
1753
1760
|
// Added 2026-03-06
|
|
1754
1761
|
platform_editor_single_player_expand: createBooleanExperiment({
|
|
1755
1762
|
productKeys: {
|
|
@@ -1296,6 +1296,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1296
1296
|
productKeys?: ProductKeys;
|
|
1297
1297
|
typeGuard: IsBooleanType;
|
|
1298
1298
|
};
|
|
1299
|
+
cc_editor_ttvc_media_hold_fix: {
|
|
1300
|
+
defaultValue: boolean;
|
|
1301
|
+
param: string;
|
|
1302
|
+
productKeys?: ProductKeys;
|
|
1303
|
+
typeGuard: IsBooleanType;
|
|
1304
|
+
};
|
|
1299
1305
|
platform_editor_single_player_expand: {
|
|
1300
1306
|
defaultValue: boolean;
|
|
1301
1307
|
param: string;
|
|
@@ -1296,6 +1296,12 @@ export declare const editorExperimentsConfig: {
|
|
|
1296
1296
|
productKeys?: ProductKeys;
|
|
1297
1297
|
typeGuard: IsBooleanType;
|
|
1298
1298
|
};
|
|
1299
|
+
cc_editor_ttvc_media_hold_fix: {
|
|
1300
|
+
defaultValue: boolean;
|
|
1301
|
+
param: string;
|
|
1302
|
+
productKeys?: ProductKeys;
|
|
1303
|
+
typeGuard: IsBooleanType;
|
|
1304
|
+
};
|
|
1299
1305
|
platform_editor_single_player_expand: {
|
|
1300
1306
|
defaultValue: boolean;
|
|
1301
1307
|
param: string;
|
package/package.json
CHANGED