@nsshunt/stsuxvue 1.0.37 → 1.0.38

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/dist/stsuxvue.mjs CHANGED
@@ -5779,7 +5779,7 @@ function requireAnsi_to_html() {
5779
5779
  }
5780
5780
  var ansi_to_htmlExports = requireAnsi_to_html();
5781
5781
  const Convert = /* @__PURE__ */ getDefaultExportFromCjs(ansi_to_htmlExports);
5782
- /*! @license DOMPurify 3.2.5 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.2.5/LICENSE */
5782
+ /*! @license DOMPurify 3.2.6 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.2.6/LICENSE */
5783
5783
  const {
5784
5784
  entries,
5785
5785
  setPrototypeOf,
@@ -5930,7 +5930,7 @@ const TMPLIT_EXPR = seal(/\$\{[\w\W]*/gm);
5930
5930
  const DATA_ATTR = seal(/^data-[\-\w.\u00B7-\uFFFF]+$/);
5931
5931
  const ARIA_ATTR = seal(/^aria-[\-\w]+$/);
5932
5932
  const IS_ALLOWED_URI = seal(
5933
- /^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i
5933
+ /^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp|matrix):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i
5934
5934
  // eslint-disable-line no-useless-escape
5935
5935
  );
5936
5936
  const IS_SCRIPT_OR_DATA = seal(/^(?:\w+script|data):/i);
@@ -6004,7 +6004,7 @@ const _createHooksMap = function _createHooksMap2() {
6004
6004
  function createDOMPurify() {
6005
6005
  let window2 = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : getGlobal();
6006
6006
  const DOMPurify = (root) => createDOMPurify(root);
6007
- DOMPurify.version = "3.2.5";
6007
+ DOMPurify.version = "3.2.6";
6008
6008
  DOMPurify.removed = [];
6009
6009
  if (!window2 || !window2.document || window2.document.nodeType !== NODE_TYPE.document || !window2.Element) {
6010
6010
  DOMPurify.isSupported = false;
@@ -6151,8 +6151,8 @@ function createDOMPurify() {
6151
6151
  URI_SAFE_ATTRIBUTES = objectHasOwnProperty(cfg, "ADD_URI_SAFE_ATTR") ? addToSet(clone(DEFAULT_URI_SAFE_ATTRIBUTES), cfg.ADD_URI_SAFE_ATTR, transformCaseFunc) : DEFAULT_URI_SAFE_ATTRIBUTES;
6152
6152
  DATA_URI_TAGS = objectHasOwnProperty(cfg, "ADD_DATA_URI_TAGS") ? addToSet(clone(DEFAULT_DATA_URI_TAGS), cfg.ADD_DATA_URI_TAGS, transformCaseFunc) : DEFAULT_DATA_URI_TAGS;
6153
6153
  FORBID_CONTENTS = objectHasOwnProperty(cfg, "FORBID_CONTENTS") ? addToSet({}, cfg.FORBID_CONTENTS, transformCaseFunc) : DEFAULT_FORBID_CONTENTS;
6154
- FORBID_TAGS = objectHasOwnProperty(cfg, "FORBID_TAGS") ? addToSet({}, cfg.FORBID_TAGS, transformCaseFunc) : {};
6155
- FORBID_ATTR = objectHasOwnProperty(cfg, "FORBID_ATTR") ? addToSet({}, cfg.FORBID_ATTR, transformCaseFunc) : {};
6154
+ FORBID_TAGS = objectHasOwnProperty(cfg, "FORBID_TAGS") ? addToSet({}, cfg.FORBID_TAGS, transformCaseFunc) : clone({});
6155
+ FORBID_ATTR = objectHasOwnProperty(cfg, "FORBID_ATTR") ? addToSet({}, cfg.FORBID_ATTR, transformCaseFunc) : clone({});
6156
6156
  USE_PROFILES = objectHasOwnProperty(cfg, "USE_PROFILES") ? cfg.USE_PROFILES : false;
6157
6157
  ALLOW_ARIA_ATTR = cfg.ALLOW_ARIA_ATTR !== false;
6158
6158
  ALLOW_DATA_ATTR = cfg.ALLOW_DATA_ATTR !== false;
@@ -6416,7 +6416,7 @@ function createDOMPurify() {
6416
6416
  tagName,
6417
6417
  allowedTags: ALLOWED_TAGS
6418
6418
  });
6419
- if (currentNode.hasChildNodes() && !_isNode(currentNode.firstElementChild) && regExpTest(/<[/\w!]/g, currentNode.innerHTML) && regExpTest(/<[/\w!]/g, currentNode.textContent)) {
6419
+ if (SAFE_FOR_XML && currentNode.hasChildNodes() && !_isNode(currentNode.firstElementChild) && regExpTest(/<[/\w!]/g, currentNode.innerHTML) && regExpTest(/<[/\w!]/g, currentNode.textContent)) {
6420
6420
  _forceRemove(currentNode);
6421
6421
  return true;
6422
6422
  }
@@ -6529,7 +6529,8 @@ function createDOMPurify() {
6529
6529
  value: attrValue
6530
6530
  } = attr;
6531
6531
  const lcName = transformCaseFunc(name);
6532
- let value = name === "value" ? attrValue : stringTrim(attrValue);
6532
+ const initValue = attrValue;
6533
+ let value = name === "value" ? initValue : stringTrim(initValue);
6533
6534
  hookEvent.attrName = lcName;
6534
6535
  hookEvent.attrValue = value;
6535
6536
  hookEvent.keepAttr = true;
@@ -6547,8 +6548,8 @@ function createDOMPurify() {
6547
6548
  if (hookEvent.forceKeepAttr) {
6548
6549
  continue;
6549
6550
  }
6550
- _removeAttribute(name, currentNode);
6551
6551
  if (!hookEvent.keepAttr) {
6552
+ _removeAttribute(name, currentNode);
6552
6553
  continue;
6553
6554
  }
6554
6555
  if (!ALLOW_SELF_CLOSE_IN_ATTR && regExpTest(/\/>/i, value)) {
@@ -6562,6 +6563,7 @@ function createDOMPurify() {
6562
6563
  }
6563
6564
  const lcTag = transformCaseFunc(currentNode.nodeName);
6564
6565
  if (!_isValidAttribute(lcTag, lcName, value)) {
6566
+ _removeAttribute(name, currentNode);
6565
6567
  continue;
6566
6568
  }
6567
6569
  if (trustedTypesPolicy && typeof trustedTypes === "object" && typeof trustedTypes.getAttributeType === "function") {
@@ -6579,18 +6581,21 @@ function createDOMPurify() {
6579
6581
  }
6580
6582
  }
6581
6583
  }
6582
- try {
6583
- if (namespaceURI) {
6584
- currentNode.setAttributeNS(namespaceURI, name, value);
6585
- } else {
6586
- currentNode.setAttribute(name, value);
6587
- }
6588
- if (_isClobbered(currentNode)) {
6589
- _forceRemove(currentNode);
6590
- } else {
6591
- arrayPop(DOMPurify.removed);
6584
+ if (value !== initValue) {
6585
+ try {
6586
+ if (namespaceURI) {
6587
+ currentNode.setAttributeNS(namespaceURI, name, value);
6588
+ } else {
6589
+ currentNode.setAttribute(name, value);
6590
+ }
6591
+ if (_isClobbered(currentNode)) {
6592
+ _forceRemove(currentNode);
6593
+ } else {
6594
+ arrayPop(DOMPurify.removed);
6595
+ }
6596
+ } catch (_) {
6597
+ _removeAttribute(name, currentNode);
6592
6598
  }
6593
- } catch (_) {
6594
6599
  }
6595
6600
  }
6596
6601
  _executeHooks(hooks.afterSanitizeAttributes, currentNode, null);
@@ -6931,7 +6936,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
6931
6936
  default: withCtx(() => _cache[1] || (_cache[1] = [
6932
6937
  createTextVNode(" Duration ")
6933
6938
  ])),
6934
- _: 1
6939
+ _: 1,
6940
+ __: [1]
6935
6941
  }),
6936
6942
  createVNode(_component_v_col, { md: "10" }, {
6937
6943
  default: withCtx(() => [
@@ -6949,7 +6955,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
6949
6955
  default: withCtx(() => _cache[2] || (_cache[2] = [
6950
6956
  createTextVNode(" Duration Histo ")
6951
6957
  ])),
6952
- _: 1
6958
+ _: 1,
6959
+ __: [2]
6953
6960
  }),
6954
6961
  createVNode(_component_v_col, { md: "10" }, {
6955
6962
  default: withCtx(() => [
@@ -6973,7 +6980,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
6973
6980
  default: withCtx(() => _cache[3] || (_cache[3] = [
6974
6981
  createTextVNode(" Latency ")
6975
6982
  ])),
6976
- _: 1
6983
+ _: 1,
6984
+ __: [3]
6977
6985
  }),
6978
6986
  createVNode(_component_v_col, { md: "10" }, {
6979
6987
  default: withCtx(() => [
@@ -6991,7 +6999,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
6991
6999
  default: withCtx(() => _cache[4] || (_cache[4] = [
6992
7000
  createTextVNode(" Latency Histo ")
6993
7001
  ])),
6994
- _: 1
7002
+ _: 1,
7003
+ __: [4]
6995
7004
  }),
6996
7005
  createVNode(_component_v_col, { md: "10" }, {
6997
7006
  default: withCtx(() => [
@@ -7031,7 +7040,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
7031
7040
  default: withCtx(() => _cache[5] || (_cache[5] = [
7032
7041
  createTextVNode(" Request Count ")
7033
7042
  ])),
7034
- _: 1
7043
+ _: 1,
7044
+ __: [5]
7035
7045
  }),
7036
7046
  createVNode(_component_v_col, { md: "10" }, {
7037
7047
  default: withCtx(() => [
@@ -7050,7 +7060,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
7050
7060
  default: withCtx(() => _cache[6] || (_cache[6] = [
7051
7061
  createTextVNode(" Authentication Count ")
7052
7062
  ])),
7053
- _: 1
7063
+ _: 1,
7064
+ __: [6]
7054
7065
  }),
7055
7066
  createVNode(_component_v_col, { md: "10" }, {
7056
7067
  default: withCtx(() => [
@@ -7069,7 +7080,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
7069
7080
  default: withCtx(() => _cache[7] || (_cache[7] = [
7070
7081
  createTextVNode(" Velocity ")
7071
7082
  ])),
7072
- _: 1
7083
+ _: 1,
7084
+ __: [7]
7073
7085
  }),
7074
7086
  createVNode(_component_v_col, { md: "10" }, {
7075
7087
  default: withCtx(() => [
@@ -7091,7 +7103,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
7091
7103
  default: withCtx(() => _cache[8] || (_cache[8] = [
7092
7104
  createTextVNode(" Active Request Count ")
7093
7105
  ])),
7094
- _: 1
7106
+ _: 1,
7107
+ __: [8]
7095
7108
  }),
7096
7109
  createVNode(_component_v_col, { md: "10" }, {
7097
7110
  default: withCtx(() => [
@@ -7109,7 +7122,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
7109
7122
  default: withCtx(() => _cache[9] || (_cache[9] = [
7110
7123
  createTextVNode(" Core Count ")
7111
7124
  ])),
7112
- _: 1
7125
+ _: 1,
7126
+ __: [9]
7113
7127
  }),
7114
7128
  createVNode(_component_v_col, { md: "10" }, {
7115
7129
  default: withCtx(() => [
@@ -7126,7 +7140,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
7126
7140
  default: withCtx(() => _cache[10] || (_cache[10] = [
7127
7141
  createTextVNode(" Time ")
7128
7142
  ])),
7129
- _: 1
7143
+ _: 1,
7144
+ __: [10]
7130
7145
  }),
7131
7146
  createVNode(_component_v_col, { md: "10" }, {
7132
7147
  default: withCtx(() => [
@@ -7143,7 +7158,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
7143
7158
  default: withCtx(() => _cache[11] || (_cache[11] = [
7144
7159
  createTextVNode(" Logs ")
7145
7160
  ])),
7146
- _: 1
7161
+ _: 1,
7162
+ __: [11]
7147
7163
  }),
7148
7164
  createVNode(_component_v_col, { md: "10" }, {
7149
7165
  default: withCtx(() => [
@@ -8864,7 +8880,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
8864
8880
  default: withCtx(() => _cache[1] || (_cache[1] = [
8865
8881
  createTextVNode(" CPU ")
8866
8882
  ])),
8867
- _: 1
8883
+ _: 1,
8884
+ __: [1]
8868
8885
  }),
8869
8886
  createVNode(_component_v_col, { cols: "10" }, {
8870
8887
  default: withCtx(() => [
@@ -8916,7 +8933,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
8916
8933
  default: withCtx(() => _cache[2] || (_cache[2] = [
8917
8934
  createTextVNode(" Duration ")
8918
8935
  ])),
8919
- _: 1
8936
+ _: 1,
8937
+ __: [2]
8920
8938
  }),
8921
8939
  createVNode(_component_v_col, { cols: "10" }, {
8922
8940
  default: withCtx(() => [
@@ -8944,7 +8962,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
8944
8962
  default: withCtx(() => _cache[3] || (_cache[3] = [
8945
8963
  createTextVNode(" Duration Histo ")
8946
8964
  ])),
8947
- _: 1
8965
+ _: 1,
8966
+ __: [3]
8948
8967
  }),
8949
8968
  createVNode(_component_v_col, { cols: "10" }, {
8950
8969
  default: withCtx(() => [
@@ -8971,7 +8990,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
8971
8990
  default: withCtx(() => _cache[4] || (_cache[4] = [
8972
8991
  createTextVNode(" Latency ")
8973
8992
  ])),
8974
- _: 1
8993
+ _: 1,
8994
+ __: [4]
8975
8995
  }),
8976
8996
  createVNode(_component_v_col, { md: "10" }, {
8977
8997
  default: withCtx(() => [
@@ -8999,7 +9019,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
8999
9019
  default: withCtx(() => _cache[5] || (_cache[5] = [
9000
9020
  createTextVNode(" Latency Histo ")
9001
9021
  ])),
9002
- _: 1
9022
+ _: 1,
9023
+ __: [5]
9003
9024
  }),
9004
9025
  createVNode(_component_v_col, { md: "10" }, {
9005
9026
  default: withCtx(() => [
@@ -9048,7 +9069,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
9048
9069
  default: withCtx(() => _cache[6] || (_cache[6] = [
9049
9070
  createTextVNode(" Rx (MB/s) ")
9050
9071
  ])),
9051
- _: 1
9072
+ _: 1,
9073
+ __: [6]
9052
9074
  }),
9053
9075
  createVNode(_component_v_col, { md: "9" }, {
9054
9076
  default: withCtx(() => [
@@ -9068,7 +9090,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
9068
9090
  default: withCtx(() => _cache[7] || (_cache[7] = [
9069
9091
  createTextVNode(" Tx (MB/s) ")
9070
9092
  ])),
9071
- _: 1
9093
+ _: 1,
9094
+ __: [7]
9072
9095
  }),
9073
9096
  createVNode(_component_v_col, { md: "9" }, {
9074
9097
  default: withCtx(() => [
@@ -9088,7 +9111,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
9088
9111
  default: withCtx(() => _cache[8] || (_cache[8] = [
9089
9112
  createTextVNode(" Request Count ")
9090
9113
  ])),
9091
- _: 1
9114
+ _: 1,
9115
+ __: [8]
9092
9116
  }),
9093
9117
  createVNode(_component_v_col, { md: "9" }, {
9094
9118
  default: withCtx(() => [
@@ -9110,7 +9134,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
9110
9134
  default: withCtx(() => _cache[9] || (_cache[9] = [
9111
9135
  createTextVNode(" Authentication Count ")
9112
9136
  ])),
9113
- _: 1
9137
+ _: 1,
9138
+ __: [9]
9114
9139
  }),
9115
9140
  createVNode(_component_v_col, { md: "9" }, {
9116
9141
  default: withCtx(() => [
@@ -9132,7 +9157,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
9132
9157
  default: withCtx(() => _cache[10] || (_cache[10] = [
9133
9158
  createTextVNode(" Velocity ")
9134
9159
  ])),
9135
- _: 1
9160
+ _: 1,
9161
+ __: [10]
9136
9162
  }),
9137
9163
  createVNode(_component_v_col, { md: "9" }, {
9138
9164
  default: withCtx(() => [
@@ -9152,7 +9178,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
9152
9178
  default: withCtx(() => _cache[11] || (_cache[11] = [
9153
9179
  createTextVNode(" Active Request Count ")
9154
9180
  ])),
9155
- _: 1
9181
+ _: 1,
9182
+ __: [11]
9156
9183
  }),
9157
9184
  createVNode(_component_v_col, { md: "9" }, {
9158
9185
  default: withCtx(() => [
@@ -9173,7 +9200,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
9173
9200
  default: withCtx(() => _cache[12] || (_cache[12] = [
9174
9201
  createTextVNode(" Core Count ")
9175
9202
  ])),
9176
- _: 1
9203
+ _: 1,
9204
+ __: [12]
9177
9205
  }),
9178
9206
  createVNode(_component_v_col, { md: "9" }, {
9179
9207
  default: withCtx(() => [
@@ -9193,7 +9221,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
9193
9221
  default: withCtx(() => _cache[13] || (_cache[13] = [
9194
9222
  createTextVNode(" TCP Connections ")
9195
9223
  ])),
9196
- _: 1
9224
+ _: 1,
9225
+ __: [13]
9197
9226
  }),
9198
9227
  createVNode(_component_v_col, { md: "9" }, {
9199
9228
  default: withCtx(() => [
@@ -9214,7 +9243,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
9214
9243
  default: withCtx(() => _cache[14] || (_cache[14] = [
9215
9244
  createTextVNode(" Connection Pool ")
9216
9245
  ])),
9217
- _: 1
9246
+ _: 1,
9247
+ __: [14]
9218
9248
  }),
9219
9249
  createVNode(_component_v_col, { md: "9" }, {
9220
9250
  default: withCtx(() => [
@@ -9236,7 +9266,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
9236
9266
  default: withCtx(() => _cache[15] || (_cache[15] = [
9237
9267
  createTextVNode(" Time ")
9238
9268
  ])),
9239
- _: 1
9269
+ _: 1,
9270
+ __: [15]
9240
9271
  }),
9241
9272
  createVNode(_component_v_col, { md: "9" }, {
9242
9273
  default: withCtx(() => [
@@ -9256,7 +9287,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
9256
9287
  default: withCtx(() => _cache[16] || (_cache[16] = [
9257
9288
  createTextVNode(" Logs ")
9258
9289
  ])),
9259
- _: 1
9290
+ _: 1,
9291
+ __: [16]
9260
9292
  }),
9261
9293
  createVNode(_component_v_col, { md: "9" }, {
9262
9294
  default: withCtx(() => [
@@ -9632,7 +9664,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9632
9664
  }, null, 8, ["width", "model-value", "color"])
9633
9665
  ])
9634
9666
  ]),
9635
- _: 1
9667
+ _: 1,
9668
+ __: [1]
9636
9669
  }),
9637
9670
  createVNode(_component_v_col, { cols: "6" }, {
9638
9671
  default: withCtx(() => [
@@ -9649,7 +9682,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9649
9682
  }, null, 8, ["width", "model-value", "color"])
9650
9683
  ])
9651
9684
  ]),
9652
- _: 1
9685
+ _: 1,
9686
+ __: [2]
9653
9687
  })
9654
9688
  ]),
9655
9689
  _: 1
@@ -9673,7 +9707,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9673
9707
  }, null, 8, ["width", "model-value", "color"])
9674
9708
  ])
9675
9709
  ]),
9676
- _: 1
9710
+ _: 1,
9711
+ __: [3]
9677
9712
  }),
9678
9713
  createVNode(_component_v_col, { cols: "6" }, {
9679
9714
  default: withCtx(() => [
@@ -9689,7 +9724,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9689
9724
  }, null, 8, ["width", "model-value", "color"])
9690
9725
  ])
9691
9726
  ]),
9692
- _: 1
9727
+ _: 1,
9728
+ __: [4]
9693
9729
  })
9694
9730
  ]),
9695
9731
  _: 1
@@ -9703,7 +9739,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9703
9739
  default: withCtx(() => _cache[5] || (_cache[5] = [
9704
9740
  createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " Request (c/e/r): ", -1)
9705
9741
  ])),
9706
- _: 1
9742
+ _: 1,
9743
+ __: [5]
9707
9744
  }),
9708
9745
  createVNode(_component_v_col, { cols: "6" }, {
9709
9746
  default: withCtx(() => [
@@ -9720,7 +9757,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9720
9757
  default: withCtx(() => _cache[6] || (_cache[6] = [
9721
9758
  createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " Timer: ", -1)
9722
9759
  ])),
9723
- _: 1
9760
+ _: 1,
9761
+ __: [6]
9724
9762
  }),
9725
9763
  createVNode(_component_v_col, { cols: "6" }, {
9726
9764
  default: withCtx(() => [
@@ -9737,7 +9775,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9737
9775
  default: withCtx(() => _cache[7] || (_cache[7] = [
9738
9776
  createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " Duration (ms): ", -1)
9739
9777
  ])),
9740
- _: 1
9778
+ _: 1,
9779
+ __: [7]
9741
9780
  }),
9742
9781
  createVNode(_component_v_col, { cols: "6" }, {
9743
9782
  default: withCtx(() => [
@@ -9754,7 +9793,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9754
9793
  default: withCtx(() => _cache[8] || (_cache[8] = [
9755
9794
  createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " Latency (ms): ", -1)
9756
9795
  ])),
9757
- _: 1
9796
+ _: 1,
9797
+ __: [8]
9758
9798
  }),
9759
9799
  createVNode(_component_v_col, { cols: "6" }, {
9760
9800
  default: withCtx(() => [
@@ -9771,7 +9811,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9771
9811
  default: withCtx(() => _cache[9] || (_cache[9] = [
9772
9812
  createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " Receive-Rx (MBs): ", -1)
9773
9813
  ])),
9774
- _: 1
9814
+ _: 1,
9815
+ __: [9]
9775
9816
  }),
9776
9817
  createVNode(_component_v_col, { cols: "6" }, {
9777
9818
  default: withCtx(() => [
@@ -9788,7 +9829,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9788
9829
  default: withCtx(() => _cache[10] || (_cache[10] = [
9789
9830
  createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " Transmit-Tx (MBs): ", -1)
9790
9831
  ])),
9791
- _: 1
9832
+ _: 1,
9833
+ __: [10]
9792
9834
  }),
9793
9835
  createVNode(_component_v_col, { cols: "6" }, {
9794
9836
  default: withCtx(() => [
@@ -9805,7 +9847,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9805
9847
  default: withCtx(() => _cache[11] || (_cache[11] = [
9806
9848
  createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " Pool (tot/idle/wait): ", -1)
9807
9849
  ])),
9808
- _: 1
9850
+ _: 1,
9851
+ __: [11]
9809
9852
  }),
9810
9853
  createVNode(_component_v_col, { cols: "6" }, {
9811
9854
  default: withCtx(() => [
@@ -9822,7 +9865,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9822
9865
  default: withCtx(() => _cache[12] || (_cache[12] = [
9823
9866
  createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " vCPU: ", -1)
9824
9867
  ])),
9825
- _: 1
9868
+ _: 1,
9869
+ __: [12]
9826
9870
  }),
9827
9871
  createVNode(_component_v_col, { cols: "6" }, {
9828
9872
  default: withCtx(() => [
@@ -9839,7 +9883,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9839
9883
  default: withCtx(() => _cache[13] || (_cache[13] = [
9840
9884
  createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " Auth (c/e/r): ", -1)
9841
9885
  ])),
9842
- _: 1
9886
+ _: 1,
9887
+ __: [13]
9843
9888
  }),
9844
9889
  createVNode(_component_v_col, { cols: "6" }, {
9845
9890
  default: withCtx(() => [
@@ -9973,14 +10018,14 @@ class SocketIoClientHelper {
9973
10018
  get sockets() {
9974
10019
  return __privateGet2(this, _sockets);
9975
10020
  }
9976
- SetupClientSideSocket(name, address, onConnectCallBack, socketEventsCallBack, errorCallBack) {
10021
+ SetupClientSideSocket(name, address, socketIoCustomPath, onConnectCallBack, socketEventsCallBack, errorCallBack) {
9977
10022
  this.sockets[name] = {
9978
10023
  name,
9979
10024
  address,
9980
10025
  socket: null,
9981
10026
  errorCallBack
9982
10027
  };
9983
- __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, onConnectCallBack, socketEventsCallBack);
10028
+ __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, socketIoCustomPath, onConnectCallBack, socketEventsCallBack);
9984
10029
  return this.sockets[name].socket;
9985
10030
  }
9986
10031
  GetSocket(name) {
@@ -9999,7 +10044,7 @@ LogDebugMessage_fn = function(message) {
9999
10044
  LogErrorMessage_fn = function(message) {
10000
10045
  if (__privateGet2(this, _options).logger) __privateGet2(this, _options).logger.error(message);
10001
10046
  };
10002
- EstablishSocketConnect_fn = function(name, onConnectCallBack, socketEventsCallBack) {
10047
+ EstablishSocketConnect_fn = function(name, socketIoCustomPath, onConnectCallBack, socketEventsCallBack) {
10003
10048
  const socketDetail = this.sockets[name];
10004
10049
  if (socketDetail.socket !== null) {
10005
10050
  if (socketDetail.socket.connected === true) {
@@ -10007,9 +10052,9 @@ EstablishSocketConnect_fn = function(name, onConnectCallBack, socketEventsCallBa
10007
10052
  }
10008
10053
  socketDetail.socket = null;
10009
10054
  if (isNode) {
10010
- setTimeout(() => __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, onConnectCallBack, socketEventsCallBack), 100).unref();
10055
+ setTimeout(() => __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, socketIoCustomPath, onConnectCallBack, socketEventsCallBack), 100).unref();
10011
10056
  } else {
10012
- setTimeout(() => __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, onConnectCallBack, socketEventsCallBack), 100);
10057
+ setTimeout(() => __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, socketIoCustomPath, onConnectCallBack, socketEventsCallBack), 100);
10013
10058
  }
10014
10059
  return;
10015
10060
  }
@@ -10026,10 +10071,28 @@ EstablishSocketConnect_fn = function(name, onConnectCallBack, socketEventsCallBa
10026
10071
  transports: ["websocket"]
10027
10072
  };
10028
10073
  }
10074
+ if (socketIoCustomPath && socketIoCustomPath.localeCompare("") !== 0) {
10075
+ socketOptions.path = socketIoCustomPath;
10076
+ }
10029
10077
  socketDetail.socket = io(socketDetail.address, socketOptions);
10078
+ socketDetail.socket.io.on("error", (err) => {
10079
+ __privateMethod(this, _SocketIoClientHelper_instances, LogErrorMessage_fn).call(this, `SocketIoClientHelper(): socketDetail.socket.io.on('error'): [${err}]`);
10080
+ });
10081
+ socketDetail.socket.io.on("reconnect_error", (err) => {
10082
+ __privateMethod(this, _SocketIoClientHelper_instances, LogErrorMessage_fn).call(this, `SocketIoClientHelper(): socketDetail.socket.io.on('reconnect_error'): [${err}]`);
10083
+ });
10084
+ socketDetail.socket.io.on("reconnect", (attempt) => {
10085
+ __privateMethod(this, _SocketIoClientHelper_instances, LogErrorMessage_fn).call(this, `SocketIoClientHelper(): socketDetail.socket.io.on('reconnect'): Number: [${attempt}]`);
10086
+ });
10087
+ socketDetail.socket.on("connect_error", (err) => {
10088
+ __privateMethod(this, _SocketIoClientHelper_instances, LogErrorMessage_fn).call(this, `SocketIoClientHelper(): socketDetail.socket.on('connect_error'): [${err}]`);
10089
+ });
10090
+ socketDetail.socket.on("connect_timeout", () => {
10091
+ __privateMethod(this, _SocketIoClientHelper_instances, LogErrorMessage_fn).call(this, `SocketIoClientHelper(): socketDetail.socket.on('connect_timeout')`);
10092
+ });
10030
10093
  socketDetail.socket.on("connect", () => {
10031
10094
  if (socketDetail.socket) {
10032
- __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, `Socket: [${socketDetail.socket.id}]: connected`);
10095
+ __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, `SocketIoClientHelper(): Socket: [${socketDetail.socket.id}]: connected`);
10033
10096
  if (onConnectCallBack) {
10034
10097
  setTimeout(() => {
10035
10098
  onConnectCallBack(socketDetail.socket);
@@ -10039,41 +10102,41 @@ EstablishSocketConnect_fn = function(name, onConnectCallBack, socketEventsCallBa
10039
10102
  socketEventsCallBack(socketDetail.socket);
10040
10103
  }
10041
10104
  } else {
10042
- const errorMessage = "Could not get socket object from socket.io";
10105
+ const errorMessage = "SocketIoClientHelper(): Could not get socket object from socket.io";
10043
10106
  __privateMethod(this, _SocketIoClientHelper_instances, LogErrorMessage_fn).call(this, errorMessage);
10044
10107
  socketDetail.errorCallBack(new Error(errorMessage));
10045
10108
  }
10046
10109
  });
10047
10110
  socketDetail.socket.on("disconnect", (reason) => {
10048
10111
  var _a;
10049
- __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "socket disconnect: " + reason);
10112
+ __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "SocketIoClientHelper(): socket disconnect: " + reason);
10050
10113
  switch (reason) {
10051
10114
  case "io server disconnect":
10052
10115
  {
10053
- __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "The server disconnected using disconnectSockets, i.e. normal safe shutdown from explicit disconnection by the server.");
10054
- __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "The connection will be re-established when the server becomes available.");
10116
+ __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "SocketIoClientHelper(): The server disconnected using disconnectSockets, i.e. normal safe shutdown from explicit disconnection by the server.");
10117
+ __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "SocketIoClientHelper(): The connection will be re-established when the server becomes available.");
10055
10118
  const socketDetail2 = this.sockets[name];
10056
10119
  socketDetail2.socket = null;
10057
10120
  if (isNode) {
10058
10121
  if (__privateGet2(this, _options).agentManager) {
10059
10122
  __privateGet2(this, _options).agentManager.ResetAgent();
10060
10123
  }
10061
- setTimeout(() => __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, onConnectCallBack, socketEventsCallBack), 100).unref();
10124
+ setTimeout(() => __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, socketIoCustomPath, onConnectCallBack, socketEventsCallBack), 100).unref();
10062
10125
  } else {
10063
- setTimeout(() => __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, onConnectCallBack, socketEventsCallBack), 100);
10126
+ setTimeout(() => __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, socketIoCustomPath, onConnectCallBack, socketEventsCallBack), 100);
10064
10127
  }
10065
10128
  }
10066
10129
  break;
10067
10130
  case "io client disconnect":
10068
- __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "The client disconnected using disconnectSockets, i.e. normal safe disconnection from explicit disconnection by the client.");
10069
- __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "The connection will not be re-established automatically.");
10131
+ __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "SocketIoClientHelper(): The client disconnected using disconnectSockets, i.e. normal safe disconnection from explicit disconnection by the client.");
10132
+ __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "SocketIoClientHelper(): The connection will not be re-established automatically.");
10070
10133
  break;
10071
10134
  case "transport close":
10072
10135
  case "ping timeout":
10073
10136
  case "transport error":
10074
10137
  {
10075
- __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, `Server unexpectedly disconnected. Reason: [${reason}]`);
10076
- __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "The connection will be re-established when the server becomes available.");
10138
+ __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, `SocketIoClientHelper(): Server unexpectedly disconnected. Reason: [${reason}]`);
10139
+ __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "SocketIoClientHelper(): The connection will be re-established when the server becomes available.");
10077
10140
  const socketDetail2 = this.sockets[name];
10078
10141
  if (socketDetail2.socket) {
10079
10142
  socketDetail2.socket.disconnect();
@@ -10083,9 +10146,9 @@ EstablishSocketConnect_fn = function(name, onConnectCallBack, socketEventsCallBa
10083
10146
  if (__privateGet2(this, _options).agentManager) {
10084
10147
  (_a = __privateGet2(this, _options).agentManager) == null ? void 0 : _a.ResetAgent();
10085
10148
  }
10086
- setTimeout(() => __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, onConnectCallBack, socketEventsCallBack), 100).unref();
10149
+ setTimeout(() => __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, socketIoCustomPath, onConnectCallBack, socketEventsCallBack), 100).unref();
10087
10150
  } else {
10088
- setTimeout(() => __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, onConnectCallBack, socketEventsCallBack), 100);
10151
+ setTimeout(() => __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, socketIoCustomPath, onConnectCallBack, socketEventsCallBack), 100);
10089
10152
  }
10090
10153
  }
10091
10154
  break;
@@ -10250,6 +10313,8 @@ class ObservabilitySubscriberManager {
10250
10313
  __privateSet(this, _socket, socketUtils.SetupClientSideSocket(
10251
10314
  "STSVueTilsTester",
10252
10315
  `${__privateGet(this, _options2).instrumentManagerEndpoint}:${__privateGet(this, _options2).instrumentManagerPort}/${SOCKET_NAMESPACE}/`,
10316
+ "",
10317
+ // use default /socket.io/ path
10253
10318
  __privateGet(this, _SocketConnect),
10254
10319
  // Connected call back
10255
10320
  __privateGet(this, _ProcessSocketEvents),
@@ -10556,13 +10621,15 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
10556
10621
  default: withCtx(() => _cache[2] || (_cache[2] = [
10557
10622
  createTextVNode(" Summary ")
10558
10623
  ])),
10559
- _: 1
10624
+ _: 1,
10625
+ __: [2]
10560
10626
  }),
10561
10627
  createVNode(_component_v_tab, { value: "detailed" }, {
10562
10628
  default: withCtx(() => _cache[3] || (_cache[3] = [
10563
10629
  createTextVNode(" Detailed ")
10564
10630
  ])),
10565
- _: 1
10631
+ _: 1,
10632
+ __: [3]
10566
10633
  })
10567
10634
  ]),
10568
10635
  _: 1
@@ -10616,7 +10683,8 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
10616
10683
  icon: "fa-regular fa-house"
10617
10684
  })
10618
10685
  ]),
10619
- _: 1
10686
+ _: 1,
10687
+ __: [4]
10620
10688
  }),
10621
10689
  createVNode(_component_v_btn, {
10622
10690
  class: "ma-1",
@@ -10631,7 +10699,8 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
10631
10699
  icon: "fa-solid fa-backward-step"
10632
10700
  })
10633
10701
  ]),
10634
- _: 1
10702
+ _: 1,
10703
+ __: [5]
10635
10704
  }, 8, ["disabled"])
10636
10705
  ])
10637
10706
  ]),
@@ -10718,7 +10787,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
10718
10787
  _cache[0] || (_cache[0] = createElementVNode("div", null, " UXTestForm ", -1)),
10719
10788
  createVNode(_component_v_divider)
10720
10789
  ]),
10721
- _: 1
10790
+ _: 1,
10791
+ __: [0]
10722
10792
  }),
10723
10793
  _ctx.showFormValues ? (openBlock(), createBlock(_component_v_row, { key: 0 }, {
10724
10794
  default: withCtx(() => [