@atlaskit/tmp-editor-statsig 132.3.0 → 132.3.1
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,26 @@
|
|
|
1
1
|
# @atlaskit/editor-statsig-tmp
|
|
2
2
|
|
|
3
|
+
## 132.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`895ac23f1a3be`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/895ac23f1a3be) -
|
|
8
|
+
Agent edit presence: surface agent-authored collaborative edits to other users.
|
|
9
|
+
- `collab-provider` detects agent-authored remote steps (`agentType`/`agentId`) and registers a
|
|
10
|
+
synthetic agent participant in the AI-provider (`agent:`) partition so the agent appears in
|
|
11
|
+
presence, with a 30s sliding inactivity window (CCI-18030). `editor-common` gains optional
|
|
12
|
+
`agentId`/`agentType` on the collab step types.
|
|
13
|
+
- `editor-plugin-collab-edit` + `editor-core` add the in-editor shimmer (CCI-18033): when an
|
|
14
|
+
agent-authored step lands, the top-level block(s) it touched are covered by a skeleton-loader
|
|
15
|
+
shimmer (grey skeleton with a moving highlight) with a Rovo agent telepointer/cursor — labelled
|
|
16
|
+
with the agent's type — at the end of the range, then removed on a timer to reveal the content.
|
|
17
|
+
Gated behind the default-OFF `platform_editor_agent_be_streaming` experiment; the `durationMs`
|
|
18
|
+
dynamic-config param controls how long the shimmer stays (0 disables it) and
|
|
19
|
+
`telepointerDisabled` hides the telepointer. `tmp-editor-statsig` registers the experiment.
|
|
20
|
+
- `ratcheting` excludes the new `agentShimmerStyles.ts` from the "No unsafe typography" rule (the
|
|
21
|
+
agent telepointer label mirrors the existing AI in-editor telepointer's sub-token 10px/9px
|
|
22
|
+
sizing, matching its already-excluded Compiled counterpart).
|
|
23
|
+
|
|
3
24
|
## 132.3.0
|
|
4
25
|
|
|
5
26
|
### Minor Changes
|
|
@@ -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: {
|
|
@@ -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: {
|
|
@@ -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: {
|
|
@@ -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;
|
package/package.json
CHANGED