@3cr/viewer-browser 0.0.3 → 0.0.5

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/index.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import {registerVersion} from "@3cr/sdk-browser";
2
2
  import {createApp} from "vue";
3
- import {registerPlugins} from "@/plugins";
3
+ import {registerPlugins} from "./src/plugins";
4
4
  import {App as BrowserViewer} from './src/main';
5
5
 
6
6
  let idSelectorLocal = ''
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@3cr/viewer-browser",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "main": "./dist/3cr-viewer-browser.js",
5
5
  "module": "dist/3cr-viewer-browser.js",
6
6
  "homepage": "https://docs.3cr.singular.health",
@@ -958,7 +958,6 @@ function handleOnPayload(interfaceSet: string | FrontEndInterfaces, actionSet: s
958
958
  .bordered-event-window:hover {
959
959
  position: absolute;
960
960
  border: 2px dashed rgb(0, 152, 253);
961
- //pointer-events: none;
962
961
  }
963
962
  .v-expansion-panel--active > .v-expansion-panel-header {
964
963
  min-height: 48px;
package/src/main.ts CHANGED
@@ -20,4 +20,6 @@ import './types/window.shim';
20
20
  // registerPlugins(app)
21
21
  export { App }
22
22
 
23
+ export default App;
24
+
23
25
  // app.mount('#app')
package/vite.config.mts CHANGED
@@ -49,7 +49,7 @@ export default defineConfig({
49
49
  // Provide global variables to use in the UMD build
50
50
  // for externalized deps
51
51
  globals: {
52
- // vue: 'Vue',
52
+ vue: 'Vue',
53
53
  },
54
54
  },
55
55
  },