@atlaskit/analytics-namespaced-context 6.11.0 → 6.12.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,21 @@
|
|
|
1
1
|
# @atlaskit/analytics-namespaced-context
|
|
2
2
|
|
|
3
|
+
## 6.12.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#141583](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/141583)
|
|
8
|
+
[`2573c7152094d`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/2573c7152094d) -
|
|
9
|
+
Package.json dependecies update
|
|
10
|
+
|
|
11
|
+
## 6.12.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [#136348](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/136348)
|
|
16
|
+
[`fb4fb56f1da7c`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/fb4fb56f1da7c) -
|
|
17
|
+
Add new entry-point for FabricEditorAnalyticsContext.
|
|
18
|
+
|
|
3
19
|
## 6.11.0
|
|
4
20
|
|
|
5
21
|
### 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.1",
|
|
4
4
|
"description": "Provides a namespace for AnalyticsContext data (@atlaskit/analytics-next)",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -26,6 +26,7 @@
|
|
|
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",
|
|
@@ -33,10 +34,7 @@
|
|
|
33
34
|
},
|
|
34
35
|
"atlassian": {
|
|
35
36
|
"team": "UIP Frontend Observability",
|
|
36
|
-
"
|
|
37
|
-
"productPushConsumption": [
|
|
38
|
-
"jira"
|
|
39
|
-
]
|
|
37
|
+
"runReact18": true
|
|
40
38
|
},
|
|
41
39
|
"config": {
|
|
42
40
|
"access": "public"
|
|
@@ -48,10 +46,8 @@
|
|
|
48
46
|
"peerDependencies": {
|
|
49
47
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
|
|
50
48
|
},
|
|
51
|
-
"runReact18": true,
|
|
52
49
|
"devDependencies": {
|
|
53
50
|
"@testing-library/react": "^12.1.5",
|
|
54
|
-
"react": "^16.8.0",
|
|
55
51
|
"typescript": "~5.4.2"
|
|
56
52
|
},
|
|
57
53
|
"keywords": [
|