@atlaskit/editor-plugin-analytics 0.4.3 → 0.4.4
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,12 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-analytics
|
|
2
2
|
|
|
3
|
+
## 0.4.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#65031](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/65031) [`a00094111b5a`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a00094111b5a) - ED-21609 Update adf-schema to 35.3.0
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
|
|
3
10
|
## 0.4.3
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { AnalyticsEventPayload
|
|
2
|
-
import {
|
|
1
|
+
import type { AnalyticsEventPayload } from '@atlaskit/editor-common/analytics';
|
|
2
|
+
import { SELECTION_POSITION, SELECTION_TYPE } from '@atlaskit/editor-common/analytics';
|
|
3
|
+
import type { Selection } from '@atlaskit/editor-prosemirror/state';
|
|
3
4
|
export declare function getSelectionType(selection: Selection): {
|
|
4
5
|
type: SELECTION_TYPE;
|
|
5
6
|
position?: SELECTION_POSITION;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { AnalyticsEventPayload
|
|
2
|
-
import {
|
|
1
|
+
import type { AnalyticsEventPayload } from '@atlaskit/editor-common/analytics';
|
|
2
|
+
import { SELECTION_POSITION, SELECTION_TYPE } from '@atlaskit/editor-common/analytics';
|
|
3
|
+
import type { Selection } from '@atlaskit/editor-prosemirror/state';
|
|
3
4
|
export declare function getSelectionType(selection: Selection): {
|
|
4
5
|
type: SELECTION_TYPE;
|
|
5
6
|
position?: SELECTION_POSITION;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-analytics",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.4",
|
|
4
4
|
"description": "Analytics plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
"atlassian": {
|
|
11
11
|
"team": "Editor: Lego",
|
|
12
12
|
"singleton": true,
|
|
13
|
-
"releaseModel": "continuous"
|
|
13
|
+
"releaseModel": "continuous",
|
|
14
|
+
"runReact18": false
|
|
14
15
|
},
|
|
15
16
|
"repository": "https://bitbucket.org/atlassian/atlassian-frontend",
|
|
16
17
|
"main": "dist/cjs/index.js",
|
|
@@ -31,10 +32,10 @@
|
|
|
31
32
|
".": "./src/index.ts"
|
|
32
33
|
},
|
|
33
34
|
"dependencies": {
|
|
34
|
-
"@atlaskit/adf-schema": "^35.
|
|
35
|
+
"@atlaskit/adf-schema": "^35.3.0",
|
|
35
36
|
"@atlaskit/analytics-listeners": "^8.6.0",
|
|
36
37
|
"@atlaskit/analytics-next": "^9.0.0",
|
|
37
|
-
"@atlaskit/editor-common": "^76.
|
|
38
|
+
"@atlaskit/editor-common": "^76.35.0",
|
|
38
39
|
"@atlaskit/editor-plugin-feature-flags": "^1.0.0",
|
|
39
40
|
"@atlaskit/editor-prosemirror": "1.1.0",
|
|
40
41
|
"@atlaskit/editor-tables": "^2.2.0",
|