@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.
Files changed (47) hide show
  1. package/AnalyticsContext/package.json +9 -1
  2. package/AnalyticsErrorBoundary/package.json +9 -1
  3. package/AnalyticsEvent/package.json +9 -1
  4. package/AnalyticsListener/package.json +9 -1
  5. package/CHANGELOG.md +12 -0
  6. package/UIAnalyticsEvent/package.json +9 -1
  7. package/createAndFireEvents/package.json +9 -1
  8. package/dist/cjs/version.json +1 -1
  9. package/dist/es2019/version.json +1 -1
  10. package/dist/esm/version.json +1 -1
  11. package/dist/types/hocs/withAnalyticsContext.d.ts +1 -22
  12. package/dist/types/hocs/withAnalyticsEvents.d.ts +1 -22
  13. package/dist/types-ts4.0/components/AnalyticsContext/LegacyAnalyticsContext.d.ts +29 -0
  14. package/dist/types-ts4.0/components/AnalyticsContext/ModernAnalyticsContext.d.ts +3 -0
  15. package/dist/types-ts4.0/components/AnalyticsContext/index.d.ts +3 -0
  16. package/dist/types-ts4.0/components/AnalyticsContext/types.d.ts +9 -0
  17. package/dist/types-ts4.0/components/AnalyticsErrorBoundary.d.ts +29 -0
  18. package/dist/types-ts4.0/components/AnalyticsListener/LegacyAnalyticsListener.d.ts +33 -0
  19. package/dist/types-ts4.0/components/AnalyticsListener/ModernAnalyticsListener.d.ts +3 -0
  20. package/dist/types-ts4.0/components/AnalyticsListener/index.d.ts +3 -0
  21. package/dist/types-ts4.0/components/AnalyticsListener/types.d.ts +12 -0
  22. package/dist/types-ts4.0/events/AnalyticsEvent.d.ts +15 -0
  23. package/dist/types-ts4.0/events/UIAnalyticsEvent.d.ts +20 -0
  24. package/dist/types-ts4.0/hocs/withAnalyticsContext.d.ts +6 -0
  25. package/dist/types-ts4.0/hocs/withAnalyticsEvents.d.ts +12 -0
  26. package/dist/types-ts4.0/hooks/useAnalyticsContext.d.ts +2 -0
  27. package/dist/types-ts4.0/hooks/useAnalyticsEvents.d.ts +5 -0
  28. package/dist/types-ts4.0/hooks/useCallbackWithAnalytics.d.ts +2 -0
  29. package/dist/types-ts4.0/hooks/usePatchedProps.d.ts +5 -0
  30. package/dist/types-ts4.0/hooks/usePlatformLeafEventHandler.d.ts +12 -0
  31. package/dist/types-ts4.0/hooks/usePlatformLeafSyntheticEventHandler.d.ts +11 -0
  32. package/dist/types-ts4.0/hooks/useTrackedRef.d.ts +2 -0
  33. package/dist/types-ts4.0/index.d.ts +25 -0
  34. package/dist/types-ts4.0/performance/examples.d.ts +5 -0
  35. package/dist/types-ts4.0/test-utils/useRenderCounter.d.ts +1 -0
  36. package/dist/types-ts4.0/types.d.ts +6 -0
  37. package/dist/types-ts4.0/utils/cleanProps.d.ts +3 -0
  38. package/dist/types-ts4.0/utils/createAndFireEvent.d.ts +4 -0
  39. package/package.json +11 -4
  40. package/report.api.md +7572 -0
  41. package/types/package.json +9 -1
  42. package/useAnalyticsEvents/package.json +9 -1
  43. package/useCallbackWithAnalytics/package.json +9 -1
  44. package/usePatchedProps/package.json +9 -1
  45. package/usePlatformLeafEventHandler/package.json +9 -1
  46. package/withAnalyticsContext/package.json +9 -1
  47. package/withAnalyticsEvents/package.json +9 -1
@@ -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
- "types": "../dist/types/types.d.ts"
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
- "types": "../dist/types/hooks/useAnalyticsEvents.d.ts"
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
- "types": "../dist/types/hooks/useCallbackWithAnalytics.d.ts"
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
- "types": "../dist/types/hooks/usePatchedProps.d.ts"
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
- "types": "../dist/types/hooks/usePlatformLeafEventHandler.d.ts"
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
- "types": "../dist/types/hocs/withAnalyticsContext.d.ts"
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
- "types": "../dist/types/hocs/withAnalyticsEvents.d.ts"
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
  }