@opencor/opencor 0.20251207.0 → 0.20251210.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
@@ -12,7 +12,6 @@ Some characteristics of this package are that:
12
12
  - It uses [PrimeVue](https://www.primefaces.org/primevue/) as its UI framework.
13
13
  - It uses [Tailwind CSS](https://tailwindcss.com/) for styling.
14
14
  - It can be used as a standalone Web app or embedded in a Vue 3 application.
15
- - It uses [CSS containment](https://developer.mozilla.org/en-US/docs/Web/CSS/Guides/Containment) to prevent CSS leakage when embedded in an application that uses a different UI framework.
16
15
 
17
16
  ## Usage
18
17
 
@@ -41,9 +40,7 @@ When no `omex` prop is provided, the component gives access to all of OpenCOR's
41
40
 
42
41
  ```vue
43
42
  <template>
44
- <div style="height: 100vh; height: 100dvh;">
45
- <OpenCOR />
46
- </div>
43
+ <OpenCOR />
47
44
  </template>
48
45
 
49
46
  <script setup lang="ts">
@@ -60,9 +57,7 @@ When an `omex` prop is provided, the component goes straight into OpenCOR's simu
60
57
 
61
58
  ```vue
62
59
  <template>
63
- <div style="height: 100vh; height: 100dvh;">
64
- <OpenCOR omex="https://raw.githubusercontent.com/opencor/webapp/refs/heads/main/tests/models/ui/lorenz.omex" />
65
- </div>
60
+ <OpenCOR omex="https://raw.githubusercontent.com/opencor/webapp/refs/heads/main/tests/models/ui/lorenz.omex" />
66
61
  </template>
67
62
 
68
63
  <script setup lang="ts">