askbot-dragon 0.7.14 → 0.7.15

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "askbot-dragon",
3
- "version": "0.7.14",
3
+ "version": "0.7.15",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
@@ -12,7 +12,7 @@
12
12
  :src="src"
13
13
  controls="controls"
14
14
  x5-video-player-type="h5-page"
15
- style="object-fit: contain;width: calc(100vw - 139px);height: 160px;background-color: black;border-radius: 17px;max-width: 230px;"
15
+ style="object-fit: contain;width: calc(100vw - 139px);height: 160px;background-color: black;border-radius: 25px;max-width: 230px;"
16
16
  class="video-player vjs-custom-skin"
17
17
  :id="msg.keyId"/>
18
18
  </div>
@@ -22,7 +22,7 @@
22
22
  <!-- LPY 原生宽度适配有bug,弃用 -->
23
23
  <img
24
24
  :src="msg.content.url"
25
- style="height: auto; width: calc(100vw - 137px);border-radius: 17px;max-width: 230px"
25
+ style="height: auto; width: calc(100vw - 137px);border-radius: 25px;max-width: 230px"
26
26
  @click="onImageClick(msg.content.url)"
27
27
  class="img-class"
28
28
  />
@@ -52,7 +52,7 @@
52
52
  const regex = new RegExp("<img", "gi");
53
53
  return html.replace(
54
54
  regex,
55
- "<img style='max-width: 230px;' onclick='imageOnClick(this)'"
55
+ "<img style='max-width: 230px;border-radius: 25px;' onclick='imageOnClick(this)'"
56
56
  );
57
57
  },
58
58
  },