inl-ui 0.1.41 → 0.1.42
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 +2 -2
- package/dist/components/index.js +2 -2
- package/dist/index.cjs +3 -3
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -3
- package/dist/video/index.cjs +2 -2
- package/dist/video/index.js +2 -2
- package/package.json +1 -1
|
@@ -9327,8 +9327,7 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
9327
9327
|
playerDom?.addEventListener("mousemove", mousemoveFun);
|
|
9328
9328
|
};
|
|
9329
9329
|
const mouseupFun = mouseupEvent => {
|
|
9330
|
-
|
|
9331
|
-
if (!tempDiv) {
|
|
9330
|
+
if (!mousedownEvent) {
|
|
9332
9331
|
return;
|
|
9333
9332
|
}
|
|
9334
9333
|
playerDom?.removeEventListener("mousemove", mousemoveFun);
|
|
@@ -9350,6 +9349,7 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
9350
9349
|
chooseFieldDom.style.height = chooseFieldDom.offsetHeight * scaleY + "px";
|
|
9351
9350
|
chooseFieldDom.style.left = thumbnailDom.offsetWidth * -1 * playerLeft / playerWidth + "px";
|
|
9352
9351
|
chooseFieldDom.style.top = thumbnailDom.offsetHeight * -1 * playerTop / playerHeight + "px";
|
|
9352
|
+
mousedownEvent = void 0;
|
|
9353
9353
|
};
|
|
9354
9354
|
const setZoom = async () => {
|
|
9355
9355
|
boxDom = document.getElementById("videoBox_" + uuid.value);
|
package/dist/components/index.js
CHANGED
|
@@ -9316,8 +9316,7 @@ const VideoBoxV2 = defineComponent({
|
|
|
9316
9316
|
playerDom?.addEventListener("mousemove", mousemoveFun);
|
|
9317
9317
|
};
|
|
9318
9318
|
const mouseupFun = mouseupEvent => {
|
|
9319
|
-
|
|
9320
|
-
if (!tempDiv) {
|
|
9319
|
+
if (!mousedownEvent) {
|
|
9321
9320
|
return;
|
|
9322
9321
|
}
|
|
9323
9322
|
playerDom?.removeEventListener("mousemove", mousemoveFun);
|
|
@@ -9339,6 +9338,7 @@ const VideoBoxV2 = defineComponent({
|
|
|
9339
9338
|
chooseFieldDom.style.height = chooseFieldDom.offsetHeight * scaleY + "px";
|
|
9340
9339
|
chooseFieldDom.style.left = thumbnailDom.offsetWidth * -1 * playerLeft / playerWidth + "px";
|
|
9341
9340
|
chooseFieldDom.style.top = thumbnailDom.offsetHeight * -1 * playerTop / playerHeight + "px";
|
|
9341
|
+
mousedownEvent = void 0;
|
|
9342
9342
|
};
|
|
9343
9343
|
const setZoom = async () => {
|
|
9344
9344
|
boxDom = document.getElementById("videoBox_" + uuid.value);
|
package/dist/index.cjs
CHANGED
|
@@ -45,7 +45,7 @@ var ___default = /*#__PURE__*/_interopDefaultLegacy(_);
|
|
|
45
45
|
var dayjs__default = /*#__PURE__*/_interopDefaultLegacy(dayjs);
|
|
46
46
|
var EZUIKit__default = /*#__PURE__*/_interopDefaultLegacy(EZUIKit);
|
|
47
47
|
|
|
48
|
-
var version = "0.1.
|
|
48
|
+
var version = "0.1.41";
|
|
49
49
|
|
|
50
50
|
const setTheme = theme => {
|
|
51
51
|
if (theme === "dark") {
|
|
@@ -10331,8 +10331,7 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
10331
10331
|
playerDom?.addEventListener("mousemove", mousemoveFun);
|
|
10332
10332
|
};
|
|
10333
10333
|
const mouseupFun = mouseupEvent => {
|
|
10334
|
-
|
|
10335
|
-
if (!tempDiv) {
|
|
10334
|
+
if (!mousedownEvent) {
|
|
10336
10335
|
return;
|
|
10337
10336
|
}
|
|
10338
10337
|
playerDom?.removeEventListener("mousemove", mousemoveFun);
|
|
@@ -10354,6 +10353,7 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
10354
10353
|
chooseFieldDom.style.height = chooseFieldDom.offsetHeight * scaleY + "px";
|
|
10355
10354
|
chooseFieldDom.style.left = thumbnailDom.offsetWidth * -1 * playerLeft / playerWidth + "px";
|
|
10356
10355
|
chooseFieldDom.style.top = thumbnailDom.offsetHeight * -1 * playerTop / playerHeight + "px";
|
|
10356
|
+
mousedownEvent = void 0;
|
|
10357
10357
|
};
|
|
10358
10358
|
const setZoom = async () => {
|
|
10359
10359
|
boxDom = document.getElementById("videoBox_" + uuid.value);
|
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.41";
|
|
15
15
|
|
|
16
16
|
declare const _default$p: {
|
|
17
17
|
set(theme: string): void;
|
package/dist/index.js
CHANGED
|
@@ -14,7 +14,7 @@ import { XPopup, CommentBlock, setAxiosOption } from '@sszj-temp/mobile';
|
|
|
14
14
|
import { marked } from 'marked';
|
|
15
15
|
import '@sszj-temp/mobile/style.css';
|
|
16
16
|
|
|
17
|
-
var version = "0.1.
|
|
17
|
+
var version = "0.1.41";
|
|
18
18
|
|
|
19
19
|
const setTheme = theme => {
|
|
20
20
|
if (theme === "dark") {
|
|
@@ -10300,8 +10300,7 @@ const VideoBoxV2 = defineComponent({
|
|
|
10300
10300
|
playerDom?.addEventListener("mousemove", mousemoveFun);
|
|
10301
10301
|
};
|
|
10302
10302
|
const mouseupFun = mouseupEvent => {
|
|
10303
|
-
|
|
10304
|
-
if (!tempDiv) {
|
|
10303
|
+
if (!mousedownEvent) {
|
|
10305
10304
|
return;
|
|
10306
10305
|
}
|
|
10307
10306
|
playerDom?.removeEventListener("mousemove", mousemoveFun);
|
|
@@ -10323,6 +10322,7 @@ const VideoBoxV2 = defineComponent({
|
|
|
10323
10322
|
chooseFieldDom.style.height = chooseFieldDom.offsetHeight * scaleY + "px";
|
|
10324
10323
|
chooseFieldDom.style.left = thumbnailDom.offsetWidth * -1 * playerLeft / playerWidth + "px";
|
|
10325
10324
|
chooseFieldDom.style.top = thumbnailDom.offsetHeight * -1 * playerTop / playerHeight + "px";
|
|
10325
|
+
mousedownEvent = void 0;
|
|
10326
10326
|
};
|
|
10327
10327
|
const setZoom = async () => {
|
|
10328
10328
|
boxDom = document.getElementById("videoBox_" + uuid.value);
|
package/dist/video/index.cjs
CHANGED
|
@@ -6518,8 +6518,7 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
6518
6518
|
playerDom?.addEventListener("mousemove", mousemoveFun);
|
|
6519
6519
|
};
|
|
6520
6520
|
const mouseupFun = mouseupEvent => {
|
|
6521
|
-
|
|
6522
|
-
if (!tempDiv) {
|
|
6521
|
+
if (!mousedownEvent) {
|
|
6523
6522
|
return;
|
|
6524
6523
|
}
|
|
6525
6524
|
playerDom?.removeEventListener("mousemove", mousemoveFun);
|
|
@@ -6541,6 +6540,7 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
6541
6540
|
chooseFieldDom.style.height = chooseFieldDom.offsetHeight * scaleY + "px";
|
|
6542
6541
|
chooseFieldDom.style.left = thumbnailDom.offsetWidth * -1 * playerLeft / playerWidth + "px";
|
|
6543
6542
|
chooseFieldDom.style.top = thumbnailDom.offsetHeight * -1 * playerTop / playerHeight + "px";
|
|
6543
|
+
mousedownEvent = void 0;
|
|
6544
6544
|
};
|
|
6545
6545
|
const setZoom = async () => {
|
|
6546
6546
|
boxDom = document.getElementById("videoBox_" + uuid.value);
|
package/dist/video/index.js
CHANGED
|
@@ -6509,8 +6509,7 @@ const VideoBoxV2 = defineComponent({
|
|
|
6509
6509
|
playerDom?.addEventListener("mousemove", mousemoveFun);
|
|
6510
6510
|
};
|
|
6511
6511
|
const mouseupFun = mouseupEvent => {
|
|
6512
|
-
|
|
6513
|
-
if (!tempDiv) {
|
|
6512
|
+
if (!mousedownEvent) {
|
|
6514
6513
|
return;
|
|
6515
6514
|
}
|
|
6516
6515
|
playerDom?.removeEventListener("mousemove", mousemoveFun);
|
|
@@ -6532,6 +6531,7 @@ const VideoBoxV2 = defineComponent({
|
|
|
6532
6531
|
chooseFieldDom.style.height = chooseFieldDom.offsetHeight * scaleY + "px";
|
|
6533
6532
|
chooseFieldDom.style.left = thumbnailDom.offsetWidth * -1 * playerLeft / playerWidth + "px";
|
|
6534
6533
|
chooseFieldDom.style.top = thumbnailDom.offsetHeight * -1 * playerTop / playerHeight + "px";
|
|
6534
|
+
mousedownEvent = void 0;
|
|
6535
6535
|
};
|
|
6536
6536
|
const setZoom = async () => {
|
|
6537
6537
|
boxDom = document.getElementById("videoBox_" + uuid.value);
|