@atlaskit/analytics-next 8.3.1 → 8.3.3
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/AnalyticsContext/package.json +9 -1
- package/AnalyticsErrorBoundary/package.json +9 -1
- package/AnalyticsEvent/package.json +9 -1
- package/AnalyticsListener/package.json +9 -1
- package/CHANGELOG.md +12 -0
- package/UIAnalyticsEvent/package.json +9 -1
- package/createAndFireEvents/package.json +9 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types/hocs/withAnalyticsContext.d.ts +1 -22
- package/dist/types/hocs/withAnalyticsEvents.d.ts +1 -22
- package/dist/types-ts4.0/components/AnalyticsContext/LegacyAnalyticsContext.d.ts +29 -0
- package/dist/types-ts4.0/components/AnalyticsContext/ModernAnalyticsContext.d.ts +3 -0
- package/dist/types-ts4.0/components/AnalyticsContext/index.d.ts +3 -0
- package/dist/types-ts4.0/components/AnalyticsContext/types.d.ts +9 -0
- package/dist/types-ts4.0/components/AnalyticsErrorBoundary.d.ts +29 -0
- package/dist/types-ts4.0/components/AnalyticsListener/LegacyAnalyticsListener.d.ts +33 -0
- package/dist/types-ts4.0/components/AnalyticsListener/ModernAnalyticsListener.d.ts +3 -0
- package/dist/types-ts4.0/components/AnalyticsListener/index.d.ts +3 -0
- package/dist/types-ts4.0/components/AnalyticsListener/types.d.ts +12 -0
- package/dist/types-ts4.0/events/AnalyticsEvent.d.ts +15 -0
- package/dist/types-ts4.0/events/UIAnalyticsEvent.d.ts +20 -0
- package/dist/types-ts4.0/hocs/withAnalyticsContext.d.ts +6 -0
- package/dist/types-ts4.0/hocs/withAnalyticsEvents.d.ts +12 -0
- package/dist/types-ts4.0/hooks/useAnalyticsContext.d.ts +2 -0
- package/dist/types-ts4.0/hooks/useAnalyticsEvents.d.ts +5 -0
- package/dist/types-ts4.0/hooks/useCallbackWithAnalytics.d.ts +2 -0
- package/dist/types-ts4.0/hooks/usePatchedProps.d.ts +5 -0
- package/dist/types-ts4.0/hooks/usePlatformLeafEventHandler.d.ts +12 -0
- package/dist/types-ts4.0/hooks/usePlatformLeafSyntheticEventHandler.d.ts +11 -0
- package/dist/types-ts4.0/hooks/useTrackedRef.d.ts +2 -0
- package/dist/types-ts4.0/index.d.ts +25 -0
- package/dist/types-ts4.0/performance/examples.d.ts +5 -0
- package/dist/types-ts4.0/test-utils/useRenderCounter.d.ts +1 -0
- package/dist/types-ts4.0/types.d.ts +6 -0
- package/dist/types-ts4.0/utils/cleanProps.d.ts +3 -0
- package/dist/types-ts4.0/utils/createAndFireEvent.d.ts +4 -0
- package/package.json +11 -4
- package/report.api.md +7572 -0
- package/types/package.json +9 -1
- package/useAnalyticsEvents/package.json +9 -1
- package/useCallbackWithAnalytics/package.json +9 -1
- package/usePatchedProps/package.json +9 -1
- package/usePlatformLeafEventHandler/package.json +9 -1
- package/withAnalyticsContext/package.json +9 -1
- package/withAnalyticsEvents/package.json +9 -1
package/types/package.json
CHANGED
|
@@ -3,5 +3,13 @@
|
|
|
3
3
|
"main": "../dist/cjs/types.js",
|
|
4
4
|
"module": "../dist/esm/types.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/types.js",
|
|
6
|
-
"
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"types": "../dist/types/types.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.0 <4.5": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../dist/types-ts4.0/types.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
7
15
|
}
|
|
@@ -3,5 +3,13 @@
|
|
|
3
3
|
"main": "../dist/cjs/hooks/useAnalyticsEvents.js",
|
|
4
4
|
"module": "../dist/esm/hooks/useAnalyticsEvents.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/hooks/useAnalyticsEvents.js",
|
|
6
|
-
"
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"types": "../dist/types/hooks/useAnalyticsEvents.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.0 <4.5": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../dist/types-ts4.0/hooks/useAnalyticsEvents.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
7
15
|
}
|
|
@@ -3,5 +3,13 @@
|
|
|
3
3
|
"main": "../dist/cjs/hooks/useCallbackWithAnalytics.js",
|
|
4
4
|
"module": "../dist/esm/hooks/useCallbackWithAnalytics.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/hooks/useCallbackWithAnalytics.js",
|
|
6
|
-
"
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"types": "../dist/types/hooks/useCallbackWithAnalytics.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.0 <4.5": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../dist/types-ts4.0/hooks/useCallbackWithAnalytics.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
7
15
|
}
|
|
@@ -3,5 +3,13 @@
|
|
|
3
3
|
"main": "../dist/cjs/hooks/usePatchedProps.js",
|
|
4
4
|
"module": "../dist/esm/hooks/usePatchedProps.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/hooks/usePatchedProps.js",
|
|
6
|
-
"
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"types": "../dist/types/hooks/usePatchedProps.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.0 <4.5": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../dist/types-ts4.0/hooks/usePatchedProps.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
7
15
|
}
|
|
@@ -3,5 +3,13 @@
|
|
|
3
3
|
"main": "../dist/cjs/hooks/usePlatformLeafEventHandler.js",
|
|
4
4
|
"module": "../dist/esm/hooks/usePlatformLeafEventHandler.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/hooks/usePlatformLeafEventHandler.js",
|
|
6
|
-
"
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"types": "../dist/types/hooks/usePlatformLeafEventHandler.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.0 <4.5": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../dist/types-ts4.0/hooks/usePlatformLeafEventHandler.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
7
15
|
}
|
|
@@ -3,5 +3,13 @@
|
|
|
3
3
|
"main": "../dist/cjs/hocs/withAnalyticsContext.js",
|
|
4
4
|
"module": "../dist/esm/hocs/withAnalyticsContext.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/hocs/withAnalyticsContext.js",
|
|
6
|
-
"
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"types": "../dist/types/hocs/withAnalyticsContext.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.0 <4.5": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../dist/types-ts4.0/hocs/withAnalyticsContext.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
7
15
|
}
|
|
@@ -3,5 +3,13 @@
|
|
|
3
3
|
"main": "../dist/cjs/hocs/withAnalyticsEvents.js",
|
|
4
4
|
"module": "../dist/esm/hocs/withAnalyticsEvents.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/hocs/withAnalyticsEvents.js",
|
|
6
|
-
"
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"types": "../dist/types/hocs/withAnalyticsEvents.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.0 <4.5": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../dist/types-ts4.0/hocs/withAnalyticsEvents.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
7
15
|
}
|