@nsshunt/stsuxvue 1.0.37 → 1.0.39

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.
@@ -5777,7 +5777,7 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
5777
5777
  }
5778
5778
  var ansi_to_htmlExports = requireAnsi_to_html();
5779
5779
  const Convert = /* @__PURE__ */ getDefaultExportFromCjs(ansi_to_htmlExports);
5780
- /*! @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 */
5780
+ /*! @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 */
5781
5781
  const {
5782
5782
  entries,
5783
5783
  setPrototypeOf,
@@ -5928,7 +5928,7 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
5928
5928
  const DATA_ATTR = seal(/^data-[\-\w.\u00B7-\uFFFF]+$/);
5929
5929
  const ARIA_ATTR = seal(/^aria-[\-\w]+$/);
5930
5930
  const IS_ALLOWED_URI = seal(
5931
- /^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i
5931
+ /^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp|matrix):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i
5932
5932
  // eslint-disable-line no-useless-escape
5933
5933
  );
5934
5934
  const IS_SCRIPT_OR_DATA = seal(/^(?:\w+script|data):/i);
@@ -6002,7 +6002,7 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
6002
6002
  function createDOMPurify() {
6003
6003
  let window2 = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : getGlobal();
6004
6004
  const DOMPurify = (root) => createDOMPurify(root);
6005
- DOMPurify.version = "3.2.5";
6005
+ DOMPurify.version = "3.2.6";
6006
6006
  DOMPurify.removed = [];
6007
6007
  if (!window2 || !window2.document || window2.document.nodeType !== NODE_TYPE.document || !window2.Element) {
6008
6008
  DOMPurify.isSupported = false;
@@ -6149,8 +6149,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
6149
6149
  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;
6150
6150
  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;
6151
6151
  FORBID_CONTENTS = objectHasOwnProperty(cfg, "FORBID_CONTENTS") ? addToSet({}, cfg.FORBID_CONTENTS, transformCaseFunc) : DEFAULT_FORBID_CONTENTS;
6152
- FORBID_TAGS = objectHasOwnProperty(cfg, "FORBID_TAGS") ? addToSet({}, cfg.FORBID_TAGS, transformCaseFunc) : {};
6153
- FORBID_ATTR = objectHasOwnProperty(cfg, "FORBID_ATTR") ? addToSet({}, cfg.FORBID_ATTR, transformCaseFunc) : {};
6152
+ FORBID_TAGS = objectHasOwnProperty(cfg, "FORBID_TAGS") ? addToSet({}, cfg.FORBID_TAGS, transformCaseFunc) : clone({});
6153
+ FORBID_ATTR = objectHasOwnProperty(cfg, "FORBID_ATTR") ? addToSet({}, cfg.FORBID_ATTR, transformCaseFunc) : clone({});
6154
6154
  USE_PROFILES = objectHasOwnProperty(cfg, "USE_PROFILES") ? cfg.USE_PROFILES : false;
6155
6155
  ALLOW_ARIA_ATTR = cfg.ALLOW_ARIA_ATTR !== false;
6156
6156
  ALLOW_DATA_ATTR = cfg.ALLOW_DATA_ATTR !== false;
@@ -6414,7 +6414,7 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
6414
6414
  tagName,
6415
6415
  allowedTags: ALLOWED_TAGS
6416
6416
  });
6417
- if (currentNode.hasChildNodes() && !_isNode(currentNode.firstElementChild) && regExpTest(/<[/\w!]/g, currentNode.innerHTML) && regExpTest(/<[/\w!]/g, currentNode.textContent)) {
6417
+ if (SAFE_FOR_XML && currentNode.hasChildNodes() && !_isNode(currentNode.firstElementChild) && regExpTest(/<[/\w!]/g, currentNode.innerHTML) && regExpTest(/<[/\w!]/g, currentNode.textContent)) {
6418
6418
  _forceRemove(currentNode);
6419
6419
  return true;
6420
6420
  }
@@ -6527,7 +6527,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
6527
6527
  value: attrValue
6528
6528
  } = attr;
6529
6529
  const lcName = transformCaseFunc(name);
6530
- let value = name === "value" ? attrValue : stringTrim(attrValue);
6530
+ const initValue = attrValue;
6531
+ let value = name === "value" ? initValue : stringTrim(initValue);
6531
6532
  hookEvent.attrName = lcName;
6532
6533
  hookEvent.attrValue = value;
6533
6534
  hookEvent.keepAttr = true;
