@cmstops/pro-compo 3.10.5-stable.3 → 3.10.5-stable.5

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.
@@ -41,10 +41,10 @@ const _sfc_main = defineComponent({
41
41
  }
42
42
  if (["special", "special_v3"].includes(series)) {
43
43
  extra.topImageTitleValid = false;
44
- extra.topImageTitle = "\u4E13\u9898\u5934\u56FE";
44
+ extra.topImageTitle = "\u4E13\u9898/\u5408\u96C6\u5934\u56FE";
45
45
  } else {
46
46
  if (["video_album", "audio_album"].includes(series)) {
47
- extra.topImageTitle = "\u5C01\u9762\u5934\u56FE";
47
+ extra.topImageTitle = "\u4E13\u9898/\u5408\u96C6\u5934\u56FE";
48
48
  } else {
49
49
  extra.topImageTitle = "\u64AD\u653E\u5668\u80CC\u666F\u56FE";
50
50
  }
@@ -189,7 +189,7 @@ const _sfc_main = defineComponent({
189
189
  }
190
190
  emits("change", result);
191
191
  },
192
- { deep: true }
192
+ { deep: true, immediate: true }
193
193
  );
194
194
  onMounted(() => {
195
195
  load();
@@ -42,10 +42,10 @@ const _sfc_main = vue.defineComponent({
42
42
  }
43
43
  if (["special", "special_v3"].includes(series)) {
44
44
  extra.topImageTitleValid = false;
45
- extra.topImageTitle = "\u4E13\u9898\u5934\u56FE";
45
+ extra.topImageTitle = "\u4E13\u9898/\u5408\u96C6\u5934\u56FE";
46
46
  } else {
47
47
  if (["video_album", "audio_album"].includes(series)) {
48
- extra.topImageTitle = "\u5C01\u9762\u5934\u56FE";
48
+ extra.topImageTitle = "\u4E13\u9898/\u5408\u96C6\u5934\u56FE";
49
49
  } else {
50
50
  extra.topImageTitle = "\u64AD\u653E\u5668\u80CC\u666F\u56FE";
51
51
  }
@@ -190,7 +190,7 @@ const _sfc_main = vue.defineComponent({
190
190
  }
191
191
  emits("change", result);
192
192
  },
193
- { deep: true }
193
+ { deep: true, immediate: true }
194
194
  );
195
195
  vue.onMounted(() => {
196
196
  load();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cmstops/pro-compo",
3
- "version": "3.10.5-stable.3",
3
+ "version": "3.10.5-stable.5",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "vue",
@@ -26,7 +26,15 @@
26
26
  "build:doc": "npx storybook build",
27
27
  "test": "arco-vue-scripts test",
28
28
  "add:component": "node ./scripts/add-component.js",
29
- "prepublishOnly": "npm run build"
29
+ "prepublishOnly": "npm run build",
30
+ "version:prerelease": "npm version prerelease --preid=stable",
31
+ "version:patch": "npm version patch",
32
+ "version:minor": "npm version minor",
33
+ "version:major": "npm version major",
34
+ "publish:stable": "npm run version:prerelease && npm publish --tag stable",
35
+ "publish:patch": "npm run version:patch && npm publish",
36
+ "publish:minor": "npm run version:minor && npm publish",
37
+ "publish:major": "npm run version:major && npm publish"
30
38
  },
31
39
  "husky": {
32
40
  "hooks": {