inl-ui 0.1.54 → 0.1.56
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/components/index.cjs +9 -2
- package/dist/components/index.js +9 -2
- package/dist/index.cjs +10 -3
- package/dist/index.d.ts +1 -1
- package/dist/index.js +10 -3
- package/dist/video/index.cjs +6 -1
- package/dist/video/index.js +6 -1
- package/package.json +2 -2
|
@@ -9666,7 +9666,9 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
9666
9666
|
newDiv.style.top = mousedownEvent.offsetY + begin.top + "px";
|
|
9667
9667
|
boxDom.appendChild(newDiv);
|
|
9668
9668
|
const thumbnailDom = document.getElementById("thumbnail_" + uuid.value);
|
|
9669
|
+
const footerDom = document.getElementById("footer_" + uuid.value);
|
|
9669
9670
|
thumbnailDom.style.display = "none";
|
|
9671
|
+
footerDom.style.display = "none";
|
|
9670
9672
|
playerDom?.addEventListener("mousemove", mousemoveFun);
|
|
9671
9673
|
};
|
|
9672
9674
|
const mouseupFun = mouseupEvent => {
|
|
@@ -9676,7 +9678,9 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
9676
9678
|
playerDom?.removeEventListener("mousemove", mousemoveFun);
|
|
9677
9679
|
newDiv.remove();
|
|
9678
9680
|
const thumbnailDom = document.getElementById("thumbnail_" + uuid.value);
|
|
9681
|
+
const footerDom = document.getElementById("footer_" + uuid.value);
|
|
9679
9682
|
thumbnailDom.style.display = "inline";
|
|
9683
|
+
footerDom.style.display = "flex";
|
|
9680
9684
|
const scaleX = Math.abs(mousemoveEvent.pageX - mousedownEvent.pageX) / boxDom.offsetWidth;
|
|
9681
9685
|
const scaleY = Math.abs(mousemoveEvent.pageY - mousedownEvent.pageY) / boxDom.offsetHeight;
|
|
9682
9686
|
const playerLeft = Math.min(mousedownEvent.offsetX, mousemoveEvent.offsetX) * -1 / scaleX;
|
|
@@ -9812,7 +9816,8 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
9812
9816
|
"class": "value"
|
|
9813
9817
|
}, [info.displayValue && info.displayValue !== "null" ? info.displayValue + " " : ""]), vue.createVNode("div", null, [info.unit])]);
|
|
9814
9818
|
})]) : "", vue.createVNode("div", {
|
|
9815
|
-
"class": "footer-min"
|
|
9819
|
+
"class": "footer-min",
|
|
9820
|
+
"id": "footer_" + uuid.value
|
|
9816
9821
|
}, [vue.createVNode("div", {
|
|
9817
9822
|
"class": "name-min"
|
|
9818
9823
|
}, [vue.createVNode("span", null, [camera.value?.name])]), vue.createVNode("div", {
|
|
@@ -12319,7 +12324,9 @@ async function getParamsDefine({
|
|
|
12319
12324
|
const filterList = (data.paramDefineValueVoList ?? []).filter(item => item.paramDefine && item.paramDefine.valid && item.paramDefine.showed).map(item => ({
|
|
12320
12325
|
...item,
|
|
12321
12326
|
paramDefineValue: item.paramDefineValue || {
|
|
12322
|
-
value: null
|
|
12327
|
+
value: null,
|
|
12328
|
+
defineId: item.paramDefine.id,
|
|
12329
|
+
defineCode: item.paramDefine.code
|
|
12323
12330
|
}
|
|
12324
12331
|
}));
|
|
12325
12332
|
const res = [];
|
package/dist/components/index.js
CHANGED
|
@@ -9638,7 +9638,9 @@ const VideoBoxV2 = defineComponent({
|
|
|
9638
9638
|
newDiv.style.top = mousedownEvent.offsetY + begin.top + "px";
|
|
9639
9639
|
boxDom.appendChild(newDiv);
|
|
9640
9640
|
const thumbnailDom = document.getElementById("thumbnail_" + uuid.value);
|
|
9641
|
+
const footerDom = document.getElementById("footer_" + uuid.value);
|
|
9641
9642
|
thumbnailDom.style.display = "none";
|
|
9643
|
+
footerDom.style.display = "none";
|
|
9642
9644
|
playerDom?.addEventListener("mousemove", mousemoveFun);
|
|
9643
9645
|
};
|
|
9644
9646
|
const mouseupFun = mouseupEvent => {
|
|
@@ -9648,7 +9650,9 @@ const VideoBoxV2 = defineComponent({
|
|
|
9648
9650
|
playerDom?.removeEventListener("mousemove", mousemoveFun);
|
|
9649
9651
|
newDiv.remove();
|
|
9650
9652
|
const thumbnailDom = document.getElementById("thumbnail_" + uuid.value);
|
|
9653
|
+
const footerDom = document.getElementById("footer_" + uuid.value);
|
|
9651
9654
|
thumbnailDom.style.display = "inline";
|
|
9655
|
+
footerDom.style.display = "flex";
|
|
9652
9656
|
const scaleX = Math.abs(mousemoveEvent.pageX - mousedownEvent.pageX) / boxDom.offsetWidth;
|
|
9653
9657
|
const scaleY = Math.abs(mousemoveEvent.pageY - mousedownEvent.pageY) / boxDom.offsetHeight;
|
|
9654
9658
|
const playerLeft = Math.min(mousedownEvent.offsetX, mousemoveEvent.offsetX) * -1 / scaleX;
|
|
@@ -9784,7 +9788,8 @@ const VideoBoxV2 = defineComponent({
|
|
|
9784
9788
|
"class": "value"
|
|
9785
9789
|
}, [info.displayValue && info.displayValue !== "null" ? info.displayValue + " " : ""]), createVNode("div", null, [info.unit])]);
|
|
9786
9790
|
})]) : "", createVNode("div", {
|
|
9787
|
-
"class": "footer-min"
|
|
9791
|
+
"class": "footer-min",
|
|
9792
|
+
"id": "footer_" + uuid.value
|
|
9788
9793
|
}, [createVNode("div", {
|
|
9789
9794
|
"class": "name-min"
|
|
9790
9795
|
}, [createVNode("span", null, [camera.value?.name])]), createVNode("div", {
|
|
@@ -12291,7 +12296,9 @@ async function getParamsDefine({
|
|
|
12291
12296
|
const filterList = (data.paramDefineValueVoList ?? []).filter(item => item.paramDefine && item.paramDefine.valid && item.paramDefine.showed).map(item => ({
|
|
12292
12297
|
...item,
|
|
12293
12298
|
paramDefineValue: item.paramDefineValue || {
|
|
12294
|
-
value: null
|
|
12299
|
+
value: null,
|
|
12300
|
+
defineId: item.paramDefine.id,
|
|
12301
|
+
defineCode: item.paramDefine.code
|
|
12295
12302
|
}
|
|
12296
12303
|
}));
|
|
12297
12304
|
const res = [];
|
package/dist/index.cjs
CHANGED
|
@@ -43,7 +43,7 @@ var axios__default = /*#__PURE__*/_interopDefaultLegacy(axios$2);
|
|
|
43
43
|
var ___default = /*#__PURE__*/_interopDefaultLegacy(_);
|
|
44
44
|
var dayjs__default = /*#__PURE__*/_interopDefaultLegacy(dayjs);
|
|
45
45
|
|
|
46
|
-
var version = "0.1.
|
|
46
|
+
var version = "0.1.54";
|
|
47
47
|
|
|
48
48
|
const setTheme = theme => {
|
|
49
49
|
if (theme === "dark") {
|
|
@@ -10652,7 +10652,9 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
10652
10652
|
newDiv.style.top = mousedownEvent.offsetY + begin.top + "px";
|
|
10653
10653
|
boxDom.appendChild(newDiv);
|
|
10654
10654
|
const thumbnailDom = document.getElementById("thumbnail_" + uuid.value);
|
|
10655
|
+
const footerDom = document.getElementById("footer_" + uuid.value);
|
|
10655
10656
|
thumbnailDom.style.display = "none";
|
|
10657
|
+
footerDom.style.display = "none";
|
|
10656
10658
|
playerDom?.addEventListener("mousemove", mousemoveFun);
|
|
10657
10659
|
};
|
|
10658
10660
|
const mouseupFun = mouseupEvent => {
|
|
@@ -10662,7 +10664,9 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
10662
10664
|
playerDom?.removeEventListener("mousemove", mousemoveFun);
|
|
10663
10665
|
newDiv.remove();
|
|
10664
10666
|
const thumbnailDom = document.getElementById("thumbnail_" + uuid.value);
|
|
10667
|
+
const footerDom = document.getElementById("footer_" + uuid.value);
|
|
10665
10668
|
thumbnailDom.style.display = "inline";
|
|
10669
|
+
footerDom.style.display = "flex";
|
|
10666
10670
|
const scaleX = Math.abs(mousemoveEvent.pageX - mousedownEvent.pageX) / boxDom.offsetWidth;
|
|
10667
10671
|
const scaleY = Math.abs(mousemoveEvent.pageY - mousedownEvent.pageY) / boxDom.offsetHeight;
|
|
10668
10672
|
const playerLeft = Math.min(mousedownEvent.offsetX, mousemoveEvent.offsetX) * -1 / scaleX;
|
|
@@ -10798,7 +10802,8 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
10798
10802
|
"class": "value"
|
|
10799
10803
|
}, [info.displayValue && info.displayValue !== "null" ? info.displayValue + " " : ""]), vue.createVNode("div", null, [info.unit])]);
|
|
10800
10804
|
})]) : "", vue.createVNode("div", {
|
|
10801
|
-
"class": "footer-min"
|
|
10805
|
+
"class": "footer-min",
|
|
10806
|
+
"id": "footer_" + uuid.value
|
|
10802
10807
|
}, [vue.createVNode("div", {
|
|
10803
10808
|
"class": "name-min"
|
|
10804
10809
|
}, [vue.createVNode("span", null, [camera.value?.name])]), vue.createVNode("div", {
|
|
@@ -13305,7 +13310,9 @@ async function getParamsDefine({
|
|
|
13305
13310
|
const filterList = (data.paramDefineValueVoList ?? []).filter(item => item.paramDefine && item.paramDefine.valid && item.paramDefine.showed).map(item => ({
|
|
13306
13311
|
...item,
|
|
13307
13312
|
paramDefineValue: item.paramDefineValue || {
|
|
13308
|
-
value: null
|
|
13313
|
+
value: null,
|
|
13314
|
+
defineId: item.paramDefine.id,
|
|
13315
|
+
defineCode: item.paramDefine.code
|
|
13309
13316
|
}
|
|
13310
13317
|
}));
|
|
13311
13318
|
const res = [];
|
package/dist/index.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ import { Key } from 'ant-design-vue/lib/table/interface';
|
|
|
11
11
|
import * as vue_jsx_runtime from 'vue/jsx-runtime';
|
|
12
12
|
import * as _ant_design_icons_vue_lib_components_IconFont from '@ant-design/icons-vue/lib/components/IconFont';
|
|
13
13
|
|
|
14
|
-
var version = "0.1.
|
|
14
|
+
var version = "0.1.54";
|
|
15
15
|
|
|
16
16
|
declare const _default$p: {
|
|
17
17
|
set(theme: string): void;
|
package/dist/index.js
CHANGED
|
@@ -13,7 +13,7 @@ import { XPopup, CommentBlock, setAxiosOption } from '@sszj-temp/mobile';
|
|
|
13
13
|
import { marked } from 'marked';
|
|
14
14
|
import '@sszj-temp/mobile/style.css';
|
|
15
15
|
|
|
16
|
-
var version = "0.1.
|
|
16
|
+
var version = "0.1.54";
|
|
17
17
|
|
|
18
18
|
const setTheme = theme => {
|
|
19
19
|
if (theme === "dark") {
|
|
@@ -10622,7 +10622,9 @@ const VideoBoxV2 = defineComponent({
|
|
|
10622
10622
|
newDiv.style.top = mousedownEvent.offsetY + begin.top + "px";
|
|
10623
10623
|
boxDom.appendChild(newDiv);
|
|
10624
10624
|
const thumbnailDom = document.getElementById("thumbnail_" + uuid.value);
|
|
10625
|
+
const footerDom = document.getElementById("footer_" + uuid.value);
|
|
10625
10626
|
thumbnailDom.style.display = "none";
|
|
10627
|
+
footerDom.style.display = "none";
|
|
10626
10628
|
playerDom?.addEventListener("mousemove", mousemoveFun);
|
|
10627
10629
|
};
|
|
10628
10630
|
const mouseupFun = mouseupEvent => {
|
|
@@ -10632,7 +10634,9 @@ const VideoBoxV2 = defineComponent({
|
|
|
10632
10634
|
playerDom?.removeEventListener("mousemove", mousemoveFun);
|
|
10633
10635
|
newDiv.remove();
|
|
10634
10636
|
const thumbnailDom = document.getElementById("thumbnail_" + uuid.value);
|
|
10637
|
+
const footerDom = document.getElementById("footer_" + uuid.value);
|
|
10635
10638
|
thumbnailDom.style.display = "inline";
|
|
10639
|
+
footerDom.style.display = "flex";
|
|
10636
10640
|
const scaleX = Math.abs(mousemoveEvent.pageX - mousedownEvent.pageX) / boxDom.offsetWidth;
|
|
10637
10641
|
const scaleY = Math.abs(mousemoveEvent.pageY - mousedownEvent.pageY) / boxDom.offsetHeight;
|
|
10638
10642
|
const playerLeft = Math.min(mousedownEvent.offsetX, mousemoveEvent.offsetX) * -1 / scaleX;
|
|
@@ -10768,7 +10772,8 @@ const VideoBoxV2 = defineComponent({
|
|
|
10768
10772
|
"class": "value"
|
|
10769
10773
|
}, [info.displayValue && info.displayValue !== "null" ? info.displayValue + " " : ""]), createVNode("div", null, [info.unit])]);
|
|
10770
10774
|
})]) : "", createVNode("div", {
|
|
10771
|
-
"class": "footer-min"
|
|
10775
|
+
"class": "footer-min",
|
|
10776
|
+
"id": "footer_" + uuid.value
|
|
10772
10777
|
}, [createVNode("div", {
|
|
10773
10778
|
"class": "name-min"
|
|
10774
10779
|
}, [createVNode("span", null, [camera.value?.name])]), createVNode("div", {
|
|
@@ -13275,7 +13280,9 @@ async function getParamsDefine({
|
|
|
13275
13280
|
const filterList = (data.paramDefineValueVoList ?? []).filter(item => item.paramDefine && item.paramDefine.valid && item.paramDefine.showed).map(item => ({
|
|
13276
13281
|
...item,
|
|
13277
13282
|
paramDefineValue: item.paramDefineValue || {
|
|
13278
|
-
value: null
|
|
13283
|
+
value: null,
|
|
13284
|
+
defineId: item.paramDefine.id,
|
|
13285
|
+
defineCode: item.paramDefine.code
|
|
13279
13286
|
}
|
|
13280
13287
|
}));
|
|
13281
13288
|
const res = [];
|
package/dist/video/index.cjs
CHANGED
|
@@ -6818,7 +6818,9 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
6818
6818
|
newDiv.style.top = mousedownEvent.offsetY + begin.top + "px";
|
|
6819
6819
|
boxDom.appendChild(newDiv);
|
|
6820
6820
|
const thumbnailDom = document.getElementById("thumbnail_" + uuid.value);
|
|
6821
|
+
const footerDom = document.getElementById("footer_" + uuid.value);
|
|
6821
6822
|
thumbnailDom.style.display = "none";
|
|
6823
|
+
footerDom.style.display = "none";
|
|
6822
6824
|
playerDom?.addEventListener("mousemove", mousemoveFun);
|
|
6823
6825
|
};
|
|
6824
6826
|
const mouseupFun = mouseupEvent => {
|
|
@@ -6828,7 +6830,9 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
6828
6830
|
playerDom?.removeEventListener("mousemove", mousemoveFun);
|
|
6829
6831
|
newDiv.remove();
|
|
6830
6832
|
const thumbnailDom = document.getElementById("thumbnail_" + uuid.value);
|
|
6833
|
+
const footerDom = document.getElementById("footer_" + uuid.value);
|
|
6831
6834
|
thumbnailDom.style.display = "inline";
|
|
6835
|
+
footerDom.style.display = "flex";
|
|
6832
6836
|
const scaleX = Math.abs(mousemoveEvent.pageX - mousedownEvent.pageX) / boxDom.offsetWidth;
|
|
6833
6837
|
const scaleY = Math.abs(mousemoveEvent.pageY - mousedownEvent.pageY) / boxDom.offsetHeight;
|
|
6834
6838
|
const playerLeft = Math.min(mousedownEvent.offsetX, mousemoveEvent.offsetX) * -1 / scaleX;
|
|
@@ -6964,7 +6968,8 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
6964
6968
|
"class": "value"
|
|
6965
6969
|
}, [info.displayValue && info.displayValue !== "null" ? info.displayValue + " " : ""]), vue.createVNode("div", null, [info.unit])]);
|
|
6966
6970
|
})]) : "", vue.createVNode("div", {
|
|
6967
|
-
"class": "footer-min"
|
|
6971
|
+
"class": "footer-min",
|
|
6972
|
+
"id": "footer_" + uuid.value
|
|
6968
6973
|
}, [vue.createVNode("div", {
|
|
6969
6974
|
"class": "name-min"
|
|
6970
6975
|
}, [vue.createVNode("span", null, [camera.value?.name])]), vue.createVNode("div", {
|
package/dist/video/index.js
CHANGED
|
@@ -6792,7 +6792,9 @@ const VideoBoxV2 = defineComponent({
|
|
|
6792
6792
|
newDiv.style.top = mousedownEvent.offsetY + begin.top + "px";
|
|
6793
6793
|
boxDom.appendChild(newDiv);
|
|
6794
6794
|
const thumbnailDom = document.getElementById("thumbnail_" + uuid.value);
|
|
6795
|
+
const footerDom = document.getElementById("footer_" + uuid.value);
|
|
6795
6796
|
thumbnailDom.style.display = "none";
|
|
6797
|
+
footerDom.style.display = "none";
|
|
6796
6798
|
playerDom?.addEventListener("mousemove", mousemoveFun);
|
|
6797
6799
|
};
|
|
6798
6800
|
const mouseupFun = mouseupEvent => {
|
|
@@ -6802,7 +6804,9 @@ const VideoBoxV2 = defineComponent({
|
|
|
6802
6804
|
playerDom?.removeEventListener("mousemove", mousemoveFun);
|
|
6803
6805
|
newDiv.remove();
|
|
6804
6806
|
const thumbnailDom = document.getElementById("thumbnail_" + uuid.value);
|
|
6807
|
+
const footerDom = document.getElementById("footer_" + uuid.value);
|
|
6805
6808
|
thumbnailDom.style.display = "inline";
|
|
6809
|
+
footerDom.style.display = "flex";
|
|
6806
6810
|
const scaleX = Math.abs(mousemoveEvent.pageX - mousedownEvent.pageX) / boxDom.offsetWidth;
|
|
6807
6811
|
const scaleY = Math.abs(mousemoveEvent.pageY - mousedownEvent.pageY) / boxDom.offsetHeight;
|
|
6808
6812
|
const playerLeft = Math.min(mousedownEvent.offsetX, mousemoveEvent.offsetX) * -1 / scaleX;
|
|
@@ -6938,7 +6942,8 @@ const VideoBoxV2 = defineComponent({
|
|
|
6938
6942
|
"class": "value"
|
|
6939
6943
|
}, [info.displayValue && info.displayValue !== "null" ? info.displayValue + " " : ""]), createVNode("div", null, [info.unit])]);
|
|
6940
6944
|
})]) : "", createVNode("div", {
|
|
6941
|
-
"class": "footer-min"
|
|
6945
|
+
"class": "footer-min",
|
|
6946
|
+
"id": "footer_" + uuid.value
|
|
6942
6947
|
}, [createVNode("div", {
|
|
6943
6948
|
"class": "name-min"
|
|
6944
6949
|
}, [createVNode("span", null, [camera.value?.name])]), createVNode("div", {
|
package/package.json
CHANGED