@vnejs/contracts.views.screens.gallery 0.2.4 → 0.2.6

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/events.d.ts CHANGED
@@ -9,5 +9,7 @@ export declare const SUBSCRIBE_EVENTS: {
9
9
  readonly UPDATE: "vne:gallery:update";
10
10
  readonly PRELOAD: "vne:gallery:preload";
11
11
  readonly CHOOSE: "vne:gallery:choose";
12
+ readonly ACCEPT: "vne:gallery:accept";
13
+ readonly STATE_UPDATE: "vne:gallery:state_update";
12
14
  };
13
15
  export type SubscribeEvents = typeof SUBSCRIBE_EVENTS;
package/dist/events.js CHANGED
@@ -9,4 +9,6 @@ export const SUBSCRIBE_EVENTS = {
9
9
  UPDATE: "vne:gallery:update",
10
10
  PRELOAD: "vne:gallery:preload",
11
11
  CHOOSE: "vne:gallery:choose",
12
+ ACCEPT: "vne:gallery:accept",
13
+ STATE_UPDATE: "vne:gallery:state_update",
12
14
  };
package/dist/index.d.ts CHANGED
@@ -6,7 +6,7 @@ export type PluginName = typeof PLUGIN_NAME;
6
6
  export { SUBSCRIBE_EVENTS };
7
7
  export type { SubscribeEvents } from "./events.js";
8
8
  export { PARAMS };
9
- export type { GalleryTab, GalleryTabContent, GalleryTabContentVariation, GalleryTabs, Params, ViewProps, } from "./params.js";
9
+ export type { GalleryTab, GalleryTabContent, GalleryTabContentVariation, GalleryTabs, Params, ViewProps } from "./params.js";
10
10
  declare module "@vnejs/shared" {
11
11
  interface VnePluginEventsMap extends Record<typeof PLUGIN_NAME, typeof SUBSCRIBE_EVENTS> {
12
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vnejs/contracts.views.screens.gallery",
3
- "version": "0.2.4",
3
+ "version": "0.2.6",
4
4
  "description": "Contracts for @vnejs/plugins.views.screens.gallery",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/events.ts CHANGED
@@ -10,6 +10,8 @@ export const SUBSCRIBE_EVENTS = {
10
10
  UPDATE: "vne:gallery:update",
11
11
  PRELOAD: "vne:gallery:preload",
12
12
  CHOOSE: "vne:gallery:choose",
13
+ ACCEPT: "vne:gallery:accept",
14
+ STATE_UPDATE: "vne:gallery:state_update",
13
15
  } as const;
14
16
 
15
17
  export type SubscribeEvents = typeof SUBSCRIBE_EVENTS;
package/src/index.ts CHANGED
@@ -9,14 +9,7 @@ export type PluginName = typeof PLUGIN_NAME;
9
9
  export { SUBSCRIBE_EVENTS };
10
10
  export type { SubscribeEvents } from "./events.js";
11
11
  export { PARAMS };
12
- export type {
13
- GalleryTab,
14
- GalleryTabContent,
15
- GalleryTabContentVariation,
16
- GalleryTabs,
17
- Params,
18
- ViewProps,
19
- } from "./params.js";
12
+ export type { GalleryTab, GalleryTabContent, GalleryTabContentVariation, GalleryTabs, Params, ViewProps } from "./params.js";
20
13
 
21
14
  declare module "@vnejs/shared" {
22
15
  interface VnePluginEventsMap extends Record<typeof PLUGIN_NAME, typeof SUBSCRIBE_EVENTS> {}