@vertexvis/doc-viewer-vue 0.24.4-canary.16

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.
@@ -0,0 +1,3 @@
1
+ import { type StencilVueComponent } from '@stencil/vue-output-target/runtime';
2
+ import type { JSX } from '@vertexvis/doc-viewer';
3
+ export declare const VertexDocumentViewer: StencilVueComponent<JSX.VertexDocumentViewer>;
@@ -0,0 +1,2 @@
1
+ export * from './generated/components';
2
+ export * from './lib/plugin';
@@ -0,0 +1,2 @@
1
+ import { Plugin } from 'vue';
2
+ export declare const VertexDocumentViewerPlugin: Plugin;
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@vertexvis/doc-viewer-vue",
3
+ "version": "0.24.4-canary.16",
4
+ "description": "Vue bindings for the Vertex Document Viewer SDK.",
5
+ "license": "MIT",
6
+ "author": "Vertex Developers <support@vertexvis.com> (https://developer.vertexvis.com)",
7
+ "homepage": "https://github.com/Vertexvis/vertex-web-sdk#readme",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/Vertexvis/vertex-web-sdk.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/Vertexvis/vertex-web-sdk/issues"
14
+ },
15
+ "main": "./dist/bundle.cjs.js",
16
+ "module": "./dist/bundle.esm.js",
17
+ "typings": "./dist/index.d.ts",
18
+ "files": [
19
+ "dist/*"
20
+ ],
21
+ "publishConfig": {
22
+ "registry": "https://registry.npmjs.org",
23
+ "access": "public"
24
+ },
25
+ "scripts": {
26
+ "clean": "rm -fr ./dist && mkdir ./dist",
27
+ "prebuild": "yarn clean",
28
+ "build": "rollup --config rollup.config.js",
29
+ "format": "yarn lint --fix",
30
+ "lint": "eslint --ext .ts,.tsx,.js,.jsx --ignore-path ../../.gitignore .",
31
+ "test": "echo 'No unit tests defined'",
32
+ "test:ci": "yarn test:coverage",
33
+ "test:coverage": "echo 'No unit tests defined'"
34
+ },
35
+ "dependencies": {
36
+ "@stencil/vue-output-target": "^0.13.1",
37
+ "@vertexvis/doc-viewer": "0.24.4-canary.16"
38
+ },
39
+ "devDependencies": {
40
+ "@vertexvis/eslint-config-vertexvis-typescript": "^0.5.0",
41
+ "eslint": "^8.57.1",
42
+ "tslib": "^2.1.0",
43
+ "vue": "^3.3.4"
44
+ },
45
+ "peerDependencies": {
46
+ "tslib": ">=2.1.0"
47
+ },
48
+ "gitHead": "6a906b44e04255c00901f3bdeb7c0a9a5edd6e00"
49
+ }