Skip to content

Commit 19e7504

Browse files
authored
Merge pull request #65 from alan-wu/2.0.8
2.0.8
2 parents 39b87b7 + f3bd33d commit 19e7504

File tree

4 files changed

+25
-19
lines changed

4 files changed

+25
-19
lines changed

package-lock.json

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,28 @@
11
{
22
"name": "@abi-software/simulationvuer",
3-
"version": "2.0.6",
3+
"version": "2.0.7",
44
"private": false,
55
"scripts": {
66
"serve": "vite serve --host",
77
"build-bundle": "vite build",
88
"vuese-gen": "node vuese-generator.js",
99
"vuese-watch": "node vuese-generator.js watch",
10+
"version": "npm run build-bundle;",
11+
"release:beta": "npm version prerelease --preid=beta; npm publish --tag beta",
12+
"release:minor": "npm version minor; npm publish",
13+
"release:patch": "npm version patch; npm publish",
1014
"docs:dev": "vitepress dev docs",
1115
"docs:watch": "concurrently \"npm run vuese-watch\" \"npm run docs:dev\"",
1216
"docs:build": "npm run vuese-gen; vitepress build docs",
1317
"docs:preview": "vitepress preview docs"
1418
},
1519
"dependencies": {
16-
"@abi-software/plotvuer": "^1.0.2",
17-
"element-plus": "^2.5.3",
20+
"@abi-software/plotvuer": "^1.0.3",
21+
"element-plus": "2.8.4",
1822
"jsonschema": "^1.4.0",
1923
"mathjs": "^13.0.2",
2024
"unplugin-vue-components": "^0.26.0",
21-
"vue": "^3.4.15"
25+
"vue": "^3.4.21"
2226
},
2327
"devDependencies": {
2428
"@vitejs/plugin-vue": "^5.0.3",

src/App.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ export default {
9696
}
9797
9898
.el-radio-button__original-radio:checked+.el-radio-button__inner {
99-
background-color: #8300bf;
100-
border-color: #8300bf;
99+
background-color: #8300bf!important;
100+
border-color: #8300bf!important;
101101
color: white;
102102
}
103103

src/components.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ declare module 'vue' {
1111
ElDivider: typeof import('element-plus/es')['ElDivider']
1212
ElInputNumber: typeof import('element-plus/es')['ElInputNumber']
1313
ElOption: typeof import('element-plus/es')['ElOption']
14+
ElRadioButton: typeof import('element-plus/es')['ElRadioButton']
15+
ElRadioGroup: typeof import('element-plus/es')['ElRadioGroup']
1416
ElSelect: typeof import('element-plus/es')['ElSelect']
1517
ElSlider: typeof import('element-plus/es')['ElSlider']
1618
RouterLink: typeof import('vue-router')['RouterLink']

0 commit comments

Comments
 (0)