@nsshunt/stsuxvue 1.0.21 → 1.0.23
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 +14 -14
- package/dist/stsuxvue.mjs.map +1 -1
- package/dist/stsuxvue.umd.js +14 -14
- package/dist/stsuxvue.umd.js.map +1 -1
- package/package.json +21 -20
- package/types/Views/LandingView.vue.d.ts.map +1 -1
- package/types/Views/UXModelNavigatorView.vue.d.ts +39 -1
- package/types/Views/UXModelNavigatorView.vue.d.ts.map +1 -1
- package/types/Views/UXModelNavigatorViewSingle.vue.d.ts +21 -1
- package/types/Views/UXModelNavigatorViewSingle.vue.d.ts.map +1 -1
- package/types/components/UXBarChart.vue.d.ts +3 -1
- package/types/components/UXBarChart.vue.d.ts.map +1 -1
- package/types/components/UXLineChart.vue.d.ts +3 -1
- package/types/components/UXLineChart.vue.d.ts.map +1 -1
- package/types/components/UXModelInstrumentAgentCommon.vue.d.ts +20 -11
- package/types/components/UXModelInstrumentAgentCommon.vue.d.ts.map +1 -1
- package/types/components/UXModelInstrumentServiceCommon.vue.d.ts +34 -11
- package/types/components/UXModelInstrumentServiceCommon.vue.d.ts.map +1 -1
- package/types/components/UXModelInstrumentServiceSmall.vue.d.ts +4 -10
- package/types/components/UXModelInstrumentServiceSmall.vue.d.ts.map +1 -1
- package/types/components/UXModelNavigator.vue.d.ts +4 -5
- package/types/components/UXModelNavigator.vue.d.ts.map +1 -1
- package/types/components/UXModelNode.vue.d.ts +4 -7
- package/types/components/UXModelNode.vue.d.ts.map +1 -1
- package/types/components/UXMultiBarChart.vue.d.ts +6 -6
- package/types/components/UXMultiBarChart.vue.d.ts.map +1 -1
- package/types/components/UXRadialChart.vue.d.ts +6 -6
- package/types/components/UXRadialChart.vue.d.ts.map +1 -1
- package/types/components/UXTestForm.vue.d.ts +4 -5
- package/types/components/UXTestForm.vue.d.ts.map +1 -1
- package/types/Views/AppView.vue.d.ts +0 -3
- package/types/Views/AppView.vue.d.ts.map +0 -1
package/dist/stsuxvue.mjs
CHANGED
|
@@ -5787,7 +5787,7 @@ function requireAnsi_to_html() {
|
|
|
5787
5787
|
}
|
|
5788
5788
|
var ansi_to_htmlExports = requireAnsi_to_html();
|
|
5789
5789
|
const Convert = /* @__PURE__ */ getDefaultExportFromCjs(ansi_to_htmlExports);
|
|
5790
|
-
/*! @license DOMPurify 3.2.
|
|
5790
|
+
/*! @license DOMPurify 3.2.3 | (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.3/LICENSE */
|
|
5791
5791
|
const {
|
|
5792
5792
|
entries,
|
|
5793
5793
|
setPrototypeOf,
|
|
@@ -5929,8 +5929,8 @@ const mathMl = freeze(["accent", "accentunder", "align", "bevelled", "close", "c
|
|
|
5929
5929
|
const xml = freeze(["xlink:href", "xml:id", "xlink:title", "xml:space", "xmlns:xlink"]);
|
|
5930
5930
|
const MUSTACHE_EXPR = seal(/\{\{[\w\W]*|[\w\W]*\}\}/gm);
|
|
5931
5931
|
const ERB_EXPR = seal(/<%[\w\W]*|[\w\W]*%>/gm);
|
|
5932
|
-
const TMPLIT_EXPR = seal(
|
|
5933
|
-
const DATA_ATTR = seal(/^data-[\-\w.\u00B7-\uFFFF]
|
|
5932
|
+
const TMPLIT_EXPR = seal(/\$\{[\w\W]*}/gm);
|
|
5933
|
+
const DATA_ATTR = seal(/^data-[\-\w.\u00B7-\uFFFF]+$/);
|
|
5934
5934
|
const ARIA_ATTR = seal(/^aria-[\-\w]+$/);
|
|
5935
5935
|
const IS_ALLOWED_URI = seal(
|
|
5936
5936
|
/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i
|
|
@@ -6016,7 +6016,7 @@ const _createHooksMap = function _createHooksMap2() {
|
|
|
6016
6016
|
function createDOMPurify() {
|
|
6017
6017
|
let window2 = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : getGlobal();
|
|
6018
6018
|
const DOMPurify = (root) => createDOMPurify(root);
|
|
6019
|
-
DOMPurify.version = "3.2.
|
|
6019
|
+
DOMPurify.version = "3.2.3";
|
|
6020
6020
|
DOMPurify.removed = [];
|
|
6021
6021
|
if (!window2 || !window2.document || window2.document.nodeType !== NODE_TYPE.document) {
|
|
6022
6022
|
DOMPurify.isSupported = false;
|
|
@@ -6522,7 +6522,7 @@ function createDOMPurify() {
|
|
|
6522
6522
|
const {
|
|
6523
6523
|
attributes
|
|
6524
6524
|
} = currentNode;
|
|
6525
|
-
if (!attributes) {
|
|
6525
|
+
if (!attributes || _isClobbered(currentNode)) {
|
|
6526
6526
|
return;
|
|
6527
6527
|
}
|
|
6528
6528
|
const hookEvent = {
|
|
@@ -6613,13 +6613,11 @@ function createDOMPurify() {
|
|
|
6613
6613
|
_executeHooks(hooks.beforeSanitizeShadowDOM, fragment, null);
|
|
6614
6614
|
while (shadowNode = shadowIterator.nextNode()) {
|
|
6615
6615
|
_executeHooks(hooks.uponSanitizeShadowNode, shadowNode, null);
|
|
6616
|
-
|
|
6617
|
-
|
|
6618
|
-
}
|
|
6616
|
+
_sanitizeElements(shadowNode);
|
|
6617
|
+
_sanitizeAttributes(shadowNode);
|
|
6619
6618
|
if (shadowNode.content instanceof DocumentFragment) {
|
|
6620
6619
|
_sanitizeShadowDOM2(shadowNode.content);
|
|
6621
6620
|
}
|
|
6622
|
-
_sanitizeAttributes(shadowNode);
|
|
6623
6621
|
}
|
|
6624
6622
|
_executeHooks(hooks.afterSanitizeShadowDOM, fragment, null);
|
|
6625
6623
|
};
|
|
@@ -6685,13 +6683,11 @@ function createDOMPurify() {
|
|
|
6685
6683
|
}
|
|
6686
6684
|
const nodeIterator = _createNodeIterator(IN_PLACE ? dirty : body);
|
|
6687
6685
|
while (currentNode = nodeIterator.nextNode()) {
|
|
6688
|
-
|
|
6689
|
-
|
|
6690
|
-
}
|
|
6686
|
+
_sanitizeElements(currentNode);
|
|
6687
|
+
_sanitizeAttributes(currentNode);
|
|
6691
6688
|
if (currentNode.content instanceof DocumentFragment) {
|
|
6692
6689
|
_sanitizeShadowDOM(currentNode.content);
|
|
6693
6690
|
}
|
|
6694
|
-
_sanitizeAttributes(currentNode);
|
|
6695
6691
|
}
|
|
6696
6692
|
if (IN_PLACE) {
|
|
6697
6693
|
return dirty;
|
|
@@ -9952,11 +9948,15 @@ function rng() {
|
|
|
9952
9948
|
const randomUUID = typeof crypto !== "undefined" && crypto.randomUUID && crypto.randomUUID.bind(crypto);
|
|
9953
9949
|
const native = { randomUUID };
|
|
9954
9950
|
function v4(options, buf, offset) {
|
|
9951
|
+
var _a;
|
|
9955
9952
|
if (native.randomUUID && !buf && !options) {
|
|
9956
9953
|
return native.randomUUID();
|
|
9957
9954
|
}
|
|
9958
9955
|
options = options || {};
|
|
9959
|
-
const rnds = options.random
|
|
9956
|
+
const rnds = options.random ?? ((_a = options.rng) == null ? void 0 : _a.call(options)) ?? rng();
|
|
9957
|
+
if (rnds.length < 16) {
|
|
9958
|
+
throw new Error("Random bytes length must be >= 16");
|
|
9959
|
+
}
|
|
9960
9960
|
rnds[6] = rnds[6] & 15 | 64;
|
|
9961
9961
|
rnds[8] = rnds[8] & 63 | 128;
|
|
9962
9962
|
return unsafeStringify(rnds);
|