@@ -6545,8 +6546,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
6545
6546
  if (hookEvent.forceKeepAttr) {
6546
6547
  continue;
6547
6548
  }
6548
- _removeAttribute(name, currentNode);
6549
6549
  if (!hookEvent.keepAttr) {
6550
+ _removeAttribute(name, currentNode);
6550
6551
  continue;
6551
6552
  }
6552
6553
  if (!ALLOW_SELF_CLOSE_IN_ATTR && regExpTest(/\/>/i, value)) {
@@ -6560,6 +6561,7 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
6560
6561
  }
6561
6562
  const lcTag = transformCaseFunc(currentNode.nodeName);
6562
6563
  if (!_isValidAttribute(lcTag, lcName, value)) {
6564
+ _removeAttribute(name, currentNode);
6563
6565
  continue;
6564
6566
  }
6565
6567
  if (trustedTypesPolicy && typeof trustedTypes === "object" && typeof trustedTypes.getAttributeType === "function") {
@@ -6577,18 +6579,21 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
6577
6579
  }
6578
6580
  }
6579
6581
  }
6580
- try {
6581
- if (namespaceURI) {
6582
- currentNode.setAttributeNS(namespaceURI, name, value);
6583
- } else {
6584
- currentNode.setAttribute(name, value);
6585
- }
6586
- if (_isClobbered(currentNode)) {
6587
- _forceRemove(currentNode);
6588
- } else {
6589
- arrayPop(DOMPurify.removed);
6582
+ if (value !== initValue) {
6583
+ try {
6584
+ if (namespaceURI) {
6585
+ currentNode.setAttributeNS(namespaceURI, name, value);
6586
+ } else {
6587
+ currentNode.setAttribute(name, value);
6588
+ }
6589
+ if (_isClobbered(currentNode)) {
6590
+ _forceRemove(currentNode);
6591
+ } else {
6592
+ arrayPop(DOMPurify.removed);
6593
+ }
6594
+ } catch (_) {
6595
+ _removeAttribute(name, currentNode);
6590
6596
  }
6591
- } catch (_) {
6592
6597
  }
6593
6598
  }
6594
6599
  _executeHooks(hooks.afterSanitizeAttributes, currentNode, null);
@@ -6929,7 +6934,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
6929
6934
  default: vue.withCtx(() => _cache[1] || (_cache[1] = [
6930
6935
  vue.createTextVNode(" Duration ")
6931
6936
  ])),
6932
- _: 1
6937
+ _: 1,
6938
+ __: [1]
6933
6939
  }),
