@nsshunt/stsuxvue 1.0.36 → 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
@@ -154,15 +154,7 @@ const ModelStore = defineStore("__sts__ModelStore", {
154
154
  }
155
155
  }
156
156
  });
157
- const URI_BASE_VUEUTILS = "/";
158
- var eIWMessageCommands = /* @__PURE__ */ ((eIWMessageCommands2) => {
159
- eIWMessageCommands2["InstrumentTelemetry"] = "__STS__InstrumentTelemetry";
160
- eIWMessageCommands2["MessagePort"] = "__STS__MessagePort";
161
- eIWMessageCommands2["MessagePortResponse"] = "__STS__MessagePortResponse";
162
- eIWMessageCommands2["AddAsyncRunner"] = "__STS__AddAsyncRunner";
163
- eIWMessageCommands2["StopAllAsyncRunners"] = "__STS__StopAllAsyncRunners";
164
- return eIWMessageCommands2;
165
- })(eIWMessageCommands || {});
157
+ const URI_BASE_STSUXVUE = "/";
166
158
  const _sfc_main$9 = /* @__PURE__ */ defineComponent({
167
159
  __name: "UXBarChart",
168
160
  setup(__props, { expose: __expose }) {
@@ -5787,7 +5779,7 @@ function requireAnsi_to_html() {
5787
5779
  }
5788
5780
  var ansi_to_htmlExports = requireAnsi_to_html();
5789
5781
  const Convert = /* @__PURE__ */ getDefaultExportFromCjs(ansi_to_htmlExports);
5790
- /*! @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 */
5791
5783
  const {
5792
5784
  entries,
5793
5785
  setPrototypeOf,
@@ -5938,7 +5930,7 @@ const TMPLIT_EXPR = seal(/\$\{[\w\W]*/gm);
5938
5930
  const DATA_ATTR = seal(/^data-[\-\w.\u00B7-\uFFFF]+$/);
5939
5931
  const ARIA_ATTR = seal(/^aria-[\-\w]+$/);
5940
5932
  const IS_ALLOWED_URI = seal(
5941
- /^(?:(?:(?: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
5942
5934
  // eslint-disable-line no-useless-escape
5943
5935
  );
5944
5936
  const IS_SCRIPT_OR_DATA = seal(/^(?:\w+script|data):/i);
@@ -6012,7 +6004,7 @@ const _createHooksMap = function _createHooksMap2() {
6012
6004
  function createDOMPurify() {
6013
6005
  let window2 = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : getGlobal();
6014
6006
  const DOMPurify = (root) => createDOMPurify(root);
6015
- DOMPurify.version = "3.2.5";
6007
+ DOMPurify.version = "3.2.6";
6016
6008
  DOMPurify.removed = [];
6017
6009
  if (!window2 || !window2.document || window2.document.nodeType !== NODE_TYPE.document || !window2.Element) {
6018
6010
  DOMPurify.isSupported = false;
@@ -6159,8 +6151,8 @@ function createDOMPurify() {
6159
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;
6160
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;
6161
6153
  FORBID_CONTENTS = objectHasOwnProperty(cfg, "FORBID_CONTENTS") ? addToSet({}, cfg.FORBID_CONTENTS, transformCaseFunc) : DEFAULT_FORBID_CONTENTS;
6162
- FORBID_TAGS = objectHasOwnProperty(cfg, "FORBID_TAGS") ? addToSet({}, cfg.FORBID_TAGS, transformCaseFunc) : {};
6163
- 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({});
6164
6156
  USE_PROFILES = objectHasOwnProperty(cfg, "USE_PROFILES") ? cfg.USE_PROFILES : false;
6165
6157
  ALLOW_ARIA_ATTR = cfg.ALLOW_ARIA_ATTR !== false;
6166
6158
  ALLOW_DATA_ATTR = cfg.ALLOW_DATA_ATTR !== false;
@@ -6424,7 +6416,7 @@ function createDOMPurify() {
6424
6416
  tagName,
6425
6417
  allowedTags: ALLOWED_TAGS
6426
6418
  });
6427
- 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)) {
6428
6420
  _forceRemove(currentNode);
6429
6421
  return true;
6430
6422
  }
@@ -6537,7 +6529,8 @@ function createDOMPurify() {
6537
6529
  value: attrValue
6538
6530
  } = attr;
6539
6531
  const lcName = transformCaseFunc(name);
6540
- let value = name === "value" ? attrValue : stringTrim(attrValue);
6532
+ const initValue = attrValue;
6533
+ let value = name === "value" ? initValue : stringTrim(initValue);
6541
6534
  hookEvent.attrName = lcName;
6542
6535
  hookEvent.attrValue = value;
6543
6536
  hookEvent.keepAttr = true;
@@ -6555,8 +6548,8 @@ function createDOMPurify() {
6555
6548
  if (hookEvent.forceKeepAttr) {
6556
6549
  continue;
6557
6550
  }
6558
- _removeAttribute(name, currentNode);
6559
6551
  if (!hookEvent.keepAttr) {
6552
+ _removeAttribute(name, currentNode);
6560
6553
  continue;
6561
6554
  }
6562
6555
  if (!ALLOW_SELF_CLOSE_IN_ATTR && regExpTest(/\/>/i, value)) {
@@ -6570,6 +6563,7 @@ function createDOMPurify() {
6570
6563
  }
6571
6564
  const lcTag = transformCaseFunc(currentNode.nodeName);
6572
6565
  if (!_isValidAttribute(lcTag, lcName, value)) {
6566
+ _removeAttribute(name, currentNode);
6573
6567
  continue;
6574
6568
  }
6575
6569
  if (trustedTypesPolicy && typeof trustedTypes === "object" && typeof trustedTypes.getAttributeType === "function") {
@@ -6587,18 +6581,21 @@ function createDOMPurify() {
6587
6581
  }
6588
6582
  }
6589
6583
  }
6590
- try {
6591
- if (namespaceURI) {
6592
- currentNode.setAttributeNS(namespaceURI, name, value);
6593
- } else {
6594
- currentNode.setAttribute(name, value);
6595
- }
6596
- if (_isClobbered(currentNode)) {
6597
- _forceRemove(currentNode);
6598
- } else {
6599
- 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);
6600
6598
  }
6601
- } catch (_) {
6602
6599
  }
6603
6600
  }
6604
6601
  _executeHooks(hooks.afterSanitizeAttributes, currentNode, null);
@@ -6939,7 +6936,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
6939
6936
  default: withCtx(() => _cache[1] || (_cache[1] = [
6940
6937
  createTextVNode(" Duration ")
6941
6938
  ])),
6942
- _: 1
6939
+ _: 1,
6940
+ __: [1]
6943
6941
  }),
6944
6942
  createVNode(_component_v_col, { md: "10" }, {
6945
6943
  default: withCtx(() => [
@@ -6957,7 +6955,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
6957
6955
  default: withCtx(() => _cache[2] || (_cache[2] = [
6958
6956
  createTextVNode(" Duration Histo ")
6959
6957
  ])),
6960
- _: 1
6958
+ _: 1,
6959
+ __: [2]
6961
6960
  }),
6962
6961
  createVNode(_component_v_col, { md: "10" }, {
6963
6962
  default: withCtx(() => [
@@ -6981,7 +6980,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
6981
6980
  default: withCtx(() => _cache[3] || (_cache[3] = [
6982
6981
  createTextVNode(" Latency ")
6983
6982
  ])),
6984
- _: 1
6983
+ _: 1,
6984
+ __: [3]
6985
6985
  }),
6986
6986
  createVNode(_component_v_col, { md: "10" }, {
6987
6987
  default: withCtx(() => [
@@ -6999,7 +6999,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
6999
6999
  default: withCtx(() => _cache[4] || (_cache[4] = [
7000
7000
  createTextVNode(" Latency Histo ")
7001
7001
  ])),
7002
- _: 1
7002
+ _: 1,
7003
+ __: [4]
7003
7004
  }),
7004
7005
  createVNode(_component_v_col, { md: "10" }, {
7005
7006
  default: withCtx(() => [
@@ -7039,7 +7040,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
7039
7040
  default: withCtx(() => _cache[5] || (_cache[5] = [
7040
7041
  createTextVNode(" Request Count ")
7041
7042
  ])),
7042
- _: 1
7043
+ _: 1,
7044
+ __: [5]
7043
7045
  }),
7044
7046
  createVNode(_component_v_col, { md: "10" }, {
7045
7047
  default: withCtx(() => [
@@ -7058,7 +7060,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
7058
7060
  default: withCtx(() => _cache[6] || (_cache[6] = [
7059
7061
  createTextVNode(" Authentication Count ")
7060
7062
  ])),
7061
- _: 1
7063
+ _: 1,
7064
+ __: [6]
7062
7065
  }),
7063
7066
  createVNode(_component_v_col, { md: "10" }, {
7064
7067
  default: withCtx(() => [
@@ -7077,7 +7080,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
7077
7080
  default: withCtx(() => _cache[7] || (_cache[7] = [
7078
7081
  createTextVNode(" Velocity ")
7079
7082
  ])),
7080
- _: 1
7083
+ _: 1,
7084
+ __: [7]
7081
7085
  }),
7082
7086
  createVNode(_component_v_col, { md: "10" }, {
7083
7087
  default: withCtx(() => [
@@ -7099,7 +7103,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
7099
7103
  default: withCtx(() => _cache[8] || (_cache[8] = [
7100
7104
  createTextVNode(" Active Request Count ")
7101
7105
  ])),
7102
- _: 1
7106
+ _: 1,
7107
+ __: [8]
7103
7108
  }),
7104
7109
  createVNode(_component_v_col, { md: "10" }, {
7105
7110
  default: withCtx(() => [
@@ -7117,7 +7122,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
7117
7122
  default: withCtx(() => _cache[9] || (_cache[9] = [
7118
7123
  createTextVNode(" Core Count ")
7119
7124
  ])),
7120
- _: 1
7125
+ _: 1,
7126
+ __: [9]
7121
7127
  }),
7122
7128
  createVNode(_component_v_col, { md: "10" }, {
7123
7129
  default: withCtx(() => [
@@ -7134,7 +7140,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
7134
7140
  default: withCtx(() => _cache[10] || (_cache[10] = [
7135
7141
  createTextVNode(" Time ")
7136
7142
  ])),
7137
- _: 1
7143
+ _: 1,
7144
+ __: [10]
7138
7145
  }),
7139
7146
  createVNode(_component_v_col, { md: "10" }, {
7140
7147
  default: withCtx(() => [
@@ -7151,7 +7158,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
7151
7158
  default: withCtx(() => _cache[11] || (_cache[11] = [
7152
7159
  createTextVNode(" Logs ")
7153
7160
  ])),
7154
- _: 1
7161
+ _: 1,
7162
+ __: [11]
7155
7163
  }),
7156
7164
  createVNode(_component_v_col, { md: "10" }, {
7157
7165
  default: withCtx(() => [
@@ -8872,7 +8880,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
8872
8880
  default: withCtx(() => _cache[1] || (_cache[1] = [
8873
8881
  createTextVNode(" CPU ")
8874
8882
  ])),
8875
- _: 1
8883
+ _: 1,
8884
+ __: [1]
8876
8885
  }),
8877
8886
  createVNode(_component_v_col, { cols: "10" }, {
8878
8887
  default: withCtx(() => [
@@ -8924,7 +8933,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
8924
8933
  default: withCtx(() => _cache[2] || (_cache[2] = [
8925
8934
  createTextVNode(" Duration ")
8926
8935
  ])),
8927
- _: 1
8936
+ _: 1,
8937
+ __: [2]
8928
8938
  }),
8929
8939
  createVNode(_component_v_col, { cols: "10" }, {
8930
8940
  default: withCtx(() => [
@@ -8952,7 +8962,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
8952
8962
  default: withCtx(() => _cache[3] || (_cache[3] = [
8953
8963
  createTextVNode(" Duration Histo ")
8954
8964
  ])),
8955
- _: 1
8965
+ _: 1,
8966
+ __: [3]
8956
8967
  }),
8957
8968
  createVNode(_component_v_col, { cols: "10" }, {
8958
8969
  default: withCtx(() => [
@@ -8979,7 +8990,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
8979
8990
  default: withCtx(() => _cache[4] || (_cache[4] = [
8980
8991
  createTextVNode(" Latency ")
8981
8992
  ])),
8982
- _: 1
8993
+ _: 1,
8994
+ __: [4]
8983
8995
  }),
8984
8996
  createVNode(_component_v_col, { md: "10" }, {
8985
8997
  default: withCtx(() => [
@@ -9007,7 +9019,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
9007
9019
  default: withCtx(() => _cache[5] || (_cache[5] = [
9008
9020
  createTextVNode(" Latency Histo ")
9009
9021
  ])),
9010
- _: 1
9022
+ _: 1,
9023
+ __: [5]
9011
9024
  }),
9012
9025
  createVNode(_component_v_col, { md: "10" }, {
9013
9026
  default: withCtx(() => [
@@ -9056,7 +9069,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
9056
9069
  default: withCtx(() => _cache[6] || (_cache[6] = [
9057
9070
  createTextVNode(" Rx (MB/s) ")
9058
9071
  ])),
9059
- _: 1
9072
+ _: 1,
9073
+ __: [6]
9060
9074
  }),
9061
9075
  createVNode(_component_v_col, { md: "9" }, {
9062
9076
  default: withCtx(() => [
@@ -9076,7 +9090,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
9076
9090
  default: withCtx(() => _cache[7] || (_cache[7] = [
9077
9091
  createTextVNode(" Tx (MB/s) ")
9078
9092
  ])),
9079
- _: 1
9093
+ _: 1,
9094
+ __: [7]
9080
9095
  }),
9081
9096
  createVNode(_component_v_col, { md: "9" }, {
9082
9097
  default: withCtx(() => [
@@ -9096,7 +9111,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
9096
9111
  default: withCtx(() => _cache[8] || (_cache[8] = [
9097
9112
  createTextVNode(" Request Count ")
9098
9113
  ])),
9099
- _: 1
9114
+ _: 1,
9115
+ __: [8]
9100
9116
  }),
9101
9117
  createVNode(_component_v_col, { md: "9" }, {
9102
9118
  default: withCtx(() => [
@@ -9118,7 +9134,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
9118
9134
  default: withCtx(() => _cache[9] || (_cache[9] = [
9119
9135
  createTextVNode(" Authentication Count ")
9120
9136
  ])),
9121
- _: 1
9137
+ _: 1,
9138
+ __: [9]
9122
9139
  }),
9123
9140
  createVNode(_component_v_col, { md: "9" }, {
9124
9141
  default: withCtx(() => [
@@ -9140,7 +9157,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
9140
9157
  default: withCtx(() => _cache[10] || (_cache[10] = [
9141
9158
  createTextVNode(" Velocity ")
9142
9159
  ])),
9143
- _: 1
9160
+ _: 1,
9161
+ __: [10]
9144
9162
  }),
9145
9163
  createVNode(_component_v_col, { md: "9" }, {
9146
9164
  default: withCtx(() => [
@@ -9160,7 +9178,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
9160
9178
  default: withCtx(() => _cache[11] || (_cache[11] = [
9161
9179
  createTextVNode(" Active Request Count ")
9162
9180
  ])),
9163
- _: 1
9181
+ _: 1,
9182
+ __: [11]
9164
9183
  }),
9165
9184
  createVNode(_component_v_col, { md: "9" }, {
9166
9185
  default: withCtx(() => [
@@ -9181,7 +9200,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
9181
9200
  default: withCtx(() => _cache[12] || (_cache[12] = [
9182
9201
  createTextVNode(" Core Count ")
9183
9202
  ])),
9184
- _: 1
9203
+ _: 1,
9204
+ __: [12]
9185
9205
  }),
9186
9206
  createVNode(_component_v_col, { md: "9" }, {
9187
9207
  default: withCtx(() => [
@@ -9201,7 +9221,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
9201
9221
  default: withCtx(() => _cache[13] || (_cache[13] = [
9202
9222
  createTextVNode(" TCP Connections ")
9203
9223
  ])),
9204
- _: 1
9224
+ _: 1,
9225
+ __: [13]
9205
9226
  }),
9206
9227
  createVNode(_component_v_col, { md: "9" }, {
9207
9228
  default: withCtx(() => [
@@ -9222,7 +9243,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
9222
9243
  default: withCtx(() => _cache[14] || (_cache[14] = [
9223
9244
  createTextVNode(" Connection Pool ")
9224
9245
  ])),
9225
- _: 1
9246
+ _: 1,
9247
+ __: [14]
9226
9248
  }),
9227
9249
  createVNode(_component_v_col, { md: "9" }, {
9228
9250
  default: withCtx(() => [
@@ -9244,7 +9266,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
9244
9266
  default: withCtx(() => _cache[15] || (_cache[15] = [
9245
9267
  createTextVNode(" Time ")
9246
9268
  ])),
9247
- _: 1
9269
+ _: 1,
9270
+ __: [15]
9248
9271
  }),
9249
9272
  createVNode(_component_v_col, { md: "9" }, {
9250
9273
  default: withCtx(() => [
@@ -9264,7 +9287,8 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
9264
9287
  default: withCtx(() => _cache[16] || (_cache[16] = [
9265
9288
  createTextVNode(" Logs ")
9266
9289
  ])),
9267
- _: 1
9290
+ _: 1,
9291
+ __: [16]
9268
9292
  }),
9269
9293
  createVNode(_component_v_col, { md: "9" }, {
9270
9294
  default: withCtx(() => [
@@ -9640,7 +9664,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9640
9664
  }, null, 8, ["width", "model-value", "color"])
9641
9665
  ])
9642
9666
  ]),
9643
- _: 1
9667
+ _: 1,
9668
+ __: [1]
9644
9669
  }),
9645
9670
  createVNode(_component_v_col, { cols: "6" }, {
9646
9671
  default: withCtx(() => [
@@ -9657,7 +9682,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9657
9682
  }, null, 8, ["width", "model-value", "color"])
9658
9683
  ])
9659
9684
  ]),
9660
- _: 1
9685
+ _: 1,
9686
+ __: [2]
9661
9687
  })
9662
9688
  ]),
9663
9689
  _: 1
@@ -9681,7 +9707,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9681
9707
  }, null, 8, ["width", "model-value", "color"])
9682
9708
  ])
9683
9709
  ]),
9684
- _: 1
9710
+ _: 1,
9711
+ __: [3]
9685
9712
  }),
9686
9713
  createVNode(_component_v_col, { cols: "6" }, {
9687
9714
  default: withCtx(() => [
@@ -9697,7 +9724,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9697
9724
  }, null, 8, ["width", "model-value", "color"])
9698
9725
  ])
9699
9726
  ]),
9700
- _: 1
9727
+ _: 1,
9728
+ __: [4]
9701
9729
  })
9702
9730
  ]),
9703
9731
  _: 1
@@ -9711,7 +9739,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9711
9739
  default: withCtx(() => _cache[5] || (_cache[5] = [
9712
9740
  createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " Request (c/e/r): ", -1)
9713
9741
  ])),
9714
- _: 1
9742
+ _: 1,
9743
+ __: [5]
9715
9744
  }),
9716
9745
  createVNode(_component_v_col, { cols: "6" }, {
9717
9746
  default: withCtx(() => [
@@ -9728,7 +9757,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9728
9757
  default: withCtx(() => _cache[6] || (_cache[6] = [
9729
9758
  createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " Timer: ", -1)
9730
9759
  ])),
9731
- _: 1
9760
+ _: 1,
9761
+ __: [6]
9732
9762
  }),
9733
9763
  createVNode(_component_v_col, { cols: "6" }, {
9734
9764
  default: withCtx(() => [
@@ -9745,7 +9775,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9745
9775
  default: withCtx(() => _cache[7] || (_cache[7] = [
9746
9776
  createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " Duration (ms): ", -1)
9747
9777
  ])),
9748
- _: 1
9778
+ _: 1,
9779
+ __: [7]
9749
9780
  }),
9750
9781
  createVNode(_component_v_col, { cols: "6" }, {
9751
9782
  default: withCtx(() => [
@@ -9762,7 +9793,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9762
9793
  default: withCtx(() => _cache[8] || (_cache[8] = [
9763
9794
  createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " Latency (ms): ", -1)
9764
9795
  ])),
9765
- _: 1
9796
+ _: 1,
9797
+ __: [8]
9766
9798
  }),
9767
9799
  createVNode(_component_v_col, { cols: "6" }, {
9768
9800
  default: withCtx(() => [
@@ -9779,7 +9811,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9779
9811
  default: withCtx(() => _cache[9] || (_cache[9] = [
9780
9812
  createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " Receive-Rx (MBs): ", -1)
9781
9813
  ])),
9782
- _: 1
9814
+ _: 1,
9815
+ __: [9]
9783
9816
  }),
9784
9817
  createVNode(_component_v_col, { cols: "6" }, {
9785
9818
  default: withCtx(() => [
@@ -9796,7 +9829,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9796
9829
  default: withCtx(() => _cache[10] || (_cache[10] = [
9797
9830
  createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " Transmit-Tx (MBs): ", -1)
9798
9831
  ])),
9799
- _: 1
9832
+ _: 1,
9833
+ __: [10]
9800
9834
  }),
9801
9835
  createVNode(_component_v_col, { cols: "6" }, {
9802
9836
  default: withCtx(() => [
@@ -9813,7 +9847,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9813
9847
  default: withCtx(() => _cache[11] || (_cache[11] = [
9814
9848
  createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " Pool (tot/idle/wait): ", -1)
9815
9849
  ])),
9816
- _: 1
9850
+ _: 1,
9851
+ __: [11]
9817
9852
  }),
9818
9853
  createVNode(_component_v_col, { cols: "6" }, {
9819
9854
  default: withCtx(() => [
@@ -9830,7 +9865,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9830
9865
  default: withCtx(() => _cache[12] || (_cache[12] = [
9831
9866
  createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " vCPU: ", -1)
9832
9867
  ])),
9833
- _: 1
9868
+ _: 1,
9869
+ __: [12]
9834
9870
  }),
9835
9871
  createVNode(_component_v_col, { cols: "6" }, {
9836
9872
  default: withCtx(() => [
@@ -9847,7 +9883,8 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
9847
9883
  default: withCtx(() => _cache[13] || (_cache[13] = [
9848
9884
  createElementVNode("div", { style: { "white-space": "nowrap", "text-align": "right" } }, " Auth (c/e/r): ", -1)
9849
9885
  ])),
9850
- _: 1
9886
+ _: 1,
9887
+ __: [13]
9851
9888
  }),
9852
9889
  createVNode(_component_v_col, { cols: "6" }, {
9853
9890
  default: withCtx(() => [
@@ -9981,14 +10018,14 @@ class SocketIoClientHelper {
9981
10018
  get sockets() {
9982
10019
  return __privateGet2(this, _sockets);
9983
10020
  }
9984
- SetupClientSideSocket(name, address, onConnectCallBack, socketEventsCallBack, errorCallBack) {
10021
+ SetupClientSideSocket(name, address, socketIoCustomPath, onConnectCallBack, socketEventsCallBack, errorCallBack) {
9985
10022
  this.sockets[name] = {
9986
10023
  name,
9987
10024
  address,
9988
10025
  socket: null,
9989
10026
  errorCallBack
9990
10027
  };
9991
- __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, onConnectCallBack, socketEventsCallBack);
10028
+ __privateMethod(this, _SocketIoClientHelper_instances, EstablishSocketConnect_fn).call(this, name, socketIoCustomPath, onConnectCallBack, socketEventsCallBack);
9992
10029
  return this.sockets[name].socket;
9993
10030
  }
9994
10031
  GetSocket(name) {
@@ -10007,7 +10044,7 @@ LogDebugMessage_fn = function(message) {
10007
10044
  LogErrorMessage_fn = function(message) {
10008
10045
  if (__privateGet2(this, _options).logger) __privateGet2(this, _options).logger.error(message);
10009
10046
  };
10010
- EstablishSocketConnect_fn = function(name, onConnectCallBack, socketEventsCallBack) {
10047
+ EstablishSocketConnect_fn = function(name, socketIoCustomPath, onConnectCallBack, socketEventsCallBack) {
10011
10048
  const socketDetail = this.sockets[name];
10012
10049
  if (socketDetail.socket !== null) {
10013
10050
  if (socketDetail.socket.connected === true) {
@@ -10015,9 +10052,9 @@ EstablishSocketConnect_fn = function(name, onConnectCallBack, socketEventsCallBa
10015
10052
  }
10016
10053
  socketDetail.socket = null;
10017
10054
  if (isNode) {
10018
- 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();
10019
10056
  } else {
10020
- 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);
10021
10058
  }
10022
10059
  return;
10023
10060
  }
@@ -10034,10 +10071,28 @@ EstablishSocketConnect_fn = function(name, onConnectCallBack, socketEventsCallBa
10034
10071
  transports: ["websocket"]
10035
10072
  };
10036
10073
  }
10074
+ if (socketIoCustomPath && socketIoCustomPath.localeCompare("") !== 0) {
10075
+ socketOptions.path = socketIoCustomPath;
10076
+ }
10037
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
+ });
10038
10093
  socketDetail.socket.on("connect", () => {
10039
10094
  if (socketDetail.socket) {
10040
- __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`);
10041
10096
  if (onConnectCallBack) {
10042
10097
  setTimeout(() => {
10043
10098
  onConnectCallBack(socketDetail.socket);
@@ -10047,41 +10102,41 @@ EstablishSocketConnect_fn = function(name, onConnectCallBack, socketEventsCallBa
10047
10102
  socketEventsCallBack(socketDetail.socket);
10048
10103
  }
10049
10104
  } else {
10050
- const errorMessage = "Could not get socket object from socket.io";
10105
+ const errorMessage = "SocketIoClientHelper(): Could not get socket object from socket.io";
10051
10106
  __privateMethod(this, _SocketIoClientHelper_instances, LogErrorMessage_fn).call(this, errorMessage);
10052
10107
  socketDetail.errorCallBack(new Error(errorMessage));
10053
10108
  }
10054
10109
  });
10055
10110
  socketDetail.socket.on("disconnect", (reason) => {
10056
10111
  var _a;
10057
- __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "socket disconnect: " + reason);
10112
+ __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "SocketIoClientHelper(): socket disconnect: " + reason);
10058
10113
  switch (reason) {
10059
10114
  case "io server disconnect":
10060
10115
  {
10061
- __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "The server disconnected using disconnectSockets, i.e. normal safe shutdown from explicit disconnection by the server.");
10062
- __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.");
10063
10118
  const socketDetail2 = this.sockets[name];
10064
10119
  socketDetail2.socket = null;
10065
10120
  if (isNode) {
10066
10121
  if (__privateGet2(this, _options).agentManager) {
10067
10122
  __privateGet2(this, _options).agentManager.ResetAgent();
10068
10123
  }
10069
- 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();
10070
10125
  } else {
10071
- 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);
10072
10127
  }
10073
10128
  }
10074
10129
  break;
10075
10130
  case "io client disconnect":
10076
- __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, "The client disconnected using disconnectSockets, i.e. normal safe disconnection from explicit disconnection by the client.");
10077
- __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.");
10078
10133
  break;
10079
10134
  case "transport close":
10080
10135
  case "ping timeout":
10081
10136
  case "transport error":
10082
10137
  {
10083
- __privateMethod(this, _SocketIoClientHelper_instances, LogDebugMessage_fn).call(this, `Server unexpectedly disconnected. Reason: [${reason}]`);
10084
- __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.");
10085
10140
  const socketDetail2 = this.sockets[name];
10086
10141
  if (socketDetail2.socket) {
10087
10142
  socketDetail2.socket.disconnect();
@@ -10091,9 +10146,9 @@ EstablishSocketConnect_fn = function(name, onConnectCallBack, socketEventsCallBa
10091
10146
  if (__privateGet2(this, _options).agentManager) {
10092
10147
  (_a = __privateGet2(this, _options).agentManager) == null ? void 0 : _a.ResetAgent();
10093
10148
  }
10094
- 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();
10095
10150
  } else {
10096
- 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);
10097
10152
  }
10098
10153
  }
10099
10154
  break;
@@ -10258,6 +10313,8 @@ class ObservabilitySubscriberManager {
10258
10313
  __privateSet(this, _socket, socketUtils.SetupClientSideSocket(
10259
10314
  "STSVueTilsTester",
10260
10315
  `${__privateGet(this, _options2).instrumentManagerEndpoint}:${__privateGet(this, _options2).instrumentManagerPort}/${SOCKET_NAMESPACE}/`,
10316
+ "",
10317
+ // use default /socket.io/ path
10261
10318
  __privateGet(this, _SocketConnect),
10262
10319
  // Connected call back
10263
10320
  __privateGet(this, _ProcessSocketEvents),
@@ -10564,13 +10621,15 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
10564
10621
  default: withCtx(() => _cache[2] || (_cache[2] = [
10565
10622
  createTextVNode(" Summary ")
10566
10623
  ])),
10567
- _: 1
10624
+ _: 1,
10625
+ __: [2]
10568
10626
  }),
10569
10627
  createVNode(_component_v_tab, { value: "detailed" }, {
10570
10628
  default: withCtx(() => _cache[3] || (_cache[3] = [
10571
10629
  createTextVNode(" Detailed ")
10572
10630
  ])),
10573
- _: 1
10631
+ _: 1,
10632
+ __: [3]
10574
10633
  })
10575
10634
  ]),
10576
10635
  _: 1
@@ -10624,7 +10683,8 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
10624
10683
  icon: "fa-regular fa-house"
10625
10684
  })
10626
10685
  ]),
10627
- _: 1
10686
+ _: 1,
10687
+ __: [4]
10628
10688
  }),
10629
10689
  createVNode(_component_v_btn, {
10630
10690
  class: "ma-1",
@@ -10639,7 +10699,8 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
10639
10699
  icon: "fa-solid fa-backward-step"
10640
10700
  })
10641
10701
  ]),
10642
- _: 1
10702
+ _: 1,
10703
+ __: [5]
10643
10704
  }, 8, ["disabled"])
10644
10705
  ])
10645
10706
  ]),
@@ -10726,7 +10787,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
10726
10787
  _cache[0] || (_cache[0] = createElementVNode("div", null, " UXTestForm ", -1)),
10727
10788
  createVNode(_component_v_divider)
10728
10789
  ]),
10729
- _: 1
10790
+ _: 1,
10791
+ __: [0]
10730
10792
  }),
10731
10793
  _ctx.showFormValues ? (openBlock(), createBlock(_component_v_row, { key: 0 }, {
10732
10794
  default: withCtx(() => [
@@ -10877,7 +10939,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
10877
10939
  });
10878
10940
  export {
10879
10941
  ModelStore,
10880
- URI_BASE_VUEUTILS,
10942
+ URI_BASE_STSUXVUE,
10881
10943
  _sfc_main$9 as UXBarChart,
10882
10944
  _sfc_main$8 as UXLineChart,
10883
10945
  UXModelInstrumentAgentCommon,
@@ -10888,7 +10950,6 @@ export {
10888
10950
  _sfc_main$7 as UXMultiBarChart,
10889
10951
  _sfc_main$6 as UXRadialChart,
10890
10952
  _sfc_main as UXTestForm,
10891
- _estate,
10892
- eIWMessageCommands
10953
+ _estate
10893
10954
  };
10894
10955
  //# sourceMappingURL=stsuxvue.mjs.map