@atlaskit/tmp-editor-statsig 132.3.0 → 132.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,37 @@
1
1
  # @atlaskit/editor-statsig-tmp
2
2
 
3
+ ## 132.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`d1f841209d233`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/d1f841209d233) -
8
+ [ux] Fix MAUI image loading cleanup on Rovo stream errors
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies
13
+
14
+ ## 132.3.1
15
+
16
+ ### Patch Changes
17
+
18
+ - [`895ac23f1a3be`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/895ac23f1a3be) -
19
+ Agent edit presence: surface agent-authored collaborative edits to other users.
20
+ - `collab-provider` detects agent-authored remote steps (`agentType`/`agentId`) and registers a
21
+ synthetic agent participant in the AI-provider (`agent:`) partition so the agent appears in
22
+ presence, with a 30s sliding inactivity window (CCI-18030). `editor-common` gains optional
23
+ `agentId`/`agentType` on the collab step types.
24
+ - `editor-plugin-collab-edit` + `editor-core` add the in-editor shimmer (CCI-18033): when an
25
+ agent-authored step lands, the top-level block(s) it touched are covered by a skeleton-loader
26
+ shimmer (grey skeleton with a moving highlight) with a Rovo agent telepointer/cursor — labelled
27
+ with the agent's type — at the end of the range, then removed on a timer to reveal the content.
28
+ Gated behind the default-OFF `platform_editor_agent_be_streaming` experiment; the `durationMs`
29
+ dynamic-config param controls how long the shimmer stays (0 disables it) and
30
+ `telepointerDisabled` hides the telepointer. `tmp-editor-statsig` registers the experiment.
31
+ - `ratcheting` excludes the new `agentShimmerStyles.ts` from the "No unsafe typography" rule (the
32
+ agent telepointer label mirrors the existing AI in-editor telepointer's sub-token 10px/9px
33
+ sizing, matching its already-excluded Compiled counterpart).
34
+
3
35
  ## 132.3.0
4
36
 
5
37
  ### Minor Changes
@@ -21,6 +21,7 @@ var testMultivariateOverrides = exports.testMultivariateOverrides = {
21
21
  };