6934
6940
  vue.createVNode(_component_v_col, { md: "10" }, {
6935
6941
  default: vue.withCtx(() => [
@@ -6947,7 +6953,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
6947
6953
  default: vue.withCtx(() => _cache[2] || (_cache[2] = [
6948
6954
  vue.createTextVNode(" Duration Histo ")
6949
6955
  ])),
6950
- _: 1
6956
+ _: 1,
6957
+ __: [2]
6951
6958
  }),
6952
6959
  vue.createVNode(_component_v_col, { md: "10" }, {
6953
6960
  default: vue.withCtx(() => [
@@ -6971,7 +6978,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
6971
6978
  default: vue.withCtx(() => _cache[3] || (_cache[3] = [
6972
6979
  vue.createTextVNode(" Latency ")
6973
6980
  ])),
6974
- _: 1
6981
+ _: 1,
6982
+ __: [3]
6975
6983
  }),
6976
6984
  vue.createVNode(_component_v_col, { md: "10" }, {
6977
6985
  default: vue.withCtx(() => [
@@ -6989,7 +6997,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
6989
6997
  default: vue.withCtx(() => _cache[4] || (_cache[4] = [
6990
6998
  vue.createTextVNode(" Latency Histo ")
6991
6999
  ])),
6992
- _: 1
7000
+ _: 1,
7001
+ __: [4]
6993
7002
  }),
6994
7003
  vue.createVNode(_component_v_col, { md: "10" }, {
6995
7004
  default: vue.withCtx(() => [
@@ -7029,7 +7038,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
7029
7038
  default: vue.withCtx(() => _cache[5] || (_cache[5] = [
7030
7039
  vue.createTextVNode(" Request Count ")
7031
7040
  ])),
7032
- _: 1
7041
+ _: 1,
7042
+ __: [5]
7033
7043
  }),
7034
7044
  vue.createVNode(_component_v_col, { md: "10" }, {
7035
7045
  default: vue.withCtx(() => [
@@ -7048,7 +7058,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
7048
7058
  default: vue.withCtx(() => _cache[6] || (_cache[6] = [
7049
7059
  vue.createTextVNode(" Authentication Count ")
7050
7060
  ])),
7051
- _: 1
7061
+ _: 1,
7062
+ __: [6]
7052
7063
  }),
7053
7064
  vue.createVNode(_component_v_col, { md: "10" }, {
7054
7065
  default: vue.withCtx(() => [
@@ -7067,7 +7078,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
7067
7078
  default: vue.withCtx(() => _cache[7] || (_cache[7] = [
7068
7079
  vue.createTextVNode(" Velocity ")
7069
7080
  ])),
7070
- _: 1
7081
+ _: 1,
7082
+ __: [7]
7071
7083
  }),
7072
7084
  vue.createVNode(_component_v_col, { md: "10" }, {
7073
7085
  default: vue.withCtx(() => [
@@ -7089,7 +7101,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
7089
7101
  default: vue.withCtx(() => _cache[8] || (_cache[8] = [
7090
7102
  vue.createTextVNode(" Active Request Count ")
7091
7103
  ])),
7092
- _: 1
7104
+ _: 1,
7105
+ __: [8]
7093
7106
  }),
7094
7107
  vue.createVNode(_component_v_col, { md: "10" }, {
7095
7108
  default: vue.withCtx(() => [
@@ -7107,7 +7120,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
7107
7120
  default: vue.withCtx(() => _cache[9] || (_cache[9] = [
7108
7121
  vue.createTextVNode(" Core Count ")
7109
7122
  ])),
7110
- _: 1
7123
+ _: 1,
7124
+ __: [9]
7111
7125
  }),
7112
7126
  vue.createVNode(_component_v_col, { md: "10" }, {
7113
7127
  default: vue.withCtx(() => [
@@ -7124,7 +7138,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
7124
7138
  default: vue.withCtx(() => _cache[10] || (_cache[10] = [
7125
7139
  vue.createTextVNode(" Time ")
7126
7140
  ])),
7127
- _: 1
7141
+ _: 1,
7142
+ __: [10]
7128
7143
  }),
7129
7144
  vue.createVNode(_component_v_col, { md: "10" }, {
7130
7145
  default: vue.withCtx(() => [
@@ -7141,7 +7156,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
7141
7156
  default: vue.withCtx(() => _cache[11] || (_cache[11] = [
7142
7157
  vue.createTextVNode(" Logs ")
7143
7158
  ])),
7144
- _: 1
7159
+ _: 1,
7160
+ __: [11]
7145
7161
  }),
7146
7162
  vue.createVNode(_component_v_col, { md: "10" }, {
7147
7163
  default: vue.withCtx(() => [
@@ -8862,7 +8878,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
8862
8878
  default: vue.withCtx(() => _cache[1] || (_cache[1] = [
8863
8879
  vue.createTextVNode(" CPU ")
8864
8880
  ])),
8865
- _: 1
8881
+ _: 1,
8882
+ __: [1]
8866
8883
  }),
8867
8884
  vue.createVNode(_component_v_col, { cols: "10" }, {
8868
8885
  default: vue.withCtx(() => [
@@ -8914,7 +8931,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
8914
8931
  default: vue.withCtx(() => _cache[2] || (_cache[2] = [
8915
8932
  vue.createTextVNode(" Duration ")
8916
8933
  ])),
8917
- _: 1
8934
+ _: 1,
8935
+ __: [2]
8918
8936
  }),
8919
8937
  vue.createVNode(_component_v_col, { cols: "10" }, {
8920
8938
  default: vue.withCtx(() => [
@@ -8942,7 +8960,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
8942
8960
  default: vue.withCtx(() => _cache[3] || (_cache[3] = [
8943
8961
  vue.createTextVNode(" Duration Histo ")
8944
8962
  ])),
8945
- _: 1
8963
+ _: 1,
8964
+ __: [3]
8946
8965
  }),
8947
8966
  vue.createVNode(_component_v_col, { cols: "10" }, {
8948
8967
  default: vue.withCtx(() => [
@@ -8969,7 +8988,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
8969
8988
  default: vue.withCtx(() => _cache[4] || (_cache[4] = [
8970
8989
  vue.createTextVNode(" Latency ")
8971
8990
  ])),
8972
- _: 1
8991
+ _: 1,
8992
+ __: [4]
8973
8993
  }),
8974
8994
  vue.createVNode(_component_v_col, { md: "10" }, {
8975
8995
  default: vue.withCtx(() => [
@@ -8997,7 +9017,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
8997
9017
  default: vue.withCtx(() => _cache[5] || (_cache[5] = [
8998
9018
  vue.createTextVNode(" Latency Histo ")
8999
9019
  ])),
9000
- _: 1
9020
+ _: 1,
9021
+ __: [5]
9001
9022
  }),
9002
9023
  vue.createVNode(_component_v_col, { md: "10" }, {
9003
9024
  default: vue.withCtx(() => [
@@ -9046,7 +9067,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9046
9067
  default: vue.withCtx(() => _cache[6] || (_cache[6] = [
9047
9068
  vue.createTextVNode(" Rx (MB/s) ")
9048
9069
  ])),
9049
- _: 1
9070
+ _: 1,
9071
+ __: [6]
9050
9072
  }),
9051
9073
  vue.createVNode(_component_v_col, { md: "9" }, {
9052
9074
  default: vue.withCtx(() => [
@@ -9066,7 +9088,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9066
9088
  default: vue.withCtx(() => _cache[7] || (_cache[7] = [
9067
9089
  vue.createTextVNode(" Tx (MB/s) ")
9068
9090
  ])),
9069
- _: 1
9091
+ _: 1,
9092
+ __: [7]
9070
9093
  }),
9071
9094
  vue.createVNode(_component_v_col, { md: "9" }, {
9072
9095
  default: vue.withCtx(() => [
@@ -9086,7 +9109,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9086
9109
  default: vue.withCtx(() => _cache[8] || (_cache[8] = [
9087
9110
  vue.createTextVNode(" Request Count ")
9088
9111
  ])),
9089
- _: 1
9112
+ _: 1,
9113
+ __: [8]
9090
9114
  }),
9091
9115
  vue.createVNode(_component_v_col, { md: "9" }, {
9092
9116
  default: vue.withCtx(() => [
@@ -9108,7 +9132,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9108
9132
  default: vue.withCtx(() => _cache[9] || (_cache[9] = [
9109
9133
  vue.createTextVNode(" Authentication Count ")
9110
9134
  ])),
9111
- _: 1
9135
+ _: 1,
9136
+ __: [9]
9112
9137
  }),
9113
9138
  vue.createVNode(_component_v_col, { md: "9" }, {
9114
9139
  default: vue.withCtx(() => [
@@ -9130,7 +9155,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9130
9155
  default: vue.withCtx(() => _cache[10] || (_cache[10] = [
9131
9156
  vue.createTextVNode(" Velocity ")
9132
9157
  ])),
9133
- _: 1
9158
+ _: 1,
9159
+ __: [10]
9134
9160
  }),
9135
9161
  vue.createVNode(_component_v_col, { md: "9" }, {
9136
9162
  default: vue.withCtx(() => [
@@ -9150,7 +9176,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9150
9176
  default: vue.withCtx(() => _cache[11] || (_cache[11] = [
9151
9177
  vue.createTextVNode(" Active Request Count ")
9152
9178
  ])),
9153
- _: 1
9179
+ _: 1,
9180
+ __: [11]
9154
9181
  }),
9155
9182
  vue.createVNode(_component_v_col, { md: "9" }, {
9156
9183
  default: vue.withCtx(() => [
@@ -9171,7 +9198,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9171
9198
  default: vue.withCtx(() => _cache[12] || (_cache[12] = [
9172
9199
  vue.createTextVNode(" Core Count ")
9173
9200
  ])),
9174
- _: 1
9201
+ _: 1,
9202
+ __: [12]
9175
9203
  }),
9176
9204
  vue.createVNode(_component_v_col, { md: "9" }, {
9177
9205
  default: vue.withCtx(() => [
@@ -9191,7 +9219,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9191
9219
  default: vue.withCtx(() => _cache[13] || (_cache[13] = [
9192
9220
  vue.createTextVNode(" TCP Connections ")
9193
9221
  ])),
9194
- _: 1
9222
+ _: 1,
9223
+ __: [13]
9195
9224
  }),
9196
9225
  vue.createVNode(_component_v_col, { md: "9" }, {
9197
9226
  default: vue.withCtx(() => [
@@ -9212,7 +9241,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9212
9241
  default: vue.withCtx(() => _cache[14] || (_cache[14] = [
9213
9242
  vue.createTextVNode(" Connection Pool ")
9214
9243
  ])),
9215
- _: 1
9244
+ _: 1,
9245
+ __: [14]
9216
9246
  }),
9217
9247
  vue.createVNode(_component_v_col, { md: "9" }, {
9218
9248
  default: vue.withCtx(() => [
@@ -9234,7 +9264,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9234
9264
  default: vue.withCtx(() => _cache[15] || (_cache[15] = [
9235
9265
  vue.createTextVNode(" Time ")
9236
9266
  ])),
9237
- _: 1
9267
+ _: 1,
9268
+ __: [15]
9238
9269
  }),
9239
9270
  vue.createVNode(_component_v_col, { md: "9" }, {
9240
9271
  default: vue.withCtx(() => [
@@ -9254,7 +9285,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9254
9285
  default: vue.withCtx(() => _cache[16] || (_cache[16] = [
9255
9286
  vue.createTextVNode(" Logs ")
9256
9287
  ])),
9257
- _: 1
9288
+ _: 1,
9289
+ __: [16]
9258
9290
  }),
9259
9291
  vue.createVNode(_component_v_col, { md: "9" }, {
9260
9292
  default: vue.withCtx(() => [
@@ -9630,7 +9662,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9630
9662
  }, null, 8, ["width", "model-value", "color"])
9631
9663
  ])
9632
9664
  ]),
9633
- _: 1
9665
+ _: 1,
9666
+ __: [1]
9634
9667
  }),
9635
9668
  vue.createVNode(_component_v_col, { cols: "6" }, {
9636
9669
  default: vue.withCtx(() => [
@@ -9647,7 +9680,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9647
9680
  }, null, 8, ["width", "model-value", "color"])
9648
9681
  ])
9649
9682
  ]),
9650
- _: 1
9683
+ _: 1,
9684
+ __: [2]
9651
9685
  })
9652
9686
  ]),
9653
9687
  _: 1
@@ -9671,7 +9705,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9671
9705
  }, null, 8, ["width", "model-value", "color"])
9672
9706
  ])
9673
9707
  ]),
9674
- _: 1
9708
+ _: 1,
9709
+ __: [3]
9675
9710
  }),
9676
9711
  vue.createVNode(_component_v_col, { cols: "6" }, {
9677
9712
  default: vue.withCtx(() => [
@@ -9687,7 +9722,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9687
9722
  }, null, 8, ["width", "model-value", "color"])
9688
9723
  ])
9689
9724
  ]),
9690
- _: 1
9725
+ _: 1,
9726
+ __: [4]
9691
9727
  })
9692
9728
  ]),
9693
9729
  _: 1
@@ -9701,7 +9737,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9701
9737
  default: vue.withCtx(() => _cache[5] || (_cache[5] = [
9702
9738
  vue.createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " Request (c/e/r): ", -1)
9703
9739
  ])),
9704
- _: 1
9740
+ _: 1,
9741
+ __: [5]
9705
9742
  }),
9706
9743
  vue.createVNode(_component_v_col, { cols: "6" }, {
9707
9744
  default: vue.withCtx(() => [
@@ -9718,7 +9755,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9718
9755
  default: vue.withCtx(() => _cache[6] || (_cache[6] = [
9719
9756
  vue.createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " Timer: ", -1)
9720
9757
  ])),
9721
- _: 1
9758
+ _: 1,
9759
+ __: [6]
9722
9760
  }),
9723
9761
  vue.createVNode(_component_v_col, { cols: "6" }, {
9724
9762
  default: vue.withCtx(() => [
@@ -9735,7 +9773,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9735
9773
  default: vue.withCtx(() => _cache[7] || (_cache[7] = [
9736
9774
  vue.createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " Duration (ms): ", -1)
9737
9775
  ])),
9738
- _: 1
9776
+ _: 1,
9777
+ __: [7]
9739
9778
  }),
9740
9779
  vue.createVNode(_component_v_col, { cols: "6" }, {
9741
9780
  default: vue.withCtx(() => [
@@ -9752,7 +9791,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9752
9791
  default: vue.withCtx(() => _cache[8] || (_cache[8] = [
9753
9792
  vue.createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " Latency (ms): ", -1)
9754
9793
  ])),
9755
- _: 1
9794
+ _: 1,
9795
+ __: [8]
9756
9796
  }),
9757
9797
  vue.createVNode(_component_v_col, { cols: "6" }, {
9758
9798
  default: vue.withCtx(() => [
@@ -9769,7 +9809,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9769
9809
  default: vue.withCtx(() => _cache[9] || (_cache[9] = [
9770
9810
  vue.createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " Receive-Rx (MBs): ", -1)
9771
9811
  ])),
9772
- _: 1
9812
+ _: 1,
9813
+ __: [9]
9773
9814
  }),
9774
9815
  vue.createVNode(_component_v_col, { cols: "6" }, {
9775
9816
  default: vue.withCtx(() => [
@@ -9786,7 +9827,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9786
9827
  default: vue.withCtx(() => _cache[10] || (_cache[10] = [
9787
9828
  vue.createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " Transmit-Tx (MBs): ", -1)
9788
9829
  ])),
9789
- _: 1
9830
+ _: 1,
9831
+ __: [10]
9790
9832
  }),
9791
9833
  vue.createVNode(_component_v_col, { cols: "6" }, {
9792
9834
  default: vue.withCtx(() => [
@@ -9803,7 +9845,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9803
9845
  default: vue.withCtx(() => _cache[11] || (_cache[11] = [
9804
9846
  vue.createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " Pool (tot/idle/wait): ", -1)
9805
9847
  ])),
9806
- _: 1
9848
+ _: 1,
9849
+ __: [11]
9807
9850
  }),
9808
9851
  vue.createVNode(_component_v_col, { cols: "6" }, {
9809
9852
  default: vue.withCtx(() => [
@@ -9820,7 +9863,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9820
9863
  default: vue.withCtx(() => _cache[12] || (_cache[12] = [
9821
9864
  vue.createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " vCPU: ", -1)
9822
9865
  ])),
9823
- _: 1
9866
+ _: 1,
9867
+ __: [12]
9824
9868
  }),
9825
9869
  vue.createVNode(_component_v_col, { cols: "6" }, {
9826
9870
  default: vue.withCtx(() => [
@@ -9837,7 +9881,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9837
9881
  default: vue.withCtx(() => _cache[13] || (_cache[13] = [
9838
9882
  vue.createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " Auth (c/e/r): ", -1)
9839
9883
  ])),
9840
- _: 1
9884
+ _: 1,
9885
+ __: [13]
9841
9886
  }),
9842
9887
  vue.createVNode(_component_v_col, { cols: "6" }, {
9843
9888
  default: vue.withCtx(() => [
@@ -9971,14 +10016,14 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9971
10016
  get sockets() {
9972
10017
  return __privateGet2(this, _sockets);
9973
10018
  }
9974
- SetupClientSideSocket(name, address, onConnectCallBack, socketEventsCallBack, errorCallBack) {
10019
+ SetupClientSideSocket(name, address, socketIoCustomPath, onConnectCallBack, socketEventsCallBack, errorCallBack) {
9975
10020
  this.sockets[name] = {
9976
10021
  name,
9977
10022
  address,
9978
10023
  socket: null,
9979
10024
  errorCallBack
9980
10025
  };
9981
- __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, onConnectCallBack, socketEventsCallBack);
10026
+ __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, socketIoCustomPath, onConnectCallBack, socketEventsCallBack);
9982
10027
  return this.sockets[name].socket;
9983
10028
  }
9984
10029
  GetSocket(name) {
@@ -9997,7 +10042,7 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
9997
10042
  LogErrorMessage_fn = function(message) {
9998
10043
  if (__privateGet2(this, _options).logger) __privateGet2(this, _options).logger.error(message);
9999
10044
  };
10000
- EstablishSocketConnect_fn = function(name, onConnectCallBack, socketEventsCallBack) {
10045
+ EstablishSocketConnect_fn = function(name, socketIoCustomPath, onConnectCallBack, socketEventsCallBack) {
10001
10046
  const socketDetail = this.sockets[name];
10002
10047
  if (socketDetail.socket !== null) {
10003
10048
  if (socketDetail.socket.connected === true) {
@@ -10005,9 +10050,9 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
10005
10050
  }
10006
10051
  socketDetail.socket = null;
10007
10052
  if (isNode) {
10008
- setTimeout(() => __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, onConnectCallBack, socketEventsCallBack), 100).unref();
10053
+ setTimeout(() => __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, socketIoCustomPath, onConnectCallBack, socketEventsCallBack), 100).unref();
10009
10054
  } else {
10010
- setTimeout(() => __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, onConnectCallBack, socketEventsCallBack), 100);
10055
+ setTimeout(() => __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, socketIoCustomPath, onConnectCallBack, socketEventsCallBack), 100);
10011
10056
  }
10012
10057
  return;
10013
10058
  }
@@ -10024,10 +10069,28 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
10024
10069
  transports: ["websocket"]
10025
10070
  };
10026
10071
  }
10072
+ if (socketIoCustomPath && socketIoCustomPath.localeCompare("") !== 0) {
10073
+ socketOptions.path = socketIoCustomPath;
10074
+ }
10027
10075
  socketDetail.socket = socket_ioClient.io(socketDetail.address, socketOptions);
10076
+ socketDetail.socket.io.on("error", (err) => {
10077
+ __privateMethod(this, _SocketIoClientHelper_instances, LogErrorMessage_fn).call(this, `SocketIoClientHelper(): socketDetail.socket.io.on('error'): [${err}]`);
10078
+ });
10079
+ socketDetail.socket.io.on("reconnect_error", (err) => {
10080
+ __privateMethod(this, _SocketIoClientHelper_instances, LogErrorMessage_fn).call(this, `SocketIoClientHelper(): socketDetail.socket.io.on('reconnect_error'): [${err}]`);
10081
+ });
10082
+ socketDetail.socket.io.on("reconnect", (attempt) => {
10083
+ __privateMethod(this, _SocketIoClientHelper_instances, LogErrorMessage_fn).call(this, `SocketIoClientHelper(): socketDetail.socket.io.on('reconnect'): Number: [${attempt}]`);
10084
+ });
10085
+ socketDetail.socket.on("connect_error", (err) => {
10086
+ __privateMethod(this, _SocketIoClientHelper_instances, LogErrorMessage_fn).call(this, `SocketIoClientHelper(): socketDetail.socket.on('connect_error'): [${err}]`);
10087
+ });
10088
+ socketDetail.socket.on("connect_timeout", () => {
10089
+ __privateMethod(this, _SocketIoClientHelper_instances, LogErrorMessage_fn).call(this, `SocketIoClientHelper(): socketDetail.socket.on('connect_timeout')`);
10090
+ });
10028
10091
  socketDetail.socket.on("connect", () => {
10029
10092
  if (socketDetail.socket) {
10030
- __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, `Socket: [${socketDetail.socket.id}]: connected`);
10093
+ __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, `SocketIoClientHelper(): Socket: [${socketDetail.socket.id}]: connected`);
10031
10094
  if (onConnectCallBack) {
10032
10095
  setTimeout(() => {
10033
10096
  onConnectCallBack(socketDetail.socket);
@@ -10037,41 +10100,41 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
10037
10100
  socketEventsCallBack(socketDetail.socket);
10038
10101
  }
10039
10102
  } else {
10040
- const errorMessage = "Could not get socket object from socket.io";
10103
+ const errorMessage = "SocketIoClientHelper(): Could not get socket object from socket.io";
10041
10104
  __privateMethod(this, _SocketIoClientHelper_instances, LogErrorMessage_fn).call(this, errorMessage);
10042
10105
  socketDetail.errorCallBack(new Error(errorMessage));
10043
10106
  }
10044
10107
  });
10045
10108
  socketDetail.socket.on("disconnect", (reason) => {
10046
10109
  var _a;
10047
- __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "socket disconnect: " + reason);
10110
+ __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "SocketIoClientHelper(): socket disconnect: " + reason);
10048
10111
  switch (reason) {
10049
10112
  case "io server disconnect":
10050
10113
  {
10051
- __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "The server disconnected using disconnectSockets, i.e. normal safe shutdown from explicit disconnection by the server.");
10052
- __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "The connection will be re-established when the server becomes available.");
10114
+ __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.");
10115
+ __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "SocketIoClientHelper(): The connection will be re-established when the server becomes available.");
10053
10116
  const socketDetail2 = this.sockets[name];
10054
10117
  socketDetail2.socket = null;
10055
10118
  if (isNode) {
10056
10119
  if (__privateGet2(this, _options).agentManager) {
10057
10120
  __privateGet2(this, _options).agentManager.ResetAgent();
10058
10121
  }
10059
- setTimeout(() => __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, onConnectCallBack, socketEventsCallBack), 100).unref();
10122
+ setTimeout(() => __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, socketIoCustomPath, onConnectCallBack, socketEventsCallBack), 100).unref();
10060
10123
  } else {
10061
- setTimeout(() => __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, onConnectCallBack, socketEventsCallBack), 100);
10124
+ setTimeout(() => __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, socketIoCustomPath, onConnectCallBack, socketEventsCallBack), 100);
10062
10125
  }
10063
10126
  }
10064
10127
  break;
10065
10128
  case "io client disconnect":
10066
- __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "The client disconnected using disconnectSockets, i.e. normal safe disconnection from explicit disconnection by the client.");
10067
- __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "The connection will not be re-established automatically.");
10129
+ __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.");
10130
+ __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "SocketIoClientHelper(): The connection will not be re-established automatically.");
10068
10131
  break;
10069
10132
  case "transport close":
10070
10133
  case "ping timeout":
10071
10134
  case "transport error":
10072
10135
  {
10073
- __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, `Server unexpectedly disconnected. Reason: [${reason}]`);
10074
- __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "The connection will be re-established when the server becomes available.");
10136
+ __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, `SocketIoClientHelper(): Server unexpectedly disconnected. Reason: [${reason}]`);
10137
+ __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "SocketIoClientHelper(): The connection will be re-established when the server becomes available.");
10075
10138
  const socketDetail2 = this.sockets[name];
10076
10139
  if (socketDetail2.socket) {
10077
10140
  socketDetail2.socket.disconnect();
@@ -10081,9 +10144,9 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
10081
10144
  if (__privateGet2(this, _options).agentManager) {
10082
10145
  (_a = __privateGet2(this, _options).agentManager) == null ? void 0 : _a.ResetAgent();
10083
10146
  }
10084
- setTimeout(() => __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, onConnectCallBack, socketEventsCallBack), 100).unref();
10147
+ setTimeout(() => __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, socketIoCustomPath, onConnectCallBack, socketEventsCallBack), 100).unref();
10085
10148
  } else {
10086
- setTimeout(() => __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, onConnectCallBack, socketEventsCallBack), 100);
10149
+ setTimeout(() => __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, socketIoCustomPath, onConnectCallBack, socketEventsCallBack), 100);
10087
10150
  }
10088
10151
  }
10089
10152
  break;
@@ -10248,6 +10311,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
10248
10311
  __privateSet(this, _socket, socketUtils.SetupClientSideSocket(
10249
10312
  "STSVueTilsTester",
10250
10313
  `${__privateGet(this, _options2).instrumentManagerEndpoint}:${__privateGet(this, _options2).instrumentManagerPort}/${SOCKET_NAMESPACE}/`,
10314
+ "",
10315
+ // use default /socket.io/ path
10251
10316
  __privateGet(this, _SocketConnect),
10252
10317
  // Connected call back
10253
10318
  __privateGet(this, _ProcessSocketEvents),
@@ -10554,13 +10619,15 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
10554
10619
  default: vue.withCtx(() => _cache[2] || (_cache[2] = [
10555
10620
  vue.createTextVNode(" Summary ")
10556
10621
  ])),
10557
- _: 1
10622
+ _: 1,
10623
+ __: [2]
10558
10624
  }),
10559
10625
  vue.createVNode(_component_v_tab, { value: "detailed" }, {
10560
10626
  default: vue.withCtx(() => _cache[3] || (_cache[3] = [
10561
10627
  vue.createTextVNode(" Detailed ")
10562
10628
  ])),
10563
- _: 1
10629
+ _: 1,
10630
+ __: [3]
10564
10631
  })
10565
10632
  ]),
10566
10633
  _: 1
@@ -10614,7 +10681,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
10614
10681
  icon: "fa-regular fa-house"
10615
10682
  })
10616
10683
  ]),
10617
- _: 1
10684
+ _: 1,
10685
+ __: [4]
10618
10686
  }),
10619
10687
  vue.createVNode(_component_v_btn, {
10620
10688
  class: "ma-1",
@@ -10629,7 +10697,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
10629
10697
  icon: "fa-solid fa-backward-step"
10630
10698
  })
10631
10699
  ]),
10632
- _: 1
10700
+ _: 1,
10701
+ __: [5]
10633
10702
  }, 8, ["disabled"])
10634
10703
  ])
10635
10704
  ]),
@@ -10716,7 +10785,8 @@ var __privateSet = (obj, member, value, setter) => (__accessCheck(obj, member, "
10716
10785
  _cache[0] || (_cache[0] = vue.createElementVNode("div", null, " UXTestForm ", -1)),
10717
10786
  vue.createVNode(_component_v_divider)
10718
10787
  ]),
10719
- _: 1
10788
+ _: 1,
10789
+ __: [0]
10720
10790
  }),
10721
10791
  _ctx.showFormValues ? (vue.openBlock(), vue.createBlock(_component_v_row, { key: 0 }, {
10722
10792
  default: vue.withCtx(() => [