@microsoft/applicationinsights-debugplugin-js 2.8.0-beta.2203-09 → 2.8.0-beta.2203-10
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/browser/{ai.dbg.2.8.0-beta.2203-09.cjs.js → ai.dbg.2.8.0-beta.2203-10.cjs.js} +11 -5
- package/browser/ai.dbg.2.8.0-beta.2203-10.cjs.js.map +1 -0
- package/browser/{ai.dbg.2.8.0-beta.2203-09.cjs.min.js → ai.dbg.2.8.0-beta.2203-10.cjs.min.js} +2 -2
- package/browser/ai.dbg.2.8.0-beta.2203-10.cjs.min.js.map +1 -0
- package/browser/{ai.dbg.2.8.0-beta.2203-09.gbl.js → ai.dbg.2.8.0-beta.2203-10.gbl.js} +11 -5
- package/browser/ai.dbg.2.8.0-beta.2203-10.gbl.js.map +1 -0
- package/browser/{ai.dbg.2.8.0-beta.2203-09.gbl.min.js → ai.dbg.2.8.0-beta.2203-10.gbl.min.js} +2 -2
- package/browser/ai.dbg.2.8.0-beta.2203-10.gbl.min.js.map +1 -0
- package/browser/ai.dbg.2.8.0-beta.2203-10.integrity.json +66 -0
- package/browser/{ai.dbg.2.8.0-beta.2203-09.js → ai.dbg.2.8.0-beta.2203-10.js} +11 -5
- package/browser/ai.dbg.2.8.0-beta.2203-10.js.map +1 -0
- package/browser/{ai.dbg.2.8.0-beta.2203-09.min.js → ai.dbg.2.8.0-beta.2203-10.min.js} +2 -2
- package/browser/ai.dbg.2.8.0-beta.2203-10.min.js.map +1 -0
- package/browser/ai.dbg.2.cjs.js +10 -4
- package/browser/ai.dbg.2.cjs.js.map +1 -1
- package/browser/ai.dbg.2.cjs.min.js +1 -1
- package/browser/ai.dbg.2.cjs.min.js.map +1 -1
- package/browser/ai.dbg.2.gbl.js +10 -4
- package/browser/ai.dbg.2.gbl.js.map +1 -1
- package/browser/ai.dbg.2.gbl.min.js +1 -1
- package/browser/ai.dbg.2.gbl.min.js.map +1 -1
- package/browser/ai.dbg.2.js +10 -4
- package/browser/ai.dbg.2.js.map +1 -1
- package/browser/ai.dbg.2.min.js +1 -1
- package/browser/ai.dbg.2.min.js.map +1 -1
- package/dist/applicationinsights-debugplugin-js.d.ts +1 -1
- package/dist/applicationinsights-debugplugin-js.js +10 -4
- package/dist/applicationinsights-debugplugin-js.js.map +1 -1
- package/dist/applicationinsights-debugplugin-js.min.js +1 -1
- package/dist/applicationinsights-debugplugin-js.min.js.map +1 -1
- package/dist/applicationinsights-debugplugin-js.rollup.d.ts +1 -1
- package/dist-esm/DebugPlugin.js +1 -1
- package/dist-esm/applicationinsights-debugplugin-js.js +1 -1
- package/dist-esm/components/Dashboard.js +1 -1
- package/dist-esm/components/LogEntry.js +1 -1
- package/dist-esm/components/debugBins.js +1 -1
- package/dist-esm/components/filterList.js +1 -1
- package/dist-esm/components/helpers.js +1 -1
- package/dist-esm/components/styleNodeSrc.js +1 -1
- package/dist-esm/interfaces/IDebugPluginConfig.js +1 -1
- package/package.json +3 -3
- package/src/components/debugBins.ts +7 -6
- package/src/components/helpers.ts +55 -45
- package/src/components/styleNodeSrc.ts +33 -33
- package/browser/ai.dbg.2.8.0-beta.2203-09.cjs.js.map +0 -1
- package/browser/ai.dbg.2.8.0-beta.2203-09.cjs.min.js.map +0 -1
- package/browser/ai.dbg.2.8.0-beta.2203-09.gbl.js.map +0 -1
- package/browser/ai.dbg.2.8.0-beta.2203-09.gbl.min.js.map +0 -1
- package/browser/ai.dbg.2.8.0-beta.2203-09.integrity.json +0 -66
- package/browser/ai.dbg.2.8.0-beta.2203-09.js.map +0 -1
- package/browser/ai.dbg.2.8.0-beta.2203-09.min.js.map +0 -1
package/browser/ai.dbg.2.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Application Insights JavaScript SDK - Debug Plugin, 2.8.0-beta.2203-
|
|
2
|
+
* Application Insights JavaScript SDK - Debug Plugin, 2.8.0-beta.2203-10
|
|
3
3
|
* Copyright (c) Microsoft and contributors. All rights reserved.
|
|
4
4
|
*/
|
|
5
5
|
(function (global, factory) {
|
|
@@ -62,7 +62,9 @@
|
|
|
62
62
|
(getGlobal() || {})["Reflect"];
|
|
63
63
|
var extendStaticsFn = function (d, b) {
|
|
64
64
|
extendStaticsFn = ObjClass["setPrototypeOf"] ||
|
|
65
|
-
({ __proto__: [] } instanceof Array && function (d, b) {
|
|
65
|
+
({ __proto__: [] } instanceof Array && function (d, b) {
|
|
66
|
+
d.__proto__ = b;
|
|
67
|
+
}) ||
|
|
66
68
|
function (d, b) {
|
|
67
69
|
for (var p in b) {
|
|
68
70
|
if (b[strShimHasOwnProperty](p)) {
|
|
@@ -77,7 +79,9 @@
|
|
|
77
79
|
throwTypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
78
80
|
}
|
|
79
81
|
extendStaticsFn(d, b);
|
|
80
|
-
function __() {
|
|
82
|
+
function __() {
|
|
83
|
+
this.constructor = d;
|
|
84
|
+
}
|
|
81
85
|
d[strShimPrototype] = b === null ? objCreateFn(b) : (__[strShimPrototype] = b[strShimPrototype], new __());
|
|
82
86
|
}
|
|
83
87
|
|
|
@@ -1357,7 +1361,9 @@
|
|
|
1357
1361
|
var context = {
|
|
1358
1362
|
_next: _moveNext,
|
|
1359
1363
|
ctx: {
|
|
1360
|
-
core: function () {
|
|
1364
|
+
core: function () {
|
|
1365
|
+
return core;
|
|
1366
|
+
},
|
|
1361
1367
|
diagLog: function () {
|
|
1362
1368
|
return safeGetLogger(core, config);
|
|
1363
1369
|
},
|