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.
@@ -6728,7 +6728,7 @@ const VideoPlayerV2 = vue.defineComponent({
6728
6728
  };
6729
6729
  const videoInfo2 = vue.ref({});
6730
6730
  const stopPlay = () => {
6731
- if (play) {
6731
+ if ("stopPlay" in play) {
6732
6732
  play.stopPlay(`videoPlayer_${uuid}`);
6733
6733
  }
6734
6734
  };
@@ -6718,7 +6718,7 @@ const VideoPlayerV2 = defineComponent({
6718
6718
  };
6719
6719
  const videoInfo2 = ref({});
6720
6720
  const stopPlay = () => {
6721
- if (play) {
6721
+ if ("stopPlay" in play) {
6722
6722
  play.stopPlay(`videoPlayer_${uuid}`);
6723
6723
  }
6724
6724
  };
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.35";
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
@@ -7,7 +7,7 @@ import { MaybeRef, MaybeComputedRef } from '@vueuse/core';
7
7
  import { Key } from 'ant-design-vue/lib/table/interface';
8
8
  import * as vue_jsx_runtime from 'vue/jsx-runtime';
9
9
 
10
- var version = "0.0.35";
10
+ var version = "0.0.36";
11
11
 
12
12
  /**
13
13
  *
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.35";
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
  };
@@ -5971,7 +5971,7 @@ const VideoPlayerV2 = vue.defineComponent({
5971
5971
  };
5972
5972
  const videoInfo2 = vue.ref({});
5973
5973
  const stopPlay = () => {
5974
- if (play) {
5974
+ if ("stopPlay" in play) {
5975
5975
  play.stopPlay(`videoPlayer_${uuid}`);
5976
5976
  }
5977
5977
  };
@@ -5963,7 +5963,7 @@ const VideoPlayerV2 = defineComponent({
5963
5963
  };
5964
5964
  const videoInfo2 = ref({});
5965
5965
  const stopPlay = () => {
5966
- if (play) {
5966
+ if ("stopPlay" in play) {
5967
5967
  play.stopPlay(`videoPlayer_${uuid}`);
5968
5968
  }
5969
5969
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mtxt-ui3",
3
- "version": "0.0.36",
3
+ "version": "0.0.37",
4
4
  "description": "系统运营组件库",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",