@atlaskit/analytics-namespaced-context 6.11.0 → 6.12.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,13 @@
|
|
|
1
1
|
# @atlaskit/analytics-namespaced-context
|
|
2
2
|
|
|
3
|
+
## 6.12.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#136348](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/136348)
|
|
8
|
+
[`fb4fb56f1da7c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fb4fb56f1da7c) -
|
|
9
|
+
Add new entry-point for FabricEditorAnalyticsContext.
|
|
10
|
+
|
|
3
11
|
## 6.11.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/analytics-namespaced-context/FabricEditorAnalyticsContext",
|
|
3
|
+
"main": "../dist/cjs/FabricEditorAnalyticsContext.js",
|
|
4
|
+
"module": "../dist/esm/FabricEditorAnalyticsContext.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/FabricEditorAnalyticsContext.js",
|
|
6
|
+
"types": "../dist/types/FabricEditorAnalyticsContext.d.ts",
|
|
7
|
+
"typesVersions": {
|
|
8
|
+
">=4.5 <5.4": {
|
|
9
|
+
"*": [
|
|
10
|
+
"../dist/types-ts4.5/FabricEditorAnalyticsContext.d.ts"
|
|
11
|
+
]
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/analytics-namespaced-context",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.12.0",
|
|
4
4
|
"description": "Provides a namespace for AnalyticsContext data (@atlaskit/analytics-next)",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -26,17 +26,14 @@
|
|
|
26
26
|
"./NavigationAnalyticsContext": "./src/NavigationAnalyticsContext.tsx",
|
|
27
27
|
"./PeopleTeamsAnalyticsContext": "./src/PeopleTeamsAnalyticsContext.tsx",
|
|
28
28
|
"./RecentWorkAnalyticsContext": "./src/RecentWorkAnalyticsContext.tsx",
|
|
29
|
+
"./FabricEditorAnalyticsContext": "./src/FabricEditorAnalyticsContext.tsx",
|
|
29
30
|
"./AtlasAnalyticsContext": "./src/AtlasAnalyticsContext.tsx",
|
|
30
31
|
"./LinkingPlatformAnalyticsContext": "./src/LinkingPlatformAnalyticsContext.tsx",
|
|
31
32
|
"./PostOfficeAnalyticsContext": "./src/PostOfficeAnalyticsContext.tsx",
|
|
32
33
|
".": "./src/index.ts"
|
|
33
34
|
},
|
|
34
35
|
"atlassian": {
|
|
35
|
-
"team": "UIP Frontend Observability"
|
|
36
|
-
"releaseModel": "continuous",
|
|
37
|
-
"productPushConsumption": [
|
|
38
|
-
"jira"
|
|
39
|
-
]
|
|
36
|
+
"team": "UIP Frontend Observability"
|
|
40
37
|
},
|
|
41
38
|
"config": {
|
|
42
39
|
"access": "public"
|