@atlaskit/tmp-editor-statsig 89.1.1 → 89.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,22 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 89.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`a826d67f22cc9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a826d67f22cc9) -
|
|
8
|
+
Replace the legacy circular spinner in `CardView` and `CardLoading` with a bottom-aligned grey
|
|
9
|
+
loading bar when `cc-maui-ai-edit-loading-experiment.isEnabled` is on. The bar is 6px to match the
|
|
10
|
+
native-embed loading bar, and the media card loading/placeholder background now uses
|
|
11
|
+
`elevation.surface.sunken`. Registers `cc-maui-ai-edit-loading-experiment` in
|
|
12
|
+
`@atlaskit/tmp-editor-statsig`.
|
|
13
|
+
|
|
14
|
+
Round the ends (pill radius) of the MAUI loading bars so the media-card loading bar, native-embed
|
|
15
|
+
loading bar, and AI generating overlay bars are visually consistent.
|
|
16
|
+
|
|
17
|
+
The loading bar now holds a named UFO interaction while shown (matching the spinner's
|
|
18
|
+
`interactionName`) so media loading stays attributed in performance metrics.
|
|
19
|
+
|
|
3
20
|
## 89.1.1
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -18,6 +18,7 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
|
|
|
18
18
|
platform_editor_paste_actions_menu_v2: 'control'
|
|
19
19
|
};
|
|
20
20
|
var testBooleanOverrides = exports.testBooleanOverrides = {
|
|
21
|
+
'cc-maui-ai-edit-loading-experiment': true,
|
|
21
22
|
social_proof_3p_unauth_block_exp: false,
|
|
22
23
|
linking_platform_track_non_primary_3p_clicks: false,
|
|
23
24
|
platform_sl_3p_auth_rovo_action: false,
|
|
@@ -12,6 +12,7 @@ export const testMultivariateOverrides = {
|
|
|
12
12
|
platform_editor_paste_actions_menu_v2: 'control'
|
|
13
13
|
};
|
|
14
14
|
export const testBooleanOverrides = {
|
|
15
|
+
'cc-maui-ai-edit-loading-experiment': true,
|
|
15
16
|
social_proof_3p_unauth_block_exp: false,
|
|
16
17
|
linking_platform_track_non_primary_3p_clicks: false,
|
|
17
18
|
platform_sl_3p_auth_rovo_action: false,
|
|
@@ -12,6 +12,7 @@ export var testMultivariateOverrides = {
|
|
|
12
12
|
platform_editor_paste_actions_menu_v2: 'control'
|
|
13
13
|
};
|
|
14
14
|
export var testBooleanOverrides = {
|
|
15
|
+
'cc-maui-ai-edit-loading-experiment': true,
|
|
15
16
|
social_proof_3p_unauth_block_exp: false,
|
|
16
17
|
linking_platform_track_non_primary_3p_clicks: false,
|
|
17
18
|
platform_sl_3p_auth_rovo_action: false,
|
package/package.json
CHANGED