@atlaskit/tmp-editor-statsig 135.3.0 → 135.4.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,23 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 135.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`069c5c0253ba5`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/069c5c0253ba5) -
|
|
8
|
+
[ux] Improve Remix button hover reliability near the right edge of narrow editor layouts behind
|
|
9
|
+
the `cc_maui_remix_button_hover_corridor` experiment.
|
|
10
|
+
|
|
11
|
+
Consumers can check the new typed boolean experiment at the behavior callsite:
|
|
12
|
+
|
|
13
|
+
```ts
|
|
14
|
+
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
15
|
+
|
|
16
|
+
if (expValEquals('cc_maui_remix_button_hover_corridor', 'isEnabled', true)) {
|
|
17
|
+
// Apply the treatment behavior.
|
|
18
|
+
}
|
|
19
|
+
```
|
|
20
|
+
|
|
3
21
|
## 135.3.0
|
|
4
22
|
|
|
5
23
|
### Minor Changes
|
|
@@ -38,7 +38,14 @@ var disallowsProductKeys = exports.disallowsProductKeys = ['platform_editor_bloc
|
|
|
38
38
|
*/
|
|
39
39
|
var editorExperimentsConfig = exports.editorExperimentsConfig = {
|
|
40
40
|
// new format to avoid collisions with other users when updating the file
|
|
41
|
-
|
|
41
|
+
// Added 2026-07-18
|
|
42
|
+
cc_maui_remix_button_hover_corridor: (0, _experimentBuilders.createBooleanExperiment)({
|
|
43
|
+
productKeys: {
|
|
44
|
+
confluence: 'cc_maui_remix_button_hover_corridor'
|
|
45
|
+
},
|
|
46
|
+
param: 'isEnabled',
|
|
47
|
+
defaultValue: false
|
|
48
|
+
}),
|
|
42
49
|
// Added 2026-07-24
|
|
43
50
|
platform_editor_layout_column_delete_shortcut_fix: (0, _experimentBuilders.createBooleanExperiment)({
|
|
44
51
|
productKeys: {
|
|
@@ -32,7 +32,14 @@ export const disallowsProductKeys = ['platform_editor_block_menu', 'platform_edi
|
|
|
32
32
|
*/
|
|
33
33
|
export const editorExperimentsConfig = {
|
|
34
34
|
// new format to avoid collisions with other users when updating the file
|
|
35
|
-
|
|
35
|
+
// Added 2026-07-18
|
|
36
|
+
cc_maui_remix_button_hover_corridor: createBooleanExperiment({
|
|
37
|
+
productKeys: {
|
|
38
|
+
confluence: 'cc_maui_remix_button_hover_corridor'
|
|
39
|
+
},
|
|
40
|
+
param: 'isEnabled',
|
|
41
|
+
defaultValue: false
|
|
42
|
+
}),
|
|
36
43
|
// Added 2026-07-24
|
|
37
44
|
platform_editor_layout_column_delete_shortcut_fix: createBooleanExperiment({
|
|
38
45
|
productKeys: {
|
|
@@ -32,7 +32,14 @@ export var disallowsProductKeys = ['platform_editor_block_menu', 'platform_edito
|
|
|
32
32
|
*/
|
|
33
33
|
export var editorExperimentsConfig = {
|
|
34
34
|
// new format to avoid collisions with other users when updating the file
|
|
35
|
-
|
|
35
|
+
// Added 2026-07-18
|
|
36
|
+
cc_maui_remix_button_hover_corridor: createBooleanExperiment({
|
|
37
|
+
productKeys: {
|
|
38
|
+
confluence: 'cc_maui_remix_button_hover_corridor'
|
|
39
|
+
},
|
|
40
|
+
param: 'isEnabled',
|
|
41
|
+
defaultValue: false
|
|
42
|
+
}),
|
|
36
43
|
// Added 2026-07-24
|
|
37
44
|
platform_editor_layout_column_delete_shortcut_fix: createBooleanExperiment({
|
|
38
45
|
productKeys: {
|
|
@@ -27,6 +27,12 @@ export declare const editorExperimentsConfig: {
|
|
|
27
27
|
productKeys?: ProductKeys;
|
|
28
28
|
typeGuard: IsBooleanType;
|
|
29
29
|
};
|
|
30
|
+
cc_maui_remix_button_hover_corridor: {
|
|
31
|
+
defaultValue: boolean;
|
|
32
|
+
param: string;
|
|
33
|
+
productKeys?: ProductKeys;
|
|
34
|
+
typeGuard: IsBooleanType;
|
|
35
|
+
};
|
|
30
36
|
platform_editor_agent_be_streaming: {
|
|
31
37
|
defaultValue: boolean;
|
|
32
38
|
param: string;
|
package/package.json
CHANGED