@atlaskit/editor-plugin-collab-edit 17.0.9 → 17.0.11
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,24 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-collab-edit
|
|
2
2
|
|
|
3
|
+
## 17.0.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 17.0.10
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`08bf773f7599a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/08bf773f7599a) -
|
|
14
|
+
Migrate experiments to use the new platform experiment API. This major release removes the
|
|
15
|
+
migrated experiment entries from `@atlaskit/tmp-editor-statsig`'s `editorExperimentsConfig` and
|
|
16
|
+
test overrides. Consumers must replace legacy `expVal`/`expValEquals` calls with
|
|
17
|
+
`@atlaskit/platform-feature-experiments` APIs, using `isExperimentEnabled` for boolean `isEnabled`
|
|
18
|
+
experiments and `expVal` for parameterized experiments; use `mockExpEnabled`/`mockExpDisabled` in
|
|
19
|
+
tests.
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
|
|
3
22
|
## 17.0.9
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
|
@@ -13,11 +13,11 @@ var _collabAgentEditChrome = require("@atlaskit/editor-common/collab-agent-edit-
|
|
|
13
13
|
var _collabAgentRemoteEditReview = require("@atlaskit/editor-common/collab-agent-remote-edit-review");
|
|
14
14
|
var _state = require("@atlaskit/editor-prosemirror/state");
|
|
15
15
|
var _transformOverride = require("@atlaskit/editor-prosemirror/transform-override");
|
|
16
|
+
var _expVal = require("@atlaskit/platform-feature-experiments/exp-val");
|
|
16
17
|
var _isExperimentEnabled = require("@atlaskit/platform-feature-experiments/is-experiment-enabled");
|
|
17
18
|
var _fg = require("@atlaskit/platform-feature-flags/fg");
|
|
18
19
|
var _prosemirrorCollab = require("@atlaskit/prosemirror-collab");
|
|
19
20
|
var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
|
|
20
|
-
var _expVal = require("@atlaskit/tmp-editor-statsig/expVal");
|
|
21
21
|
var _analytics = require("./analytics");
|
|
22
22
|
var _agentReviewSegments = require("./main/agent-review-segments");
|
|
23
23
|
var _agentShimmerDecorations = require("./main/agent-shimmer-decorations");
|
|
@@ -8,11 +8,11 @@ import { AGENT_EDIT_CHROME_DATA, getAgentEditChromeDynamicConfig } from '@atlask
|
|
|
8
8
|
import { AGENT_REMOTE_EDIT_REVIEW_DATA } from '@atlaskit/editor-common/collab-agent-remote-edit-review';
|
|
9
9
|
import { AllSelection, NodeSelection } from '@atlaskit/editor-prosemirror/state';
|
|
10
10
|
import { Step } from '@atlaskit/editor-prosemirror/transform-override';
|
|
11
|
+
import { expVal } from '@atlaskit/platform-feature-experiments/exp-val';
|
|
11
12
|
import { isExperimentEnabled } from '@atlaskit/platform-feature-experiments/is-experiment-enabled';
|
|
12
13
|
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
13
14
|
import { receiveTransaction } from '@atlaskit/prosemirror-collab';
|
|
14
15
|
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
15
|
-
import { expVal } from '@atlaskit/tmp-editor-statsig/expVal';
|
|
16
16
|
import { getAgentEditShimmerNotShownPayload } from './analytics';
|
|
17
17
|
import { getAgentEditSegments } from './main/agent-review-segments';
|
|
18
18
|
import { ADD_AGENT_SHIMMER_META, AGENT_EDIT_HIGHLIGHT_DEFAULT_DURATION_MS, AGENT_SHIMMER_DEFAULT_DURATION_MS, HIGHLIGHT_AGENT_SHIMMER_META, REMOVE_AGENT_SHIMMER_META } from './main/agent-shimmer-decorations';
|
|
@@ -11,11 +11,11 @@ import { AGENT_EDIT_CHROME_DATA, getAgentEditChromeDynamicConfig } from '@atlask
|
|
|
11
11
|
import { AGENT_REMOTE_EDIT_REVIEW_DATA } from '@atlaskit/editor-common/collab-agent-remote-edit-review';
|
|
12
12
|
import { AllSelection, NodeSelection } from '@atlaskit/editor-prosemirror/state';
|
|
13
13
|
import { Step } from '@atlaskit/editor-prosemirror/transform-override';
|
|
14
|
+
import { expVal } from '@atlaskit/platform-feature-experiments/exp-val';
|
|
14
15
|
import { isExperimentEnabled } from '@atlaskit/platform-feature-experiments/is-experiment-enabled';
|
|
15
16
|
import { fg } from '@atlaskit/platform-feature-flags/fg';
|
|
16
17
|
import { receiveTransaction } from '@atlaskit/prosemirror-collab';
|
|
17
18
|
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
18
|
-
import { expVal } from '@atlaskit/tmp-editor-statsig/expVal';
|
|
19
19
|
import { getAgentEditShimmerNotShownPayload } from './analytics';
|
|
20
20
|
import { getAgentEditSegments } from './main/agent-review-segments';
|
|
21
21
|
import { ADD_AGENT_SHIMMER_META, AGENT_EDIT_HIGHLIGHT_DEFAULT_DURATION_MS, AGENT_SHIMMER_DEFAULT_DURATION_MS, HIGHLIGHT_AGENT_SHIMMER_META, REMOVE_AGENT_SHIMMER_META } from './main/agent-shimmer-decorations';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-collab-edit",
|
|
3
|
-
"version": "17.0.
|
|
3
|
+
"version": "17.0.11",
|
|
4
4
|
"description": "Collab Edit plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -20,25 +20,25 @@
|
|
|
20
20
|
"atlaskit:src": "src/index.ts",
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@atlaskit/adf-schema": "^57.2.0",
|
|
23
|
-
"@atlaskit/custom-steps": "^1.
|
|
24
|
-
"@atlaskit/editor-json-transformer": "^9.
|
|
25
|
-
"@atlaskit/editor-plugin-analytics": "^16.
|
|
23
|
+
"@atlaskit/custom-steps": "^1.1.0",
|
|
24
|
+
"@atlaskit/editor-json-transformer": "^9.8.0",
|
|
25
|
+
"@atlaskit/editor-plugin-analytics": "^16.1.0",
|
|
26
26
|
"@atlaskit/editor-plugin-connectivity": "^16.0.0",
|
|
27
27
|
"@atlaskit/editor-plugin-editor-viewmode": "^18.0.0",
|
|
28
|
-
"@atlaskit/editor-plugin-feature-flags": "^15.
|
|
28
|
+
"@atlaskit/editor-plugin-feature-flags": "^15.1.0",
|
|
29
29
|
"@atlaskit/editor-prosemirror": "^8.0.0",
|
|
30
|
-
"@atlaskit/editor-shared-styles": "^4.
|
|
31
|
-
"@atlaskit/frontend-utilities": "^4.
|
|
30
|
+
"@atlaskit/editor-shared-styles": "^4.1.0",
|
|
31
|
+
"@atlaskit/frontend-utilities": "^4.3.0",
|
|
32
32
|
"@atlaskit/platform-feature-experiments": "^0.3.0",
|
|
33
|
-
"@atlaskit/platform-feature-flags": "^2.
|
|
34
|
-
"@atlaskit/prosemirror-collab": "^1.
|
|
35
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
36
|
-
"@atlaskit/tokens": "^16.
|
|
33
|
+
"@atlaskit/platform-feature-flags": "^2.2.0",
|
|
34
|
+
"@atlaskit/prosemirror-collab": "^1.1.0",
|
|
35
|
+
"@atlaskit/tmp-editor-statsig": "^170.0.0",
|
|
36
|
+
"@atlaskit/tokens": "^16.11.0",
|
|
37
37
|
"@babel/runtime": "^7.0.0",
|
|
38
38
|
"memoize-one": "^6.0.0"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
|
-
"@atlaskit/editor-common": "^120.
|
|
41
|
+
"@atlaskit/editor-common": "^120.10.0",
|
|
42
42
|
"react": "^18.2.0 || ^19.2.0",
|
|
43
43
|
"react-dom": "^18.2.0 || ^19.2.0"
|
|
44
44
|
},
|