@atlaskit/editor-plugin-analytics 0.3.3 → 0.3.5
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 +12 -0
- package/package.json +3 -3
- package/tmp/api-report-tmp.d.ts +0 -48
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-analytics
|
|
2
2
|
|
|
3
|
+
## 0.3.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#58763](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/58763) [`0fdbd64522bf`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0fdbd64522bf) - update ADF schema
|
|
8
|
+
|
|
9
|
+
## 0.3.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#56790](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/56790) [`ff577a7969d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ff577a7969d4) - ED-21266: Updated @atlaskit/adf-schema to 34.0.1
|
|
14
|
+
|
|
3
15
|
## 0.3.3
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-analytics",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"description": "Analytics plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
".": "./src/index.ts"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@atlaskit/adf-schema": "^
|
|
34
|
+
"@atlaskit/adf-schema": "^35.0.0",
|
|
35
35
|
"@atlaskit/analytics-listeners": "^8.6.0",
|
|
36
36
|
"@atlaskit/analytics-next": "^9.0.0",
|
|
37
|
-
"@atlaskit/editor-common": "^76.
|
|
37
|
+
"@atlaskit/editor-common": "^76.24.0",
|
|
38
38
|
"@atlaskit/editor-plugin-feature-flags": "^1.0.0",
|
|
39
39
|
"@atlaskit/editor-prosemirror": "1.1.0",
|
|
40
40
|
"@atlaskit/editor-tables": "^2.2.0",
|
package/tmp/api-report-tmp.d.ts
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
## API Report File for "@atlaskit/editor-plugin-analytics"
|
|
2
|
-
|
|
3
|
-
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
-
|
|
5
|
-
```ts
|
|
6
|
-
|
|
7
|
-
import { AnalyticsEventPayload } from '@atlaskit/editor-common/analytics';
|
|
8
|
-
import type { CreateUIAnalyticsEvent } from '@atlaskit/analytics-next';
|
|
9
|
-
import type { EditorAnalyticsAPI } from '@atlaskit/editor-common/analytics';
|
|
10
|
-
import type { FeatureFlagsPlugin } from '@atlaskit/editor-plugin-feature-flags';
|
|
11
|
-
import type { NextEditorPlugin } from '@atlaskit/editor-common/types';
|
|
12
|
-
import type { OptionalPlugin } from '@atlaskit/editor-common/types';
|
|
13
|
-
import type { PerformanceTracking } from '@atlaskit/editor-common/types';
|
|
14
|
-
import type { Transaction } from '@atlaskit/editor-prosemirror/state';
|
|
15
|
-
|
|
16
|
-
// @public (undocumented)
|
|
17
|
-
export type AnalyticsPlugin = NextEditorPlugin<'analytics', {
|
|
18
|
-
pluginConfiguration: AnalyticsPluginOptions;
|
|
19
|
-
sharedState: {
|
|
20
|
-
createAnalyticsEvent: CreateUIAnalyticsEvent | null;
|
|
21
|
-
attachAnalyticsEvent: CreateAttachPayloadIntoTransaction | null;
|
|
22
|
-
performanceTracking: PerformanceTracking | undefined;
|
|
23
|
-
};
|
|
24
|
-
dependencies: [OptionalPlugin<FeatureFlagsPlugin>];
|
|
25
|
-
actions: EditorAnalyticsAPI;
|
|
26
|
-
}>;
|
|
27
|
-
|
|
28
|
-
// @public
|
|
29
|
-
export const analyticsPlugin: AnalyticsPlugin;
|
|
30
|
-
|
|
31
|
-
// @public (undocumented)
|
|
32
|
-
export interface AnalyticsPluginOptions {
|
|
33
|
-
// (undocumented)
|
|
34
|
-
createAnalyticsEvent?: CreateUIAnalyticsEvent;
|
|
35
|
-
// (undocumented)
|
|
36
|
-
performanceTracking?: PerformanceTracking;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
// @public (undocumented)
|
|
40
|
-
export type CreateAttachPayloadIntoTransaction = (props: {
|
|
41
|
-
payload: AnalyticsEventPayload;
|
|
42
|
-
tr: Transaction;
|
|
43
|
-
channel: string;
|
|
44
|
-
}) => void;
|
|
45
|
-
|
|
46
|
-
// (No @packageDocumentation comment for this package)
|
|
47
|
-
|
|
48
|
-
```
|