@opencor/opencor 0.20251017.2 → 0.20251022.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/README.md CHANGED
@@ -21,11 +21,11 @@ The component comes with the following props:
21
21
  - **main.ts:**
22
22
 
23
23
  ```typescript
24
- import { createApp } from 'vue'
24
+ import { createApp } from 'vue';
25
25
 
26
- import App from './App.vue'
26
+ import App from './App.vue';
27
27
 
28
- createApp(App).mount('#app')
28
+ createApp(App).mount('#app');
29
29
  ```
30
30
 
31
31
  ### No `omex` prop provided
@@ -40,8 +40,8 @@ When no `omex` prop is provided, the component gives access to all of OpenCOR's
40
40
  </template>
41
41
 
42
42
  <script setup lang="ts">
43
- import OpenCOR from '@opencor/opencor'
44
- import '@opencor/opencor/style.css'
43
+ import OpenCOR from '@opencor/opencor';
44
+ import '@opencor/opencor/style.css';
45
45
  </script>
46
46
  ```
47
47
 
@@ -57,8 +57,8 @@ When an `omex` prop is provided, the component goes straight into OpenCOR's simu
57
57
  </template>
58
58
 
59
59
  <script setup lang="ts">
60
- import OpenCOR from '@opencor/opencor'
61
- import '@opencor/opencor/style.css'
60
+ import OpenCOR from '@opencor/opencor';
61
+ import '@opencor/opencor/style.css';
62
62
  </script>
63
63
  ```
64
64
 
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
- import { Component } from 'vue'
1
+ import { Component } from 'vue';
2
2
 
3
- import { IOpenCORProps } from './index.ts'
4
- export { IOpenCORProps }
3
+ import { IOpenCORProps } from './index.ts';
4
+ export { IOpenCORProps };
5
5
 
6
- export declare const OpenCOR: Component<IOpenCORProps>
7
- export default OpenCOR
6
+ export declare const OpenCOR: Component<IOpenCORProps>;
7
+ export default OpenCOR;