@vue-pdf-viewer/shared 0.0.0-experimental.6 → 0.0.0-experimental.7

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +1 -0
  2. package/package.json +3 -1
package/dist/types.d.ts CHANGED
@@ -109,6 +109,7 @@ export interface PluginContext {
109
109
  AppButton?: Component;
110
110
  AppTooltip?: Component;
111
111
  AppPopover?: Component;
112
+ AppHighlightColorPicker?: Component;
112
113
  };
113
114
  };
114
115
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vue-pdf-viewer/shared",
3
3
  "private": false,
4
- "version": "0.0.0-experimental.6",
4
+ "version": "0.0.0-experimental.7",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",
@@ -16,6 +16,8 @@
16
16
  "dist"
17
17
  ],
18
18
  "scripts": {
19
+ "prepublish": "npm version prerelease && npm run build",
20
+ "publish": "npm publish --tag=experimental",
19
21
  "build": "tsc",
20
22
  "dev": "tsc --watch"
21
23
  },