inl-ui 0.1.153 → 0.1.155
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 +5 -5
- package/dist/components/index.d.ts +2 -2
- package/dist/components/index.js +5 -5
- package/dist/index.cjs +6 -6
- package/dist/index.d.ts +3 -3
- package/dist/index.js +6 -6
- package/dist/video/index.cjs +5 -5
- package/dist/video/index.d.ts +2 -2
- package/dist/video/index.js +5 -5
- package/package.json +1 -1
|
@@ -9720,7 +9720,7 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
9720
9720
|
components: {
|
|
9721
9721
|
VideoPlayerV2
|
|
9722
9722
|
},
|
|
9723
|
-
emits: ["close", "change", "
|
|
9723
|
+
emits: ["close", "change", "changeFullscreen"],
|
|
9724
9724
|
setup(_prop, _context) {
|
|
9725
9725
|
const videoBoxRef = vue.ref();
|
|
9726
9726
|
const player = vue.ref();
|
|
@@ -10031,10 +10031,6 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
10031
10031
|
toggle
|
|
10032
10032
|
} = core.useFullscreen(videoBoxRef);
|
|
10033
10033
|
vue.watch(() => isFullscreen.value, val => {
|
|
10034
|
-
_context.emit("isFullscreen", {
|
|
10035
|
-
isFullscreen: val,
|
|
10036
|
-
...camera.value
|
|
10037
|
-
});
|
|
10038
10034
|
clearFlogCanvas();
|
|
10039
10035
|
});
|
|
10040
10036
|
const initMqtt = async ip => {
|
|
@@ -10378,6 +10374,10 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
10378
10374
|
return vue.createVNode("img", {
|
|
10379
10375
|
"onClick": e => {
|
|
10380
10376
|
e.stopPropagation();
|
|
10377
|
+
_context.emit("changeFullscreen", {
|
|
10378
|
+
isFullscreen: !isFullscreen.value,
|
|
10379
|
+
...camera.value
|
|
10380
|
+
});
|
|
10381
10381
|
toggle();
|
|
10382
10382
|
},
|
|
10383
10383
|
"src": "/micro-assets/inl/video/putUp.png"
|
|
@@ -661,7 +661,7 @@ declare const _default$7: vue.DefineComponent<{
|
|
|
661
661
|
type: BooleanConstructor;
|
|
662
662
|
default: boolean;
|
|
663
663
|
};
|
|
664
|
-
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, ("change" | "close" | "
|
|
664
|
+
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, ("change" | "close" | "changeFullscreen")[], "change" | "close" | "changeFullscreen", vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
665
665
|
camera: {
|
|
666
666
|
require: boolean;
|
|
667
667
|
type: StringConstructor;
|
|
@@ -698,7 +698,7 @@ declare const _default$7: vue.DefineComponent<{
|
|
|
698
698
|
}>> & {
|
|
699
699
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
700
700
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
701
|
-
|
|
701
|
+
onChangeFullscreen?: ((...args: any[]) => any) | undefined;
|
|
702
702
|
}, {
|
|
703
703
|
intervalTime: number;
|
|
704
704
|
btns: string[];
|
package/dist/components/index.js
CHANGED
|
@@ -9691,7 +9691,7 @@ const VideoBoxV2 = defineComponent({
|
|
|
9691
9691
|
components: {
|
|
9692
9692
|
VideoPlayerV2
|
|
9693
9693
|
},
|
|
9694
|
-
emits: ["close", "change", "
|
|
9694
|
+
emits: ["close", "change", "changeFullscreen"],
|
|
9695
9695
|
setup(_prop, _context) {
|
|
9696
9696
|
const videoBoxRef = ref();
|
|
9697
9697
|
const player = ref();
|
|
@@ -10002,10 +10002,6 @@ const VideoBoxV2 = defineComponent({
|
|
|
10002
10002
|
toggle
|
|
10003
10003
|
} = useFullscreen(videoBoxRef);
|
|
10004
10004
|
watch(() => isFullscreen.value, val => {
|
|
10005
|
-
_context.emit("isFullscreen", {
|
|
10006
|
-
isFullscreen: val,
|
|
10007
|
-
...camera.value
|
|
10008
|
-
});
|
|
10009
10005
|
clearFlogCanvas();
|
|
10010
10006
|
});
|
|
10011
10007
|
const initMqtt = async ip => {
|
|
@@ -10349,6 +10345,10 @@ const VideoBoxV2 = defineComponent({
|
|
|
10349
10345
|
return createVNode("img", {
|
|
10350
10346
|
"onClick": e => {
|
|
10351
10347
|
e.stopPropagation();
|
|
10348
|
+
_context.emit("changeFullscreen", {
|
|
10349
|
+
isFullscreen: !isFullscreen.value,
|
|
10350
|
+
...camera.value
|
|
10351
|
+
});
|
|
10352
10352
|
toggle();
|
|
10353
10353
|
},
|
|
10354
10354
|
"src": "/micro-assets/inl/video/putUp.png"
|
package/dist/index.cjs
CHANGED
|
@@ -45,7 +45,7 @@ var ___default = /*#__PURE__*/_interopDefaultLegacy(_);
|
|
|
45
45
|
var dayjs__default = /*#__PURE__*/_interopDefaultLegacy(dayjs);
|
|
46
46
|
var mqtt__default = /*#__PURE__*/_interopDefaultLegacy(mqtt);
|
|
47
47
|
|
|
48
|
-
var version = "0.1.
|
|
48
|
+
var version = "0.1.154";
|
|
49
49
|
|
|
50
50
|
const setTheme = theme => {
|
|
51
51
|
if (theme === "dark") {
|
|
@@ -10706,7 +10706,7 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
10706
10706
|
components: {
|
|
10707
10707
|
VideoPlayerV2
|
|
10708
10708
|
},
|
|
10709
|
-
emits: ["close", "change", "
|
|
10709
|
+
emits: ["close", "change", "changeFullscreen"],
|
|
10710
10710
|
setup(_prop, _context) {
|
|
10711
10711
|
const videoBoxRef = vue.ref();
|
|
10712
10712
|
const player = vue.ref();
|
|
@@ -11017,10 +11017,6 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
11017
11017
|
toggle
|
|
11018
11018
|
} = core.useFullscreen(videoBoxRef);
|
|
11019
11019
|
vue.watch(() => isFullscreen.value, val => {
|
|
11020
|
-
_context.emit("isFullscreen", {
|
|
11021
|
-
isFullscreen: val,
|
|
11022
|
-
...camera.value
|
|
11023
|
-
});
|
|
11024
11020
|
clearFlogCanvas();
|
|
11025
11021
|
});
|
|
11026
11022
|
const initMqtt = async ip => {
|
|
@@ -11364,6 +11360,10 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
11364
11360
|
return vue.createVNode("img", {
|
|
11365
11361
|
"onClick": e => {
|
|
11366
11362
|
e.stopPropagation();
|
|
11363
|
+
_context.emit("changeFullscreen", {
|
|
11364
|
+
isFullscreen: !isFullscreen.value,
|
|
11365
|
+
...camera.value
|
|
11366
|
+
});
|
|
11367
11367
|
toggle();
|
|
11368
11368
|
},
|
|
11369
11369
|
"src": "/micro-assets/inl/video/putUp.png"
|
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.154";
|
|
15
15
|
|
|
16
16
|
declare const _default$p: {
|
|
17
17
|
set(theme: string): void;
|
|
@@ -1425,7 +1425,7 @@ declare const _default$8: vue.DefineComponent<{
|
|
|
1425
1425
|
type: BooleanConstructor;
|
|
1426
1426
|
default: boolean;
|
|
1427
1427
|
};
|
|
1428
|
-
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, ("change" | "close" | "
|
|
1428
|
+
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, ("change" | "close" | "changeFullscreen")[], "change" | "close" | "changeFullscreen", vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
1429
1429
|
camera: {
|
|
1430
1430
|
require: boolean;
|
|
1431
1431
|
type: StringConstructor;
|
|
@@ -1462,7 +1462,7 @@ declare const _default$8: vue.DefineComponent<{
|
|
|
1462
1462
|
}>> & {
|
|
1463
1463
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1464
1464
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
1465
|
-
|
|
1465
|
+
onChangeFullscreen?: ((...args: any[]) => any) | undefined;
|
|
1466
1466
|
}, {
|
|
1467
1467
|
intervalTime: number;
|
|
1468
1468
|
btns: string[];
|
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.154";
|
|
18
18
|
|
|
19
19
|
const setTheme = theme => {
|
|
20
20
|
if (theme === "dark") {
|
|
@@ -10675,7 +10675,7 @@ const VideoBoxV2 = defineComponent({
|
|
|
10675
10675
|
components: {
|
|
10676
10676
|
VideoPlayerV2
|
|
10677
10677
|
},
|
|
10678
|
-
emits: ["close", "change", "
|
|
10678
|
+
emits: ["close", "change", "changeFullscreen"],
|
|
10679
10679
|
setup(_prop, _context) {
|
|
10680
10680
|
const videoBoxRef = ref();
|
|
10681
10681
|
const player = ref();
|
|
@@ -10986,10 +10986,6 @@ const VideoBoxV2 = defineComponent({
|
|
|
10986
10986
|
toggle
|
|
10987
10987
|
} = useFullscreen(videoBoxRef);
|
|
10988
10988
|
watch(() => isFullscreen.value, val => {
|
|
10989
|
-
_context.emit("isFullscreen", {
|
|
10990
|
-
isFullscreen: val,
|
|
10991
|
-
...camera.value
|
|
10992
|
-
});
|
|
10993
10989
|
clearFlogCanvas();
|
|
10994
10990
|
});
|
|
10995
10991
|
const initMqtt = async ip => {
|
|
@@ -11333,6 +11329,10 @@ const VideoBoxV2 = defineComponent({
|
|
|
11333
11329
|
return createVNode("img", {
|
|
11334
11330
|
"onClick": e => {
|
|
11335
11331
|
e.stopPropagation();
|
|
11332
|
+
_context.emit("changeFullscreen", {
|
|
11333
|
+
isFullscreen: !isFullscreen.value,
|
|
11334
|
+
...camera.value
|
|
11335
|
+
});
|
|
11336
11336
|
toggle();
|
|
11337
11337
|
},
|
|
11338
11338
|
"src": "/micro-assets/inl/video/putUp.png"
|
package/dist/video/index.cjs
CHANGED
|
@@ -6754,7 +6754,7 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
6754
6754
|
components: {
|
|
6755
6755
|
VideoPlayerV2
|
|
6756
6756
|
},
|
|
6757
|
-
emits: ["close", "change", "
|
|
6757
|
+
emits: ["close", "change", "changeFullscreen"],
|
|
6758
6758
|
setup(_prop, _context) {
|
|
6759
6759
|
const videoBoxRef = vue.ref();
|
|
6760
6760
|
const player = vue.ref();
|
|
@@ -7065,10 +7065,6 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
7065
7065
|
toggle
|
|
7066
7066
|
} = core.useFullscreen(videoBoxRef);
|
|
7067
7067
|
vue.watch(() => isFullscreen.value, val => {
|
|
7068
|
-
_context.emit("isFullscreen", {
|
|
7069
|
-
isFullscreen: val,
|
|
7070
|
-
...camera.value
|
|
7071
|
-
});
|
|
7072
7068
|
clearFlogCanvas();
|
|
7073
7069
|
});
|
|
7074
7070
|
const initMqtt = async ip => {
|
|
@@ -7412,6 +7408,10 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
7412
7408
|
return vue.createVNode("img", {
|
|
7413
7409
|
"onClick": e => {
|
|
7414
7410
|
e.stopPropagation();
|
|
7411
|
+
_context.emit("changeFullscreen", {
|
|
7412
|
+
isFullscreen: !isFullscreen.value,
|
|
7413
|
+
...camera.value
|
|
7414
|
+
});
|
|
7415
7415
|
toggle();
|
|
7416
7416
|
},
|
|
7417
7417
|
"src": "/micro-assets/inl/video/putUp.png"
|
package/dist/video/index.d.ts
CHANGED
|
@@ -312,7 +312,7 @@ declare const _default$1: vue.DefineComponent<{
|
|
|
312
312
|
type: BooleanConstructor;
|
|
313
313
|
default: boolean;
|
|
314
314
|
};
|
|
315
|
-
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, ("close" | "change" | "
|
|
315
|
+
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, ("close" | "change" | "changeFullscreen")[], "close" | "change" | "changeFullscreen", vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
316
316
|
camera: {
|
|
317
317
|
require: boolean;
|
|
318
318
|
type: StringConstructor;
|
|
@@ -349,7 +349,7 @@ declare const _default$1: vue.DefineComponent<{
|
|
|
349
349
|
}>> & {
|
|
350
350
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
351
351
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
352
|
-
|
|
352
|
+
onChangeFullscreen?: ((...args: any[]) => any) | undefined;
|
|
353
353
|
}, {
|
|
354
354
|
intervalTime: number;
|
|
355
355
|
btns: string[];
|
package/dist/video/index.js
CHANGED
|
@@ -6726,7 +6726,7 @@ const VideoBoxV2 = defineComponent({
|
|
|
6726
6726
|
components: {
|
|
6727
6727
|
VideoPlayerV2
|
|
6728
6728
|
},
|
|
6729
|
-
emits: ["close", "change", "
|
|
6729
|
+
emits: ["close", "change", "changeFullscreen"],
|
|
6730
6730
|
setup(_prop, _context) {
|
|
6731
6731
|
const videoBoxRef = ref();
|
|
6732
6732
|
const player = ref();
|
|
@@ -7037,10 +7037,6 @@ const VideoBoxV2 = defineComponent({
|
|
|
7037
7037
|
toggle
|
|
7038
7038
|
} = useFullscreen(videoBoxRef);
|
|
7039
7039
|
watch(() => isFullscreen.value, val => {
|
|
7040
|
-
_context.emit("isFullscreen", {
|
|
7041
|
-
isFullscreen: val,
|
|
7042
|
-
...camera.value
|
|
7043
|
-
});
|
|
7044
7040
|
clearFlogCanvas();
|
|
7045
7041
|
});
|
|
7046
7042
|
const initMqtt = async ip => {
|
|
@@ -7384,6 +7380,10 @@ const VideoBoxV2 = defineComponent({
|
|
|
7384
7380
|
return createVNode("img", {
|
|
7385
7381
|
"onClick": e => {
|
|
7386
7382
|
e.stopPropagation();
|
|
7383
|
+
_context.emit("changeFullscreen", {
|
|
7384
|
+
isFullscreen: !isFullscreen.value,
|
|
7385
|
+
...camera.value
|
|
7386
|
+
});
|
|
7387
7387
|
toggle();
|
|
7388
7388
|
},
|
|
7389
7389
|
"src": "/micro-assets/inl/video/putUp.png"
|