@vue-pdf-viewer/shared 0.0.0-experimental.0 → 0.0.0-experimental.2

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/types.d.ts CHANGED
@@ -107,6 +107,7 @@ export interface PluginContext {
107
107
  ui: {
108
108
  AppButton?: Component;
109
109
  AppTooltip?: Component;
110
+ AppPopover?: Component;
110
111
  };
111
112
  };
112
113
  }
package/dist/utils.d.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  import { EventAnnotation } from "./enumerators";
2
- export declare function getEventName(instanceUId: number, baseEvent: EventAnnotation): string;
2
+ export declare const getEventName: (instanceId: number, event: EventAnnotation) => string;
package/dist/utils.js CHANGED
@@ -1,3 +1,3 @@
1
- export function getEventName(instanceUId, baseEvent) {
2
- return `${instanceUId}-${baseEvent}`;
3
- }
1
+ export const getEventName = (instanceId, event) => {
2
+ return `${instanceId}-${event}`;
3
+ };
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.0",
4
+ "version": "0.0.0-experimental.2",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",