@abi-software/simulationvuer 4.0.5 → 4.2.0
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/dist/simulationvuer.js +74014 -70399
- package/dist/simulationvuer.umd.cjs +1357 -1375
- package/dist/style.css +2 -1
- package/eslint.config.js +40 -0
- package/package.json +28 -40
- package/src/assets/styles.scss +3 -2
- package/src/components.d.ts +9 -2
- package/vite.config.js +14 -0
package/eslint.config.js
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import js from "@eslint/js";
|
|
2
|
+
import prettier from "eslint-plugin-prettier";
|
|
3
|
+
import prettierConfig from "eslint-config-prettier";
|
|
4
|
+
import vue from "eslint-plugin-vue";
|
|
5
|
+
import globals from "globals";
|
|
6
|
+
|
|
7
|
+
export default [
|
|
8
|
+
{
|
|
9
|
+
ignores: ["dist/**", "docs/.vitepress/**", "docs/components/**"],
|
|
10
|
+
},
|
|
11
|
+
js.configs.recommended,
|
|
12
|
+
...vue.configs["flat/essential"],
|
|
13
|
+
prettierConfig,
|
|
14
|
+
{
|
|
15
|
+
files: ["**/*.{js,vue}"],
|
|
16
|
+
plugins: {
|
|
17
|
+
prettier,
|
|
18
|
+
},
|
|
19
|
+
languageOptions: {
|
|
20
|
+
ecmaVersion: "latest",
|
|
21
|
+
sourceType: "module",
|
|
22
|
+
globals: {
|
|
23
|
+
...globals.node,
|
|
24
|
+
...globals.browser,
|
|
25
|
+
},
|
|
26
|
+
},
|
|
27
|
+
rules: {
|
|
28
|
+
"prettier/prettier": "error",
|
|
29
|
+
"arrow-body-style": "off",
|
|
30
|
+
"prefer-arrow-callback": "off",
|
|
31
|
+
"no-unused-vars": [
|
|
32
|
+
"error",
|
|
33
|
+
{
|
|
34
|
+
argsIgnorePattern: "^_",
|
|
35
|
+
caughtErrorsIgnorePattern: "^_",
|
|
36
|
+
},
|
|
37
|
+
],
|
|
38
|
+
},
|
|
39
|
+
},
|
|
40
|
+
];
|
package/package.json
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abi-software/simulationvuer",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"private": false,
|
|
5
|
+
"engines": {
|
|
6
|
+
"node": ">=20"
|
|
7
|
+
},
|
|
5
8
|
"scripts": {
|
|
6
9
|
"serve": "vite serve --host --force",
|
|
7
10
|
"build-bundle": "vite build",
|
|
@@ -10,7 +13,7 @@
|
|
|
10
13
|
"vuese-watch": "node vuese-generator.js watch",
|
|
11
14
|
"format": "prettier --write .",
|
|
12
15
|
"format:check": "prettier --check .",
|
|
13
|
-
"lint": "eslint .
|
|
16
|
+
"lint": "eslint .",
|
|
14
17
|
"release:beta": "npm version prerelease --preid=beta; npm publish --tag beta",
|
|
15
18
|
"release:minor": "npm version minor; npm publish",
|
|
16
19
|
"release:patch": "npm version patch; npm publish",
|
|
@@ -20,56 +23,41 @@
|
|
|
20
23
|
"docs:preview": "vitepress preview docs"
|
|
21
24
|
},
|
|
22
25
|
"dependencies": {
|
|
23
|
-
"@abi-software/plotvuer": "1.0
|
|
26
|
+
"@abi-software/plotvuer": "1.3.0",
|
|
24
27
|
"@opencor/opencor": "^0.20260804.0",
|
|
25
|
-
"element-plus": "2.
|
|
28
|
+
"element-plus": "^2.14.5",
|
|
26
29
|
"jsonschema": "^1.5.0",
|
|
27
30
|
"mathjs": "^15.2.0",
|
|
28
|
-
"
|
|
29
|
-
"vue": "
|
|
31
|
+
"vue": "^3.5.41",
|
|
32
|
+
"vue-router": "^5.2.0"
|
|
30
33
|
},
|
|
31
34
|
"devDependencies": {
|
|
32
|
-
"@babel/eslint-parser": "^
|
|
33
|
-
"@
|
|
35
|
+
"@babel/eslint-parser": "^8.0.1",
|
|
36
|
+
"@eslint/js": "^10.0.1",
|
|
37
|
+
"@vitejs/plugin-vue": "^6.0.8",
|
|
34
38
|
"@vuese/markdown-render": "^2.11.3",
|
|
35
|
-
"babel-eslint": "^10.1.0",
|
|
36
39
|
"babel-plugin-component": "^1.1.1",
|
|
37
40
|
"base64-inline-loader": "^2.0.1",
|
|
38
|
-
"chokidar": "^
|
|
39
|
-
"concurrently": "^
|
|
40
|
-
"
|
|
41
|
-
"eslint
|
|
41
|
+
"chokidar": "^5.0.0",
|
|
42
|
+
"concurrently": "^9.2.4",
|
|
43
|
+
"globals": "^17.11.0",
|
|
44
|
+
"eslint": "^10.9.1",
|
|
45
|
+
"eslint-config-prettier": "^10.1.8",
|
|
42
46
|
"eslint-plugin-prettier": "^5.5.6",
|
|
43
|
-
"eslint-plugin-vue": "^
|
|
44
|
-
"jsonschema": "^1.5.0",
|
|
45
|
-
"mathjs": "^15.2.0",
|
|
47
|
+
"eslint-plugin-vue": "^10.10.0",
|
|
46
48
|
"prettier": "^3.9.6",
|
|
47
|
-
"sass": "^1.
|
|
48
|
-
"unplugin-vue-components": "^
|
|
49
|
-
"vite": "^
|
|
49
|
+
"sass": "^1.103.1",
|
|
50
|
+
"unplugin-vue-components": "^32.1.0",
|
|
51
|
+
"vite": "^8.2.1",
|
|
50
52
|
"vitepress": "^1.6.4",
|
|
51
|
-
"vue-docgen-api": "^4.79.2"
|
|
52
|
-
"vue-router": "4.2.5",
|
|
53
|
-
"webpack-node-externals": "^2.5.2"
|
|
53
|
+
"vue-docgen-api": "^4.79.2"
|
|
54
54
|
},
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
"
|
|
61
|
-
"eslint:recommended",
|
|
62
|
-
"plugin:prettier/recommended",
|
|
63
|
-
"plugin:vue/essential"
|
|
64
|
-
],
|
|
65
|
-
"env": {
|
|
66
|
-
"node": true
|
|
67
|
-
},
|
|
68
|
-
"parserOptions": {
|
|
69
|
-
"parser": "@babel/eslint-parser",
|
|
70
|
-
"requireConfigFile": false
|
|
71
|
-
},
|
|
72
|
-
"rules": {}
|
|
55
|
+
"optionalDependencies": {
|
|
56
|
+
"@esbuild/darwin-arm64": "0.28.2",
|
|
57
|
+
"@esbuild/linux-x64": "0.28.2",
|
|
58
|
+
"@rollup/rollup-darwin-arm64": "4.63.0",
|
|
59
|
+
"@rollup/rollup-linux-x64-gnu": "4.63.0",
|
|
60
|
+
"@rollup/rollup-win32-x64-msvc": "4.63.0"
|
|
73
61
|
},
|
|
74
62
|
"browserslist": [
|
|
75
63
|
"> 1%",
|
package/src/assets/styles.scss
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use "_variables" as *;
|
|
2
|
+
@forward "_variables";
|
|
2
3
|
|
|
3
|
-
@import "
|
|
4
|
+
@import url("https://fonts.googleapis.com/css?family=Asap:400,400i,500,600,700&display=swap");
|
|
4
5
|
|
|
5
6
|
/* icon font path, required */
|
|
6
7
|
$--color-primary: $app-primary-color !default;
|
package/src/components.d.ts
CHANGED
|
@@ -1,16 +1,23 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
|
-
/* prettier-ignore */
|
|
3
2
|
// @ts-nocheck
|
|
3
|
+
// biome-ignore lint: disable
|
|
4
|
+
// oxlint-disable
|
|
5
|
+
// ------
|
|
4
6
|
// Generated by unplugin-vue-components
|
|
5
7
|
// Read more: https://github.com/vuejs/core/pull/3399
|
|
8
|
+
|
|
6
9
|
export {}
|
|
7
10
|
|
|
11
|
+
/* prettier-ignore */
|
|
8
12
|
declare module 'vue' {
|
|
9
13
|
export interface GlobalComponents {
|
|
10
14
|
ElButton: typeof import('element-plus/es')['ElButton']
|
|
15
|
+
ElDialog: typeof import('element-plus/es')['ElDialog']
|
|
11
16
|
ElDivider: typeof import('element-plus/es')['ElDivider']
|
|
12
17
|
ElInputNumber: typeof import('element-plus/es')['ElInputNumber']
|
|
13
18
|
ElOption: typeof import('element-plus/es')['ElOption']
|
|
19
|
+
ElRadioButton: typeof import('element-plus/es')['ElRadioButton']
|
|
20
|
+
ElRadioGroup: typeof import('element-plus/es')['ElRadioGroup']
|
|
14
21
|
ElSelect: typeof import('element-plus/es')['ElSelect']
|
|
15
22
|
ElSlider: typeof import('element-plus/es')['ElSlider']
|
|
16
23
|
RouterLink: typeof import('vue-router')['RouterLink']
|
|
@@ -18,7 +25,7 @@ declare module 'vue' {
|
|
|
18
25
|
SimulationVuer: typeof import('./components/SimulationVuer.vue')['default']
|
|
19
26
|
SimulationVuerInput: typeof import('./components/SimulationVuerInput.vue')['default']
|
|
20
27
|
}
|
|
21
|
-
export interface
|
|
28
|
+
export interface GlobalDirectives {
|
|
22
29
|
vLoading: typeof import('element-plus/es')['ElLoadingDirective']
|
|
23
30
|
}
|
|
24
31
|
}
|
package/vite.config.js
CHANGED
|
@@ -16,6 +16,14 @@ const libopencorDir = path.resolve(
|
|
|
16
16
|
|
|
17
17
|
export default defineConfig(({ command, mode }) => {
|
|
18
18
|
const config = {
|
|
19
|
+
css: {
|
|
20
|
+
preprocessorOptions: {
|
|
21
|
+
scss: {
|
|
22
|
+
api: "modern-compiler",
|
|
23
|
+
additionalData: `@use '@/assets/styles' as *;`,
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
},
|
|
19
27
|
plugins: [
|
|
20
28
|
vue(),
|
|
21
29
|
Components({
|
|
@@ -188,11 +196,17 @@ export default defineConfig(({ command, mode }) => {
|
|
|
188
196
|
"@abi-software/svg-sprite": "@abi-software/svg-sprite",
|
|
189
197
|
"@abi-software/plotvuer": "@abi-software/plotvuer",
|
|
190
198
|
},
|
|
199
|
+
// keep css output name stable for the "./dist/style.css" export/import paths
|
|
200
|
+
assetFileNames: (assetInfo) =>
|
|
201
|
+
assetInfo.name?.endsWith(".css")
|
|
202
|
+
? "style.css"
|
|
203
|
+
: "assets/[name][extname]",
|
|
191
204
|
},
|
|
192
205
|
},
|
|
193
206
|
},
|
|
194
207
|
resolve: {
|
|
195
208
|
alias: {
|
|
209
|
+
"@": pathSrc,
|
|
196
210
|
"~/": `${pathSrc}/`,
|
|
197
211
|
},
|
|
198
212
|
},
|