22
22
  var testBooleanOverrides = exports.testBooleanOverrides = {
23
23
  'cc-maui-ai-edit-loading-experiment': true,
24
+ cc_maui_polish_changes_batch_1: false,
24
25
  social_proof_3p_unauth_block_exp: false,
25
26
  linking_platform_track_non_primary_3p_clicks: false,
26
27
  platform_sl_3p_preauth_better_hovercard: true,
@@ -39,6 +39,16 @@ var disallowsProductKeys = exports.disallowsProductKeys = ['platform_editor_bloc
39
39
  var editorExperimentsConfig = exports.editorExperimentsConfig = {
40
40
  // new format to avoid collisions with other users when updating the file
41
41
 
42
+ // Added 2026-07-21
43
+ // `isEnabled` is the gating param; the experiment's dynamic config also carries the numeric
44
+ // `durationMs` shimmer duration, read at runtime via `expVal`.
45
+ platform_editor_agent_be_streaming: (0, _experimentBuilders.createBooleanExperiment)({
46
+ productKeys: {
47
+ confluence: 'platform_editor_agent_be_streaming'
48
+ },
49
+ param: 'isEnabled',
50
+ defaultValue: false
51
+ }),
42
52
  // Added 2026-07-17
43
53
  platform_editor_status_popup_suggestions: (0, _experimentBuilders.createBooleanExperiment)({
44
54
  productKeys: {
@@ -1407,6 +1417,14 @@ var editorExperimentsConfig = exports.editorExperimentsConfig = {
1407
1417
  param: 'isEnabled',
1408
1418
  defaultValue: false
1409
1419
  }),
1420
+ // Added 2026-07-22
1421
+ cc_maui_polish_changes_batch_1: (0, _experimentBuilders.createBooleanExperiment)({
1422
+ productKeys: {
1423
+ confluence: 'cc_maui_polish_changes_batch_1'
1424
+ },
1425
+ param: 'isEnabled',
1426
+ defaultValue: false
1427
+ }),
1410
1428
  // Added 2026-03-05
1411
1429
  'cc-mui-slides-experiment': (0, _experimentBuilders.createBooleanExperiment)({
1412
1430
  productKeys: {
@@ -15,6 +15,7 @@ export const testMultivariateOverrides = {
15
15
  };
16
16
  export const testBooleanOverrides = {
17
17
  'cc-maui-ai-edit-loading-experiment': true,
18
+ cc_maui_polish_changes_batch_1: false,
18
19
  social_proof_3p_unauth_block_exp: false,
19
20
  linking_platform_track_non_primary_3p_clicks: false,
20
21
  platform_sl_3p_preauth_better_hovercard: true,
@@ -33,6 +33,16 @@ export const disallowsProductKeys = ['platform_editor_block_menu', 'platform_edi
33
33
  export const editorExperimentsConfig = {
34
34
  // new format to avoid collisions with other users when updating the file
35
35
 
36
+ // Added 2026-07-21
37
+ // `isEnabled` is the gating param; the experiment's dynamic config also carries the numeric
38
+ // `durationMs` shimmer duration, read at runtime via `expVal`.
39
+ platform_editor_agent_be_streaming: createBooleanExperiment({
40
+ productKeys: {
41
+ confluence: 'platform_editor_agent_be_streaming'
42
+ },
43
+ param: 'isEnabled',
44
+ defaultValue: false
45
+ }),
36
46
  // Added 2026-07-17
37
47
  platform_editor_status_popup_suggestions: createBooleanExperiment({
38
48
  productKeys: {
@@ -1401,6 +1411,14 @@ export const editorExperimentsConfig = {
1401
1411
  param: 'isEnabled',
1402
1412
  defaultValue: false
1403
1413
  }),
1414
+ // Added 2026-07-22
1415
+ cc_maui_polish_changes_batch_1: createBooleanExperiment({
1416
+ productKeys: {
1417
+ confluence: 'cc_maui_polish_changes_batch_1'
1418
+ },
1419
+ param: 'isEnabled',
1420
+ defaultValue: false
1421
+ }),
1404
1422
  // Added 2026-03-05
1405
1423
  'cc-mui-slides-experiment': createBooleanExperiment({
1406
1424
  productKeys: {
@@ -15,6 +15,7 @@ export var testMultivariateOverrides = {
15
15
  };
16
16
  export var testBooleanOverrides = {
17
17
  'cc-maui-ai-edit-loading-experiment': true,
18
+ cc_maui_polish_changes_batch_1: false,
18
19
  social_proof_3p_unauth_block_exp: false,
19
20
  linking_platform_track_non_primary_3p_clicks: false,
20
21
  platform_sl_3p_preauth_better_hovercard: true,
@@ -33,6 +33,16 @@ export var disallowsProductKeys = ['platform_editor_block_menu', 'platform_edito
33
33
  export var editorExperimentsConfig = {
34
34
  // new format to avoid collisions with other users when updating the file
35
35
 
36
+ // Added 2026-07-21
37
+ // `isEnabled` is the gating param; the experiment's dynamic config also carries the numeric
38
+ // `durationMs` shimmer duration, read at runtime via `expVal`.
39
+ platform_editor_agent_be_streaming: createBooleanExperiment({
40
+ productKeys: {
41
+ confluence: 'platform_editor_agent_be_streaming'
42
+ },
43
+ param: 'isEnabled',
44
+ defaultValue: false
45
+ }),
36
46
  // Added 2026-07-17
37
47
  platform_editor_status_popup_suggestions: createBooleanExperiment({
38
48
  productKeys: {
@@ -1401,6 +1411,14 @@ export var editorExperimentsConfig = {
1401
1411
  param: 'isEnabled',
1402
1412
  defaultValue: false
1403
1413
  }),
1414
+ // Added 2026-07-22
1415
+ cc_maui_polish_changes_batch_1: createBooleanExperiment({
1416
+ productKeys: {
1417
+ confluence: 'cc_maui_polish_changes_batch_1'
1418
+ },
1419
+ param: 'isEnabled',
1420
+ defaultValue: false
1421
+ }),
1404
1422
  // Added 2026-03-05
1405
1423
  'cc-mui-slides-experiment': createBooleanExperiment({
1406
1424
  productKeys: {
@@ -21,6 +21,12 @@ export type ExperimentDefaultValue<ExperimentName extends keyof EditorExperiment
21
21
  * existing experiments.
22
22
  */
23
23
  export declare const editorExperimentsConfig: {
24
+ platform_editor_agent_be_streaming: {
25
+ defaultValue: boolean;
26
+ param: string;
27
+ productKeys?: ProductKeys;
28
+ typeGuard: IsBooleanType;
29
+ };
24
30
  platform_editor_status_popup_suggestions: {
25
31
  defaultValue: boolean;
26
32
  param: string;
@@ -1082,6 +1088,12 @@ export declare const editorExperimentsConfig: {
1082
1088
  productKeys?: ProductKeys;
1083
1089
  typeGuard: IsBooleanType;
1084
1090
  };
1091
+ cc_maui_polish_changes_batch_1: {
1092
+ defaultValue: boolean;
1093
+ param: string;
1094
+ productKeys?: ProductKeys;
1095
+ typeGuard: IsBooleanType;
1096
+ };
1085
1097
  'cc-mui-slides-experiment': {
1086
1098
  defaultValue: boolean;
1087
1099
  param: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/tmp-editor-statsig",
3
- "version": "132.3.0",
3
+ "version": "132.4.0",
4
4
  "description": "Temp plugin to ease use of statsig feature flags until platform feature flags are available",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",