@3cr/viewer-browser 0.0.102 → 0.0.104
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/Viewer3CR.js +2 -6
- package/dist/Viewer3CR.mjs +14 -15
- package/dist/Viewer3CR.umd.js +2 -6
- package/index.ts +1 -1
- package/package.json +1 -1
- package/src/App.vue +10 -8
- package/src/assets/styles.scss +13 -0
- package/src/components/WebGL3DR.vue +0 -1
- package/src/components/modal/MftpWebGL3DRModal.vue +7 -2
- package/src/plugins/vuetify.ts +1 -1
package/index.ts
CHANGED
package/package.json
CHANGED
package/src/App.vue
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<
|
|
3
|
-
<
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
2
|
+
<div data-vuetify>
|
|
3
|
+
<v-app style="height: 0; width: 0">
|
|
4
|
+
<MftpWebGL3DRModal
|
|
5
|
+
ref="mftpWebGL3DRModal"
|
|
6
|
+
:payload="payload"
|
|
7
|
+
:options="options"
|
|
8
|
+
/>
|
|
9
|
+
</v-app>
|
|
10
|
+
<Notifications />
|
|
11
|
+
</div>
|
|
10
12
|
</template>
|
|
11
13
|
|
|
12
14
|
<script setup lang="ts">
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
[data-vuetify] {
|
|
2
|
+
@import "vuetify/styles";
|
|
3
|
+
}
|
|
4
|
+
html [data-vuetify] {
|
|
5
|
+
font-family: "Roboto", sans-serif;
|
|
6
|
+
line-height: 1.5;
|
|
7
|
+
font-size: 1rem;
|
|
8
|
+
overflow-x: hidden;
|
|
9
|
+
text-rendering: optimizeLegibility;
|
|
10
|
+
-webkit-font-smoothing: antialiased;
|
|
11
|
+
-moz-osx-font-smoothing: grayscale;
|
|
12
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
13
|
+
}
|
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
<!-- /* c8 ignore start */ -->
|
|
2
2
|
<template>
|
|
3
|
-
<DemoModal v-model:modal="m_demo" />
|
|
4
|
-
<DemoPatientModal
|
|
3
|
+
<DemoModal data-vuetify v-model:modal="m_demo" />
|
|
4
|
+
<DemoPatientModal
|
|
5
|
+
data-vuetify
|
|
6
|
+
v-model:modal="m_demoPatient"
|
|
7
|
+
:is-modal-open="value"
|
|
8
|
+
/>
|
|
5
9
|
<v-dialog
|
|
10
|
+
data-vuetify
|
|
6
11
|
id="cr-viewer"
|
|
7
12
|
class="pa-0 ma-0 overflow-y-auto overflow-x-hidden"
|
|
8
13
|
:modelValue="value"
|