Skip to content

Commit

Permalink
Merge pull request #65 from alan-wu/2.0.8
Browse files Browse the repository at this point in the history
2.0.8
  • Loading branch information
alan-wu authored Oct 8, 2024
2 parents 39b87b7 + f3bd33d commit 19e7504
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 19 deletions.
26 changes: 13 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 8 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,28 @@
{
"name": "@abi-software/simulationvuer",
"version": "2.0.6",
"version": "2.0.7",
"private": false,
"scripts": {
"serve": "vite serve --host",
"build-bundle": "vite build",
"vuese-gen": "node vuese-generator.js",
"vuese-watch": "node vuese-generator.js watch",
"version": "npm run build-bundle;",
"release:beta": "npm version prerelease --preid=beta; npm publish --tag beta",
"release:minor": "npm version minor; npm publish",
"release:patch": "npm version patch; npm publish",
"docs:dev": "vitepress dev docs",
"docs:watch": "concurrently \"npm run vuese-watch\" \"npm run docs:dev\"",
"docs:build": "npm run vuese-gen; vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@abi-software/plotvuer": "^1.0.2",
"element-plus": "^2.5.3",
"@abi-software/plotvuer": "^1.0.3",
"element-plus": "2.8.4",
"jsonschema": "^1.4.0",
"mathjs": "^13.0.2",
"unplugin-vue-components": "^0.26.0",
"vue": "^3.4.15"
"vue": "^3.4.21"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.3",
Expand Down
4 changes: 2 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ export default {
}
.el-radio-button__original-radio:checked+.el-radio-button__inner {
background-color: #8300bf;
border-color: #8300bf;
background-color: #8300bf!important;
border-color: #8300bf!important;
color: white;
}
Expand Down
2 changes: 2 additions & 0 deletions src/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ declare module 'vue' {
ElDivider: typeof import('element-plus/es')['ElDivider']
ElInputNumber: typeof import('element-plus/es')['ElInputNumber']
ElOption: typeof import('element-plus/es')['ElOption']
ElRadioButton: typeof import('element-plus/es')['ElRadioButton']
ElRadioGroup: typeof import('element-plus/es')['ElRadioGroup']
ElSelect: typeof import('element-plus/es')['ElSelect']
ElSlider: typeof import('element-plus/es')['ElSlider']
RouterLink: typeof import('vue-router')['RouterLink']
Expand Down

0 comments on commit 19e7504

Please sign in to comment.