@abi-software/simulationvuer 4.1.0 → 4.3.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/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@abi-software/simulationvuer",
3
- "version": "4.1.0",
3
+ "version": "4.3.0",
4
4
  "private": false,
5
5
  "engines": {
6
- "node": ">=20"
6
+ "node": "^24.20.0"
7
7
  },
8
8
  "scripts": {
9
9
  "serve": "vite serve --host --force",
@@ -23,7 +23,7 @@
23
23
  "docs:preview": "vitepress preview docs"
24
24
  },
25
25
  "dependencies": {
26
- "@abi-software/plotvuer": "1.2.0",
26
+ "@abi-software/plotvuer": "1.3.0",
27
27
  "@opencor/opencor": "^0.20260804.0",
28
28
  "element-plus": "^2.14.5",
29
29
  "jsonschema": "^1.5.0",
@@ -94,5 +94,11 @@
94
94
  "bugs": {
95
95
  "url": "https://github.com/ABI-Software/simulationvuer/issues"
96
96
  },
97
- "homepage": "https://github.com/ABI-Software/simulationvuer#readme"
97
+ "homepage": "https://github.com/ABI-Software/simulationvuer#readme",
98
+ "allowScripts": {
99
+ "@parcel/watcher@2.6.0": true,
100
+ "es5-ext@0.10.64": true,
101
+ "fsevents@2.3.3": true,
102
+ "esbuild@0.21.5": true
103
+ }
98
104
  }
@@ -0,0 +1,2 @@
1
+ @use "variables" as *;
2
+ @import url("https://fonts.googleapis.com/css?family=Asap:400,400i,500,600,700&display=swap");
@@ -1,7 +1,5 @@
1
1
  @use "_variables" as *;
2
2
  @forward "_variables";
3
3
 
4
- @import url("https://fonts.googleapis.com/css?family=Asap:400,400i,500,600,700&display=swap");
5
-
6
4
  /* icon font path, required */
7
5
  $--color-primary: $app-primary-color !default;
@@ -1,5 +1,6 @@
1
1
  // The Vue build version to load with the `import` command
2
2
  // (runtime-only or standalone) has been set in webpack.base.conf with an alias.
3
3
  import SimulationVuer from "./SimulationVuer.vue";
4
+ import "../assets/fonts.scss";
4
5
 
5
6
  export { SimulationVuer };
@@ -12,9 +12,12 @@ export {}
12
12
  declare module 'vue' {
13
13
  export interface GlobalComponents {
14
14
  ElButton: typeof import('element-plus/es')['ElButton']
15
+ ElDialog: typeof import('element-plus/es')['ElDialog']
15
16
  ElDivider: typeof import('element-plus/es')['ElDivider']
16
17
  ElInputNumber: typeof import('element-plus/es')['ElInputNumber']
17
18
  ElOption: typeof import('element-plus/es')['ElOption']
19
+ ElRadioButton: typeof import('element-plus/es')['ElRadioButton']
20
+ ElRadioGroup: typeof import('element-plus/es')['ElRadioGroup']
18
21
  ElSelect: typeof import('element-plus/es')['ElSelect']
19
22
  ElSlider: typeof import('element-plus/es')['ElSlider']
20
23
  RouterLink: typeof import('vue-router')['RouterLink']
package/src/main.js CHANGED
@@ -3,6 +3,7 @@ import { createApp } from "vue";
3
3
  import * as VueRouter from "vue-router";
4
4
 
5
5
  import App from "./App.vue";
6
+ import "./assets/fonts.scss";
6
7
 
7
8
  const routes = [{ path: "/", component: App }];
8
9
  const router = VueRouter.createRouter({
package/vite.config.js CHANGED
@@ -187,13 +187,12 @@ export default defineConfig(({ command, mode }) => {
187
187
  rollupOptions: {
188
188
  external: [
189
189
  "vue",
190
- "@abi-software/svg-sprite",
191
190
  "@abi-software/plotvuer",
191
+ "@abi-software/plotvuer/dist/style.css",
192
192
  ],
193
193
  output: {
194
194
  globals: {
195
195
  vue: "Vue",
196
- "@abi-software/svg-sprite": "@abi-software/svg-sprite",
197
196
  "@abi-software/plotvuer": "@abi-software/plotvuer",
198
197
  },
199
198
  // keep css output name stable for the "./dist/style.css" export/import paths