inl-ui 0.1.9 → 0.1.10
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 +7 -7
- package/dist/components/index.d.ts +9 -0
- package/dist/components/index.js +7 -7
- package/dist/index.cjs +8 -8
- package/dist/index.d.ts +10 -1
- package/dist/index.js +8 -8
- package/dist/video/index.cjs +7 -7
- package/dist/video/index.d.ts +9 -0
- package/dist/video/index.js +7 -7
- package/dist/videoMobile/index.cjs +7 -7
- package/dist/videoMobile/index.d.ts +9 -0
- package/dist/videoMobile/index.js +7 -7
- package/package.json +1 -1
|
@@ -7482,11 +7482,11 @@ const props$8 = {
|
|
|
7482
7482
|
require: false,
|
|
7483
7483
|
default: "fill"
|
|
7484
7484
|
},
|
|
7485
|
-
//
|
|
7486
|
-
|
|
7487
|
-
|
|
7488
|
-
|
|
7489
|
-
|
|
7485
|
+
// token
|
|
7486
|
+
token: {
|
|
7487
|
+
type: String,
|
|
7488
|
+
default: ""
|
|
7489
|
+
},
|
|
7490
7490
|
baseUrl: {
|
|
7491
7491
|
type: String,
|
|
7492
7492
|
default: ""
|
|
@@ -7564,12 +7564,12 @@ const VideoPlayerV2 = vue.defineComponent({
|
|
|
7564
7564
|
}
|
|
7565
7565
|
const detailRes = await axios__default["default"].get(`${_prop.baseUrl}/api/vms/v1/camera/getByUuid?uuid=${uuid2}`, {
|
|
7566
7566
|
headers: {
|
|
7567
|
-
token: sessionStorage.getItem("token") || ""
|
|
7567
|
+
token: _prop.token || sessionStorage.getItem("token") || ""
|
|
7568
7568
|
}
|
|
7569
7569
|
});
|
|
7570
7570
|
const res = await axios__default["default"].get(`${_prop.baseUrl}/api/vms/v1/camera/getWebrtcUrls?uuid=${uuid2}`, {
|
|
7571
7571
|
headers: {
|
|
7572
|
-
token: sessionStorage.getItem("token") || ""
|
|
7572
|
+
token: _prop.token || sessionStorage.getItem("token") || ""
|
|
7573
7573
|
}
|
|
7574
7574
|
});
|
|
7575
7575
|
if (res.status === 200) {
|
|
@@ -395,6 +395,10 @@ declare const _default$a: vue.DefineComponent<{
|
|
|
395
395
|
require: boolean;
|
|
396
396
|
default: string;
|
|
397
397
|
};
|
|
398
|
+
token: {
|
|
399
|
+
type: StringConstructor;
|
|
400
|
+
default: string;
|
|
401
|
+
};
|
|
398
402
|
baseUrl: {
|
|
399
403
|
type: StringConstructor;
|
|
400
404
|
default: string;
|
|
@@ -412,6 +416,10 @@ declare const _default$a: vue.DefineComponent<{
|
|
|
412
416
|
require: boolean;
|
|
413
417
|
default: string;
|
|
414
418
|
};
|
|
419
|
+
token: {
|
|
420
|
+
type: StringConstructor;
|
|
421
|
+
default: string;
|
|
422
|
+
};
|
|
415
423
|
baseUrl: {
|
|
416
424
|
type: StringConstructor;
|
|
417
425
|
default: string;
|
|
@@ -421,6 +429,7 @@ declare const _default$a: vue.DefineComponent<{
|
|
|
421
429
|
}, {
|
|
422
430
|
fill: string;
|
|
423
431
|
cameraConfig: Record<string, any>;
|
|
432
|
+
token: string;
|
|
424
433
|
baseUrl: string;
|
|
425
434
|
}, {}>;
|
|
426
435
|
|
package/dist/components/index.js
CHANGED
|
@@ -7472,11 +7472,11 @@ const props$8 = {
|
|
|
7472
7472
|
require: false,
|
|
7473
7473
|
default: "fill"
|
|
7474
7474
|
},
|
|
7475
|
-
//
|
|
7476
|
-
|
|
7477
|
-
|
|
7478
|
-
|
|
7479
|
-
|
|
7475
|
+
// token
|
|
7476
|
+
token: {
|
|
7477
|
+
type: String,
|
|
7478
|
+
default: ""
|
|
7479
|
+
},
|
|
7480
7480
|
baseUrl: {
|
|
7481
7481
|
type: String,
|
|
7482
7482
|
default: ""
|
|
@@ -7554,12 +7554,12 @@ const VideoPlayerV2 = defineComponent({
|
|
|
7554
7554
|
}
|
|
7555
7555
|
const detailRes = await axios.get(`${_prop.baseUrl}/api/vms/v1/camera/getByUuid?uuid=${uuid2}`, {
|
|
7556
7556
|
headers: {
|
|
7557
|
-
token: sessionStorage.getItem("token") || ""
|
|
7557
|
+
token: _prop.token || sessionStorage.getItem("token") || ""
|
|
7558
7558
|
}
|
|
7559
7559
|
});
|
|
7560
7560
|
const res = await axios.get(`${_prop.baseUrl}/api/vms/v1/camera/getWebrtcUrls?uuid=${uuid2}`, {
|
|
7561
7561
|
headers: {
|
|
7562
|
-
token: sessionStorage.getItem("token") || ""
|
|
7562
|
+
token: _prop.token || sessionStorage.getItem("token") || ""
|
|
7563
7563
|
}
|
|
7564
7564
|
});
|
|
7565
7565
|
if (res.status === 200) {
|
package/dist/index.cjs
CHANGED
|
@@ -43,7 +43,7 @@ var axios__default = /*#__PURE__*/_interopDefaultLegacy(axios);
|
|
|
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.9";
|
|
47
47
|
|
|
48
48
|
const setTheme = theme => {
|
|
49
49
|
if (theme === "dark") {
|
|
@@ -8487,11 +8487,11 @@ const props$8 = {
|
|
|
8487
8487
|
require: false,
|
|
8488
8488
|
default: "fill"
|
|
8489
8489
|
},
|
|
8490
|
-
//
|
|
8491
|
-
|
|
8492
|
-
|
|
8493
|
-
|
|
8494
|
-
|
|
8490
|
+
// token
|
|
8491
|
+
token: {
|
|
8492
|
+
type: String,
|
|
8493
|
+
default: ""
|
|
8494
|
+
},
|
|
8495
8495
|
baseUrl: {
|
|
8496
8496
|
type: String,
|
|
8497
8497
|
default: ""
|
|
@@ -8569,12 +8569,12 @@ const VideoPlayerV2 = vue.defineComponent({
|
|
|
8569
8569
|
}
|
|
8570
8570
|
const detailRes = await axios__default["default"].get(`${_prop.baseUrl}/api/vms/v1/camera/getByUuid?uuid=${uuid2}`, {
|
|
8571
8571
|
headers: {
|
|
8572
|
-
token: sessionStorage.getItem("token") || ""
|
|
8572
|
+
token: _prop.token || sessionStorage.getItem("token") || ""
|
|
8573
8573
|
}
|
|
8574
8574
|
});
|
|
8575
8575
|
const res = await axios__default["default"].get(`${_prop.baseUrl}/api/vms/v1/camera/getWebrtcUrls?uuid=${uuid2}`, {
|
|
8576
8576
|
headers: {
|
|
8577
|
-
token: sessionStorage.getItem("token") || ""
|
|
8577
|
+
token: _prop.token || sessionStorage.getItem("token") || ""
|
|
8578
8578
|
}
|
|
8579
8579
|
});
|
|
8580
8580
|
if (res.status === 200) {
|
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.9";
|
|
15
15
|
|
|
16
16
|
declare const _default$o: {
|
|
17
17
|
set(theme: string): void;
|
|
@@ -1157,6 +1157,10 @@ declare const _default$b: vue.DefineComponent<{
|
|
|
1157
1157
|
require: boolean;
|
|
1158
1158
|
default: string;
|
|
1159
1159
|
};
|
|
1160
|
+
token: {
|
|
1161
|
+
type: StringConstructor;
|
|
1162
|
+
default: string;
|
|
1163
|
+
};
|
|
1160
1164
|
baseUrl: {
|
|
1161
1165
|
type: StringConstructor;
|
|
1162
1166
|
default: string;
|
|
@@ -1174,6 +1178,10 @@ declare const _default$b: vue.DefineComponent<{
|
|
|
1174
1178
|
require: boolean;
|
|
1175
1179
|
default: string;
|
|
1176
1180
|
};
|
|
1181
|
+
token: {
|
|
1182
|
+
type: StringConstructor;
|
|
1183
|
+
default: string;
|
|
1184
|
+
};
|
|
1177
1185
|
baseUrl: {
|
|
1178
1186
|
type: StringConstructor;
|
|
1179
1187
|
default: string;
|
|
@@ -1182,6 +1190,7 @@ declare const _default$b: vue.DefineComponent<{
|
|
|
1182
1190
|
onChangeStream?: ((...args: any[]) => any) | undefined;
|
|
1183
1191
|
}, {
|
|
1184
1192
|
fill: string;
|
|
1193
|
+
token: string;
|
|
1185
1194
|
cameraConfig: Record<string, any>;
|
|
1186
1195
|
baseUrl: string;
|
|
1187
1196
|
}, {}>;
|
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.9";
|
|
17
17
|
|
|
18
18
|
const setTheme = theme => {
|
|
19
19
|
if (theme === "dark") {
|
|
@@ -8457,11 +8457,11 @@ const props$8 = {
|
|
|
8457
8457
|
require: false,
|
|
8458
8458
|
default: "fill"
|
|
8459
8459
|
},
|
|
8460
|
-
//
|
|
8461
|
-
|
|
8462
|
-
|
|
8463
|
-
|
|
8464
|
-
|
|
8460
|
+
// token
|
|
8461
|
+
token: {
|
|
8462
|
+
type: String,
|
|
8463
|
+
default: ""
|
|
8464
|
+
},
|
|
8465
8465
|
baseUrl: {
|
|
8466
8466
|
type: String,
|
|
8467
8467
|
default: ""
|
|
@@ -8539,12 +8539,12 @@ const VideoPlayerV2 = defineComponent({
|
|
|
8539
8539
|
}
|
|
8540
8540
|
const detailRes = await axios.get(`${_prop.baseUrl}/api/vms/v1/camera/getByUuid?uuid=${uuid2}`, {
|
|
8541
8541
|
headers: {
|
|
8542
|
-
token: sessionStorage.getItem("token") || ""
|
|
8542
|
+
token: _prop.token || sessionStorage.getItem("token") || ""
|
|
8543
8543
|
}
|
|
8544
8544
|
});
|
|
8545
8545
|
const res = await axios.get(`${_prop.baseUrl}/api/vms/v1/camera/getWebrtcUrls?uuid=${uuid2}`, {
|
|
8546
8546
|
headers: {
|
|
8547
|
-
token: sessionStorage.getItem("token") || ""
|
|
8547
|
+
token: _prop.token || sessionStorage.getItem("token") || ""
|
|
8548
8548
|
}
|
|
8549
8549
|
});
|
|
8550
8550
|
if (res.status === 200) {
|
package/dist/video/index.cjs
CHANGED
|
@@ -4675,11 +4675,11 @@ const props$5 = {
|
|
|
4675
4675
|
require: false,
|
|
4676
4676
|
default: "fill"
|
|
4677
4677
|
},
|
|
4678
|
-
//
|
|
4679
|
-
|
|
4680
|
-
|
|
4681
|
-
|
|
4682
|
-
|
|
4678
|
+
// token
|
|
4679
|
+
token: {
|
|
4680
|
+
type: String,
|
|
4681
|
+
default: ""
|
|
4682
|
+
},
|
|
4683
4683
|
baseUrl: {
|
|
4684
4684
|
type: String,
|
|
4685
4685
|
default: ""
|
|
@@ -4757,12 +4757,12 @@ const VideoPlayerV2 = vue.defineComponent({
|
|
|
4757
4757
|
}
|
|
4758
4758
|
const detailRes = await axios__default["default"].get(`${_prop.baseUrl}/api/vms/v1/camera/getByUuid?uuid=${uuid2}`, {
|
|
4759
4759
|
headers: {
|
|
4760
|
-
token: sessionStorage.getItem("token") || ""
|
|
4760
|
+
token: _prop.token || sessionStorage.getItem("token") || ""
|
|
4761
4761
|
}
|
|
4762
4762
|
});
|
|
4763
4763
|
const res = await axios__default["default"].get(`${_prop.baseUrl}/api/vms/v1/camera/getWebrtcUrls?uuid=${uuid2}`, {
|
|
4764
4764
|
headers: {
|
|
4765
|
-
token: sessionStorage.getItem("token") || ""
|
|
4765
|
+
token: _prop.token || sessionStorage.getItem("token") || ""
|
|
4766
4766
|
}
|
|
4767
4767
|
});
|
|
4768
4768
|
if (res.status === 200) {
|
package/dist/video/index.d.ts
CHANGED
|
@@ -86,6 +86,10 @@ declare const _default$4: vue.DefineComponent<{
|
|
|
86
86
|
require: boolean;
|
|
87
87
|
default: string;
|
|
88
88
|
};
|
|
89
|
+
token: {
|
|
90
|
+
type: StringConstructor;
|
|
91
|
+
default: string;
|
|
92
|
+
};
|
|
89
93
|
baseUrl: {
|
|
90
94
|
type: StringConstructor;
|
|
91
95
|
default: string;
|
|
@@ -103,6 +107,10 @@ declare const _default$4: vue.DefineComponent<{
|
|
|
103
107
|
require: boolean;
|
|
104
108
|
default: string;
|
|
105
109
|
};
|
|
110
|
+
token: {
|
|
111
|
+
type: StringConstructor;
|
|
112
|
+
default: string;
|
|
113
|
+
};
|
|
106
114
|
baseUrl: {
|
|
107
115
|
type: StringConstructor;
|
|
108
116
|
default: string;
|
|
@@ -112,6 +120,7 @@ declare const _default$4: vue.DefineComponent<{
|
|
|
112
120
|
}, {
|
|
113
121
|
fill: string;
|
|
114
122
|
cameraConfig: Record<string, any>;
|
|
123
|
+
token: string;
|
|
115
124
|
baseUrl: string;
|
|
116
125
|
}, {}>;
|
|
117
126
|
|
package/dist/video/index.js
CHANGED
|
@@ -4667,11 +4667,11 @@ const props$5 = {
|
|
|
4667
4667
|
require: false,
|
|
4668
4668
|
default: "fill"
|
|
4669
4669
|
},
|
|
4670
|
-
//
|
|
4671
|
-
|
|
4672
|
-
|
|
4673
|
-
|
|
4674
|
-
|
|
4670
|
+
// token
|
|
4671
|
+
token: {
|
|
4672
|
+
type: String,
|
|
4673
|
+
default: ""
|
|
4674
|
+
},
|
|
4675
4675
|
baseUrl: {
|
|
4676
4676
|
type: String,
|
|
4677
4677
|
default: ""
|
|
@@ -4749,12 +4749,12 @@ const VideoPlayerV2 = defineComponent({
|
|
|
4749
4749
|
}
|
|
4750
4750
|
const detailRes = await axios.get(`${_prop.baseUrl}/api/vms/v1/camera/getByUuid?uuid=${uuid2}`, {
|
|
4751
4751
|
headers: {
|
|
4752
|
-
token: sessionStorage.getItem("token") || ""
|
|
4752
|
+
token: _prop.token || sessionStorage.getItem("token") || ""
|
|
4753
4753
|
}
|
|
4754
4754
|
});
|
|
4755
4755
|
const res = await axios.get(`${_prop.baseUrl}/api/vms/v1/camera/getWebrtcUrls?uuid=${uuid2}`, {
|
|
4756
4756
|
headers: {
|
|
4757
|
-
token: sessionStorage.getItem("token") || ""
|
|
4757
|
+
token: _prop.token || sessionStorage.getItem("token") || ""
|
|
4758
4758
|
}
|
|
4759
4759
|
});
|
|
4760
4760
|
if (res.status === 200) {
|
|
@@ -4673,11 +4673,11 @@ const props = {
|
|
|
4673
4673
|
require: false,
|
|
4674
4674
|
default: "fill"
|
|
4675
4675
|
},
|
|
4676
|
-
//
|
|
4677
|
-
|
|
4678
|
-
|
|
4679
|
-
|
|
4680
|
-
|
|
4676
|
+
// token
|
|
4677
|
+
token: {
|
|
4678
|
+
type: String,
|
|
4679
|
+
default: ""
|
|
4680
|
+
},
|
|
4681
4681
|
baseUrl: {
|
|
4682
4682
|
type: String,
|
|
4683
4683
|
default: ""
|
|
@@ -4755,12 +4755,12 @@ const VideoPlayerV2 = vue.defineComponent({
|
|
|
4755
4755
|
}
|
|
4756
4756
|
const detailRes = await axios__default["default"].get(`${_prop.baseUrl}/api/vms/v1/camera/getByUuid?uuid=${uuid2}`, {
|
|
4757
4757
|
headers: {
|
|
4758
|
-
token: sessionStorage.getItem("token") || ""
|
|
4758
|
+
token: _prop.token || sessionStorage.getItem("token") || ""
|
|
4759
4759
|
}
|
|
4760
4760
|
});
|
|
4761
4761
|
const res = await axios__default["default"].get(`${_prop.baseUrl}/api/vms/v1/camera/getWebrtcUrls?uuid=${uuid2}`, {
|
|
4762
4762
|
headers: {
|
|
4763
|
-
token: sessionStorage.getItem("token") || ""
|
|
4763
|
+
token: _prop.token || sessionStorage.getItem("token") || ""
|
|
4764
4764
|
}
|
|
4765
4765
|
});
|
|
4766
4766
|
if (res.status === 200) {
|
|
@@ -19,6 +19,10 @@ declare const _default: vue.DefineComponent<{
|
|
|
19
19
|
require: boolean;
|
|
20
20
|
default: string;
|
|
21
21
|
};
|
|
22
|
+
token: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
default: string;
|
|
25
|
+
};
|
|
22
26
|
baseUrl: {
|
|
23
27
|
type: StringConstructor;
|
|
24
28
|
default: string;
|
|
@@ -36,6 +40,10 @@ declare const _default: vue.DefineComponent<{
|
|
|
36
40
|
require: boolean;
|
|
37
41
|
default: string;
|
|
38
42
|
};
|
|
43
|
+
token: {
|
|
44
|
+
type: StringConstructor;
|
|
45
|
+
default: string;
|
|
46
|
+
};
|
|
39
47
|
baseUrl: {
|
|
40
48
|
type: StringConstructor;
|
|
41
49
|
default: string;
|
|
@@ -45,6 +53,7 @@ declare const _default: vue.DefineComponent<{
|
|
|
45
53
|
}, {
|
|
46
54
|
fill: string;
|
|
47
55
|
cameraConfig: Record<string, any>;
|
|
56
|
+
token: string;
|
|
48
57
|
baseUrl: string;
|
|
49
58
|
}, {}>;
|
|
50
59
|
|
|
@@ -4665,11 +4665,11 @@ const props = {
|
|
|
4665
4665
|
require: false,
|
|
4666
4666
|
default: "fill"
|
|
4667
4667
|
},
|
|
4668
|
-
//
|
|
4669
|
-
|
|
4670
|
-
|
|
4671
|
-
|
|
4672
|
-
|
|
4668
|
+
// token
|
|
4669
|
+
token: {
|
|
4670
|
+
type: String,
|
|
4671
|
+
default: ""
|
|
4672
|
+
},
|
|
4673
4673
|
baseUrl: {
|
|
4674
4674
|
type: String,
|
|
4675
4675
|
default: ""
|
|
@@ -4747,12 +4747,12 @@ const VideoPlayerV2 = defineComponent({
|
|
|
4747
4747
|
}
|
|
4748
4748
|
const detailRes = await axios.get(`${_prop.baseUrl}/api/vms/v1/camera/getByUuid?uuid=${uuid2}`, {
|
|
4749
4749
|
headers: {
|
|
4750
|
-
token: sessionStorage.getItem("token") || ""
|
|
4750
|
+
token: _prop.token || sessionStorage.getItem("token") || ""
|
|
4751
4751
|
}
|
|
4752
4752
|
});
|
|
4753
4753
|
const res = await axios.get(`${_prop.baseUrl}/api/vms/v1/camera/getWebrtcUrls?uuid=${uuid2}`, {
|
|
4754
4754
|
headers: {
|
|
4755
|
-
token: sessionStorage.getItem("token") || ""
|
|
4755
|
+
token: _prop.token || sessionStorage.getItem("token") || ""
|
|
4756
4756
|
}
|
|
4757
4757
|
});
|
|
4758
4758
|
if (res.status === 200) {
|