inl-ui 0.1.133 → 0.1.134
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 -3
- package/dist/components/index.js +2 -3
- package/dist/index.cjs +3 -4
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -4
- package/dist/video/index.cjs +2 -3
- package/dist/video/index.js +2 -3
- package/package.json +1 -1
|
@@ -10061,7 +10061,6 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
10061
10061
|
textBox = document.createElement("div");
|
|
10062
10062
|
textBox.id = "textBox_" + uuid.value;
|
|
10063
10063
|
textBox.style.position = "absolute";
|
|
10064
|
-
textBox.style.width = "100%";
|
|
10065
10064
|
textBox.style.left = "0";
|
|
10066
10065
|
textBox.style.zIndex = "1000";
|
|
10067
10066
|
textBox.style.pointerEvents = "none";
|
|
@@ -10120,8 +10119,8 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
10120
10119
|
const marginTop = height * 0.1 + margin;
|
|
10121
10120
|
textBox2.innerHTML = data.text;
|
|
10122
10121
|
textBox2.style.top = marginTop + "px";
|
|
10123
|
-
textBox2.style.backgroundColor = "rgba(255, 255, 255, 0.
|
|
10124
|
-
textBox2.style.color = data.text_color || "
|
|
10122
|
+
textBox2.style.backgroundColor = "rgba(255, 255, 255, 0.2)";
|
|
10123
|
+
textBox2.style.color = data.text_color || "black";
|
|
10125
10124
|
textBox2.style.fontSize = `${fontSize}px`;
|
|
10126
10125
|
textBox2.style.padding = `${margin}px`;
|
|
10127
10126
|
} else {
|
package/dist/components/index.js
CHANGED
|
@@ -10032,7 +10032,6 @@ const VideoBoxV2 = defineComponent({
|
|
|
10032
10032
|
textBox = document.createElement("div");
|
|
10033
10033
|
textBox.id = "textBox_" + uuid.value;
|
|
10034
10034
|
textBox.style.position = "absolute";
|
|
10035
|
-
textBox.style.width = "100%";
|
|
10036
10035
|
textBox.style.left = "0";
|
|
10037
10036
|
textBox.style.zIndex = "1000";
|
|
10038
10037
|
textBox.style.pointerEvents = "none";
|
|
@@ -10091,8 +10090,8 @@ const VideoBoxV2 = defineComponent({
|
|
|
10091
10090
|
const marginTop = height * 0.1 + margin;
|
|
10092
10091
|
textBox2.innerHTML = data.text;
|
|
10093
10092
|
textBox2.style.top = marginTop + "px";
|
|
10094
|
-
textBox2.style.backgroundColor = "rgba(255, 255, 255, 0.
|
|
10095
|
-
textBox2.style.color = data.text_color || "
|
|
10093
|
+
textBox2.style.backgroundColor = "rgba(255, 255, 255, 0.2)";
|
|
10094
|
+
textBox2.style.color = data.text_color || "black";
|
|
10096
10095
|
textBox2.style.fontSize = `${fontSize}px`;
|
|
10097
10096
|
textBox2.style.padding = `${margin}px`;
|
|
10098
10097
|
} else {
|
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.133";
|
|
49
49
|
|
|
50
50
|
const setTheme = theme => {
|
|
51
51
|
if (theme === "dark") {
|
|
@@ -11047,7 +11047,6 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
11047
11047
|
textBox = document.createElement("div");
|
|
11048
11048
|
textBox.id = "textBox_" + uuid.value;
|
|
11049
11049
|
textBox.style.position = "absolute";
|
|
11050
|
-
textBox.style.width = "100%";
|
|
11051
11050
|
textBox.style.left = "0";
|
|
11052
11051
|
textBox.style.zIndex = "1000";
|
|
11053
11052
|
textBox.style.pointerEvents = "none";
|
|
@@ -11106,8 +11105,8 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
11106
11105
|
const marginTop = height * 0.1 + margin;
|
|
11107
11106
|
textBox2.innerHTML = data.text;
|
|
11108
11107
|
textBox2.style.top = marginTop + "px";
|
|
11109
|
-
textBox2.style.backgroundColor = "rgba(255, 255, 255, 0.
|
|
11110
|
-
textBox2.style.color = data.text_color || "
|
|
11108
|
+
textBox2.style.backgroundColor = "rgba(255, 255, 255, 0.2)";
|
|
11109
|
+
textBox2.style.color = data.text_color || "black";
|
|
11111
11110
|
textBox2.style.fontSize = `${fontSize}px`;
|
|
11112
11111
|
textBox2.style.padding = `${margin}px`;
|
|
11113
11112
|
} else {
|
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.133";
|
|
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.133";
|
|
18
18
|
|
|
19
19
|
const setTheme = theme => {
|
|
20
20
|
if (theme === "dark") {
|
|
@@ -11016,7 +11016,6 @@ const VideoBoxV2 = defineComponent({
|
|
|
11016
11016
|
textBox = document.createElement("div");
|
|
11017
11017
|
textBox.id = "textBox_" + uuid.value;
|
|
11018
11018
|
textBox.style.position = "absolute";
|
|
11019
|
-
textBox.style.width = "100%";
|
|
11020
11019
|
textBox.style.left = "0";
|
|
11021
11020
|
textBox.style.zIndex = "1000";
|
|
11022
11021
|
textBox.style.pointerEvents = "none";
|
|
@@ -11075,8 +11074,8 @@ const VideoBoxV2 = defineComponent({
|
|
|
11075
11074
|
const marginTop = height * 0.1 + margin;
|
|
11076
11075
|
textBox2.innerHTML = data.text;
|
|
11077
11076
|
textBox2.style.top = marginTop + "px";
|
|
11078
|
-
textBox2.style.backgroundColor = "rgba(255, 255, 255, 0.
|
|
11079
|
-
textBox2.style.color = data.text_color || "
|
|
11077
|
+
textBox2.style.backgroundColor = "rgba(255, 255, 255, 0.2)";
|
|
11078
|
+
textBox2.style.color = data.text_color || "black";
|
|
11080
11079
|
textBox2.style.fontSize = `${fontSize}px`;
|
|
11081
11080
|
textBox2.style.padding = `${margin}px`;
|
|
11082
11081
|
} else {
|
package/dist/video/index.cjs
CHANGED
|
@@ -7100,7 +7100,6 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
7100
7100
|
textBox = document.createElement("div");
|
|
7101
7101
|
textBox.id = "textBox_" + uuid.value;
|
|
7102
7102
|
textBox.style.position = "absolute";
|
|
7103
|
-
textBox.style.width = "100%";
|
|
7104
7103
|
textBox.style.left = "0";
|
|
7105
7104
|
textBox.style.zIndex = "1000";
|
|
7106
7105
|
textBox.style.pointerEvents = "none";
|
|
@@ -7159,8 +7158,8 @@ const VideoBoxV2 = vue.defineComponent({
|
|
|
7159
7158
|
const marginTop = height * 0.1 + margin;
|
|
7160
7159
|
textBox2.innerHTML = data.text;
|
|
7161
7160
|
textBox2.style.top = marginTop + "px";
|
|
7162
|
-
textBox2.style.backgroundColor = "rgba(255, 255, 255, 0.
|
|
7163
|
-
textBox2.style.color = data.text_color || "
|
|
7161
|
+
textBox2.style.backgroundColor = "rgba(255, 255, 255, 0.2)";
|
|
7162
|
+
textBox2.style.color = data.text_color || "black";
|
|
7164
7163
|
textBox2.style.fontSize = `${fontSize}px`;
|
|
7165
7164
|
textBox2.style.padding = `${margin}px`;
|
|
7166
7165
|
} else {
|
package/dist/video/index.js
CHANGED
|
@@ -7073,7 +7073,6 @@ const VideoBoxV2 = defineComponent({
|
|
|
7073
7073
|
textBox = document.createElement("div");
|
|
7074
7074
|
textBox.id = "textBox_" + uuid.value;
|
|
7075
7075
|
textBox.style.position = "absolute";
|
|
7076
|
-
textBox.style.width = "100%";
|
|
7077
7076
|
textBox.style.left = "0";
|
|
7078
7077
|
textBox.style.zIndex = "1000";
|
|
7079
7078
|
textBox.style.pointerEvents = "none";
|
|
@@ -7132,8 +7131,8 @@ const VideoBoxV2 = defineComponent({
|
|
|
7132
7131
|
const marginTop = height * 0.1 + margin;
|
|
7133
7132
|
textBox2.innerHTML = data.text;
|
|
7134
7133
|
textBox2.style.top = marginTop + "px";
|
|
7135
|
-
textBox2.style.backgroundColor = "rgba(255, 255, 255, 0.
|
|
7136
|
-
textBox2.style.color = data.text_color || "
|
|
7134
|
+
textBox2.style.backgroundColor = "rgba(255, 255, 255, 0.2)";
|
|
7135
|
+
textBox2.style.color = data.text_color || "black";
|
|
7137
7136
|
textBox2.style.fontSize = `${fontSize}px`;
|
|
7138
7137
|
textBox2.style.padding = `${margin}px`;
|
|
7139
7138
|
} else {
|