@microsoft/applicationinsights-react-js 3.3.6-nightly.2207-22 → 3.3.6
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/LICENSE +17 -17
- package/NOTICE +248 -0
- package/PRIVACY +3 -0
- package/README.md +12 -3
- package/browser/applicationinsights-react-js.js +8 -12
- package/browser/applicationinsights-react-js.js.map +1 -1
- package/browser/applicationinsights-react-js.min.js +2 -2
- package/browser/applicationinsights-react-js.min.js.map +1 -1
- package/dist/applicationinsights-react-js.api.json +1 -1
- package/dist/applicationinsights-react-js.d.ts +3 -3
- package/dist/applicationinsights-react-js.js +8 -12
- package/dist/applicationinsights-react-js.js.map +1 -1
- package/dist/applicationinsights-react-js.min.js +2 -2
- package/dist/applicationinsights-react-js.min.js.map +1 -1
- package/dist/applicationinsights-react-js.rollup.d.ts +3 -3
- package/dist-esm/AppInsightsContext.js +1 -1
- package/dist-esm/AppInsightsErrorBoundary.js +1 -1
- package/dist-esm/Interfaces/IReactExtensionConfig.js +1 -1
- package/dist-esm/ReactPlugin.js +1 -1
- package/dist-esm/applicationinsights-react-js.js +1 -1
- package/dist-esm/useTrackEvent.js +1 -1
- package/dist-esm/useTrackMetric.js +1 -1
- package/dist-esm/withAITracking.js +1 -1
- package/package.json +78 -76
- package/types/tsdoc-metadata.json +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Microsoft Application Insights react plugin, 3.3.6
|
|
2
|
+
* Microsoft Application Insights react plugin, 3.3.6
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*
|
|
5
|
-
*
|
|
6
|
-
*
|
|
5
|
+
* Microsoft Application Insights Team
|
|
6
|
+
* https://github.com/microsoft/applicationinsights-react-js#readme
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
declare namespace ApplicationInsights {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Application Insights JavaScript SDK - React Plugin, 3.3.6
|
|
2
|
+
* Application Insights JavaScript SDK - React Plugin, 3.3.6
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*/
|
|
5
5
|
(function (global, factory) {
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
|
|
13
13
|
function _interopNamespace(e) {
|
|
14
14
|
if (e && e.__esModule) return e;
|
|
15
|
-
var n =
|
|
15
|
+
var n = Object.create(null);
|
|
16
16
|
if (e) {
|
|
17
17
|
Object.keys(e).forEach(function (k) {
|
|
18
18
|
if (k !== 'default') {
|
|
19
|
-
var d =
|
|
20
|
-
|
|
19
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
20
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
21
21
|
enumerable: true,
|
|
22
22
|
get: function () { return e[k]; }
|
|
23
23
|
});
|
|
@@ -98,9 +98,7 @@
|
|
|
98
98
|
var __assignFn = ObjAssign || __objAssignFnImpl;
|
|
99
99
|
var extendStaticsFn = function (d, b) {
|
|
100
100
|
extendStaticsFn = ObjClass["setPrototypeOf"] ||
|
|
101
|
-
({ __proto__: [] } instanceof Array && function (d, b) {
|
|
102
|
-
d.__proto__ = b;
|
|
103
|
-
}) ||
|
|
101
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
104
102
|
function (d, b) {
|
|
105
103
|
for (var p in b) {
|
|
106
104
|
if (b[strShimHasOwnProperty](p)) {
|
|
@@ -115,9 +113,7 @@
|
|
|
115
113
|
throwTypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
116
114
|
}
|
|
117
115
|
extendStaticsFn(d, b);
|
|
118
|
-
function __() {
|
|
119
|
-
this.constructor = d;
|
|
120
|
-
}
|
|
116
|
+
function __() { this.constructor = d; }
|
|
121
117
|
d[strShimPrototype] = b === null ? objCreateFn(b) : (__[strShimPrototype] = b[strShimPrototype], new __());
|
|
122
118
|
}
|
|
123
119
|
|
|
@@ -1172,7 +1168,7 @@
|
|
|
1172
1168
|
}
|
|
1173
1169
|
|
|
1174
1170
|
var _objDefineProperty = ObjDefineProperty;
|
|
1175
|
-
var version =
|
|
1171
|
+
var version = '2.8.5';
|
|
1176
1172
|
var instanceName = "." + newId(6);
|
|
1177
1173
|
var _dataUid = 0;
|
|
1178
1174
|
function _createAccessor(target, prop, value) {
|
|
@@ -2332,7 +2328,7 @@
|
|
|
2332
2328
|
exports.useTrackMetric = useComponentTracking$1;
|
|
2333
2329
|
exports.withAITracking = withAITracking;
|
|
2334
2330
|
|
|
2335
|
-
|
|
2331
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2336
2332
|
|
|
2337
2333
|
}));
|
|
2338
2334
|
//# sourceMappingURL=applicationinsights-react-js.js.map
|