mtxt-ui3 0.0.36 → 0.0.37
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 +1 -1
- package/dist/components/index.js +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/video/index.cjs +1 -1
- package/dist/video/index.js +1 -1
- package/package.json +1 -1
package/dist/components/index.js
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -21,7 +21,7 @@ var ___default = /*#__PURE__*/_interopDefaultLegacy(_);
|
|
|
21
21
|
var dayjs__default = /*#__PURE__*/_interopDefaultLegacy(dayjs);
|
|
22
22
|
var zhCN__default = /*#__PURE__*/_interopDefaultLegacy(zhCN);
|
|
23
23
|
|
|
24
|
-
var version = "0.0.
|
|
24
|
+
var version = "0.0.36";
|
|
25
25
|
|
|
26
26
|
const setRem = opt => {
|
|
27
27
|
const fontSize = opt.fontSize || 14;
|
|
@@ -7259,7 +7259,7 @@ const VideoPlayerV2 = vue.defineComponent({
|
|
|
7259
7259
|
};
|
|
7260
7260
|
const videoInfo2 = vue.ref({});
|
|
7261
7261
|
const stopPlay = () => {
|
|
7262
|
-
if (play) {
|
|
7262
|
+
if ("stopPlay" in play) {
|
|
7263
7263
|
play.stopPlay(`videoPlayer_${uuid}`);
|
|
7264
7264
|
}
|
|
7265
7265
|
};
|
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -9,7 +9,7 @@ import { SearchOutlined, CaretUpOutlined, CaretRightOutlined, CaretDownOutlined,
|
|
|
9
9
|
import 'ant-design-vue/dist/antd.less';
|
|
10
10
|
import zhCN from 'dayjs/locale/zh-cn';
|
|
11
11
|
|
|
12
|
-
var version = "0.0.
|
|
12
|
+
var version = "0.0.36";
|
|
13
13
|
|
|
14
14
|
const setRem = opt => {
|
|
15
15
|
const fontSize = opt.fontSize || 14;
|
|
@@ -7247,7 +7247,7 @@ const VideoPlayerV2 = defineComponent({
|
|
|
7247
7247
|
};
|
|
7248
7248
|
const videoInfo2 = ref({});
|
|
7249
7249
|
const stopPlay = () => {
|
|
7250
|
-
if (play) {
|
|
7250
|
+
if ("stopPlay" in play) {
|
|
7251
7251
|
play.stopPlay(`videoPlayer_${uuid}`);
|
|
7252
7252
|
}
|
|
7253
7253
|
};
|
package/dist/video/index.cjs
CHANGED
package/dist/video/index.js
CHANGED