inl-ui 0.1.23 → 0.1.24
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 +3 -2
- package/dist/components/index.d.ts +4 -2
- package/dist/components/index.js +3 -2
- package/dist/index.cjs +4 -3
- package/dist/index.d.ts +5 -3
- package/dist/index.js +4 -3
- package/dist/video/index.cjs +3 -2
- package/dist/video/index.d.ts +4 -2
- package/dist/video/index.js +3 -2
- package/package.json +1 -1
|
@@ -8680,7 +8680,7 @@ const CloudVideo = vue.defineComponent({
|
|
|
8680
8680
|
default: ""
|
|
8681
8681
|
}
|
|
8682
8682
|
},
|
|
8683
|
-
emits: [],
|
|
8683
|
+
emits: ["complete"],
|
|
8684
8684
|
setup(prop, _context) {
|
|
8685
8685
|
const uuid = vue.ref(UUID());
|
|
8686
8686
|
let player;
|
|
@@ -8708,7 +8708,8 @@ const CloudVideo = vue.defineComponent({
|
|
|
8708
8708
|
if (prop.template) {
|
|
8709
8709
|
opt.height = prop.height;
|
|
8710
8710
|
}
|
|
8711
|
-
player = new EZUIKit__default["default"].EZUIKitPlayer(opt);
|
|
8711
|
+
player = await new EZUIKit__default["default"].EZUIKitPlayer(opt);
|
|
8712
|
+
_context.emit("complete", player);
|
|
8712
8713
|
};
|
|
8713
8714
|
vue.onMounted(() => {
|
|
8714
8715
|
initVideo();
|
|
@@ -403,7 +403,7 @@ declare const _default$b: vue.DefineComponent<{
|
|
|
403
403
|
type: NumberConstructor;
|
|
404
404
|
default: string;
|
|
405
405
|
};
|
|
406
|
-
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin,
|
|
406
|
+
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, "complete"[], "complete", vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
407
407
|
cameraId: {
|
|
408
408
|
require: boolean;
|
|
409
409
|
type: StringConstructor;
|
|
@@ -428,7 +428,9 @@ declare const _default$b: vue.DefineComponent<{
|
|
|
428
428
|
type: NumberConstructor;
|
|
429
429
|
default: string;
|
|
430
430
|
};
|
|
431
|
-
}>> & {
|
|
431
|
+
}>> & {
|
|
432
|
+
onComplete?: ((...args: any[]) => any) | undefined;
|
|
433
|
+
}, {
|
|
432
434
|
token: string;
|
|
433
435
|
template: string;
|
|
434
436
|
channelNo: number;
|
package/dist/components/index.js
CHANGED
|
@@ -8669,7 +8669,7 @@ const CloudVideo = defineComponent({
|
|
|
8669
8669
|
default: ""
|
|
8670
8670
|
}
|
|
8671
8671
|
},
|
|
8672
|
-
emits: [],
|
|
8672
|
+
emits: ["complete"],
|
|
8673
8673
|
setup(prop, _context) {
|
|
8674
8674
|
const uuid = ref(UUID());
|
|
8675
8675
|
let player;
|
|
@@ -8697,7 +8697,8 @@ const CloudVideo = defineComponent({
|
|
|
8697
8697
|
if (prop.template) {
|
|
8698
8698
|
opt.height = prop.height;
|
|
8699
8699
|
}
|
|
8700
|
-
player = new EZUIKit.EZUIKitPlayer(opt);
|
|
8700
|
+
player = await new EZUIKit.EZUIKitPlayer(opt);
|
|
8701
|
+
_context.emit("complete", player);
|
|
8701
8702
|
};
|
|
8702
8703
|
onMounted(() => {
|
|
8703
8704
|
initVideo();
|
package/dist/index.cjs
CHANGED
|
@@ -44,7 +44,7 @@ var ___default = /*#__PURE__*/_interopDefaultLegacy(_);
|
|
|
44
44
|
var dayjs__default = /*#__PURE__*/_interopDefaultLegacy(dayjs);
|
|
45
45
|
var EZUIKit__default = /*#__PURE__*/_interopDefaultLegacy(EZUIKit);
|
|
46
46
|
|
|
47
|
-
var version = "0.1.
|
|
47
|
+
var version = "0.1.23";
|
|
48
48
|
|
|
49
49
|
const setTheme = theme => {
|
|
50
50
|
if (theme === "dark") {
|
|
@@ -9683,7 +9683,7 @@ const CloudVideo = vue.defineComponent({
|
|
|
9683
9683
|
default: ""
|
|
9684
9684
|
}
|
|
9685
9685
|
},
|
|
9686
|
-
emits: [],
|
|
9686
|
+
emits: ["complete"],
|
|
9687
9687
|
setup(prop, _context) {
|
|
9688
9688
|
const uuid = vue.ref(UUID());
|
|
9689
9689
|
let player;
|
|
@@ -9711,7 +9711,8 @@ const CloudVideo = vue.defineComponent({
|
|
|
9711
9711
|
if (prop.template) {
|
|
9712
9712
|
opt.height = prop.height;
|
|
9713
9713
|
}
|
|
9714
|
-
player = new EZUIKit__default["default"].EZUIKitPlayer(opt);
|
|
9714
|
+
player = await new EZUIKit__default["default"].EZUIKitPlayer(opt);
|
|
9715
|
+
_context.emit("complete", player);
|
|
9715
9716
|
};
|
|
9716
9717
|
vue.onMounted(() => {
|
|
9717
9718
|
initVideo();
|
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.23";
|
|
15
15
|
|
|
16
16
|
declare const _default$p: {
|
|
17
17
|
set(theme: string): void;
|
|
@@ -1168,7 +1168,7 @@ declare const _default$c: vue.DefineComponent<{
|
|
|
1168
1168
|
type: NumberConstructor;
|
|
1169
1169
|
default: string;
|
|
1170
1170
|
};
|
|
1171
|
-
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin,
|
|
1171
|
+
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, "complete"[], "complete", vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
1172
1172
|
cameraId: {
|
|
1173
1173
|
require: boolean;
|
|
1174
1174
|
type: StringConstructor;
|
|
@@ -1193,7 +1193,9 @@ declare const _default$c: vue.DefineComponent<{
|
|
|
1193
1193
|
type: NumberConstructor;
|
|
1194
1194
|
default: string;
|
|
1195
1195
|
};
|
|
1196
|
-
}>> & {
|
|
1196
|
+
}>> & {
|
|
1197
|
+
onComplete?: ((...args: any[]) => any) | undefined;
|
|
1198
|
+
}, {
|
|
1197
1199
|
template: string;
|
|
1198
1200
|
width: number;
|
|
1199
1201
|
token: string;
|
package/dist/index.js
CHANGED
|
@@ -13,7 +13,7 @@ import EZUIKit from 'ezuikit-js';
|
|
|
13
13
|
import { XPopup, CommentBlock, setAxiosOption } from '@sszj-temp/mobile';
|
|
14
14
|
import '@sszj-temp/mobile/style.css';
|
|
15
15
|
|
|
16
|
-
var version = "0.1.
|
|
16
|
+
var version = "0.1.23";
|
|
17
17
|
|
|
18
18
|
const setTheme = theme => {
|
|
19
19
|
if (theme === "dark") {
|
|
@@ -9652,7 +9652,7 @@ const CloudVideo = defineComponent({
|
|
|
9652
9652
|
default: ""
|
|
9653
9653
|
}
|
|
9654
9654
|
},
|
|
9655
|
-
emits: [],
|
|
9655
|
+
emits: ["complete"],
|
|
9656
9656
|
setup(prop, _context) {
|
|
9657
9657
|
const uuid = ref(UUID());
|
|
9658
9658
|
let player;
|
|
@@ -9680,7 +9680,8 @@ const CloudVideo = defineComponent({
|
|
|
9680
9680
|
if (prop.template) {
|
|
9681
9681
|
opt.height = prop.height;
|
|
9682
9682
|
}
|
|
9683
|
-
player = new EZUIKit.EZUIKitPlayer(opt);
|
|
9683
|
+
player = await new EZUIKit.EZUIKitPlayer(opt);
|
|
9684
|
+
_context.emit("complete", player);
|
|
9684
9685
|
};
|
|
9685
9686
|
onMounted(() => {
|
|
9686
9687
|
initVideo();
|
package/dist/video/index.cjs
CHANGED
|
@@ -6143,7 +6143,7 @@ const CloudVideo = vue.defineComponent({
|
|
|
6143
6143
|
default: ""
|
|
6144
6144
|
}
|
|
6145
6145
|
},
|
|
6146
|
-
emits: [],
|
|
6146
|
+
emits: ["complete"],
|
|
6147
6147
|
setup(prop, _context) {
|
|
6148
6148
|
const uuid = vue.ref(UUID());
|
|
6149
6149
|
let player;
|
|
@@ -6171,7 +6171,8 @@ const CloudVideo = vue.defineComponent({
|
|
|
6171
6171
|
if (prop.template) {
|
|
6172
6172
|
opt.height = prop.height;
|
|
6173
6173
|
}
|
|
6174
|
-
player = new EZUIKit__default["default"].EZUIKitPlayer(opt);
|
|
6174
|
+
player = await new EZUIKit__default["default"].EZUIKitPlayer(opt);
|
|
6175
|
+
_context.emit("complete", player);
|
|
6175
6176
|
};
|
|
6176
6177
|
vue.onMounted(() => {
|
|
6177
6178
|
initVideo();
|
package/dist/video/index.d.ts
CHANGED
|
@@ -371,7 +371,7 @@ declare const _default: vue.DefineComponent<{
|
|
|
371
371
|
type: NumberConstructor;
|
|
372
372
|
default: string;
|
|
373
373
|
};
|
|
374
|
-
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin,
|
|
374
|
+
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, "complete"[], "complete", vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
375
375
|
cameraId: {
|
|
376
376
|
require: boolean;
|
|
377
377
|
type: StringConstructor;
|
|
@@ -396,7 +396,9 @@ declare const _default: vue.DefineComponent<{
|
|
|
396
396
|
type: NumberConstructor;
|
|
397
397
|
default: string;
|
|
398
398
|
};
|
|
399
|
-
}>> & {
|
|
399
|
+
}>> & {
|
|
400
|
+
onComplete?: ((...args: any[]) => any) | undefined;
|
|
401
|
+
}, {
|
|
400
402
|
token: string;
|
|
401
403
|
template: string;
|
|
402
404
|
channelNo: number;
|
package/dist/video/index.js
CHANGED
|
@@ -6134,7 +6134,7 @@ const CloudVideo = defineComponent({
|
|
|
6134
6134
|
default: ""
|
|
6135
6135
|
}
|
|
6136
6136
|
},
|
|
6137
|
-
emits: [],
|
|
6137
|
+
emits: ["complete"],
|
|
6138
6138
|
setup(prop, _context) {
|
|
6139
6139
|
const uuid = ref(UUID());
|
|
6140
6140
|
let player;
|
|
@@ -6162,7 +6162,8 @@ const CloudVideo = defineComponent({
|
|
|
6162
6162
|
if (prop.template) {
|
|
6163
6163
|
opt.height = prop.height;
|
|
6164
6164
|
}
|
|
6165
|
-
player = new EZUIKit.EZUIKitPlayer(opt);
|
|
6165
|
+
player = await new EZUIKit.EZUIKitPlayer(opt);
|
|
6166
|
+
_context.emit("complete", player);
|
|
6166
6167
|
};
|
|
6167
6168
|
onMounted(() => {
|
|
6168
6169
|
initVideo();
|