@nsshunt/stsvueutils 1.2.2 → 1.2.3
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/stsvueutils.mjs +8 -5
- package/dist/stsvueutils.mjs.map +1 -1
- package/dist/stsvueutils.umd.js +10 -6
- package/dist/stsvueutils.umd.js.map +1 -1
- package/package.json +1 -1
- package/types/components/UXBarChart.vue.d.ts.map +1 -1
- package/types/components/UXLineChart.vue.d.ts.map +1 -1
- package/types/components/UXMultiBarChart.vue.d.ts.map +1 -1
- package/types/components/UXRadialChart.vue.d.ts.map +1 -1
package/dist/stsvueutils.umd.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
(function(global2, factory) {
|
|
2
|
-
typeof exports === "object" && typeof module !== "undefined" ? factory(exports, require("vue"), require("debug"), require("@nsshunt/stsobservability"), require("@nsshunt/stsutils"), require("pinia"), require("
|
|
3
|
-
})(this, function(exports2, vue, debugModule, stsobservability, stsutils, pinia,
|
|
2
|
+
typeof exports === "object" && typeof module !== "undefined" ? factory(exports, require("vue"), require("debug"), require("@nsshunt/stsobservability"), require("@nsshunt/stsutils"), require("pinia"), require("lodash.clonedeep")) : typeof define === "function" && define.amd ? define(["exports", "vue", "debug", "@nsshunt/stsobservability", "@nsshunt/stsutils", "pinia", "lodash.clonedeep"], factory) : (global2 = typeof globalThis !== "undefined" ? globalThis : global2 || self, factory(global2["@nsshunt/stsvueutils"] = {}, global2.Vue, global2.debug, global2.stsobservability, global2.stsutils, global2.pinia, global2.lodash.clonedeep));
|
|
3
|
+
})(this, function(exports2, vue, debugModule, stsobservability, stsutils, pinia, _cloneDeep) {
|
|
4
4
|
"use strict";var __defProp = Object.defineProperty;
|
|
5
5
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
6
6
|
var __publicField = (obj, key, value) => {
|
|
@@ -7301,6 +7301,7 @@ Expected #hex, #hexa, rgb(), rgba(), hsl(), hsla(), object or number`);
|
|
|
7301
7301
|
const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
|
|
7302
7302
|
__name: "UXBarChart",
|
|
7303
7303
|
setup(__props, { expose: __expose }) {
|
|
7304
|
+
const VueApexCharts = () => import("vue3-apexcharts");
|
|
7304
7305
|
const series = [{
|
|
7305
7306
|
name: "Duration (ms)",
|
|
7306
7307
|
data: [0, 0, 0, 0, 0, 0, 0]
|
|
@@ -7366,7 +7367,7 @@ Expected #hex, #hexa, rgb(), rgba(), hsl(), hsla(), object or number`);
|
|
|
7366
7367
|
});
|
|
7367
7368
|
return (_ctx, _cache) => {
|
|
7368
7369
|
return vue.openBlock(), vue.createElementBlock("div", null, [
|
|
7369
|
-
vue.createVNode(
|
|
7370
|
+
vue.createVNode(VueApexCharts, {
|
|
7370
7371
|
ref_key: "barChart",
|
|
7371
7372
|
ref: barChart,
|
|
7372
7373
|
height: "250",
|
|
@@ -7381,6 +7382,7 @@ Expected #hex, #hexa, rgb(), rgba(), hsl(), hsla(), object or number`);
|
|
|
7381
7382
|
const _sfc_main$5 = /* @__PURE__ */ vue.defineComponent({
|
|
7382
7383
|
__name: "UXLineChart",
|
|
7383
7384
|
setup(__props, { expose: __expose }) {
|
|
7385
|
+
const VueApexCharts = () => import("vue3-apexcharts");
|
|
7384
7386
|
let interval = 0;
|
|
7385
7387
|
const series = vue.reactive([{ data: [] }]);
|
|
7386
7388
|
const UpdateGraph = (val) => {
|
|
@@ -7468,7 +7470,7 @@ Expected #hex, #hexa, rgb(), rgba(), hsl(), hsla(), object or number`);
|
|
|
7468
7470
|
});
|
|
7469
7471
|
return (_ctx, _cache) => {
|
|
7470
7472
|
return vue.openBlock(), vue.createElementBlock("div", null, [
|
|
7471
|
-
vue.createVNode(
|
|
7473
|
+
vue.createVNode(VueApexCharts, {
|
|
7472
7474
|
ref: "chart",
|
|
7473
7475
|
height: "250",
|
|
7474
7476
|
width: "100%",
|
|
@@ -7486,6 +7488,7 @@ Expected #hex, #hexa, rgb(), rgba(), hsl(), hsla(), object or number`);
|
|
|
7486
7488
|
labels: {}
|
|
7487
7489
|
},
|
|
7488
7490
|
setup(__props, { expose: __expose }) {
|
|
7491
|
+
const VueApexCharts = () => import("vue3-apexcharts");
|
|
7489
7492
|
const UpdateGraph = () => {
|
|
7490
7493
|
};
|
|
7491
7494
|
const options = {
|
|
@@ -7566,7 +7569,7 @@ Expected #hex, #hexa, rgb(), rgba(), hsl(), hsla(), object or number`);
|
|
|
7566
7569
|
});
|
|
7567
7570
|
return (_ctx, _cache) => {
|
|
7568
7571
|
return vue.openBlock(), vue.createElementBlock("div", null, [
|
|
7569
|
-
vue.createVNode(
|
|
7572
|
+
vue.createVNode(VueApexCharts, {
|
|
7570
7573
|
ref: "chart",
|
|
7571
7574
|
height: "100",
|
|
7572
7575
|
width: "100%",
|
|
@@ -7585,6 +7588,7 @@ Expected #hex, #hexa, rgb(), rgba(), hsl(), hsla(), object or number`);
|
|
|
7585
7588
|
labels: {}
|
|
7586
7589
|
},
|
|
7587
7590
|
setup(__props, { expose: __expose }) {
|
|
7591
|
+
const VueApexCharts = () => import("vue3-apexcharts");
|
|
7588
7592
|
const props = __props;
|
|
7589
7593
|
const UpdateGraph = () => {
|
|
7590
7594
|
};
|
|
@@ -7645,7 +7649,7 @@ Expected #hex, #hexa, rgb(), rgba(), hsl(), hsla(), object or number`);
|
|
|
7645
7649
|
});
|
|
7646
7650
|
return (_ctx, _cache) => {
|
|
7647
7651
|
return vue.openBlock(), vue.createElementBlock("div", null, [
|
|
7648
|
-
vue.createVNode(
|
|
7652
|
+
vue.createVNode(VueApexCharts, {
|
|
7649
7653
|
ref: "chart",
|
|
7650
7654
|
height: "140",
|
|
7651
7655
|
width: "100%",
|